/*
 * ************************************************
 *  Main ullright styles for normal webbrowsers 
 *  ("non-mobile") 
 * ************************************************
 */

@import "common.css";
@import "main_multi_format.css";

/*
 * ************************************************
 *  edit action
 * ************************************************
 */

.edit_table td.label_column {
  min-width: 10em;
  width: 10em;
}


/*
 * ************************************************
 *  ullGenerator
 * ************************************************
 */


.edit_container, #tc_wrapper {
  max-width: 780px;
}


.ull_cms_edit .edit_action_buttons,
.ull_newsletter_edit .edit_action_buttons,
.ull_user_edit .edit_action_buttons
{
  position: fixed;
  bottom: 0;
  height: 8em;
  width: 720px;
  border: 2px solid silver;
  border-bottom: none;
  border-top-left-radius: 1em;
  border-top-right-radius: 1em;
  box-shadow: 2px 2px 12px #666;
  overflow: auto;
}


/*
 * ************************************************
 *  IE PNG Fix (http://www.twinhelix.com/css/iepngfix/demo/)
 * ************************************************
 */
 
img, div { 
  behavior: url(/ullCorePlugin/css/ie_png_fix/iepngfix.htc); 
}
 
/*
 * ************************************************
 *  Printout settings
 * ************************************************
 */
 
@media print {
	
	body {
	 font-size: 100%;
	}
	
	/* Otherwise all input tags are HUGE in Firefox (3.0.13) */
	input, select, textarea {
	  font-size: 1em;
	}
  
  /* a quick note:
    jQuery (which we use for showing/hiding the sidebar) modifies the display-
    attribute using inline styles. We use !important so the browser overrides
    these styles with the ones here when printing 
  */
  
  #sidebar {
    display: none !important;
  }
  
  #sidebar_tab {
    display: none;
  }
  
  #canvas {
    margin-left: 0;
    display: inline !important;
  }
  
  #nav_top {
    display: none;
  }
  
  .pager_left .paging_hint {
    display: none;
  }
  
  th {
    border-top: 1px double black;
    border-bottom: 1px double black;
  }
  
  td {
    border-bottom: 1px dotted grey;
    padding-top: .1em !important;
    padding-bottom: .1em !important;
  }
  
  .list_action_buttons {
    display: none;
  }
  
  .ull_filter_icon {
    display: none;
  }
  
  .no_print {
    display: none;
  }
  
}
 

