/*screen.css*/

/*  YUI Core CSS */
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
*/
/* Menu & MenuBar styles */

.yuimenubar {

    visibility: visible;
    position: static;

}

.yuimenu .yuimenu,
.yuimenubar .yuimenu {

    visibility: hidden;
    position: absolute;
    top: -10000px;
    left: -10000px;

}

.yuimenubar li, 
.yuimenu li {

    list-style-type: none;    

}

.yuimenubar ul, 
.yuimenu ul,
.yuimenubar li, 
.yuimenu li,
.yuimenu h6,
.yuimenubar h6 { 

    margin: 0;
    padding: 0;

}

.yuimenuitemlabel,
.yuimenubaritemlabel {

    text-align: left;
    white-space: nowrap;

}


/* 
    The following style rule trigger the "hasLayout" property in 
    IE (http://msdn2.microsoft.com/en-us/library/ms533776.aspx) for a
    MenuBar instance's <ul> element, allowing both to clear their floated 
    child <li> elements.
*/

.yuimenubar ul {

    *zoom: 1;

}


/* 
    Remove the "hasLayout" trigger for submenus of MenuBar instances as it 
    is unnecessary. 
*/

.yuimenubar .yuimenu ul {

    *zoom: normal;

}

/*
    The following style rule allows a MenuBar instance's <ul> element to clear
    its floated <li> elements in Firefox, Safari and and Opera.
*/

.yuimenubar>.bd>ul:after {

    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
    line-height: 0;

}

.yuimenubaritem {

    float: left;

}

.yuimenubaritemlabel,
.yuimenuitemlabel {

    display: block;

}

.yuimenuitemlabel .helptext {

    font-style: normal;
    display: block;
    
    /*
        The value for the left margin controls how much the help text is
        offset from the text of the menu item.  This value will need to 
        be customized depending on the longest text label of a menu item.
    */
    
    margin: -1em 0 0 10em;
    
}

/*
    PLEASE NOTE: The <div> element used for a menu's shadow is appended 
    to its root element via JavaScript once it has been rendered.  The 
    code that creates the shadow lives in the menu's public "onRender" 
    event handler that is a prototype method of YAHOO.widget.Menu.  
    Implementers wishing to remove a menu's shadow or add any other markup
    required for a given skin for menu should override the "onRender" method.
*/

.yui-menu-shadow {

    position: absolute;
    visibility: hidden;
    z-index: -1;

}

.yui-menu-shadow-visible {

    top: 2px;
    right: -3px;
    left: -3px;
    bottom: -3px;
    visibility: visible;

}


/*

There are two known issues with YAHOO.widget.Overlay (the superclass class of 
Menu) that manifest in Gecko-based browsers on Mac OS X:

    1) Elements with scrollbars will poke through Overlay instances floating 
       above them.
    
    2) An Overlay's scrollbars and the scrollbars of its child nodes remain  
       visible when the Overlay is hidden.

To fix these bugs in Menu (a subclass of YAHOO.widget.Overlay):

    1) The "overflow" property of a Menu instance's shadow element and child 
       nodes is toggled between "hidden" and "auto" (through the application  
       and removal of the "hide-scrollbars" and "show-scrollbars" CSS classes)
       as its "visibility" configuration property is toggled between 
       "false" and "true."
    
    2) The "display" property of <select> elements that are child nodes of the 
       Menu instance's root element is set to "none" when it is hidden.

PLEASE NOTE:  
  
    1) The "hide-scrollbars" and "show-scrollbars" CSS classes classes are 
       applied only for Gecko on Mac OS X and are added/removed to/from the 
       Overlay's root HTML element (DIV) via the "hideMacGeckoScrollbars" and 
       "showMacGeckoScrollbars" methods of YAHOO.widget.Overlay.
    
    2) There may be instances where the CSS for a web page or application 
       contains style rules whose specificity override the rules implemented by 
       the Menu CSS files to fix this bug.  In such cases, is necessary to 
       leverage the provided "hide-scrollbars" and "show-scrollbars" classes to 
       write custom style rules to guard against this bug.

** For more information on this issue, see:

   + https://bugzilla.mozilla.org/show_bug.cgi?id=187435
   + SourceForge bug #1723530

*/

.hide-scrollbars * {

	overflow: hidden;

}

.hide-scrollbars select {

	display: none;

}


/*

The following style rule (".yuimenu.show-scrollbars") overrides the 
".show-scrollbars" rule defined in container-core.css which sets the 
"overflow" property of a YAHOO.widget.Overlay instance's root HTML element to 
"auto" when it is visible.  Without this override, a Menu would have scrollbars
when one of its submenus is visible.

*/

.yuimenu.show-scrollbars,
.yuimenubar.show-scrollbars {

	overflow: visible; 

}

.yuimenu.hide-scrollbars .yui-menu-shadow,
.yuimenubar.hide-scrollbars .yui-menu-shadow {

    overflow: hidden;

}

.yuimenu.show-scrollbars .yui-menu-shadow,
.yuimenubar.show-scrollbars .yui-menu-shadow {

    overflow: auto;

}
/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
*/
/* default space between tabs */
.yui-navset .yui-nav li,
.yui-navset .yui-navset-top .yui-nav li,
.yui-navset .yui-navset-bottom .yui-nav li {
    margin:0 0.5em 0 0; /* horizontal tabs */
}
.yui-navset-left .yui-nav li,
.yui-navset-right .yui-nav li {
    margin:0 0 0.5em; /* vertical tabs */
}

/* default width for side tabs */
.yui-navset .yui-navset-left .yui-nav,
.yui-navset .yui-navset-right .yui-nav,
.yui-navset-left .yui-nav,
.yui-navset-right .yui-nav { width:6em; }

.yui-navset-top .yui-nav,
.yui-navset-bottom .yui-nav {
    width:auto;
}
.yui-navset .yui-navset-left,
.yui-navset-left { padding:0 0 0 6em; } /* map to nav width */
.yui-navset-right { padding:0 6em 0 0; } /* ditto */

.yui-navset-top,
.yui-navset-bottom {
    padding:auto;
}
/* core */

.yui-nav,
.yui-nav li {
    margin:0;
    padding:0;
    list-style:none;
}
.yui-navset li em { font-style:normal; }

.yui-navset {
    position:relative; /* contain absolute positioned tabs (left/right) */
    zoom:1;
}

.yui-navset .yui-content { zoom:1; }

.yui-navset .yui-nav li,
.yui-navset .yui-navset-top .yui-nav li, /* in case nested */
.yui-navset .yui-navset-bottom .yui-nav li {
    display:inline-block;
    display:-moz-inline-stack;
    *display:inline; /* IE */
    vertical-align:bottom; /* safari: for overlap */
    cursor:pointer; /* gecko: due to -moz-inline-stack on anchor */
    zoom:1; /* IE: kill space between horizontal tabs */
}

.yui-navset-left .yui-nav li,
.yui-navset-right .yui-nav li {
    display:block;
}

.yui-navset .yui-nav a { position:relative; } /* IE: to allow overlap */

.yui-navset .yui-nav li a,
.yui-navset-top .yui-nav li a,
.yui-navset-bottom .yui-nav li a {
    display:block;
    display:inline-block;
    vertical-align:bottom; /* safari: for overlap */
    zoom:1;
}

.yui-navset-left .yui-nav li a,
.yui-navset-right .yui-nav li a {
    display:block;
}

.yui-navset-bottom .yui-nav li a {
    vertical-align:text-top; /* for inline overlap (reverse for Opera border bug) */
}

.yui-navset .yui-nav li a em,
.yui-navset-top .yui-nav li a em,
.yui-navset-bottom .yui-nav li a em { display:block; }

/* position left and right oriented tabs */
.yui-navset .yui-navset-left .yui-nav,
.yui-navset .yui-navset-right .yui-nav,
.yui-navset-left .yui-nav,
.yui-navset-right .yui-nav {
   position:absolute;
   z-index:1; 
}

.yui-navset-top .yui-nav,
.yui-navset-bottom .yui-nav {
    position:static;
}
.yui-navset .yui-navset-left .yui-nav,
.yui-navset-left .yui-nav { left:0; right:auto; }

.yui-navset .yui-navset-right .yui-nav,
.yui-navset-right .yui-nav { right:0; left:auto; }

