/* Minification failed. Returning unminified contents.
(733,11): run-time error CSS1033: Expected closing bracket, found '!'
(733,12): run-time error CSS1031: Expected selector, found '='
(733,12): run-time error CSS1025: Expected comma or open brace, found '='
 */
/*******************************************************************************
 * Tree container
 */
ul.dynatree-container
{
	font-family: tahoma, arial, helvetica;
	font-size: 10pt; /* font size should not be too big */
	white-space: nowrap;
	padding: 3px;
	margin: 0; /* issue 201 */
	background-color: white;
	border: 1px dotted gray;
	overflow: auto;
/*	height: 100%; /* issue 263, 470 */
	min-height: 0%;
}

ul.dynatree-container ul
{
	padding: 0 0 0 16px;
	margin: 0;
}

ul.dynatree-container li
{
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	-moz-background-clip:border;
	-moz-background-inline-policy: continuous;
	-moz-background-origin: padding;
	background-attachment: scroll;
	background-color: transparent;
	/*
	background-repeat: repeat-y;
	background-image: url("images/vline.gif");
	background-position: 0 0;
	*/
	/*
	background-image: url("icons_96x256.gif");
	background-position: -80px -64px;
	*/
	margin: 0;
	padding: 1px 0 0 0;
}
/* Suppress lines for last child node */
ul.dynatree-container li.dynatree-lastsib
{
	background-image: none;
}
/* Suppress lines if level is fixed expanded (option minExpandLevel) */
ul.dynatree-no-connector > li
{
	background-image: none;
}

/* Style, when control is disabled */
.ui-dynatree-disabled ul.dynatree-container
{
	opacity: 0.5;
/*	filter: alpha(opacity=50); /* Yields a css warning */
	background-color: silver;
}

/*******************************************************************************
 * Common icon definitions
 */
span.dynatree-empty,
span.dynatree-vline,
span.dynatree-connector,
span.dynatree-expander,
span.dynatree-icon,
span.dynatree-checkbox,
span.dynatree-radio,
span.dynatree-drag-helper-img,
#dynatree-drop-marker
{
	width: 16px;
	height: 16px;
/*	display: -moz-inline-box; /* @ FF 1+2 removed for issue 221 */
/*	-moz-box-align: start; /* issue 221 */
	display: inline-block; /* Required to make a span sizeable */
	vertical-align: top;
	background-repeat: no-repeat;
	background-position: left;
	background-image: url("images/icons.gif");
	background-position: 0 0;
}

/** Used by 'icon' node option: */
ul.dynatree-container img
{
	width: 16px;
	height: 16px;
	margin-left: 3px;
	vertical-align: top;
	border-style: none;
}


/*******************************************************************************
 * Lines and connectors
 */

span.dynatree-connector
{
	background-position: -16px -64px;
}

/*******************************************************************************
 * Expander icon
 * Note: IE6 doesn't correctly evaluate multiples class names,
 *		 so we create combined class names that can be used in the CSS.
 *
 * Prefix: dynatree-exp-
 * 1st character: 'e': expanded, 'c': collapsed
 * 2nd character (optional): 'd': lazy (Delayed)
 * 3rd character (optional): 'l': Last sibling
 */

span.dynatree-expander
{
	background-position: 0px -80px;
	cursor: pointer;
}
.dynatree-exp-cl span.dynatree-expander /* Collapsed, not delayed, last sibling */
{
	background-position: 0px -96px;
}
.dynatree-exp-cd span.dynatree-expander /* Collapsed, delayed, not last sibling */
{
	background-position: -64px -80px;
}
.dynatree-exp-cdl span.dynatree-expander /* Collapsed, delayed, last sibling */
{
	background-position: -64px -96px;
}
.dynatree-exp-e span.dynatree-expander,  /* Expanded, not delayed, not last sibling */
.dynatree-exp-ed span.dynatree-expander  /* Expanded, delayed, not last sibling */
{
	background-position: -32px -80px;
}
.dynatree-exp-el span.dynatree-expander,  /* Expanded, not delayed, last sibling */
.dynatree-exp-edl span.dynatree-expander  /* Expanded, delayed, last sibling */
{
	background-position: -32px -96px;
}
.dynatree-loading span.dynatree-expander  /* 'Loading' status overrides all others */
{
	background-position: 0 0;
	background-image: url("images/loading.gif");
}


/*******************************************************************************
 * Checkbox icon
 */
span.dynatree-checkbox
{
	margin-left: 3px;
	background-position: 0px -32px;
}
span.dynatree-checkbox:hover
{
	background-position: -16px -32px;
}

.dynatree-partsel span.dynatree-checkbox
{
	background-position: -64px -32px;
}
.dynatree-partsel span.dynatree-checkbox:hover
{
	background-position: -80px -32px;
}

.dynatree-selected span.dynatree-checkbox
{
	background-position: -32px -32px;
}
.dynatree-selected span.dynatree-checkbox:hover
{
	background-position: -48px -32px;
}

/*******************************************************************************
 * Radiobutton icon
 * This is a customization, that may be activated by overriding the 'checkbox'
 * class name as 'dynatree-radio' in the tree options.
 */
span.dynatree-radio
{
	margin-left: 3px;
	background-position: 0px -48px;
}
span.dynatree-radio:hover
{
	background-position: -16px -48px;
}

.dynatree-partsel span.dynatree-radio
{
	background-position: -64px -48px;
}
.dynatree-partsel span.dynatree-radio:hover
{
	background-position: -80px -48px;
}

.dynatree-selected span.dynatree-radio
{
	background-position: -32px -48px;
}
.dynatree-selected span.dynatree-radio:hover
{
	background-position: -48px -48px;
}

/*******************************************************************************
 * Node type icon
 * Note: IE6 doesn't correctly evaluate multiples class names,
 *		 so we create combined class names that can be used in the CSS.
 *
 * Prefix: dynatree-ico-
 * 1st character: 'e': expanded, 'c': collapsed
 * 2nd character (optional): 'f': folder
 */

span.dynatree-icon /* Default icon */
{
	margin-left: 3px;
	background-position: 0px 0px;
}

.dynatree-ico-cf span.dynatree-icon  /* Collapsed Folder */
{
	background-position: 0px -16px;
}

.dynatree-ico-ef span.dynatree-icon  /* Expanded Folder */
{
	background-position: -64px -16px;
}

/* Status node icons */

.dynatree-statusnode-wait span.dynatree-icon
{
	background-image: url("images/loading.gif");
}

.dynatree-statusnode-error span.dynatree-icon
{
	background-position: 0px -112px;
/*	background-image: url("ltError.gif");*/
}

/*******************************************************************************
 * Node titles
 */

/* @Chrome: otherwise hit area of node titles is broken (issue 133)
   Removed again for issue 165; (133 couldn't be reproduced) */
span.dynatree-node
{
/*	display: -moz-inline-box; /* issue 133, 165, 172, 192. removed for issue 221*/
/*	-moz-box-align: start; /* issue 221 */
	display: inline-block; /* issue 373 Required to make a span sizeable */
	vertical-align: top;
}


/* Remove blue color and underline from title links */
ul.dynatree-container a
/*, ul.dynatree-container a:visited*/
{
	color: black; /* inherit doesn't work on IE */
	text-decoration: none;
	vertical-align: top;
	margin: 0px;
	margin-left: 3px;
/*	outline: 0; /* @ Firefox, prevent dotted border after click */
}

ul.dynatree-container a:hover
{
/*	text-decoration: underline; */
	background-color: #F2F7FD; /* light blue */
	border-color: #B8D6FB; /* darker light blue */
}

span.dynatree-node a
{
	font-size: 10pt; /* required for IE, quirks mode */
	display: inline-block; /* Better alignment, when title contains <br> */
/*	vertical-align: top;*/
	padding-left: 3px;
	padding-right: 3px; /* Otherwise italic font will be outside bounds */
	/*	line-height: 16px; /* should be the same as img height, in case 16 px */
}
span.dynatree-folder a
{
	font-weight: bold;
}

ul.dynatree-container a:focus,
span.dynatree-focused a:link  /* @IE */
{
	background-color: #EFEBDE; /* gray */
}

span.dynatree-has-children a
{
}

span.dynatree-expanded a
{
}

span.dynatree-selected a
{
	color: green;
	font-style: italic;
}

span.dynatree-active a
{
	background-color: #3169C6 !important;
	color: white !important; /* @ IE6 */
}

/*******************************************************************************
 * Drag'n'drop support
 */

/*** Helper object ************************************************************/
div.dynatree-drag-helper
{
}
div.dynatree-drag-helper a
{
	border: 1px solid gray;
	background-color: white;
	padding-left: 5px;
	padding-right: 5px;
	opacity: 0.8;
}
span.dynatree-drag-helper-img
{
	/*
	position: relative;
	left: -16px;
	*/
}
div.dynatree-drag-helper /*.dynatree-drop-accept*/
{

/*    border-color: green;
	background-color: red;*/
}
div.dynatree-drop-accept span.dynatree-drag-helper-img
{
	background-position: -32px -112px;
}
div.dynatree-drag-helper.dynatree-drop-reject
{
	border-color: red;
}
div.dynatree-drop-reject span.dynatree-drag-helper-img
{
	background-position: -16px -112px;
}

/*** Drop marker icon *********************************************************/

#dynatree-drop-marker
{
	width: 24px;
	position: absolute;
	background-position: 0 -128px;
	margin: 0;
/*	border: 1px solid red; */
}
#dynatree-drop-marker.dynatree-drop-after,
#dynatree-drop-marker.dynatree-drop-before
{
	width:64px;
	background-position: 0 -144px;
}
#dynatree-drop-marker.dynatree-drop-copy
{
	background-position: -64px -128px;
}
#dynatree-drop-marker.dynatree-drop-move
{
	background-position: -64px -128px;
}

/*** Source node while dragging ***********************************************/

span.dynatree-drag-source
{
	/* border: 1px dotted gray; */
	background-color: #e0e0e0;
}
span.dynatree-drag-source a
{
	color: gray;
}

/*** Target node while dragging cursor is over it *****************************/

span.dynatree-drop-target
{
	/*border: 1px solid gray;*/
}
span.dynatree-drop-target a
{
}
span.dynatree-drop-target.dynatree-drop-accept a
{
	/*border: 1px solid green;*/
	background-color: #3169C6 !important;
	color: white !important; /* @ IE6 */
	text-decoration: none;
}
span.dynatree-drop-target.dynatree-drop-reject
{
	/*border: 1px solid red;*/
}
span.dynatree-drop-target.dynatree-drop-after a
{
}


/*******************************************************************************
 * Custom node classes (sample)
 */

span.custom1 a
{
	background-color: maroon;
	color: yellow;
}

/* Settings for Snapfinger Admin Theme */
/* Created using LESS CSS (http://lesscss.org/) */
/* Line styles */
.content-area-shadow {
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.dialog-shadow {
  box-shadow: 0 0 0 0;
  -webkit-box-shadow: 0 0 0 0;
  -moz-box-shadow: 0 0 0 0;
}
.panelShadow {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.19999999999999996);
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.19999999999999996);
  -moz-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.19999999999999996);
}
.box-sizing-border {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.no-corners {
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
}
/* Shadows */
.no-shadow {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
}
body {
  font-size: 90%;
  font-family: Tahoma, Arial, sans-serif;
}
html,
body,
div,
span,
object,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  margin: 0;
  padding: 0;
}
article,
aside,
figure,
figure img,
figcaption,
hgroup,
footer,
header,
nav,
section,
video,
object {
  display: block;
}
a img {
  border: 0;
}
figure {
  position: relative;
}
figure img {
  width: 100%;
}
a, a:focus, input:focus {
  outline: none;
}
body {
  background: url(images/white-header-bg.png) repeat-x;
  /* single background for IE */

  background: url(images/white-header-bg.png) repeat-x, url(images/bg.jpg);
  background-color: #88cc00;
}
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
legend,
li,
label,
caption,
tr,
th,
td {
  font-family: Tahoma, Arial, sans-serif;
  font-size: inherit;
  line-height: 1.4em;
}
input, textarea {
  font-family: Tahoma, Arial, sans-serif;
}
h1, h2, h3 {
  font-weight: bold;
}
h1 {
  font-size: 1.4em;
  line-height: 1.4em;
}
h2 {
  font-size: 1.2em;
  line-height: 1.2em;
}
h3 {
  font-size: 1.1em;
  line-height: 1.1em;
}
h4 {
  font-size: 1.0em;
  line-height: 1.0em;
}
h5 {
  font-size: 0.9em;
  line-height: 0.9em;
}
h6 {
  font-size: 0.8em;
  line-height: 0.8em;
}
a {
  color: #3399cc;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a:active {
  color: #143d52;
}
label {
  text-transform: uppercase;
  color: #669900;
  font-size: 0.75em;
  font-weight: bold;
  display: inline-block;
}
legend {
  margin-left: -5px;
  padding: 0 5px;
  color: #000000;
  left: 0px;
  font-weight: bold;
}
fieldset {
  padding: 25px;
  padding-top: 20px;
  margin-bottom: 30px;
  clear: left;
  border: 1px solid #cccccc;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
fieldset > div {
  margin-bottom: 20px;
}
fieldset > div:last-child {
  margin-bottom: 0;
}
label + input[type=checkbox] {
  display: inline-block;
}
label + input[type=text],
label + input[type=password],
label + input.ui-autocomplete-input,
label + .timeEntry_wrap,
label + textarea {
  display: block;
}
input[type=checkbox] {
  vertical-align: baseline;
}
input[type=text],
input[type=password],
textarea,
input.ui-autocomplete-input {
  background-color: #ffffff;
  height: 19px;
  margin: 0;
  margin-top: 1px;
  padding: 4px 8px;
  border: 1px solid #888888;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  display: inline-block;
  vertical-align: top;
  -webkit-appearance: none;
  font-size: 1em;
}
textarea {
  height: 5em;
  width: 300px;
}
input[type=text] + input[type=submit], input[type=submit] + input[type=text] {
  display: inline-block;
}
input::-moz-focus-inner {
  border: 0;
}
input[type=text]:focus,
input[type=password]:focus,
input.text:focus,
input.title:focus,
textarea:focus {
  border: 1px solid #88cc00;
}
input.watermarked {
  color: #ffffff;
}
input[type!=checkbox]:focus {
  border: 1px solid #3399cc;
}
button:focus {
  -webkit-appearance: none;
  outline: none;
}

#Copyallday {
    margin-left: 15px !important;
    padding: 4px 55px !important;
}
#Clearbulk {
    margin-left: 2px !important;
    padding: 4px 45px !important;
}

