@charset "utf-8";
html, body { 
	font-family: Helvetica, "Trebuchet MS", Arial, sans-serif;  
	margin: 0px; 
	padding: 0px;
}

.fullpage{ 
	width: 100%;
	color: #fff;	
}
/*  Fluid Row Set up  */
.row {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/* COLUMN SETUP  */
.row [class*="grid"] {
	display: block;
	float:left;
	margin: 0.6% 0 1% 1.6%; /*Margins on grids*/
}
.row [class*="grid"]:first-child { margin-left: 0; }

/*  GROUPING  */
.group:before,
.group:after {
	content:"";
	display:table;
}
.group:after {
	clear:both;
}

/*Desktop Layout */
@media only screen and (min-width:768px)
{
	.bodywrap {
		max-width:1000px;    /*------------------------------------- Set width of your site*/
		margin:0 auto;
	}
	.grid1 {
	   width: 6.86%;
	}
	.grid2 {
	   width: 15.32%;
	}
	.grid3 {
	   width: 23.8%; /* quarter div */
	}
	.grid4 {
	   width: 32.2%; /* third div */
	}
	.grid5 {
	   width: 40.7%;
	}
	.grid6 {
	   width: 49.2%; /* half div */
	}
	.grid7 {
	   width: 57.62%;
	}
	.grid8{
	   width: 66.1%; /* twothird div */
	}
	.grid9{
	   width: 74.54%;
	}
	.grid10{
	   width: 83%;
	}
	.grid11{
	   width: 91.46%;
	}
	.grid12 {
	   width: 100%;
	}

	/* Visibliity set up on desktop */
	.show-desktop{
		display: block !important;	
	}
	.hide-desktop{
		display: none !important;
	}
}

/* Start Mobile Layout */
@media only screen and (max-width:767px)
{
	.row [class*="grid"] {
		position:relative; 
		width:95%; 
		padding:0; 
		margin:2% auto; 
		overflow:auto;
		float: none;
	}
	.row [class*="grid"]:first-child{ 
		margin-left: auto; 
	}
	
	/* Visibliity set up on desktop */
	.show-phone{
		display: block !important;	
	}
	.hide-phone{
		display: none !important;
	}
}


/* Divs set up */
.boxtitle{
	background-color: #333;
	color: #fff;
	padding: 10px;
}
.boxcontent{
	padding: 10px;	
}


/* Font Setup */
h1,h2,h3,h4,h5,h6 {
	padding:0px 0px 1% 0px; 
	width:100%;
	margin: 1% 0;
}


/* Media elements */
img, object {
	position:relative; 
	max-width:100%;
}


/* ------------------------------------- Navigation CSS ---------------------------------------------*/

nav {
	height: 40px;
	width: 100%;
	background: #333;
	font-size: 11pt;
	font-family: 'PT Sans', Arial, sans-serif;
	font-weight: bold;
	position: relative;
	border-bottom: 0px solid #283744;
}
nav ul {
	padding: 0;
	margin: 0;
	width: auto;
	height: 40px;
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #fff;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	padding: 0 20px;
}
nav li a {
	border-right: 1px solid #444;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	color: #eee;
	font-size: 13px;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #666;
	color: #f1f1f1;
}
nav a#pull {
	display: none;
}


/*Styles for screen 768px and lower*/
@media only screen and (max-width : 768px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 100%;
		display: block;
		float: none;
  		position: relative;
  	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
		background-color: #eaeaea;
		padding: 0;
  	}
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #222;
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content: "";
		background: url('../img/nav-w.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
	nav li a {
		border-bottom: 1px solid #cccccc;
		border-right: none;
		color: #333;
	}
}



/* ------------------------------------- Global CSS ---------------------------------------------*/
.move-left{
	float: left !important;	
}
.move-right{
	float: right !important;	
}

