/* These rules reset a core set of elements so that they will appear consistent across browsers. Without these rules, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
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, em, font, img, 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; /* Sets the margin properties for an element using shorthand notation */
	padding: 0; /* Sets the padding properties for an element using shorthand notation */
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}
:focus {outline: 0;} /* remember to define focus styles! */
body {
	line-height: 1em;
	color: black;
	background: white;
}
ol, ul {list-style: none;}
/* 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: "" "";
}
strong {font-weight:bold}
em {font-style:italic;}
/***** END:Core Style Resets *****/

/***** Always show vertical scrollbar to prevent content jumping *****/
html {overflow-y:scroll;}

/*mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Generic Style Definitions - These are classes that can be applies to any element to achieve the desired result. 
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/
.floatRight {float:right;}
.floatLeft {float:left;}
img.floatLeft {margin:0;}
img.floatRight {margin:0;}
.clear{clear:both;}
.allCaps {text-transform:uppercase;}
.alignRight {text-align:right;}
.alignLeft {text-align:left;}
.alignCenter {text-align:center;}
.noListStyle {list-style:none !important;}
.smallText {font-size:.8em;}
.normalText {font-size:1.2em;}
.largeText {font-size:1.6em;}
.border {border:1px solid #c6c5c1; margin:6px;}
.smallForm {font-size:.8em;}
.noMargin {margin:0 !important;}
.bold {font-weight:bold;}
.darkgrayText {color:#4c4d4f;}
.blueText {color:#4b8fcc;}

/*mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Column Setup - These classes are applied to the BODY element and determine column proportions and visibility on the given page. 
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/
div#contentWrapper {position:relative;}
div#contentarea, .leftColumn, .rightColumn {overflow:hidden;}
.leftColumn {float:left;}
div#contentarea, .rightColumn {float:right;}
body.splitTwoColumn .leftColumn {}
body.splitTwoColumn .rightColumn {}
body.twoColumn .leftColumn {width:220px; margin-right:10px;}
body.twoColumn div#contentarea {width:750px;}
body.twoColumn .rightColumn {display:none;}
body.splitThreeColumn .leftColumn {width:242px;}
body.splitThreeColumn .rightColumn {width:315px;}
body.splitThreeColumn div#contentarea {width:406px;}
body.threeColumn .leftColumn {width:200px; margin-right:30px;}
body.threeColumn .rightColumn {width:285px;}
body.threeColumn div#contentarea {width:435px; margin-right:30px;}

/* mmmmmmmmmmmmmmm Columns in content mmmmmmmmmmmmmm */	
div.twoColumn, div.threeColumn { overflow:visible; width:100% !important; margin-bottom:10px; _clear:both; }
body > div div.twoColumn, body > div div.threeColumn { float:left; } /* WATCH THIS - Removed from IE6 Path */
*+html div.twoColumn, *+html div.threeColumn { clear:both; }
div.twoColumn .column1, div.twoColumn .column2 { float:left; width:48%; overflow:visible; }
.twoColumn .column2 { float:right !important; }
div.threeColumn .column1, div.threeColumn .column2, div.threeColumn .column3 { float:left; width:31%; margin-right:3%; overflow:visible; }
div.threeColumn .column3 { margin-right:0; }

div.twoColumn .column1 {width:435px; margin-right:30px;}
div.twoColumn .column2 {width:285px;}

/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
html {text-align:center;}/* Centers the page content container in IE 5 browsers. */
body {
	background: #fff url(../img/layout/page_bg.jpg) repeat-x left top;
	color:#000;
	font:62.5%/1.4em Helvetica, Arial, Verdana, sans-serif;
	text-align:left; /* Redefines the text alignment defined by the html element. */
}
/* Commonly used to style page titles. */
h1, h2, h3, blockquote {font-family:Times,"Times New Roman",serif;}
h1 {
	font-size:3em;
	line-height:1.2em;
	margin-bottom:.5em;
	color:#013e7f;
}
/* Commonly used to style section titles. */
h2 {
	font-size:1.2em;
	margin:0;
	font-weight:bold;
	color:#4b8fcc;
}
h3 {
	font-size:1.3em;
	margin:0;
	font-weight:bold;
}
/* Sets the default style for links. */
a,  a:link {
	color:#4b8fcc;
	text-decoration: none;
	font-weight:bold;
}
/* Sets the style for links on mouseover. */
a:hover {text-decoration: underline;}

