/* 
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  additionally, much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors:Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, 
hgroup, menu, nav, section, menu,
time, mark, audio, video { margin:0; 
  padding:0; 
  border:0; 
  outline:0; 
  font-size:100%; 
  vertical-align:baseline; 
  /*background:transparent; */
 }                  

article, aside, figure, footer, header, 
hgroup, nav, section { display:block;  }

nav ul { list-style:none;  }

blockquote, q { quotes:none;  }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none;  }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent;  }

ins { background-color:#ff9; color:#000; text-decoration:none;  }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold;  }

del { text-decoration:line-through;  }

abbr[title], dfn[title] { border-bottom:1px dotted #000; cursor:help;  }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0;  }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0;  }

input, select { vertical-align:middle;  }
/* END RESET CSS */


/*
fonts.css from the YUI Library:developer.yahoo.com/yui/
          Please refer to developer.yahoo.com/yui/fonts/ for font sizing percentages

There are three custom edits:
 * remove arial, helvetica from explicit font stack
 * make the line-height relative and unit-less
 * remove the pre, code styles
*/
body { font:13px sans-serif; *font-size:small; *font:x-small; line-height:1.22;  }

table { font-size:inherit; font:100%;  }

select, input, textarea { font:99% sans-serif;  }


/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family:monospace, sans-serif;  }
 


/* 
 * minimal base styles 
 */


/* #444 looks better than black:twitter.com/H_FJ/statuses/11800719859 */ 
body, select, input, textarea { color:#444;  }

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
 
/* www.aestheticallyloyal.com/public/optimize-legibility/ */ 
h1,h2,h3,h4,h5,h6 { font-weight:bold; text-rendering:optimizeLegibility;  }

/* maxvoltar.com/archive/-webkit-font-smoothing */
html { -webkit-font-smoothing:antialiased;  }

 
/* Accessible focus treatment:people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline:none;  }

a, a:active, a:visited { color:#607890;  }
a:hover { color:#036;  }


ul { margin-left:30px;  }
ol { margin-left:30px; list-style-type:decimal;  }

small { font-size:85%;  }
strong, th { font-weight:bold;  }

td, td img { vertical-align:top;  } 

sub { vertical-align:sub; font-size:smaller;  }
sup { vertical-align:super; font-size:smaller;  }

pre { padding:15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space:pre; /* CSS2 */
  white-space:pre-wrap; /* CSS 2.1 */
  white-space:pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap:break-word; /* IE */
 }

/* align checkboxes, radios, text inputs with their label
   by:Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align:text-bottom;  }
input[type="checkbox"] { vertical-align:bottom; *vertical-align:baseline;  }
.ie6 input { vertical-align:text-bottom;  }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor:pointer;  }


/* These selection declarations have to be separate.
   No text-shadow:twitter.com/miketaylr/status/12228805301 
   Also:hot pink. */
::-moz-selection{ background:#99C; color:#fff; text-shadow:none;  }
::selection { background:#99c; color:#fff; text-shadow:none;  } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color:#FF5E99;  } 


/* always force a scrollbar in non-IE */
html { overflow-y:scroll;  }

/* make buttons play nice in IE:
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button { width:auto; overflow:visible;  }
 
/* bicubic resizing for non-native sized IMG:
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode:bicubic;  }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display:block; text-indent:-999em; overflow:hidden; background-repeat:no-repeat;  }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display:none; visibility:hidden;  } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/ 
   Solution from:j.mp/visuallyhidden - Thanks Jonathan Neal! */
.visuallyhidden { position:absolute !important;   
  clip:rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip:rect(1px, 1px, 1px, 1px);  }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility:hidden;  }

/* it's magic!!
-------------------------------------*/
.clearfix:after { content:"."; display:block; height:0; clear:both; visibility:hidden;  }
.clearfix { display:inline-block;  }
* html .clearfix { height:1%;  } /* Hides from IE-mac \*/
.clearfix { display:block;  }
/*
 * jQuery UI CSS Framework 1.8.16
 *
 * 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/Theming/API
 */

/* 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); }


/* Interaction Cues
----------------------------------*/
.ui-state-disabled { cursor: default !important; }


/* Icons
----------------------------------*/

/* states and images */
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }


/* Misc visuals
----------------------------------*/

/* Overlays */
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }


/*
 * jQuery UI CSS Framework 1.8.16
 *
 * 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/Theming/API
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=&fwDefault=normal&fsDefault=&cornerRadius=0&bgColorHeader=cccccc&bgTextureHeader=03_highlight_soft.png&bgImgOpacityHeader=0&borderColorHeader=&fcHeader=222222&iconColorHeader=222222&bgColorContent=&bgTextureContent=01_flat.png&bgImgOpacityContent=0&borderColorContent=aaaaaa&fcContent=222222&iconColorContent=222222&bgColorDefault=e6e6e6&bgTextureDefault=02_glass.png&bgImgOpacityDefault=0&borderColorDefault=d3d3d3&fcDefault=555555&iconColorDefault=888888&bgColorHover=dadada&bgTextureHover=02_glass.png&bgImgOpacityHover=0&borderColorHover=999999&fcHover=212121&iconColorHover=454545&bgColorActive=ffffff&bgTextureActive=02_glass.png&bgImgOpacityActive=0&borderColorActive=aaaaaa&fcActive=212121&iconColorActive=454545&bgColorHighlight=fbf9ee&bgTextureHighlight=02_glass.png&bgImgOpacityHighlight=55&borderColorHighlight=fcefa1&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=05_inset_soft.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
 */