/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
yui-2.5.2-reset-fonts-grids.css
*/
html{color:#000;background:#FFF;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var
{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q:before,q:after{content:'';}
abbr,acronym {border:0;font-variant:normal;}
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;
}input,textarea,select{*font-size:100%;}
legend{color:#000;}
body {font:13px/1.231 verdana,arial,helvetica,clean,sans-serif;*font-size:small;*font:x-small;}
table {font-size:inherit;font:100%;}
pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%;}
body{text-align:center;}#ft{clear:both;}
#doc,#doc2,#doc3,#doc4,.yui-t1,.yui-t2,.yui-t3,.yui-t4,.yui-t5,.yui-t6,.yui-t7{margin:auto;text-align:left;width:57.69em;*width:56.25em;min-width:750px;}
#doc2{width:73.076em;*width:71.25em;}
#doc3{margin:auto 10px;width:auto;}
#doc4{width:74.923em;*width:73.05em;}
.yui-b{position:relative;}
.yui-b{_position:static;}
#yui-main .yui-b{position:static;}
#yui-main{width:100%;}
.yui-t1 #yui-main,.yui-t2 #yui-main,.yui-t3 #yui-main{float:right;margin-left:-25em;}
.yui-t4 #yui-main,.yui-t5 #yui-main,.yui-t6 #yui-main{float:left;margin-right:-25em;}
.yui-t1 .yui-b{float:left;width:12.30769em;*width:12.00em;}
.yui-t1 #yui-main .yui-b{margin-left:10.30769em;*margin-left:10.05em;}
.yui-t2 .yui-b{float:left;width:13.8461em;*width:13.50em;}
.yui-t2 #yui-main .yui-b{margin-left:14.8461em;*margin-left:14.55em;}
.yui-t3 .yui-b{float:left;width:23.0769em;*width:22.50em;}
.yui-t3 #yui-main .yui-b{margin-left:24.0769em;*margin-left:23.62em;}
.yui-t4 .yui-b{float:right;width:13.8456em;*width:13.50em;}
.yui-t4 #yui-main .yui-b{margin-right:14.8456em;*margin-right:14.55em;}
.yui-t5 .yui-b{float:right;width:18.4615em;*width:18.00em;}
.yui-t5 #yui-main .yui-b{margin-right:19.4615em;*margin-right:19.125em;}
.yui-t6 .yui-b{float:right;width:20.0769em;*width:20.20em;}
.yui-t6 #yui-main .yui-b{margin-right:24.0769em;*margin-right:23.62em;}
.yui-t7 #yui-main .yui-b{display:block;margin:0 0 1em 0;}
#yui-main .yui-b{float:none;width:auto;}
.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{float:left;}
.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf,.yui-gc .yui-u,.yui-gd .yui-g,.yui-g .yui-gc .yui-u,.yui-ge .yui-u,.yui-ge .yui-g,.yui-gf .yui-g,.yui-gf .yui-u{float:right;}
.yui-g div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first,.yui-ge div.first,.yui-gf div.first,.yui-g .yui-gc div.first,.yui-g .yui-ge div.first,.yui-gc div.first div.first{float:left;}
.yui-g .yui-u,.yui-g .yui-g,.yui-g .yui-gb,.yui-g .yui-gc,.yui-g .yui-gd,.yui-g .yui-ge,.yui-g .yui-gf{width:50%;} 
.yui-gb .yui-u,.yui-g .yui-gb .yui-u,.yui-gb .yui-g,.yui-gb .yui-gb,.yui-gb .yui-gc,.yui-gb .yui-gd,.yui-gb .yui-ge,.yui-gb .yui-gf,.yui-gc .yui-u,.yui-gc .yui-g,.yui-gd .yui-u{width:32%;margin-left:1.99%;}
.yui-gb .yui-u{*margin-left:1.9%;*width:31.9%;}
.yui-gc div.first,.yui-gd .yui-u{width:66%;}
.yui-gd div.first{width:32%;}
.yui-ge div.first,.yui-gf .yui-u{width:74.2%;}
.yui-ge .yui-u,.yui-gf div.first{width:24%;}
.yui-g .yui-gb div.first,.yui-gb div.first,.yui-gc div.first,.yui-gd div.first{margin-left:0;}
.yui-g .yui-g .yui-u,.yui-gb .yui-g .yui-u,.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u,.yui-ge .yui-g .yui-u,.yui-gf .yui-g .yui-u{width:49%;*width:48.1%;*margin-left:0;}
.yui-g .yui-gb div.first,.yui-gb .yui-gb div.first{*margin-right:0;*width:32%;_width:31.7%;}
.yui-g .yui-gc div.first,.yui-gd .yui-g{width:66%;}
.yui-gb .yui-g div.first{*margin-right:4%;_margin-right:1.3%;}
.yui-gb .yui-gc div.first,.yui-gb .yui-gd div.first{*margin-right:0;}
.yui-gb .yui-gb .yui-u,.yui-gb .yui-gc .yui-u{*margin-left:1.8%;_margin-left:4%;}
.yui-g .yui-gb .yui-u{_margin-left:1.0%;}
.yui-gb .yui-gd .yui-u{*width:66%;_width:61.2%;}
.yui-gb .yui-gd div.first{*width:31%;_width:29.5%;}
.yui-g .yui-gc .yui-u,.yui-gb .yui-gc .yui-u{width:32%;_float:right;margin-right:0;_margin-left:0;}
.yui-gb .yui-gc div.first{width:66%;*float:left;*margin-left:0;}
.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf .yui-u{margin:0;}
.yui-gb .yui-gb .yui-u{_margin-left:.7%;}
.yui-gb .yui-g div.first,.yui-gb .yui-gb div.first{*margin-left:0;}
.yui-gc .yui-g .yui-u,.yui-gd .yui-g .yui-u{*width:48.1%;*margin-left:0;}
s .yui-gb .yui-gd div.first{width:32%;}
.yui-g .yui-gd div.first{_width:29.9%;}
.yui-ge .yui-g{width:24%;}
.yui-gf .yui-g{width:74.2%;}
.yui-gb .yui-ge div.yui-u,.yui-gb .yui-gf div.yui-u{float:right;}
.yui-gb .yui-ge div.first,.yui-gb .yui-gf div.first{float:left;}
.yui-gb .yui-ge .yui-u,.yui-gb .yui-gf div.first{*width:24%;_width:20%;}
.yui-gb .yui-ge div.first,.yui-gb .yui-gf .yui-u{*width:73.5%;_width:65.5%;}
.yui-ge div.first .yui-gd .yui-u{width:65%;}
.yui-ge div.first .yui-gd div.first{width:32%;}
#bd:after,.yui-g:after,.yui-gb:after,.yui-gc:after,.yui-gd:after,.yui-ge:after,.yui-gf:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
#bd,.yui-g,.yui-gb,.yui-gc,.yui-gd,.yui-ge,.yui-gf{zoom:1;}

/*
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
*/
h1{font-size:138.5%;}h2{font-size:123.1%;}h3{font-size:108%;}h1,h2,h3{margin:1em 0;}h1,h2,h3,h4,h5,h6,strong{font-weight:bold;}abbr,acronym{border-bottom:1px dotted #000;cursor:help;} em{font-style:italic;}blockquote,ul,ol,dl{margin:1em;}ol,ul,dl{margin-left:2em;}ol li{list-style:decimal outside;}ul li{list-style:disc outside;}dl dd{margin-left:1em;}th,td{border:1px solid #000;padding:.5em;}th{font-weight:bold;text-align:center;}caption{margin-bottom:.5em;text-align:center;}p,fieldset,table,pre{margin-bottom:1em;}

input[type=text],input[type=password],textarea{width:auto;}


/* basic */
body {
  font-size: 12px;
}

div#doc2 {
  padding-left: 1em;
  padding-right: 1em;
}

h1, .h1 {
  color:#E47911;
  font-size:170%;
  font-weight:normal;
  margin:1.5em 0 1em 0;
  padding:0;
}
h1.title {
  font-size: 21px;
  font-weight: normal;
  margin: 0 0 13px 0;
  color: black;
  padding: 0px 0px 15px 0px;
}

h1.blue {
  color: #004b91;
}

h1.green {
  color: #22BA91;
}

h1.hero {
  border: 1.5px solid #ccc;
  padding: 1em;
}

h2, .h2 {
  color:#146EB4;
  font-size:145%;
  font-weight:normal;
  margin:1em 0 1em 0;
  padding:0;
}

h2.orange {
  color:#E47911;
}

h3, .h3{
  font-size:120%;
  font-weight:bold;
  margin:1em 0 0.1em;
}

h4, .h4 {
  color:#666666;
  font-size:105%;
  font-weight:bold;
  margin:1em 0 0.5em;
}
p {
  margin-bottom: 1em;
}

a {
  color: #004b91; 
  text-decoration: none;
}
a:visited {
  color: #996633;
}
a:hover {
  color: #e47911;
  text-decoration: underline;
}

hr {
  border: 0;
  height:1px; 
  margin:0px; 
  color:#CCC;
  background-color: #ccc; 
  clear:both;
}

ul {
  margin-left: 0;
  padding-left: 30px;
  list-style: none;
  list-style-type: none;
}

ul li {
  padding-left: 13px;
  list-style-type: none;
  background-image: url(//awsmedia.s3.amazonaws.com/orange_bullet.png);
  background-repeat: no-repeat;
  background-position: 0 .5em;
  margin-bottom: 0.5em;
}

.yui-navset > ul li {
  background-image: none;
  padding-left: 0px;
}

.yui-skin-sam .yui-navset .yui-nav, .yui-skin-sam .yui-navset .yui-navset-top .yui-nav {
  border-color: #DDDDDD;
  border-width: 0 0 1px;
}

table {
  width: 100%;
  border: 0;
  margin: 0;
  padding: 0; 
}

td {
  border: 0;
  vertical-align: top;
}

th {
  border: none;
  text-align: right;
}

pre {
  background-color:#EFF7FF;
  border:1px dashed #333333;
  font-family:"Courier New",Courier,mono;
  font-size:12px;
  overflow:auto;
  padding:15px 10px;
  width:550px;
}
/* /basic */
/* lightbox */
/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.css
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */
#jquery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 500px;
}
#jquery-lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  text-align: center;
  line-height: 0;
}
#jquery-lightbox a img { border: none; }
#lightbox-container-image-box {
  position: relative;
  background-color: #fff;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}
#lightbox-container-image { padding: 10px; }
#lightbox-loading {
  position: absolute;
  top: 40%;
  left: 0%;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}
