@charset "utf-8";
/* CSS Document */
body {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	background-color: #D2D2A6;
	overflow-y: scroll;
}

/*This selector constrains the site to 1024 pixels and centers it in the browser window.*/
table.container {
	width: 1024px;
	position: static;
	margin-left: auto;
	margin-right: auto;
	max-width: 1024px;
}


/*This selector controls the font, color, and size of the "Timothy Miller, Ph.D.".*/
header h1 {
	color: #683802;
	font-family: buenard;
	font-style: normal;
	font-weight: 700;
	margin: 0px;
	font-size: 36px;
}

/*This selector controls the font, color, and size of "Clinical Psychologist".*/
header h2 {
	color: #C38137;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-style: normal;
	font-weight: 700;
	margin-top: -13px;
	margin-right: px;
	margin-left: 256px;
	margin-bottom: -10px;
	font-size: 23px;
}

/*This selector positions the logo of the site.*/
header img {
	float: left;
	margin-bottom: 11px;
	margin-top: 8px;
}

/*This selector aligns the "email address" images with site text.*/
img.emailbody {
	margin-bottom: -5px;
}

/*The following two selectors align the email address at the top of the page*/
table.emailimage {
	float: right;
	margin-right: -8px;
	text-align: right;
}

img.emailimage {
	margin-top : 2px;
}

/*This selector formats the top of the page from the site title to the navigation bars.*/
body header {
	background-color: #D2D2A6;
	height: 130px;
	padding-bottom: 15px;  /*This declaration adds padding between page header and navigation bar.*/
	float: none;
	border-style: none;
	margin-bottom: -54px;
	clear: both;
}

/*This selector formats the contact information in the upper right.*/
aside.ContactInfo {
	text-align: right;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	float: right;
	margin-top: -50px;
	margin-right: 4px;
	font-weight: 500;
	color: #683802;
	font-size: 13px;
	line-height: 1.25em;
	overflow-x: visible;
}

/* The following eight selectors control the background colors of the various categories (menus and page background)   */
.home {
	background-color : #330000;
}
.quals {
	background-color : #148068;
	display: block;
}
.servs {
	background-color : #a44d06;
}
.insur {
	background-color : #69420f;
}
.couns {
	background-color : #175a0e;
}
.contact {
	background-color : #420e5a;
}
.faq {
	background-color : #365b92;
}
.vidther {
	background-color : #741429;
}

/*-----------------------------------------------------------------------------------------------*/
/* The following eleven selectors create the navigation bars.  Editing NOT recommended. */

nav ul {
	/*This selector controls the position of the Main Navigation Buttons*/
	list-style: none;
	position: absolute;
	display: list-item;
	z-index: 5;
	padding-top: 0px;
	margin-left: -20px;
	margin-top: 18px;  /*This declaration controls the vertical position of the nav bar in relation to the content header.  Tread carefully.*/
	
}
nav ul:after {
	content: "";
	clear: both;
	display: block;
}
nav ul li {
	float: left;
	border-radius: 10px 10px 0px 0px;
	border-width: medium;
	margin-right: 7px;
	clear: right;
	position: static;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
nav ul li:hover > ul {
	display: block;
}
nav ul li:hover {
	background-position: top;
}
nav ul li:hover a {
	color: #fff;
	display: inline-block;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
nav ul li a {
	display: inline-block;
	padding-top: 5px;
	padding-right: 25px;
	padding-left: 25px;
	padding-bottom: 6px;
	color: #EFDFA0;
	text-decoration: none;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	border: medium none #FFFFFF;
	font-weight: bold;
	font-size: 13px;
}
nav ul ul {
	/*This formats the submenus*/
	display: none;
	position: absolute;
	top: 100%;
	border-radius: 0px 20px 20px 20px;
	background: inherit;
	padding: 0;
	position: absolute;
	top: 100%;
	margin-left: 0px;
	margin-top: 0px;
}
nav ul ul li {
	/*This is the text within the submenus.*/
	float: none;
	position: relative;
	text-align: center;
	font-size: 12px;
	padding-bottom: 5px;
}
nav ul ul li a {
	padding: 5px 40px;
	color: #fff;
	font-size: 12px;
}
nav ul ul li a:hover {
	border-radius: 20px 20px 20px 20px;
	width: inherit;
	background-image: -webkit-linear-gradient(270deg, rgba(255,255,255,0.35) 0%, rgba(0,0,0,0.32) 100%);
	background-image: -moz-linear-gradient(270deg, rgba(255,255,255,0.35) 0%, rgba(0,0,0,0.32) 100%);
	background-image: -o-linear-gradient(270deg, rgba(255,255,255,0.35) 0%, rgba(0,0,0,0.32) 100%);
	background-image: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(0,0,0,0.32) 100%);
}
/*This is for tertiary menus if they are ever needed.*/			
nav ul ul ul {
	position: absolute;
	left: 100%;
	top: 0;
}

/*-----------------------------------------------------------------------------------------------*/
/*The following selectors format the text content of the site.*/

/*Main Body Text*/
.content {
	border-radius: 20px;
	background-color: #FFFFFF;
	margin-left: 2%;
	margin-right: 2%;
	padding: 30px;
	margin-bottom: 50px;
	display: block;
	position: relative;
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
	font-size: 16px;		
	}
	
/*Page Headers*/
h1.pageHead {
	color: #FFBE00;
	font-family: coranto-2, serif;
	font-style: normal;
	font-weight: 400;
	font-size: 36px;
	text-align: right;
	padding-right: 40px;
	font-variant: normal;
	text-shadow: 1px 1px 5px #000000;
	z-index: 9;
	vertical-align: top;
	margin-bottom: 0px;
	float: none;
	line-height: 50px;
	margin-top: 48px;
	
}

/*The following selectors format the main content area.*/
body section {
	border-radius: 20px;
	padding-bottom: 5px;

}

/*This selector formats subheadings within the body text.*/
section h2 {
	color: #B4A46B;	
}

/*This selector formats bullet-lists within the body text.*/
section li {
	font-family: Constantia, "Lucida Bright", "DejaVu Serif", Georgia, serif;
	font-size: 16px;
	padding-bottom: 10px;
}

/*This selector formats link color and formatting within the body text.*/
section a {
	font-weight: bold;
	text-decoration: underline;
	color:#A7581B;
}

/*This selector formats the footer; namely, the copyright notice.*/
body footer {
	color: #683802;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-variant: normal;
	font-weight: bold;
	font-size: x-small;
	margin: 5px;
	text-align: center;
}

/*This selector creates rounded edges for content images and provides for text wrapping.*/
img.contentImage {
	right: 0px;
	float: right;
	margin-left: 29px;
	border-radius: 20px;
}



table.challenge {
	border-radius: 20px;
	padding-bottom: 5px;
	border-style: solid;
	border-color: #420e5a;

}

td.challenge {
border: none;	
}
/*The following selectors are deprecated on this site, but provided here in case needed again.

input.ackbar {
	display: none;	
}

.obfuscate {
	direction: rtl; 
	unicode-bidi: bidi-override;
}

.red {
	color: red;
	text-decoration:underline;
}

body header hr {
	float: none;
}

hr.headSeparator {
	width: 100%;
}

.ContactInfo a {
	color: #875800;
	text-decoration: none;
}

.ContactInfo a:hover {
	color: #FF7600;
	text-decoration: underline;
}

*/