input[type=button], input[type=submit] {
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    display: inline-block;
    position: relative;
    margin-right: .1em;
    text-decoration: none !important;
    text-align: center;
    zoom: 1;
    overflow: visible;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    color: #000000;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.7);
    border: 1px solid #bbb;
    border-color: #bbb #aaa #999 #bbb;
    background-image: -moz-linear-gradient(top, #e6e6e6, #cccccc);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e6e6e6), color-stop(1, #cccccc));
    -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #e6e6e6, EndColorStr = #cccccc );
    filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #e6e6e6, EndColorStr = #cccccc );
    padding: 4px 8px;
}
input[type=button]:hover,
input[type=submit]:hover,
input[type=button] .ui-state-hover,
input[type=submit] .ui-state-hover {
  text-shadow: 1px 1px #e6e6e6;
  background-image: -moz-linear-gradient(top, #cccccc, #b3b3b3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #cccccc), color-stop(1, #b3b3b3));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #cccccc , EndColorStr = #b3b3b3 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #cccccc , EndColorStr = #b3b3b3 );
}
input[type=button]:active,
input[type=submit]:active,
input[type=button] .ui-state-active,
input[type=submit] .ui-state-active {
  text-shadow: 1px 1px #e6e6e6;
  background-image: -moz-linear-gradient(top, #bfbfbf, #a6a6a6);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #bfbfbf), color-stop(1, #a6a6a6));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #bfbfbf , EndColorStr = #a6a6a6 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #bfbfbf , EndColorStr = #a6a6a6 );
}
input[type=button].primary, input[type=submit].primary {
  border: 1px solid #3399cc;
  border-color: #70b8db #297aa3 #246b8f #70b8db;
  color: #ffffff;
  text-shadow: -1px -1px #297aa3;
  background-image: -moz-linear-gradient(top, #47a3d1, #2e8ab8);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #47a3d1), color-stop(1, #2e8ab8));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #47a3d1 , EndColorStr = #2e8ab8 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #47a3d1 , EndColorStr = #2e8ab8 );
}
input[type=button].primary:hover,
input[type=submit].primary:hover,
input[type=button].primary .ui-state-hover,
input[type=submit].primary .ui-state-hover {
  background-image: -moz-linear-gradient(top, #2e8ab8, #297aa3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2e8ab8), color-stop(1, #297aa3));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #2e8ab8 , EndColorStr = #297aa3 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #2e8ab8 , EndColorStr = #297aa3 );
}
input[type=button].primary:active,
input[type=submit].primary:active,
input[type=button].primary .ui-state-active,
input[type=submit].primary .ui-state-active {
  background-image: -moz-linear-gradient(top, #297aa3, #246b8f);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #297aa3), color-stop(1, #246b8f));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #297aa3 , EndColorStr = #246b8f );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #297aa3 , EndColorStr = #246b8f );
}
input[type=checkbox]:focus + label, input[type=radio]:focus + label {
  color: #3399cc;
}
input[type=button].disabled,
input[type=submit].disabled,
input[type=button]:disabled,
input[type=submit]:disabled {
  color: Gray !important;
  cursor: default !important;
}
select {
  display: block;
}
button {
  font-size: inherit;
}
hr {
  background: #cccccc;
  color: #cccccc;
  border: none;
  height: 1px;
}
.hide {
  display: none;
}
/* -------------------------------------------------------------- 
      
   liquid.css
   * Sets up an easy-to-use grid of 24 columns that stretch
     to the window width or can also be fixed width.

   Liquid grid work by:
   * Ben Listwon
   * David Bedingfield
   * Andrei Michael Herasimchuk
   Involution Studios, http://www.involutionstudios.com

   -----

   grid.css
   * Sets up an easy-to-use grid of 24 columns.
   
   Based on work by:
   * Nathan Borror     [playgroundblues.com]
   * Jeff Croft        [jeffcroft.com]
   * Christian Metts   [mintchaos.com]
   * Khoi Vinh         [subtraction.com]

   -----
   
   By default, the grid is 80% of window width, with 24 columns.

   To make the grid fixed, simply change the .container width
   property to a pixel value. e.g., 960px.
   
-------------------------------------------------------------- */
/* A container should group your entire grid. */
.container {
  min-width: 950px;
  width: 95%;
  margin: 0 auto;
  overflow: hidden;
}
/* A block should group all your columns per row stack. */
.block {
  overflow: hidden;
}
/* Columns
-------------------------------------------------------------- */
/* Use this class together with the .span-x classes
   to create any composition of columns in a layout. */
.column {
  float: left;
}
/* The last column in a row needs this class. */
.last {
  margin-right: 0;
}
/* Use these classes to set the width of a column. */
.span-1 {
  width: 3%;
}
.span-2 {
  width: 7%;
}
.span-3 {
  width: 11%;
}
.span-4 {
  width: 15%;
}
.span-5 {
  width: 19%;
}
.span-6 {
  width: 24%;
}
.span-7 {
  width: 28%;
}
.span-8 {
  width: 32%;
}
.span-9 {
  width: 36%;
}
.span-10 {
  width: 40%;
}
.span-11 {
  width: 44%;
}
.span-12 {
  width: 49%;
}
.span-13 {
  width: 53%;
}
.span-14 {
  width: 57%;
}
.span-15 {
  width: 61%;
}
.span-16 {
  width: 65%;
}
.span-17 {
  width: 69%;
}
.span-18 {
  width: 74%;
}
.span-19 {
  width: 78%;
}
.span-20 {
  width: 82%;
}
.span-21 {
  width: 86%;
}
.span-22 {
  width: 90%;
}
.span-23 {
  width: 94%;
}
.span-24 {
  width: 100%;
  margin-right: 0;
}
/* Add these to a column to append empty cols. */
.append-1 {
  padding-right: 4%;
}
.append-2 {
  padding-right: 8%;
}
.append-3 {
  padding-right: 12%;
}
.append-4 {
  padding-right: 16%;
}
.append-5 {
  padding-right: 20%;
}
.append-6 {
  padding-right: 25%;
}
.append-7 {
  padding-right: 29%;
}
.append-8 {
  padding-right: 33%;
}
.append-9 {
  padding-right: 37%;
}
.append-10 {
  padding-right: 41%;
}
.append-11 {
  padding-right: 45%;
}
.append-12 {
  padding-right: 50%;
}
.append-13 {
  padding-right: 54%;
}
.append-14 {
  padding-right: 58%;
}
.append-15 {
  padding-right: 62%;
}
.append-16 {
  padding-right: 66%;
}
.append-17 {
  padding-right: 70%;
}
.append-18 {
  padding-right: 75%;
}
.append-19 {
  padding-right: 79%;
}
.append-20 {
  padding-right: 83%;
}
.append-21 {
  padding-right: 87%;
}
.append-22 {
  padding-right: 91%;
}
.append-23 {
  padding-right: 95%;
}
/* Add these to a column to prepend empty cols. */
.prepend-1 {
  padding-left: 4%;
}
.prepend-2 {
  padding-left: 8%;
}
.prepend-3 {
  padding-left: 12%;
}
.prepend-4 {
  padding-left: 16%;
}
.prepend-5 {
  padding-left: 20%;
}
.prepend-6 {
  padding-left: 25%;
}
.prepend-7 {
  padding-left: 29%;
}
.prepend-8 {
  padding-left: 33%;
}
.prepend-9 {
  padding-left: 37%;
}
.prepend-10 {
  padding-left: 41%;
}
.prepend-11 {
  padding-left: 45%;
}
.prepend-12 {
  padding-left: 50%;
}
.prepend-13 {
  padding-left: 54%;
}
.prepend-14 {
  padding-left: 58%;
}
.prepend-15 {
  padding-left: 62%;
}
.prepend-16 {
  padding-left: 66%;
}
.prepend-17 {
  padding-left: 70%;
}
.prepend-18 {
  padding-left: 75%;
}
.prepend-19 {
  padding-left: 79%;
}
.prepend-20 {
  padding-left: 83%;
}
.prepend-21 {
  padding-left: 87%;
}
.prepend-22 {
  padding-left: 91%;
}
.prepend-23 {
  padding-left: 95%;
}
/* Border on right hand side of a column. */
.border {
  border-right: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
.colborder {
  padding-right: 2%;
  margin-right: 2%;
  border-right: 1px solid #eee;
}
.colborder > div {
  margin: 0;
}
/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column. */
.pull-1 {
  margin-left: -3.333em;
}
.pull-2 {
  margin-left: -6.666em;
}
.pull-3 {
  margin-left: -10em;
}
.pull-4 {
  margin-left: -13.333em;
}
.push-0 {
  margin: 0 0 0 1.5em;
}
.push-1 {
  margin: 0 -3.333em 0 1.5em;
}
.push-2 {
  margin: 0 -6.666em 0 1.5em;
}
.push-3 {
  margin: 0 -10em 0 1.5em;
}
.push-4 {
  margin: 0 -13.333em 0 1.5em;
}
.push-0,
.push-1,
.push-2,
.push-3,
.push-4 {
  float: right;
}
/* Misc classes and elements
-------------------------------------------------------------- */
/* Use a .box to create a padded box inside a column.  */.box {
  padding: 1.5em;
  margin-bottom: 1.5em;
  background: #eee;
}
.column,
.span-1,
.span-2,
.span-3,
.span-4,
.span-5,
.span-6,
.span-7,
.span-8,
.span-9,
.span-10,
.span-11,
.span-12,
.span-13,
.span-14,
.span-15,
.span-16,
.span-17,
.span-18,
.span-19,
.span-20,
.span-21,
.span-22,
.span-23,
.span-24 {
  margin-right: 2%;
  float: left;
}
.last {
  margin-right: 0;
}
.content {
  margin-top: 5px;
}
.clear {
  clear: both;
}
/*
 * jQuery UI Accordion 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Accordion#theming
 */
/* IE/Win - Fix animation bug - #4615 */
.ui-accordion {
  width: 100%;
}
.ui-accordion .ui-accordion-header {
  cursor: pointer;
  position: relative;
  margin-top: 1px;
  zoom: 1;
}
.ui-accordion .ui-accordion-li-fix {
  display: inline;
}
.ui-accordion .ui-accordion-header-active {
  border-bottom: 0 !important;
}
.ui-accordion .ui-accordion-header a {
  display: block;
  font-size: 1em;
  padding: .5em .5em .5em .7em;
}
.ui-accordion-icons .ui-accordion-header a {
  padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-icon {
  position: absolute;
  left: .5em;
  top: 50%;
  margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
  padding: 1em 2.2em;
  border-top: 0;
  margin-top: -2px;
  position: relative;
  top: 1px;
  margin-bottom: 2px;
  overflow: auto;
  display: none;
  zoom: 1;
}
.ui-accordion .ui-accordion-content-active {
  display: block;
}
/*
 * jQuery UI Autocomplete 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Autocomplete#theming
 */
.ui-autocomplete {
  position: absolute;
  cursor: default;
}
/* workarounds */
* html .ui-autocomplete {
  width: 1px;
}
/* without this, the menu expands to 100% in IE6 */
.ac_results {
  padding: 0px;
  border: 1px solid black;
  background-color: white;
  overflow: hidden;
  z-index: 99999;
}
.ac_results ul {
  width: 100%;
  list-style-position: outside;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ac_results li {
  margin: 0px;
  padding: 2px 5px;
  cursor: default;
  display: block;
  /*
    if width will be 100% horizontal scrollbar will apear
    when scroll mode will be used
    */

  /*width: 100%;*/

  font: menu;
  font-size: 12px;
  /*
    it is very important, if line-height not setted or setted
    in relative units scroll will be broken in firefox
    */

  line-height: 16px;
  overflow: hidden;
}
/*.ac_loading {*/
/*background: white url('../Images/indicator.gif') 95% center no-repeat;*/
/*}*/
.ac_odd {
  background-color: #eee;
}
.ac_over {
  background-color: #0A246A;
  color: white;
}
/*
 * jQuery UI Button 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Button#theming
 */
.ui-button {
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  display: inline-block;
  position: relative;
  margin-right: .1em;
  text-decoration: none !important;
  text-align: center;
  zoom: 1;
  overflow: visible;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* the overflow property removes extra width in IE */
.ui-button-icon-only {
  width: 2.2em;
}
/* to make room for the icon, a width needs to be set here */
button.ui-button-icon-only {
  width: 2.4em;
}
/* button elements seem to need a little more width */
.ui-button-icons-only {
  width: 3.4em;
}
button.ui-button-icons-only {
  width: 3.7em;
}
/*button text element */
.ui-button .ui-button-text {
  display: block;
}
.ui-button-text-only .ui-button-text {
  padding: .4em 1em;
}
.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: .4em 1em .4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: .4em 2.1em .4em 1em;
}
.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}
/* no icon support for input elements, provide padding by default */
input.ui-button {
  padding: .4em 1em;
}
/*button icon element(s) */
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
  left: .5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  right: .5em;
}
.ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  right: .5em;
}
/*button sets*/
.ui-buttonset {
  margin-right: 7px;
}
.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -0.3em;
}
/* workarounds */
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/*
 * jQuery UI Datepicker 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker#theming
 */
.ui-datepicker {
  width: 17em;
  padding: .2em .2em 0;
  display: none;
  /* with multiple calendars */

}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: .2em 0;
}
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}
.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month-year {
  width: 100%;
}
.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 49%;
}
.ui-datepicker table {
  width: 100%;
  font-size: .9em;
  border-collapse: collapse;
  margin: 0 0 .4em;
}
.ui-datepicker th {
  padding: .7em .3em;
  text-align: center;
  font-weight: bold;
  border: 0;
}
.ui-datepicker td {
  border: 0;
  padding: 1px;
}
.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: .7em 0 0 0;
  padding: 0 .2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  float: right;
  margin: .5em .2em .4em;
  cursor: pointer;
  padding: .2em .6em .3em .6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group table {
  width: 95%;
  margin: 0 auto .4em;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
}
/* RTL support */
.ui-datepicker-rtl {
  direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
  right: 2px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
  right: 1px;
  left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-right-width: 0;
  border-left-width: 1px;
}
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
.ui-datepicker-cover {
  display: none;
  /*sorry for IE5*/

  position: absolute;
  /*must have*/

  z-index: -1;
  /*must have*/

  filter: mask();
  /*must have*/

  top: -4px;
  /*must have*/

  left: -4px;
  /*must have*/

  width: 200px;
  /*must have*/

  height: 200px;
  /*must have*/

}
/* ThemeRoller override style sheet for jQuery date picker v4.0.4. */
#ui-datepicker-div, .ui-datepicker-inline {
  width: 17em;
  font-size: 75%;
}
#ui-datepicker-div {
  z-index: 100;
}
.ui-datepicker-inline {
  float: left;
}
.ui-datepicker-rtl {
  direction: rtl;
}
#ui-datepicker-div a, .ui-datepicker-inline a {
  text-decoration: none;
}
.ui-datepicker-prompt {
  height: 1.5em;
  padding-top: 0.25em;
  text-align: center;
}
button.ui-datepicker-cmd {
  height: 2em;
}
.ui-datepicker-cmd-clear {
  float: left;
  margin-left: 0.25em;
}
.ui-datepicker-cmd-close {
  float: right;
  margin-right: 0.25em;
}
.ui-datepicker-cmd-prev {
  position: static;
  float: left;
  width: 30%;
  height: auto;
  margin-left: 1%;
}
.ui-datepicker-cmd-next {
  position: static;
  float: right;
  width: 30%;
  height: auto;
  margin-right: 1%;
  text-align: right;
}
.ui-datepicker-cmd-current, .ui-datepicker-cmd-today {
  float: left;
  width: 37%;
  text-align: center;
}
.ui-datepicker-month-nav {
  float: left;
  text-align: center;
}
.ui-datepicker-month-nav div {
  float: left;
  width: 12.5%;
  margin: 1%;
  padding: 1%;
}
.ui-datepicker-month-nav span {
  color: #888;
}
.ui-datepicker-row-break {
  width: 100%;
}
.ui-datepicker-group {
  float: left;
  width: 17em;
}
.ui-datepicker-group .ui-datepicker-header {
  height: 1.5em;
  text-align: center;
}
.ui-datepicker select, .ui-datepicker-inline select {
  width: auto;
  height: 1.66em;
  border: none;
  font-weight: bold;
}
.ui-datepicker th {
  padding: 0.5em 0.3em;
}
.ui-datepicker td, .ui-datepicker td a, .ui-datepicker td span {
  border: 1px solid transparent;
  text-align: center;
}
.ui-datepicker-status {
  padding: 0.25em 0em;
  text-align: center;
}
.ui-datepicker .ui-helper-clearfix {
  clear: both;
}
.ui-datepicker-cover {
  display: none;
  position: absolute;
  z-index: -1;
  filter: mask();
  top: -1px;
  left: -1px;
  width: 187px;
  height: 187px;
}
/* Default styling for jQuery Datepicker v4.0.4. */
.datepick {
  background-color: #fff;
  color: #000;
  border: 1px solid #444;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  font-family: Arial, Helvetica, Sans-serif;
  font-size: 90%;
}
.datepick-rtl {
  direction: rtl;
}
.datepick-popup {
  z-index: 1002;
}
.datepick-disable {
  position: absolute;
  z-index: 100;
  background-color: white;
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.datepick a {
  color: #fff;
  text-decoration: none;
}
.datepick a.datepick-disabled {
  color: #888;
  cursor: auto;
}
.datepick button {
  margin: 0.25em;
  padding: 0.125em 0em;
  background-color: #fcc;
  border: none;
  border-radius: 0.25em;
  -moz-border-radius: 0.25em;
  -webkit-border-radius: 0.25em;
  font-weight: bold;
}
.datepick-nav, .datepick-ctrl {
  float: left;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 90%;
  font-weight: bold;
}
.datepick-ctrl {
  background-color: #600;
}
.datepick-cmd {
  width: 30%;
}
.datepick-cmd:hover {
  background-color: #777;
}
.datepick-ctrl .datepick-cmd:hover {
  background-color: #f08080;
}
.datepick-cmd-prevJump, .datepick-cmd-nextJump {
  width: 8%;
}
a.datepick-cmd {
  height: 1.5em;
}
button.datepick-cmd {
  text-align: center;
}
.datepick-cmd-prev, .datepick-cmd-prevJump, .datepick-cmd-clear {
  float: left;
  padding-left: 2%;
}
.datepick-cmd-current, .datepick-cmd-today {
  float: left;
  width: 35%;
  text-align: center;
}
.datepick-cmd-next, .datepick-cmd-nextJump, .datepick-cmd-close {
  float: right;
  padding-right: 2%;
  text-align: right;
}
.datepick-rtl .datepick-cmd-prev, .datepick-rtl .datepick-cmd-prevJump, .datepick-rtl .datepick-cmd-clear {
  float: right;
  padding-left: 0%;
  padding-right: 2%;
  text-align: right;
}
.datepick-rtl .datepick-cmd-current, .datepick-rtl .datepick-cmd-today {
  float: right;
}
.datepick-rtl .datepick-cmd-next, .datepick-rtl .datepick-cmd-nextJump, .datepick-rtl .datepick-cmd-close {
  float: left;
  padding-left: 2%;
  padding-right: 0%;
  text-align: left;
}
.datepick-month-nav {
  float: left;
  background-color: #777;
  text-align: center;
}
.datepick-month-nav div {
  float: left;
  width: 12.5%;
  margin: 1%;
  padding: 1%;
}
.datepick-month-nav span {
  color: #888;
}
.datepick-month-row {
  clear: left;
}
.datepick-month {
  float: left;
  width: 15em;
  border: 1px solid #444;
  text-align: center;
}
.datepick-month-header, .datepick-month-header select, .datepick-month-header input {
  height: 1.5em;
  background-color: #444;
  color: #fff;
  font-weight: bold;
}
.datepick-month-header select, .datepick-month-header input {
  height: 1.4em;
  border: none;
}
.datepick-month-header input {
  position: absolute;
  display: none;
}
.datepick-month table {
  width: 100%;
  border-collapse: collapse;
}
.datepick-month thead {
  border-bottom: 1px solid #aaa;
}
.datepick-month th, .datepick-month td {
  margin: 0em;
  padding: 0em;
  font-weight: normal;
  text-align: center;
}
.datepick-month th {
  border: 1px solid #777;
}
.datepick-month th, .datepick-month th a {
  background-color: #777;
  color: #fff;
}
.datepick-month td {
  background-color: #eee;
  border: 1px solid #aaa;
}
.datepick-month td.datepick-week {
  border: 1px solid #777;
}
.datepick-month td.datepick-week * {
  background-color: #777;
  color: #fff;
  border: none;
}
.datepick-month a {
  display: block;
  width: 100%;
  padding: 0.125em 0em;
  background-color: #eee;
  color: #000;
  text-decoration: none;
}
.datepick-month span {
  display: block;
  width: 100%;
  padding: 0.125em 0em;
}
.datepick-month td span {
  color: #888;
}
.datepick-month td .datepick-other-month {
  background-color: #fff;
}
.datepick-month td .datepick-weekend {
  background-color: #ddd;
}
.datepick-month td .datepick-today {
  background-color: #f0c0c0;
}
.datepick-month td .datepick-highlight {
  background-color: #f08080;
}
.datepick-month td .datepick-selected {
  background-color: #777;
  color: #fff;
}
.datepick-month th.datepick-week {
  background-color: #777;
  color: #fff;
}
.datepick-status {
  clear: both;
  background-color: #ddd;
  text-align: center;
}
.datepick-clear-fix {
  clear: both;
}
.datepick-cover {
  display: none;
  position: absolute;
  z-index: -1;
  filter: mask();
  top: -1px;
  left: -1px;
  width: 100px;
  height: 100px;
}
/*
 * jQuery UI Dialog 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Dialog#theming
 */
.ui-dialog {
  position: absolute;
  padding: .2em;
  width: 300px;
  overflow: hidden;
}
.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 16px .1em 0;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: .3em;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
}
.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
  margin: 1px;
}
.ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus {
  padding: 0;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: .5em 1em;
  background: none;
  overflow: auto;
  zoom: 1;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: .5em 0 0 0;
  padding: .3em 1em .5em .4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
  margin: .5em .4em .5em 0;
  cursor: pointer;
}
.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}
.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
}
.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}
.ui-helper-clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.ui-helper-clearfix {
  display: inline-block;
}
/* required comment for clearfix to work in Opera \*/
* html .ui-helper-clearfix {
  height: 1%;
}
.ui-helper-clearfix {
  display: block;
}
/* end clearfix */
.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  filter: Alpha(Opacity=0);
}
/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  display: block;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-widget-content .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-widget-header .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-state-default .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {
  background-image: url(images/ui-icons_222222_256x240.png);
}
.ui-state-active .ui-icon {
  background-image: url(images/ui-icons_888888_256x240.png);
}
.ui-state-highlight .ui-icon {
  background-image: url(images/ui-icons_888888_256x240.png);
}
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {
  background-image: url(images/ui-icons_cd0a0a_256x240.png);
}
/* positioning */
.ui-icon-carat-1-n {
  background-position: 0 0;
}
.ui-icon-carat-1-ne {
  background-position: -16px 0;
}
.ui-icon-carat-1-e {
  background-position: -32px 0;
}
.ui-icon-carat-1-se {
  background-position: -48px 0;
}
.ui-icon-carat-1-s {
  background-position: -64px 0;
}
.ui-icon-carat-1-sw {
  background-position: -80px 0;
}
.ui-icon-carat-1-w {
  background-position: -96px 0;
}
.ui-icon-carat-1-nw {
  background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
  background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
  background-position: -144px 0;
}
.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
  background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
  background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
  background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}
