/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, 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. */
@import url("extra.css");
@import url("dropdown.css");

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	margin-top: 0px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
/* 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. */
body {
	background-color: #e4ce92;
	color: #2c2c2e;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-x;
	background-position: top;
}
/* Commonly used to style page titles. */
h1 {
	color: #bb858e;
	font-size: 24px;
	font-weight: normal;
	line-height: 14px;
	font-family: Georgia, "Times New Roman", Times, serif;
	padding-top: 10px;
}
/* Commonly used to style section titles. */
h2 {
  color: #bb858e;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style images. */

img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	text-align: center;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #960;
	font-weight: normal;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #000;
	font-weight: normal;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #960;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #960;
}
/* 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. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 844px;
	background-color: #FFFFFF;
	padding: 0px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#outerWrapper #header {
	background-color: transparent;
	font-weight: bold;
	line-height: 15px;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	background-image: url(../images/top.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	height: 85px;
	text-align: right;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}
#outerWrapper #contentWrapper #rightColumn1 {
	background-color: #f7f9dd;
	border-left: solid 1px #9db368; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px 10px 10px 10px;
	min-height:100%;
	width: 14em;
}
#outerWrapper #contentWrapper #rightColumn1 h1 {
	color: #066D7C;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.5em;
	line-height: 1.5em;
	font-weight: normal;
	padding-top: 10px;
	padding-bottom: 5px;

}
#outerWrapper #contentWrapper #rightColumn1 li {
	color: #066D7C;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	font-weight: normal;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #E6E1DB;
	padding-top: 5px;
	padding-bottom: 5px;

}

#outerWrapper #contentWrapper #rightColumn1 li a {
	color: #695732;

}



#outerWrapper #contentWrapper div#leftColumn1 {
	background-color: #FFFFFF; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 32em;
	padding-top: 25px;
	padding-right: 10px;
	padding-bottom: 13px;
	padding-left: 10px;
	margin-left: 5px;
	margin-top: 5px;
	overflow: hidden;
	color: #096F7E;
	background-image: url(../images/startburst.png);
	background-repeat: no-repeat;
	background-position: left top;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	background-color: #FFFFFF;
	margin-top: 5px;
	margin-bottom: 0px;
	margin-left: 5px;
	float: right;
	margin-right: 5px;
	clear: right;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#outerWrapper #footer {
	padding: 5px;
}
#outerWrapper #contentWrapper #leftColumn1 h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #0C707F;
	line-height: 32px;
	font-size: 32px;
	font-weight: normal;
}
#outerWrapper #contentWrapper #leftColumn1 h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: #096F7E;
	line-height: 16px;
	font-size: 16px;
}
#outerWrapper #contentWrapper #leftColumn2 {
	width: 15em;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 23px;
	padding-left: 20px;
	margin-left: 5px;
	margin-top: 5px;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	overflow: hidden;
}
#outerWrapper #contentWrapper #leftColumn2 h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #000000;
	font-weight: bold;
	padding-bottom: 5px;
}
#outerWrapper #contentWrapper #leftColumn2 p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 3px;
}
#outerWrapper #contentWrapper #midBox {
	background-color: #F3EBD1;
	margin-top: 15px;
	width: 615px;
	float: right;
	border: 1px solid #cfc9b5;
	margin-right: 5px;
	margin-left: 5px;
	padding: 5px;
	height: auto;
	margin-bottom: 15px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}


#footer {
	width: 844px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}
#footer a:link {
	text-decoration: underline;
	color: #000000;
}
#footer a:hover {
	text-decoration: none;
	color: #000000;
}

#outerWrapper #contentWrapper #leftColumn3 {
	background-color: #9d986d; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 15em;
	padding-top: 18px;
	padding-right: 0px;
	padding-bottom: 23px;
	padding-left: 20px;
	margin-left: 5px;
	margin-top: 5px;
	color: #FFFFFF;
	overflow: hidden;
	clear: right;
}
	div.page_module{
	float:left;
		}
#outerWrapper #contentWrapper #leftColumn2b {
	width: 16.76em;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-left: 5px;
	margin-top: 5px;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	overflow: hidden;
	background-color: #F1F1E8;
}
#outerWrapper #contentWrapper div#leftColumn1b {
	width: 15em;
	padding-top: 18px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin-left: 5px;
	margin-top: 5px;
	overflow: hidden;
	color: #000;
	background-repeat: no-repeat;
	background-position: left top;
	font-weight: bold;
}
#outerWrapper  #contentWrapper  #leftColumn1b  h1 {
	font-family: Arial, Helvetica, sans-serif;
	color: #0C707F;
	line-height: 24px;
	font-size: 20px;
	font-weight: bold;
}
#outerWrapper #contentWrapper #leftColumn1b h2 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #066D7C;
	line-height: 16px;
	font-size: 14px;
}

#outerWrapper #contentWrapper div#leftColumn1c {
	background-color: #FFFFFF; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 15em;
	padding-top: 25px;
	padding-right: 10px;
	padding-bottom: 13px;
	padding-left: 10px;
	margin-left: 5px;
	margin-top: 5px;
	overflow: hidden;
	color: #096F7E;
	background-image: url(../images/startburst.png);
	background-repeat: no-repeat;
	background-position: left top;
}

#outerWrapper #contentWrapper #leftColumn1c h1 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #0C707F;
	line-height: 22px;
	font-size: 22px;
	font-weight: normal;
}
#outerWrapper #contentWrapper #leftColumn1c h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: #096F7E;
	line-height: 16px;
	font-size: 16px;
}
#subtitle {
	MARGIN-TOP: 0px;
	MARGIN-LEFT: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 1.5em;
	color: #394A59;
	font-weight: normal;
	line-height: 1.2em;
}
#topContent {
	font-size: 13px;
	width: 600px;
	margin-left: 15px;
	margin-top: 15px;
	float: left;
	clear: left;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #538F97;
	padding-bottom: 15px;
}
#topContentLast {
	font-size: 13px;
	width: 600px;
	margin-left: 15px;
	margin-top: 15px;
	float: left;
	clear: left;
	padding-bottom: 15px;
}

/* These tags are intended for use with the bottom content for all other pages*/
#outerWrapper #contentWrapper #contentBottom {
	background-color: #f7f4e8;
	margin-top: 5px;
	margin-bottom: 5px;
	margin-right: 5px;
	margin-left: 5px;
	float: right;
	width: 628px;
	text-align: left;
	padding-bottom: 15px;
}

