/*------------------------------------*\
	RESET
\*------------------------------------*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td{
	margin:0;
	padding:0;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img{
	border:0;
}
address,caption,cite,code,dfn,th,var{
	font-style:normal;
	font-weight:normal;
}
caption,th{
	text-align:left;
}
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight:normal;
}
q:before,q:after{
	content:'';
}
abbr,acronym{
	border:0;
}

/*------------------------------------*\
	Body
\*------------------------------------*/

body {
	margin: 5px 0px;
	padding: 0px;
	background: #FFFECC;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	color: #333333;
}

p {
	margin: 0px;
	padding: 0px;
	line-height: 23px;
}

h1, h2, h3 {
	margin: 0.3em 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

h1 {
	font-size: 2em;
	font-family: 'Marko One', serif;
}

h2 {
	font-size: 1.6em;
	font-family: 'Marko One', serif;
}

h3 {
	font-size: 1.4em;
	font-family: 'Marko One', serif;
}

p {
	margin-top: 0.5em;
}

a {
	color: #FFFFFF;
}

/*---------------------------------------*/
/*----------------HEADER-----------------*/

#header {
	width: 900px;
	height: 100px;
	margin: 0 auto;
}

#banner_art{
	position: relative;
	top: -160px;
	left: 480px;
}

#logo {
	width: 900px;
	padding-top: 2px;
}

#logo h1 {
	margin: 15px 0px 0px 180px;
	padding: 0px;
	letter-spacing: 0px;
	font-weight: normal;
	font-size: 44px;
	font-family: 'Marko One', serif;
	color: #222222
}

#logo h2 {
	margin: -15px 0px 0px 200px;
	font-size: 20px;
	font-family: 'Marko One', serif;
}

#logo p {
	margin: -8px;
	padding: 0px 0px 0px 12px;
	text-align: center;
	font-size: 14px;
	font-weight: normal;
	color: #FFFFFF
}

#logo span {
	margin: 0px;
	padding: 0px;
	font-size: 16px;
}


#logo a {
	text-decoration: none;
	color: #FFFFFF
}

#logo img {
	float: left;
	padding: 0px 4px 0px 30px;
}

#seal {
	margin-right: 20px;
}

#seal img {
	float: right;
	list-style-type: none;
	padding: 0px 0 10px 0;
	display: inline;
}

/*---------------------------------------*/
/*-------------NAVIGATION----------------*/

#nav_wrap{
	width: 889px;
	margin: 0px auto;
}

#nav{
    list-style:none;
    font-weight:bold;
	font-size: 16px;
    margin-bottom:10px;

/* Clear floats */
    float:left;
    width:100%;

/* Bring the nav above everything else--uncomment if needed.
    position:relative;
    z-index:5;
 */
}

#nav li{
    float: left;
    margin-right:0px;
    position:relative;
}

#nav a{
    border:1px solid grey;
    display:block;
    padding: 10px 7px 10px 7px;
    color:#FFFFFF;
	background: #9598A1;
	background: -moz-linear-gradient(top, #9598A1 0%, #79777A 50%, #9598A1 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9598A1), color-stop(50%,#79777A), color-stop(100%,#9598A1));
	background: -webkit-linear-gradient(top, #9598A1 0%,#79777A 50%,#9598A1 100%);
	background: -o-linear-gradient(top, #9598A1 0%,#79777A 50%,#9598A1 100%);
	background: -ms-linear-gradient(top, #9598A1 0%,#79777A 50%,#9598A1 100%);
	background: linear-gradient(to bottom, #9598A1 0%,#79777A 50%,#9598A1 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9598A1', endColorstr='#9598A1',GradientType=0 );

/* Some colors to try:
outer  - inner
a1cccb - 9ab1b0
D0D5D6 - A8ACAD
9598A1 - 79777A
*/

   text-decoration:none;
}

#nav a:hover{
    color:#fff;
    text-decoration: underline;
}

/*--- DROPDOWN ---*/
#nav ul{
    background:#fff; 			/* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
    background:rgba(255,255,255,0); 		/* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
    list-style:none;
    position:absolute;
    left:-9999px; 		/* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
    padding-top: 0px; 		/* Introducing a padding between the li and the a give the illusion spaced items DISABLED */
    float:none;
}
#nav ul a{
    white-space:nowrap; 	/* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover ul{ 		/* Display the dropdown on hover */
    left:0; 			/* Bring back on-screen when needed */
}
#nav li:hover a{ 		/* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
    background:#9598A1;
    text-decoration:underline;
}
#nav li:hover ul a{ 		/* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
    text-decoration:none;
}
#nav li:hover ul li a:hover{	/* Here we define the most explicit hover states--what happens when you hover each individual link. */
    background:#79777A;
}

