@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    border: 0;
}

body  {
    font: 100% Verdana, Arial, Helvetica, sans-serif;
    background: #FFFFFF;
    margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
    padding: 0;
    text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
    color: #333366;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, 
   they are more unpredictable. Used correctly, they are also more accessible for those
   that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. 
   If you decrease the text size overall by using a font-size: 80% on the body element or 
   the #container, remember that the entire layout will downsize proportionately. You may 
   want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall 
   design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), 
   this will proportionately change each of the divs overall size. You may want to adjust 
   based on your final font sizing.
*/

#container { 
    width: 780px;
    background: #FFFFFF;
    margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
    text-align: left; /* this overrides the text-align: center on the body element. */
} 

/* Miscellaneous classes for reuse */

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
    float: right;
    margin-left: 8px;
}

.fltlft { /* this class can be used to float an element left in your page */
    float: left;
    margin-right: 8px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
    clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

.inline {
    display: inline;
}

/*----------------HEADER----------------------*/

#header { 
    /*height: 273px;*/
    height: 238px;
    /* position: relative; */
    /*width: 640px;*/
    width: 780px;
    float: right;
} 

#header ul {
    margin-left: 143px;
    margin-top: 5px;
    /*bottom: 10px;*/
    /*top: 235px;
    * top: 230px;*/
    top: 200px;
}

#header ul li  {
    float: left;
    display: inline;
    margin-right: 6px;
}

#header ul li a  {
    display: block;
    text-decoration: none;
    color: #333366;
    background-image: url(/static/images/navButton.jpg);
    background-position: 0 0;
    background-repeat: no-repeat;
    height: 32px;
    line-height: 32px;
    width: 120px;
    text-align: center;
    font-size: 9pt;
}

#header ul li a:hover  {
    background-position: 0 -32px;
}

/*----------------MAIN CONTENT----------------------*/

#mainContent {
    margin: 0 174px 0 144px;
    font-size: 10pt;
} 

#mainContent h1 {
    font-size: 15pt;
    margin-bottom: 12px;
}

#mainContent h2, h3, h4 {
    font-size: 12px;
    margin-bottom: 5px;
}

#mainContent ul {
    margin: 0 0 1em 0;
    padding: 0px;
}

#mainContent li {
    display: block;
    list-style-type: none;
    background: url(/static/images/arrows.jpg) no-repeat 0px 4px;
    padding-left: 15px;
}

#mainContent p {
    margin-bottom: 10px;
    text-align: justify;
    color: #336;
}

.mainContentLinks {
    text-align: right;
}

#mainContent a {
    text-decoration: underline;
    font-style: italic;
    color: #336;
}   

#mainContent a:visited {
    text-decoration: underline;
    color: #336;
}

#mainContent a:hover {
    color: #300;
}

/*----------------LEFT SIDEBAR----------------------*/

#sidebar1 {
    float: left; 
    width: 133px; /* since this element is floated, a width must be given */
    margin-left: 2px;
    margin-top: -42px;
    padding: 4px 0; /* top and bottom padding create visual space within this div */
}

.navSeparator {
    line-height: 14px;
}

.categories {
    display: block;
    font-size: 8pt;
    padding: 3px 0 3px 7px;
    margin-bottom: 4px;
    background-color: #f7afa0;
}

#sidebar1 ul li {
    margin-bottom: 2px;
}

#sidebar1 ul li a {
    display: block;
    font-size: 7pt;
    padding: 3px 0 3px 7px;
    height: 100%;
    background-color: #d2dfe7;
    text-decoration: none;
    color: #333366;
}

#category1 li, #category2 li {
    display: block;
    list-style-type:none;
    font-size: 12px;
}

#category1 li a:hover {
    background-color: #fac6b8;
}

#category2 li a:hover {
    background-color: #8fbae4;
}

#category3 li a:hover {
    background-color: #a5bf82;
}

/*----------------RIGHT SIDEBAR----------------------*/

#sidebar2 {
    float: right; 
    width: 163px; /* since this element is floated, a width must be given */
    margin-right: 2px;
}

#sidebar2 h3 {
    display: block;
    text-align: center;
    padding: 3px 0;
    font-size: 9pt;
}

#sidebar2 .forms {
    border: #23b3f0 solid 1px;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

#sidebar2 input, #mainContent input {
    border: #23b3f0 solid 1px;
    margin: 4px 0 0 5px;
}

#sidebar2 #newsletterButton {
    margin-top: 5px;
    margin-left: 30px;
}

#sidebar2 button a {
    color: #000000;
}

#sidebar2 button {
    font-size: 8pt;
    font: Verdana, Arial, Helvetica, sans-serif;
    color: #333366;
    border: #333333 solid 1px;
    background: #CCCCCC;
    padding-top: 1px;
}

#sidebar2 #openNew {
    margin-left: 30px;
}

#sidebar2 button:hover {
    background-color:#666666;
}

#sidebar2 #searchHeader {
    background-color: #b8cae0;
}

#sidebar2 #openAcctHeader {
    background-color: #f8c0b1;
}

#sidebar2 #loginHeader, #sidebar2 #newsletterHeader {
    background-color: #fbe58f;
}

#sidebar2 p {
    font-size: 9pt;
    padding: 3px 0 0 5px;
}

#sidebar2 .toBookmark {
    background-color: #fde1c9;
    text-align: center;
    padding: 5px;
    margin-bottom: 15px;
}

#certified {
    display: block;
    width: 116px;
    height: 60px;
    margin: 0 auto;
}

/*----------------FOOTER----------------------*/

#footer { 
    font-size: 7pt;
    padding: 40px 0 5px 0;
} 

#footer div {
    text-align: center;
    width: 780px;
    margin: 0 auto;
}

#footer div img {
    vertical-align: middle;
}

#footerNav a { 
    font-size: 9pt;
    text-decoration: none;
} 

#footer a:hover { 
    color: #330000;
    text-decoration: underline;
} 

#footer p {
    text-align: center; 
}

#footer #copyright {
    font-size: 11pt; 
    padding-bottom: 1em;
}

#footer #footerDrugs {
    width: 730px;
}

#startingLetter {
    font-size: 16px;
    line-height: 20px;
    text-decoration: none;
    font-style: normal;
}

#startingLetter a, #startingLetter a:visited {
    font-weight: bold;
    text-decoration: underline;
    font-style: normal;
}

/* THE END */
