/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 *
 * Detailed information about this CSS: h5bp.com/css
 *
 * ==|== normalize ==========================================================
 */


/* =============================================================================
   HTML5 display definitions
   ========================================================================== */

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }


/* =============================================================================
   Base
   ========================================================================== */

/*
 * 1. Correct text resizing oddly in IE6/7 when body font-size is set using em units
 * 2. Prevent iOS text size adjust on device orientation change, without disabling user zoom: h5bp.com/g
 */

html { font-size: 13px; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }

html, button, input, select, textarea { 
	font-family: sans-serif;
	color: #666666; 
	}

body { 
	margin: 0;
	font-size: 1em;
	line-height: 1.4;
	background-color:#e9e9e9;
	}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate
 * Also: hot pink! (or customize the background color to match your design)
 */

::-moz-selection { background: #529DC0; color: #fff; text-shadow: none; }
::selection { background: #529DC0; color: #fff; text-shadow: none; }


/* =============================================================================
   Links
   ========================================================================== */

a { color: #0873A4; }
a:visited { color: #0873A4; }
a:hover { color: #0873A4; }
a:focus { outline: thin dotted; }

/* Improve readability when focused and hovered in all browsers: h5bp.com/h */
a:hover, a:active { outline: 0; }


/* =============================================================================
   Typography
   ========================================================================== */

abbr[title] { border-bottom: 1px dotted; }

b, strong { font-weight: bold; }

blockquote { margin: 1em 40px; }

dfn { font-style: italic; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }

ins { background: #ff9; color: #000; text-decoration: none; }

mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }

/* Redeclare monospace font family: h5bp.com/j */
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }

/* Improve readability of pre-formatted text in all browsers */
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }

q { quotes: none; }
q:before, q:after { content: ""; content: none; }

small { font-size: 85%; }

/* Position subscript and superscript content without affecting line-height: h5bp.com/k */
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }


/* =============================================================================
   Lists
   ========================================================================== */

ul, ol { margin: 1em 0; padding: 0 0 0 10px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }


/* =============================================================================
   Embedded content
   ========================================================================== */

/*
 * 1. Improve image quality when scaled in IE7: h5bp.com/d
 * 2. Remove the gap between images and borders on image containers: h5bp.com/i/440
 */

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

/*
 * Correct overflow not hidden in IE9
 */

svg:not(:root) { overflow: hidden; }


/* =============================================================================
   Figures
   ========================================================================== */

figure { margin: 0; }


/* =============================================================================
   Forms
   ========================================================================== */

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }

/* Indicate that 'label' will shift focus to the associated form element */
label { cursor: pointer; }

/*
 * 1. Correct color not inheriting in IE6/7/8/9
 * 2. Correct alignment displayed oddly in IE6/7
 */

legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }

/*
 * 1. Correct font-size not inheriting in all browsers
 * 2. Remove margins in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers
 */

button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }

/*
 * 1. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */

button, input { line-height: normal; }

/*
 * 1. Display hand cursor for clickable form elements
 * 2. Allow styling of clickable form elements in iOS
 * 3. Correct inner spacing displayed oddly in IE7 (doesn't effect IE6)
 */

button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }

/*
 * Re-set default cursor for disabled elements
 */

button[disabled], input[disabled] { cursor: default; }

/*
 * Consistent box sizing and appearance
 */

input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }

/*
 * Remove inner padding and border in FF3/4: h5bp.com/l
 */

button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */

textarea { overflow: auto; vertical-align: top; resize: vertical; }

/* Colors for form validity */
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }


/* =============================================================================
   Tables
   ========================================================================== */

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }


/* =============================================================================
   Chrome Frame Prompt
   ========================================================================== */

.chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }


/* ==|== primary styles =====================================================
   Author: Sam Stimpson
   ========================================================================== */
   
   .statue_bg { 
   	background-image:url(../images/layout/statue.jpg);
	background-position:5% 0%;
	background-repeat:no-repeat;
	}
   
