/* Flexible Slide-to-top Accordion Style*/
@import url('reset.css');


/* Font Face */

@font-face {
    font-family: 'RobotoBlack';
    src: url('fonts/Roboto-Black-webfont.eot');
    src: url('fonts/Roboto-Black-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Black-webfont.woff') format('woff'),
         url('fonts/Roboto-Black-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Black-webfont.svg#RobotoBlack') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'RobotoBold';
    src: url('fonts/Roboto-Bold-webfont.eot');
    src: url('fonts/Roboto-Bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Bold-webfont.woff') format('woff'),
         url('fonts/Roboto-Bold-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Bold-webfont.svg#RobotoBold') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'RobotoRegular';
    src: url('fonts/Roboto-Regular-webfont.eot');
    src: url('fonts/Roboto-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Regular-webfont.woff') format('woff'),
         url('fonts/Roboto-Regular-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Regular-webfont.svg#RobotoRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'RobotoThin';
    src: url('fonts/Roboto-Thin-webfont.eot');
    src: url('fonts/Roboto-Thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Roboto-Thin-webfont.woff') format('woff'),
         url('fonts/Roboto-Thin-webfont.ttf') format('truetype'),
         url('fonts/Roboto-Thin-webfont.svg#RobotoThin') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* Style Me Pretty */

::-moz-selection{ background: #000; color:#fff; text-shadow: none; }
::selection{ background:#000; color:#fff; text-shadow: none; }

body{
	background:#999 url(../images/pattern2.png) repeat top left;
	color:#000;
	font: 13px 'RobotoRegular', Helvetica, Arial, sans-serif;
	overflow-y: scroll;
}

a {
	color:#000;
	text-decoration:none;
}

.clr{
	clear:both;
}

.logo{
	position: absolute;
	top: 0px;
	left: 5%;
	display: block;
	z-index: 400;
	height: 120px;
	width: 120px;
	background-color: #fff;
	-webkit-box-shadow: 3px 3px 3px #ccc;
    -moz-box-shadow: 3px 3px 3px #ccc;
    box-shadow: 3px 3px 3px #ccc;
}

.wrapper{
	width:90%;
	max-width:800px;
	margin:0px auto;
	position: relative;
	z-index: 200;
	
}

.header{
	width: 100%;
	height: 120px;
	display: block;
	margin-top: -30px;
	text-align: right;
}

#slideshow {
	position:relative;
	height: 376px;
}

#slideshow img {
}

	img.scale-with-grid {
		max-width: 100%;
		height: auto;
		border: 1px solid #eee;
		-webkit-box-shadow: 2px 2px 3px #eee;
    	box-shadow: 2px 2px 3px #eee; 
	}

/*.header img{
	position: relative;
	height: 120px;
	width: 120px;
	margin-right: 20px;
	background-color: #fff;
	-webkit-box-shadow: 3px 3px 3px #ccc;
    -moz-box-shadow: 3px 3px 3px #ccc;
    box-shadow: 3px 3px 3px #ccc;
}*/

.header h1{
	font-family: 'RobotoBold', Helvetica, Arial, Myriad, sans-serif;
    /*text-shadow: 1px 1px 2px #ddd;*/
    color: #fff;
    font-size: 28px;
    display: inline;
	position: relative;
    line-height: 180px;
	text-shadow: 1px 1px 2px #aaa;*
}

.st-accordion{
    width:100%;
    min-width:270px;
    margin: 0 auto;
}

.st-accordion ul {
	padding-top: 40px;
}

.st-accordion ul li{
    height: 100px;
    border-bottom: 1px solid #ccc;
    border-top:1px solid #fff;
    overflow: hidden;
}
.st-accordion ul li:first-child{
    border-top:none;
}
.st-accordion ul li > a{
    font-family: 'RobotoThin', Helvetica, Arial, Myriad, sans-serif;
    color: #999;
    /*text-shadow: 1px 1px 2px #ddd;*/
    font-size: 42px;
    display: block;
	position: relative;
    line-height: 100px;
	outline:none;
    -webkit-transition:  color 0.2s ease-in-out;
	-moz-transition:  color 0.2s ease-in-out;
	-o-transition:  color 0.2s ease-in-out;
	-ms-transition:  color 0.2s ease-in-out;
	transition:  color 0.2s ease-in-out;
}
.st-accordion ul li > a span{
	background: transparent url(../images/down.png) no-repeat center center;
	text-indent:-9000px;
	width: 26px;
	height: 14px;
	position: absolute;
	top: 50%;
	right: -26px;
	margin-top: -7px;
	opacity:0;
	-webkit-transition:  all 0.2s ease-in-out;
	-moz-transition:  all 0.2s ease-in-out;
	-o-transition:  all 0.2s ease-in-out;
	-ms-transition:  all 0.2s ease-in-out;
	transition:  all 0.2s ease-in-out;
}
.st-accordion ul li > a:hover{
    color: #000;
}
.st-accordion ul li > a:hover span{
	opacity:1;
	right: 10px;
}
.st-accordion ul li.st-open > a{
    color: #222;
    font-family: 'RobotoRegular', Helvetica, Arial, Myriad, sans-serif;
}
.st-accordion ul li.st-open > a span{
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
    transform:rotate(180deg);
	right:10px;
	opacity:1;
}
.st-content{
    padding: 5px 0px 30px 0px;
}
.st-content p{
    font-size:  16px;
    font-family: 'RobotoRegular', Helvetica, Arial, Myriad, sans-serif;
    font-style: normal;
    line-height:  28px;
    padding: 0px 4px 15px 4px; 
}

.st-content p.about{
    font-size:  38px;
    color: #222;
    font-family: 'RobotoThin', Helvetica, Arial, Myriad, sans-serif;
    font-style: normal;
    line-height:  48px;
    padding: 0px 6px 15px 4px; 
}

.st-content p.contact{
    padding: 0px 4px 15px 4px;
    margin-left: 10px;
}

.st-content a img{
	opacity: 0.3;
  	filter: alpha(opacity=30);
  	border: 0;
  	-webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

}

.st-content a:hover img{
	opacity: 1;
  	filter: alpha(opacity=100);
  	border: 0;
  	-webkit-transition: all 0.3s ease-in;  /* Saf3.2+, Chrome */
    -moz-transition: all 0.3s ease-in;  /* FF4+ */
    -ms-transition: all 0.3s ease-in;  /* IE10 */
    -o-transition: all 0.3s ease-in;  /* Opera 10.5+ */
    transition: all 0.3s ease-in;
}

.footer{
	font: 11px Helvetica, Arial, sans-serif;
	color: #ccc;
	display: block;
	padding-top: 20px;
	padding-left: 5px;
	line-height: 16px;
}

.split{
	display: inline;
}

p.home{
    font-size: 24px;
    color: #222;
    font-family: 'RobotoThin', Helvetica, Arial, Myriad, sans-serif;
    font-style: normal;
    line-height: 34px;
    padding: 0px 0px 25px 0px; 
}

p.home a, p.home a:visited{
    color: #f47b2a;
	text-decoration: none;
	border-bottom: 1px solid #f47b2a;
  -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out; 
       -o-transition: all 0.3s ease-in-out; 
          transition: all 0.3s ease-in-out;

}

p.home a:hover, p.home a:active{
    color: orange;
	text-decoration: none;
	border-bottom: 1px solid orange;
	  -webkit-transition: all 0.3s ease-in-out;
     -moz-transition: all 0.3s ease-in-out; 
       -o-transition: all 0.3s ease-in-out; 
          transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 480px) {
	.header h1{
		display: none;
	}
	.st-content p.about{
    	font-size:  21px;
    	font-family: 'RobotoThin', Helvetica, Arial, Myriad, sans-serif;
    	font-style: normal;
    	line-height:  30px;
    	padding: 0px 4px 15px 4px; 
	}	
	
	.split{
		display: block;
		padding-top: 4px;
	}
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
	.st-content p.about{
    	font-size:  28px;
    	font-family: 'RobotoThin', Helvetica, Arial, Myriad, sans-serif;
    	font-style: normal;
    	line-height:  36px;
    	padding: 0px 4px 15px 4px; 
	}	
}

/* Form Styles */

	.sentMessage {
		display: none;
		font-size:  14px;
    	color: #222;
    	font-family: 'RobotoRegular', Helvetica, Arial, Myriad, sans-serif;
    	font-style: normal;
    	line-height: 24px;
		padding-bottom: 5px;
	}
	
	form {
		margin-top: -5px;
		margin-bottom: 0px;
		margin-left: 2px; }
	fieldset {
		margin-bottom: 0px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	input[type="url"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 6px 4px;
		outline: none;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		font: 13px Helvetica, Arial, sans-serif;
		color: #777;
		margin: 0;
		width: 70%;
		max-width: 100%;
		display: block;
		margin-bottom: 10px;
		background: #fff; }
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	input[type="tel"]:focus,
	input[type="url"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
		box-shadow:  0 0 3px rgba(0,0,0,.2); }
	input[type="text"].answer{
		width: 152px;
	}
	textarea {
		min-height: 160px; }
	label,
	legend {
		display: block;
		font: normal 13px Helvetica, Arial, sans-serif;
		padding-bottom: 10px;}
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }
		
/* Button Styles */

	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		background: #eee; /* Old browsers */
		background: #eee -moz-linear-gradient(top, rgba(255,255,255,.2) 0%, rgba(0,0,0,.2) 100%); /* FF3.6+ */
		background: #eee -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.2)), color-stop(100%,rgba(0,0,0,.2))); /* Chrome,Safari4+ */
		background: #eee -webkit-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Chrome10+,Safari5.1+ */
		background: #eee -o-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Opera11.10+ */
		background: #eee -ms-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* IE10+ */
		background: #eee linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* W3C */
	  border: 1px solid #aaa;
	  border-top: 1px solid #ccc;
	  border-left: 1px solid #ccc;
	  padding: 4px 12px;
	  -moz-border-radius: 3px;
	  -webkit-border-radius: 3px;
	  border-radius: 3px;
	  color: #444;
	  display: inline-block;
	  font-size: 11px;
	  text-decoration: none;
	  text-shadow: 0 1px rgba(255, 255, 255, .75);
	  cursor: pointer;
	  margin-bottom: 20px;
	  line-height: normal;
	  padding: 8px 10px;
	  font-family: Helvetica, Arial, sans-serif;
	  font-weight: normal;
	  width: 160px; }

	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {
		color: #222;
		background: #ddd; /* Old browsers */
		background: #ddd -moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); /* FF3.6+ */
		background: #ddd -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.3)), color-stop(100%,rgba(0,0,0,.3))); /* Chrome,Safari4+ */
		background: #ddd -webkit-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Chrome10+,Safari5.1+ */
		background: #ddd -o-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Opera11.10+ */
		background: #ddd -ms-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* IE10+ */
		background: #ddd linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* W3C */
	  border: 1px solid #888;
	  border-top: 1px solid #aaa;
	  border-left: 1px solid #aaa; }

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
		border: 1px solid #666;
		background: #ccc; /* Old browsers */
		background: #ccc -moz-linear-gradient(top, rgba(255,255,255,.35) 0%, rgba(10,10,10,.4) 100%); /* FF3.6+ */
		background: #ccc -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.35)), color-stop(100%,rgba(10,10,10,.4))); /* Chrome,Safari4+ */
		background: #ccc -webkit-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Chrome10+,Safari5.1+ */
		background: #ccc -o-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Opera11.10+ */
		background: #ccc -ms-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* IE10+ */
		background: #ccc linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* W3C */ }

	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}
		
		