#outerWrapper #contentWrapper #contentBottom h1 {
	font-size: 24px;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000;
	padding-bottom: 7px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBottom p {
	padding-right: 10px;
	padding-left: 10px;
	text-align: left;
}
#outerWrapper #contentWrapper #contentBottom h2 {
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	padding-bottom: 0px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBottom li {
	list-style-type: disc;
	text-indent: 30px;
}
#outerWrapper #contentWrapper #contentBottom ul {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 30px;

}
#outerWrapper #contentWrapper #contentBottom h3 {
	font-size: 16px;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #C29432;
	padding-bottom: 7px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBottom h4 {
	font-size: 16px;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #C29432;
	padding-left: 10px;
	line-height: 16px;
}

#outerWrapper #contentWrapper #contentBottom hr {
	height: 1px;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #CCCCCC;
}

/* These tags are intended for use with the Smile Gallery content */
#outerWrapper #contentWrapper #contentBottomSM {
	background-color: #FFFFFF;
	margin-top: 5px;
	margin-bottom: 0px;
	margin-right: 5px;
	margin-left: 5px;
	float: right;
	width: 628px;
}
#outerWrapper  #contentWrapper  #contentBottomSM   img {
	
	margin: 2px;
	padding: 0px;
}
#outerWrapper #contentWrapper #contentBottomSM h1 {
	font-size: 24px;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #0C707F;
	padding-bottom: 7px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBottomSM p {
	padding-right: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBottomSM h2 {
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	padding-bottom: 0px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBottomSM li {
	list-style-type: disc;
	text-indent: 30px;
}
#outerWrapper #contentWrapper #contentBottomSM ul {
	padding: 0px;

}
#outerWrapper #contentWrapper #contentBottomSM h3 {
	font-size: 16px;
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #C29432;
	padding-bottom: 7px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentBottomSM hr {
	height: 1px;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background-color: #CCCCCC;
}
#outerWrapper #contentWrapper #contentBottom table tr td h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: normal;
	color: #026C7C;
	line-height: 16px;
}
#outerWrapper #contentWrapper #content #tag {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-weight: normal;
	position: absolute;
	display: block;
	width: 325px;
	line-height: 24px;
	margin-left: 275px;
	margin-top: 50px;
	color: #026C7C;
	text-align: right;
	margin-right: 15px;
}
.address {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px;
	color: #036D7B;
	font-weight: normal;
}
#outerWrapper #contentWrapper #contentBottom #colLeft {
	float: left;
	width: 300px;
	padding-right: 6px;
	padding-left: 10px;
	padding-top: 15px;
}
#outerWrapper #contentWrapper #contentBottom #colRight {
	float: right;
	width: 299px;
	padding-right: 10px;
	padding-left: 0px;
	padding-top: 15px;
}
#outerWrapper #contentWrapper #contentBottom #colLeft .img {
	height: 94px;
	width: 94px;
	float: left;
	clear: left;
	border: 1px solid #E3E1DF;
}
#outerWrapper #contentWrapper #contentBottom #colLeft .txt {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #900;
	float: right;
	width: 200px;
	line-height: 18px;
}
#outerWrapper #contentWrapper #contentBottom #colLeft .sep {
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #e3e1df;
	width: 300px;
	height: 10px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	float: left;
}
#outerWrapper #contentWrapper #contentBottom #colRight .img {
	height: 94px;
	width: 94px;
	float: left;
	clear: left;
	border: 1px solid #E3E1DF;
}
#outerWrapper #contentWrapper #contentBottom #colRight .txt {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	color: #900;
	float: right;
	width: 200px;
	line-height: 18px;
}
#outerWrapper #contentWrapper #contentBottom #colRight .sep {
	border-bottom-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-bottom-color: #e3e1df;
	float: left;
	width: 300px;
	height: 10px;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
#outerWrapper #contentWrapper #contentBottom #colLeft .txt a {
	color: #900;
}
#outerWrapper #contentWrapper #contentBottom #colRight .txt a {
	color: #900;
}
#outerWrapper #contentWrapper #contentBottom #form1 h3 .right {
	color: #000;
	float: right;
	font-size: 11px;
	font-family: Arial, Helvetica, sans-serif;
}

#outerWrapper #contentWrapper #contentBottom img {
}
#outerWrapper #contentWrapper #contentBottom #img {
	margin-right: auto;
	margin-left: auto;
	width: 344px;
}