/* image */
.rounded{
	-webkit-border-radius: 6px;
	   -moz-border-radius: 6px;
			border-radius: 6px;
}
.circle{
	-webkit-border-radius: 500px;
	   -moz-border-radius: 500px;
			border-radius: 500px;
	width: 140px;
	height: 140px;
	margin: 0 auto;
}
.polaroid{
	padding: 4px;
	background-color: #fff;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	   -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
			box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Visibliity set up on desktop */
@media only screen and (min-width:767px)
{
	.show-desktop{
		display: block !important;	
	}
	.hide-desktop{
		display: none !important;
	}
}

/* Visibliity set up on phone */
@media only screen and (max-width:767px)
{
	.show-phone{
		display: block !important;	
	}
	.hide-phone{
		display: none !important;
	}
}

/*Form elements*/
input, select{
	padding: 4px;
	font-size: 100%;
}

/*Button colors*/
.blue{
	-moz-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
	-webkit-box-shadow:inset 0px 1px 0px 0px #bbdaf7;
	box-shadow:inset 0px 1px 0px 0px #bbdaf7;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #79bbff), color-stop(1, #378de5) );
	background:-moz-linear-gradient( center top, #79bbff 5%, #378de5 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#79bbff', endColorstr='#378de5');
	background-color:#79bbff;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #84bbf3;
	display:inline-block;
	color:#ffffff;
	font-weight:bold;
	text-decoration:none;
	text-shadow:1px 1px 0px #528ecc;
}

.blue:hover{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #378de5), color-stop(1, #79bbff) );
	background:-moz-linear-gradient( center top, #378de5 5%, #79bbff 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#378de5', endColorstr='#79bbff');
	background-color:#378de5;	
}
.blue:active{
	position:relative;
	top:1px;
}

.orange{
	-moz-box-shadow:inset 0px 1px 0px 0px #fce2c1;
	-webkit-box-shadow:inset 0px 1px 0px 0px #fce2c1;
	box-shadow:inset 0px 1px 0px 0px #fce2c1;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffc477), color-stop(1, #fb9e25) );
	background:-moz-linear-gradient( center top, #ffc477 5%, #fb9e25 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffc477', endColorstr='#fb9e25');
	background-color:#ffc477;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #eeb44f;
	display:inline-block;
	color:#ffffff;
	font-weight:bold;
	text-decoration:none;
	text-shadow:1px 1px 0px #cc9f52;
}
.orange:hover{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #fb9e25), color-stop(1, #ffc477) );
	background:-moz-linear-gradient( center top, #fb9e25 5%, #ffc477 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fb9e25', endColorstr='#ffc477');
	background-color:#fb9e25;
}
.orange:active {
	position:relative;
	top:1px;
}

.grey{
	-moz-box-shadow:inset 0px 1px 0px 0px #ffffff;
	-webkit-box-shadow:inset 0px 1px 0px 0px #ffffff;
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ededed), color-stop(1, #dfdfdf) );
	background:-moz-linear-gradient( center top, #ededed 5%, #dfdfdf 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#dfdfdf');
	background-color:#ededed;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	color:#777777;
	font-weight:bold;
	text-decoration:none;
	text-shadow:1px 1px 0px #ffffff;
}
.grey:hover{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #dfdfdf), color-stop(1, #ededed) );
	background:-moz-linear-gradient( center top, #dfdfdf 5%, #ededed 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background-color:#dfdfdf;	
}
.grey:active {
	position:relative;
	top:1px;
}

.green{
	-moz-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	-webkit-box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	box-shadow:inset 0px 1px 0px 0px #c1ed9c;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #9dce2c), color-stop(1, #8cb82b) );
	background:-moz-linear-gradient( center top, #9dce2c 5%, #8cb82b 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#9dce2c', endColorstr='#8cb82b');
	background-color:#9dce2c;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #83c41a;
	display:inline-block;
	color:#ffffff;
	font-weight:bold;
	text-decoration:none;
	text-shadow:1px 1px 0px #689324;
}
.green:hover {
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #8cb82b), color-stop(1, #9dce2c) );
	background:-moz-linear-gradient( center top, #8cb82b 5%, #9dce2c 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#8cb82b', endColorstr='#9dce2c');
	background-color:#8cb82b;
}
.green:active {
	position:relative;
	top:1px;
}

.red{
	-moz-box-shadow:inset 0px 1px 0px 0px #f5978e;
	-webkit-box-shadow:inset 0px 1px 0px 0px #f5978e;
	box-shadow:inset 0px 1px 0px 0px #f5978e;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #f24537), color-stop(1, #c62d1f) );
	background:-moz-linear-gradient( center top, #f24537 5%, #c62d1f 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f24537', endColorstr='#c62d1f');
	background-color:#f24537;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #d02718;
	display:inline-block;
	color:#ffffff;
	font-weight:bold;
	text-decoration:none;
	text-shadow:1px 1px 0px #810e05;
}
.red:hover{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #c62d1f), color-stop(1, #f24537) );
	background:-moz-linear-gradient( center top, #c62d1f 5%, #f24537 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#c62d1f', endColorstr='#f24537');
	background-color:#c62d1f;	
}
.red:active {
	position:relative;
	top:1px;
}

/*button size*/
.big{
	padding: 15px 50px;
	font-size: 18px;
}
.mid{
	padding: 10px 25px;
	font-size: 14px;
}
.small{
	padding: 5px 10px;
	font-size: 12px;
}


/* clearfix */
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
}
 
html[xmlns] .clearfix {
	display: block;
}
 
* html .clearfix {
	height: 1%;
}