#lightbox-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
#lightbox-container-image-box > #lightbox-nav { left: 0; }
#lightbox-nav a { outline: none;}
#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
  width: 49%;
  height: 100%;
  zoom: 1;
  display: block;
}
#lightbox-nav-btnPrev { 
  left: 0; 
  float: left;
}
#lightbox-nav-btnNext { 
  right: 0; 
  float: right;
}
#lightbox-container-image-data-box {
  font: 10px Verdana, Helvetica, sans-serif;
  background-color: #fff;
  margin: 0 auto;
  line-height: 1.4em;
  overflow: auto;
  width: 100%;
  padding: 0 10px 0;
}
#lightbox-container-image-data {
  padding: 0 10px; 
  color: #666; 
}
#lightbox-container-image-data #lightbox-image-details { 
  width: 70%; 
  float: left; 
  text-align: left; 
}  
#lightbox-image-details-caption { font-weight: bold; }
#lightbox-image-details-currentNumber {
  display: block; 
  clear: left; 
  padding-bottom: 1.0em;  
}      
#lightbox-secNav-btnClose {
  width: 66px; 
  float: right;
  padding-bottom: 0.7em;  
}
/* /lightbox */

#bd {
  float: left;
  width: 100%;
}

#doc4 {
  width: 950px;
}

/* make IE work with home page columns */
.yui-g .yui-u, .yui-g .yui-g, .yui-g .yui-gb, .yui-g .yui-gc, .yui-g .yui-gd, .yui-g .yui-ge, .yui-g .yui-gf {
  width: 48%;
}

/* force the width to 210px rather than 180 */
.yui-t2 .yui-b {
  width:16.1538em;
}

/* Make the gutter between the two be 35px */
.yui-t2 #yui-main .yui-b {
  margin-left:18.8461em;
}

.yui-t6 .yui-b {
  float:right;
  width:20em;
}

.txt95 {
  font-size: 95%;
}

.txt90{
  font-size: 90%;
}

.txt85{
  font-size: 85%;
}
.txt80{
  font-size: 80%;
}
.lh17{
  line-height:1.7em;
}
.lh14{
  line-height:1.4em;
}


.txt110{
  font-size: 110%;
}
.txt120{
  font-size: 120%;
}
.txt145{
  font-size: 145%;
}
.padlr1em {
  padding: 0 1em 0 1em;
}
.pad1em {
  padding: 1em;
}
.padbot2 {
  padding-bottom: 2px;
}
.padbot5 {
  padding-bottom: 5px;
}
.padtop5 {
	padding-top: 5px; 
}
.padtop6 {
  padding-top: 6px;
}
.padlt8 {
	padding-left: 8px; 
}
.padbot10 {
  padding-bottom: 10px;
}
.padtop10 {
  padding-top: 10px;
}
.padrt10 {
  padding-right: 10px;
}
.padlt12 {
  padding-left: 12px; 
}
.padlt13 {
  padding-left: 13px; 
}
.padbot13 {
  padding-bottom: 13px;
}
.padtop20 {
  padding-top: 20px;
}
.padbot20 {
  padding-bottom: 20px;
}
.padlt20 {
  padding-left: 20px;
}
.padtop25 {
  padding-top: 25px;
}
.padlt10 {
  padding-left: 10px;
}
.padlt25 {
  padding-left: 25px;
}
.padlt30 {
  padding-left: 30px;
}
.padrt20 {
  padding-right: 20px;
}
.martop-10 {
 margin-top: -10px;
}
.bold {
  font-weight:bold;
}
.normal {
  font-weight:normal;
}
.orangedk{
 color:#E47911;
}
.aligntop {
   align: top
}
.alignrt {
   align: right
}
.right{
   float:right
}
.left{
   float: left
}

.carat {
   font-weight: bold; 
   color: #E47911;
   margin-right:0.10em;
}

.title_box {
  border: 1px solid #DDD;
}
.clear {
  clear:both;
}
.bordrt {
  border-right: 1px solid #CCC;
  padding-right: 15px; 
}

.colrt50 {
  float: right; 
  width: 50%; 
  position: relative;
}
.collt50 {
  float: left; 
  width: 50%; 
  position: relative;
}
.collt25 {
  float: left; 
  width: 25%; 
  position: relative;
}
.collt15 {
  float: left; 
  width: 15%; 
  position: relative;
}
.colrt30 {
  float: right; 
  width: 30%; 
  position: relative;
}
.colrt75 {
  float: right; 
  width: 75%; 
  position: relative;
}
.colrt85 {
  float: right; 
  width: 85%; 
  position: relative;
}
.width50{
  width:50%;
}
.collt65 {
  float: left; 
  width: 65%; 
  position: relative;
}
.title_box h1 {
  color: #004b91;
  margin-top: -15px;
  margin-left: -6px;
  margin-bottom: 10px;
  _margin-top: -6px;
  _margin-left: -5px;
  position: relative;
  overflow: visible;
}

.title_box h1 span {
  padding: 4px;
  padding-right: 6px;
  background-color: white;
}

div#hd,
.p
{
  margin-bottom: 1em;
}

div#signup {
  background: url("//awsmedia.s3.amazonaws.com/bg_org_signup.gif") no-repeat top left;
  text-align: center;
  padding: 0.7em 0 0 0;
}

div#signup a{
  color: white;
}

div#signup img {
  margin-top: 0.7em;
  margin-bottom: 0.7em;
}

.orange {
  color: #ff9900;
}
.grey666 {
  color:#666666;
}
.greyccc {
  color:#CCCCCC;
}
input.w200, select.w200, textarea.w200{
   border: solid 1px #666;
   width:200px;
   padding:2px;
}

/* footer */

div#ft {
  font-size: 85%;
  padding-top: 3em;
  text-align: center;
}

ul.h_bar li {
  display: inline;
  list-style-type: none;
  padding-right: 18px;
  padding-left: 18px;
  border-left: 1px solid #CCC;
  background-image: none;
}

ul.h_bar li.first {
  padding-left: 0;
  border-left: none;
}

ul.h_bar.hr{
  border-top: 1px solid #CCC;
}

table.no-border th, table.no-border td {
  border: none;
}

table h2 {
  margin-top: 0;
}

.here {
  color: black;
}

/* awsTabSet */
/* awsTabSet.css */

/* Common colors: orange: #e47911, blue #004b91; */

/* Tabbed style*/

/* Don't display tabset headers when the tabs are visible (see awsTabSetFlat below, marked display: block)*/
.awsTabSet .awsTabSetHeader {
	display: none;
}

.awsTabSet .yui-nav {
	 border-bottom: 1px solid #ccc; 
}

.awsTabSet .yui-nav a {
	/* cursor: default; */
	padding: 6px 12px 2px 12px;
	color: #004b91;
	text-decoration: none;
	margin: 0;
}

.awsTabSet div.yui-content div {
	margin-top: 0.6em; 
}

.awsTabSet div.yui-content div div {
	margin-top: 0; /* Reset above for sub-divs. */
}

.awsTabSet .yui-nav .selected a {
	color: black;
	background: white url(//awsmedia.s3.amazonaws.com/awsTabSetActiveBackground2.gif) top left repeat-x;  /* includes what is effectively a border-top: 1px */
}

.awsTabSet .yui-nav li {
	border-top: 0;
	border-bottom: 1px solid #ccc;
	margin: 0;
	padding: 0;
	margin-bottom: -1px;
        padding-bottom: 2px;
}

.awsTabSet .yui-nav li.selected {
	border-bottom: 1px solid white;
	background: white url(//awsmedia.s3.amazonaws.com/awsTabSetRoundEdgeHelper.gif) top left repeat-x; /* Image is missing a pixel at the top to make it look slightly rounded. */
	padding: 0px 1px 0px 1px; 
        font-weight: bold;
}

/* Default "flat" appearance */
.awsTabSet ul.awsTabSetFlat {
	padding: 8px 0;
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
}

.awsTabSet .awsTabSetFlat .awsTabSetHeader {
	color: #e47911;
	font-size: 136%;
	font-weight: bold;
	display: block;
}

.awsTabSet div.awsTabSetFlat div {
	padding: 0.6em 0 0 0;
	border-bottom: 1px solid #ccc;
}

/* Override the above for divs underneath the one we want styled. */
.awsTabSet div.awsTabSetFlat div div {
	padding: 0;
	border-bottom: 0;
}

.awsTabSet ul.awsTabSetFlat li {
	font-weight: bold;
	padding-left: 0;
	background: transparent url(//awsmedia.s3.amazonaws.com/awsTabSetFlatArrow.gif) center left no-repeat;
	padding: 0 12px 0 12px;
	list-style-type: none;
	display: inline;
	font-size: 110%;
}

/* Detail page sub-style for flat tabs */
.awsTabSet.detail ul.awsTabSetFlat {
	float: left;
}

.awsTabSet.detail div.awsTabSetFlat {
	clear: both;
}

.awsTabSet.detail ul.awsTabSetFlat li {
	display: block;
	float: left;
	width: 40%;
}

.awsTabSet .awsTabSetFiller {
	width: 2px%;
}


/**
 * awsGlobalNav.css
 * The following are the common colors:
 * Main Blue: #004b91;
 * Selected Items: #edf7ff; (same as retail)
 * Menu borders: #ccc;
 */

/* Default, pre-JS Navigation bar links */
.awsGlobalNav #awsDefaultGlobalNav a {
	text-decoration: none;
	color: #004b91;
	font-weight: bold;
}

.awsGlobalNav #awsDefaultGlobalNav div {
	padding: 6px 20px 6px 14px;
	float: left;
	border: 1px solid transparent;
	border-left: 1px solid #ccc;
}

/* Haakon deleted this because it breaks many browsers...check IE and Firefox on Mac before restoring! */
.awsGlobalNav_DELETED #awsGlobalNavYUIWidget div {
	float: right;
}

.awsGlobalNav #awsDefaultGlobalNav div:first-child {
	border-left: none;
}

/* Menu bar: reset some styles to something similar to default */
.awsGlobalNav .yuimenubar {
	border: 0;
	/* line-height: 1.6; This upsets the menus */
        /* font-size: 14px;*/
}