#nav ul ul { 			/* These 2 lines Drew added later, they allow for additional submenus*/
	display: none;
}

	#nav ul li:hover > ul {
		display: block;
	left: 100%;
	top: 0;
	}

/*--- In page menu ---*/

#media_menu {
	float: right;
	width: 200px;
	margin: 20px auto;
}

#media_menu ul {
	margin-left: 0px;
	list-style-type: none;
	margin-top: 10px;
}

#media_menu ul li {
	margin: 16px 0px 0px 0px;
}

#media_menu a {
	height: 40px;
	margin: 2px 2px 2px 0px;
	padding: 7px 20px 8px 20px;
	background: #F6F5CC;

	font-size: 12px;
	font-family: Georgia Bold, Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-decoration: none;
	color: #666;
	border: 2px solid #666;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-o-border-radius:5px;
	-ms-border-radius:5px;
	border-radius:5px;
}

#media_menu a:hover {
	color: #F6F5CC;
 	background: #666;
}

/*----------------------------------------------*/
/*------Banners---<div id="banner_*.png"></div>-*/
/*----------------------------------------------*/

#banner_consulting {
   background-image: url('images/banner_consulting.png');
   width: 870px;
   height: 178px;
}

#banner_consulting:hover {
   background-image: url('images/banner_consultinghover.png');
}

#banner_webinar {
   background-image: url('images/banner_webinar2.png');
   width: 870px;
   height: 178px;
}

#banner_webinar:hover {
   background-image: url('images/banner_webinar2hover.png');
}

#banner_archive {
   background-image: url('images/banner_archives.png');
   width: 870px;
   height: 178px;
}

#banner_archive:hover {
   background-image: url('images/banner_archiveshover.png');
}


/*----------------------------------------------*/
/*----------------------Page--------------------*/
/*----------------------------------------------*/

#content {
	width: 886px;
	margin: 22px auto;
	background: #D5E0FF;
	border-radius: 15px;
 
}

#page {
	margin: 0px auto;
	float: left;
	width: 866px;
	padding: 0px 0px 0px 10px;
}

#page h2 {
	padding-bottom: 6px;
	letter-spacing: -1px;
	font-weight: normal;
	color: #383837;
}

#page a {
	color: #5b8016;
}

#page li {
	margin: 0px 0px 0px 30px;
}

.bold {
	font-weight: bold;
}

.image-left {
	float: left;
	padding: 0px 20px 0px 0px;
	margin: 10px 0px 0px 0px;
}

.image-right {
	float: right;
	padding: 0px 0px 0px 20px;
	margin: 10px 0px 0px 0px;
}

.youtube-right {
	float: right;
	padding: 0px 0px 0px 20px;
	margin: 10px 0px 0px 0px;	
}

.youtube-left {
	float: left;
	padding: 0px 20px 0px 0px;
	margin: 10px 0px 0px 0px;
}

.youtube-center {
	width: 340px;
	padding: 0px 20px 0px 0px;
	margin: 0px auto;
}

.important-text-right {
	float: right;
	width: 300px;
	padding: 0px 0px 0px 20px;
	margin: 0px 0px 0px 0px;
	color: red;	
}

.important-text-left {
	float: left;
	width: 300px;
	padding: 0px 20px 0px 0px;
	margin: 0px 0px 0px 0px;
	color: red;	
}

.important-text-center {
	text-align: center;
	width: 660px;
	padding: 0px 20px 0px 20px;
	margin: 0px auto 0px auto;
	color: red;	
}

.center-bold-text {
	text-align: center;
	font-weight: bold;
}

/*----------------------------------------------*/
/*--------------------footer--------------------*/

#footer {
	width: 900px;
	margin: 0px auto;
	padding: 5px 0px;
}

#footer p {
	text-transform: uppercase;
	font-size: 10px;
	color: #90908E;
}

#footer a {color: #666666}

#footer .links {
	text-decoration: none;
	color: #666666;
}

#footer_center {
	position:absolute;
	color: #2255hh;
	width: 340px;
	padding: 0px 2px 0px 2px;
	margin: 0px 0px 0px 280px;
	text-align: center;
	font-weight: bold;
	z-index: 1;
}

#footer_left {
	text-transform: uppercase;
	font-size: 10px;
	color: #90908E;
	width: 240px;
}