/* Component containers
----------------------------------*/
.ui-widget { font-family:"Lucida Sans Unicode","Lucida Grande",sans-serif; font-size:12px; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family:"Lucida Sans Unicode","Lucida Grande",sans-serif; font-size:12px; }
.ui-widget-content a { color: #222222; }
.ui-widget-header { border: 1px solid #; background-color:transparent; color: #222222; font-weight: bold; }
.ui-widget-header a { color: #222222; }

/* Interaction states
----------------------------------*/
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #d3d3d3; background: #e6e6e6 url('/css/jquery/ui-lightness/images/ui-bg_glass_0_e6e6e6_1x400.png') 50% 50% repeat-x; font-weight: normal; color: #555555; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #555555; text-decoration: none; }
.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #999999; background: #dadada url('/css/jquery/ui-lightness/images/ui-bg_glass_0_dadada_1x400.png') 50% 50% repeat-x; font-weight: normal; color: #212121; }
.ui-state-hover a, .ui-state-hover a:hover { color: #212121; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {  background: #ffffff url('/css/jquery/ui-lightness/images/ui-bg_glass_0_ffffff_1x400.png') 50% 50% repeat-x; font-weight: normal; color: #212121; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #212121; text-decoration: none; }
.ui-widget :active { outline: none; }

/* Interaction Cues
----------------------------------*/
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight  {border: 1px solid #fcefa1; background: #fbf9ee url('/css/jquery/ui-lightness/images/ui-bg_glass_55_fbf9ee_1x400.png') 50% 50% 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: #fef1ec url('/css/jquery/ui-lightness/images/ui-bg_inset-soft_95_fef1ec_1x100.png') 50% bottom repeat-x; color: #cd0a0a; }
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
.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; }

/* Icons
----------------------------------*/

/* states and images */
.ui-icon { width: 16px; height: 16px; background-image: url('/css/jquery/ui-lightness/images/ui-icons_222222_256x240.png'); }
.ui-widget-content .ui-icon {background-image: url('/css/jquery/ui-lightness/images/ui-icons_222222_256x240.png'); }
.ui-widget-header .ui-icon {background-image: url('/css/jquery/ui-lightness/images/ui-icons_222222_256x240.png'); }
.ui-state-default .ui-icon { background-image: url('/css/jquery/ui-lightness/images/ui-icons_888888_256x240.png'); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url('/css/jquery/ui-lightness/images/ui-icons_454545_256x240.png'); }
.ui-state-active .ui-icon {background-image: url('/css/jquery/ui-lightness/images/ui-icons_454545_256x240.png'); }
.ui-state-highlight .ui-icon {background-image: url('/css/jquery/ui-lightness/images/ui-icons_2e83ff_256x240.png'); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url('/css/jquery/ui-lightness/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; }


/* Misc visuals
----------------------------------*/

/* Corner radius */
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 4px; -webkit-border-top-left-radius: 4px; -khtml-border-top-left-radius: 4px; border-top-left-radius: 4px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 4px; -webkit-border-top-right-radius: 4px; -khtml-border-top-right-radius: 4px; border-top-right-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 4px; -webkit-border-bottom-left-radius: 4px; -khtml-border-bottom-left-radius: 4px; border-bottom-left-radius: 4px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 4px; -webkit-border-bottom-right-radius: 4px; -khtml-border-bottom-right-radius: 4px; border-bottom-right-radius: 4px; }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa url('/css/jquery/ui-lightness/images/ui-bg_flat_0_aaaaaa_40x100.png') 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url('/css/jquery/ui-lightness/images/ui-bg_flat_0_aaaaaa_40x100.png') 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*
 * jQuery UI Resizable 1.8.16
 *
 * 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.16
 *
 * 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 Accordion 1.8.16
 *
 * 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: 900px; margin:15px; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; padding:5px 5px 5px 25px; border:1px solid #aaaaaa; }
.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: 0 2em; border-top: 0; position: relative; top: 0px; margin-bottom: 20px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }
/*
 * jQuery UI Autocomplete 1.8.16
 *
 * 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 */

/*
 * jQuery UI Menu 1.8.16
 *
 * 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;
}
/*
 * jQuery UI Button 1.8.16
 *
 * 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 { display: inline-block; position: relative; padding: 0; margin-right: .1em; text-decoration: none !important; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* 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; line-height: 1.4;  }
.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: -.3em; }

/* workarounds */
button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
/*
 * jQuery UI Dialog 1.8.16
 *
 * 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; }

/*
 * jQuery UI Slider 1.8.16
 *
 * 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: -.3em; margin-left: -.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: -.3em; margin-left: 0; margin-bottom: -.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; }/*
 * jQuery UI Tabs 1.8.16
 *
 * 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: 0; 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: 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 1px 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: 1px; }
.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; border:1px solid #ccc; }
.ui-tabs .ui-tabs-hide { display: none !important; }
/*
 * jQuery UI Datepicker 1.8.16
 *
 * 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; }
.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; }

/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi { width:auto; }
.ui-datepicker-multi .ui-datepicker-group { float:left; }
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
.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-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }

/* 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*/
    display/**/: block; /*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*/
}/*
 * jQuery UI Progressbar 1.8.16
 *
 * 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%; }/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	height: 40px;
	width: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

* html #fancybox-loading {	/* IE6 */
	position: absolute;
	margin-top: 0;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
}

#fancybox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: #000;
	z-index: 1100;
	display: none;
}

* html #fancybox-overlay {	/* IE6 */
	position: absolute;
	width: 100%;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 20px;
	z-index: 1101;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #FFF;
}

#fancybox-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: 0;
	outline: none;
	overflow: hidden;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox_error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 7px;
	margin: 0;
}

#fancybox-content {
	height: auto;
	width: auto;
	padding: 0;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
	-ms-interpolation-mode: bicubic;
}

#fancybox-frame {
	position: relative;
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-title {
	position: absolute;
	bottom: 0;
	left: 0;
	font-family: Arial;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding: 10px 0;
	text-align: center;
	color: #333;
}

.fancybox-title-outside {
	padding-top: 5px;
	color: #FFF;
	text-align: center;
	font-weight: bold;
}

.fancybox-title-over {
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url(/css/jquery/fancybox/fancy_title_over.png);
	display: block;
}

#fancybox-title-wrap {
	display: inline-block;
}

#fancybox-title-wrap span {
	height: 32px;
	float: left;
}

#fancybox-title-left {
	padding-left: 15px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px -90px;
	background-repeat: no-repeat;
}

#fancybox-title-main {
	font-weight: bold;
	line-height: 29px;
	background-image: url(/css/jquery/fancybox/fancybox-x.png);
	background-position: 0px -40px;
	color: #FFF;
}

#fancybox-title-right {
	padding-left: 15px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -55px -90px;
	background-repeat: no-repeat;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background-image: url(/css/jquery/fancybox/blank.gif);
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible;    /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancy-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancy-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url(/css/jquery/fancybox/fancybox-x.png);
}

#fancy-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px -162px;
}

#fancy-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url(/css/jquery/fancybox/fancybox-y.png);
	background-position: -20px 0px;
}

#fancy-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px -182px; 
}

#fancy-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url(/css/jquery/fancybox/fancybox-x.png);
	background-position: 0px -20px;
}

#fancy-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px -142px;
}

#fancy-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url(/css/jquery/fancybox/fancybox-y.png);
}

#fancy-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url(/css/jquery/fancybox/fancybox.png);
	background-position: -40px -122px;
}

/* IE */

#fancybox-loading.fancybox-ie div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_loading.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-close		{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie #fancybox-title-over	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie #fancybox-title-left	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-title-main	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-title-right	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie #fancybox-left-ico		{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-right-ico	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie .fancy-bg { background: transparent !important; }

.fancybox-ie #fancy-bg-n	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancy-bg-ne	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancy-bg-e	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancy-bg-se	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancy-bg-s	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancy-bg-sw	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancy-bg-w	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancy-bg-nw	{ filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/css/jquery/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on October 24, 2011 12:47:46 PM America/New_York */
@font-face { font-family:'NobileRegular';
    src:url('/css/fonts/nobile-webfont.eot');
    src:url('/css/fonts/nobile-webfont.eot?#iefix') format('embedded-opentype'),
         url('/css/fonts/nobile-webfont.woff') format('woff'),
         url('/css/fonts/nobile-webfont.ttf') format('truetype'),
         url('/css/fonts/nobile-webfont.svg#NobileRegular') format('svg');
    font-weight:normal;
    font-style:normal;
 }