/* Common styles for menu bar/item labels, which are anchors. */
.awsGlobalNav .yuimenubaritemlabel,
.awsGlobalNav .yuimenuitemlabel {
	text-decoration: none;
	cursor: pointer;
	color: #004b91;
}

/* Reset a stupid style thing */
.awsGlobalNav ul li,
.awsGlobalNav ul li {
	background-image: none;
}

/* Menu Bar Item Labels */
.awsGlobalNav .yuimenubaritemlabel {
	font-weight: bold;
	padding: 6px 10px 6px 10px;
	border: 1px solid transparent;
	border-left: 1px solid #ccc;
	position: relative;
	background-color: white;
        font-size:13px;
	font-family: Verdana;
}

/* First Menu Bar Item Label: no left border */
.awsGlobalNav li.yuimenubaritem.first-of-type .yuimenubaritemlabel {
	border-left: 1px solid transparent;
}

/* Menu Bar Item Label: little down arrow for menu bar items with a menu. */
.awsGlobalNav .yuimenubaritemlabel-hassubmenu {
	padding: 6px 20px 6px 14px;
	background: url(http://media.amazonwebservices.com/yuimenubarlabel-hassubmenu.gif) center right no-repeat;
}

/* Menu Bar Item Labels: selected states */
.awsGlobalNav .yuimenubaritemlabel-selected {
	border-top: 1px solid #ccc;
	z-index: 10;
	background-color: white;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-topright: 1px;
	-webkit-border-top-left-radius: 2px;
	-webkit-border-top-right-radius: 1px;
}

.awsGlobalNav li.yuimenubaritem.first-of-type .yuimenubaritemlabel-selected {
	border-left: 1px solid #ccc;
}

/* Menus */
.awsGlobalNav .yuimenu .bd {
	position: relative;
	margin-top: -1px;
	border: 1px solid #ccc;
	z-index: 9;
	padding: 0 0 4px 0;
	background-color: white;

	/* Round borders: not necessary */
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;

	-moz-border-radius-topleft: 0;
	-webkit-border-top-left-radius: 0;
}

/* Regular menu items */
.awsGlobalNav .yuimenuitemlabel {
	font-size: 94%;
	/* padding: 2px 24px; */
	padding-right: 24px;
	padding-left: 24px;
	line-height: 1.7;
	background: url(http://media.amazonwebservices.com/yuimenuitemlabel.gif) center left no-repeat;
	background-repeat: no-repeat;
	font-family: Verdana;
}

.awsGlobalNav .yuimenuitem.first-of-type .yuimenuitemlabel {
	padding-top: 1px;
}

/* Disabled menu items*/
.awsGlobalNav .yuimenuitemlabel-disabled {
	color: black;
	background: none;
	font-weight: bold;
	padding: 2px 24px 2px 8px;
      cursor: text;
	font-family: Verdana;
}

/* Menu items with a submenu */
.awsGlobalNav .yuimenuitemlabel-hassubmenu {
	color: black;
	background: none;
	font-weight: bold;
	padding: 2px 24px 2px 8px;
	font-family: Verdana;
}

.awsGlobalNav .yuimenuitemlabel-selected {
	color:#e47911; 
	text-decoration:underline;
}

.awsGlobalNav .yuimenuitemlabel-hassubmenu {
	background: url(http://media.amazonwebservices.com/yuimenubarlabel-hassubmenu.gif) center right no-repeat;
}

/* Little hack - the ID of the last menu is set to lastMenu to allow me to set a right border on this particular menu */
.awsGlobalNav #lastMenu .yuimenubaritemlabel-selected {
    border-right: 1px solid #ccc;
}

.awsGlobalNav .yui-menu-shadow-visible {
	background-color: black;
	/*left: 2px;
	top: 2px;
	bottom: -2px;
	right: -2px; */
	left: 2px;
	top: 2px;
	*left: 1px; /* IE ignores the absolute positions... ?? This is a "least crappy" appearance */
	opacity: 0.1;
	filter: alpha(opacity = 10);
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
}

/* This prevents a rendering error in IE on menu items with a submenu  */
.awsGlobalNav .yuimenuitem-hassubmenu {
	border-bottom: solid 1px transparent;
}

/* Order is important on this due to an IE6 bug. */
.awsGlobalNav .yuimenuitem-hassubmenu.yuimenuitem-selected {
	background-color: #edf7ff;
}
/* /awsTabSet */

#mainNav {
  width: 950px;
  margin-bottom: 30px;
  position: relative;
  font: normal 12px Verdana, Arial, sans-serif;
}

#mainNav ul {
  list-style: none;
  margin-left: 0;
  padding-left: 10px;
}

#mainNav #globalTopLinks a {
  text-decoration: none;
  font: normal 12px Verdana, Arial, sans-serif;
}
#mainNav #globalTopLinks a:hover span {
  text-decoration: underline;
}
#mainNav td {
  vertical-align: top;
  border: 0;
}

#mainNav table {
  border: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

#mainNav ul li {
  background-image: url(//media.amazonwebservices.com/orange_bullet.png);
  background-position: 0 0.5em;
  background-repeat: no-repeat;
  list-style-type: none;
  margin-bottom: 0.5em;
  padding-left: 10px;
}

#mainNav #tabs {
  width: 100%;
  height: 36px;
  padding: 0;
  margin: 16px 0 0 0;
}

#mainNav img {
  border: none;
}

#mainNav #awsHeaderLogo {
  margin-top: 12px;
}

#mainNav #globalTopLinks {
  position: relative;
  right: 0;
  top: 19px;
}

#mainNav #globalTopLinks img {
  vertical-align: middle;
}

#mainNav #globalTopLinks .signIn img {
  margin-right: 7px;
}

#mainNav #globalTopLinks .create,
#mainNav #globalTopLinks .language
{
  border-left: 1px dotted #ccc;
  padding-left: 12px;
  margin-left: 9px;
}
#mainNav #globalTopLinks .language.disabled {
  cursor: default;
}
#mainNav #globalTopLinks .language.disabled * {
  opacity: 0.3;
  filter: alpha(opacity='30');
}
#mainNav #globalTopLinks .create img {
  margin-right: 7px;
}

#mainNav #globalTopLinks {
  position: absolute;
  right: 0;
}

/* Each tab is really just a shell with a border around it. All
 * the pretty stuff happens inside each tab's '.liner'.
 */
#mainNav .tab {
  float: left;
  border-bottom: 2px solid white;
  cursor: pointer;
  background-image: none;
  padding-left: 0;
  margin: 0;
  height: 34px;
  width: 157px;
  margin-bottom: 2px;
  border: 1px solid #d2e7f7;
  border-left-width: 0;
}
#mainNav .tab div {
  text-align: center;
  font: bold 13px Verdana, Arial, sans-serif;
}

#mainNav #tabs li.first {
  /* Only the first tab actually has a left border */
  border-left-width: 1px;
  width: 158px;
}

#mainNav #tabs li.active {
  border-color: #ecf5fb;
  border-right-color: #d2e7f7;
  border-bottom-width: 3px;
  margin-bottom: 0;
}

#mainNav #tabs .active.last {
  border-right-color: #ecf5fb;
}

#mainNav #tabs li.active .liner {
  background: #ecf5fb;
  border-bottom-width: 3px;
  border-color: #ecf5fb;
}

#mainNav #tabs li.hover .liner {
  background-position: bottom left;
  border-right-color: inherit;
}

#mainNav .tab.selected .icon {
  background-position: top center;
}

#mainNav .tab .liner {
  background: url(//awsmedia.s3.amazonaws.com/globalNav/img/tab-gradient.png) repeat-x top left;
  border-right: 1px solid #e2f1fc;
  /* The height and padding vertically align the text into the middle of the tab */
  height: 34px;
}
#mainNav.hasJS .tab .liner {
  padding-top: 7px;
  height: 27px;
}
#mainNav .tab.last .liner {
  /* Keep the border width so that the text doesn't shift when clicked */
  border-right-color: inherit;
}

#mainNav .tab a {
  color: black;
  outline: none;

  /** */
  height: 17px;
  display: block;
  padding-top: 7px;
  width: 100%;
}
#mainNav.hasJS .tab a {
  text-decoration: none;
  display: inline-block;
  padding-top: 0;
  width: auto;
}
/*
#mainNav .tab a:hover {
  text-decoration: none;
}
*/
#mainNav .tab a:hover {
  text-decoration: underline;
  color:#E47911;
}
#mainNav.hasJS .tab a:hover {
  text-decoration: none;
  color: black;
}
#mainNav.hasJS .tab .icon {
  display: inline-block;
}
#mainNav .tab .icon {
  /* Only display the tab icon when the awsGlobalNav2.js is loaded */
  display: none;
  width: 9px;
  height: 6px;
  margin-right: 9px;
  background: url(//awsmedia.s3.amazonaws.com/globalNav/img/tab-open-close.png) no-repeat bottom center;
  vertical-align: middle;
  margin-bottom: 4px;
}

#mainNav .tab.loading .icon {
  background-image: url(//awsmedia.s3.amazonaws.com/globalNav/img/loading-small_9x9.gif);
  height: 9px;
}
#mainNav .tab.active .icon {
  background-position: top center;
}

#mainNav .flyout
{
  background-color: white;
  border-bottom: 1px solid #c9e1f4;
  padding-bottom: 1px;
  clear: both;
  display: none;
  font: normal 11px Verdana, Arial, sans-serif;
}

#mainNav .flyout .content {
  overflow: auto;
  padding: 20px 20px 9px 20px;
}

#mainNav .flyout .liner {
  background-color: #ecf5fb;
  padding-bottom: 24px;
}

