﻿/* =============================================================================
 * HTML5 element display
 * ========================================================================== */
/* Add display for block-level HTML5 elements
 * Addresses display not defined in IE6/7/8/9 & FF3 */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block; }

/* Add display for embedded HTML5 elements
 * Addresses display not defined in IE6/7/8/9 & FF3 */
audio[controls], canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/* =============================================================================
 * Base
 * ========================================================================== */
/* 1. Add font size
 *    Addresses text resizing oddly in IE6/7 when body font-size is set using em units
 *    http://clagnut.com/blog/348/#c790
 * 2. Add vertical scrollbar
 *    Keeps page centred in all browsers regardless of content height
 * 3. Remove Android and iOS tap highlight color to prevent entire container being highlighted
 *    www.yuiblog.com/blog/2010/10/01/quick-tip-customizing-the-mobile-safari-tap-highlight-color/
 * 4. Remove iOS text size adjust without disabling user zoom
 *    www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
html {
  font-size: 75%;
  /* 1 */
  overflow-y: scroll;
  /* 2 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 4 */ }

/* Remove margin
 * Addresses margins handled incorrectly in IE6/7 */
body {
  margin: 0;
  font-family: sans-serif; }

/* Define base font-family
 * Addresses font-family inconsistency between <textarea> and other form elements. */
button, input, select, textarea {
  font-family: sans-serif; }
  
.search-go 
{
    border: 0px;
    background: url("/Includes/Images/go-button.png") -1px -22px no-repeat;
    width: 30px;
    height: 22px;
}
.search-go:hover
{
    background: url("/Includes/Images/go-button.png") -1px 0px no-repeat;
}

/* 1. Remove border
 *    Improves readability when inside <a> element in all browsers
 * 2. Allow high quality bicubic image resampling
 *    Improves readability when scaled in IE7
 *    Read before using : code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

/* =============================================================================
 * Links
 * ========================================================================== */
a {
  color: #585959; }
  a:link {
  color: #585959; }
  a:visited {
    color: #585959; }
  a:focus {
    outline: thin dotted; color: #585959; }
  a:hover, a:active {
    outline: 0; color: #585959; }

/* Define outline as thin dotted
 * Addresses outline displayed oddly in Chrome */
/* Remove outline
 * Improves readability when focused and also mouse hovered in all browsers
 * people.opera.com/patrickl/experiments/keyboard/test */
/* =============================================================================
 * Typography
 * ========================================================================== */
/* Add bottom border
 * Fixes styling not present in IE7/8/9 S5 Chrome */
abbr[title] {
  border-bottom: 1px dotted; }

/* Add bold font weight
 * Fixes style set to 'bolder' in FF3/4 S4/5 Chrome */
b, strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/* Add italic font style
 * Fixes styling not present in S5 Chrome */
dfn {
  font-style: italic; }

/* Add yellow background and black text
 * Fixes styling not present in IE6/7/8/9 */
mark {
  background: yellow;
  color: black; }

/* Redeclare monospace font family
 * en.wikipedia.org/wiki/User:Davidgothberg/Test59
 * 1. Fixes font family set oddly in S5 Chrome
 * 2. Fixes monospace font family set oddly in IE6 */
pre, code, kbd, samp {
  font-family: monospace, monospace;
  /* 1 */
  _font-family: "courier new", monospace;
  /* 2 */
  font-size: 1em; }

/* Add line wrapping
 * Improves readability of pre-formatted text in all browsers */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/* Remove quotes
 * 1. Addresses CSS quotes not supported in IE6/7
 * 2. Addresses quote property not supported in S4 */
/* 1 */
q {
  quotes: none; }
  q:before, q:after {
    content: "";
    content: none; }

/* 2 */
/* Define font-size */
small {
  font-size: 75%; }

.footnote {
  font-size: 75%;
  line-height: 120%; }

/* Position subscript and superscript content without affecting line-height
 * Fixes alignment within multi-line text displayed oddly in all browsers
 * gist.github.com/413930 */
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* =============================================================================
 * Lists
 * ========================================================================== */
ul, ol {
  margin: 0;
  padding: 0; }

li {
  list-style: none; }
  
#job ul, #job ol {
  padding-left: 40px; }

#job li {
  list-style: disc outside none; }

dd {
  margin: 0 0 0 40px; }

nav ul, nav ol {
  list-style: none; }

/* =============================================================================
 * Figures
 * ========================================================================== */
/* Remove margin
 * Addresses margin not present in IE6/7/8/9, S5, O11 */
figure, form {
  margin: 0; }

/* =============================================================================
 * Forms
 * ========================================================================== */
/* Remove margin
 * Fixes styling in IE6/7 */
/* Define consistent margin and padding */
fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/* Add negative left margin
 * Fixes alignment displayed oddly in IE6/7 */
legend {
  *margin-left: -7px; }

/* 1. Define font-size as equal to ancestor's
 * 2. Remove margin
 *    Fixes different margins set in FF3/4 S5 Chrome
 * 3. Define consistent vertical alignment display in all browsers */
button, input, select, textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

/* 1. Define line-height as normal
 *    Addresses FF3/4 setting it using !important in the UA stylesheet
 * 2. Make overflow visible
 *    Fixes spacing displayed oddly in IE6/7 */
button, input {
  line-height: normal;
  /* 1 */
  *overflow: visible;
  /* 2 */ }

/* 1. Display hand cursor for clickable form elements
 *    Improves usability and consistency of cursor style between image-type <input> and others
 * 2. Define appearance for clickable form elements
 *    Fixes inability to style clickable <input> types in iOS */
button {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */ }

input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */ }
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box; }
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

/* Define box sizing
 * Addresses box sizing set to content-box in IE8/9 */
/* Define box sizing and appearance
 * Addresses box sizing set to border-box in S5 Chrome (include -moz to future-proof)
 * Addresses appearance set to searchfield in S5 Chrome */
/* Remove WebKit search decoration
 * Addresses inner padding displaying oddly in S5 Chrome on OSX */
/* Remove inner padding and border 
 * Fixes appearance displayed oddly in FF3/4
 * www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/* 1. Remove default vertical scrollbar
 *    Fixes scrollbar displayed oddly in IE6/7/8/9
 * 2. Add top vertical alignment
 *    Improves readability and aligment in all browsers */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* =============================================================================
 * Tables
 * ========================================================================== */
/* Remove most spacing between table cells
 * Consistent vertical and horizontal alignment in all browsers */
table {
  border-collapse: collapse;
  border-spacing: 0; }

th, td {
  padding: 0;
  text-align: left;
  vertical-align: middle; }

#facebox {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 400;
  text-align: left; }
  #facebox .popup {
    position: relative; }
  #facebox .content {
    display: table;
    padding: 0;
    background: #fff;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -opera-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.4); }
    #facebox .content > p:first-child {
      margin-top: 0; }
    #facebox .content > p:last-child {
      margin-bottom: 0; }
  #facebox .close {
    position: absolute;
    top: 0px;
    right: -51px;
    padding: 2px; }
    #facebox .close img {
      opacity: 0.85; }
    #facebox .close:hover img {
      opacity: 1.0; }
  #facebox .loading, #facebox .image {
    text-align: center; }
  #facebox img {
    border: 0;
    margin: 0; }

#facebox_overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%; }

.facebox_hide {
  z-index: -100; }

.facebox_overlayBG {
  background-color: #000;
  z-index: 399; }

/*
 * jQuery UI CSS Framework 1.8.14
 *
 * 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=Arial,sans-serif&fwDefault=normal&fsDefault=&cornerRadius=8px&bgColorHeader=ffffff&bgTextureHeader=01_flat.png&bgImgOpacityHeader=0&borderColorHeader=ffffff&fcHeader=222222&iconColorHeader=222222&bgColorContent=ffffff&bgTextureContent=01_flat.png&bgImgOpacityContent=0&borderColorContent=f1f1f1&fcContent=222222&iconColorContent=222222&bgColorDefault=c5c5c5&bgTextureDefault=01_flat.png&bgImgOpacityDefault=75&borderColorDefault=c5c5c5&fcDefault=ffffff&iconColorDefault=888888&bgColorHover=959698&bgTextureHover=01_flat.png&bgImgOpacityHover=75&borderColorHover=959698&fcHover=ffffff&iconColorHover=454545&bgColorActive=136eb5&bgTextureActive=05_inset_soft.png&bgImgOpacityActive=40&borderColorActive=2277b8&fcActive=ffffff&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=ffffff&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
 */


/* Component containers
----------------------------------*/
.ui-widget { font-family: Arial,sans-serif; font-size: ; }
.ui-widget .ui-widget { font-size: 1em; }
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Arial,sans-serif; font-size: 1em; }
.ui-widget-content { border: 1px solid #f1f1f1; background: #ffffff url(/Includes/Images/ui-images/ui-bg_flat_0_ffffff_40x100.png) 50% 50% repeat-x; }
.ui-widget-content a { color: #222222; }
.ui-widget-header { border: 1px solid #ffffff; background: #ffffff url(/Includes/Images/ui-images/ui-bg_flat_0_ffffff_40x100.png) 50% 50% repeat-x; 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 #c5c5c5; background: #c5c5c5 url(/Includes/Images/ui-images/ui-bg_flat_75_c5c5c5_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #ffffff; 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 #959698; background: #959698 url(/Includes/Images/ui-images/ui-bg_flat_75_959698_40x100.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
.ui-state-hover a, .ui-state-hover a:hover { color: #ffffff; text-decoration: none; }
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #2277b8; background: #136eb5 url(/Includes/Images/ui-images/ui-bg_inset-soft_40_136eb5_1x100.png) 50% 50% repeat-x; font-weight: normal; color: #ffffff; }
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #ffffff; 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(/Includes/Images/ui-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(/Includes/Images/ui-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(/Includes/Images/ui-images/ui-icons_222222_256x240.png); }
.ui-widget-content .ui-icon {background-image: url(/Includes/Images/ui-images/ui-icons_222222_256x240.png); }
.ui-widget-header .ui-icon {background-image: url(/Includes/Images/ui-images/ui-icons_222222_256x240.png); }
.ui-state-default .ui-icon { background-image: url(/Includes/Images/ui-images/ui-icons_888888_256x240.png); }
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(/Includes/Images/ui-images/ui-icons_454545_256x240.png); }
.ui-state-active .ui-icon {background-image: url(/Includes/Images/ui-images/ui-icons_454545_256x240.png); }
.ui-state-highlight .ui-icon {background-image: url(/Includes/Images/ui-images/ui-icons_2e83ff_256x240.png); }
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(/Includes/Images/ui-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; display: none }
.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: 8px; -webkit-border-top-left-radius: 8px; -khtml-border-top-left-radius: 8px; border-top-left-radius: 8px; }
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 8px; -webkit-border-top-right-radius: 8px; -khtml-border-top-right-radius: 8px; border-top-right-radius: 8px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 8px; -webkit-border-bottom-left-radius: 8px; -khtml-border-bottom-left-radius: 8px; border-bottom-left-radius: 8px; }
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 8px; -webkit-border-bottom-right-radius: 8px; -khtml-border-bottom-right-radius: 8px; border-bottom-right-radius: 8px; }