/*Sets font-size relative to body font size */
p, ul, ol, table {font-size:1.2em;}
ul ul {font-size:1em;}

blockquote {
	color:#4b8fcc; 
	margin-bottom:.5em;
	font-size:2em;
	line-height:1.4em;
}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	margin:0 auto;
	width:980px;
	background-color:#fff;
}

/*mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Header Styles - Styles for elements found in the Header of the page. This section includes the site name, preliminary navigation (toolbar), and the search function.  
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/
#pageTopBg {
	background:url(../img/layout/page_top_bg.jpg) no-repeat top center;
	height: 100px;}
#header {position:relative;}
#siteName {overflow:hidden;}
#siteName p{
	position:absolute;
	text-indent:-5000px;
}
.logo {margin:15px auto; display:block;}

/*mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Navigation Styling - Styling for the Left Navigation are contained in this section. The width of the left navigation is controlled by the width of the left column. 
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/
#main_nav {
	font-size:1em;
}
#main_nav li {list-style:none; text-align:center;}
#main_nav a {color:#013e7f; font-weight:bold;}

ul#navigation-1 li {background: url(../img/icons/yellow_star.gif) no-repeat top center; padding-top:20px;}
ul#navigation-1 li  a {padding:5px 0; display:block; margin-bottom:7px;}

/*Nav highlighting */
body#about a#aboutnav,
body#contact a#contactnav,
body#gallery a#gallerynav,
body#press a#pressnav,
body#facts a#factsnav,
body#tips a#tipsnav,
body#mouthguards a#mouthguardsnav {
	color:#4b8fcc;
}
/*mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Content Elements - Styling of the container for the content columns.  
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/
div#contentWrapper {
	clear:both;
}
div#contentWrapper ul {list-style:disc outside;}
div#contentWrapper ol {list-style:decimal inside;}
body.splitThreeColumn div#contentarea {border-left:1px solid #bfbfbf; border-right:1px solid #bfbfbf;}
div#contentarea ul,
div#contentarea ol {
	margin:0 16px 16px;
}
div#contentarea ul ul,
div#contentarea ol {
	margin-bottom:0;
}
div#contentarea ul li {margin-bottom:5px;}
div#contentarea ul li ul li {margin-top:5px;}
div#contentarea .twoColumn {margin-top:20px;}
div#contentarea .twoColumn img {display:block; margin:0 auto;}
div#content {color:#898a8e;}
div#content p {line-height:1.4em; margin-bottom:1em;}

/*mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm
Footer Elements - Styling for the footer and any contained elements. 
mmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmmm*/
div#footer {
	padding:.5em 0;
	color:#4b8fcc;
	margin-top:1em;
	margin-right: 20px;
	clear:both;
	position:relative;
}
div#footer ul#secondary_nav {margin-top:8px; margin-bottom:30px; margin-left: 30px; font-size:1em;}
div#footer ul#secondary_nav li {float:left; border-right:1px solid #4b8fcc; margin:0 3px; padding-right:5px;}
div#footer ul#secondary_nav li:last-child {border-right:0;}
div#footer ul#secondary_nav li a {color:#4b8fcc;}

/*mmmmmmm Social Links mmmmmmm*/
ul.socialLinks {
	position:absolute;
	right:0;
	top:-50px;
}
ul.socialLinks li {
	list-style:none; 
	float:left;
	margin:0 7px;
	height:75px;
	position:relative;
}
ul.socialLinks img {
	position:absolute;
	bottom:0;
}

.facebook {width:62px;}
.youtube {width:65px;}
.twitter {width:94px;}
.posterous {width:40px;}
.finddentist {width:133px;}

.viewmore, .readmore a {color:#4b8fcc;}
    
/*mmmmmmmmmmmmmmmm Multimedia Table Layout mmmmmmmmmmmmmmmm*/
.multimediaTable {border:0;}
.multimediaTable tr {}
.multimediaTable td, 
.multimediaTable th {
	padding:0 12px; 
	vertical-align:middle;
	text-align:left;
}
.multimediaTable th {font-weight:bold;}
.multimediaTable .date {}
.multimediaTable .name {text-align:left;}
.multimediaTable .type {}