#mainNav .flyout .col.right {
  float: left;
}

#mainNav .flyout .col.left {
  float: left;
  margin-right: 20px;
}

/* A pane is a white part of the flyout that actually contains
 * the text and graphics.
 */
#mainNav .flyout .pane {
  border: 1px solid #c9e1f4;
  background: white url(//awsmedia.s3.amazonaws.com/globalNav/img/1x80_nav_gradient_bg.jpg) repeat-x bottom;
  padding: 20px 20px 10px 20px;
  float: left;
}

/* Split Pane: two unequally sized white boxes on the blue flyout.
 */
#mainNav .flyout .splitPane .middle {
  padding: 0;
}

#mainNav .flyout .splitPane .middle .spacer {
  width: 20px;
}

#mainNav .flyout .splitPane .pane.left {
  width: 550px;
  float: none;
}

#mainNav .flyout .splitPane .pane.right {
  float: none; /* undo the .right rule which floats to the right */
}

#mainNav .flyout .splitPane h3 {
  font: bold 14px Verdana, Arial, sans-serif;
  color: #e47911;
  margin: 0 0 10px 0;
}

/* The console login form appears under the Account tab */
#mainNav #consoleLoginForm {
  border: 1px solid #ccc;
  padding: 14px 10px 17px 10px;
  margin-top: 17px;
  background-color: white;
}

#mainNav #consoleLoginForm .submit {
  vertical-align: bottom;
  margin-left: 4px;
}

#mainNav #consoleLoginForm .selector {
  margin: 16px 0 12px 0;
  font-family: inherit;
}

#mainNav #consoleLoginForm #makeDefault {
  margin: 0;
  padding: 0;
}

#mainNav .hover {
  cursor: pointer;
}

#mainNav a {
  color: #004b91;
}
#mainNav a:hover {
  color: #e47911;
  text-decoration: underline;
}

/* A captioned link is a bold link with some accompanying text
 * beneath it. It may also include an icon next to the image.
 * See app/views/nav/_captioned_link.html.
 */
#mainNav .flyout .captionedLink {
  clear: both;
}

#mainNav .flyout .captionedLink .text.withIcon {
  padding-left: 36px;
}

#mainNav .flyout .captionedLink a {
  font: bold 12px Verdana, Arial, sans-serif;
}

#mainNav .flyout .captionedLink .caption {
  margin-top: 1px;
}

#mainNav .flyout .captionedLink .icon {
  background: transparent url(//awsmedia.s3.amazonaws.com/globalNav/img/nav-icons-sprite.png) no-repeat;
  width: 26px;
  height: 26px;
  float: left;
  margin-top: 4px;
}

#mainNav .flyout .norm {
  font-weight: normal;
}

#mainNav .flyout .tripleColumn {
  overflow: auto;
}

#mainNav .flyout .tripleColumn .col {
  float: left;
}

#mainNav .flyout .tripleColumn .col.middle {
  margin: 0 20px;
  width: 276px;
}

#mainNav .flyout h4 {
  margin: 0;
}

/** Products flyout **/
#mainNav .flyout .products {
  font: normal 12px Verdana, Arial, sans-serif;
}

#mainNav .flyout .products a {
  font-weight: bold;
}

#mainNav .flyout .products h4 {
  font: normal 10px Verdana, Arial, sans-serif;
  color: #999;
  border-bottom: 1px solid #ccc;
}

#mainNav .flyout .products ul {
  padding-left: 3px;
  margin-top: 6px;
}

#mainNav .flyout .products ul li {
  background: transparent;
  padding-left: 0;
}
/** /products flyout **/

#mainNav .flyout,
#mainNav .flyout div, 
#mainNav .flyout p,
#mainNav .flyout td,
#mainNav .flyout th 
{
  font: normal 11px Verdana, Arial, sans-serif;
  color: #999;
}

#mainNav .flyout .captionedLink {
  margin-bottom: 10px;
}

#mainNav .flyout .captionedLink .body {
  margin-top: 5px;
}

#mainNav .flyout .captionedLink .body ul.doubleCol {
  margin-bottom: 5px;
}

#mainNav .flyout .captionedLink .body a {
  font-weight: normal;
  font-size: 11px;
}

#mainNav .flyout .captionedLink .body ul {
  margin-bottom: 0;
}

/* Side-by-side unordered lists (e.g. "Solutions" under the AWS tab) */
#mainNav .flyout ul.doubleCol {
  width: 135px;
  float: left;
  padding-left: 2px;
  margin: 0;
}

#mainNav .flyout .col {
  padding: 0;
  width: 276px;
}

#mainNav .flyout ul {
  margin-top: 0;
}

#mainNav .flyout .splitPane .col {
  width: 262px;
}

/* List of languages in the right pane under Developers */
#mainNav .flyout #langList {
  padding-left: 0;
  margin-top: 3px;
}

#mainNav .flyout #langList li {
  border-bottom: 1px solid #ccc;
  font: bold 13px Verdana, Arial, sans-serif;
  background: transparent;
  padding-bottom: 8px;
  padding-left: 0;
  line-height: 26px;
}

#mainNav .flyout #langList li.last {
  border: 0;
}

/* The "close" link in the lower RH corner of the flyout */
#mainNav .close {
  margin-right: 20px;
  float: right;
}

#mainNav .close img {
  vertical-align: bottom;
}

#mainNav .close:hover {
  text-decoration: none;
}

#mainNav #globalTopLinks .language {
  position: relative;
  line-height: 16px;
  margin-left: 10px;
  padding-left: 27px;
}
#mainNav #globalTopLinks .language a.current {
  outline: none;
  margin-left: 2px;
}
#mainNav #globalTopLinks .language .img {
  background: url("//awsmedia.s3.amazonaws.com/up-down-carrots.gif") no-repeat scroll 0 -4px transparent;
  display: inline-block;
  height: 4px;
  margin-bottom: 2px;
  margin-right: 8px;
  width: 6px;
  position: absolute;
  top: 7px;
  left: 12px;
}
#mainNav #globalTopLinks .language.open .img {
  background-position: 0 0;
}
#mainNav #globalTopLinks #langFlyout {
  display: none;
  position: absolute;
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  padding: 0;
  margin: 0;
  -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  right: 0;
  top: 18px;
  width: 145px;
}
#mainNav #globalTopLinks #langFlyout .lang {
  border-bottom: 1px solid #ebebeb;
  background: transparent;
  padding: 0;
  text-decoration: none;
  white-space: pre;
}
#mainNav #globalTopLinks #langFlyout .lang a:hover * {
  text-decoration: none;
}
#mainNav #globalTopLinks #langFlyout .lang .native {
  color: #999;
}
#mainNav #globalTopLinks #langFlyout .lang.hover {
  background-color: #fff;
}
#mainNav #globalTopLinks #langFlyout .lang.last {
  border-bottom: 0;
}
#mainNav #globalTopLinks #langFlyout .lang a {
  display: block;
  padding: 7px 19px 6px 8px;
  outline: none;
}
#mainNav #globalTopLinks #langFlyout li {
  background: transparent;
  margin: 0;
}

/*
 * SIDE NAV
 */

#sideNav .learnMore .carat {
    font-size: 8px;
    margin-right: 0;
}
#sideNav .learnMore img {
    margin-right: 2px;
    vertical-align: bottom;
}
#main {
    float: left;
    margin-left: 34px;
    width: 717px;
}
#sideNav {
    width: 198px;
    float: left;
}
#sideNav .decoratedBox {
    color: #666;
}
#sideNav .decoratedBox.top {
    margin-top: -12px;
}
#sideNav #subNavA {
    margin-bottom: 48px; /* 60px between box and top of content in #subNavB */
}
#sideNav #subNavA .decoratedBox {
    margin-bottom: 25px;
}
#sideNav #subNavA .decoratedBox.last {
    margin-bottom: 0;
}
#subPageSelector .hover {
    cursor: pointer;
}
#subPageSelector {
    position: relative;
    z-index: 6000; /* make IE happy */
    margin-bottom: 25px;
}
#subPageComboButton {
    display: none;
    width: 194px;
    position: relative;
    height: 22px;
    background: transparent url(//awsmedia.s3.amazonaws.com/globalNav/img/subNav/subpage-combo-button.png) no-repeat;
    margin-left: 1px;
}
#subPageSelector.DE #subPageComboButton {
    background-image: url(//awsmedia.s3.amazonaws.com/globalNav/img/subNav/subpage-combo-button-DE.png);
}
#subPageSelector.JP #subPageComboButton {
    background-image: url(//awsmedia.s3.amazonaws.com/globalNav/img/subNav/subpage-combo-button-JP.png);
}
#subPageSelector.products #subPageComboButton {
    background-position: 0 0;
}
#subPageSelector.products #subPageComboButton.open {
    background-position: -194px 0;
}
#subPageSelector.caseStudies #subPageComboButton {
    background-position: 0 -22px;
}
#subPageSelector.caseStudies #subPageComboButton.open {
    background-position: -194px -22px;
}
#subPageSelector a.noScript {
    font-weight: bold;
    font-size: 14px;
}
#subPageSelector .flyout {
    position: absolute;
    z-index: 5000;
    display: none; 
    width: 293px;
    height: 433px;
    border: 1px solid #92905c;
    padding: 10px;
    background-color: #eceac9;
    -moz-box-shadow: 3px 3px 3px rgba(0, 0, 0, .26);
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, .26);
    font: normal 11px Verdana, Arial, sans-serif; 
}
#subPageSelector .flyout a {
    font-weight: normal;
    font-size: 11px;
}
#subPageSelector .flyout a.selected {
    font-weight: bold;
}
#subPageSelector .flyout h4 {
    font-size: 10px;
    margin-top: 0;
}
#subPageSelector .flyout .liner {
    background-color: white;
    width: 273px;
    height: 413px;
    overflow: auto;
    padding: 10px;
}