/* Overlays */
.ui-widget-overlay { background: #aaaaaa url(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: #ffffff url(images/ui-bg_flat_0_ffffff_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 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: 100%; }
.ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
.ui-accordion .ui-accordion-li-fix { display: inline; }
.ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
.ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em .7em; }
.ui-accordion-icons .ui-accordion-header a { padding-left: 2.2em; }
.ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
.ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; zoom: 1; }
.ui-accordion .ui-accordion-content-active { display: block; }
/*
 * jQuery UI Autocomplete 1.8.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; }	
.ui-autocomplete-loading { background:url(/includes/images/loading16x16.gif) no-repeat right center !important; }

/* 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 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: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 1px; margin: 0 .2em 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: 1px 0 0; border-top-color:#F1F1F1; padding: 10px 5px 5px 5px; background: none; }
.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*/
}

#main > *, #header > *, #footer > * {
  width: 940px;
  margin: 0 auto; }
  


#header {
  height: 130px;
  position: relative;
  background: #c6c6c6 url("/Includes/Images/header-texture.png");
  margin-bottom: 34px;
  z-index: 100; }
  #header #global-nav {
    position: relative;
    right: 0px; }
  #header > h1 {
    height: 0;
    overflow: visible;
    position: relative;
    left: 40px;
    top: -48px; }
  #header #global-actions{
    position: relative;
    /*left:460px;*/
    text-align:right;
    top: 5px;
    height: 50px;
    z-index: 200; }
    #header #global-actions form, #header #global-actions ul, #header #global-actions li {
      /*display: inline-block;*/
      zoom: 1; }
      .ie6 #header #global-actions form, .ie7 #header #global-actions form, .ie6 #header #global-actions ul, .ie7 #header #global-actions ul, .ie6 #header #global-actions li, .ie7 #header #global-actions li {
        /*display: inline; */}
    /*#header #global-actions li {
      padding: 0 5px; }*/
    #header #global-actions a, #header #global-actions input.search {
      /*color: #5f6162;*/
      font-size: 0.916em; }
    #header #global-actions a {
      /*text-decoration: underline;*/ }
    #header #global-actions a:hover {
      /*color: #77797a;*/ }
    #header #global-actions input.search {
      border: 1px solid #bfbfbf;
      background: #dfdfdf;
      padding: 5px; }
  #header #global-nav {
    text-align: right; }
    #header #global-nav > li {
      display: inline-block;
      zoom: 1;
      padding: 5px 10px;
      margin: 0 6px;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      -opera-border-radius: 10px;
      border-radius: 10px; }
      .ie6 #header #global-nav > li, .ie7 #header #global-nav > li {
        display: inline; }
      #header #global-nav > li > a {
        font-weight: bold;
        font-size: 1.33em;
        color: #5f6162; }
      #header #global-nav > li.selected {
        background: #2970b2;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4381bb,endColorstr=#2970b2);
        background: -o-linear-gradient(top, #4381bb, #2970b2);
        background: -webkit-gradient(linear, left top, left bottom, from(#4381bb), to(#2970b2));
        background: -moz-linear-gradient(top, #4381bb, #2970b2); }
        #header #global-nav > li.selected > a {
          color: #fff;
          cursor: default; }
      #header #global-nav > li:hover {
        background-color: #b1b1b1;
        background-color: rgba(80, 80, 80, 0.09); }
        #header #global-nav > li:hover a {
          text-decoration: none; }
  #header #product-nav {
    position: absolute;
    bottom: -34px;
    left: 50%;
    margin-left: -470px;
    height: 68px;
    font-size: 0; }
    #header #product-nav.personal {
      background: url("/Includes/Images/product-nav-personal.png") no-repeat top center; }
      #header #product-nav.personal li, #header #product-nav.personal a {
        height: 68px; }
      #header #product-nav.personal li.item-0, #header #product-nav.personal li.item-0 a {
        margin-left: 0;}
      #header #product-nav.personal li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.personal li, .ie7 #header #product-nav.personal li {
          display: inline; }
        #container #header #product-nav.personal li.item-0.selected a {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat 0px -68px; }
        #header #product-nav.personal li.item-0 a:hover {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat 0px -136px; }
        #container #header #product-nav.personal li.item-1.selected a {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat -237px -68px; }
        #header #product-nav.personal li.item-1 a:hover {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat -237px -136px; }
        #container #header #product-nav.personal li.item-2.selected a {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat -472px -68px; }
        #header #product-nav.personal li.item-2 a:hover {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat -472px -136px; }
        #container #header #product-nav.personal li.item-3.selected a {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat -710px -68px; }
        #header #product-nav.personal li.item-3 a:hover {
          background: url("/Includes/Images/product-nav-personal.png") no-repeat -710px -136px; }
    #header #product-nav.commercial {
      background: url("/Includes/Images/product-nav-commercial.png") no-repeat top center; }
      #header #product-nav.commercial li, #header #product-nav.commercial a {
       height: 68px; }
      #header #product-nav.commercial li.item-0, #header #product-nav.commercial li.item-0 a {
        margin-left: 0;}
      #header #product-nav.commercial li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.commercial li, .ie7 #header #product-nav.commercial li {
          display: inline; }
        #container #header #product-nav.commercial li.item-0.selected a {
          background: url("/Includes/Images/product-nav-commercial.png") no-repeat 0px -68px; }
        #header #product-nav.commercial li.item-0 a:hover {
          background: url("/Includes/Images/product-nav-commercial.png") no-repeat 0px -136px; }
        #container #header #product-nav.commercial li.item-1.selected a {
          background: url("/Includes/Images/product-nav-commercial.png") no-repeat -314px -68px; }
        #header #product-nav.commercial li.item-1 a:hover {
          background: url("/Includes/Images/product-nav-commercial.png") no-repeat -314px -136px; }
        #container #header #product-nav.commercial li.item-2.selected a {
          background: url("/Includes/Images/product-nav-commercial.png") no-repeat -628px -68px; }
        #header #product-nav.commercial li.item-2 a:hover {
          background: url("/Includes/Images/product-nav-commercial.png") no-repeat -628px -136px; }
    #header #product-nav.about {
      background: url("/Includes/Images/product-nav-about.png") no-repeat top center; }
      #header #product-nav.about li, #header #product-nav.about a {
        width: Infinitypx;
        height: 68px; }
      #header #product-nav.about li.item-0, #header #product-nav.about li.item-0 a {
        margin-left: 0;
        width: Infinitypx; }
      #header #product-nav.about li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.about li, .ie7 #header #product-nav.about li {
          display: inline; }
    #header #product-nav.login { /*login*/
      background: url("/Includes/Images/product-nav-mytransact.png") no-repeat top center; }
      #header #product-nav.login li, #header #product-nav.login a {
        width: Infinitypx;
        height: 68px; }
      #header #product-nav.login li.item-0, #header #product-nav.login li.item-0 a {
        margin-left: 0;
        width: Infinitypx; }
      #header #product-nav.login li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.login li, .ie7 #header #product-nav.login li {
          display: inline; }
    #header #product-nav.contact { /*contact*/
      background: url("/Includes/Images/product-nav-contact.png") no-repeat top center; }
      #header #product-nav.contact li, #header #product-nav.contact a {
        width: Infinitypx;
        height: 68px; }
      #header #product-nav.contact li.item-0, #header #product-nav.contact li.item-0 a {
        margin-left: 0;
        width: Infinitypx; }
      #header #product-nav.contact li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.contact li, .ie7 #header #product-nav.contact li {
          display: inline; }
    #header #product-nav.support { /*support*/
      background: url("/Includes/Images/product-nav-support.png") no-repeat top center; }
      #header #product-nav.support li, #header #product-nav.support a {
        width: Infinitypx;
        height: 68px; }
      #header #product-nav.support li.item-0, #header #product-nav.support li.item-0 a {
        margin-left: 0;
        width: Infinitypx; }
      #header #product-nav.support li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.support li, .ie7 #header #product-nav.support li {
          display: inline; }
    #header #product-nav.terms { /*terms*/
      background: url("/Includes/Images/product-nav-terms.png") no-repeat top center; }
      #header #product-nav.terms li, #header #product-nav.terms a {
        width: Infinitypx;
        height: 68px; }
      #header #product-nav.terms li.item-0, #header #product-nav.terms li.item-0 a {
        margin-left: 0;
        width: Infinitypx; }
      #header #product-nav.terms li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.terms li, .ie7 #header #product-nav.terms li {
          display: inline; }
    #header #product-nav.privacy { /*privacy*/
      background: url("/Includes/Images/product-nav-privacy.png") no-repeat top center; }
      #header #product-nav.privacy li, #header #product-nav.privacy a {
        width: Infinitypx;
        height: 68px; }
      #header #product-nav.privacy li.item-0, #header #product-nav.privacy li.item-0 a {
        margin-left: 0;
        width: Infinitypx; }
      #header #product-nav.privacy li {
        display: inline-block;
        zoom: 1; }
        .ie6 #header #product-nav.privacy li, .ie7 #header #product-nav.privacy li {
          display: inline; }
    #header #product-nav a {
      display: block;
      text-indent: -999em;
      overflow: hidden;
      background-repeat: no-repeat;
      text-align: left;
      direction: ltr; }
    #header .commercial .item-0 a,
    #header .commercial .item-0 a:hover
    {
        width:314px;
    }
    #header .commercial .item-1 a,
    #header .commercial .item-1 a:hover
    {
        width:313px;
    }
    #header .commercial .item-2 a,
    #header .commercial .item-2 a:hover
    {
        margin-left: 1px;
        width:312px;
    }
    #header .personal .item-0 a,
    #header .personal .item-0 a:hover
    {
        width:236px;
    }
    #header .personal .item-1 a,
    #header .personal .item-1 a:hover
    {
        margin-left: 1px;
        width:234px;
    }
    #header .personal .item-2 a,
    #header .personal .item-2 a:hover
    {
        margin-left: 1px;
        width:237px;
    }
    #header .personal .item-3 a,
    #header .personal .item-3 a:hover
    {
        margin-left: 1px;
        width:230px;
    }
     #header .safari .item-1,
     #header .safari .item-2,
     #header .safari .item-3
    {
        margin-left: -4px !important;
    }
  #top-nav 
  {
      display:inline-block;
      line-height:normal;
      zoom: 1;
      *display: inline;
      z-index:2000; }
  #search-block 
  {
      display:inline-block;
      top:5px;
      line-height:normal;
      vertical-align:top;
      margin: 0 10px; }