.ui-icon-arrow-4 {
  background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}
.ui-icon-extlink {
  background-position: -32px -80px;
}
.ui-icon-newwin {
  background-position: -48px -80px;
}
.ui-icon-refresh {
  background-position: -64px -80px;
}
.ui-icon-shuffle {
  background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}
.ui-icon-folder-open {
  background-position: -16px -96px;
}
.ui-icon-document {
  background-position: -32px -96px;
}
.ui-icon-document-b {
  background-position: -48px -96px;
}
.ui-icon-note {
  background-position: -64px -96px;
}
.ui-icon-mail-closed {
  background-position: -80px -96px;
}
.ui-icon-mail-open {
  background-position: -96px -96px;
}
.ui-icon-suitcase {
  background-position: -112px -96px;
}
.ui-icon-comment {
  background-position: -128px -96px;
}
.ui-icon-person {
  background-position: -144px -96px;
}
.ui-icon-print {
  background-position: -160px -96px;
}
.ui-icon-trash {
  background-position: -176px -96px;
}
.ui-icon-locked {
  background-position: -192px -96px;
}
.ui-icon-unlocked {
  background-position: -208px -96px;
}
.ui-icon-bookmark {
  background-position: -224px -96px;
}
.ui-icon-tag {
  background-position: -240px -96px;
}
.ui-icon-home {
  background-position: 0 -112px;
}
.ui-icon-flag {
  background-position: -16px -112px;
}
.ui-icon-calendar {
  background-position: -32px -112px;
}
.ui-icon-cart {
  background-position: -48px -112px;
}
.ui-icon-pencil {
  background-position: -64px -112px;
}
.ui-icon-clock {
  background-position: -80px -112px;
}
.ui-icon-disk {
  background-position: -96px -112px;
}
.ui-icon-calculator {
  background-position: -112px -112px;
}
.ui-icon-zoomin {
  background-position: -128px -112px;
}
.ui-icon-zoomout {
  background-position: -144px -112px;
}
.ui-icon-search {
  background-position: -160px -112px;
}
.ui-icon-wrench {
  background-position: -176px -112px;
}
.ui-icon-gear {
  background-position: -192px -112px;
}
.ui-icon-heart {
  background-position: -208px -112px;
}
.ui-icon-star {
  background-position: -224px -112px;
}
.ui-icon-link {
  background-position: -240px -112px;
}
.ui-icon-cancel {
  background-position: 0 -128px;
}
.ui-icon-plus {
  background-position: -16px -128px;
}
.ui-icon-plusthick {
  background-position: -32px -128px;
}
.ui-icon-minus {
  background-position: -48px -128px;
}
.ui-icon-minusthick {
  background-position: -64px -128px;
}
.ui-icon-close {
  background-position: -80px -128px;
}
.ui-icon-closethick {
  background-position: -96px -128px;
}
.ui-icon-key {
  background-position: -112px -128px;
}
.ui-icon-lightbulb {
  background-position: -128px -128px;
}
.ui-icon-scissors {
  background-position: -144px -128px;
}
.ui-icon-clipboard {
  background-position: -160px -128px;
}
.ui-icon-copy {
  background-position: -176px -128px;
}
.ui-icon-contact {
  background-position: -192px -128px;
}
.ui-icon-image {
  background-position: -208px -128px;
}
.ui-icon-video {
  background-position: -224px -128px;
}
.ui-icon-script {
  background-position: -240px -128px;
}
.ui-icon-alert {
  background-position: 0 -144px;
}
.ui-icon-info {
  background-position: -16px -144px;
}
.ui-icon-notice {
  background-position: -32px -144px;
}
.ui-icon-help {
  background-position: -48px -144px;
}
.ui-icon-check {
  background-position: -64px -144px;
}
.ui-icon-bullet {
  background-position: -80px -144px;
}
.ui-icon-radio-off {
  background-position: -96px -144px;
}
.ui-icon-radio-on {
  background-position: -112px -144px;
}
.ui-icon-pin-w {
  background-position: -128px -144px;
}
.ui-icon-pin-s {
  background-position: -144px -144px;
}
.ui-icon-play {
  background-position: 0 -160px;
}
.ui-icon-pause {
  background-position: -16px -160px;
}
.ui-icon-seek-next {
  background-position: -32px -160px;
}
.ui-icon-seek-prev {
  background-position: -48px -160px;
}
.ui-icon-seek-end {
  background-position: -64px -160px;
}
.ui-icon-seek-start {
  background-position: -80px -160px;
}
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}
.ui-icon-stop {
  background-position: -96px -160px;
}
.ui-icon-eject {
  background-position: -112px -160px;
}
.ui-icon-volume-off {
  background-position: -128px -160px;
}
.ui-icon-volume-on {
  background-position: -144px -160px;
}
.ui-icon-power {
  background-position: 0 -176px;
}
.ui-icon-signal-diag {
  background-position: -16px -176px;
}
.ui-icon-signal {
  background-position: -32px -176px;
}
.ui-icon-battery-0 {
  background-position: -48px -176px;
}
.ui-icon-battery-1 {
  background-position: -64px -176px;
}
.ui-icon-battery-2 {
  background-position: -80px -176px;
}
.ui-icon-battery-3 {
  background-position: -96px -176px;
}
.ui-icon-circle-plus {
  background-position: 0 -192px;
}
.ui-icon-circle-minus {
  background-position: -16px -192px;
}
.ui-icon-circle-close {
  background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}