/* =============================================================================
   ALERTS
   ========================================================================== */
	
	div.alert-box { display: block; padding: 6px 7px; font-weight: bold; font-size: 13px; background: #eee; border: 1px solid rgba(0,0,0,0.1); margin-bottom: 12px; border-radius: 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; text-shadow: 0 1px rgba(255,255,255,0.9); position: relative; }
	.alert-box.success { background-color: #7fae00; color: #fff; text-shadow: 0 -1px rgba(0,0,0,0.3); }
	.alert-box.warning { background-color: #f68b01; color: #fff; text-shadow: 0 -1px rgba(0,0,0,0.3); }
	.alert-box.error { background-color: #c00000; color: #fff; text-shadow: 0 -1px rgba(0,0,0,0.3); }
	.alert-box.custom { background-color: #CDDEE6; color: #fff; text-shadow:none; border: 1px solid rgba(7,115,161,0.5); color:#2d2d2d; }
	
	.alert-box a.close { color: #000; position: absolute; right: 4px; top: 0; font-size: 18px; opacity: 0.2; padding: 4px; }
	.alert-box a.close:hover,.alert-box a.close:focus { opacity: 0.4; }

/* =============================================================================
   HEADER
   ========================================================================== */
	   
	.login_bar { height:0px; overflow:hidden; }
	.no-js { display:none; }
	
	header.healthcare { 
		border-top:3px solid #0873A4;
		height: 118px;
		background-image:url(../images/layout/header/gradient.png);
		background-position:0 0;
		background-repeat:repeat-x;
		position:relative;
		}
	header.healthcare a.healthcare_logo:link,
	header.healthcare a.healthcare_logo:visited { 
		display:inline-block; width:179px; height:108px; 	
		}
	header.healthcare a img { display:inline-block; }
	
	header.healthcare a.login_state:link,
	header.healthcare a.login_state:visited { 
		display:block; 
		position:absolute;
		top:0; right:10px;
		background-color:#0873A4;
		color:#ffffff;
		text-decoration:none;
		font-weight:bold;
		font-size:13px;
		text-transform:uppercase;
		padding-top:5px;
		padding-bottom:5px;
		padding-left:10px;
		padding-right:10px;
		-webkit-border-bottom-right-radius: 8px;
		-webkit-border-bottom-left-radius: 8px;
		-moz-border-radius-bottomright: 8px;
		-moz-border-radius-bottomleft: 8px;
		border-bottom-right-radius: 8px;
		border-bottom-left-radius: 8px;
		}
	header.healthcare a.login_state:hover { 
		background-color:#085c83;
		}
	header.healthcare a.login_state.on_state { background-color:#085c83; }
	.content_container { background-color:#ffffff; }
	
	/* social media icons */
	ul#social_media_icons { position:absolute; top:5px; right:90px; margin:0; padding:0; list-style:none; }
	ul#social_media_icons li { display:inline-block; float:left; margin-right:10px; }

/* =============================================================================
   FOOTER
   ========================================================================== */

	footer { background-color:#2D2D2D; }
	footer #footer_bar { 
		background-color:#0873A4; 
		-webkit-border-bottom-right-radius: 8px;
		-webkit-border-bottom-left-radius: 8px;
		-moz-border-radius-bottomright: 8px;
		-moz-border-radius-bottomleft: 8px;
		border-bottom-right-radius: 8px;
		border-bottom-left-radius: 8px;
		}
	#footer_bar ul { margin:0; padding:10px 10px 8px 10px; list-style:none; }
	#footer_bar ul li { display:inine-block; float:left; font-size:11px; color:#fff; }
	#footer_bar ul li.first-child { margin-right:150px; }
	#footer_bar ul li a:link,
	#footer_bar ul li a:visited { 
		color:#fff; text-decoration:none; 
		text-transform:capitalize;
		margin-right:15px;
		font-size:11px; color:#fff
		}
	#footer_bar ul li a:hover,
	#footer_bar ul li a.on_state {
		text-decoration:underline;	
		}

/* =============================================================================
   NAVIGATION
   ========================================================================== */


	ul#navigation { 
		position:absolute; top:75px; left:179px; width:817px; list-style:none; margin:0; padding:0;
		background-position:0 2px;
		background-repeat:repeat-x;
		background-image:url(../images/layout/header/bar.gif);
		 }
	ul#navigation li { display:block; float:left; }

	ul#navigation li a:link,
	ul#navigation li a:visited { 
		height:33px;
		display:inline-block; 
		background-position:0 0;
		background-repeat:no-repeat;
		background-image:url(../images/layout/header/nav.gif);
		} 
	ul#navigation li a.on_state { background-position:0 -33px !important; }
	
	ul#navigation li a.home:link,
	ul#navigation li a.home:visited { background-position:0 0 !important; width:80px; } 
	ul#navigation li a.home:hover { background-position:0 -33px !important; }
	ul#navigation li a.home.on_state { background-position:0 -33px !important; }
	
	ul#navigation li a.entries:link,
	ul#navigation li a.entries:visited { background-position:-80px 0 !important; width:131px; } 
	ul#navigation li a.entries:hover { background-position:-80px -33px !important; }
	ul#navigation li a.entries.on_state { background-position:-80px -33px !important; } 
	
	ul#navigation li a.catalog:link,
	ul#navigation li a.catalog:visited { background-position:-218px 0  !important;; width:97px; }
	ul#navigation li a.catalog:hover { background-position:-218px -33px  !important;; }
	ul#navigation li a.catalog.on_state { background-position:-218px -33px !important; }
	  
	ul#navigation li a.jury:link,
	ul#navigation li a.jury:visited { background-position:-309px 0  !important;; width:107px; } 
	ul#navigation li a.jury:hover { background-position:-309px -33px  !important;; }
	ul#navigation li a.jury.on_state { background-position:-309px -33px !important; }
	
	ul#navigation li a.awards:link,
	ul#navigation li a.awards:visited { background-position:-770px 0  !important;; width:100px; }  
	ul#navigation li a.awards:hover { background-position:-770px -33px  !important;; }
	ul#navigation li a.awards.on_state { background-position:-770px -33px !important; }
	
	ul#navigation li a.store:link,
	ul#navigation li a.store:visited { background-position:-553px 0  !important;; width:75px; }
	ul#navigation li a.store:hover { background-position:-553px -33px  !important;; right}
	ul#navigation li a.store.on_state { background-position:-553px -33px !important; }
	
	ul#navigation li a.press:link,
	ul#navigation li a.press:visited { background-position:-628px 0  !important;; width:120px; }
	ul#navigation li a.press:hover { background-position:-628px -33px  !important;; }
	ul#navigation li a.press.on_state { background-position:-628px -33px !important; } 
 

    

/* =============================================================================
   SUBNAVIGATION
   ========================================================================== */
   
	ul#subnavigation { margin:0; padding:0; list-style:none; }
	ul#subnavigation li { border-bottom:1px solid #fff; }
	ul#subnavigation li a:link,
	ul#subnavigation li a:visited { 
		display:block; 
		text-decoration:none;
		font-size:13px; 
		background-color:#fff;
		padding:2px 5px;
		color:#2d2d2d;
		}
	ul#subnavigation li a:focus,
	ul#subnavigation li a.on_state { 
		background-color:#0973A5;
		color:#fff;
		}
	ul#subnavigation li a:hover { background-color:#529dc0; color:#fff; }
	
	/* second level subnavigation */
	ul#subnavigation li ul { margin:5px 0; padding:0; list-style:none; }
	ul#subnavigation li ul li { padding-left:20px; }
	ul#subnavigation li ul li a:link,
	ul#subnavigation li ul li a:visited { background-color:none; }
	ul#subnavigation li ul li a:hover { color:#2d2d2d; background-color:#fff; color:#0873A4; }	
	ul#subnavigation li ul li a.on_state { color:#0873A4; font-weight:bold; background-color:#fff; }

	ul#subnavigation li ul.sub-subnav li { padding-left:10px;}
/* =============================================================================
   FOOTER ADS/SUPPORTERS
   ========================================================================== */
   
	ul.footer_ads { margin:0; padding:0; list-style:none; }
	ul.footer_ads li { display:inline-block; float:left; } 
	ul.footer_ads li img { display:block; }

/* =============================================================================
   BANNER / BREADCRUMB
   ========================================================================== */

	.banner { width:976px; height:80px; margin-top:10px; }
	.banner img { display:block; }
	
	ul#breadcrumb { margin:0 10px; padding:0; list-style:none; border:1px solid #0973A5; }
	ul#breadcrumb li { display:inline-block; float:left; font-size:13px; }
	
	ul#breadcrumb li a:link,
	ul#breadcrumb li a:visited {
		display:inline-block;
		text-decoration:none;
		padding:2px 10px 3px 10px;
		text-transform:capitalize;
		color:#2d2d2d; font-weight:bold;
		}
	
	ul#breadcrumb li a  p { display:block; margin:0; padding:0;}
	
	ul#breadcrumb li a:hover { text-decoration:underline; }
	
	ul#breadcrumb li.first-child { 
		padding-right:13px;
		background-image:url(../images/breadcrumb/breadcrumb_point.gif);
		background-position:100% 0;
		background-repeat:no-repeat;
		margin-right:10px;
		}
	ul#breadcrumb li.first-child a:link,
	ul#breadcrumb li.first-child a:visited { 
		background-color:#0973A5;
		color:#fff;
		}
	ul#breadcrumb li.nth { 
		padding-left:10px; 
		background-image:url(../images/breadcrumb/hb_arrow.gif);
		background-position:0 50%;
		background-repeat:no-repeat;
		}
	
