@charset "UTF-8";


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

body {
	font: 14px Verdana, Arial, Helvetica, sans-serif;
	background: #996;
	margin: 0; /* zero the margin and padding for differing browser defaults */
	padding: 0;
	text-align: center; /* centers container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
}
#container {
	width: 780px;  /* allow for browser chrome and avoid a horizontal scroll bar */
	background: #FFF;
	background-image: url(../images/contentBack.gif);
	background-repeat: repeat-y;
	margin: 0 auto;
	text-align: left;
}
#header {
	background-color: #996;
	background-image: url(../images/header.gif);
	height: 105px;
}
#header h1 {
	margin: 0; /* prevent margin collapse */
	text-indent: -1000px; /* move off-screen */
}
#bar { /* forms decorative element at between header and main content */
	background: #996;
	height: 10px;
	border-right: 2px solid #600;
	border-left: 2px solid #600;
}
#border { /* provides right, left and bottom content borders */
	border-right: 2px solid #600;
	border-left: 2px solid #600;
	border-bottom: 2px solid #600;
}
#navbar {
	float: left; /* since this element is floated, width is specified */
	width: 200px;
	padding-left: 7px;
}
#mainContent {
	margin: 0 0 0 220px; /* the left margin on this div element creates the column down the left side of the page */
	padding: 0 20px;
}
#mainContent h1,h2 {
	margin: 0; /* prevent margin collapse */
	padding-top: 10px;
}
#footer {
	border-top: 2px solid #c3c39b;
	padding: 5px;
}
#footer p {
	margin: 0; /* prevent margin collapse */
	font-size: 0.75em;
}

/***** STANDARD FLOAT ELEMENTS *****/
.fltrt { /* float an element right */
	float: right;
	margin-left: 8px;
}
.fltlft { /* float an element left */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* 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: #600;
}
h2 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.3em;
	font-weight: bold;
	color: #600;
	font-style: italic;
	text-align: justify;
}
h3 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1.1em;
	font-weight: bold;
	color: #600;
	margin-bottom: 0;
	font-style: italic;
}
h4 {
	font-family: "Times New Roman", Times, serif;
	font-size: 1em;
	font-weight: bold;
	color: #600;
	font-style: italic;
	margin-bottom: 0;
}
p {
	font-size: 0.94em;
	line-height: 1.2em;
	text-align: justify;
}
li {
	list-style-image: url(../images/bullet.gif);
	font-size: 0.93em;
	line-height: 1.2em;
}
.contactInfo {
	color: #330;
	text-align: right;
	padding-right: 10px;
	font-size: 0.9em;
}
.practiceMenu {
	text-align: center;
	margin-top: 3px;
	margin-bottom: 3px;
}
.mouseType {
	font-size: 0.8em;
}

/***** NAVIGATION *****/
a:link {
	text-decoration: none;
	color: #600;
}
a:visited {
	text-decoration: none;
	color: #600;
}
a:hover {
	color: #330;
	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;
	border-bottom: 2px solid #996;
}
#navHome a:hover {
	background-position: -200px 0px;
}
#navHome a.current {
	background-position: top right;
	cursor: default;  
}
#navProfile a {
	background-image: url(../images/navProfile.jpg);
	height: 25px;
	display: block;
	border-bottom: 2px solid #996;
}
#navProfile a:hover {
	background-position: -200px 0px;
}
#navProfile a.current {
	background-position: top right;
	cursor:default;  
}
#navPractice a {
	background-image: url(../images/navPractice.jpg);
	height: 25px;
	display: block;
	border-bottom: 2px solid #996;
}
#navPractice a:hover {
	background-position: -200px 0px;
}
#navPractice a.current {
	background-position: top right;
	cursor:default;  
}
#navDir a {
	background-image: url(../images/navDir.jpg);
	height: 25px;
	display: block;
	border-bottom: 2px solid #996;
}
#navDir a:hover {
	background-position: -2000px 0px;
}
#navDir a.current {
	background-position: top right;
	cursor:default;  
}
#navContact a {
	background-image: url(../images/navContact.jpg);
	height: 25px;
	display: block;
	border-bottom: 2px solid #996;

}
#navContact a:hover {
	background-position: -200px 0px;
}
#navContact a.current {
	background-position: top right;
	cursor:default;  
}
#navHome,#navProfile,#navPractice,#navDir,#navContact p {
	text-indent: -1000px; /* move text links off-screen */ 
}