#subPageSelector .flyout {
    font: normal 12px Verdana, Arial, sans-serif;
}

#subPageSelector .flyout h4 {
    font: normal 10px Verdana, Arial, sans-serif;
    color: #999;
    border-bottom: 1px solid #ccc;
}

#subPageSelector .flyout ul {
    padding-left: 3px;
    margin-top: 6px;
}

#subPageSelector .flyout ul li {
    background: transparent;
    padding-left: 0;
}

/** subnavB **/
#sideNav #subNavB .decoratedBox {
    margin-bottom: 12px;
}
#sideNav #subNavB .decoratedBox .body {
    border: 1px solid #eceadb;
    background-color: white;
}
#sideNav #subNavB .decoratedBox .body .liner {
    padding-top: 10px;
}
#sideNav #subNavB .decoratedBox .body .liner .liner {
    padding: 0 10px 10px;
}
#sideNav #subNavB .decoratedBox .head {
    background: transparent;
    border: 0;
    position: relative;
    height: auto;
    width: auto;
}
#sideNav #subNavB .decoratedBox .head h4 {
    background-color: white;
    padding-right: 5px;
    margin: 0;
    position: relative;
    top: 7px;
    display: inline;
    color: #e47911;
    font: bold 14px Verdana, Arial, sans-serif;
}
#sideNav #subNavB .decoratedBox .body .logo {
    margin: 8px 0 13px 0;
    display: block;
}
/** /subnavB **/

#sideNav .decoratedBox .head {
    background: transparent url(//awsmedia.s3.amazonaws.com/globalNav/img/subNav/box-header-gradient.png) repeat-x;
    height: 30px;
    width: 196px;
    border: 1px solid #eceadb;
}
#sideNav .decoratedBox.tallHead .head {
    background-image: url(//awsmedia.s3.amazonaws.com/globalNav/img/subNav/box-header-gradient_27x48.png);
    height: 48px;
}

#sideNav .decoratedBox .head h4 {
    color: #996633;
    margin: 7px 10px 10px 10px;
    font: bold 13px Verdana, Arial, sans-serif;
    line-height: 15px;
}

#sideNav .decoratedBox .body {
    border: 1px solid #eceadb;
    border-top: 0;
    width: 194px;
    margin-left: 1px;
    font: normal 11px Verdana, Arial, sans-serif;
    background-color: #f7f7f7;
}

#sideNav .decoratedBox .body ul {
    margin: 0;
    padding: 0 10px;
}

#sideNav .decoratedBox .body li {
    line-height: 14px;
    padding: 6px 0 8px 14px;
    background-position: 0 12px;
    border-bottom: 1px solid #e1e1e1;
    margin: 0;
}

#sideNav .decoratedBox .body li.first {
}

#sideNav .decoratedBox .body li.last {
    border-bottom: 0;
}

#sideNav .decoratedBox .body a.selected {
    color: black;
    font-weight: bold;
    cursor: default;
    outline: none;
}
#sideNav .decoratedBox .body a.selected:hover {
    text-decoration: none;
}


/* old side nav */
/**
 * AWS Side Nav
 *
 * The following are the common colors:
 * Main Blue: #004b91;
 * Menu borders: #ccc;
 */

.awsSideNav {
	width: 100%;
}
 
.awsSideNav .awsSideNavMenu a,
.awsSideNav .awsSideNavHeader {
	cursor: pointer;
	color: #004b91;
	text-decoration: none;

}
.awsSideNav .awsSideNavMenu a:hover{
        color:#e47911; 
	text-decoration:underline;
}

.awsSideNav .awsSideNavPart .awsSideNavHeader {
	/* cursor: default; */
	padding: 5px 0 4px 0px;
	background: url(//awsmedia.s3.amazonaws.com/awsSideNavHeaderBackground.gif) top left repeat-x;
	font-weight: bold;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
}

.awsSideNav .awsSideNavPart-hidden .awsSideNavHeader {
	background: none;
	border-bottom: 0;
}

.awsSideNav .awsSideNavPart .awsSideNavHeader span {
	padding: 0 0 0 20px;
	background: url(//awsmedia.s3.amazonaws.com/awsSideNavHeaderContract.gif) center left no-repeat;
}

.awsSideNav .awsSideNavPart-hidden .awsSideNavHeader span {
	background: url(//awsmedia.s3.amazonaws.com/awsSideNavHeaderExpand.gif) center left no-repeat;
}

.awsSideNav .awsSideNavMenu {
	overflow: hidden;
}

.awsSideNav .awsSideNavMenu ul {
	margin: 4px 0px 6px 16px;
        padding-left: 5px;
        font-size: 94%;
}

.awsSideNav .awsSideNavMenu li {
  list-style-type: none;
  background-image: url(//awsmedia.s3.amazonaws.com/orange_bullet.png);
  background-repeat: no-repeat;
  background-position: 0em .4em;
}

#awsSideNav {
	float: left;
	margin-bottom: 20px;
}

.awsSideNavHeader span { display: block; }

.awsSideNav .awsSideNavPart-hidden .awsSideNavHeader .sideNavSupplimental {
	 background: none;
}
	
.awsSideNav .awsSideNavPart .awsSideNavHeaderStatic {
	 padding: 5px 0 4px 10px;
	 font-weight: bold;
	 border-top: 1px solid #ccc;
}
	
.sideNavSupplimental a {
	 text-decoration: none;
}
	
.sideNavSupplimental a:visited {
	 color: #004b91;
	 cursor: pointer;
}
	
.sideNavSupplimental a:hover{
	 color: #e47911;
	 text-decoration: underline;
	 cursor: pointer;
}
/**
 * AWS Side Nav
 *
 * The following are the common colors:
 * Main Blue: #004b91;
 * Menu borders: #ccc;
 */

.S-awsSideNav {
	width: 100%;
}
 
.S-awsSideNav .S-awsSideNavMenu a,
.S-awsSideNav .S-awsSideNavHeader {
	cursor: pointer;
	color: #004b91;
	text-decoration: none;

}
.S-awsSideNav .S-awsSideNavMenu a:hover{
        color:#e47911; 
	text-decoration:underline;
}

.S-awsSideNav .S-awsSideNavPart .S-awsSideNavHeader {
	/* cursor: default; */
	padding: 5px 0 4px 10px;
	background: url(http://media.amazonwebservices.com/awsSideNavHeaderBackground.gif) top left repeat-x;
	font-weight: bold;
	border-top: 1px solid #ccc;
	/* border-bottom: 1px solid #ccc; */
}

.S-awsSideNav .S-awsSideNavPart-hidden .S-awsSideNavHeader {
	background: none;
	border-bottom: 0;
}

.S-awsSideNav .S-awsSideNavPart .S-awsSideNavHeader span {
	padding: 0 0 0 0px;
}

.S-awsSideNav .S-awsSideNavPart-hidden .S-awsSideNavHeader span {
	padding: 0 0 0 10px;
}

.S-awsSideNav .S-awsSideNavMenu {
	overflow: hidden;
}

.S-awsSideNav .S-awsSideNavMenu ul {
	list-style-type: square;
	color: orange;
	margin: 0px 0px 0px 0px;
        padding-left: 5px;
        font-size: 94%;
}

#S-awsSideNav {
	float: left;
	margin-bottom: 20px;
}

.S-awsSideNavHeader span { display: block; }
/* /old side nav */

#pageNotTranslated {
  background-color: #ffffdd;
  border: 1px solid #fc9a1e;
  padding: 12px;
  margin-bottom: 20px;
  float: left;
  width: 924px;
}
#pageNotTranslated .icon {
  float: left;
  height: 25px;
  width: 25px;
  background: url(//awsmedia.s3.amazonaws.com/error-sprite.gif) no-repeat 0 -50px;
  margin-left: 8px;
  margin-right: 13px;
}
#pageNotTranslated .msg {
  font-weight: bold;
  line-height: 23px;
}
#pageNotTranslated .close {
  float: right;
  line-height: 23px;
}
#pageNotTranslated .close img {
  margin-left: 6px;
  vertical-align: text-bottom;
}

#errorPage {
  text-align: center;
  margin-top: 44px;
  margin-bottom: 57px;
}
#errorPage h1 {
  margin: 12px 0;
}
#errorPage p {
  line-height: 1.7em;
}

#aws_website_hero {
  z-index: 0;
  /* opacity: 0; This breaks the hero area */
}

dl.faq {
  margin: 0;
}

dl.faq dt {
  font-weight: bold;
  margin-bottom: 0.3em;
}

dl.faq dd {
  margin-bottom: 0.7em;
  margin-left: 0;
}

div.faq_links li {
  margin-bottom: 3px;
}

.carat_bullet {
  padding: 0px 0px 0px 5px;
  font-size:90%;
  line-height:1.4em;
  text-decoration: none;
}