.ui-icon-circle-check {
  background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}
.ui-jqgrid {
  position: relative;
  border-color: #cccccc;
}
.ui-jqgrid .ui-jqgrid-view {
  position: relative;
  left: 0px;
  top: 0px;
  padding: .0em;
}
.ui-jqgrid .ui-jqgrid-titlebar {
  padding: .3em .2em .2em .3em;
  position: relative;
  border-left: 0px none;
  border-right: 0px none;
  border-top: 0px none;
}
.ui-jqgrid .ui-jqgrid-title {
  float: left;
  margin: .1em 0 .2em;
}
.ui-jqgrid .ui-jqgrid-titlebar-close {
  position: absolute;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
}
.ui-jqgrid .ui-jqgrid-titlebar-close span {
  display: block;
  margin: 1px;
}
.ui-jqgrid .ui-jqgrid-titlebar-close:hover {
  padding: 0;
}
.ui-jqgrid .ui-jqgrid-hdiv {
  position: relative;
  margin: 0em;
  padding: 0em;
  overflow-x: hidden;
  overflow-y: auto;
  border-left: 0px none !important;
  border-top: 0px none !important;
  border-right: 0px none !important;
}
.ui-jqgrid .ui-jqgrid-hbox {
  float: left;
  padding-right: 20px;
}
.ui-jqgrid .ui-jqgrid-htable {
  table-layout: fixed;
  margin: 0em;
}
.ui-jqgrid .ui-jqgrid-htable th {
  height: 22px;
  padding: 0 2px 0 2px;
}
.ui-jqgrid .ui-jqgrid-htable th div {
  overflow: hidden;
  position: relative;
  height: 17px;
}
.ui-jqgrid .ui-th-div-ie {
  white-space: nowrap;
  zoom: 1;
  height: 17px;
}
.ui-jqgrid .ui-jqgrid-resize {
  height: 20px !important;
  position: relative;
  cursor: e-resize;
  display: inline;
  overflow: hidden;
}
.ui-jqgrid .ui-grid-ico-sort {
  overflow: hidden;
  position: absolute;
  display: inline;
  cursor: pointer !important;
}
.ui-jqgrid .ui-icon-asc {
  margin-top: -3px;
  height: 12px;
}
.ui-jqgrid .ui-icon-desc {
  margin-top: 3px;
  height: 12px;
}
.ui-jqgrid .ui-i-asc {
  margin-top: 0px;
  height: 16px;
}
.ui-jqgrid .ui-i-desc {
  margin-top: 0px;
  margin-left: 13px;
  height: 16px;
}
.ui-jqgrid .ui-jqgrid-sortable {
  cursor: pointer;
}
.ui-jqgrid tr.ui-search-toolbar th {
  border-top-width: 1px !important;
  border-top-color: inherit !important;
  border-top-style: ridge !important;
}
.ui-jqgrid .ui-jqgrid-bdiv {
  position: relative;
  margin: 0em;
  padding: 0;
  overflow: auto;
  text-align: left;
}
.ui-jqgrid .ui-jqgrid-btable {
  table-layout: fixed;
  margin: 0em;
}
.ui-jqgrid .ui-jqgrid-btable .ui-sgcollapsed span {
  display: block;
}
.ui-jqgrid tr.jqgrow td {
  font-weight: normal;
  overflow: hidden;
  white-space: pre;
  height: 22px;
  padding: 0 2px 0 2px;
  border-bottom-width: 1px;
  border-bottom-color: #cccccc;
  border-bottom-style: solid;
}
.ui-jqgrid tr.jqgfirstrow td {
  padding: 0 2px 0 2px;
  border-right-width: 1px;
  border-right-style: solid;
}
.ui-jqgrid tr.jqgroup td {
  font-weight: normal;
  overflow: hidden;
  white-space: pre;
  height: 22px;
  padding: 0 2px 0 2px;
  border-bottom-width: 1px;
  border-bottom-color: #cccccc;
  border-bottom-style: solid;
}
.ui-jqgrid tr.jqfoot td {
  font-weight: bold;
  overflow: hidden;
  white-space: pre;
  height: 22px;
  padding: 0 2px 0 2px;
  border-bottom-width: 1px;
  border-bottom-color: #cccccc;
  border-bottom-style: solid;
}
.ui-jqgrid tr.ui-row-ltr td {
  text-align: left;
  border-right-width: 1px;
  border-right-color: #cccccc;
  border-right-style: solid;
}
.ui-jqgrid tr.ui-row-ltr td:first-child {
  border-left: 1px solid #cccccc;
}
.ui-jqgrid tr.ui-row-rtl td {
  text-align: right;
  border-left-width: 1px;
  border-left-color: #cccccc;
  border-left-style: solid;
}
.ui-jqgrid tr.ui-row-rtl td:last-child {
  border-right: 1px solid #cccccc;
}
.ui-jqgrid td.jqgrid-rownum {
  padding: 0 2px 0 2px;
  margin: 0px;
  border: 0px none;
}
.ui-jqgrid .ui-jqgrid-resize-mark {
  width: 2px;
  left: 0;
  background-color: #777777;
  cursor: e-resize;
  cursor: col-resize;
  position: absolute;
  top: 0;
  height: 100px;
  overflow: hidden;
  display: none;
  border: 0 none;
}
.ui-jqgrid .ui-jqgrid-sdiv {
  position: relative;
  margin: 0em;
  padding: 0em;
  overflow: hidden;
  border-left: 0px none !important;
  border-top: 0px none !important;
  border-right: 0px none !important;
}
.ui-jqgrid .ui-jqgrid-ftable {
  table-layout: fixed;
  margin-bottom: 0em;
}
.ui-jqgrid tr.footrow td {
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  height: 21px;
  padding: 0 2px 0 2px;
  border-top-width: 1px;
  border-top-color: #cccccc;
  border-top-style: solid;
}
.ui-jqgrid tr.footrow-ltr td {
  text-align: left;
  border-right-width: 1px;
  border-right-color: #cccccc;
  border-right-style: solid;
}
.ui-jqgrid tr.footrow-rtl td {
  text-align: right;
  border-left-width: 1px;
  border-left-color: #cccccc;
  border-left-style: solid;
}
.ui-jqgrid .ui-jqgrid-pager {
  border-left: 0px none !important;
  border-right: 0px none !important;
  border-bottom: 0px none !important;
  margin: 0px !important;
  padding: 0px !important;
  position: relative;
  height: 25px;
  white-space: nowrap;
  overflow: hidden;
}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div {
  padding: 1px 0;
  float: left;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: none;
  position: relative;
}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div span.ui-icon {
  float: left;
  margin: 0 2px;
}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-button {
  cursor: pointer;
}
.ui-jqgrid .ui-pager-control {
  position: relative;
}
.ui-jqgrid .ui-pg-table {
  position: relative;
  padding-bottom: 2px;
  width: auto;
  margin: 0em;
}
.ui-jqgrid .ui-pg-table td {
  font-weight: normal;
  vertical-align: middle;
  padding: 1px;
}
.ui-jqgrid .ui-pg-button {
  height: 19px !important;
}
.ui-jqgrid .ui-pg-button span {
  display: block;
  margin: 1px;
  float: left;
}
.ui-jqgrid .ui-pg-button:hover {
  padding: 0px;
}
.ui-jqgrid .ui-state-disabled:hover {
  padding: 1px;
}
.ui-jqgrid .ui-pg-input {
  height: 13px;
  font-size: .8em;
  margin: 0em;
}
.ui-jqgrid .ui-pg-selbox {
  font-size: .8em;
  line-height: 18px;
  display: block;
  height: 18px;
  margin: 0em;
}
.ui-jqgrid .ui-separator {
  height: 18px;
  border-left: 1px solid #cccccc;
  border-right: 1px solid #cccccc;
  margin: 1px;
  float: right;
}
.ui-jqgrid .ui-paging-info {
  font-weight: normal;
  height: 19px;
  margin-top: 3px;
  margin-right: 4px;
}
.ui-jqgrid td input, .ui-jqgrid td select .ui-jqgrid td textarea {
  margin: 0em;
}
.ui-jqgrid td textarea {
  width: auto;
  height: auto;
}
.ui-jqgrid .ui-jqgrid-toppager {
  border-left: 0px none !important;
  border-right: 0px none !important;
  border-top: 0px none !important;
  margin: 0px !important;
  padding: 0px !important;
  position: relative;
  height: 25px !important;
  white-space: nowrap;
  overflow: hidden;
}
.ui-jqgrid .ui-subgrid {
  margin: 0em;
  padding: 0em;
  width: 100%;
}
.ui-jqgrid .ui-subgrid table {
  table-layout: fixed;
}
.ui-jqgrid .ui-subgrid tr.ui-subtblcell td {
  height: 18px;
  border-right-width: 1px;
  border-right-color: inherit;
  border-right-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #cccccc;
  border-bottom-style: solid;
}
.ui-jqgrid .ui-subgrid td.subgrid-data {
  border-top: 0px none !important;
}
.ui-jqgrid .ui-subgrid td.subgrid-cell {
  border-width: 0px 0px 1px 0px;
}
.ui-jqgrid .ui-th-subgrid {
  height: 20px;
}
.ui-jqgrid .loading {
  position: absolute;
  top: 45%;
  left: 45%;
  width: auto;
  z-index: 101;
  padding: 6px;
  margin: 5px;
  text-align: center;
  font-weight: bold;
  display: none;
  border-width: 2px !important;
}
.ui-jqgrid .jqgrid-overlay {
  display: none;
  z-index: 100;
}
.ui-jqgrid .ui-userdata {
  border-left: 0px none;
  border-right: 0px none;
  height: 21px;
  overflow: hidden;
}
.ui-jqgrid .tree-wrap {
  float: left;
  position: relative;
  height: 18px;
  white-space: nowrap;
  overflow: hidden;
}
.ui-jqgrid .tree-minus {
  position: absolute;
  height: 18px;
  width: 18px;
  overflow: hidden;
}
.ui-jqgrid .tree-plus {
  position: absolute;
  height: 18px;
  width: 18px;
  overflow: hidden;
}
.ui-jqgrid .tree-leaf {
  position: absolute;
  height: 18px;
  width: 18px;
  overflow: hidden;
}
.ui-jqgrid .treeclick {
  cursor: pointer;
}
.ui-jqgrid .ui-jqgrid-title-rtl {
  float: right;
  margin: .1em 0 .2em;
}
.ui-jqgrid .ui-jqgrid-hbox-rtl {
  float: right;
  padding-left: 20px;
}
.ui-jqgrid .ui-jqgrid-resize-ltr {
  float: right;
  margin: -2px -2px -2px 0px;
}
.ui-jqgrid .ui-jqgrid-resize-rtl {
  float: left;
  margin: -2px 0px -1px -3px;
}
.ui-jqgrid .ui-sort-rtl {
  left: 0px;
}
.ui-jqgrid .tree-wrap-ltr {
  float: left;
}
.ui-jqgrid .tree-wrap-rtl {
  float: right;
}
.ui-jqgrid .ui-ellipsis {
  text-overflow: ellipsis;
  -moz-binding: url('ellipsis-xbl.xml#ellipsis');
}
.ui-th-column, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column {
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  border-top: 0px none;
  border-bottom: 0px none;
}
.ui-th-ltr, .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr {
  border-left: 0px none;
}
.ui-th-rtl, .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {
  border-right: 0px none;
}
tr.ui-search-toolbar input {
  margin: 1px 0px 0px 0px;
}
tr.ui-search-toolbar select {
  margin: 1px 0px 0px 0px;
}
* html .jqgrid-overlay {
  width: expression(this.parentNode.offsetWidth+'px');
  height: expression(this.parentNode.offsetHeight+'px');
}
* .jqgrid-overlay iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: expression(this.parentNode.offsetWidth+'px');
  height: expression(this.parentNode.offsetHeight+'px');
}
* iframe.jqm {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: expression(this.parentNode.offsetWidth+'px');
  height: expression(this.parentNode.offsetHeight+'px');
}
.ui-jqdialog {
  display: none;
  width: 300px;
  position: absolute;
  padding: .2em;
  font-size: 11px;
  overflow: visible;
}
.ui-jqdialog .ui-jqdialog-titlebar-close:hover, .ui-jqdialog .ui-jqdialog-titlebar-close:focus {
  padding: 0;
}
.ui-jqdialog .ui-jqdialog-titlebar {
  padding: .3em .2em;
  position: relative;
}
.ui-jqdialog .ui-jqdialog-title {
  margin: .1em 0 .2em;
}
.ui-jqdialog .ui-jqdialog-titlebar-close {
  position: absolute;
  top: 50%;
  width: 19px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 18px;
}
.ui-jqdialog .ui-jqdialog-titlebar-close span {
  display: block;
  margin: 1px;
}
.ui-jqdialog .ui-jqconfirm {
  padding: .4em 1em;
  border-width: 3px;
  position: absolute;
  bottom: 10px;
  right: 10px;
  overflow: visible;
  display: none;
  height: 80px;
  width: 220px;
  text-align: center;
}
.ui-jqdialog-content, .ui-jqdialog .ui-jqdialog-content {
  border: 0;
  padding: .3em .2em;
  background: none;
  height: auto;
}
.ui-jqdialog-content .FormGrid {
  margin: 0px;
}
.ui-jqdialog-content .EditTable {
  width: 100%;
  margin-bottom: 0em;
}
.ui-jqdialog-content .DelTable {
  width: 100%;
  margin-bottom: 0em;
}
.ui-jqdialog-content td.EditButton {
  text-align: right;
  border-top: 0px none;
  border-left: 0px none;
  border-right: 0px none;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ui-jqdialog-content td.navButton {
  text-align: center;
  border-left: 0px none;
  border-top: 0px none;
  border-right: 0px none;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ui-jqdialog-content input.FormElement {
  padding: .3em;
}
.ui-jqdialog-content .data-line {
  padding-top: .1em;
  border: 0px none;
}
.ui-jqdialog-content .CaptionTD {
  text-align: left;
  vertical-align: middle;
  border: 0px none;
  padding: 2px;
  white-space: nowrap;
}
.ui-jqdialog-content .DataTD {
  padding: 2px;
  border: 0px none;
  vertical-align: top;
}
.ui-jqdialog-content .form-view-data {
  white-space: pre;
}
.EditTable td input, .EditTable td select {
  margin: 0em;
}
.EditTable td textarea {
  margin: 0em;
  width: auto;
  height: auto;
}
.fm-button {
  display: inline-block;
  margin: 0 4px 0 0;
  padding: .4em .5em;
  text-decoration: none !important;
  cursor: pointer;
  position: relative;
  text-align: center;
  zoom: 1;
}
.fm-button-icon-left {
  padding-left: 1.9em;
}
.fm-button-icon-left .ui-icon {
  right: auto;
  left: .2em;
  margin-left: 0;
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
.fm-button-icon-right {
  padding-right: 1.9em;
}
.fm-button-icon-right .ui-icon {
  left: auto;
  right: .2em;
  margin-left: 0;
  position: absolute;
  top: 50%;
  margin-top: -8px;
}
#nData, #pData {
  float: left;
  margin: 3px;
  padding: 0;
  width: 15px;
}
.ui-jqgrid .selected-row, div.ui-jqgrid .selected-row td {
  font-style: normal;
  border-left: 0px none;
}
.jqmOverlay {
  background-color: #000000;
}
.ui-jqgrid-dnd tr td {
  border-right-width: 1px;
  border-right-color: #cccccc;
  border-right-style: solid;
  height: 20px;
}
.ui-searchFilter {
  display: none;
  position: absolute;
  z-index: 770;
  overflow: visible;
}
.ui-searchFilter table {
  position: relative;
  margin: 0em;
  width: auto;
}
.ui-searchFilter table td {
  margin: 0em;
  padding: 1px;
}
.ui-searchFilter table td input, .ui-searchFilter table td select {
  margin: 0.1em;
}
.ui-searchFilter .ui-state-default {
  cursor: pointer;
}
.ui-searchFilter .divider hr {
  margin: 1px;
}
/*
 * jQuery UI Menu 1.8.9
 *
 * Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Menu#theming
 */
.ui-menu {
  list-style: none;
  padding: 2px;
  margin: 0;
  display: block;
  float: left;
}
.ui-menu .ui-menu {
  margin-top: -3px;
}
.ui-menu .ui-menu-item {
  margin: 0;
  padding: 0;
  zoom: 1;
  float: left;
  clear: left;
  width: 100%;
}
.ui-menu .ui-menu-item a {
  text-decoration: none;
  display: block;
  padding: .2em .4em;
  line-height: 1.5;
  zoom: 1;
}
.ui-menu .ui-menu-item a.ui-state-hover, .ui-menu .ui-menu-item a.ui-state-active {
  font-weight: normal;
  margin: -1px;
}
/* reset extra padding in Firefox *//*
 * jQuery UI Progressbar 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Progressbar#theming
 */
.ui-progressbar {
  height: 2em;
  text-align: left;
}
.ui-progressbar .ui-progressbar-value {
  margin: -1px;
  height: 100%;
}
/*
 * jQuery UI Resizable 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Resizable#theming
 */
.ui-resizable {
  position: relative;
}
.ui-resizable-handle {
  position: absolute;
  font-size: 0.1px;
  z-index: 99999;
  display: block;
}
.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}
.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  width: 100%;
  top: -5px;
  left: 0;
}
.ui-resizable-s {
  cursor: s-resize;
  height: 7px;
  width: 100%;
  bottom: -5px;
  left: 0;
}
.ui-resizable-e {
  cursor: e-resize;
  width: 7px;
  right: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-w {
  cursor: w-resize;
  width: 7px;
  left: -5px;
  top: 0;
  height: 100%;
}
.ui-resizable-se {
  cursor: se-resize;
  width: 12px;
  height: 12px;
  right: 1px;
  bottom: 1px;
}
.ui-resizable-sw {
  cursor: sw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  bottom: -5px;
}
.ui-resizable-nw {
  cursor: nw-resize;
  width: 9px;
  height: 9px;
  left: -5px;
  top: -5px;
}
.ui-resizable-ne {
  cursor: ne-resize;
  width: 9px;
  height: 9px;
  right: -5px;
  top: -5px;
}
/*
 * jQuery UI Selectable 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Selectable#theming
 */
.ui-selectable-helper {
  position: absolute;
  z-index: 100;
  border: 1px dotted black;
}
/*
 * jQuery UI Slider 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Slider#theming
 */
.ui-slider {
  position: relative;
  text-align: left;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  cursor: default;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: .7em;
  display: block;
  border: 0;
  background-position: 0 0;
}
.ui-slider-horizontal {
  height: .8em;
}
.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}
.ui-slider-vertical {
  width: .8em;
  height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}
