@charset "UTF-8";


/***********************************
          LAYOUT STYLES
***********************************/

body  {
	background: #000;
	margin: 0; /* zero margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* center the container in IE 5* browsers */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
}
#container { 
	width: 765px;  /* using less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #514a44;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	background: url(../images/header.jpg) no-repeat;
	height: 137px;
	background-color: #000;
} 
#header h1 {
	margin: 0; /* prevent margin collapse */
	text-indent: -1000px; /* move off-screen */ 
}
#header h2 {
	text-indent: -1000px; /* move off-screen */ 
}
#sidebar {
	float: left;
	width: 180px; /* accommodate graphics */
	background: #514a44;
}
#sideTop {
	height: 162px;
	background: url(../images/leftCol_top.jpg) no-repeat;
}
#sideBottom {
	height: 428px;
	background: url(../images/leftCol_bottom.jpg) no-repeat;
}
#sideBottom p {
	text-indent: -1000px; /* move off-screen */ 
}
#mainContent {
	margin: 0 0 0 180px; /* left margin for sidebar area */
	padding: 0 0px 0 0px; /* space inside the div box */
	border-right: 20px solid #817873;
} 
#mainContent h1,p {
	margin: 0; /* prevent margin collapse */
}
#contentBackground {
	background: #8a8581;
	margin-right: 20px;
	height: 715px;
} 
#footer {
	border-top: thin dashed #333;
	padding: 8px 10px 10px;
	margin-top: 15px;
} 
#footer p {
	margin: 0; /* prevent margin collapse */
} 
#footer span {
	margin-right: 200px;
}

/***** STANDARD FLOAT ELEMENTS *****/
.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;
}

/***********************************
        PRESENTATION STYLES
***********************************/

/***** Note: left margin set in header styles to match #contentBackground p *****/
/***** h tags in serif face to coordinate with font in header graphic *****/
h1 {
	font-family: "Times New Roman", Times, serif;
	font-size: 2em;
	font-weight: bold;
	color: #FFF;
	margin-left: 10px;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.5em;
	font-weight: bold;
	color: #FFF;
	margin-left: 10px;
	font-style: italic;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #FFF;
	margin-left: 10px;
	margin-bottom: 0;
}
h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #FFF;
	font-style: italic;
	margin-left: 10px;
	margin-bottom: 0;
}
p {
	font-size: 0.95em;
	line-height: 1.2em;
	color: #FFF;
	text-align: justify;
}
#contentBackground p {
	margin-right: 10px;
	margin-left: 10px;
	padding-top: 10px;
}
li {
	list-style-image: url(../images/bullet.png);
	font-size: 0.95em;
	line-height: 1.2em;
	color: #FFF;
}

/***** NAVIGATION *****/
a:link {
	text-decoration: none;
	color: #FFFFCC;
}
a:visited {
	text-decoration: none;
	color: #FFFFCC;
}
a:hover {
	color: #FFFF99;
	text-decoration: underline;
}

/***** NAVIGATION ROLLOVERS *****/
/* Graphics use "Pixy" technique, repositioning for rollover states. Use current class on respective pages to display graphic indicating current page active with default mouse */
#navHome a {
	background: url(../images/navHome.jpg) no-repeat;
	height: 25px;
	display: block;
}
#navHome a:hover {
	background-position: -180px 0px;
}
#navHome a.current {
	background-position: top right;
	cursor:default;  
}
#navPractice a {
	background-image: url(../images/navPractice.jpg);
	height: 25px;
	display: block;
}
#navPractice a:hover {
	background-position: -180px 0px;
}
#navPractice a.current {
	background-position: top right;
	cursor:default;  
}
#navProfile a {
	background-image: url(../images/navProfile.jpg);
	height: 25px;
	display: block;
}
#navProfile a:hover {
	background-position: -180px 0px;
}
#navProfile a.current {
	background-position: top right;
	cursor:default;  
}
#navLinks a {
	background-image: url(../images/navLinks.jpg);
	height: 25px;
	display: block;
}
#navLinks a:hover {
	background-position: -180px 0px;
}
#navLinks a.current {
	background-position: top right;
	cursor:default;  
}
#navContact a {
	background-image: url(../images/navContact.jpg);
	height: 25px;
	display: block;
}
#navContact a:hover {
	background-position: -180px 0px;
}
#navContact a.current {
	background-position: top right;
	cursor:default;  
}
#navHome,#navPractice,#navProfile,#navLinks,#navContact p {
	text-indent: -1000px; /* move text links off-screen */ 
}