.carat_bullet ul li {
  list-style-type: none;
  background-image: url(//awsmedia.s3.amazonaws.com/orange_carat.png);
  background-repeat: no-repeat;
  background-position: 0 .5em;
  margin-bottom: 0.5em;
}

.case_studies_header {
  padding: 5px 0px 5px 5px;
  margin:-15px 0px 0px -7px;
  overflow:visible;
  position:relative;
}

.case_studies_header_font {
  color:#E47911;
  font-size:120%;
  font-weight:bold;
  background-color:#fff;
  padding: 0px 5px 3px 0px;
}

.case_studies_box {
  border: 1px solid #DDD;
}

.case_studies_body_text {
  padding: 3px 5px 3px 13px;
  font-size:90%;
  color: #666;
  line-height:1.4em;
} 

.case_studies_image {
  padding: 11px 0px 0px 13px;
}

.case_studies_box hr {
	border:0; 
	border-bottom:1px solid #dedede; 
	margin:0px 15px 0px 15px; 
	}

.arrow_bullets ul li {
  margin-left: 6px;
  padding-left: 14px;
  list-style-type: none;
  vertical-align:top;
  background-image: url(//awsmedia.s3.amazonaws.com/arrow_anchor_bullet.gif);
  background-repeat: no-repeat;
  background-position:top left;
  color:#146EB4;
  font-size:120%;
  font-weight:bold;
}

.bullet_indent ul li {
  margin-left: 6px;
  padding-left: 14px;
  list-style-type: none;
  background-image: url(//awsmedia.s3.amazonaws.com/orange_bullet.png);
  background-repeat: no-repeat;
  background-position: 0 .5em;
}

.resources_section {
  width:90%;
  border:0;
  border-bottom:1px solid #CCC;
  color:#146EB4;
  font-size:145%;
  font-weight:normal;
  margin: 10px 0px 0px 0px;
  padding: 0px 0px 3px 0px;	
}

.nav_bullets ul li {
  margin-left: 0px;
  padding-left: 0px;
  list-style-type: none;
  background-image: url(//awsmedia.s3.amazonaws.com/orange_bullet.png);
  background-repeat: no-repeat;
  background-position: 0 .5em;
}

.product_highlights {
  color:#146EB4;
  font-size:145%;
  font-weight:normal;
  margin: 10px 0px 0px 0px;
  padding: 0;
}

.padding_margin_zero {
  margin:0px;
  padding:0px;
}

.mar_top_20 {
  margin-top:20px;
}

.mar_top_25 {
  margin-top:25px;
}

.mar_top_10 {
  margin-top:10px;
}

.underline a {
  text-decoration:underline;
}

.no-underline a {
  text-decoration:none;
}

.support-nav {
	padding: 5px 0 4px 10px;
	font-weight: bold;
	border-top: 1px solid #ccc;
}

.courier {
  font-family: "Courier New", Courier, mono;
}

.legal_bullets ul {
  margin:0px 0px 3px 20px;
}

.legal_bullets ol li {
  padding-bottom:3px;
}

.legal_bullets ul li {
  margin-bottom:0px;
}

.padded_ol_list ol li {
  margin-bottom:8px;
}

.folder_bullet ul li {
  list-style-type: none;
  background-image: url(//awsmedia.s3.amazonaws.com/category-folder-16x16.gif);
  background-repeat: no-repeat;
  background-position: 0em 0.3em;
  margin-bottom: 0em;
  padding-left: 1.9em;
  line-height:2em;
}
/*
.tan-table {
  border: 1px solid #eec;
}
.tan-table td {
  border-bottom:1px solid #CCCC99;
  line-height:1.0;
}
.tan-table th {
  text-align: left;
  border-bottom: 1px solid #cccc99;
}
.tan-table th {
  background-color: #eec;
}
.tan-table-grid td {
  border:1px solid #CCCC99;
  line-height:1.0;
}
*/
.tab-fix a {
  text-decoration: none;
}

.orange-title {
  color:#E47911;
  font-size: 18px;
}

.screen-small {
  float: left;
  width: 160px;
  margin-right: 20px;
  cursor: pointer;
}

.tour_ss, .emr_tour, .cf_tour, .rds_tour {
  display: none;
}

.yui-b .product_case_studies {
  position: relative;
  top:380px;
}

.search-partner {
  display: none;
}

.partner-table-container {
background-color:#EEEEEE;
background-image:url(http://awsmedia.s3.amazonaws.com/gradient90.gif);
background-repeat:repeat-x;
padding: 10px 10px 10px 0px;
border:1px solid #CCCCCC;
}

ul.partner-table {
    padding: 1px 8px 1px 0px;
    margin: 1px 1px 1px 1px;
    list-style: disc url(spacer.gif) inside;
    list-style: none;
background-image: none;
    text-align: left;

}

ul.partner-table li {
    padding: 3px 3px 3px 0px;
    margin: 1px 1px 1px 1px;
    list-style: disc url(spacer.gif) inside;
    list-style: none;
background-image: none;
    border-bottom: 1px solid #CCCCCC;

}

.bottom-box-rounded-corner {
width:100%;
height:38px;
background:url('http://awsmedia.s3.amazonaws.com/panel-box-bot.gif') repeat-x left bottom; } 

.right-box-rounded-corner { width:100%;
background:url('http://awsmedia.s3.amazonaws.com/panel-box-header.gif') repeat-y right top; } 

.left-box-rounded-corner { width:100%;
background:url('http://awsmedia.s3.amazonaws.com/panel-box-bot-rt.gif') repeat-y left top; } 

#awsHome #rightSidebar p {
  color: #666;
}
#awsHome #rightSidebar p.title {
  font-weight: bold;
}

#awsHome #rightSidebar p.title,
#awsHome #rightSidebar .decoratedBox .body h5
{
  color: #333;
}
#awsHome #rightSidebar .signUp {
   padding: 2px;
   border: 1px solid #cfcfcf;
   margin-bottom: 25px;
}
#awsHome #rightSidebar .signUp .liner {
   background-color: #dddac0;
   padding: 15px 20px 17px 20px;
   text-align: center;
}
#awsHome #rightSidebar .signUp .liner p {
   margin-bottom: 17px;
   font-weight: normal;
   color: #000;
}

#awsHome #rightSidebar .decoratedBox {
  margin-bottom: 25px;
  margin-top: -11px;
}
#awsHome #rightSidebar .decoratedBox .head {
  background: none repeat scroll 0 0 transparent;
  border: 0 none;
  height: auto;
  position: relative;
  width: auto;
}
#awsHome #rightSidebar .decoratedBox .head h4 {
  background-color: white;
  color: #E47911;
  display: inline;
  font: bold 14px Verdana, Arial, sans-serif;
  margin: 0;
  padding-right: 5px;
  position: relative;
  top: 11px;
}
#awsHome #rightSidebar .decoratedBox .body {
  background-color: white;
  border: 1px solid #c9e1f4;
  padding: 2px;
}
#awsHome #rightSidebar .decoratedBox .head h4 {
  font-size: 20px;
  color: #e47911;
  background-color: white;
  font-weight: normal;
}
#awsHome #rightSidebar .decoratedBox .body .liner {
  padding: 20px 17px;
}
#awsHome #rightSidebar .decoratedBox .body h5 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}

#awsHome #rightSidebar #getStarted .body .liner {
  background: white url(http://awsmedia.s3.amazonaws.com/gradient-grey-12x483.png) repeat-x bottom;
}
#awsHome #rightSidebar #getStarted ul {
  padding-left: 10px;
}
#awsHome #rightSidebar #getStarted p.intro {
  font-size: 11px;
  line-height: 15px;
  margin-bottom: 13px;
}
#awsHome #rightSidebar #getStarted hr {
  margin: 18px 0 14px;
}
#awsHome #rightSidebar #getStarted ul li {
  margin-bottom: 12px;
}
#awsHome #rightSidebar #getStarted h3 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  margin-top: 0;
}
#awsHome #rightSidebar #getStarted .consoleSignIn {
  margin-bottom: 2px;
}
#awsHome #rightSidebar #getStarted .consoleSignIn img {
  display: block;
  margin: 19px auto 0;
}

#awsHome #rightSidebar #careers .body .liner {
  padding: 20px 9px 55px;
  background: white url(//awsmedia.s3.amazonaws.com/marketing/img/cube-background-191x67.png) no-repeat bottom;
}
#awsHome #rightSidebar #careers .body .title {
  margin-bottom: 6px;
  color: #000;
}

#awsHome .awsTabSet .yui-nav li {
  background-color: #efefef;
  border: 1px solid #dedede;
  margin-right: 8px;
}
#awsHome .awsTabSet .yui-nav li.selected {
  border-top: 0;
  border-bottom: 1px solid white;
}
#awsHome .awsTabSet .yui-nav a {
  padding: 3px 12px 2px;
}
#awsHome .awsTabSet .yui-nav .selected a {
  padding: 7px 12px 0;
}
#awsHome #news_events_tabs {
  margin-bottom: 44px;
}
#awsHome #news_events_tabs .yui-content {
  padding-left: 13px;
  float: left;
  margin-bottom: 29px;
  width: 671px;
}
#awsHome #news_events_tabs .awsTabContent {
  float: left;
  width: 100%;
}
#awsHome #news_events_tabs div.awsTabSetFlat {
  width: 683px;
}
#awsHome #news_events_tabs div.awsTabSetFlat .awsTabContent {
  margin-bottom: 11px;
  padding-bottom: 20px;
}
#awsHome h2 {
  font-weight: normal;
  font-size: 20px;
  color: #e47911;
  margin-bottom: 13px;
  margin-top: 0;
  clear: both;
}
#awsHome h2.underlined {
  border-bottom: 1px solid #cecece;
  padding-bottom: 15px;
}
#awsHome .hero-carousel {
  margin-bottom: 10px;
  width: 690px;
  height: 189px;
}
#awsHome #prodServList .col1 {
  float: left;
  margin-right: 55px;
}
#awsHome #prodServList .col2 {
  float: left;
}

#awsHome #prodServList {
  font: normal 12px Verdana, Arial, sans-serif;
  float: left;
  margin-bottom: 18px;
  margin-left: 20px;
}

#awsHome #prodServList a {
  font-weight: normal;
}