@font-face { font-family:'NobileItalic';
    src:url('/css/fonts/nobile_italic-webfont.eot');
    src:url('/css/fonts/nobile_italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('/css/fonts/nobile_italic-webfont.woff') format('woff'),
         url('/css/fonts/nobile_italic-webfont.ttf') format('truetype'),
         url('/css/fonts/nobile_italic-webfont.svg#NobileItalic') format('svg');
    font-weight:normal;
    font-style:normal;
 }

@font-face { font-family:'NobileBold';
    src:url('/css/fonts/nobile_bold-webfont.eot');
    src:url('/css/fonts/nobile_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('/css/fonts/nobile_bold-webfont.woff') format('woff'),
         url('/css/fonts/nobile_bold-webfont.ttf') format('truetype'),
         url('/css/fonts/nobile_bold-webfont.svg#NobileBold') format('svg');
    font-weight:normal;
    font-style:normal;
 }

@font-face { font-family:'NobileBoldItalic';
    src:url('/css/fonts/nobile_bold_italic-webfont.eot');
    src:url('/css/fonts/nobile_bold_italic-webfont.eot?#iefix') format('embedded-opentype'),
         url('/css/fonts/nobile_bold_italic-webfont.woff') format('woff'),
         url('/css/fonts/nobile_bold_italic-webfont.ttf') format('truetype'),
         url('/css/fonts/nobile_bold_italic-webfont.svg#NobileBoldItalic') format('svg');
    font-weight:normal;
    font-style:normal;
 }

/* HEADER + NAVIGATION
------------------------------------------*/
#header { background-color:transparent; position:relative; height:120px; margin-top:20px; z-index:100;  }
#header_logo { width:239px; height:88px; display:block; float:left; padding:0; background:url('/images/logo.svg') no-repeat 0 0 transparent; background-size: 239px 88px; text-indent:-9999px; text-decoration:none; }
a#header_logo { cursor:pointer; }
#header_nav { width:auto; float:right; font-family:'Lucida Sans Unicode', Arial, Helvetica, sans-serif; font-weight:normal; margin:0;  }

#header_nav_secondary { width:100%; height:27px; position:relative;  }
#header_nav_secondary form, #header_nav_secondary form input { display:inline;  }
#header_nav_secondary ul { float:left; display:inline; padding:4px 0 0; margin:0; height:22px; z-index:50;  }
#header_nav_secondary ul li { display:inline; margin:0 10px 0 0; padding:0 10px 0 0; line-height:16px; text-align:right;  }
.miniborder { border-right:1px solid #e1e1e1; z-index:10;  }
#header_nav_secondary ul li a,
#header_nav_secondary ul li a:link,
#header_nav_secondary ul li a:active { text-decoration:none; color:#6f6e6e;  }
#header_nav_secondary ul li a:hover { color:#969E77; text-decoration:underline;  }


/* PRIMARY NAVIGATION
------------------------------------------*/
#header_nav_primary { position:relative; padding:0; height:41px; margin:20px 0 0 0;  }
#header_nav_primary ul { float:right; height:41px; width:673px; padding:0; margin:0; list-style-type:none;  }
#header_nav_primary ul li { position:relative; float:left; padding:0; margin:0;  }
#header_nav_primary ul li a,
#header_nav_primary ul li a:link,
#header_nav_primary ul li a:visited { text-indent:-9999px; float:left; position:relative; display:block; background:url(/images/navbar.png); background-repeat:no-repeat; height:41px; background-position:0 0;  }

/** ie fix menu fix **/
.ie9 #header_nav_primary ul li a,
.ie9 #header_nav_primary ul li a:link,
.ie9 #header_nav_primary ul li a:visited,
.ie8 #header_nav_primary ul li a,
.ie8 #header_nav_primary ul li a:link,
.ie8 #header_nav_primary ul li a:visited,
.ie7 #header_nav_primary ul li a,
.ie7 #header_nav_primary ul li a:link,
.ie7 #header_nav_primary ul li a:visited { height:40px; }
/** end ie fix */

#header_nav_primary ul li a.nav_products { width:91px; background-position:0 0; position:relative; z-index:50;  }
#header_nav_primary ul li a.nav_sdrsoftware { width:126px; background-position:-91px 0;  }
#header_nav_primary ul li a.nav_support { width:86px; background-position:-217px 0;  }
#header_nav_primary ul li a.nav_resources { width:196px; background-position:-303px 0;  }
#header_nav_primary ul li a.nav_aboutus { width:93px; background-position:-499px 0;  }
#header_nav_primary ul li a.nav_contact { width:81px; background-position:-592px 0;  }

#header_nav_primary ul li a.nav_products:hover,
#header_nav_primary ul li.on a.nav_products:hover { background-position:0 -41px;  }
#header_nav_primary ul li a.nav_sdrsoftware:hover,
#header_nav_primary ul li.on a.nav_sdrsoftware:hover { background-position:-91px -41px;  }
#header_nav_primary ul li a.nav_support:hover,
#header_nav_primary ul li.on a.nav_support:hover { background-position:-217px -41px;  }
#header_nav_primary ul li a.nav_resources:hover,
#header_nav_primary ul li.on a.nav_resources:hover { background-position:-303px -41px;  }
#header_nav_primary ul li a.nav_aboutus:hover,
#header_nav_primary ul li.on a.nav_aboutus:hover { background-position:-499px -41px;  }
#header_nav_primary ul li a.nav_contact:hover,
#header_nav_primary ul li.on a.nav_contact:hover { background-position:-592px -41px;  }

#header_nav_primary ul li.on a.nav_products { background-position:0 -82px;  }
#header_nav_primary ul li.on a.nav_sdrsoftware { background-position:-91px -82px;  }
#header_nav_primary ul li.on a.nav_support { background-position:-217px -82px;  }
#header_nav_primary ul li.on a.nav_resources { background-position:-303px -82px;  }
#header_nav_primary ul li.on a.nav_aboutus { background-position:-499px -82px;  }
#header_nav_primary ul li.on a.nav_contact { background-position:-592px -82px;  }


/* SIDEBAR NAVIGATION
------------------------------------------*/
.sidenav { margin:0 0 15px 0; list-style-type:none;  }
.sidenav li { margin:0 0 2px 0;  }
.sidenav li a { display:block; width:178px; padding:5px 10px; color:#fff; text-decoration:none; font-family:"Lucida Sans Unicode", "Lucida Grande", Arial, Helvetica, sans-serif;
	border:1px solid #969e77;
	background-color:#a9b285;
	background-image:-webkit-gradient(linear, left top, left bottom, from(#a9b285), to(#969e77)); /* Saf4+, Chrome */
	background-image:-webkit-linear-gradient(top, #a9b285, #969e77); /* Chrome 10+, Saf5.1+, iOS 5+ */
	background-image:-moz-linear-gradient(top, #a9b285, #969e77); /* FF3.6 */
	background-image:-ms-linear-gradient(top, #a9b285, #969e77); /* IE10 */
	background-image: -o-linear-gradient(top, #a9b285, #969e77); /* Opera 11.10+ */
	background-image:    linear-gradient(top, #a9b285, #969e77);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#a9b285', EndColorStr='#969e77'); /* IE6-IE9 */
	 }

.sidenav li a:hover { border:1px solid #464646;
	background-color:#707070;
	background-image:-webkit-gradient(linear, left top, left bottom, from(#707070), to(#464646)); /* Saf4+, Chrome */
	background-image:-webkit-linear-gradient(top, #707070, #464646); /* Chrome 10+, Saf5.1+, iOS 5+ */
	background-image:-moz-linear-gradient(top, #707070, #464646); /* FF3.6 */
	background-image:-ms-linear-gradient(top, #707070, #464646); /* IE10 */
	background-image: -o-linear-gradient(top, #707070, #464646); /* Opera 11.10+ */
	background-image:    linear-gradient(top, #707070, #464646);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#707070', EndColorStr='#464646'); /* IE6-IE9 */
	 }

.sidenav li.on a { border:1px solid #6c7c6f;
	background-color:#889b8c;
	background-image:-webkit-gradient(linear, left top, left bottom, from(#889b8c), to(#6c7c6f)); /* Saf4+, Chrome */
	background-image:-webkit-linear-gradient(top, #889b8c, #6c7c6f); /* Chrome 10+, Saf5.1+, iOS 5+ */
	background-image:-moz-linear-gradient(top, #889b8c, #6c7c6f); /* FF3.6 */
	background-image:-ms-linear-gradient(top, #889b8c, #6c7c6f); /* IE10 */
	background-image: -o-linear-gradient(top, #889b8c, #6c7c6f); /* Opera 11.10+ */
	background-image:    linear-gradient(top, #889b8c, #6c7c6f);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#889b8c', EndColorStr='#6c7c6f'); /* IE6-IE9 */
	 }


/* dropdown menus
-----------------------------------------*/
.show { display:block;  }
.hide { display:none;  }

.nav_products_dd { left:0; top:35px;  }
.nav_sdrsoftware_dd { left:0; top:35px; z-index:-10 !important; }
.nav_support_dd { left:0; top:35px; z-index:-10 !important;  }

#header_nav_primary ul li ul { float:none; margin:0; position:absolute; padding:15px 0 10px 0; height:auto; width:230px; z-index:10;
	background-color:#959595;
	background-image:-webkit-gradient(linear, left top, left bottom, from(#959595), to(#757575)); /* Saf4+, Chrome */
	background-image:-webkit-linear-gradient(top, #959595, #757575); /* Chrome 10+, Saf5.1+, iOS 5+ */
	background-image:-moz-linear-gradient(top, #959595, #757575); /* FF3.6 */
	background-image:-ms-linear-gradient(top, #959595, #757575); /* IE10 */
	background-image:-o-linear-gradient(top, #959595, #757575); /* Opera 11.10+ */
	background-image:   linear-gradient(top, #959595, #757575);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorStr='#959595', EndColorStr='#757575'); /* IE6-IE9 */
 }
#header_nav_primary ul li ul li { float:none; display:block; margin:0; padding:2px 10px 0 10px; line-height:16px; height:auto; width:210px;  }
#header_nav_primary ul li ul li a,
#header_nav_primary ul li ul li a:link,
#header_nav_primary ul li ul li a:visited { display:block;
	padding:3px 10px;
	height:21px;
	line-height:21px;
	margin:0;
	color:#ffffff;
	text-decoration:none;
	border:0;
	font-size:11px;
	text-align:left;
	background:none;
	text-indent:0;
	width:auto;
	float:none;
	text-shadow:0px 0px 0px #fff;
	filter:dropshadow(color=#fff, offx=0, offy=0);
 }

#header_nav_primary ul li ul li a:hover { background-color:#dedede;
	color:#8e966e;
	-moz-border-radius-topleft:0px;
	-moz-border-radius-topright:0px;
	-moz-border-radius-bottomright:0px;
	-moz-border-radius-bottomleft:0px;
	-webkit-border-radius:0px 0px 0px 0px;
	border-bottom-left-radius:0px 0px;
	border-bottom-right-radius:0px 0px;
	/*text drop shadow*/
	text-shadow:0px 0px 0px #fff;
	filter:dropshadow(color=#fff, offx=0, offy=0);
 }

/* IE 7 text shadow removal */
body.ie7 #header_nav_primary ul li ul li a,
body.ie7 #header_nav_primary ul li ul li a:link,
body.ie7 #header_nav_primary ul li ul li a:hover,
body.ie7 #header_nav_primary ul li ul li a:visited { filter:none;
 }

/* IE 8 text shadow removal */
body.ie8 #header_nav_primary ul li ul li a,
body.ie8 #header_nav_primary ul li ul li a:link,
body.ie8 #header_nav_primary ul li ul li a:hover,
body.ie8 #header_nav_primary ul li ul li a:visited { filter:none;
 }

/* IE 9 text shadow removal */
body.ie9 #header_nav_primary ul li ul li a,
body.ie9 #header_nav_primary ul li ul li a:link,
body.ie9 #header_nav_primary ul li ul li a:hover,
body.ie9 #header_nav_primary ul li ul li a:visited { filter:none;
 }


/* header search bar
-----------------------------------------*/
.page_search { float:right; width:310px; height:27px;  }
.search_input { width:255px; }
#header_nav_secondary form input { margin:0; padding:2px 5px; border-right:none; float:left; height:21px;  }
#header_nav_secondary form select { margin:0; border-left:1px dashed #cccccc; height:27px; padding:4px; width:108px; float:left; font-size:10px;  }
#header_nav_secondary form input#search_main_button { width:41px; height:27px; margin:0 0 0 0; padding:0; border:0; background:transparent url('/images/icon_search.png') 0 0 no-repeat; box-shadow:none; float:left; cursor:pointer;  }
#header_nav_secondary form input#search_main_button:hover { background:transparent url('/images/icon_search.png') 0 -27px no-repeat; box-shadow:none;  }
.ie7 #header_nav_secondary form select { font-size:14px;}
/* work in progress to compensate for ie's requirement that text size determine select box height
.ie7 #header_nav_secondary form select { font-size:14px; width:130px;  }
.ie7 .page_search { width:330px; }
.ie7 #header_nav_secondary ul { margin-left:0px; }
*/


/* drop down cart box
--------------------------------------*/
#dd_cart_cont { position: absolute; width: 1200px; margin: 0 auto; top: 26px; z-index: 3000;}
.dd_cart { margin: 0 auto; margin-right: 76px; /*position: relative; top: 0; left: 840px;*/ background-color: #FFFFFF; border: 1px solid #DCDCDC; border-top: 0 none; width: 250px; padding: 10px;  }
.dd_cart .fancy_title { padding-bottom: 5px; }
.dd_cart table { width: 250px; margin-bottom: 10px; }
.dd_cart table td.leftcell { padding-right: 10px; }
.dd_cart table td.rightcell { text-align: right; }
.dd_cart table tr.final_total { color: #000; }


#dd_cart_cont { display: none; }


/* LAYOUT
--------------------------------------*/
* { margin:0;  }
html, body { height:100%;  }
body { font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
	color:#545453;
	font-size:12px;
	line-height:22px;
	background:#f3f3f3 url('/images/bg_page.jpg') 0 25px repeat-x;
	margin:0;
	padding:0;
	 }
#userbar { background:transparent url('/images/bg_header.jpg') top right repeat-x;
	height:25px;
	text-align:right;
	font-size:12px;
	line-height:25px;
	padding:0;
	width:100%;
	border-bottom:1px solid #cdcec8;
	/*drop shadow*/
	-webkit-box-shadow:0px 0px 145px 120px #ffffff;
	-moz-box-shadow:0px 0px 145px 120px #ffffff;
	box-shadow:0px 0px 145px 120px #ffffff;
	 }
#userbar ul { width:960px; margin:0 auto 0 auto; display:block; padding:0;  }
#userbar ul li { display:inline; margin-left:0px; background-color:transparent; padding:5px 10px 5px 10px;  }
#userbar ul li a { text-decoration:none; font-weight:bold;  }
#userbar ul li a:hover { text-decoration:underline;  }
.rightborder { border-right:1px solid #eeeeec; margin-right:-4px;  }
.leftborder { border-left:1px solid #dddfd7;  }
.cartlink { background:transparent url('/images/icon_cart.png') 0 1px no-repeat; padding-left:25px;  }

.superwrapper {
	min-height:100%;
	height:auto !important;
	height:100%;
	margin:0 auto -135px; /* the bottom margin is the negative value of the footer's height */
	/*Had to make positin relative and a z-index to get the slide down mini cart to work in IE7 */
	position: relative;
	/* z-index:10000; */
}

.wrapper { width:960px; margin:0 auto auto auto; padding:0;  }

#main { position:relative;
	overflow:hidden;
	z-index:0;
	height:auto;
	margin:0 0 35px 0;
	padding:30px 20px;
	background-color:#ffffff;
	border:solid 1px #dcdcdc;
	/*drop shadow*/
	-webkit-box-shadow:0px 0px 10px 0px #dcdcdc;
	-moz-box-shadow:0px 0px 10px 0px #dcdcdc;
	box-shadow:0px 0px 10px 0px #dcdcdc;
	 }
#content { padding:0; margin:0; width:918px; position:relative; overflow:hidden;  }
#breadcrumb { margin:30px 0 10px 20px; padding:0; font-size:14px; line-height:22px; z-index:0;  }
#cols { position:relative; overflow:hidden;  }
.col1, #sidebar { float:left; width:200px; margin-right:40px;  }
.col1 .col1_box { padding:10px; width:200px; background-color:#F7F7F7; margin-bottom:15px;  }
.col2 { float:right; width:678px;  }

/*  generally useful
---------------------------------------------*/
.floatright { float:right;  }
.floatleft { float:left;  }
.clear { clear:both; margin:0; padding:0; line-height:0; }


/* DATE BOX
-----------------------------*/
.calendar_date { float:left;
	background:transparent url('/images/bg_date.png') top center no-repeat;
	padding-top:6px;
	margin-left:0;
	margin-right:10px;
	width:60px;
	height:60px;
	text-align:center;
	/*border:1px dashed red; */
	font-size:14px;
	line-height:24px;
	font-weight:bold;
	color:#ffffff;
	 }
.calendar_text { float:left; font-size:16px; margin:15px 5px 0 -5px; }


/* FOOTER
------------------------------------------------*/
#footer { position:relative; overflow:hidden; margin:auto 0 0 0; background:#dddddd url('/images/bg_footer.jpg') top left repeat-x; height:135px; width:100%; font-family:'Lucida Sans',Helvetica,Verdana,sans-serif; font-size:12px; line-height:18px;  }
.push { height:135px;  }
.copyright { float:left; width:600px;  }
#footer ul { margin:5px auto 0 0; padding:0;  }
#footer ul li { display:inline; border-left:1px solid #969e77; padding:0 3px 0 6px; margin:0;  }
#footer ul li:first-child { border-left:0; padding-left:0;  }
#footer ul li a { text-decoration:none; font-weight:bold;  }
#footer ul li a:hover { text-decoration:underline;  }
#footer p { margin:0 auto 0 0; padding:30px 0 0 0;  }

#footer_text { font-size: 11px; }


/* newsletter subscribe
-----------------------------------------*/
#newsletter { float:right; padding-top:30px; width: 335px; background:transparent url('/images/icon_newsletter.png') 5px 30px no-repeat;  }
#newsletter p { float:none; margin:0 0 10px 40px; padding:0; }
#newsletter p #join { float: left; }
#newsletter p a { text-decoration:none; font-weight:bold;  }
#newsletter p img { float:left; margin: -3px 4px 0 14px; }
#newsletter form input[type=text] { height:20px; width:152px; padding:3px 5px; margin:0; border-right:none; float:left;  }
#newsletter form input[type=button]:hover { cursor:pointer; border:0; float:left;  }
#newsletter_subscribe { width:162px; height:27px; margin:0; padding:0; border:0 none; background:transparent url('/images/icon_newsletter_please_subscribe.png') 0 0 no-repeat; box-shadow:none;  }
#newsletter_subscribe:hover { width:162px; height:27px; margin:0; padding:0; border:0 none; background:transparent url('/images/icon_newsletter_please_subscribe.png') 0 -27px no-repeat; cursor:pointer; box-shadow:none;  }


/* ACCORDIAN STYLES
------------------------------------------------*/
#accordion p { margin:10px 0 0 0; clear:both;  }
#accordion a:link { line-height:25px;  }
#accordion ul { margin:10px 0 0 0; padding:0;  }
#accordion ul li { list-style:none;  }


/*  TEXT
-----------------------------------------*/
h1 { font-family:NobileRegular, Arial, Helvetica, sans-serif; font-weight:normal; font-size:36px; line-height:36px; color:#464646; margin:0; padding:0;  }
h2 { font-family:NobileRegular, Arial, Helvetica, sans-serif; font-weight:normal; font-size:22px; line-height:42px; color:#969E77; margin:0; padding:0 0 15px 0;  }
h3 { font-size:18px; line-height:22px; color:#969e77; text-decoration:none; padding:0 0 15px 0;  }
h4 { color:#969e77; margin:0; padding:0 0 10px 0; font-size:14px; line-height:22px;  }
hr { border-top:1px solid #EFEFEF; border-right:0; border-left:0; border-bottom:0; background-color:transparent; padding:0;  }
p { margin:0; padding:0 0 15px 0;  }
ul { margin:0 0 15px 30px;  }

a, a:link, a:active, a:visited { color:#969e77; text-decoration:underline;  }
a:hover { color:#969e77; text-decoration:none;  }
a.dark { height: 27px; line-height: 30px; padding: 6px 10px 7px 10px; border:1px solid #969e77; color:#fff; text-decoration:none; text-align:center; background:#a9b285 url('/images/bg_button.jpg') 0 0 repeat-x;
	/*text drop shadow*/
	text-shadow:1px 1px 1px #575e3e;
	filter:dropshadow(color=#575e3e, offx=1, offy=1);
	 }
a.dark:hover { border:1px solid #494948; text-decoration:none;
	background:#707070 url('/images/bg_button.jpg') 0 -80px repeat-x;
	/*text drop shadow*/
	text-shadow:1px 1px 1px #494948;
	filter:dropshadow(color=#494948, offx=1, offy=1);
	cursor:pointer;
	 }

a.dark_small, a.dark_small_cart { line-height:27px; height:27px; padding:3px 10px; border:1px solid #969e77; color:#fff; text-decoration:none; text-align:center;
	background:#a9b285 url('/images/bg_button.jpg') 0 0 repeat-x;
	/*text drop shadow*/
	text-shadow:1px 1px 1px #575e3e;
	filter:dropshadow(color=#575e3e, offx=1, offy=1);
	 }

a.dark_small:hover, a.dark_small_cart:hover { border: 1px solid #494948; text-decoration: none;
	background: #707070 url('/images/bg_button.jpg') 0 -80px repeat-x;
	/*text drop shadow*/
	text-shadow: 1px 1px 1px #494948;
	filter: dropshadow(color=#494948, offx=1, offy=1);
	}

a.inactive,
a.inactive:hover { line-height: 30px; height: 30px; padding: 6px 10px 7px 10px; border: 1px solid #b6b6b6; color:#fff; text-decoration:none; text-align:center;background-color: #b6b6b6; background-image: none; text-shadow: none; cursor: default; }

.fancy_title { border-bottom: 1px solid #EEEEEE; color: #111111; font-family: NobileRegular,Arial,Helvetica,sans-serif; font-size: 18px; font-weight:normal; margin-bottom: 10px; }
.fancy_title a { text-decoration: none; color: #111;  }
.fancy_title a:hover { text-decoration: underline; color: #969E77; }

#page_title {
	margin:0;
	padding: 0 0 0 20px;
	font-family:NobileRegular, Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:22px;
	line-height:42px;
	color:#969E77;
}


/* misc
-------------------------------------*/
.right {
	float:right !important;
}
.left {
	float:left !important;
}
.watermark_on {
        color: #CCCCCC;
        font-style: italic;
}
#quote_wrapper .ui-widget-header {
border: 1px solid #AAA;
background: #CCC url(/images/dialog_header.png) 50% 50% repeat-x;
color: #222;
font-weight: bold;
border-image: initial;
}
#quote_wrapper .ui-widget-content {
border: 1px solid #AAA;
background: white;
color: #222;
border-image: initial;
}

#quote_wrapper .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;
}

#quote_wrapper h2 {
	margin-bottom: 20px;
}

.todo { font-weight:bold;
	color:#c00;
	border:1px dashed #c00;
	margin:10px;
	padding:5px;
	background-color:#ffcfce;
 }
.caption { font-size:10px;
 }
.odd { background-color:#fff;
 }
.even { background-color:#eee;
 }
a.disabled,
a.disabled:hover,
span.disabled,
span.disabled a { color:#ccc; cursor: default; }
.space-top { padding-top:20px;
 }
p.back-to-top { margin:10px 0 0 0; cursor: pointer; }
/*p.back-to-top a { display:block;
	margin:0 auto;
	width:28px;
	height:28px;
	line-height:28px;
	background:transparent url('/images/btn_top.gif') 0 0 no-repeat;
	text-indent:-9999px;
 }*/
/*p.back-to-top a:hover { background-position:0 -28px;  }*/
a.iframe { display:inline-block;
	position:relative;
 }
span.play-overlay { display:block;
	position:absolute;
	width:60px;
	height:42px;
	background:transparent url('/images/video_overlay.png') 0 0 no-repeat;
 }
.ie7 span.play-overlay { cursor:pointer;
 }

/* icons
-------------------------------------*/
ul.icons { list-style-type:none;
	margin:0;
	padding:0;
 }
ul.icons li { margin:.5em 0;
	padding:0;
 }
ul.icons li a { margin:0;
	padding:3px 0 3px 20px;
 }
a.icon { margin:0;
	padding:3px 0 3px 20px;
 }
a.email { background:transparent url('/images/icons/email.gif') 0 55% no-repeat; padding-left:22px; }
a.rss { background:transparent url('/images/icons/rss.png') 0 50% no-repeat; padding-left: 22px; }
a.link { background:transparent url(/images/icons/link.png) 0 50% no-repeat; padding-left:22px; }
a.print { background:transparent url(/images/icons/print.png) 0 50% no-repeat; padding-left:22px; }
a.quote { background:transparent url(/images/icons/quote.png) 0 50% no-repeat; padding-left:22px; }
a.map { margin:0;
	padding:5px 0 5px 22px;
	background:transparent url('/images/icons/map.gif') 0 50% no-repeat;
	line-height:32px;
 }
a.new-window { margin:0;
	padding:3px 11px 3px 0;
	background:transparent url('/images/icons/new_window.gif') 100% 55% no-repeat;
 }
a.back,
a.previous,
a.next { margin:0;
	padding:0;
 }
a.back { padding:0 0 0 55px;
	background:transparent url(/images/btn_back.gif) 0 0 no-repeat;
 }
a.previous { width:56px;
	background:transparent url(/images/btn_previous.gif) 0 0 no-repeat;
	padding-right:5px;
 }
a.next { width:39px;
	background:transparent url(/images/btn_next.gif) 0 0 no-repeat;
	padding-left:5px;
 }
a.back:hover,
a.previous:hover,
a.next:hover { background-position:0 -17px;
 }
a.detail { padding-left:20px; background:transparent url(/images/icons/bullet.png) 7px 8px no-repeat;  }
a.pdf { padding-left:20px; background:transparent url(/images/icons/pdf.png) 0 0 no-repeat;  }
a.doc { padding-left:20px; background:transparent url(/images/icons/doc.png) 0 0 no-repeat;  }
a.html, .url { padding-left:20px; background:transparent url(/images/icons/globe.png) 0 0 no-repeat;  }
a.audio { padding-left:20px; background:transparent url(/images/icons/audio.png) 0 0 no-repeat;  }
a.video, a.embeded_video { padding-left:20px; background:transparent url(/images/icons/video.png) 0 0 no-repeat;  }

/* user notice
-------------------------------------*/
#user-notice { margin:20px 0 5px 0;
	padding:10px 10px 10px 32px;
	text-align:left;
 }
#user-notice a { color:#c00;
	text-decoration:underline;
 }
#user-notice a:hover { text-decoration:none;
 }
#user-notice ul { list-style:disc;
	margin:3px 0 0 16px;
 }
.user-notice-info { background-color:#e2f9e3;
	background-image:url('/images/icons/tick.png');
	background-position:10px 10px;
	background-repeat:no-repeat;
	border:3px solid #9c9;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
 }
.user-notice-error { background-color:#ffcfce;
	background-image:url('/images/icons/cross.png');
	background-position:10px 10px;
	background-repeat:no-repeat;
	border:3px solid #c00;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
 }


/* no script and old browser notice
-------------------------------------*/
#noscript,
#oldbrowser { margin:10px;
	padding:10px;
	text-align:left;
	background-color:#ffcfce;
	border:3px solid #c00;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
 }
#noscript p,
#oldbrowser p { padding:0 0 5px 0;
 }


/* basic print styles
-------------------------------------*/
@media print { * { background:transparent !important; color:#444 !important; text-shadow:none;  }
	a, a:visited { color:#444 !important; text-decoration:underline;  }
	a:after { content:" (" attr(href) ")";  }
	abbr:after { content:" (" attr(title) ")";  }
	.ir a:after { content:"";  }
	pre, blockquote { border:1px solid #999; page-break-inside:avoid;  }
	img { page-break-inside:avoid;  }
	@page { margin:0.5cm;  }
	p, h2, h3 { orphans:3; widows:3;  }
	h2, h3{ page-break-after:avoid;  }
 }


/* page modals
-------------------------------------*/
.page-modal {
	background: #fff;
}
.page-modal .ui-dialog-titlebar {
	border-bottom: 1px solid;
}

/* grid
-------------------------------------*/
.grid {
	display: block;
	margin: 0 -20px;
}

.grid::after {
	display: block;
	content: '';
	clear: both;
}

.grid-col {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	    -ms-box-sizing: border-box;
	     -o-box-sizing: border-box;
	min-height: 1px;
	float: left;
	width: 50%;
	padding: 0 20px;
}

/* panel
-------------------------------------*/

.panel {
	background: #f5f5f5;
	padding: 20px;
}

.panel > :first-child {
	margin-top: 0;
}

.panel > :last-child {
	margin-bottom: 0;
}

/* IE7 no filters
--------------------------------------*/
body.ie7 button, body.ie7 button:hover {filter:none; border:0;}


/* That Button
--------------------------------------*/
a.button.dark,
button.dark {
	display:block; line-height:18px;  font-size:16px; height:40px; padding:10px 20px; margin-top:5px;
	border:1px solid #969e77; color:#fff; text-decoration:none; text-align:center;
	background:#a9b285 url('/images/bg_button.jpg') 0 0 repeat-x;
	/*text drop shadow*/
	text-shadow:1px 1px 1px #575e3e;
	filter:dropshadow(color=#575e3e, offx=1, offy=1);
}

a.button.dark {
	height: auto;
	display: inline-block;
}
a.button.dark.block {
	display: block;
}

a.button.dark:hover,
button.dark:hover { border:1px solid #494948; text-decoration:none;
	background:#707070 url('/images/bg_button.jpg') 0 -80px repeat-x;
	/*text drop shadow*/
	text-shadow:1px 1px 1px #494948;
	filter:dropshadow(color=#494948, offx=1, offy=1);
	cursor:pointer;
}

a.button.dark_small,
button.dark_small { line-height:16px; height:29px; font-size:12px; padding: 0 10px; border:1px solid #969e77; color:#fff; text-decoration:none; text-align:center;
	background:#a9b285 url('/images/bg_button.jpg') 0 0 repeat-x;
	/*text drop shadow*/
	text-shadow:1px 1px 1px #575e3e;
	filter:dropshadow(color=#575e3e, offx=1, offy=1);
}

a.button.dark_small:hover,
button.dark_small:hover{ border:1px solid #494948; text-decoration:none;
	background:#707070 url('/images/bg_button.jpg') 0 -80px repeat-x;
	/*text drop shadow*/
	text-shadow:1px 1px 1px #494948;
	filter:dropshadow(color=#494948, offx=1, offy=1);
}
a.button.call_quote,
button.call_quote {
	border:1px solid #494948;
	text-decoration:none;
	background:#707070 url('/images/bg_button.jpg') 0 -80px repeat-x;
	margin-left: 105px;
}

a.button.disabled,
button.disabled,
button.disabled:hover { display: block; line-height: 18px; font-size: 16px; height: 40px; padding: 10px 20px; margin-top: 5px; border: 1px solid #b6b6b6; color: #fff; text-decoration: none; text-align: center; background-color: #b6b6b6; background-image: none; text-shadow: none; cursor: auto; }


/* forms
-------------------------------------*/
fieldset { border:none;
 }
legend { display:none;
 }
input,
textarea,
select { border:1px solid #ccc;
	-webkit-box-shadow:inset 1px 2px 2px 0px #e3e3e3;
	-moz-box-shadow:inset 1px 2px 2px 0px #e3e3e3;
	box-shadow:inset 1px 2px 2px 0px #e3e3e3;
	font-family:Lucinda, Verdana, sans-serif;
	padding:3px 5px;
	font-size:12px;
 }
input{ height:21px;
	line-height:21px;
	margin-bottom:5px;
 }
textarea { overflow:auto;
 }
select { text-transform:none;
	vertical-align:middle;
 }
select option { padding-right:10px;
	vertical-align:middle;
 }
select.switchbox { width:250px;
	height:100px;
 }

label { cursor:default; padding-left:5px;  }

select.fixed-width  { }
input.xs { width:50px;  }
input.sm { width:150px;  }
input.med { width:200px;  }
input.lg { width:340px;  }
input.xl { width:430px;  }
input.xxl           { width:500px;  }
input.date          { width:100px;  }
input.phone         { width:120px;  }
input.phone-ext     { width:220px;  }
input.file          { width:250px;  }
input.username      { width:165px;  }
input.password      { width:165px;  }
textarea.sm         { width:200px; height:75px;  }
textarea.med        { width:220px; height:100px;  }
textarea.lg         { width:350px; height:150px;  }
textarea.xl         { width:430px; height:150px;  }
select.med          { width:180px;  }
select.lg           { width:250px;  }
select.tall         { height:100px;  }
input.radio-button  { vertical-align:-3px; border:0 none !important;  }
input.checkbox      { vertical-align:middle; border:0 none !important;  }
.field-focus { background-color:#f6f7f0 !important;
 }

/*--------------*/
div.form {background-color:#F7F7F7; padding:20px;}
div.formchunk { display:block; margin:0 0 15px 0;  }
div.formchunk label { text-align:left;  }
div.formchunk input, div.formchunk select { text-align:left;  }
div.formchunk textarea { width:430px; height:100px;  }
/*-------------*/

.indicator { display:block; margin:5px 5px -40px auto; width:300px; text-align:right; font-size:11px;  }

.indicator span { padding-left:14px;
	background:transparent url(/images/icons/form_required.gif) 0 0 no-repeat;
	vertical-align:middle;
 }

/* "processing" indicators
-------------------------------------*/
div.processing { background:transparent url(/images/loading.gif) 50% 50% no-repeat;
	text-indent:-9999px;
	width:50px;
 }
.bg-center { background-position:50% 0 !important;
 }

/* layout
-------------------------------------*/
label { font-weight:normal; }

#content .error label { background:transparent url(/images/icons/form_alert.gif) 0 3px no-repeat !important;
	padding-left:15px;
	margin-left: 0px;
	color: red;
 }

 .error input,
.error textarea,
.error select { background-color:#fdebeb;
	border:1px solid #790000;
 }

label.required, div.required label { background:transparent url(/images/icons/form_required.gif) 0 3px no-repeat !important;
	padding-left:15px;
	margin-left:0px;
 }


.caption,
span.caption { font-size:11px;
 }
.action button,
.action div.processing { float:left;
 }
table.no-icon tbody tr.field td { padding-left:5px;
	background:none;
 }
.position-left {
	float:left;
	margin:11px 11px 11px 0;
	padding:5px 15px 5px 0;
}
.position-right {
	float:right;
	margin:11px 0 11px 11px;
	padding:5px 0 5px 15px;
}
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 * That said, it is hardly a one-person project. Many people have submitted bugs, code, and offered their advice freely. Their support is greatly appreciated.
 * 
 * Version: 1.3.4 (11/11/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
body {
	height: 100%;
}

#fancybox-loading {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1104;
	display: none;
}

#fancybox-loading div {
	position: absolute;
	top: 0;
	left: 0;
	width: 40px;
	height: 480px;
	background-image: url('/images/fancybox/fancybox.png');
}

#fancybox-overlay {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1100;
	display: none;
}

#fancybox-tmp {
	padding: 0;
	margin: 0;
	border: 0;
	overflow: auto;
	display: none;
}

#fancybox-wrap {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 1101;
	outline: none;
	display: none;
}

#fancybox-outer {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
}

#fancybox-content {
	width: 0;
	height: 0;
	padding: 0;
	outline: none;
	position: relative;
	overflow: hidden;
	z-index: 1102;
	border: 0px solid #fff;
}

#fancybox-hide-sel-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	z-index: 1101;
}

#fancybox-close {
	position: absolute;
	top: -15px;
	right: -15px;
	width: 30px;
	height: 30px;
	background: transparent url('/images/fancybox/fancybox.png') -40px 0px;
	cursor: pointer;
	z-index: 1103;
	display: none;
}

#fancybox-error {
	color: #444;
	font: normal 12px/20px Arial;
	padding: 14px;
	margin: 0;
}

#fancybox-img {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: none;
	outline: none;
	line-height: 0;
	vertical-align: top;
}

#fancybox-frame {
	width: 100%;
	height: 100%;
	border: none;
	display: block;
}

#fancybox-left, #fancybox-right {
	position: absolute;
	bottom: 0px;
	height: 100%;
	width: 35%;
	cursor: pointer;
	outline: none;
	background: transparent url('/images/fancybox/blank.gif');
	z-index: 1102;
	display: none;
}

#fancybox-left {
	left: 0px;
}

#fancybox-right {
	right: 0px;
}

#fancybox-left-ico, #fancybox-right-ico {
	position: absolute;
	top: 50%;
	left: -9999px;
	width: 30px;
	height: 30px;
	margin-top: -15px;
	cursor: pointer;
	z-index: 1102;
	display: block;
}

#fancybox-left-ico {
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -30px;
}

#fancybox-right-ico {
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -60px;
}

#fancybox-left:hover, #fancybox-right:hover {
	visibility: visible; /* IE6 */
}

#fancybox-left:hover span {
	left: 20px;
}

#fancybox-right:hover span {
	left: auto;
	right: 20px;
}

.fancybox-bg {
	position: absolute;
	padding: 0;
	margin: 0;
	border: 0;
	width: 20px;
	height: 20px;
	z-index: 1001;
}

#fancybox-bg-n {
	top: -20px;
	left: 0;
	width: 100%;
	background-image: url('/images/fancybox/fancybox-x.png');
}

#fancybox-bg-ne {
	top: -20px;
	right: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -162px;
}

#fancybox-bg-e {
	top: 0;
	right: -20px;
	height: 100%;
	background-image: url('/images/fancybox/fancybox-y.png');
	background-position: -20px 0px;
}

#fancybox-bg-se {
	bottom: -20px;
	right: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -182px; 
}

#fancybox-bg-s {
	bottom: -20px;
	left: 0;
	width: 100%;
	background-image: url('/images/fancybox/fancybox-x.png');
	background-position: 0px -20px;
}

#fancybox-bg-sw {
	bottom: -20px;
	left: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -142px;
}

#fancybox-bg-w {
	top: 0;
	left: -20px;
	height: 100%;
	background-image: url('/images/fancybox/fancybox-y.png');
}

#fancybox-bg-nw {
	top: -20px;
	left: -20px;
	background-image: url('/images/fancybox/fancybox.png');
	background-position: -40px -122px;
}

#fancybox-title {
	font-family: Helvetica;
	font-size: 12px;
	z-index: 1102;
}

.fancybox-title-inside {
	padding-bottom: 10px;
	text-align: center;
	color: #333;
	background: #fff;
	position: relative;
}

.fancybox-title-outside {
	padding-top: 10px;
	color: #fff;
}

.fancybox-title-over {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #FFF;
	text-align: left;
}

#fancybox-title-over {
	padding: 10px;
	background-image: url('/images/fancybox/fancy_title_over.png');
	display: block;
}

.fancybox-title-float {
	position: absolute;
	left: 0;
	bottom: -20px;
	height: 32px;
}

#fancybox-title-float-wrap {
	border: none;
	border-collapse: collapse;
	width: auto;
}

#fancybox-title-float-wrap td {
	border: none;
	white-space: nowrap;
}

#fancybox-title-float-left {
	padding: 0 0 0 15px;
	background: url('/images/fancybox/fancybox.png') -40px -90px no-repeat;
}

#fancybox-title-float-main {
	color: #FFF;
	line-height: 29px;
	font-weight: bold;
	padding: 0 0 3px 0;
	background: url('/images/fancybox/fancybox-x.png') 0px -40px;
}

#fancybox-title-float-right {
	padding: 0 0 0 15px;
	background: url('/images/fancybox/fancybox.png') -55px -90px no-repeat;
}

/* IE6 */

.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_close.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_nav_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_nav_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; }
.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_left.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_main.png', sizingMethod='scale'); }
.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_title_right.png', sizingMethod='scale'); }

.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame {
	height: expression(this.parentNode.clientHeight + "px");
}

#fancybox-loading.fancybox-ie6 {
	position: absolute; margin-top: 0;
	top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px');
}

#fancybox-loading.fancybox-ie6 div	{ background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_loading.png', sizingMethod='scale'); }

/* IE6, IE7, IE8 */

.fancybox-ie .fancybox-bg { background: transparent !important; }

.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_n.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_e.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_se.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_s.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_w.png', sizingMethod='scale'); }
.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/images/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); }
/* Slider */
.slick-slider
{
    position: relative;

    display: block;

    -moz-box-sizing: border-box;
         box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('/images/slick/ajax-loader.gif') center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url('/css/fonts/slick.eot');
    src: url('/css/fonts/slick.eot?#iefix') format('embedded-opentype'), url('/css/fonts/slick.woff') format('woff'), url('.css/fonts/slick.ttf') format('truetype'), url('/css/fonts/slick.svg#slick') format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    margin-top: -10px\9; /*lte IE 8*/
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: #464646;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    margin: 0px !important;
    bottom: -45px;

    display: block;

    width: 100%;
    padding: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