/* =============================================================================
   -
   ========================================================================== */







/* ==|== media queries ======================================================
   EXAMPLE Media Query for Responsive Design.
   This example overrides the primary ('mobile first') styles
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}



/* ==|== non-semantic helper classes ========================================
   Please define your styles before this section.
   ========================================================================== */

/* For image replacement */
.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }

/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden { display: none !important; visibility: hidden; }

/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* Contain floats: h5bp.com/q */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }



/* ==|== print styles =======================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}

/** photo and video gallery styles **/

 ul#gallery_thumb_container li a:hover{
 	border: 2px solid #0973A5;
 }
/** press styles **/ 

ul#subnavigation.press li a:link, ul#subnavigation.press li a:visited{
 	padding-bottom:10px;
 	padding-top:10px;
 }
 ul#subnavigation.press li{
 	border-bottom:1px dashed #ccc;
 }
  ul#subnavigation.press li:last-of-type{
 	border-bottom:none;
 }
 
 /** catalogue styles **/
 table.entry_list_table td.category_prize{
 	background:#529dc0 !important;
 }

/* ---------------------------------------------------------------------------------------------------------------
		FORMS GENERIC
--------------------------------------------------------------------------------------------------------------- */


form.frontend {
  margin: 0 0 18px;
}

form.frontend fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

form.frontend legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 27px;
  font-size: 11px;
  line-height: 36px;
  color: #E5E5E5;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

form.frontend legend small {
  font-size: 13.5px;
  color: #999999;
}

form.frontend label,
form.frontend input,
form.frontend button,
form.frontend select,
form.frontend textarea {
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
}

form.frontend input,
form.frontend button,
form.frontend select,
form.frontend textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

form.frontend label {
  display: block;
  margin-bottom: 5px;
}

form.frontend select,
form.frontend textarea,
form.frontend input[type="text"],
form.frontend input[type="password"],
form.frontend input[type="datetime"],
form.frontend input[type="datetime-local"],
form.frontend input[type="date"],
form.frontend input[type="month"],
form.frontend input[type="time"],
form.frontend input[type="week"],
form.frontend input[type="number"],
form.frontend input[type="email"],
form.frontend input[type="url"],
form.frontend input[type="search"],
form.frontend input[type="tel"],
form.frontend input[type="color"],
form.frontend .uneditable-input {
  display: inline-block;
  height: 18px;
  padding: 4px;
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 18px;
  color: #555555;
}

form.frontend input,
form.frontend textarea {
  width: 210px;
}

form.frontend textarea {
  height: auto;
}

form.frontend textarea,
form.frontend input[type="text"],
form.frontend input[type="password"],
form.frontend input[type="datetime"],
form.frontend input[type="datetime-local"],
form.frontend input[type="date"],
form.frontend input[type="month"],
form.frontend input[type="time"],
form.frontend input[type="week"],
form.frontend input[type="number"],
form.frontend input[type="email"],
form.frontend input[type="url"],
form.frontend input[type="search"],
form.frontend input[type="tel"],
form.frontend input[type="color"],
form.frontend .uneditable-input {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
     -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
      -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
       -o-transition: border linear 0.2s, box-shadow linear 0.2s;
          transition: border linear 0.2s, box-shadow linear 0.2s;
}

form.frontend textarea:focus,
form.frontend input[type="text"]:focus,
form.frontend input[type="password"]:focus,
form.frontend input[type="datetime"]:focus,
form.frontend input[type="datetime-local"]:focus,
form.frontend input[type="date"]:focus,
form.frontend input[type="month"]:focus,
form.frontend input[type="time"]:focus,
form.frontend input[type="week"]:focus,
form.frontend input[type="number"]:focus,
form.frontend input[type="email"]:focus,
form.frontend input[type="url"]:focus,
form.frontend input[type="search"]:focus,
form.frontend input[type="tel"]:focus,
form.frontend input[type="color"]:focus,
form.frontend .uneditable-input:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */

  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
}

form.frontend input[type="radio"],
form.frontend input[type="checkbox"] {
  margin: 3px 0;
  *margin-top: 0;
  /* IE7 */

  line-height: normal;
  cursor: pointer;
}

form.frontend input[type="submit"],
form.frontend input[type="reset"],
form.frontend input[type="button"],
form.frontend input[type="radio"],
form.frontend input[type="checkbox"] {
  width: auto;
}

form.frontend .uneditable-textarea {
  width: auto;
  height: auto;
}

form.frontend select,
form.frontend input[type="file"] {
  height: 28px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */

  *margin-top: 4px;
  /* For IE7, add top margin to align select with labels */

  line-height: 28px;
}

form.frontend select {
  width: 220px;
  border: 1px solid #bbb;
}

form.frontend select[multiple],
form.frontend select[size] {
  height: auto;
}

form.frontend select:focus,
form.frontend input[type="file"]:focus,
form.frontend input[type="radio"]:focus,
form.frontend input[type="checkbox"]:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

form.frontend .radio,
form.frontend .checkbox {
  min-height: 18px;
  padding-left: 18px;
}

form.frontend .radio input[type="radio"],
form.frontend .checkbox input[type="checkbox"] {
  float: left;
  margin-left: -18px;
}

form.frontend .controls > .radio:first-child,
form.frontend .controls > .checkbox:first-child {
  padding-top: 5px;
}

form.frontend .radio.inline,
form.frontend .checkbox.inline {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 0;
  vertical-align: middle;
}

form.frontend .radio.inline + .radio.inline,
form.frontend .checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}

form.frontend .input-mini {
  width: 60px;
}

form.frontend .input-small {
  width: 90px;
}

form.frontend .input-medium {
  width: 150px;
}

form.frontend .input-large {
  width: 210px;
}

form.frontend .input-xlarge {
  width: 270px;
}

form.frontend .input-xxlarge {
  width: 530px;
}