#awsHome #prodServList h4 {
  font: normal 10px Verdana, Arial, sans-serif;
  color: #999;
  border-bottom: 0;
  margin-bottom: 0;
}

#awsHome #prodServList ul {
  padding-left: 3px;
  margin-top: 0;
}

#awsHome #prodServList ul li {
  background: transparent;
  padding-left: 0;
  margin-bottom: 2px;
}
#awsHome .feature {
  margin-top: 12px;
  line-height: 1.5em;
}
#awsHome .feature .carat {
  font-size: 11px;
}
#awsHome .feature img.logo {
  float: left;
  margin-right: 20px;
}

#awsHome #news_events_tabs .date {
  white-space: nowrap;
}
#awsHome #news_events_tabs .tableHolder table {
  float: left;
  width: 320px;
}
#awsHome #news_events_tabs .tableHolder table.first {
  margin-right: 30px;
}
#awsHome #news_events_tabs .tableHolder td {
  font-size: 11px;
}
#awsHome #news_events_tabs .tableHolder
#awsHome #news_events_tabs .tableHolder {
  float: left;
  margin-bottom: 6px;
}
#awsHome #news_events_tabs .tabSetFooter {
  clear: both;
  vertical-align: top;
  margin-top: 8px;
  margin-left: 5px;
}
#awsHome #news_events_tabs .awsTabContent {
}
#awsHome #news_events_tabs .eventList {
  font-size: 11px;
  padding-left: 6px;
}
#awsHome #news_events_tabs .eventList li .date {
  margin-right: 9px;
}
.yui-t6 #awsHome #yui-main .yui-b {
  margin-right: 260px;
}
.yui-ty #awsHome .yui-b {
  width: 237px;
}

/* For /documentation */
#documentationLandingPage h1 {
  margin-top: 0;
  margin-bottom: 13px;
  color: black;
}
#documentationLandingPage .intro {
  margin-bottom: 20px;
  line-height: 1.5em;
}
#documentationLandingPage .bigBox {
  width: 946px;
  border: 2px solid #d2e7f7; 
  height: 400px;
  position: relative; 
  background: transparent url(//awsmedia.s3.amazonaws.com/marketing/img/documentation-landing-background-340x398.png) no-repeat 1px 1px;
}
#documentationLandingPage .bigBox .leftSide {
  position: absolute;
  width: 346px;
  top: 0;
  left: 0;
}
#documentationLandingPage .bigBox .rightSide {
  position: absolute;
  top: 0;
  right: 0;
  width: 560px;
  padding: 17px 20px 20px 20px;
}
#documentationLandingPage .bigBox h2 {
  width: 237px; 
  font-face: Helvetica, Arial, sans-serif;
  font-size: 24px; 
  color: #e47911; 
  margin: 30px;
}
#documentationLandingPage .bigBox .products {
  font: normal 12px Verdana, Arial, sans-serif;
}
#documentationLandingPage .bigBox .products a {
  font-weight: normal;
}
#documentationLandingPage .bigBox .products h4 {
  font: normal 10px Verdana, Arial, sans-serif;
  color: #999;
  border-bottom: 1px solid #ccc;
  margin-top: 0;
}
#documentationLandingPage .bigBox .products .col {
  width: 265px;
}
#documentationLandingPage .bigBox .products .col.right {
  float: left;
  margin-left: 22px;
}
#documentationLandingPage .bigBox .products ul {
  padding-left: 3px;
  margin-top: 6px;
  margin-bottom: 11px;
}
#documentationLandingPage .bigBox .products ul li {
  background: transparent;
  padding-left: 0;
  margin-bottom: 2px;
}

/* Service Documentation Pages */
#docDetail h1 {
  margin-top: 0;
  margin-bottom: 13px;
  color: black;
}
#selectAServiceBanner {
  border: 2px solid #dddac0;
  width: 946px;
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 20px;

  position: relative;
  z-index: 6000;
}
#selectAServiceBanner .liner {
  margin: 1px;
  padding: 16px 20px;
  background-color: #f8f5d8;
  position: relative;
  height: 22px;
  line-height: 21px;
}
#selectAServiceBanner .liner * {
  line-height: normal;
}
#selectAServiceBanner .group {
  width: 849px;
  margin: 0 auto;
}
#selectAServiceBanner .intro {
  margin-right: 22px;
  float: left;
}
#selectAServiceBanner #subPageSelector {
  float: left;
  margin-bottom: 0;
}
#selectAServiceBanner #subPageSelector .flyout {
  right: 0;
}
#docList {
  color: #666;
}
#docList h2 {
  font-size: 14px;
  font-weight: bold;
  display: inline;
  margin: 0;
}
#docList .showHide {
  margin-left: 12px;
}
#docList .hide {
  font-size: 10px;
}
#docList .service {
  position: relative;
}
#docList .service .liner {
  padding: 14px 12px;
}
#docList .service .text {
  width: 684px;
}
#docList .service .desc {
  margin: 9px 16px 0 0;
}
#docList .service .docLinks { 
  margin: 13px 0 0 0;
  position: absolute;
  right: 9px;
  top: 0;
  width: auto;
}
#docList .service .docLinks a:hover {
  text-decoration: none;
}
#docList .service .docLinks a img {
  vertical-align: middle;
}
#docList .service .docLinks td {
  padding: 0 13px 0 0;
  vertical-align: top;
}
#docList .service .docLinks .bar {
  padding-top: 3px;
  color: #d1d1d1;
}
#docList .service .docLinks td a img {
  margin-right: 1px;
}

#docList .service.first {
  border-top: none;
}
#docList .service.even {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
#docList .service.even .liner {
  margin: 1px 0;
  background-color: #f7f7f7;
}
#docList .service.last {
  border-bottom: 0;
}
#docList .carat {
  font-size: 8px;
}
#docDetail #archiveInfo {
  margin-top: 31px;
}
#docDetail #archiveInfo img {
  vertical-align: middle;
}
#docDetail #archiveInfo p {
  font-weight: bold;
  margin-bottom: 0;
}
  
/* tan-table.css */
.tan-table {
  border: 1px solid #eec;
}
.tan-table td {
  border-bottom:1px solid #CCCC99;
  line-height:1.0;
}
.tan-table th {
  text-align: left;
  border-bottom: 1px solid #cccc99;
}
.tan-table th {
  background-color: #eec;
}
.tan-table-grid td {
  border:1px solid #CCCC99;
  line-height:1.0;
}
.tan-table .borderR {
  border-right: 1px solid #eec;
}
.tan-table .borderL {
  border-left: 1px solid #eec;
}
/* end tan-table.css */
/* pricing-table.css */
.pricingTable {
  width: auto;
  text-align: left;
  margin-bottom: 2em;
}
.pricingTable .yui-nav.tabs {
  list-style: none;
  border-bottom: 6px solid #cc9;
}
.pricingTable .tabs li {
  font-size: 13px; 
  font-weight: bold; 
  height: 23px; 
  line-height: 1.8em; 
  text-decoration: none; 
  background-color: #f4f4dd;
  padding: 0 23px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  color: #777;
}
.hasJS .pricingTable caption {
  display: none;
}
.pricingTable .content {
  border: 1px solid #eec;
}
.pricingTable .content caption {
  color: #000;
  text-align: left;
  font-size: 14px;
  font-weight: bold;
  margin-top: 2em;
  margin-bottom: 1em;
}
.pricingTable .tabs li.selected {
  background-color: #cc9;
  color: #000;
}
.pricingTable tr.centered td,
.pricingTable tr.centered th 
{
  text-align: center;
}
.pricingTable tr.subhead th,
.pricingTable tr.subhead td 
{
  background-color: white;
}
/* end pricing-table.css */
.supportTable {
  width: 721px;
}
.supportTable .silver {
  border-right: 1px solid #ccc;
}
.supportTable th {
  text-align: center;
  font-weight: bold;
  height: 27px;
  line-height: 27px;
  padding: 0;
}
.supportTable th.silver {
  background: url(http://media.amazonwebservices.com/marketing/img/gradient-silver-10x27.png) repeat-x 0 0;
}
.supportTable th.gold {
  background: url(http://media.amazonwebservices.com/marketing/img/gradient-gold-10x27.png) repeat-x 0 0;
}
.supportTable td {
  width: 360px;
  padding: 8px 13px;
}
.supportTable td .range {
  font-size: 10px;
}
.supportTable td li {
  font-weight: normal;
  list-style-type: disc;
  padding-left: 0;
  background: transparent;
}
.supportTable td.checked {
  background: url(http://media.amazonwebservices.com/marketing/img/checkmark-green-14x11.png) no-repeat center center;
}

#supportOverviewTable .silver,
#supportOverviewTable .gold
{
  width: 90px;
}
#supportOverviewTable td,
#supportOverviewTable th
{
  border: 1px solid #ccc;
}
#supportOverviewTable thead th.empty {
  border-top: 0;
  border-left: 0;
}
#supportOverviewTable .numContacts {
  font-size: 10px;
  padding-left: 65px;
}
#supportOverviewFootnotes {
  color: #666;
  font-size: 10px;
}

#supportPricing {
  border: 1px solid #ccc;
}
#supportPricing td {
  color: #666;
  font-weight: bold;
}
#supportPricing td li {
  font-weight: normal;
  color: #000;
}

.tcLinks h2 {
  color: #e47911;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 3px;
  margin-top: 17px;
}
.tcLinks h2.first {
  margin-top: 0;
}
.tcLinks ul {
  padding: 0;
  margin: 0;
}
.tcLinks ul li {
  background-image: url(//awsmedia.s3.amazonaws.com/orange_carat_2.png);
  padding-left: 9px;
}