/********************************************
HTML ELEMENTS
********************************************/
/* top elements */
* { margin: 0; padding: 0; outline: 0; } /*sets no padding or margin around the body of our document*/
 
body {
background-color: #E2E7F4; /*website background color (pale blue)*/
color: #333333; /*sets our text color for our website*/
margin: 2px 0; /*sets no padding and a 15px margin around the body of our document*/
font-family: Verdana, Tahoma, arial, sans-serif; /*sets the font family for our website*/
font-size: 70%;
line-height: 1.2em; /*sets the height between each line of text.*/
}

hr {
margin-top: 10px;
margin-bottom: 10px;
margin-right: 15px;
margin-left: 15px;
color: #442121;
}

table {
border: 1px;
}

td {
text-align: left;
font-family: Verdana;
font-weight: normal;
font-size: 12px;
text-indent: 15px;
line-height: 15px;
border: 2px;
}

td.header { 
text-align: center;
font-size: 15px;
border: 2px;
color: #442121;

}

/********************************************
WEBSITE LAYOUT
********************************************/
#wrap {
width: 968px; /*width of our wrap*/
background: #FFFFFF url(images/968content.png) repeat-y center top; /*sets our background color to white and uses content.png as a background, the background is also repeated along the Y axis*/
margin: 0 auto; /*center our margin to auto will center our website*/
text-align: left; /*aligns our text to the left*/
}
#content-wrap {
clear: both; /*The clear property sets the sides of an element where other floating elements are not allowed.*/
width: 968px; /*width of our wrap*/
margin: 0; /*sets our top margin at 2 pixels and the rest to auto*/
padding: 0; /*sets 0 padding*/
}
#header {
position: relative; /*An element with position: relative moves an element relative to its normal position, so "left:20" adds 20 pixels to the element's LEFT position*/
height: 130px; /*sets our header height, this should be the same as our header image*/
width: 968px;
background: #ffffff url(images/968head.png) no-repeat center top; /*sets a background behind our header and sets our header image onto the page*/
padding: 0; /*no padding is needed*/
}
#header img {
margin-left: 133px;
margin-top: 23px;
border: 2px solid #000000;
}



/********************************************
WEBSITE NAVIGATION
********************************************/
#menu {
clear: both; /*No floating elements allowed on either the left or the right side*/
margin: 0; /*Margins*/
padding: 0; /*Padding*/
overflow:hidden;
background: #ffffff url(images/968nav.png) no-repeat; /*Our menu background*/
height: 33px; /*The height of the menu */
width: 968px; /*The width of the menu */
font-family: Verdana, Arial, Helvetica, sans-serif; /*The font family*/
font-size: 15px; /*The font size*/
line-height: 33px; /* bumps the minimum space between lines to 31 pixels,
					essentially centering the text in the vertical center of the menu */ 
}

#menu ul {
float: left; /*Floats our menu to the left*/
list-style: none;
margin:0; padding: 0 0 0 20px;
position:relative;
left:50%;
text-align:center;
}

#menu ul li {
display: inline; /*The element will be displayed as an inline element, with no line break before or after the element*/
float:left;
position:relative;
right:50%;
text-align:center;
}

#menu ul li a {
display: block;
float: left;
padding: 0 12px;
color: #442121; /*Font color*/
text-decoration: none;
}
#menu ul li a:hover {
color: #2548A8; /*Mouseover hover color*/
}



/********************************************
FULL WIDTH PAGE 
********************************************/
#full {
clear: both;
width: 968px; /*gives our content area a width of 968pixels*/
padding: 0 0 0 0;
margin-bottom: 20px;
}

#full img {
background: #fff;
border: 1px solid #442121;
padding: 5px;
}
 
img.float-right { margin: 5px 0px 10px 10px; }
img.float-left { margin: 5px 10px 10px 0px; }
img.center { margin: 5px 5px 5px 5px; }
img.bottles { margin: 40px 40px 40px 40px;}
 
#full h1 {
color: #333333;
margin-left: 10px;
margin-bottom: 8px;
text-align: center;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 190%;
font-style: normal;
font-weight: bold;
}
 
 
#full h2 {
padding: 0;
margin-bottom: 3px;
text-align: center;
color: #442121;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 175%;
font-style: normal;
font-weight: bold;
text-align: center;
}

#full h2 a {
color: #2548A8;
text-decoration: none;
}

#full h3 {
padding: 0;
margin-bottom: 0;
text-align: center;
color: #442121;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 150%;
font-style: normal;
font-weight: bold;
line-height: 15px;
}

#full h3 a {
color: #2548A8;
text-decoration: none;
}
#full h4 {
color: #442121;
margin-left: 10px;
margin-right: 20px;
}

#full ul {
list-style-image: url(/images/cone.png);
} 
#full p {
margin-left: 35px;
margin-right: 35px;
line-height: 1.5em;
} 

#full h1, #full h2, #full h3, #full ol, #full ul,
#full blockquote, #full table, #full form {
margin-left: 25px;
margin-right: 20px;
}

#full hr {
margin-right: 22px;
}

#fullTable {
width: 90%
}


/********************************************
MAIN COLUMN
********************************************/
#main {
float: right; /*floats our main content area to the right*/
width: 638px; /*gives our content area a width of 490pixels*/
padding: 10px 0 0 0;
margin-bottom: 20px;
margin-right: 10px;
display: inline;
}

#main img {
background: #fff;
border: 1px solid #442121;
padding: 5px;
}
 
img.float-right { margin: 5px 0px 10px 10px; }
img.float-left { margin: 5px 10px 10px 0px; }
img.center { margin: 5px 5px 5px 5px; }
 