form.frontend input[class*="span"],
form.frontend select[class*="span"],
form.frontend textarea[class*="span"],
form.frontend .uneditable-input[class*="span"],
form.frontend .row-fluid input[class*="span"],
form.frontend .row-fluid select[class*="span"],
form.frontend .row-fluid textarea[class*="span"],
form.frontend .row-fluid .uneditable-input[class*="span"] {
  float: none;
  margin-left: 0;
}

form.frontend .input-append input[class*="span"],
form.frontend .input-append .uneditable-input[class*="span"],
form.frontend .input-prepend input[class*="span"],
form.frontend .input-prepend .uneditable-input[class*="span"],
form.frontend .row-fluid .input-prepend [class*="span"],
form.frontend .row-fluid .input-append [class*="span"] {
  display: inline-block;
}

form.frontend input,
form.frontend textarea,
form.frontend .uneditable-input {
  margin-left: 0;
}

form.frontend input.span12,
form.frontend textarea.span12,
form.frontend .uneditable-input.span12 {
  width: 930px;
}

form.frontend input.span11,
form.frontend textarea.span11,
form.frontend .uneditable-input.span11 {
  width: 850px;
}

form.frontend input.span10,
form.frontend textarea.span10,
form.frontend .uneditable-input.span10 {
  width: 770px;
}

form.frontend input.span9,
form.frontend textarea.span9,
form.frontend .uneditable-input.span9 {
  width: 690px;
}

form.frontend input.span8,
form.frontend textarea.span8,
form.frontend .uneditable-input.span8 {
  width: 610px;
}

form.frontend input.span7,
form.frontend textarea.span7,
form.frontend .uneditable-input.span7 {
  width: 530px;
}

form.frontend input.span6,
form.frontend textarea.span6,
form.frontend .uneditable-input.span6 {
  width: 450px;
}

form.frontend input.span5,
form.frontend textarea.span5,
form.frontend .uneditable-input.span5 {
  width: 370px;
}

form.frontend input.span4,
form.frontend textarea.span4,
form.frontend .uneditable-input.span4 {
  width: 290px;
}

form.frontend input.span3,
form.frontend textarea.span3,
form.frontend .uneditable-input.span3 {
  width: 210px;
}

form.frontend input.span2,
form.frontend textarea.span2,
form.frontend .uneditable-input.span2 {
  width: 130px;
}

form.frontend input.span1,
form.frontend textarea.span1,
form.frontend .uneditable-input.span1 {
  width: 50px;
}

form.frontend input[disabled],
form.frontend select[disabled],
form.frontend textarea[disabled],
form.frontend input[readonly],
form.frontend select[readonly],
form.frontend textarea[readonly] {
  cursor: not-allowed;
  background-color: #eeeeee;
  border-color: #ddd;
}

form.frontend input[type="radio"][disabled],
form.frontend input[type="checkbox"][disabled],
form.frontend input[type="radio"][readonly],
form.frontend input[type="checkbox"][readonly] {
  background-color: transparent;
}

form.frontend .control-group.warning > label,
form.frontend .control-group.warning .help-block,
form.frontend .control-group.warning .help-inline {
  color: #c09853;
}

form.frontend .control-group.warning .checkbox,
form.frontend .control-group.warning .radio,
form.frontend .control-group.warning input,
form.frontend .control-group.warning select,
form.frontend .control-group.warning textarea {
  color: #c09853;
  border-color: #c09853;
}

form.frontend .control-group.warning .checkbox:focus,
form.frontend .control-group.warning .radio:focus,
form.frontend .control-group.warning input:focus,
form.frontend .control-group.warning select:focus,
form.frontend .control-group.warning textarea:focus {
  border-color: #a47e3c;
  -webkit-box-shadow: 0 0 6px #dbc59e;
     -moz-box-shadow: 0 0 6px #dbc59e;
          box-shadow: 0 0 6px #dbc59e;
}

form.frontend .control-group.warning .input-prepend .add-on,
form.frontend .control-group.warning .input-append .add-on {
  color: #c09853;
  background-color: #fcf8e3;
  border-color: #c09853;
}

form.frontend .control-group.error > label,
form.frontend .control-group.error .help-block,
form.frontend .control-group.error .help-inline {
  color: #b94a48;
}

form.frontend .control-group.error .checkbox,
form.frontend .control-group.error .radio,
form.frontend .control-group.error input,
form.frontend .control-group.error select,
form.frontend .control-group.error textarea {
  color: #b94a48;
  border-color: #b94a48;
}

.control-group.error .checkbox:focus,
form.frontend .control-group.error .radio:focus,
form.frontend .control-group.error input:focus,
form.frontend .control-group.error select:focus,
form.frontend .control-group.error textarea:focus {
  border-color: #953b39;
  -webkit-box-shadow: 0 0 6px #d59392;
     -moz-box-shadow: 0 0 6px #d59392;
          box-shadow: 0 0 6px #d59392;
}

form.frontend .control-group.error .input-prepend .add-on,
form.frontend .control-group.error .input-append .add-on {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #b94a48;
}

form.frontend .control-group.success > label,
form.frontend .control-group.success .help-block,
form.frontend .control-group.success .help-inline {
  color: #468847;
}

form.frontend .control-group.success .checkbox,
form.frontend .control-group.success .radio,
form.frontend .control-group.success input,
form.frontend .control-group.success select,
form.frontend .control-group.success textarea {
  color: #468847;
  border-color: #468847;
}

form.frontend .control-group.success .checkbox:focus,
form.frontend .control-group.success .radio:focus,
form.frontend .control-group.success input:focus,
form.frontend .control-group.success select:focus,
form.frontend .control-group.success textarea:focus {
  border-color: #356635;
  -webkit-box-shadow: 0 0 6px #7aba7b;
     -moz-box-shadow: 0 0 6px #7aba7b;
          box-shadow: 0 0 6px #7aba7b;
}

form.frontend .control-group.success .input-prepend .add-on,
form.frontend .control-group.success .input-append .add-on {
  color: #468847;
  background-color: #dff0d8;
  border-color: #468847;
}

form.frontend input:focus:required:invalid,
form.frontend textarea:focus:required:invalid,
form.frontend select:focus:required:invalid {
  color: #b94a48;
  border-color: #ee5f5b;
}