/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  color: #000000;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.7);
  border: 1px solid #bbb;
  border-color: #bbb #aaa #999 #bbb;
  background-image: -moz-linear-gradient(top, #e6e6e6, #cccccc);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e6e6e6), color-stop(1, #cccccc));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #e6e6e6 , EndColorStr = #cccccc );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #e6e6e6 , EndColorStr = #cccccc );
}
.ui-state-default:hover,
.ui-widget-content .ui-state-default:hover,
.ui-widget-header .ui-state-default:hover,
.ui-state-default .ui-state-hover,
.ui-widget-content .ui-state-default .ui-state-hover,
.ui-widget-header .ui-state-default .ui-state-hover {
  text-shadow: 1px 1px #e6e6e6;
  background-image: -moz-linear-gradient(top, #cccccc, #b3b3b3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #cccccc), color-stop(1, #b3b3b3));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #cccccc , EndColorStr = #b3b3b3 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #cccccc , EndColorStr = #b3b3b3 );
}
.ui-state-default:active,
.ui-widget-content .ui-state-default:active,
.ui-widget-header .ui-state-default:active,
.ui-state-default .ui-state-active,
.ui-widget-content .ui-state-default .ui-state-active,
.ui-widget-header .ui-state-default .ui-state-active {
  text-shadow: 1px 1px #e6e6e6;
  background-image: -moz-linear-gradient(top, #bfbfbf, #a6a6a6);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #bfbfbf), color-stop(1, #a6a6a6));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #bfbfbf , EndColorStr = #a6a6a6 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #bfbfbf , EndColorStr = #a6a6a6 );
}
.ui-state-default.primary, .ui-widget-content .ui-state-default.primary, .ui-widget-header .ui-state-default.primary {
  border: 1px solid #3399cc;
  border-color: #70b8db #297aa3 #246b8f #70b8db;
  color: #ffffff;
  text-shadow: -1px -1px #297aa3;
  background-image: -moz-linear-gradient(top, #47a3d1, #2e8ab8);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #47a3d1), color-stop(1, #2e8ab8));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #47a3d1 , EndColorStr = #2e8ab8 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #47a3d1 , EndColorStr = #2e8ab8 );
}
.ui-state-default.primary:hover,
.ui-widget-content .ui-state-default.primary:hover,
.ui-widget-header .ui-state-default.primary:hover,
.ui-state-default.primary .ui-state-hover,
.ui-widget-content .ui-state-default.primary .ui-state-hover,
.ui-widget-header .ui-state-default.primary .ui-state-hover {
  background-image: -moz-linear-gradient(top, #2e8ab8, #297aa3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2e8ab8), color-stop(1, #297aa3));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #2e8ab8 , EndColorStr = #297aa3 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #2e8ab8 , EndColorStr = #297aa3 );
}
.ui-state-default.primary:active,
.ui-widget-content .ui-state-default.primary:active,
.ui-widget-header .ui-state-default.primary:active,
.ui-state-default.primary .ui-state-active,
.ui-widget-content .ui-state-default.primary .ui-state-active,
.ui-widget-header .ui-state-default.primary .ui-state-active {
  background-image: -moz-linear-gradient(top, #297aa3, #246b8f);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #297aa3), color-stop(1, #246b8f));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #297aa3 , EndColorStr = #246b8f );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #297aa3 , EndColorStr = #246b8f );
}
/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  border: 1px solid #fed22f;
  background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;
  color: #363636;
}
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #363636;
}
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  border: 1px solid #cd0a0a;
  background: #b81900 url(images/ui-bg_diagonals-thick_18_b81900_40x40.png) 50% 50% repeat;
  color: #ffffff;
}
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #ffffff;
}
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #ffffff;
}
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  opacity: .7;
  filter: Alpha(Opacity=70);
  font-weight: normal;
}
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  opacity: .35;
  filter: Alpha(Opacity=35);
  background-image: none;
}
/*
 * jQuery UI Tabs 1.8.9
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
.ui-tabs {
  position: relative;
  padding: .2em;
  zoom: 1;
}
/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}
.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 1px;
  margin: 0 .2em 0px 0;
  border-bottom: 0 !important;
  padding: 0;
  white-space: nowrap;
}
.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  margin-bottom: 0;
  padding-bottom: 0px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
  cursor: text;
}
.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
  cursor: pointer;
}
/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel {
  display: block;
  border-width: 0;
  padding: 1em 1.4em;
  background: none;
}
.ui-tabs .ui-tabs-hide {
  display: none !important;
}
/* TimeEntry styles */
.timeEntry_control {
  vertical-align: middle;
  margin-left: 2px;
}
* html .timeEntry_control {
  /* IE only */

  margin-top: -4px;
}
.treeview, .treeview ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.treeview ul {
  margin-top: 0px;
}
.treeview .hitarea {
  background: url(images/treeview-default.gif) -64px -25px no-repeat;
  height: 16px;
  width: 16px;
  margin-left: -16px;
  float: left;
  cursor: pointer;
}
/* fix for IE6 */
* html .hitarea {
  display: inline;
  float: none;
}
.treeview li {
  margin: 0;
  padding: 0px 0pt 0px 16px;
}
.treeview a.selected {
  background-color: #eee;
}
#treecontrol {
  margin: 1em 0;
  display: none;
}
.treeview .hover {
  color: red;
  cursor: pointer;
}
.treeview li {
  background: url(images/treeview-default-line.gif) 0 0 no-repeat;
}
.treeview li.collapsable, .treeview li.expandable {
  background-position: 0 -176px;
}
.treeview .expandable-hitarea {
  background-position: -80px -3px;
}
.treeview li.last {
  background-position: 0 -1766px;
}
.treeview li.lastCollapsable, .treeview li.lastExpandable {
  background-image: url(images/treeview-default.gif);
}
.treeview li.lastCollapsable {
  background-position: 0 -111px;
}
.treeview li.lastExpandable {
  background-position: -32px -67px;
}
.treeview div.lastCollapsable-hitarea, .treeview div.lastExpandable-hitarea {
  background-position: 0;
}
.treeview-red li {
  background-image: url(images/treeview-red-line.gif);
}
.treeview-red .hitarea, .treeview-red li.lastCollapsable, .treeview-red li.lastExpandable {
  background-image: url(images/treeview-red.gif);
}
.treeview-black li {
  background-image: url(images/treeview-black-line.gif);
}
.treeview-black .hitarea, .treeview-black li.lastCollapsable, .treeview-black li.lastExpandable {
  background-image: url(images/treeview-black.gif);
}
.treeview-gray li {
  background-image: url(images/treeview-gray-line.gif);
}
.treeview-gray .hitarea, .treeview-gray li.lastCollapsable, .treeview-gray li.lastExpandable {
  background-image: url(images/treeview-gray.gif);
}
.treeview-famfamfam li {
  background-image: url(images/treeview-famfamfam-line.gif);
}
.treeview-famfamfam .hitarea, .treeview-famfamfam li.lastCollapsable, .treeview-famfamfam li.lastExpandable {
  background-image: url(images/treeview-famfamfam.gif);
}
.treeview .placeholder {
  background: url(images/ajax-loader.gif) 0 0 no-repeat;
  height: 16px;
  width: 16px;
  display: block;
}
.filetree li {
  padding: 3px 0 2px 16px;
}
.filetree span.folder, .filetree span.file {
  padding: 1px 0 1px 16px;
  display: block;
}
.filetree span.folder {
  background: url(images/folder.gif) 0 0 no-repeat;
}
.filetree li.expandable span.folder {
  background: url(images/folder-closed.gif) 0 0 no-repeat;
}
.filetree span.file {
  background: url(images/file.gif) 0 0 no-repeat;
}
/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-widget,
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-size: 1em;
}
.ui-widget-content {
  background-color: #fff;
  color: #000000;
}
.ui-widget-content a {
  color: #3399cc;
}
.ui-widget-header {
  background-color: #88cc00;
  color: #000000;
  font-weight: bold;
}
.ui-widget-header a {
  color: #ffffff;
}
.ui-widget :active {
  outline: none;
}
/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-tl {
  -moz-border-radius: 5px 0 0 0;
  -webkit-border-radius: 5px 0 0 0;
  border-radius: 5px 0 0 0;
}
.ui-corner-tr {
  -moz-border-radius: 0 5px 0 0;
  -webkit-border-radius: 0 5px 0 0;
  border-radius: 0 5px 0 0;
}
.ui-corner-bl {
  -moz-border-radius: 0 0 0 5px;
  -webkit-border-radius: 0 0 0 5px;
  border-radius: 0 0 0 5px;
}
.ui-corner-br {
  -moz-border-radius: 0 0 5px 0;
  -webkit-border-radius: 0 0 5px 0;
  border-radius: 0 0 5px 0;
}
.ui-corner-top {
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}
.ui-corner-bottom {
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.ui-corner-right {
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
}
.ui-corner-left {
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px 0 0 5px;
  border-radius: 5px 0 0 5px;
}
.ui-corner-all {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
.ui-widget-overlay {
  background: #666666 url(images/ui-bg_diagonals-thick_20_666666_40x40.png) 50% 50% repeat;
  opacity: .50;
  filter: Alpha(Opacity=50);
}
.ui-widget-shadow {
  margin: -5px 0 0 -5px;
  padding: 5px;
  background: #000000 url(images/ui-bg_flat_10_000000_40x100.png) 50% 50% repeat-x;
  opacity: .20;
  filter: Alpha(Opacity=20);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
#billing-details > div, #availalable-roles-container > div {
  margin-bottom: 20px;
}
.list-container {
  margin-top: 20px;
}
.home-page .main-content {
  margin-top: 15px;
}
.home-page .form-container {
  margin-top: 20px;
}
.home-page .concept-edit-panel {
  margin-top: 15px;
}
.login-page .logo-top-left {
  background: url(images/sf-logo.png) no-repeat;
  height: 50px;
  margin-bottom: 15px;
}
.login-page .login-box .system-message {
  margin-bottom: 20px;
  color: #dd0000;
}
.login-page .login-box span {
  font-size: 1.2em;
}
.login-page .login-box .actions {
  margin-top: 20px;
}
.login-page .login-box .actions input {
  margin-right: 10px;
}
.header {
  height: 50px;
  overflow: hidden;
}
.header .logo-top-left {
  background: url(images/sf-logo.png) no-repeat;
  height: 50px;
}
.header .top-nav {
  position: relative;
  float: left;
  top: 16px;
  overflow: hidden;
}
.header .top-nav .badge {
  position: relative;
  top: -2px;
  font-size: 0.6em;
  font-weight: bold;
  color: black;
  padding: 2px 3px;
  border: 1px solid #cccc00;
  text-shadow: none;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: #ffff00;
}
.header .top-nav ul {
  position: relative;
  clear: left;
  float: left;
  text-align: center;
  left: 50%;
  padding: 0;
  margin: 0;
}
.header .top-nav li {
  position: relative;
  right: 50%;
  display: block;
  float: left;
  height: 3;
}
.header .top-nav li a {
  display: block;
  padding: 8px 18px;
  margin: 0 2px;
  background-color: #C3E57F;
  background-color: rgba(136, 204, 0, 0.5);
  border: none;
  text-decoration: none;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  color: #669900;
}
.header .top-nav li a:hover {
  color: black;
}
.header .top-nav li.selected a {
  color: #000;
  font-weight: bold;
  background-color: #88cc00;
  background-image: -moz-linear-gradient(top, #99e600, #88cc00);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #99e600), color-stop(1, #88cc00));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #99e600 , EndColorStr = #88cc00 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #99e600 , EndColorStr = #88cc00 );
  text-shadow: 1px 1px #99dd11;
  border: 1px solid #88cc00;
}
.header .utility-menu {
  float: right;
  text-align: right;
  margin-top: 7px;
}
.header .utility-menu .utility-nav {
  float: right;
  padding: 0;
  margin: 0;
}
.header .utility-menu .utility-nav a {
  display: block;
  float: right;
  border-right: 1px solid black;
  padding-right: 5px;
  margin-right: 5px;
}
.header .utility-menu .utility-nav a:first-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
.sub-nav {
  z-index: 99;
  margin-top: 15px;
}
.sub-nav ul {
  float: left;
  width: 100%;
  border: 1px solid #669900;
  background-image: -moz-linear-gradient(top, #88cc00, #77b300);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #88cc00), color-stop(1, #77b300));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #88cc00 , EndColorStr = #77b300 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #88cc00 , EndColorStr = #77b300 );
  padding: 0;
  margin: 0 -1px;
  overflow: visible;
}
.sub-nav ul li {
  display: block;
  float: left;
  border-right: solid 1px #690;
}
.sub-nav ul li a {
  display: block;
  font-weight: 200;
  padding: 4px 14px;
  color: #000000;
  background: inherit;
  text-shadow: 1px 1px #8fd307;
}
.sub-nav ul li a:hover {
  color: #ffffff;
  text-decoration: none;
  text-shadow: none;
}
.sub-nav ul li.selected {
  margin-bottom: -1px;
}
.sub-nav ul li.selected a {
  background-color: #f7ffe6;
  background-color: rgba(255, 255, 255, 0.9);
  text-shadow: none;
  color: black;
  padding-bottom: 5px;
}
.sub-nav.sub-sub-nav {
  margin-right: 0;
}
.container {
  overflow: visible;
}
.sub-navigation .selected {
  border: solid 1px #3399cc;
  background-color: #ccffff;
  padding: 5px 15px;
  margin: 0 -10px;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
}
.sub-navigation .selected a {
  color: #000000;
  font-weight: bold;
}
.sub-navigation .selected a:hover {
  text-decoration: none;
}
.validation-message {
  display: inline-block;
  margin-top: -1px;
  margin-bottom: 20px;
  text-transform: none;
  padding: 4px 8px;
  border: 1px solid #dd0000;
  background-color: #ffff99;
}
.panel {
  background-color: #f7ffe6;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.19999999999999996);
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.19999999999999996);
  -moz-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.19999999999999996);
  padding: 30px;
  overflow: visible;
}
.panel:first-child {
  margin-left: 0;
}
.panel > h2 {
  margin-bottom: 10px;
}
.panel > hr {
  margin-bottom: 20px;
}
.panel #show-help {
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  display: inline-block;
  position: relative;
  margin-right: .1em;
  text-decoration: none !important;
  text-align: center;
  zoom: 1;
  overflow: visible;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #3399cc;
  border-color: #70b8db #297aa3 #246b8f #70b8db;
  color: #ffffff;
  text-shadow: -1px -1px #297aa3;
  background-image: -moz-linear-gradient(top, #47a3d1, #2e8ab8);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #47a3d1), color-stop(1, #2e8ab8));
  background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
  font-size: 0.6em;
  text-transform: uppercase;
  position: relative;
  right: 0;
  top: -10px;
}
.panel #show-help:hover, .panel #show-help .ui-state-hover {
  background-image: -moz-linear-gradient(top, #2e8ab8, #297aa3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2e8ab8), color-stop(1, #297aa3));
  background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
}
.panel #show-help:active, .panel #show-help .ui-state-active {
  background-image: -moz-linear-gradient(top, #297aa3, #246b8f);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #297aa3), color-stop(1, #246b8f));
  background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
}
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
}
.modal-overlay .modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
}
.modal-overlay .modal-container .modal {
  position: relative;
  border: 3px solid black;
  bottom: 100px;
  right: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 5px 5px 10px #000000;
  -webkit-box-shadow: 5px 5px 10px #000000;
  -moz-box-shadow: 5px 5px 10px #000000;
  padding: 30px;
}
form > div {
  margin-bottom: 20px;
}
.actions {
  padding: 10px;
  margin-bottom: 20px;
  background-color: #d9d9d9;
}
.actions:last-of-type {
  border: none;
  margin: 0;
}
    .actions > input[type=submit]:first-child, .actions > input[type=button]:first-child {
        cursor: pointer;
        font-weight: bold;
        font-size: 1em;
        display: inline-block;
        position: relative;
        margin-right: .1em;
        text-decoration: none !important;
        text-align: center;
        zoom: 1;
        overflow: visible;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        border: 1px solid #3399cc;
        border-color: #70b8db #297aa3 #246b8f #70b8db;
        color: #ffffff;
        text-shadow: -1px -1px #297aa3;
        background-image: -moz-linear-gradient(top, #47a3d1, #2e8ab8);
        background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #47a3d1), color-stop(1, #2e8ab8));
        background: -ms-linear-gradient(top, #47a3d1 0%,#2e8ab8 100%); /* IE10+ */
        background: linear-gradient(to bottom, #47a3d1 0%,#2e8ab8 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
    }
.actions > input[type=submit]:first-child:hover,
.actions > input[type=button]:first-child:hover,
.actions > input[type=submit]:first-child .ui-state-hover,
.actions > input[type=button]:first-child .ui-state-hover {
  background-image: -moz-linear-gradient(top, #2e8ab8, #297aa3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2e8ab8), color-stop(1, #297aa3));
  background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
}
.actions > input[type=submit]:first-child:active,
.actions > input[type=button]:first-child:active,
.actions > input[type=submit]:first-child .ui-state-active,
.actions > input[type=button]:first-child .ui-state-active {
  background-image: -moz-linear-gradient(top, #297aa3, #246b8f);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #297aa3), color-stop(1, #246b8f));
 background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
}
.actions + .grid-container {
  margin-top: -19px;
  margin-bottom: 1px;
}
ul.multicolumn {
  float: left;
  width: 20%;
}
ul.multicolumn li {
  display: black;
  list-style: none;
  margin-right: 20px;
}
ul.multicolumn li.index-separator {
  margin-top: 10px;
  text-transform: uppercase;
  font-size: 1.5em;
}
div.bulk-option 
{
    
  display: none;
  position: absolute;
  z-index: 999;
  
  text-align: right;
  border: 1px solid #3399cc;
  border-color: #70b8db #297aa3 #246b8f #70b8db;
  color: #ffffff;
  text-shadow: -1px -1px #297aa3;
  background-image: -moz-linear-gradient(top, #47a3d1, #2e8ab8);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #47a3d1), color-stop(1, #2e8ab8));
  background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
div.bulk-option:hover, div.bulk-option .ui-state-hover {
  background-image: -moz-linear-gradient(top, #2e8ab8, #297aa3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #2e8ab8), color-stop(1, #297aa3));
background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
}
div.bulk-option:active, div.bulk-option .ui-state-active {
  background-image: -moz-linear-gradient(top, #297aa3, #246b8f);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #297aa3), color-stop(1, #246b8f));
background: -ms-linear-gradient(top, #47a3d1   0%,#2e8ab8   100%); /* IE10+ */
background: linear-gradient(to bottom, #47a3d1   0%,#2e8ab8   100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#47a3d1', endColorstr='#2e8ab8',GradientType=0 );
}
div.bulk-option label {
    display: inline-block;
    margin-left: 5px;
    color: #ffffff;

    margin-top: 2px;
    vertical-align: top;
}
div.bulk-option input {
  display: inline-block;
  padding-top: 15px;
}
.autosuggest .autosuggest-list {
  position: relative;
  float: left;
}
.autosuggest .autosuggest-list .autosuggest-clear {
  position: absolute;
  top: 7px;
  right: 5px;
  cursor: pointer;
}

.autosuggest .autosuggest-list input.ac_loading {
    background: white url('Images/indicator.gif') 99% center no-repeat;
}

.autosuggest .autosuggest-list input.ac_loading + .autosuggest-clear {
  cursor: progress;
  background: white url('Images/indicator.gif') center center no-repeat !important;
}

.separate-fields > div {
  margin-bottom: 20px;
}
.manage-page .concept-toolbar .panel {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  padding: 0px 30px;
  margin: 0 -1px;
  vertical-align: middle;
  border: 1px solid #669900;
  border-top: none;
}
.manage-page .concept-toolbar .panel .find {
  padding: 20px 0 15px 0;
  width: 79%;
  float: left;
}
.manage-page .concept-toolbar .panel .find h2, .manage-page .concept-toolbar .panel .find input {
  vertical-align: middle;
  display: inline;
  margin-right: 10px;
  margin-top: 7px;
}
.manage-page .concept-toolbar .panel .find input[type=text] {
  width: 70%;
}
.manage-page .concept-toolbar .panel .find input[type="button"] {
  margin-right: 0;
}
.manage-page .concept-toolbar .panel .new {
  border-left: 1px solid #ddd;
  height: 36px;
  padding: 15px 0 15px 30px;
  width: auto;
  float: right;
  text-align: center;
}
.manage-page .concept-toolbar .panel .new input {
  margin-top: 4px;
  display: inline;
  vertical-align: middle;
}
.manage-page .concept-navigation,
.manage-page .concept-edit-panel,
.manage-page .concept-browse,
.manage-page .sub-navigation {
  margin-top: 15px;
}
.manage-page .concept-edit-panel.sub-edit-panel {
  margin-top: 0;
}
.all-concepts{    
    text-align: center;
    margin: -22px 0 0 0;
}
div.title-bar #copy {
  position: relative;
  top: -10px;
  margin: 0;
}
div.title-bar #add-user1, div.title-bar #add-role1 {
  position: relative;
  top: -10px;
  margin: 0;
}
.privacyPolicyTermsOfUseFooter
{
   color: black;
   text-decoration: underline;
}

.privacyPolicyTermsOfUse
{
   padding-left: 100px;
   padding-right: 100px;
   background-color: rgba(243, 249, 230, 1);
}

.privacyPolicyTermsOfUse h1 {
   text-align: center;
   font-size: 24px;
   font-weight: normal;
   margin: 0;
   padding: 0;
}

.privacyPolicyTermsOfUse p {
    margin: 5px 0 0;
    padding: 0;
}

.privacyPolicyTermsOfUse li {
    margin: 5px 0 0;
    padding: 0;
}

.privacyPolicyTermsOfUse li span {
    font-weight: bold;
}

.privacyPolicyTermsOfUse ol
{
   margin-left: 50px;
}

 #sortable { list-style-type: none; margin: 0; padding: 0; width: 100%;}
  #sortable li {margin: 18px 3px 6px 10px; padding: 0.4em; padding-left: 1.05em; font-size: 1.1em; height: 50px; display:inline-block;
                background: #e6e6e6 repeat-x scroll 50% 50%;
  }
  #sortable li span { position: absolute; margin-left: -1.3em; }
  
#ui-dialog-title-marketing-campaign-dialog + a  {
  visibility: hidden;
}

  .lessen-opacity {
      opacity: 0.3;
  }
  
  .marketing-resource-default-border {
      border: 1px solid #d3d3d3; 
  }

  .marketing-resource-selected-border {
      border: 6px solid #ebeb00;
  }

  .marketing-resource-not-enabled-text {
      color: red;
      font-weight: 900;
  }

  .image-preview-dimensions {
      height: 140px;
      width: 140px;
  }

  .menu-resource {
      display: inline-block;
      margin-bottom: 5px;
  }

  .block{
      display: block;
  }

  .inline-block {
      display: inline-block;
  }

  .inline {
      display: inline;
  }

  .menu-resource-container {
      padding: 10px;
      height: 372px;
  }

  .top-margin-medium {
      margin-top: 20px;
  }

  .bottom-margin-small {
      margin-bottom: 5px;
  }

  .overflow-hidden {
      overflow: hidden;
  }

  .selected-marketing-resource-panel {
      float:left; 
      width: 30%;
  }

  .menu-resources-panel {
      float:right;
      width: 70%;
  }

  .menu-resource-class-label {
      height: 35px;
  }

  .menu-resources-classes-panel {
      margin-top: 10px;
  }

  .menu-resources-buttons-panel {
      margin-top: 30px;
  }

  .menu-resource-list-item {
      list-style-type: none; 
      display: inline-block; 
      border: 1px solid #000111; 
      margin-right: 15px; 
      margin-bottom: 15px;
  }

  .text-align-center {
      text-align: center;
  }

  .float-right {
      float: right;
  }

  .menu-resource-list {
      margin-top: 10px;
  }

  .marketing-resource-spaces {
       margin-bottom: 5px;
  }

  .deep-link-options-title {
      margin-top: 10px; 
      margin-bottom: 10px;
  }

.input-url {
    width: 500px !important;
}

/* Dynatree Overrides */

ul.dynatree-container {
  background-color: transparent;
  border: none;
}

span.dynatree-folder a {
    font-weight: normal;
}

span.dynatree-folder a {
    color: #669900;
    font-size: 0.85em;
    font-weight: bold;
    display: inline-block;
    text-transform: none;
    font-weight: normal;
}

span.dynatree-selected a {
    font-style: normal;
}

span.dynatree-connector {
    background-image: none;
}

/* End Dynatree Overrides */
/* micro clearfix hack 
http://nicolasgallagher.com/micro-clearfix-hack/ */ 

/**
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    contenteditable attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that are clearfixed.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after {
    clear: both;
}


/* common */
.image-preview-container  
{
    position:absolute; 
    border:1px solid #ccc; 
    background:#333; 
    padding:5px; 
    display:none; 
    color:#fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
}

.ac-form-input {width : 300px; }
.ac-list-input {width : 250px !important; }

.manage-page .concept-toolbar .panel .find input[type="text"] {width : 500px !important; margin: 0px;}

.find h2 {float : left;}

.note {font-size : 1em; margin-bottom : 20px; padding-left: 10px; border-left: dotted 1px red;}
.note-small {font-size : 0.8em;}
.note-large {font-size : 1.2em;}

h2.sub-title {padding-top : 1em;}

.red {color: red !important;}

/*try to fix weird color when validation is shown*/
input[type=checkbox]:focus + label, input[type=radio]:focus + label {
  color: black ; 
}

/* fix position IE7 */
.actions > input[type=submit], 
.actions > input[type=button]{
  position: static !important
}

/*fix grid*/
.ui-jqgrid .ui-pg-input {padding: 3px;}
.ui-jqgrid .ui-pg-button:hover{padding:1px;} /*fix style in main.css*/
.ui-jqgrid .ui-pg-table td { vertical-align: top !important; } /*fix paging in IE 7*/

div.grid-container {margin-bottom: 1px; overflow: scroll}

input[type=text]:disabled {background-color:#CCCCCC !important; cursor:default !important;}
input[readonly=readonly], 
textarea[readonly=readonly] {background-color:#eae9e9 !important; cursor:default !important;}

label + input[type="file"] { display: block;}

/* datepicker */
.datepicker-label-wrapper {}
.datepicker-input-wrapper {float: left; width: 100px;}
.datepicker-input-wrapper input {width: 80px;}
.datepicker-img-wrapper {float: left; margin-left : 0px; margin-right : 5px; background: url('./images/calendar-green.gif') no-repeat 4px 8px; width: 24px; height: 24px;}
.ui-datepicker-trigger { margin-top : 8px; margin-left : 4px; cursor : pointer; color: #F2F8E6; font-size: 1em; }

/*autocomplete*/
.ac_results strong {font-weight : normal; text-decoration: underline; }
.ac_over {background-color:#2B83AF;}

/*fix datepicker white line shown below*/
.ui-datepicker { padding : 0;}
.ui-datepicker-header{margin : 0.2em;}

/* custom grid */
.custom-grid-header {padding-bottom : 5px; border-bottom: solid 1px #D9D9D9; font-weight: bold; margin-bottom : 10px;}
.custom-grid-row {padding-bottom : 5px;}

/*tree view*/
.treeview label {text-transform: none; font-weight : normal;}

/*grid*/
.ui-jqgrid a, .ui-jqgrid a:hover {text-decoration: underline;}
.ui-jqgrid .grid-row-message {color : Red; }
.ui-jqgrid .ui-th-column {font-weight: normal; font-size: .8em;}

.ui-widget-content a { color: #317A9E; }

/* branding page */
div.branding-image-header{ font-weight : bold;padding-top: 10px; padding-bottom : 30px;}
div.branding-image-row{padding-bottom : 50px;}

/* activate defaults*/
div.activate-defaults {float: left;width: 325px;margin-left: 25px;}
div.activate-defaults > div {margin-bottom : 20px;}

/* rabbitmq messaging config*/
div.rabbitmq-messaging-config { float: left; width: 325px; margin-left: 25px; }
div.rabbitmq-messaging-config > div { margin-bottom : 20px; }

/* EI API config*/
div.ei-api-configuration { float: left; width: 200px; margin-left: 10px; }
div.ei-api-configuration > div { margin-bottom : 10px; }

/* growl */
div.growlUI { background: url('../images/success_result.png') no-repeat 5px 5px;}
div.growlUI h1, div.growlUI h2 {color: white; padding: 3px 3px 3px 75px; text-align: left;font-size : 1em;}

/*loading*/
div.loading-progress {visibility : hidden;}

/*form*/
div.form-row {clear:both; padding: 0 0 10px 0; }

/* order details modal */
div.order-container {float: left; font-family:Tahoma,sans-serif; text-align : left; width : 100%;}
div.order-info {float: left; padding-bottom: 10px;width: 100%;}
div.order-info div span:first-child {min-width: 150px; width: 30%; display : block; float: left; } 
div.order-item {}
div.order-item-descr{float: left; color:#156447; }
div.order-item-price{float: right; color:#333333; padding-left: 20px;}
div.order-item-qty{float: left;color:#156447; padding-left: 10px; }
div.order-item-whofor {font-size:0.8em; color:Maroon; padding-left : 10px;}
div.order-modifiers-container {padding-left: 30px;}
div.order-modifier-item {font-size:0.8em;color:Maroon;}
div.order-modifier-descr {float: left;}
div.order-modifier-price {float: right; padding-left: 10px;}
div.order-modifier-special {float: left;}
div.order-price {float : right; padding-top : 10px; color:#156447;}
div.order-price span:first-child {display : block; width : 100px; float : left;}
div.order-tax, div.order-discount, div.order-subtotal, div.order-tip, div.payment-type, div.promo-discount, div.surcharge-fee,div.delivery-fee {font-size: 0.8em; color: #333333;}

.order-detail-span { float: right;}

    /* help*/
div.context-help {float: right;}
label.context-help {display: none; border: solid 1px #5a93af; padding: 15px; background-color: #c2fbee; text-transform : none;  }
div.context-help-icon {float : right; width: 14px; height: 14px; margin-left : 5px; cursor: pointer; background-image: url('images/question-small-white.png');}
.panel #show-help {top1:  0px; margin-left: 15px; font-size: 0.9em; text-transform: none;}

div.context-button { float: right; }
div.context-button input { top: -10px; }

div.page-help {display: none; border: solid 1px #5a93af; padding: 10px; background-color: #c2fbee; max-height : 300px; overflow : auto; }
div.page-help div,
div.page-help h4 {padding-top: 10px;}
div.page-help ul { padding: 10px 0px 10px 40px; }
div.page-help li > ul {padding-top: 0px; padding-bottom: 0px;}
div.page-help label~div,
div.page-help label~ul,
div.page-help label~div~ul {padding-top: 0px;}


/* bulk button */
div.title-bar {float : right; }

/* text hint */
input.textboxhelp-init {color : Gray;}
input.textboxhelp-focus {}

/* error messages */ 
.error-message {
    color: red;
    font-weight: bold;
}

/* error validation */
label.error, .field-validation-error {padding : 3px; font-size: 1em !important; background-color : #ffff00; border : solid 1px red;  display : block; text-transform: none; font-weight : normal; color : inherit;}
.validation-summary-errors { color1: Red; border: solid 1px red;  background-color : #ffff00; padding: 10px 10px 10px 10px;}
.validation-summary-errors li { list-style: none; }

/*login*/
.login-first {}

/*sra*/
.sra-content { width : 100%; height: 600px; overflow : auto; border : solid 1px #DDDDDD; background-color: #ffffff;}

/*recaptcha*/
.recaptcha {width : 300px; padding-top: 10px;}

/*left navigation*/
.sub-navigation ul, .sub-navigation li {list-style : none;}  
.sub-navigation li {padding: 0.5em;}
.sub-navigation ul.adding-scenario li.disabled { }
.sub-navigation ul.adding-scenario li.disabled a { color : Gray !important; }

/* delivery */
div.delivery-map-container {width: 740px;}
div.delivery-map-container div.map {width : 100%; height: 500px;  border : solid 1px #A8A9A9; }
div.delivery-map-container div.toolbar {background-color : Gray; color : White; float : left; width : 100%; border : solid 1px #A8A9A9; } 
div.delivery-map-container div.toolbar div.add {float : left; padding : 10px 10px 10px 20px; }
div.delivery-map-container div.toolbar div.center {float : right; padding:10px 20px 10px 10px;}
div.delivery-map-container div.regions {float : left; width : 100%;}
div.delivery-map-container div.region { padding: 20px 0 20px 10px; border: solid 1px #A8A9A9; border-top: 0px; }
div.delivery-map-container div.region select {margin-top : 1em;}
div.delivery-map-container div.selected {background-color : #EDEDED;}
div.delivery-map-container div.region div.choice {padding-top : 10px; float : left;}

div.region-radius div.stop-edit {display: none;}

div.delivery-map-container div.template {display: none;}

div.radius-inactive label, 
div.radius-inactive span,
div.radius-inactive input {color : #D5D5D5;}
div.radius-inactive input {border-color : #D5D5D5;}

div.delivery-map-container div.region input[type='text'] {width: 50px !important;}

a.region-remove, a.region-stop {cursor : pointer;}

div.delivery-map-container label.error { padding : 0px; margin : 0px; background: none; border : none; color : inherit;}
div.delivery-map-container input.error { border: solid 1px red; height: 20px;}

div.delivery-map-container input.error, 
div.delivery-map-container .input-validation-error {}

/* bulk list */
div.bulk-list {display : none;}

/*tooltip*/
#tooltip {
    position: absolute;
    z-index: 3000;
    border: solid 1px #5a93af; 
    padding: 5px; 
    background-color: #c2fbee; 
    opacity: 0.8;
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px;
}
#tooltip h3, #tooltip div { margin: 0; font-size : 0.9em; font-weight : normal;  color1: #669900;}

/*availability*/
div.availbility-item { padding-bottom : 10px;padding-top : 10px;}
div.availbility-advanced-message {color : Red;}

/*concept list*/
div.concept-alpha div {float: left; padding: 5px 5px 5px 0px;}

/* concept edit */
div.concept-processors-item, div.concept-cuisines-item, div.concept-delivery-provider-item  {padding : 5px;}
div.concept-processors-remove, div.concept-cuisines-remove, div.concept-delivery-provider-remove {float: left; padding: 2px 5px 0;}
div.concept-processors-list, div.concept-cuisines-list, div.concept-tender-list, div.concept-delivery-providers-list {float: left;}
div.concept-processors-add, div.concept-cuisines-add, div.concept-tender-add, div.concept-delivery-provider-add  { padding: 10px 0px 0px 10px; float: left;}

/* concept auth token */
div.concept-auth-token {padding :  0 0 15px;}
div.concept-auth-token-remove {float: left; padding: 0px 5px 0;}
div.concept-auth-token-add {padding : 0 0 15px;}
div.concept-auth-token-title {padding : 0 0 15px;}

/*advanced serve time*/
.availability-advanced-container {width : 100%; overflow : auto;border : solid 1px #DDDDDD; margin-bottom : 10px; margin-top: 10px;}

.availability-advanced {font-size: 0.9em; width :1000px; }

.availability-advanced-day {padding : 5px; margin-bottom : 10px;}
.availability-advanced-day .day-title { padding-bottom : 5px; font-size : 1.2em;}

.availability-advanced-day .hour-row {float : left; border-top : solid 1px; border-right: solid 1px;}
.availability-advanced-day .hour-row div { width: 36px; text-align: center;}
.availability-advanced-day .hour-row div.title { width: 50px; border-left : solid 1px;border-bottom : solid 1px; text-align : left; padding-left : 3px;}
.availability-advanced-day .hour-row div:first-child { border-bottom : solid 1px;}
 .availability-advanced-day .hour-row div.hour-check { width: 20px;height: 16px;}

.availability-advanced-day .hour-row .kitchen div ,
.availability-advanced-day .hour-row .pickup div ,
.availability-advanced-day .hour-row .store div ,
.availability-advanced-day .hour-row .delivery div { border: none; float : left; width : 9px; border-bottom : solid 1px;}

.availability-advanced-day .hour-row .kitchen {cursor: pointer;}

.kitchen-day{ background : url('./../../Content/Images/avail_kitchen_bgr.png') no-repeat 0px 0px;}
.pickup-day{ background : url('./../../Content/Images/avail_pickup_bgr.png') no-repeat 0px 0px;}
.delivery-day{ background : url('./../../Content/Images/avail_delivery_bgr.png') no-repeat 0px 0px;}
.store-day { background-color : aquamarine;}
.invalid-day{ background : url('./../../Content/Images/avail_invalid_bgr.png') no-repeat 0px 0px;}

.edit-advanced-time {border : solid 1px #DDDDDD; margin-bottom: 10px; padding : 5px;}
.edit-advanced-time span {font-size: 1.2em;}

/* print*/
.print-content { padding : 10px;}

/*rights tree*/
#tree-rights {min-width : 720px;}
div.rights-tree-container {width : 300px; float : left; border1: solid 1px red; }
div.rights-tree{ border: 1px solid #BBBBBB; height: 250px; width: 290px; overflow : auto; text-align : left; padding : 5px;} 
div.rights-tree-actions {padding: 110px 10px 0 10px; float: left; font-weight : bold;}

div.rights-tree-actions a, 
div.rights-tree-actions a:hover {text-decoration: none; }
div.rights-tree-actions div {padding-bottom: 15px;}

/*menu items tree*/
div.menu-items-tree { border: 1px solid #BBBBBB; height: 250px; width: 360px; overflow : auto; text-align : left; padding : 5px; }

#loyalty-accrual-configuration-trees .menu-items-tree { width: 100%; }

div.restaurants-grid-small{ border: 1px solid #BBBBBB; height: 260px; width: 360px; overflow : auto; text-align : left; padding: top bottom right; }

div.restaurants-grid-big {border: 1px solid #BBBBBB;  height: 400px; overflow: auto;  text-align: left; width1: 360px; }

/*franchisee logon*/
.login-first a {font-size: 1.5em; color: Red;}

/* payment */
#gift-processor div, #gift-config div, #card-processor div {margin-bottom: 20px;}
.yes-no {min-width : 60px;}
.prepaid-processors-add { padding: 10px 0px 0px 25px;float: left; }

.prepaid-processors-remove { float: left; padding: 2px 5px 0; }

.prepaid-processors-item { padding-top: 15px; }
/*offline*/
div.offline-map-container {width: 700px; height: 400px; background-color : #A8A9A9; margin-top : 10px;}
div.offline-map-container div.map {width : 100%; height: 100%; border : solid 1px #A8A9A9; }
div.offline-map-container div.store-info {font-size : 0.9em;}
div.offline-map-container div.store-info label { text-transform : none; width: 50px;}
div.offline-map-container div.store-info div {font-size : 0.9em;}

/*site monitor*/
div.subgrid-container {padding: 5px 3px 5px 0; }

/*header*/
.user-message {font-size: 0.9em;}
.user-message span:first-child {font-weight: bold;}

/*min width*/
.min-130 {min-width: 130px;}
.min-180 {min-width: 180px;}
.min-200 {min-width: 200px;}
.min-250 {min-width: 250px;}
.min-280 {min-width: 280px;}
.min-320 {min-width: 320px;}
.min-360 {min-width: 360px;}

.width-300 {width : 300px;}

.min-wrapper{width: 100%; min-width: 655px;}
/*version*/
.version {font-size: 0.8em;}

/* order search */
.orders-search input[type="button"] {padding-left: 10px;}
.orders-search .date,
.orders-search .time {float: left; padding-right: 10px;}
.orders-search .orderId-search input[type="text"]{max-width: 130px;}

/* link setter */
.set-link {cursor:pointer; cursor:hand;}

/* store processing*/
.menu-disabled {color : red !important;}

/* Timepicker stylesheet */
.ui-timepicker-inline { display: inline; }

#ui-timepicker-div { padding: 0.2em }
.ui-timepicker-table { display: inline-table }
.ui-timepicker-table table { margin:0.15em 0 0 0; border-collapse: collapse; }

.ui-timepicker-hours, .ui-timepicker-minutes { padding: 0.2em;  }

.ui-timepicker-table .ui-timepicker-title { line-height: 1.8em; text-align: center; }
.ui-timepicker-table td { padding: 0.1em; width: 2.2em; }
.ui-timepicker-table th.periods { padding: 0.1em; width: 2.2em; }

/*link button*/

a.link-button{
  cursor: pointer;
  font-weight: bold;
  font-size: 1em;
  display: inline-block;
  position: relative;
  margin-right: .1em;
  text-decoration: none !important;
  text-align: center;
  zoom: 1;
  overflow: visible;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #000000;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.7);
  border: 1px solid #bbb;
  border-color: #bbb #aaa #999 #bbb;
  background-image: -moz-linear-gradient(top, #e6e6e6, #cccccc);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #e6e6e6), color-stop(1, #cccccc));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #e6e6e6 , EndColorStr = #cccccc );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #e6e6e6 , EndColorStr = #cccccc );
  padding: 4px 8px;
  line-height: normal;
}

a.link-button:hover {
  text-shadow: 1px 1px #e6e6e6;
  background-image: -moz-linear-gradient(top, #cccccc, #b3b3b3);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #cccccc), color-stop(1, #b3b3b3));
  -ms-filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #cccccc , EndColorStr = #b3b3b3 );
  filter: progid:DXImageTransform.Microsoft.gradient( StartColorStr = #cccccc , EndColorStr = #b3b3b3 );
}

/*span-link*/
span.link
{
    color : #3399CC;
}

/* span for disabled cells*/
.ui-timepicker-table td span {
    display:block;
    padding:0.1em 0.2em 0.1em 0.3em;
    width: 1.2em;
    text-align:right;
    text-decoration:none;
} 
/* anchors for clickable cells */
.ui-timepicker-table td a {
    display:block;
    padding:0.1em 0.2em 0.1em 0.2em;
    width: 1.2em;
    text-align:right;
    text-decoration:none;
}

.ui-timepicker-title {font-size : 0.8em;} 
.ui-timepicker .periods {font-size : 0.8em;} 
.ui-timepicker .ui-state-active
{
   border: 1px solid #fed22f;
  background: #ffe45c url(images/ui-bg_highlight-soft_75_ffe45c_1x100.png) 50% top repeat-x;
  color: #363636;
}

/*time container*/
.time-container{width: 100px; }
.time-container label {float: left; color: Red;}

.time-input{ float: left;  width: 80px;}
.time-clock{ float: right; background : url('./images/clock.png') no-repeat 3px 6px; width: 18px; height: 22px; overflow: hidden; cursor: pointer;}

/*default tender id*/
.default-tender-input{ max-width: 90px; }

/*network printer*/
.printer-error-row { color: Red; }

a.printer-error {color: Red; border-bottom: 1px dashed brown; text-decoration: none;}
a.printer-error:hover {position: relative; }
a.printer-error div {display: none;}

a.printer-error:hover div {
    display: block;
    font-size: 0.9em;
    position: absolute; 
    top: 10px; 
    left: 10px;
    border: solid 1px #5a93af; 
    background-color: #c2fbee; 
    padding: 5px; 
    margin: 10px; 
    z-index: 100;
    opacity: 0.9;
    max-width: 400px;
    min-width: 200px;
    width1: 200px;
    -webkit-border-radius: 4px; 
    -moz-border-radius: 4px;
}

/*fix top tabs in IE*/
.header .top-nav li { height: 34px;}

/*checkout*/

#exempt > div {margin-bottom: 20px;}


/* store payment info*/
#gift-processor input[type=text], #card-processor input[type=text] { width: 350px;}

.notifications .level-Warning {
    background-color: yellow;
    font-size: small;
}