/* 
	DROPDOWN LEVEL ONE
*/
ul.dropdown                         { position: relative; }
ul.dropdown li                      { float: left; text-align:left;}
ul.dropdown a:hover		            { text-decoration:none;color:#585959; }
ul.dropdown a:active                { color:#585959; }
ul.dropdown li a                    { display: block; padding: 5px 8px; border-right: 1px solid #afb0b0; }
ul.dropdown li:last-child a         { border-right: none; } /* Doesn't work in IE */
ul.dropdown li.hover,
ul.dropdown li:hover                { background: #d3d3d3;position: relative; }
ul.dropdown li.hover a              { }

ul.dropdown li.show-drop > a        { float: left; text-align:left; background:url('/Includes/Images/down-arrow2.png') no-repeat right;padding-right:14px;}
ul.dropdown li.nohover              { background: transparent;}

/* LEVEL TWO*/
ul.dropdown ul 						{ width: 120px; visibility: hidden; position: absolute; top: 100%; left: 0; list-style: none;}
ul.dropdown ul li 					{ background: #e4e4e4; color: #000; 
									  border-bottom: 1px solid #d3d3d3; float: none; }
 /* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a					{ border-right: none; width: 100%; display: inline-block; } 
/* LEVEL THREE*/
ul.dropdown ul ul 					{ left: 100%; top: 0; }
ul.dropdown li:hover > ul 			{ visibility: visible; }    
    
#main .featured-block {
  background-color: #dedede;
  margin: 0;
  width: 100%;
  padding: 20px 0 0 0; }
  #main .featured-block .content {
    width: 940px;
    margin: 0 auto; }
  #main .featured-block .product-offer, #main .featured-block .video-frame {
    display: inline-block;
    zoom: 1;
    width: 468px;
    margin-bottom: 10px; }
    .ie6 #main .featured-block .product-offer, .ie7 #main .featured-block .product-offer, .ie6 #main .featured-block .video-frame, .ie7 #main .featured-block .video-frame {
      display: inline; }
  #main .featured-block .video-frame {
    text-align: right; }

#footer {
  background: #626566 url("/Includes/Images/footer-texture.jpg") 0 0 repeat-x; }

