/*
this style sheet should be linked to every page and contains:
- a style reset for most elements
- spacing and dimensional formatting for site-wide structural div's and html elements
- site-wide base typographical styles
- complete header and footer formatting
*/


/* ==== START all element style reset ==== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, div, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-family: inherit;
	vertical-align: top;
}

/* General links */

a:link {color:#3399CC;
text-decoration:none;}      /* unvisited link */
a:visited {color:#3399CC;
text-decoration:none;}  	/* visited link */
a:hover {color:#404142;
text-decoration:underline;} /* mouse over link */
a:active {color:#3399CC;}  	/* selected link */

img {
	margin-left: 3px;
	margin-right: 3px;
	padding: 0;
	border: 0;
	}

ol, ul {
	list-style: none;
	list-style-position: 0;
	list-style-image:url(../images/boly-welch-bullet.gif)
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}

caption, th, td {
	text-align: left;
	font-weight: normal;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

/* ====  END style reset ==== */


/* ====  START general element formatting  === */

body {
    padding-bottom: 20px;
    text-align: center;
	background-color:#F4F7FC;


    }

/*
NOTE: the 'text-align: center;' is a catch-all just in case a browser doesn't render 'margin: 0 auto;' correctly. The auto margin is applied to the 'container' div along with 'text-align: left;'. 
*/

h1, h2, h3, h4, h5, h6 {
    font-family: "Trebuchet MS", lucida grande, verdana, sans-serif;
    font-weight: bold;
    }
    
h1 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 20px;
		color:#3399CC;

    }

h2 {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 18px;
	color:#3399CC;
	
	
    }

h3 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
		color:#404142;

    }

h4 {
    margin-bottom: 2px;
    font-size: 12px;
    line-height: 12px;
    }

h5 {
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 20px;
	color:#3399CC;
    }

h6 {
    font-size: 10px;
    line-height: 12px;
    }


p {
	font-family:Arial, Helvetica, sans-serif;
	margin-bottom: 15px;
    font-size: 12px;
    line-height: 16px;
	color:#404142;
	
    }
    
table {
    width: 100%;
    margin-bottom: 15px;
    }

th, td {
    padding: 5px 0;
    line-height: 16px;
    }

td.product-img {
    width: 100px;
    }

.item {
    width: 35%;
    font-weight: bold;
    }

.desc {
    width: 65%;
    }
    
th {
    width: 35%;
    padding-right: 15px;
    font-weight: bold;
    font-size: 12px;
    }
    

ol, ul {
    margin-bottom: 20px;
    }

ol {
    margin-left: 45px;
    list-style: decimal outside;
    }

ul {
	list-style-position: inside;
	margin-left: 16px
    }

li {
    font-family:Arial, Helvetica, sans-serif;
	margin-bottom: 5px;
	font-size: 12px;
    line-height: 14px;
	color:#404142;
    }

.sidebar ul li {
    margin-bottom: 2px;
    }

/* nested <ul> level 2 */
ul li ul {
    margin: 5px 0 5px 12px;
    font-size: 10px;
    }

/* nested <ul> level 3 */
ul li ul li ul {
    margin: 4px 0 4px 16px;
    font-size: 10px;
    }

/* optional class for bulleted list */
ul.bullet-list {
    margin-left: 40px;
    list-style: circle outside;
    }


/*
NOTE: Rather than add font-size, line-height and other typgraophic formatting to <dd> elements, use <p>, <ul> and other tags to mark-up content within <dd> and utilize <dd> for structure if necessary.
dd { }
*/

dt {
    font-size: 12px;
    font-weight: bold;
    line-height: 14px;
    margin-bottom: 3px;
    }

blockquote {
    padding: 0 20px 20px 20px;
    }

/*
NOTE: Rather than using <em> for italic or oblique, it is set to bold for emphasizing text in its inherited color. <strong> is used for bold text set in the Business Unit accent color, which is applied in the BU specific style sheet.
*/



strong {
    font-weight: bold;
    }

img,
p img {
    margin-bottom: 10px;
    display: inline;
    }

p img {
    float: left;
    }

img.no-margin {
    margin: 0;
    }


/* ===  START structural div formatting  === */

/*
NOTE: 'Container' divs are used for float position and setting widths. That way, we can nest a 'column' div within the 'container' and apply padding, vertical borders in the background, etc. to the 'column' without breaking the layout.

IMPORTANT: The rendering of each column is dictated by its parent div.
*/
#home, #hometop, #homebottom {
    width: 960px;
    margin: 0 auto;
    text-align: center;
    }
	
#hometop {
	border-top: 1px;
	border-top-style:solid;
	border-top-color:#b7d767;
	padding-top:30px;
    width: 960px;
    margin: 0 auto;
    text-align: center;
    }
	
#homecontent {
	text-align: left;
    }

#homefooter{
	border-top: 1px;
	border-top-style:solid;
	border-top-color:#b7d767;
	margin-top:20px;
	text-align:center;
	padding-top:10px;
    }
	
#address{
	margin-top:20px;
	text-align:center;
	padding-top:10px;
	}

#metanav { 
	text-align:right;
	margin-left:850px;

	}
	
#container {
    width: 960px;
    margin: 0 auto;
    text-align: left;
    }
	
#content {
    width: 960px;
    margin: 0 auto;
    text-align: left;
    }

/* header */

#header {
    width: 960px;
    padding-bottom: 15px;
	padding-top:20px;
	height:100px;
	    margin: 0 auto;

    }

#logo {
	width:234px;
	height:76px;
	float:left;
	padding-right:15px;
	margin-top:-15px;
    }


#container .column-1-container {
    width: 550px;
    float: left;
    }

#container .column-2-container {
    width: 330px;
    float: right;
    }
.masthead img {
	padding-bottom:15px;
    margin: 0 auto;
	}


/* footer */

#footer {
    margin-top: 40px;
    width: 960px;
	text-align:center;
	margin: 0 auto;
    }

#footer .logo {
float:right;

    }
