@charset "UTF-8";

body{
	background-color:whitesmoke;
	font-family:"open_sansregular";
	font-size:14px;
	line-height:24px;
	color:black;
	padding-bottom:20px	
}



/* Desktop Layout: greater than 1280 */


.gridContainer {
	width: 100%;
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;

}

.fixedbanner{
	background-color:darkgreen;
	width:100%;
	height:100px;
	color:white;
	font-family:"open_sansregular";
	font-size:24px;
	text-align:left;
	padding:20px;
	box-shadow: 0px 4px 20px 0px #888888;
		
}

.mainbodyCNT{
	width:97%;
	text-align:left;
	height:700px;
	background-color:whitesmoke;
	margin:auto;
	margin-top:30px;
	
	
	color:darkgray;
}

.mainleft{
	display:inline-block;
	float:left;
	padding: 30px;
	border: 1px solid rgb(237, 229, 229);
	width:49%;
	height:100%;
	background-color:white;
		
}

.mainright{
	display:inline-block;
	float:right;
	padding:30px;
	border: 1px solid rgb(237, 229, 229);
	width:49%;
	height:100%;
	background-color:white;
	
}

.titletext{
	font-size:36px;
	color:darkgreen;
}



.inputbox{
	display:block;
	margin-bottom:15px;
	width:80%;
	height:auto;
	padding:15px;
	border: 1px solid lightgray;
	
	border-radius:3px;
	font-size:18px;
		
}

.submitbutton{
	width:200px;
	height:50px;
	background-color:orange;
	border: 1px solid lightgray;
	border-radius: 5px;
	font-size:18px;
	font-weight:lighter;
	font-family:"open_sansregular";
	color:white;
	text-align:center;
	padding:10px;
	margin-top:30px;
		
}

.submitbutton.disabled {
background-color: #CCC;
color: #E7E7E7;
}

.pricetable{
	width:100%;
	
	font-size:18px;
	overflow:hidden;
	border-radius:7px;
	margin-top:20px;
	
}

.pricetable tr td{
	padding:8px;
	background-color:whitesmoke;
		
}

.pricetable tr:nth-child(1) td{
	background-color:#006699;
	color:white;
	height:25px;
}

.pricetable tr:last-child td {
	padding-bottom:17px;	
}

.pricetable tr td:nth-child(1){
	width:25%;
	padding-left:15px;

	
}




.pricetable tr td:nth-child(2){
	width:50%;
	text-align:center;
	
}

.pricetable tr td:nth-child(3){
	width:25%;
	text-align:center;
}

.pricetable tr:nth-child(1n+2) td:nth-child(3){
	color:darkgreen;
	font-style:bold;
	
}

.teamtitle{
	width:100%;
	height:60px;
	padding:15px;
	background-color:#006699;
	
	font-size:24px;
	color:white;
		
}

.teamCNT{
	display:block;
	float:left;
	
	padding:0px;
	
	border: 1px solid rgb(237, 229, 229);
	width:100%;
	height:650px;
	background-color:white;
	margin-top:20px;
	font-size:20px;
	box-sizing: border-box;
	overflow: hidden;
}

.teamleftCNT{
	width:50%;
	height:100%;
	padding:30px;
	padding-top:20px;
	display:inline-block;
	position: relative;

}

.teammember{
	height:96px;
	width:96px;
	background-color:whitesmoke;
	border-radius:50px;
	margin-top:20px;
	padding:5px;
	font-size:14px;
	color:transparent;
	display: block;
	vertical-align: top;
	position: absolute;
	width: 400px;
	top: 0px;
}
.teammember:nth-of-type(1){left: 20px; top: 91px;}
.teammember:nth-of-type(2){left: 136px; top: 91px;}
.teammember:nth-of-type(3){left: 252px; top: 91px;}
.teammember:nth-of-type(4){left: 368px; top: 91px;}

.teammember img{
	border-radius:50px;
	overflow:hidden;
	border: 3px solid purple;
	margin-right:10px;
	display:inline;
	max-width: 86px;
	height: auto;
}

.teamrightCNT{
	width:50%;
	height:100%;
	padding:20px;
	display:inline-block;
	position: relative;

}

.priceexp{
	width:100%;
	padding:15px;
	padding-top:30px;
	font-size:14px;
	color:darkgray;	
}








@media only screen and (max-width: 1280px) {
.gridContainer {
	width: 100%;
	
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;
	
}

}


@media only screen and (max-width: 900px) {
.gridContainer {
	width: 100%;
	
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;
	
}





/* Tablet layout */
@media only screen and (max-width: 768px) {
.gridContainer {
	width: 100%;
	min-width:767px;
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;
	
}






}




/* Mobile Layout:  min of 480px .  I80erits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (max-width: 480px) {
.gridContainer {
	width: 100%;
	min-width:inherit;
	padding-left: 0.0%;
	padding-right: 0.0%;
	margin: auto;
	
}


}