.tab-block {
  margin: 20px 0;
  padding: 20px 0; }
  .tab-block > .tabs {
    font-size: 0; }
    .tab-block > .tabs > li {
      display: inline-block;
      zoom: 1;
      padding: 5px 20px;
      font-size: 12px;
      border-right: 1px solid #ebecec;
      border-left: 1px solid #cdcdcd;
      background: #dee0e0;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#f5f5f5,endColorstr=#dee0e0);
      background: -o-linear-gradient(top, #f5f5f5, #dee0e0);
      background: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#dee0e0));
      background: -moz-linear-gradient(top, #f5f5f5, #dee0e0);
      font-weight: bold; }
      .tab-block > .tabs > li:first-child {
        -moz-border-radius-topleft: 10px;
        -webkit-border-top-left-radius: 10px;
        border-top-left-radius: 10px;
        border-left: 1px transparent; }
      .tab-block > .tabs > li:last-child {
        -moz-border-radius-topright: 10px;
        -webkit-border-top-right-radius: 10px;
        border-top-right-radius: 10px; }
      .ie6 .tab-block > .tabs > li, .ie7 .tab-block > .tabs > li {
        display: inline; }
      .tab-block > .tabs > li a {
        color: #848686; }
      .tab-block > .tabs > li.selected {
        color: #fff;
        border-right: 1px transparent;
        border-left: 1px transparent;
        background: #2970b2;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4381bb,endColorstr=#2970b2);
        background: -o-linear-gradient(top, #4381bb, #2970b2);
        background: -webkit-gradient(linear, left top, left bottom, from(#4381bb), to(#2970b2));
        background: -moz-linear-gradient(top, #4381bb, #2970b2); }
  .tab-block .nav {
    zoom: 1;
    background: #0f60a9;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#2970b2,endColorstr=#0f60a9);
    background: -o-linear-gradient(top, #2970b2, #0f60a9);
    background: -webkit-gradient(linear, left top, left bottom, from(#2970b2), to(#0f60a9));
    background: -moz-linear-gradient(top, #2970b2, #0f60a9);
    padding: 3px; }
    .tab-block .nav > li {
      display: inline-block;
      zoom: 1;
      padding: 0px 5px;
      margin: 3px;
      -moz-border-radius: 10px;
      -webkit-border-radius: 10px;
      -opera-border-radius: 10px;
      border-radius: 10px; }
      .ie6 .tab-block .nav > li, .ie7 .tab-block .nav > li {
        display: inline; }
      .tab-block .nav > li:hover {
        background-color: #0e4790;
        background: #0c468f;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#3063a2,endColorstr=#0c468f);
        background: -o-linear-gradient(top, #3063a2, #0c468f);
        background: -webkit-gradient(linear, left top, left bottom, from(#3063a2), to(#0c468f));
        background: -moz-linear-gradient(top, #3063a2, #0c468f); }
        .tab-block .nav > li:hover a {
          text-decoration: none; }
      .tab-block .nav > li a {
        color: #fff;
        font-weight: bold; }
  .tab-block .header {
    position: relative;
    background: #0f60a9;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4481bb,endColorstr=#0f60a9);
    background: -o-linear-gradient(top, #4481bb, #0f60a9);
    background: -webkit-gradient(linear, left top, left bottom, from(#4481bb), to(#0f60a9));
    background: -moz-linear-gradient(top, #4481bb, #0f60a9);
    color: #fff;
    padding: 0 10px; }
    .tab-block .header a {
      color: #fff;
      padding: 0 2px; }
    .tab-block .header .actions a {
      text-transform: uppercase;
      font-weight: bold;
      padding: 0 5px; }
    .tab-block .header h2 {
      font-size: 1.33em; }
    .tab-block .header h3 {
      font-size: 1em;
      margin: 0; }
    .tab-block .header > * {
      margin: 0 5px;
      line-height: 54px; }
    .tab-block .header * {
      display: inline-block;
      zoom: 1; }
      .ie6 .tab-block .header *, .ie7 .tab-block .header * {
        display: inline; }
    .tab-block .header .time-navigation.sticky {
      top: 0;
      left: 50%;
      position: fixed;
      width: 100%;
      margin: 0;
      height: 0;
      overflow: visible;
      line-height: 0; }
      .tab-block .header .time-navigation.sticky ul {
        position: relative;
        display: block;
        width: 940px;
        margin-left: -470px;
        height: 0; }
    .tab-block .header .time-navigation a {
      display: block;
      text-indent: -999em;
      overflow: hidden;
      background-repeat: no-repeat;
      text-align: left;
      direction: ltr;
      width: 27px;
      height: 86px;
      padding: 0; }
    .tab-block .header .time-navigation li {
      position: absolute;
      padding: 0;
      border: 0; }
    .tab-block .header .time-navigation .plus-24-hours {
      right: -27px;
      top: 86px; }
      .tab-block .header .time-navigation .plus-24-hours a {
        background: url("/Includes/Images/time-nav.png") 0 -86px no-repeat; }
        .tab-block .header .time-navigation .plus-24-hours a:hover {
          background: url("/Includes/Images/time-nav.png") -27px -86px no-repeat; }
    .tab-block .header .time-navigation .plus-6-hours {
      right: -27px;
      top: 0; }
      .tab-block .header .time-navigation .plus-6-hours a {
        background: url("/Includes/Images/time-nav.png") 0 0px no-repeat; }
        .tab-block .header .time-navigation .plus-6-hours a:hover {
          background: url("/Includes/Images/time-nav.png") -27px 0px no-repeat; }
    .tab-block .header .time-navigation .minus-24-hours {
      left: -27px;
      top: 86px; }
      .tab-block .header .time-navigation .minus-24-hours a {
        background: url("/Includes/Images/time-nav.png") 0 -258px no-repeat; }
        .tab-block .header .time-navigation .minus-24-hours a:hover {
          background: url("/Includes/Images/time-nav.png") -27px -258px no-repeat; }
    .tab-block .header .time-navigation .minus-6-hours {
      left: -27px;
      top: 0; }
      .tab-block .header .time-navigation .minus-6-hours a {
        background: url("/Includes/Images/time-nav.png") 0 -172px no-repeat; }
        .tab-block .header .time-navigation .minus-6-hours a:hover {
          background: url("/Includes/Images/time-nav.png") -27px -172px no-repeat; }

.search-block {
  padding: 20px 0; }
  .search-block input.search {
    width: 50%;
    border: 1px solid silver;
    padding: 6px 10px;
    color: #5f6162; }
  .search-block .header {
    -moz-border-radius-topright: 10px;
    -webkit-border-top-right-radius: 10px;
    border-top-right-radius: 10px;
    -moz-border-radius-topleft: 10px;
    -webkit-border-top-left-radius: 10px;
    border-top-left-radius: 10px;
    background: #0f60a9;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4481bb,endColorstr=#0f60a9);
    background: -o-linear-gradient(top, #4481bb, #0f60a9);
    background: -webkit-gradient(linear, left top, left bottom, from(#4481bb), to(#0f60a9));
    background: -moz-linear-gradient(top, #4481bb, #0f60a9);
    color: #fff;
    padding: 20px 20px 10px;
    margin: 0; }
    .search-block .header h3, .search-block .header ul {
      font-size: 1em;
      display: inline-block;
      zoom: 1;
      margin: 5px 0; }
      .ie6 .search-block .header h3, .ie7 .search-block .header h3, .ie6 .search-block .header ul, .ie7 .search-block .header ul {
        display: inline; }
    .search-block .header li {
      display: inline-block;
      zoom: 1; }
      .ie6 .search-block .header li, .ie7 .search-block .header li {
        display: inline; }
  .search-block .search-header th {
    background: #dddddd;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e5e5,endColorstr=#dddddd);
    background: -o-linear-gradient(top, #e5e5e5, #dddddd);
    background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#dddddd));
    background: -moz-linear-gradient(top, #e5e5e5, #dddddd);
    background: #dedede; }
  .search-block .date-header th {
    text-align: left;
    color: #585959;
    padding: 10px 20px 2px;
    vertical-align: bottom; }
  .search-block table {
    width: 100%;
    background-color: #f0f0f0;
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px; }
    .search-block table time {
      font-size: 1em; }
    .search-block table tr:last-child td {
      padding-bottom: 10px; }
    .search-block table td, .search-block table th {
      text-align: left;
      line-height: 2em;
      padding: 0 20px; }
      .search-block table td a, .search-block table th a {
        color: #085AA6; }

table.epg {
  table-layout: fixed;
  width: 100%; }
  table.epg.sticky {
    position: relative;
    top: 24px;
    margin-bottom: 24px; }
    table.epg.sticky .search-header th {
      width: 313.333px; }
    table.epg.sticky .time-row th {
      width: 104.444px; 
      /*IE7 fix */ *width:90px }
    table.epg.sticky .search-header, table.epg.sticky .time-row {
      top: 0;
      position: fixed;
      width: 940px; }
  table.epg h4 a, table.epg th {
    font-weight: bold;
    color: #085aa6; }
  table.epg .episode {
    margin: 5px 0; }
    table.epg .episode h4 {
      margin: 2px 0;
      font-size: 1em; }
  table.epg th {
    background: #dddddd;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#e5e5e5,endColorstr=#dddddd);
    background: -o-linear-gradient(top, #e5e5e5, #dddddd);
    background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#dddddd));
    background: -moz-linear-gradient(top, #e5e5e5, #dddddd);
    text-align: center;
    padding: 3px; 
    /*IE7 fix */ *width:90px}
    table.epg th[scope=row] {
      font-size: 0.83em;
      padding: 10px 3px;
      line-height: 1.1em; }
    table.epg th > a {
      display: block;
      text-align: center;
      padding-top: 64px;
      width: 78px;
      margin: 0 auto;
      color: #585959; }
      table.epg th > a:hover {
        text-decoration: none; }
  table.epg td {
    background: #ededed;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa,endColorstr=#ededed);
    background: -o-linear-gradient(top, #fafafa, #ededed);
    background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#ededed));
    background: -moz-linear-gradient(top, #fafafa, #ededed);
    padding: 3px;
    line-height: 1.1em;
    vertical-align: top;
    /*IE7 fix */ *width:90px}
  table.epg td, table.epg th {
    border-right: 1px solid #cbcbcb;
    word-wrap: break-word; }
    table.epg td.last, table.epg th.last {
      border-right: 0; }
  table.epg span {
    display: block; }
  table.epg time, table.epg .description {
    font-size: 0.83em; }

table.epg.sticky {
  z-index: 0; }
  table.epg.sticky .time-row {
    z-index: 1; }

.featured-block, #footer {
  position: relative;
  z-indexx: 5; }

.homepage {
  background: #c6c6c6 url("/Includes/Images/header-texture.png"); }

.breadcrumbs {
  font-size: 0.83em; }
  .breadcrumbs a {
    color: #585959;
    text-decoration: underline; }

.js .nav > li > ul {
  display: none; }
.js .nav > li.selected > ul {
  display: block; }

.info-page {
  padding: 20px 0;
  position: relative;
  min-height: 600px; }
  .info-page .content {
    padding-left: 240px; }
  .info-page .sidebar {
    position: absolute;
    left: 0;
    width: 220px;
    margin-right: 20px; }
    .info-page .sidebar > .widget {
      margin: 20px 0; }
    .info-page .sidebar .nav {
      -moz-border-radius-bottomright: 10px;
      -webkit-border-bottom-right-radius: 10px;
      border-bottom-right-radius: 10px;
      -moz-border-radius-bottomleft: 10px;
      -webkit-border-bottom-left-radius: 10px;
      border-bottom-left-radius: 10px;
      background-color: #ececec;
      padding: 0 20px; }
      .info-page .sidebar .nav a {
        color: #585959; }
      .info-page .sidebar .nav > li {
        border-bottom: 1px solid #dedede;
        line-height: 2px;
        margin: 0 -20px;
        padding: 10px 10px 10px 20px; }
        .info-page .sidebar .nav > li.selected {
        padding: 10px 10px 0px 20px; }
        .info-page .sidebar .nav > li.last {
          border: 0; }
        .info-page .sidebar .nav > li > ul {
          margin-bottom: 10px; }
        .info-page .sidebar .nav > li > h3, .info-page .sidebar .nav > li > a {
          margin: 0;
          line-height: 20px;
          font-size: 1.33em;
          font-weight: bold;
           padding-bottom: 10px; }
          .info-page .sidebar .nav > li > h3, .info-page .sidebar .nav > li > ul > li {
          margin: 0;
          line-height: 20px;
          }
        .info-page .sidebar .nav > li.selected h3 a {
          color: #095aa6;
          }
        .info-page .sidebar .nav > li > ul > li.first {
          
          }
  .info-page .content p a {
    color: #585959;
    text-decoration: underline; }
    .info-page .content p a:hover {
      color: #095aab; }
  .info-page .content h1 {
    color: #095aa6; }
  .info-page .content .blurb {
    line-height: 1.1em;
    font-size: 2em;
    color: #095aa6;
    margin: 20px 0; }
  .info-page .product-list {
    margin-left: -10px; }
    .info-page .product-list > li {
      display: inline-block;
      zoom: 1;
      padding: 10px 6px; }
      .ie6 .info-page .product-list > li, .ie7 .info-page .product-list > li {
        display: inline; }
  .info-page .feature-list {
    font-size: 1.16em;
    margin: 20px 0;
    margin-left: 15px; }
    .info-page .feature-list li:before {
      content: "+ \0020";
      font-weight: bold; }
  .info-page .product-spec-table {
    margin-left: -3px;
    width: 100%; }
    .info-page .product-spec-table th, .info-page .product-spec-table td {
      background-color: #f9f9f9;
      border: 2px solid #fff;
      padding: 10px; 
      vertical-align:top;}
    .info-page .product-spec-table tr.odd th, .info-page .product-spec-table tr.odd td {
      background-color: #eee; }
    .info-page .product-spec-table th {
      width: 230px; }
  .info-page .promo-sidebar {
    width: 220px;
    display: inline;
    float: right; }
  .info-page .promo-footer {
     }
  .info-page .promo-footer .widget, .info-page .promo-sidebar .widget {
    display: inline-block;
    zoom: 1;
    margin: 10px 10px 10px 0px; }
    .info-page .promo-sidebar .widget 
    {
       display: inline-block;
       zoom: 1;
       margin: 0px 0px 20px 0px;
    }
    .ie6 .info-page .promo-footer .widget, .ie7 .info-page .promo-footer .widget, .ie6 .info-page .promo-sidebar .widget, .ie7 .info-page .promo-sidebar .widget {
      display: inline; }

.person-profile {
  width: 220px;
  margin-right: 10px; }
  .person-profile .content {
    padding: 10px;
    background: #1565ad;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4583bd,endColorstr=#1565ad);
    background: -o-linear-gradient(top, #4583bd, #1565ad);
    background: -webkit-gradient(linear, left top, left bottom, from(#4583bd), to(#1565ad));
    background: -moz-linear-gradient(top, #4583bd, #1565ad);
    -moz-border-radius-bottomright: 10px;
    -webkit-border-bottom-right-radius: 10px;
    border-bottom-right-radius: 10px;
    -moz-border-radius-bottomleft: 10px;
    -webkit-border-bottom-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #fff; }
  .person-profile img {
    display: block; }
  .person-profile h4, .person-profile h5, .person-profile p {
    margin: 5px 10px;
    line-height: 1.3em; }
  .person-profile h4 {
    font-size: 1.33em; }
  .person-profile h5 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal; }
  .person-profile p {
    font-size: 1.16em; }

.profile-list > .person-profile {
  display: inline-block;
  zoom: 1; }
  .ie6 .profile-list > .person-profile, .ie7 .profile-list > .person-profile {
    display: inline; }

#page-slogan img {
  display: block; }

.service-results-summary
{
    line-height: 1em;
}

.service-results-summary a
{
  zoom: 1;
  display: block;
  position: relative;
  line-height: 20px;
  color: #5f6162;
  text-decoration: none;
  border: 1px solid #b3b4b4;
  border-width: 1px 0;
  padding: 0 20px;
  margin: 0 -20px -1px; }
  .service-results-summary a:hover {
    background-color: #d3d3d3;
    text-decoration: none;}
      .generatedcontent .service-results-summary a:after {
        background: #09939f;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
        background: -o-linear-gradient(top, #52b0b9, #09939f);
        background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
        background: -moz-linear-gradient(top, #52b0b9, #09939f);
        color: #fff;
        border: 0;
        font-weight: bold;
        padding: 0 10px;
        opacity: 0.9;
        position: absolute;
        right: 0;
        margin: 0;
        height: 20px; }
        .generatedcontent .service-results-summary a:after:hover {
            opacity: 1.0; }
        .generatedcontent .service-results-summary a:after:active {
            background: #52b0b9;
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#09939f,endColorstr=#52b0b9);
            background: -o-linear-gradient(top, #09939f, #52b0b9);
            background: -webkit-gradient(linear, left top, left bottom, from(#09939f), to(#52b0b9));
            background: -moz-linear-gradient(top, #09939f, #52b0b9); }
          .generatedcontent .service-results-summary a:hover:after {
            content: 'GO >'; }

.widget-row {
  vertical-align: top; }
  .widget-row > .widget {
    white-space: normal;
    display: inline-block;
    zoom: 1;
    margin: 0 18px 20px 0; }
    .ie6 .widget-row > .widget, .ie7 .widget-row > .widget {
      display: inline; }
    .widget-row > .widget.last {
      margin-right: 0; }

.widget {
  vertical-align: top;
  text-align: left;
  position: relative;
  line-height: 0; }
  .widget.with-content {
    width: 180px;
    height: 160px;
    padding: 10px 20px 20px 20px; }
 .widget.with-content h3.success {
    margin:0 0 4px 0;
    padding-bottom:5px;
    font-size:14px;
    line-height:1.2;
    background: url("/Includes/Images/availability-tick.png") no-repeat 0 0;
    padding-left: 40px; }
  .widget.survey {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -opera-border-radius: 10px;
    border-radius: 10px; }
 .widget.survey.with-content{
	background-color: #bfc0c0;
	}
    .widget.survey select {
      display: block;
      width: 100%;
      line-height: 1.3em;
      margin: 10px 0; }
    .widget.survey input.button {
      background: #09939f;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
      background: -o-linear-gradient(top, #52b0b9, #09939f);
      background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
      background: -moz-linear-gradient(top, #52b0b9, #09939f);
      color: #fff;
      border: 0;
      font-weight: bold;
      padding: 5px;
      opacity: 0.9;
      text-transform: uppercase;
      position: absolute;
      bottom: 0;
      right: 0; }
      .widget.survey input.button.obtain-transact-button {
        background: -moz-linear-gradient(center top , #AAACAC, #828787) repeat scroll 0 0 transparent;
        line-height: normal;
        padding: 4px;}
      .widget.survey input.button:hover {
        opacity: 1.0; }
      .widget.survey input.button:active {
        background: #52b0b9;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#09939f,endColorstr=#52b0b9);
        background: -o-linear-gradient(top, #09939f, #52b0b9);
        background: -webkit-gradient(linear, left top, left bottom, from(#09939f), to(#52b0b9));
        background: -moz-linear-gradient(top, #09939f, #52b0b9); }
      .ie7 .widget.survey input.button {
        width: 60px; }
  .widget.news {
    background-color: #fff; }
    .widget.news h4 {
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.83em;
      font-weight: bold;
      color: #1162ab;
      margin: 0 0 10px;
      line-height: 1em; }
    .widget.news h5 {
      margin: 0;
      font-size: 1.33em;
      margin: 0 0 10px;
      line-height: 1em;
      font-weight: bold;
      color: #626262; }
    .widget.news p {
      margin: 0;
      line-height: 1em;
      font-size: 1.167em;
      color: #626262; }
    .widget.news .more {
      background: #09939f;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
      background: -o-linear-gradient(top, #52b0b9, #09939f);
      background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
      background: -moz-linear-gradient(top, #52b0b9, #09939f);
      color: #fff;
      border: 0;
      font-weight: bold;
      padding: 5px 10px;
      opacity: 0.9;
      text-transform: uppercase;
      position: absolute;
      bottom: 0;
      right: 0; }
      .widget.news .more:hover {
        opacity: 1.0; }
      .widget.news .more:active {
        background: #52b0b9;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#09939f,endColorstr=#52b0b9);
        background: -o-linear-gradient(top, #09939f, #52b0b9);
        background: -webkit-gradient(linear, left top, left bottom, from(#09939f), to(#52b0b9));
        background: -moz-linear-gradient(top, #09939f, #52b0b9); }
      .ie7 .widget.news .more {
        width: 60px; }
  .widget.navigation {
    background: #868888 url("/Includes/Images/widget-navigation-bg-trans.png") repeat-y 0;
    padding: 15px;
    width: 190px;
    height: 165px; }
    .widget.navigation.featured {
      background-color: #196aaf; }
      .widget.navigation.featured h3 {
        color: #fff; }
    .widget.navigation h3 {
      font-size: 2em;
      font-weight: bold;
      color: #1162ab; }
    .widget.navigation a {
      color: #fff;
      font-size: 1.3em;
      font-weight: bold; }
    .widget.navigation ul, .widget.navigation h3 {
      margin: 0 -20px; }
    .widget.navigation li, .widget.navigation h3 {
      padding: 0 15px;
      line-height: 40px;
      border: 1px solid #dedede;
      border-width: 0 0 1px 0; }

.subitem-info {
  margin: 10px 0;
  zoom: 1;
  padding: 15px;
  position: relative;
  left: -15px;
  border: 1px solid #EDEDED;
  background: #ededed;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa,endColorstr=#ededed);
  background: -o-linear-gradient(top, #fafafa, #ededed);
  background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#ededed));
  background: -moz-linear-gradient(top, #fafafa, #ededed); }
  .subitem-info:before, .subitem-info:after {
    content: "\0200";
    display: block;
    height: 0;
    overflow: hidden; }
  .subitem-info:after {
    clear: both; }
  .subitem-info .sub-heading {
    text-transform: uppercase; }
  .subitem-info .details-aside {
    float: right;
    width: 200px;
     }
    .subitem-info .details-aside h3 {
      margin: 0; }
    .subitem-info .details-aside > div {
      margin-bottom: 10px; }
    .subitem-info .details-aside a {
      color: #585959;
      text-decoration: underline; }
      .subitem-info .details-aside a:hover {
        color: #095AA6; }
    .subitem-info .description {
        width:450px;
    }
.subitem-list {
  position: relative;
  /*left: -15px;
  -moz-column-count: 2;
  -moz-column-gap: 5px;
  -webkit-column-count: 2;
  -webkit-column-gap: 5px;
  column-count: 2;
  column-gap: 5px;
  */ }
  .subitem-list > li {
    display: inline-block;
    vertical-align: top;
    margin-bottom: 10px;
    width: 100% }
    .subitem-list > li > a {
      display: block;
      position: relative;
      zoom: 1;
      background: #ededed;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa,endColorstr=#ededed);
      background: -o-linear-gradient(top, #fafafa, #ededed);
      background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#ededed));
      background: -moz-linear-gradient(top, #fafafa, #ededed);
      padding: 15px;
      margin: 0;
      color: #727474;
      border: 1px solid #ededed; }
      .subitem-list > li > a:hover {
        background: #ededed;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#fafafa,endColorstr=#ededed);
        background: -o-linear-gradient(top, #fafafa, #ededed);
        background: -webkit-gradient(linear, left top, left bottom, from(#fafafa), to(#ededed));
        background: -moz-linear-gradient(top, #fafafa, #ededed); }
      .subitem-list > li > a:hover {
        text-decoration: none;
        border: 1px solid #d4d4d4; }
        .subitem-list > li > a:hover:after {
          content: '>>';
          /*@include button;*/
          position: absolute;
          font-size: 2em;
          right: 15px;
          top: 50px; }
      .subitem-list > li > a h2 {
        margin: 0;
        line-height: 2em;
        color: #585959; }
      .subitem-list > li > a .sub-sub-title {
        text-transform: uppercase; }
      .subitem-list > li > a .subitem-date {
        position: absolute;
        right: 15px;
        top: 15px;
        line-height: 36px; }
      .subitem-list > li > a .sub-title {
        display: block;
        font-size: 1.5em; }

.popup .wizard-page, .popup .single-content {
  padding: 20px; }
.popup a:focus {
  outline: 0; }
.popup h3 {
  font-size: 2em;
  color: #1297a1;
  font-weight: bold;
  line-height: 33px;
  margin: 10px 0; }
  .popup h3.success {
    background: url("/Includes/Images/availability-tick.png") no-repeat 0 0;
    padding-left: 40px; }
.popup h4 {
  font-size: 1.5em;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #5f6162; }
.popup input.text {
  padding: 6px 10px;
  color: #5f6162;
  background: #fff;
  border: 1px solid #c0c0c0; }
.popup fieldset {
  border: 0;
  padding: 0; }
  .popup fieldset > span {
    display: block;
    padding: 5px 0;
    width: 100%; }
  .popup fieldset input, .popup fieldset select {
    display: block; }
  .popup fieldset input {
    width: 310px; }
  .popup fieldset select {
    width: 330px;
    margin: 5px 0; }
.popup ul a {
  zoom: 1;
  display: block;
  position: relative;
  line-height: 36px;
  color: #5f6162;
  text-decoration: none;
  border: 1px solid #efefef;
  border-width: 1px 0;
  padding: 0 20px;
  margin: 0 -20px -1px; }
  .popup ul a:hover {
    background-color: #f2f2f2; }
  .generatedcontent .popup ul a:after {
    background: #09939f;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
    background: -o-linear-gradient(top, #52b0b9, #09939f);
    background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
    background: -moz-linear-gradient(top, #52b0b9, #09939f);
    color: #fff;
    border: 0;
    font-weight: bold;
    padding: 0 10px;
    opacity: 0.9;
    position: absolute;
    right: 0;
    margin: 0;
    height: 36px; }
    .generatedcontent .popup ul a:after:hover {
      opacity: 1.0; }
    .generatedcontent .popup ul a:after:active {
      background: #52b0b9;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#09939f,endColorstr=#52b0b9);
      background: -o-linear-gradient(top, #09939f, #52b0b9);
      background: -webkit-gradient(linear, left top, left bottom, from(#09939f), to(#52b0b9));
      background: -moz-linear-gradient(top, #09939f, #52b0b9); }
  .generatedcontent .popup ul a:hover:after {
    content: 'GO >'; }
  .generatedcontent .popup ul a.not-found:after {
    content: 'CONTINUE >'; }
.popup .solo-action {
  display: block;
  padding: 5px 0; }
  .popup .solo-action input.text {
    width: 245px; }
  .popup .solo-action .button {
    position: absolute;
    right: 0;
    padding: 0 !important;
    margin-left: 5px;
    height: 30px;
    width: 75px; }
  .popup .solo-action label.error {
    right: 95px; }
.popup fieldset > span, .popup .solo-action {
  position: relative; }
  .popup fieldset > span label.error, .popup .solo-action label.error {
    position: absolute;
    top: -0.5ex;
    padding: 1px 0;
    line-height: 1em;
    z-index: 1000;
    background: #fff;
    right: 20px; }
.popup .checkboxen {
  width: 700px; }
  .popup .checkboxen > span {
    display: inline-block;
    zoom: 1;
    width: 33%; }
    .ie6 .popup .checkboxen > span, .ie7 .popup .checkboxen > span {
      display: inline; }
.popup .button-list {
  text-align: right;
  padding-top: 10px; }
.popup .button {
  background: #09939f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
  background: -o-linear-gradient(top, #52b0b9, #09939f);
  background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
  background: -moz-linear-gradient(top, #52b0b9, #09939f);
  color: #fff;
  border: 0;
  font-weight: bold;
  padding: 10px;
  opacity: 0.9; }
  .popup .button:hover {
    opacity: 1.0; }
  .popup .button:active {
    background: #52b0b9;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#09939f,endColorstr=#52b0b9);
    background: -o-linear-gradient(top, #09939f, #52b0b9);
    background: -webkit-gradient(linear, left top, left bottom, from(#09939f), to(#52b0b9));
    background: -moz-linear-gradient(top, #09939f, #52b0b9); }
.popup h4 .data {
  font-size: 0.7em;
  text-transform: uppercase; }
.popup .data-row {
  border: 1px solid #efefef;
  border-width: 1px 0;
  padding: 10px 20px;
  margin: 0 -20px -1px; }
  .popup .data-row em {
    font-weight: bold;
    font-style: normal; }
  .popup .data-row.classification {
    font-weight: bold; }
  .popup .data-row .description {
    display: block;
    line-height: 1.4em; }
  .popup .data-row.last {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0; }

.rating {
  display: block;
  font-size: 0px;
  line-height: 0px; /* IE 7 doesn't like using the text-indent: -999px trick - it pushes the entire row off the screen */
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  display: inline-block;
  zoom: 1;
  width: 40px;
  height: 26px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  -opera-border-radius: 5px;
  border-radius: 5px; }
  .ie6 .rating, .ie7 .rating {
    display: inline; }
  .rating.G {
    background: url("/Includes/Images/ratings/ratings-sprite.png") 0 0px no-repeat; }
  .rating.PG {
    background: url("/Includes/Images/ratings/ratings-sprite.png") 0 -78px no-repeat; }
  .rating.M {
    background: url("/Includes/Images/ratings/ratings-sprite.png") 0 -52px no-repeat; }
  .rating.MA15 {
    background: url("/Includes/Images/ratings/ratings-sprite.png") 0 -26px no-repeat; }
  .rating.R18 {
    background: url("/Includes/Images/ratings/ratings-sprite.png") 0 -104px no-repeat; }

.single-content.small {
  width: 350px; }

.js .wizard-pages {
  position: relative;
  overflow: hidden;
  height: 480px;
  width: 390px; }
  .js .wizard-pages .wizard-page {
    width: 350px;
    height: 440px;
    position: absolute;
    top: 0;
    left: 350px;
    display: none; }
  .js .wizard-pages .button-list {
    position: absolute;
    bottom: 20px;
    right: 20px; }
    .js .wizard-pages .button-list.alternative {
      right: auto;
      left: 20px; }

.login-nav > li {
  background-color: #ececec;
  padding: 2px 10px;
  margin: 10px 0;
  width: 445px;
  zoom: 1;
  line-height: 33px;
  width: 465px;
  font-weight: bold;
  font-size: 1.33em;
  text-decoration: none;
  color: #5f6162;
  position: relative; }
  .login-nav > li:before, .login-nav > li:after {
    content: "\0200";
    display: block;
    height: 0;
    overflow: hidden; }
  .login-nav > li:after {
    clear: both; }
  .login-nav > li > strong {
    display: block;
    text-indent: -999em;
    overflow: hidden;
    background-repeat: no-repeat;
    text-align: left;
    direction: ltr;
    border-right: 1px solid #dedede;
    float: left;
    margin-right: 10px; }
    .login-nav > li > strong.grapevine {
      background: url("/Includes/Images/login-icons.png") 0px 0 no-repeat;
      width: 98px;
      height: 33px; }
    .login-nav > li > strong.epayplus {
      background: url("/Includes/Images/login-icons.png") -98px 0 no-repeat;
      width: 98px;
      height: 33px; }
    .login-nav > li > strong.victoria {
      background: url("/Includes/Images/login-icons.png") -196px 0 no-repeat;
      width: 98px;
      height: 33px; }
  .login-nav > li a.login {
    position: absolute;
    top: 0;
    right: 0;
    background: #09939f;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
    background: -o-linear-gradient(top, #52b0b9, #09939f);
    background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
    background: -moz-linear-gradient(top, #52b0b9, #09939f);
    color: #fff;
    border: 0;
    font-weight: bold;
    padding: 0 10px;
    opacity: 0.9;
    line-height: 37px;
    font-size: 0.75em; }
    .login-nav > li a.login:hover {
      opacity: 1.0; }
    .login-nav > li a.login:active {
      background: #52b0b9;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#09939f,endColorstr=#52b0b9);
      background: -o-linear-gradient(top, #09939f, #52b0b9);
      background: -webkit-gradient(linear, left top, left bottom, from(#09939f), to(#52b0b9));
      background: -moz-linear-gradient(top, #09939f, #52b0b9); }
    .login-nav > li a.login:before {
      content: '\25B8\0020'; }
    .login-nav > li a.login:hover {
      text-decoration: none; }

.social-media {
  text-align: right; }
  .social-media > li {
    display: inline-block;
    zoom: 1;
    width: 30px;
    padding-left: 3px; }
    .ie6 .social-media > li, .ie7 .social-media > li {
      display: inline; }
    .social-media > li > a {
      display: block;
      text-indent: -999em;
      overflow: hidden;
      background-repeat: no-repeat;
      text-align: left;
      direction: ltr;
      width: 30px;
      height: 28px; }
  .social-media .twitter a {
    background: url("/Includes/Images/social-media-trans.png") 0px -28px no-repeat; }
  .social-media .facebook a {
    background: url("/Includes/Images/social-media-trans.png") -36px -28px no-repeat; }
  .social-media .rss a {
    background: url("/Includes/Images/social-media-trans.png") -72px -28px no-repeat; }
  .social-media .youtube a {
    background: url("/Includes/Images/social-media-trans.png") -108px -28px no-repeat; }
  .social-media .favourite a {
    background: url("/Includes/Images/social-media-trans.png") -144px -28px no-repeat; }
  .social-media .twitter a:hover {
    background: url("/Includes/Images/social-media-trans.png") 0px 0px no-repeat; }
  .social-media .facebook a:hover {
    background: url("/Includes/Images/social-media-trans.png") -36px 0px no-repeat; }
  .social-media .rss a:hover {
    background: url("/Includes/Images/social-media-trans.png") -72px 0px no-repeat; }
  .social-media .youtube a:hover {
    background: url("/Includes/Images/social-media-trans.png") -110px 0px no-repeat; }
  .social-media .favourite a:hover {
    background: url("/Includes/Images/social-media-trans.png") -144px 0px no-repeat; }
  
#footer .share-actions {
  padding: 12px;
  text-align: right;
  height: 28px; }
#footer .nav, #footer a {
  color: #dbdbdb; }
#footer .nav a:hover {
  background-color: #474849;
  text-decoration: none;
  }
#footer .nav {
  border-color: #858687;
  border-style: solid;
  border-width: 0;
  border-width: 1px 0;
  padding: 20px 0;
  zoom: 1; 
  line-height:normal;
  }
  #footer .nav h3 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.833em; }
  #footer .nav .last h3 {
   margin-bottom : 16px;}
  #footer .nav h4 {
    margin: 16px 0 4px;
    font-size: 1em;
    color: #d4d4d4; }
    #footer .nav li {
    margin: 0 0 4px; }
  #footer .nav:before, #footer .nav:after {
    content: "\0200";
    display: block;
    height: 0;
    overflow: hidden; }
  #footer .nav:after {
    clear: both; }
  #footer .nav > div {
    display: inline;
    float: left;
    min-height: 300px;
    width: 185px;
    border-color: #858687;
    border-style: solid;
    border-width: 0;
    border-right-width: 1px; }
    #footer .nav > div > * {
      padding: 0 20px; }
    #footer .nav > div.last {
      border: 0; }
#footer #bottom { color: #cbcbcb; position: relative; height: 140px; }
#footer #bottom > span { margin: 0 20px; display: block; position: absolute; bottom: 70px; }
#footer #bottom > span.logo { right: 0; text-align: right; margin-bottom: -5px;}
.logo-61 {
  background: url("/Includes/Images/logos/sprite-trans.png") 0px 0 no-repeat; }

.logo-64 {
  background: url("/Includes/Images/logos/sprite-trans.png") -78px 0 no-repeat; }

.logo-8 {
  background: url("/Includes/Images/logos/sprite-trans.png") -312px 0 no-repeat; }

.logo-9 {
  background: url("/Includes/Images/logos/sprite-trans.png") -390px 0 no-repeat; }

.logo-12 {
  background: url("/Includes/Images/logos/sprite-trans.png") -468px 0 no-repeat; }

.logo-11 {
  background: url("/Includes/Images/logos/sprite-trans.png") -546px 0 no-repeat; }

.logo-21 {
  background: url("/Includes/Images/logos/sprite-trans.png") -624px 0 no-repeat; }

.logo-19 {
  background: url("/Includes/Images/logos/sprite-trans.png") -702px 0 no-repeat; }

.logo-49 {
  background: url("/Includes/Images/logos/sprite-trans.png") -780px 0 no-repeat; }

.logo-10 {
  background: url("/Includes/Images/logos/sprite-trans.png") -858px 0 no-repeat; }

.logo-50 {
  background: url("/Includes/Images/logos/sprite-trans.png") -936px 0 no-repeat; }

.logo-52 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1014px 0 no-repeat; }

.logo-53 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1092px 0 no-repeat; }

.logo-24 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1248px 0 no-repeat; }

.logo-23 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1326px 0 no-repeat; }

.logo-7 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1404px 0 no-repeat; }

.logo-16 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1482px 0 no-repeat; }

.logo-17 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1560px 0 no-repeat; }

.logo-18 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1638px 0 no-repeat; }

.logo-15 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1716px 0 no-repeat; }

.logo-73 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1794px 0 no-repeat; }

.logo-71 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1872px 0 no-repeat; }

.logo-1 {
  background: url("/Includes/Images/logos/sprite-trans.png") -1950px 0 no-repeat; }

.logo-36 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2028px 0 no-repeat; }

.logo-70 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2106px 0 no-repeat; }

.logo-34 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2184px 0 no-repeat; }

.logo-48 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2262px 0 no-repeat; }

.logo-39 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2418px 0 no-repeat; }

.logo-13 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2496px 0 no-repeat; }

.logo-14 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2574px 0 no-repeat; }

.logo-20 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2652px 0 no-repeat; }

.logo-75 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2730px 0 no-repeat; }

.logo-60 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2808px 0 no-repeat; }

.logo-22 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2886px 0 no-repeat; }

.logo-74 {
  background: url("/Includes/Images/logos/sprite-trans.png") -2964px 0 no-repeat; }

.logo-67 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3042px 0 no-repeat; }

.logo-72 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3120px 0 no-repeat; }

.logo-6 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3198px 0 no-repeat; }

.logo-25 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3276px 0 no-repeat; }

.logo-62 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3354px 0 no-repeat; }

.logo-3 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3432px 0 no-repeat; }

.logo-40 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3510px 0 no-repeat; }

.logo-66 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3588px 0 no-repeat; }

.logo-5 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3666px 0 no-repeat; }

.logo-51 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3744px 0 no-repeat; }

.logo-59 {
  background: url("/Includes/Images/logos/sprite-trans.png") -3822px 0 no-repeat; }
  
.logo-4 {
background: url("/Includes/Images/logos/sprite-trans.png") -3900px 0 no-repeat; }
  
.logo-2 {
background: url("/Includes/Images/logos/sprite-trans.png") -3978px 0 no-repeat; }

body {
  color: #585959;
  font-family: Helvetica, Arial;
  line-height: 20px; }

a {
  text-decoration: none;
  color: #095AA6; }

a:hover {
  text-decoration: underline; }

div.description ul, div.description ol {
  margin: 1em 0;
  padding: 0 0 0 40px; }
div.description li {
  list-style: disc; }

input:focus, select:focus {
  outline: 1px solid #1297a1; }

input.with-placeholder, input::-webkit-input-placeholder, input:-moz-placeholder {
  color: #a9a9a9 !important; }

input.error, select.error {
  border: 1px solid #ff3333 !important; }

label.error {
  color: #f33;
  display: block; }

a.doc {
  display: inline-block;
  zoom: 1;
  padding-left: 20px;
  line-height: 16px;
  background: url("/Includes/Images/filetypes/doc.gif") 0 0 no-repeat; }
  .ie6 a.doc, .ie7 a.doc {
    display: inline; }

a.xls {
  display: inline-block;
  zoom: 1;
  padding-left: 20px;
  line-height: 16px;
  background: url("/Includes/Images/filetypes/xls.gif") 0 0 no-repeat; }
  .ie6 a.xls, .ie7 a.xls {
    display: inline; }

a.pdf {
  display: inline-block;
  zoom: 1;
  padding-left: 20px;
  line-height: 16px;
  background: url("/Includes/Images/filetypes/pdf.gif") 0 0 no-repeat; }
  .ie6 a.pdf, .ie7 a.pdf {
    display: inline; }

.get-transact {
  position: absolute;
  position: fixed;
  right: 0px;
  z-index: 10;
  background: url("/Includes/Images/get-transact.png") 0 0;
  display: block;
  text-indent: -999em;
  overflow: hidden;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
  width: 38px;
  height: 135px;
    /*
    .csstransforms & {
        @include vertical-gradient(#3280bd, #106bb3);
        color: #fff;
        font-weight: bold;
        padding: 10px;

        &:hover {
            @include vertical-gradient(#3280bd, #106bb3);
        }

        @include border-top-radius(10px);

        @include transform-origin(right bottom);
        @include rotate(-90deg);
    }
    */ }
  .get-transact:hover {
    opacity: 0.9; }

/* In-Page forms */
.scfForm {
  /** Field types **/ }
  .scfForm .scfIntroBorder p, .scfForm .scfFooterBorder p {
    line-height: 1.1em; }
  .scfForm h1.scfTitleBorder {
    color: inherit;
    font-size: 1.2em; }
  .scfForm .scfSectionContent > div {
    position: relative;
    padding-top: 5px; }
  .scfForm .scfRequired, .scfValidatorRequired {
    position: absolute;
    left: -8px;
    top: 10px;
    font-size: 1em;
    line-height: 1ex;
    vertical-align: baseline; }
  .scfForm span + input {
    margin-left: 5px; }
  .scfForm fieldset, .scfForm .scfSubmitButtonBorder, .scfForm .scfFooterBorder {
    position: relative;
    background-color: #f0f0f0;
    margin: 0px;
    padding: 15px;
    margin-left: -15px;
    border: 0;
    padding-left: 15px; }
    .scfForm fieldset > legend, .scfForm .scfSubmitButtonBorder > legend, .scfForm .scfFooterBorder > legend {
      margin: 0 -15px;
      padding: 10px 15px;
      line-height: 2em;
      font-size: 1.2em;
      position: relative;
      width: 100%;
      font-weight: bold;
      background-color: #f0f0f0; }
  .scfForm fieldset {
    padding-top: 0; }
  .scfForm input[type=text], .scfForm input[type=email], .scfForm input[type=number], .scfForm input[type=url], .scfForm textarea {
    border: 1px solid silver;
    padding: 6px 10px;
    color: #5f6162;
    width: 300px; }
  .scfForm select {
    width: 322px;
    color: #5f6162;}
  .scfForm .scfRadioButtonList td {
    padding-right: 10px; }
  .scfForm .scfRadioButtonList label {
    margin-left: 2px; }
  .scfForm .scfCheckbox {
    margin: 0;
    position: relative; }
    .scfForm .scfCheckbox label {
      padding-left: 2px; }
  .scfForm ul.channelList {
    margin: 5px 0 5px 17px;
    background-color: #dedede; }
    .scfForm ul.channelList > li {
      font-weight: bold;
      padding: 0 5px;
      vertical-align: bottom;
      background: none; }

.scfSubmitButtonBorder > input {
  background: #09939f;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
  background: -o-linear-gradient(top, #52b0b9, #09939f);
  background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
  background: -moz-linear-gradient(top, #52b0b9, #09939f);
  color: #fff;
  border: 0;
  font-weight: bold;
  padding: 10px;
  opacity: 0.9;
  text-transform: uppercase; }
  .scfSubmitButtonBorder > input:hover {
    opacity: 1.0; }
  .scfSubmitButtonBorder > input:active {
    background: #52b0b9;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#09939f,endColorstr=#52b0b9);
    background: -o-linear-gradient(top, #09939f, #52b0b9);
    background: -webkit-gradient(linear, left top, left bottom, from(#09939f), to(#52b0b9));
    background: -moz-linear-gradient(top, #09939f, #52b0b9); }

/* Requested by Chris */
.check-criteria {
  margin: 0 0 10px 0; }

.more-info
{
    margin: 5px 0 5px -10px;
    width:100%;
}
.more-info span 
{
    right:0;
    display:inline-block;
    margin:0;
    height:30px;
    padding: 5px 0 0 15px;
    background: url('/Includes/Images/up-arrow.png') no-repeat 0px 11px;
}
.down h2 > span 
{
    background: url('/Includes/Images/down-arrow.png') no-repeat 0px 11px;
}
.more-info > h2
{
    font-size:100%;
    color:White;
    font-weight:bolder;
    text-align:right;
    height:30px;
    background: #09939f;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#52b0b9,endColorstr=#09939f);
    background: -o-linear-gradient(top, #52b0b9, #09939f);
    background: -webkit-gradient(linear, left top, left bottom, from(#52b0b9), to(#09939f));
    background: -moz-linear-gradient(top, #52b0b9, #09939f);
    margin: 1px 0 0 0;
    padding-right: 5px;
    border: 0;
    cursor:pointer;
}
.more-info > div 
{
    margin: 0;
    background-color: #DBF8F7;
    display:inline-block;
    padding: 10px;
	width:97.15%;
}

/* product specifications tables */
#tabs .prod-specs table{
margin-left: -8px;
}
.prod-specs table {
border-bottom: 1px solid #BFBFBF;
color: #000000;
background-color:#fdfdfd;
margin: 0 1px;
width: 700px;
border: 0 none;
border-collapse: collapse;
border-spacing: 0;
padding: 0;
}
.prod-specs th {
border-bottom: 1px solid #BFBFBF;
border-top: 1px solid #BFBFBF;
vertical-align:top;
padding: 15px 18px
}
.prod-specs th.first {
border-left: 1px solid #BFBFBF;
width: 200px;
}
.prod-specs th.second {
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs th.third {
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs th.fourth {
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs th.fifth {
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs th.last {
border-left: 1px solid #BFBFBF;
border-right: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs td.second {
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs td.third {
border-bottom: 1px solid #BFBFBF;
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs td.fourth {
border-bottom: 1px solid #BFBFBF;
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs td.fifth {
border-bottom: 1px solid #BFBFBF;
border-left: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs td.last {
border-bottom: 1px solid #BFBFBF;
border-left: 1px solid #BFBFBF;
border-right: 1px solid #BFBFBF;
width: 100px;
}
.prod-specs td {
border-bottom: 1px solid #BFBFBF;
padding: 15px 18px;
vertical-align:top;
}
.prod-specs td ul, ol {
list-style:none outside none;
margin: 0;
padding:0;
}

/*#movie-rentals { clear:both; }
#movie-rentals li { float:left; margin: 0px 9px 0px 0px; line-height: 0px; }
#movie-rentals .titlePane { line-height: 126px; height: 126px; width: 223px; background-color: #008DCF; text-align: center; font-size: large; font-weight: bold; color: White; margin: 0px; }
#movie-rentals li .rental-details {display:none; }
#movie-rentals li:hover .rental-details { position: absolute; left: -4px; top: -252px; width: 420px; height: 230px; z-index: 10; color: #2E2E2E; padding: 20px 30px 20px 20px; display:block; }
#movie-rentals li:hover .rental-details { display: inline-block; float: left; position: absolute; width: 400px; border: 1px solid #008DCF; padding:3px; background-color:white; line-height: 20px; }


.slideShow { float: left; clear: both; margin: 10px -10px; z-index: 1; }
.sliderSection { width: 932px; float: left; }*/



#channels { clear:both; }
#channels li { float:left; border: 2px solid #E7E7E7; margin: 3px 0px 3px 20px; position: relative; }
#channels li img { margin: 0px 2px; }

#channels li .tooltip 
{
    font-size: small;
    line-height: 15px !important;
}

#channels li .tooltip 
{
    left: -35px;
}

#channels ul
{
    margin-left: -20px;
}

#channels li .tooltip .title
{
    line-height: 25px;
    height: 25px;
}

#channels li .tooltip .description
{
    height: 85px;
}

#channels li .tooltip .keyprograms
{
    height: 75px;
}

.tooltip {
    background: url("/Includes/Images/tooltip_logo_pos1_bg.png") no-repeat scroll left top transparent;
    color: #2E2E2E;
    display: none;
    height: 230px;
    left: -4px;
    padding: 20px 30px 20px 20px;
    position: absolute;
    top: -252px;
    width: 420px;
    z-index: 100;
}

.carousel .group .movie {
    float: left;
    margin-right: 9px;
    position: relative;
}

.carousel .group {
    float: left;
    width: 932px;
    height: 192px;
}

.carousel {
    clear: both;
    float: left;
    margin: 10px 0px;
    z-index: 99;
    overflow: visible !important;
    height: 192px;
}

.tooltip .title {
    background: none repeat scroll 0 0 transparent;
    border: medium none;
    bottom: 0;
    color: #2E2E2E;
    font-size: 16px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    padding: 0;
    position: relative;
}

.tooltip .description {
    font-size: 12px;
    height: 120px;
    line-height: 17px;
    overflow: hidden;
}

.tooltip .movierating {
    border: 2px solid #DADADE;
    bottom: 55px;
    position: absolute;
    right: 30px;
    text-align: center;
    width: 25px;
}

.MovieRentalNav a {
    display: block;
    float: left;
    width: 14px;
    height: 10px;
    background: url("/Includes/Images/carousel_nav.png") left top no-repeat;
    overflow: hidden;
    text-indent: -1000em;
    line-height: 1000em;
}

.MovieRentalNav a.activeSlide {
    background-position: 0 -20px;
}

.MovieRentalNav {
    margin: 10px auto;
    width: 100px;
    clear: both;
}

.movie-rentals 
{
    margin: 0px 0px 10px 0px;    
}

/* main banner */
.fetchtv_banner {
    width:898px;
    height:680px;
    float:left;
    border:1px solid rgb(230,230,230);
    margin: 20px 0pt;
    padding: 0pt 20px;
    background:url("~/media/Images/tv/fetchtv/fetchtv-banner.jpg") no-repeat scroll left bottom transparent;
}

.fetchtv_banner p {
    width: 540px;
    margin-right:50px;
    /*float:left;*/
    font-size:14px;
}

.info-page .content .fetchtv_banner h1 {
    background-color: #0490cd;
    color: #ffffff;
    font-size: 32px;
    padding:25px 0 22px 22px;
    margin: 20px 0 0 -20px;
    width: 520px;
}

/* price */
.fetchtv_price {
    height: 493px;
    width:898px;
    float:left;
    border:1px solid rgb(230,230,230);
    border-bottom: 0px;
    /* margin: 20px 0pt; */
    padding: 0pt 20px;
    background:#f1f1f2;
    position:relative;
}

.fetchtv_price > p {
    width: 700px;
    margin-right:50px;
    /*float:left;*/
    font-size:14px;
}

.fetchtv_price h2 {
    color: #0490cd;
    font-size: 26px;
    padding:16px 0 0 20px;
    margin: 10px 0 0 -20px;
}

.fetchtv_price > img {
    margin: 0 0 0 40px;
    left:10px;
    position: absolute;
    bottom:0px;
}

.fetchtv_price_box1 {
    width:200px;
    height:282px;
    position:absolute;
    bottom:83px;
    left: 630px;
}

.fetchtv_inclusions {
    clear:both;
    background-color:#008dcf;
    color:#ffffff;
    padding:20px 20px 10px 20px;
    font-size:14px;
}

.fetchtv_inclusions ul {
    padding-left:70px;
}

.fetchtv_inclusions li {
    list-style: disc outside none;
    font-size:16px;
}

.fetchtv_inclusions .fetchtv_logo {
    position:absolute;
    left: 670px;
}

.fetchtv_inclusions p {
    font-size:12px;
    margin:inherit 20px 0px inherit;
    line-height:1.2em;
    color:rgb(230,230,230);
}

.fetchtv_channels {
    width:880px;
    float:left;
    border:10px solid #008dcf;
    margin: 0px 0px;
    padding: 0pt 20px;
    background-color:#ffffff;
}

.fetchtv_channels p {
    width: 700px;
    margin-right:50px;
    /*float:left;*/
    font-size:14px;
}

.fetchtv_channels h2 {
    background-color: #e7e7e8;
    color: #0087cd;
    font-size: 20px;
    padding:10px 0 10px 10px;
    margin: 20px 0 12px 0px;
    width: 870px;
}

/* button */
.buttonLink  {
    position:absolute;
    background:none;
    border:none;
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow:none;
    width: 240px;
    bottom:390px;
    left: 630px;
}

.info-page .content .buttonLink p a{
    border:none;
    outline:none;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    color: #ffffff;
    display: block;
    cursor:pointer;
    margin: 0px auto;
    clear:both;
    padding: 15px 20px;
    text-shadow: 0 1px 1px #777;
    text-decoration: none;
    font-weight:bold;
    font-family:"Century Gothic", Helvetica, sans-serif;
    font-size:22px;
    -moz-box-shadow:0px 0px 3px #aaa;
    -webkit-box-shadow:0px 0px 3px #aaa;
    box-shadow:0px 0px 3px #aaa;
    /*background:#09a4b1; */
    background:#e63d28;
}

.info-page .content  .buttonLink p a:hover {
    /* background:#56bfc9; */
    background:#e95839;
    color:#ffffff;
}

/* recorder */
.fetchtv_recorder {
    width:898px;
    float:left;
    border:1px solid rgb(230,230,230);
    margin: 20px 0pt;
    padding: 0pt 20px;
    background-color:#f1f1f2;
}

.fetchtv_recorder p {
    width: 700px;
    margin-right:50px;
    /*float:left;*/
    font-size:14px;
}

.fetchtv_recorder h2 {
    background-color: #0490cd;
    color: #ffffff;
    font-size: 26px;
    padding:16px 0 16px 20px;
    margin: 20px 0 0 -20px;
    width: 400px;
}

/* mobile app */
.fetchtv_mobile_app {
    width:898px;
    float:left;
    border:1px solid rgb(230,230,230);
    margin: 20px 0pt;
    padding: 0pt 20px;
    background:url("~/media/Images/tv/fetchtv/mobile.jpg") no-repeat scroll right top transparent;
}

.fetchtv_mobile_app p {
    width: 540px;
    margin-right:50px;
    /*float:left;*/
    font-size:14px;
}

.fetchtv_mobile_app h2 {
    color: #0490cd;
    font-size: 26px;
    padding:16px 0 0 20px;
    margin: 10px 0 0 -20px;
    width: 500px;
}

.fetchtv_mobile_app p a {
    text-decoration:underline;
    font-weight:bold;
}

/* new releases */
.fetchtv_new_releases {
    width:918px;
    float:left;
    border:1px solid rgb(230,230,230);
    margin: 10px 0px;
    padding: 5px 20px;
}

.fetchtv_new_releases p {
    width: 700px;
    margin-right:50px;
    /*float:left;*/
    font-size:14px;
}

.fetchtv_new_releases h2 {
    background-color: #0490cd;
    color: #ffffff;
    font-size: 26px;
    padding:16px 0 16px 20px;
    margin: 10px 0 0 -20px;
    width: 560px;
}

/* setanta */
.fetchtv_setanta {
    width:898px;
    float:left;
    border:1px solid rgb(230,230,230);
    margin: 20px 0pt;
    padding: 0pt 20px;
    background:url("~/media/Images/tv/fetchtv/fetchtv-setanta-sports.jpg") no-repeat scroll right bottom transparent;
}

.fetchtv_setanta p {
    width: 540px;
    margin-right:50px;
    /*float:left;*/
    font-size:14px;
}

.fetchtv_setanta h2 {
    color: #0490cd;
    font-size: 26px;
    padding:16px 0 0 20px;
    margin: 10px 0 0 -20px;
    width: 500px;
}