form.frontend input:focus:required:invalid:focus,
form.frontend textarea:focus:required:invalid:focus,
form.frontend select:focus:required:invalid:focus {
  border-color: #e9322d;
  -webkit-box-shadow: 0 0 6px #f8b9b7;
     -moz-box-shadow: 0 0 6px #f8b9b7;
          box-shadow: 0 0 6px #f8b9b7;
}

form.frontend .form-actions {
  padding: 17px 20px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  *zoom: 1;
}

form.frontend .form-actions:before,
form.frontend .form-actions:after {
  display: table;
  content: "";
}

form.frontend .form-actions:after {
  clear: both;
}

form.frontend .uneditable-input {
  overflow: hidden;
  white-space: nowrap;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
     -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
}

:-moz-placeholder {
  color: #999999;
}

:-ms-input-placeholder {
  color: #999999;
}

::-webkit-input-placeholder {
  color: #999999;
}

form.frontend .help-block,
form.frontend .help-inline {
  color: #555555;
}

form.frontend .help-block {
  display: block;
  margin-bottom: 9px;
}

form.frontend .help-inline {
  display: inline-block;
  *display: inline;
  padding-left: 5px;
  vertical-align: middle;
  *zoom: 1;
}

form.frontend .input-prepend,
form.frontend .input-append {
  margin-bottom: 5px;
}

.input-prepend input,
.input-append input,
.input-prepend select,
.input-append select,
.input-prepend .uneditable-input,
.input-append .uneditable-input {
  position: relative;
  margin-bottom: 0;
  *margin-left: 0;
  vertical-align: middle;
  -webkit-border-radius: 0 3px 3px 0;
     -moz-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0;
}

.input-prepend input:focus,
.input-append input:focus,
.input-prepend select:focus,
.input-append select:focus,
.input-prepend .uneditable-input:focus,
.input-append .uneditable-input:focus {
  z-index: 2;
}

.input-prepend .uneditable-input,
.input-append .uneditable-input {
  border-left-color: #ccc;
}

.input-prepend .add-on,
.input-append .add-on {
  display: inline-block;
  width: auto;
  height: 18px;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
}

.input-prepend .add-on,
.input-append .add-on,
.input-prepend .btn,
.input-append .btn {
  margin-left: -1px;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

.input-prepend .active,
.input-append .active {
  background-color: #a9dba9;
  border-color: #46a546;
}

.input-prepend .add-on,
.input-prepend .btn {
  margin-right: -1px;
}

.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
  -webkit-border-radius: 3px 0 0 3px;
     -moz-border-radius: 3px 0 0 3px;
          border-radius: 3px 0 0 3px;
}

.input-append input,
.input-append select,
.input-append .uneditable-input {
  -webkit-border-radius: 3px 0 0 3px;
     -moz-border-radius: 3px 0 0 3px;
          border-radius: 3px 0 0 3px;
}

.input-append .uneditable-input {
  border-right-color: #ccc;
  border-left-color: #eee;
}

.input-append .add-on:last-child,
.input-append .btn:last-child {
  -webkit-border-radius: 0 3px 3px 0;
     -moz-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0;
}

.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  -webkit-border-radius: 3px 0 0 3px;
     -moz-border-radius: 3px 0 0 3px;
          border-radius: 3px 0 0 3px;
}

.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0 3px 3px 0;
     -moz-border-radius: 0 3px 3px 0;
          border-radius: 0 3px 3px 0;
}

.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */

  margin-bottom: 0;
  -webkit-border-radius: 14px;
     -moz-border-radius: 14px;
          border-radius: 14px;
}

.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
  display: inline-block;
  *display: inline;
  margin-bottom: 0;
  *zoom: 1;
}

.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
  display: none;
}

.form-search label,
.form-inline label {
  display: inline-block;
}

.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}

.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}

.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}

.control-group {
  margin-bottom: 9px;
}

legend + .control-group {
  margin-top: 18px;
  -webkit-margin-top-collapse: separate;
}

.form-horizontal .control-group {
  margin-bottom: 18px;
  *zoom: 1;
}

.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
  display: table;
  content: "";
}

.form-horizontal .control-group:after {
  clear: both;
}

.form-horizontal .control-label {
  float: left;
  width: 140px;
  padding-top: 5px;
  text-align: right;
}

.form-horizontal .controls {
  *display: inline-block;
  *padding-left: 20px;
  margin-left: 160px;
  *margin-left: 0;
}

.form-horizontal .controls:first-child {
  *padding-left: 160px;
}

.form-horizontal .help-block {
  margin-top: 9px;
  margin-bottom: 0;
}

.form-horizontal .form-actions {
  padding-left: 160px;
}

.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle {
  *margin-bottom: -3px;
}

.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
  opacity: 0.3;
  filter: alpha(opacity=30);
}

.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}

.dropdown:hover .caret,
.open .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 4px 0;
  margin: 1px 0 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
     -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding;
          background-clip: padding-box;
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 8px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #ffffff;
}

.dropdown-menu a {
  display: block;
  padding: 3px 15px;
  clear: both;
  font-weight: normal;
  line-height: 18px;
  color: #333333;
  white-space: nowrap;
}

.dropdown-menu li > a:hover,
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
  color: #ffffff;
  text-decoration: none;
  background-color: #0088cc;
}

.open {
  *z-index: 1000;
}

