@charset "UTF-8";
/* CSS Document */



/* Reset */
.menu,
.menu ul,
.menu li,
.menu a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* Menu */
.menu {	
	height: 50px;
	width: 730px;

	background: #0D499E;
	background: -webkit-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -moz-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -o-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -ms-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: linear-gradient(top, #0D499E 0%,#0D499E 100%);

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.menu li {
	position: relative;
	list-style: none;
	float: left;
	display: block;
	height: 50px;
}

/* Links */

.menu li a {
	display: block;
	padding: 0 14px;
	margin: 6px 0;
	line-height: 28px;
	text-decoration: none;
	
	border-left: 1px solid #393942;
	border-right: 1px solid #4f5058;

	font-family: Helvetica, Arial, sans-serif;
	font-weight: bold;
	font-size: 13px;

	color: #f3f3f3;
	text-shadow: 1px 1px 1px rgba(0,0,0,.6);

	-webkit-transition: color .2s ease-in-out;
	-moz-transition: color .2s ease-in-out;
	-o-transition: color .2s ease-in-out;
	-ms-transition: color .2s ease-in-out;
	transition: color .2s ease-in-out;
}

.menu li:first-child a { border-left: none; }
.menu li:last-child a{ border-right: none; }

.menu li:hover > a { color: #E4E3E3; }

/* Sub Menu */

.menu ul {
	position: absolute;
	top: 40px;
	left: 0;

	opacity: 0;
	
	background: #1f2024;

	-webkit-border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;

	-webkit-transition: opacity .25s ease .1s;
	-moz-transition: opacity .25s ease .1s;
	-o-transition: opacity .25s ease .1s;
	-ms-transition: opacity .25s ease .1s;
	transition: opacity .25s ease .1s;
}

.menu li:hover > ul { opacity: 1; }

.menu ul li {
	height: 0;
	overflow: hidden;
	padding: 0;

	-webkit-transition: height .25s ease .1s;
	-moz-transition: height .25s ease .1s;
	-o-transition: height .25s ease .1s;
	-ms-transition: height .25s ease .1s;
	transition: height .25s ease .1s;
}

.menu li:hover > ul li {
	height: 36px;
	overflow: visible;
	padding: 0;
}

.menu ul li a {
	width: inherit;
	padding: 4px 0 4px 40px;
	margin: 0;

	border: none;
	border-bottom: 1px solid #353539;
}

.menu ul li:last-child a { border: none; display: block;}

/* Icons */

.menu a.documents { background: url(docs.png)/*tpa=http://www.qhshomes.com/images/docs.png*/ no-repeat 6px center; }
.menu a.messages { background: url(bubble.png)/*tpa=http://www.qhshomes.com/images/bubble.png*/ no-repeat 6px center; }
.menu a.signout { background: url(arrow.png)/*tpa=http://www.qhshomes.com/images/arrow.png*/ no-repeat 6px center; }

 /*
	 Organic Tabs
	  
*/

 #tabs
{
  overflow:scroll;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

#tabs li
{
    margin: 0;
    padding: 0;
    float: left;
}

#tabs a
{
    -moz-box-shadow: -4px 0 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: -4px 0 0 rgba(0, 0, 0, .2);
    box-shadow: -4px 0 0 rgba(0, 0, 0, .2);
    background: #0D499E;
	background: -webkit-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -moz-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -o-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -ms-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: linear-gradient(top, #0D499E 0%,#0D499E 100%);
    text-shadow: 0 1px 0 rgba(0,0,0,.5);
    color: #fff;
    float: left;
    font: bold 12px/35px 'Lucida sans', Arial, Helvetica;
    height: 35px;
    padding: 0 30px;
    text-decoration: none;
}

#tabs a:hover
{
    background: #AAE7BF;
	background: -webkit-linear-gradient(top, #AAE7BF 0%,#0D499E 100%);
	background: -moz-linear-gradient(top, #AAE7BF 0%,#0D499E 100%);
	background: -o-linear-gradient(top, #AAE7BF 0%,#0D499E 100%);
	background: -ms-linear-gradient(top, #AAE7BF 0%,#0D499E 100%);
	background: linear-gradient(top, #AAE7BF 0%,#0D499E 100%);   
}

#tabs a:focus
{
    outline: 0;
}

#tabs #current a
{
    background: #fff;
    background:    -moz-linear-gradient(220deg, transparent 10px, #fff 10px);
    background:    -webkit-linear-gradient(220deg, transparent 10px, #fff 10px);     
    background:     -ms-linear-gradient(220deg, transparent 10px, #fff 10px); 
    background:      -o-linear-gradient(220deg, transparent 10px, #fff 10px); 
    background:         linear-gradient(220deg, transparent 10px, #fff 10px);
    text-shadow: none;    
    color: #333;
}

#content
{
    background-color: #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
    background-image: -webkit-linear-gradient(top, #fff, #ddd); 
    background-image:    -moz-linear-gradient(top, #fff, #ddd); 
    background-image:     -ms-linear-gradient(top, #fff, #ddd); 
    background-image:      -o-linear-gradient(top, #fff, #ddd); 
    background-image:         linear-gradient(top, #fff, #ddd);
    -moz-border-radius: 0 2px 2px 2px;
    -webkit-border-radius: 0 2px 2px 2px;
    border-radius: 0 2px 2px 2px;
    -moz-box-shadow: 0 2px 2px #000, 0 -1px 0 #fff inset;
    -webkit-box-shadow: 0 2px 2px #000, 0 -1px 0 #fff inset;
    box-shadow: 0 2px 2px #000, 0 -1px 0 #fff inset;
    padding: 30px;
}

/* Remove the rule below if you want the content to be "organic" */
#content div
{
    min-height: 220px;
}

/* --- */
#about
{
    color: #999;
}

#about a
{
    color: #eee;
}
 
 /* --- */
 
 .FooterList{
	  
	padding:5px;
	text-decoration:none;
	color:#2AD249;
	text-align:left;
	font-family:helvetica Neue;
	font-size:12px;
	letter-spacing:1px;
}
.FooterList a, hover, active{
	 
	display:inline-block;
	padding-left:5px;
	text-decoration:none;
	color:#000;
	text-align:left;
	font-family:helvetica Neue;
	font-size:14px;
	letter-spacing:1px;
	height:25px;
	 
}

.FooterListB{
	  
	padding:5px;
	text-decoration:none;
	color:#fff;
	text-align:left;
	font-family:helvetica Neue;
	font-size:12px;
	letter-spacing:1px;
}
.FooterListB a, hover, active{
	 
	display:inline-block;
	padding-left:5px;
	text-decoration:none;
	color:#fff;
	text-align:left;
	font-family:helvetica Neue;
	font-size:14px;
	letter-spacing:1px;
	height:25px;
	 
}


.FooterListR{
	  
	padding:0px;
	text-decoration:none;
	color:#000;
	text-align:left;
	font-family:helvetica Neue;
	font-size:12px;
	letter-spacing:1px;
}
.FooterListR a, hover, active{
	 
	display:inline-block;
	padding-left:0px;
	text-decoration:none;
	color:#000;
	text-align:left;
	font-family:helvetica Neue;
	font-size:14px;
	letter-spacing:1px;
	height:25px;
	 
}
.subhead{
	padding:5px;
	text-transform: uppercase;
	color:#15133C;
	text-align:left;
	letter-spacing:1px;
	font-family:helvetica Neue;
	font-size:13px;
}

.sub_head{
	padding:5px;
	text-transform: uppercase;
	color:#15133C;
	text-align:left;
	letter-spacing:1px;
	font-family:helvetica Neue;
	font-size:18px;
}
.listAll{
	padding-left:15px;
	color:#000000;
	text-align:left;
	letter-spacing:1px;
	font-family:helvetica Neue;
	font-size:12px;
}
.subHeader{
	margin-top:5px;
	padding:5px;
	height:40px;
	color:#fff;
	max-width:350px;
	text-align:center;
	letter-spacing:1px;
	font-family:helvetica Neue;
	font-size:20px;
	background: #162FAF;
	background: -webkit-linear-gradient(top, #162FAF 0%,#162FAF 100%);
	background: -moz-linear-gradient(top, #162FAF 0%,#162FAF 100%);
	background: -o-linear-gradient(top, #162FAF 0%,#162FAF 100%);
	background: -ms-linear-gradient(top, #162FAF 0%,#162FAF 100%);
	background: linear-gradient(top, #162FAF 0%,#162FAF 100%);
	box-shadow: 0px 3px 1px 1px #888888;
	border-radius:15px 15px 0px 0px;
-moz-border-radius:15px 15px 0px 0px; /* Old Firefox */
}

/* vertical side menu: */

.vertical-list {
        margin-top:45px;
		list-style: none;
		text-decoration:none;
		padding: 10px;
		width: 250px;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		background: #18C9D1; /* old browsers */
		background: -moz-linear-gradient(top, #F07F48 3%, #252E34 51%, #222A30 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#F07F48), color-stop(51%,#252E34), color-stop(100%,#222A30)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F07F48', endColorstr='#222A30',GradientType=0 ); /* ie */
		-moz-box-shadow: 1px 1px 1px rgba(255,255,255,0.1); /* Firefox */
		-webkit-box-shadow: 1px 1px 1px rgba(255,255,255,0.1); /* Safari, Chrome */
		box-shadow: 1px 1px 1px rgba(255,255,255,0.1); /* CSS3 */
	}
	.vertical-list .button {
	text-decoration:none;
	    height:50px;
	    padding-top:15px;
	    text-align:center;
		border-radius: 5px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		background:  #18C9D1 /* old browsers */
		background: -moz-linear-gradient(top, #18C9D1 3%, #444E55 5%, #394147 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#18C9D1), color-stop(5%,#444E55), color-stop(100%,#394147)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='##301BAA', endColorstr='#394147',GradientType=0 ); /* ie */
	}
	.vertical-list .button:hover {
	height:50px;
	    padding-top:15px;
		background: #18C9D1; /* old browsers */
		background: -moz-linear-gradient(top, #18C9D1 3%, #18C9D1 4%, #4D5A62 50%, #434D54 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#18C9D1), color-stop(4%,#18C9D1), color-stop(50%,#4D5A62), color-stop(100%,#434D54)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#18C9D1', endColorstr='#434D54',GradientType=0 ); /* ie */
	}
	.vertical-list .button:active {
	height:50px;
	    padding-top:15px;
	text-decoration:none;
		padding: 5px 12px;
		top: 0;
		background: ##18C9D1 /* old browsers */
		background: -moz-linear-gradient(top, #18C9D1 3%, #444E55 5%, #394147 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,##301BAA), color-stop(5%,#444E55), color-stop(100%,#394147)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='##301BAA', endColorstr='#394147',GradientType=0 ); /* ie */		-moz-box-shadow: 1px 1px 1px rgba(255,255,255,0.1); /* Firefox */
		-moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.2); /* Firefox */
		-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.2); /* Safari, Chrome */
		box-shadow: 1px 1px 1px rgba(0,0,0,0.2); /* CSS3 */

	}
	.vertical-list li { margin: 0 0 5px; text-decoration:none; height:50px; }
	.vertical-list li:last-child { margin: 0; height:50px; }
 
 /* Dark Button CSS */
	.button {
	text-decoration:none;
	height:50px;
		outline: 0;
		padding: 5px 12px;
		display: block;
		color: #9fa8b0;
		font-weight: bold;
		text-shadow: 1px 1px #1f272b;
		border: 1px solid #1c252b;
		border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		background: #232B30; /* old browsers */
		background: -moz-linear-gradient(top, #3D4850 3%, #313d45 4%, #232B30 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#3D4850), color-stop(4%,#313d45), color-stop(100%,#232B30)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3D4850', endColorstr='#232B30',GradientType=0 ); /* ie */
		box-shadow: 1px 1px 1px rgba(0,0,0,0.2); /* CSS3 */
		-moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.2); /* Firefox */
		-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.2); /* Safari, Chrome */
	}
	.button:hover {
	text-decoration:none;
	height:50px;
		color: #fff;
		background: #4C5A64; /* old browsers */
		background: -moz-linear-gradient(top, #4C5A64 3%, #404F5A 4%, #2E3940 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#4C5A64), color-stop(4%,#404F5A), color-stop(100%,#2E3940)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4C5A64', endColorstr='#2E3940',GradientType=0 ); /* ie */
	}
	.button:active {
	height:50px;
		background-position: 0 top;
		position: relative;
		top: 1px;
		color: #fff;
		padding: 6px 12px 4px;
		background: #20282D; /* old browsers */
		background: -moz-linear-gradient(top, #20282D 3%, #252E34 51%, #222A30 100%); /* firefox */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(3%,#20282D), color-stop(51%,#252E34), color-stop(100%,#222A30)); /* webkit */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#20282D', endColorstr='#222A30',GradientType=0 ); /* ie */
		-moz-box-shadow: 1px 1px 1px rgba(255,255,255,0.1); /* Firefox */
		-webkit-box-shadow: 1px 1px 1px rgba(255,255,255,0.1); /* Safari, Chrome */
		box-shadow: 1px 1px 1px rgba(255,255,255,0.1); /* CSS3 */
	}
	
	/* Other stuff: */
	.button-list { list-style: none; padding: 0; margin: 0; width: 100%; float: left; display: block; margin: 0 0 30px; text-decoration:none;}
	.button-list li { float: left; margin: 0 10px 0 0; text-decoration:none; height:50px;}
	.button-list li.search { border-left: 1px solid #273137; padding-left: 18px; margin-left: 10px; position: relative; height:50px;}
	
	/* Contact form: */
	
	input {
		width:200px;
		height:50px;
		}
.submit {
	width:120px;
	height:50px;
	background: #0D499E;
	background: -webkit-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -moz-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -o-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: -ms-linear-gradient(top, #0D499E 0%,#0D499E 100%);
	background: linear-gradient(top, #0D499E 0%,#0D499E 100%);

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

#error {
	color:red;
	font-size:10px;
	display:none;
}
.needsfilled {
	background:red;
	color:white;
}