#main h1 {
color: #333333;
margin-left: 10px;
margin-bottom: 8px;
text-align: left;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 190%;
font-style: normal;
font-weight: bold;
}
 
 
#main h2 {
padding: 0;
margin-bottom: 3px;
text-align: center;
color: #442121;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 175%;
font-style: normal;
font-weight: bold;
text-align: center;
}

#main h2 a {
color: #2548A8;
text-decoration: none;
}

#main h3 {
padding: 0;
margin-bottom: 0;
text-align: center;
color: #442121;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 150%;
font-style: normal;
font-weight: bold;
line-height: 15px;
}

#main h3 a {
color: #2548A8;
text-decoration: none;
}
#main h4 {
color: #442121;
text-align: center;
margin-left: 10px;
margin-right: 20px;
}

#main ul {
margin-left: 10px;
list-style-image: url(/images/cone.png);
}



 
#main p {
margin-left: 5px;
margin-right: 30px;
line-height: 1.5em;
} 

#main h1, #main h2, #main h3, #main ol, #main ul,
#main blockquote, #main table, #main form {
margin-left: 25px;
margin-right: 20px;
}

#mainTable {
width: 608px;
margin-left: -10px;
margin-right: 20px;
border: 1px;
} 


/********************************************
SIDEBAR
********************************************/
#sidebar {
float: left;
width: 300px;
padding: 0;
color: #000000;
margin-top: 5px;
margin-right: 0;
margin-bottom: 20px;
margin-left: 10px;

}
#sidebar img {
background: #fff;
border: 0;
padding: 0px;

}


img.float-right { margin: 5px 0px 10px 10px; }
img.float-left { margin: 5px 10px 10px 0px; }
img.center { margin: 0px 0px 0px 0px; }
img.fbook { margin: 0px 0px 0px 78px; }
img.twit { margin: 0px 0px 0px 68px; }
img.w3c { margin: 0px 0px 0px 60px; }
 
#sidebar h1, h2, h3 {
margin: 10px 10px;
padding: 0;
text-align: center;
}
#sidebar ul, ol {
margin: 3px 10px;
padding: 0 25px;
font-size: 115%;
line-height: 1.3em;
list-style-image: url(/images/cone.png);
}

#sidebar h3 {
margin: 2px 2px 2px 2px;
font: bold 1.2em 'Trebuchet MS', Tahoma, Sans-serif;
color: #333333;
letter-spacing: 1.2px;
text-align:center;
}

#sidebar h4 {
margin: 15px 5px 5px 5px;
font: 1.1em 'Trebuchet MS', Tahoma, Sans-serif;
color: #333333;
}
#sidebar h3 a {
color: #2548A8;
text-decoration: none;
}

#sidebar p {
margin-left: 10px;
margin-right: 10px;
}
#sidebar ul.sidemenu {
list-style: none;
text-align: left;
margin: 7px 10px 8px 0; padding: 0;
text-decoration: none;

}
#sidebar ul.sidemenu li {
list-style: none;
padding: 4px 0 4px 5px;
margin: 0 2px;
color: #000000;
border-bottom: 1px solid #333333;
}
* html body #sidebar ul.sidemenu li {
height: 1%;
}
#sidebar ul.sidemenu li a {
text-decoration: none;
color: #442121;
}
#sidebar ul.sidemenu li a:hover {
color: #333333;
}
#sidebar ul.sidemenu ul { margin: 0 0 0 5px; padding: 0; }
#sidebar ul.sidemenu ul li { border: none; }


#sidebar form {
margin-left: 30px;
margin-right: 10px;
} 
 
 
 
 
/********************************************
FOOTER
********************************************/

#footer {
clear: both;
display: block;
width: 968px;
height: 70px;
overflow:hidden;
background: #ffffff url(images/968foot.png) no-repeat center top;
text-align: center;
font-size: 90%;
line-height: 28px; /* bumps the minimum space between lines to 31 pixels,
					essentially centering the text in the vertical center of the menu */
}
#footer p {
padding: 3px 0;
margin: 0;
}

#footer h5 {
padding: 0;
margin-bottom: 0;
color: #ffffff;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 75%;
font-style: normal;
font-weight: bold;
}

#footer a {
color: #442121;
text-decoration: none;
}
#footer ul {
float: left; 
list-style: none;
margin:0; padding: 0 0 0 20px;
position:relative;
left:50%;
text-align:center;

}
#footer ul li {
display: inline; /*The element will be displayed as an inline element, with no line break before or after the element*/
float:left;
position:relative;
right:50%;
text-align:center;
}
#footer ul li a {
display: block;
float: left;
padding: 0 12px;
color: #442121; /*Font color*/
text-decoration: none;
}
#footer ul li a:hover {
color: #2548A8; /*Mouseover hover color*/
}
 
/* alignment classes */
.float-left { float: left; }
.float-right { float: right; }
.align-left { text-align: left; }
.align-right { text-align: right; }
 
/* display and additional classes */
.clear { clear: both; }


/********************************************
WEBSITE LINKS
********************************************/
a, a:visited {
text-decoration: none;
background: inherit;
color: #CE2D30;
}
a:hover {
text-decoration: underline;
background: inherit;
color: #2548A8;
}
 
/********************************************
WEBSITE TEXT HEADERS
********************************************/
h1, h2, h3 { font-family: 'Trebuchet MS', Tahoma, Sans-serif; }
h1 {
font-size: 180%;
font-weight: normal;
color: #555;
}
h2 {
font-size: 160%;
color: #442121;
font-weight: normal;
}
h3 {
font-size: 135%;
color: #442121;
}