.open > .dropdown-menu {
  display: block;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000000;
  content: "\2191";
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

.typeahead {
  margin-top: 2px;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #eee;
  border: 1px solid rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

.well blockquote {
  border-color: #ddd;
  border-color: rgba(0, 0, 0, 0.15);
}

.well-large {
  padding: 24px;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
}

.well-small {
  padding: 9px;
  -webkit-border-radius: 3px;
     -moz-border-radius: 3px;
          border-radius: 3px;
}


.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
     -moz-transition: height 0.35s ease;
      -ms-transition: height 0.35s ease;
       -o-transition: height 0.35s ease;
          transition: height 0.35s ease;
}

.collapse.in {
  height: auto;
}

.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  line-height: 18px;
  color: #000000;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.close:hover {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

button.close {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}

.btn {
  display: inline-block;
  *display: inline;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  *margin-left: .3em;
  font-size: 13px;
  line-height: 18px;
  *line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  *background-color: #e6e6e6;
  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  border: 1px solid #cccccc;
  *border: 0;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  *zoom: 1;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
}

.btn:active,
.btn.active {
  background-color: #cccccc \9;
}

.btn:first-child {
  *margin-left: 0;
}

.btn:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  *background-color: #d9d9d9;
  /* Buttons in IE7 don't get borders, so darken on hover */

  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
     -moz-transition: background-position 0.1s linear;
      -ms-transition: background-position 0.1s linear;
       -o-transition: background-position 0.1s linear;
          transition: background-position 0.1s linear;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.active,
.btn:active {
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  background-image: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-color: #e6e6e6;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
     -moz-box-shadow: none;
          box-shadow: none;
}

.btn-large {
  padding: 9px 14px;
  font-size: 15px;
  line-height: normal;
  -webkit-border-radius: 5px;
     -moz-border-radius: 5px;
          border-radius: 5px;
}

.btn-large [class^="icon-"] {
  margin-top: 1px;
}

.btn-small {
  padding: 5px 9px;
  font-size: 11px;
  line-height: 16px;
}

.btn-small [class^="icon-"] {
  margin-top: -1px;
}

.btn-mini {
  padding: 2px 6px;
  font-size: 11px;
  line-height: 14px;
}

.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover,
.btn-inverse,
.btn-inverse:hover {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}

.btn {
  border-color: #ccc;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
}

.btn-primary {
  background-color: #0074cc;
  *background-color: #0055cc;
  background-image: -ms-linear-gradient(top, #0088cc, #0055cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0055cc);
  background-image: -o-linear-gradient(top, #0088cc, #0055cc);
  background-image: -moz-linear-gradient(top, #0088cc, #0055cc);
  background-image: linear-gradient(top, #0088cc, #0055cc);
  background-repeat: repeat-x;
  border-color: #0055cc #0055cc #003580;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #0055cc;
  *background-color: #004ab3;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #004099 \9;
}

.btn-warning {
  background-color: #faa732;
  *background-color: #f89406;
  background-image: -ms-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(top, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  background-color: #f89406;
  *background-color: #df8505;
}

.btn-warning:active,
.btn-warning.active {
  background-color: #c67605 \9;
}

.btn-danger {
  background-color: #da4f49;
  *background-color: #bd362f;
  background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(top, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  background-color: #bd362f;
  *background-color: #a9302a;
}

.btn-danger:active,
.btn-danger.active {
  background-color: #942a25 \9;
}

.btn-success {
  background-color: #5bb75b;
  *background-color: #51a351;
  background-image: -ms-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(top, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background-color: #51a351;
  *background-color: #499249;
}

.btn-success:active,
.btn-success.active {
  background-color: #408140 \9;
}

.btn-info {
  background-color: #49afcd;
  *background-color: #2f96b4;
  background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear-gradient(top, #5bc0de, #2f96b4);
  background-repeat: repeat-x;
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-color: #2f96b4;
  *background-color: #2a85a0;
}

.btn-info:active,
.btn-info.active {
  background-color: #24748c \9;
}

.btn-inverse {
  background-color: #414141;
  *background-color: #222222;
  background-image: -ms-linear-gradient(top, #555555, #222222);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
  background-image: -webkit-linear-gradient(top, #555555, #222222);
  background-image: -o-linear-gradient(top, #555555, #222222);
  background-image: -moz-linear-gradient(top, #555555, #222222);
  background-image: linear-gradient(top, #555555, #222222);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222222;
  *background-color: #151515;
}

.btn-inverse:active,
.btn-inverse.active {
  background-color: #080808 \9;
}

button.btn,
input[type="submit"].btn {
  *padding-top: 2px;
  *padding-bottom: 2px;
}

button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.btn.btn-large,
input[type="submit"].btn.btn-large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}

button.btn.btn-small,
input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}

.btn-group {
  position: relative;
  *margin-left: .3em;
  *zoom: 1;
}

.btn-group:before,
.btn-group:after {
  display: table;
  content: "";
}

.btn-group:after {
  clear: both;
}

.btn-group:first-child {
  *margin-left: 0;
}

.btn-group + .btn-group {
  margin-left: 5px;
}

.btn-toolbar {
  margin-top: 9px;
  margin-bottom: 9px;
}

.btn-toolbar .btn-group {
  display: inline-block;
  *display: inline;
  /* IE7 inline-block hack */

  *zoom: 1;
}

.btn-group > .btn {
  position: relative;
  float: left;
  margin-left: -1px;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
}

.btn-group > .btn:first-child {
  margin-left: 0;
  -webkit-border-bottom-left-radius: 4px;
          border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
          border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
}

.btn-group > .btn:last-child,
.btn-group > .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
          border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
          border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px;
}

.btn-group > .btn.large:first-child {
  margin-left: 0;
  -webkit-border-bottom-left-radius: 6px;
          border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
          border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px;
}

.btn-group > .btn.large:last-child,
.btn-group > .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
          border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
          border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px;
}

.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active {
  z-index: 2;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group > .dropdown-toggle {
  *padding-top: 4px;
  padding-right: 8px;
  *padding-bottom: 4px;
  padding-left: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-group > .btn-mini.dropdown-toggle {
  padding-right: 5px;
  padding-left: 5px;
}

.btn-group > .btn-small.dropdown-toggle {
  *padding-top: 4px;
  *padding-bottom: 4px;
}

.btn-group > .btn-large.dropdown-toggle {
  padding-right: 12px;
  padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-group.open .btn.dropdown-toggle {
  background-color: #e6e6e6;
}

.btn-group.open .btn-primary.dropdown-toggle {
  background-color: #0055cc;
}

.btn-group.open .btn-warning.dropdown-toggle {
  background-color: #f89406;
}

.btn-group.open .btn-danger.dropdown-toggle {
  background-color: #bd362f;
}

.btn-group.open .btn-success.dropdown-toggle {
  background-color: #51a351;
}

.btn-group.open .btn-info.dropdown-toggle {
  background-color: #2f96b4;
}

.btn-group.open .btn-inverse.dropdown-toggle {
  background-color: #222222;
}

.btn .caret {
  margin-top: 7px;
  margin-left: 0;
}

.btn:hover .caret,
.open.btn-group .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}

.btn-mini .caret {
  margin-top: 5px;
}

.btn-small .caret {
  margin-top: 6px;
}

.btn-large .caret {
  margin-top: 6px;
  border-top-width: 5px;
  border-right-width: 5px;
  border-left-width: 5px;
}

.dropup .btn-large .caret {
  border-top: 0;
  border-bottom: 5px solid #000000;
}

.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 18px;
  color: #c09853;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.alert-heading {
  color: inherit;
}

.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}

.alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-danger,
.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

.alert-info {
  color: #3a87ad;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}

.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}

.alert-block p + p {
  margin-top: 5px;
}

/** tables **/
.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 28px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
.table {
  width: 100%;
  margin-bottom: 18px;
}
.table th,
.table td {
  padding: 8px;
  line-height: 18px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #dddddd;
}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}
.table tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
  border-collapse: separate;
  *border-collapse: collapsed;
  border-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #dddddd;
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
}
.table-bordered thead:first-child tr:first-child th:last-child,
.table-bordered tbody:first-child tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
}
.table-bordered thead:last-child tr:last-child th:first-child,
.table-bordered tbody:last-child tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
}
.table-bordered thead:last-child tr:last-child th:last-child,
.table-bordered tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
}
.table-striped tbody tr:nth-child(odd) td,
.table-striped tbody tr:nth-child(odd) th {
  background-color: #f9f9f9;
}

table .span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}
table .span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}
table .span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}
table .span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}
table .span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}
table .span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}
table .span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}
table .span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}
table .span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}
table .span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}
table .span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}
table .span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}
table .span13 {
  float: none;
  width: 1004px;
  margin-left: 0;
}
table .span14 {
  float: none;
  width: 1084px;
  margin-left: 0;
}
table .span15 {
  float: none;
  width: 1164px;
  margin-left: 0;
}
table .span16 {
  float: none;
  width: 1244px;
  margin-left: 0;
}
table .span17 {
  float: none;
  width: 1324px;
  margin-left: 0;
}
table .span18 {
  float: none;
  width: 1404px;
  margin-left: 0;
}
table .span19 {
  float: none;
  width: 1484px;
  margin-left: 0;
}
table .span20 {
  float: none;
  width: 1564px;
  margin-left: 0;
}
table .span21 {
  float: none;
  width: 1644px;
  margin-left: 0;
}
table .span22 {
  float: none;
  width: 1724px;
  margin-left: 0;
}
table .span23 {
  float: none;
  width: 1804px;
  margin-left: 0;
}
table .span24 {
  float: none;
  width: 1884px;
  margin-left: 0;
}
table tr.header{background:#529dc0 !important; color:#fff;}
table tr.header:hover td { background:#529dc0 !important;}

.div_bar{border-bottom:1px dashed #ccc!important; font-size: 16px; margin-bottom: 10px;}
table.innerTable{background:#fff;}
table tr.active{background:#ccc;}
table.innerTable td{border-top:1px dashed #ccc;}

table tbody tr:hover td.table-title{ background:#666 !important; color:#fff;}

/** entries css **/
/*
----------------------------------------------------
PENDING ENTRIES
----------------------------------------------------
*/

.pending_detail_key { width:160px; margin:20px 0px 20px 20px; border:1px solid #FFFFFF; font-size:0.7em; }
.pending_detail_key_title { font-weight:bold; margin:5px 0px 5px 5px; }
.pending_key_item { float:left; width:30px; text-align:center; margin-bottom:5px; display:inline; }
.pending_key_desc { float:left; width:125px; margin-bottom:5px; display:inline; }

.pending_entries_box { width:738px; margin:10px 0px 10px 0px; font-size:1em; }
.pending_entries_total_bar { float:right; width:200px;background-color:#595959; padding:2px 0px 2px 5px; font-weight:bold; margin-bottom:10px; color:#FFFFFF; border-top:8px solid #FFFFFF; }

.pending_header { font-weight:bold; word-wrap: break-word; font-size:1em; }
.pending_entries_box .pending_row_medium_header { background-color:#529DC0; color:#FFFFFF; border-top:5px solid #FFFFFF; font-weight:bold; padding:2px 0 2px 10px; }
.pending_row { background-color:#f5f5f5; padding:2px 0 2px 0px; }
.pending_row_campaign { background-color:#BDB5A3; padding:2px 0 2px 0px; }
.pending_campaign_name { background-color:#BDB5A3; border-top:1px solid #771815; font-weight:bold; padding:5px 0 5px 10px; font-size:1.2em; }

.pending_medium_col { float:left; width:100px; margin-left:10px; display:inline; overflow:hidden; }
.pending_product_col { float:left; width:110px; /*130*/ margin-left:10px; display:inline; word-wrap: break-word; }
.lt-ie7 .pending_product_col { width:115px; margin-left:5px; }

.pending_product_campaign_col { float:left; width:50px; margin-left:10px; display:inline; overflow:hidden; word-break:hyphenate;}
.pending_order_campaign_col { float:left; width:40px; margin-left:10px; display:inline; overflow:hidden; }

.pending_title_col { float:left; width:80px; /*100*/ margin-left:10px; display:inline; overflow:hidden; }
.pending_entry_type_col { float:left; width:90px; /*60*/ margin-left:10px; display:inline; overflow:hidden; }
.pending_category_col { float:left; width:80px; /*150*/ margin-left:10px; display:inline; overflow:hidden;}
.pending_clone_col { float:left; width:38px; margin-left:10px; display:inline; overflow:hidden; text-align:center; }
.pending_edit_col { float:left; width:28px; margin-left:10px; display:inline; overflow:hidden; text-align:center; }
.pending_delete_col { float:left; width:43px; margin-left:10px; display:inline; overflow:hidden; text-align:center; }
.pending_upload_col { float:left; width:55px; margin-left:10px; display:inline; overflow:hidden; text-align:center; }
.pending_total_col { float:left; width:50px; /*80*/ margin-left:10px; display:inline; overflow:hidden; }
.lt-ie7 .pending_total_col { margin-left:0px; }
.entry_type_key { float:left; width:230px; font-size:0.8em; margin-left:20px; margin-top:-15px; display:inline; overflow:hidden; }

#payment_form { margin:0 10px 0 0; padding:0; font-size:0.8em; }
#payment_form .submit_button { float:right; font-size:1.25em;}
#payment_form p { float:right; margin:0 0 0 0; }

.beam_entries_box { margin:10px 0px 10px 0px; width:738px; font-size:1em; background-color:#f5f5f5; }
.beam_entries_header { background-color:#595959; padding:2px 0px 2px 5px; font-weight:bold; margin-bottom:10px; color:#FFFFFF; font-size:1.2em; }

.beam_header { font-weight:bold; }

.beam_orderid_col { float:left; width:100px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.beam_entryid_col { float:left; width:100px; margin-left:5px; display:inline; overflow:hidden; margin-bottom:5px; }
.beam_medium_col { float:left; width:80px; margin-left:5px; display:inline; overflow:hidden; margin-bottom:5px; }
.beam_product_col { float:left; width:130px; margin-left:5px; display:inline; overflow:hidden; margin-bottom:5px; }
.beam_title_col { float:left; width:100px; margin-left:5px; display:inline; overflow:hidden; margin-bottom:5px; }
.beam_category_col { float:left; width:100px; margin-left:5px; display:inline; overflow:hidden; margin-bottom:5px; }
.beam_status_col { float:left; width:80px; margin-left:5px; display:inline; overflow:hidden; margin-bottom:5px; }

.paidMediumRow{border-bottom:1px dashed #ccc; padding:5px 0;}
.paidMediumRow:hover{background:#eee;}
.paidMediumRow:nth-of-type(odd):hover{background:#eee;}
.paidMediumRow:nth-of-type(odd){background:#f9f9f9;}
/*
----------------------------------------------------
PAYMENT
----------------------------------------------------
*/

.paysummary_box { margin:10px 10px 10px 10px; font-size:0.9em; }
.paysummary_total_bar { float:right; width:200px; background-color:#771815; padding:2px 0px 2px 5px; font-weight:bold; margin-bottom:10px; color:#FFFFFF; border-top:8px solid #FFFFFF; }

.paysummary_header { font-weight:bold; }
.paysummary_row_medium_header { background-color:#595959; color:#FFFFFF; border-top:5px solid #FFFFFF; font-weight:bold; padding:2px 0 2px 10px; }
.paysummary_row { background-color:#f5f5f5; padding:4px 0 4px 0px; }
.paysummary_row_campaign { background-color:#f5f5f5; padding:4px 0 4px 0px; }
.paysummary_campaign_name { background-color:#f5f5f5; border-top:1px solid #771815; font-weight:bold; padding:5px 0 5px 10px; font-size:1.2em; }

.paysummary_product_col { float:left; width:150px; margin-left:10px; display:inline; overflow:hidden; }
.paysummary_title_col { float:left; width:150px; margin-left:10px; display:inline; overflow:hidden; }
.paysummary_entry_type_col { float:left; width:60px; margin-left:10px; display:inline; overflow:hidden;}
.paysummary_category_col { float:left; width:240px; margin-left:10px; display:inline; overflow:hidden;}
.paysummary_total_col { float:left; width:100px; margin-left:10px; display:inline; overflow:hidden; text-align:right; }

.paysummary_grandtotal_col { float:right; width:160px; margin-right:10px; text-align:right; background-color:#595959; padding:2px 40px 2px 5px; font-weight:bold; color:#FFFFFF; border-top:8px solid #FFFFFF; }
.paysummary_entries_col { float:right; width:160px; margin-right:10px; text-align:right; background-color:#595959; padding:2px 40px 2px 5px; font-weight:bold; margin-bottom:10px; color:#FFFFFF; border-top:1px solid #FFFFFF;  }

.paysummary_campaign_name { border-top:1px solid #2d2d2d; padding:5px 0 5px 10px; font-weight:bold; }
#pay_summary .submit_button { float:right; margin-bottom:20px;  }
#payment_process_col { float:left; width:780px; margin-left:10px; font-size:0.9em; padding-top:20px; background-color:#FFFFFF; }

/*
----------------------------------------------------
PAID ENTRIES
----------------------------------------------------
*/
.paid_entries_box { margin:10px 10px 10px 10px; font-size:0.9em; background-color:#f5f5f5; }
.lt-ie7 .paid_entries_box{ margin:5px;}
.paid_entries_header { background-color:#595959; padding:2px 0px 2px 5px; font-weight:bold; margin-bottom:10px; color:#FFFFFF; font-size:1.2em; }

.paid_header { font-weight:bold; padding-top:2px; }

.paid_expand_col { float:left; width:50px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }

.paid_expand_col a { color:#000000; width:31px; height:25px; margin:0 30px; }

.paid_orderid_col { float:left; width:70px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_price_col { float:left; width:70px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_date_col { float:left; width:150px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_entrant_col { float:left; width:320px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_pdf_col { float:left; width:40px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; text-align:right; }

.paid_entry_selected { background-color:#ddd; padding-top:2px; }
.paid_entry_not_selected {border-bottom:2px solid #fff;}
.paid_entry_selected a { }

.paid_medium_col { float:left; width:120px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_product_col { float:left; width:120px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_title_col { float:left; width:160px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_category_col { float:left; width:140px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_media_col { float:left; width:100px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }
.paid_view_col { float:left; width:60px; margin-left:10px; display:inline; overflow:hidden; margin-bottom:5px; }

.paid_campaign_name { font-weight:bold; padding:5px 0 5px 10px; font-size:1.2em; }
.paid_campaign { background-color:#E6E6E6; border-top:1px solid #771815; border-bottom:1px solid #771815; }

/*
----------------------------------------------------
BEAm TV
----------------------------------------------------
*/

.beamCol { width:780px; float:left; margin:10px 0px 0px 10px; font-size:0.8em; }
.beam_submit { float:right; background-color:#FF0000; margin-top:0px; padding:2px 20px 2px 10px; color:#FFFFFF; border:0; text-decoration:none; font-weight:bold; }

/*.tooltip { background-color:#595959; padding:2px 0px 2px 5px; font-weight:bold; margin-bottom:10px; color:#FFFFFF; font-size:1.2em; }*/

/*
----------------------------------------------------
view details page
----------------------------------------------------
*/

.container {
    background-color: #FFFFFF;
    background-position: 0 0;
    padding:1px 0;
    width:800px;
    margin:0 auto;
}
.view_details_page { background-color:#ebebeb; margin:10px 10px 10px 10px; width:780px; }

.view_details_page .div_bar { 
background-color:#0973A5; padding:5px; font-weight:bold; margin-bottom:10px; color:#FFFFFF; font-size:1.1em; 
border:none!important;
}

.view_fieldname, .view_formfield { float:left; display:inline; margin:0px 0px 10px 10px; font-size:1em; overflow:hidden; }

.view_fieldname {  width:240px; font-weight:bold; }
.view_formfield {  width:430px; }

.triple_view_fieldname, .triple_view_formfield { float:left; margin:0px 0px 10px 10px; display:inline; font-size:1em; overflow:hidden; }

.triple_view_fieldname { width:115px; font-weight:bold; font-size:1em; }
.triple_view_formfield { width:150px; }

.form-horizontal .controls.short{width:300px;}
.pull-right{float:right;}

.beam_entries_box div { padding:10px; }
.beam_entries_box.pendingMedia div { padding:0;}
.beam_entries_box.pendingMedia .beam_entries_header { padding:10px;}