@charset "utf-8";
@import url(http://fonts.googleapis.com/css?family=Didact+Gothic);
@media not all and (-webkit-min-device-pixel-ratio:0)
{  
   .thumbnail img{
	border: 1px solid white;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0;
	height: 60px;
	width: 60px;
	
}

.thumbnail:hover{
	background-color: transparent;

}

.thumbnail:hover img{
	border: 1px solid #ff6c31;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	padding: 0px;
	left: -1000px;
	visibility: hidden;
	color: black;
	text-decoration: none;
	background-color: transparent;
	border: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
	padding: px;
	max-width: 627px;
	max-height: 460px;
	height: auto;
	width: auto;
	border: 1px solid #000;
}

.thumbnail:hover span{ /*CSS for enlarged image*/
	visibility: visible;
	top: -44px;
	left: 300px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	width: 635px;
	height: 480px;
	background: #000;
	transition: none;
}
.thumbnail:hover span img{
	transition: none;
	border: 1px solid black;
}
}
body {
	background-color: #666666;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Century Gothic" 'Didact Gothic', sans-serif;
	font-size: 100%;
	line-height: 1.4;
	height: auto;
}
.img1 {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
	margin-top: -15px;
}
.img2 {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
	margin-top: 10px;
}


.img-box {
	width: 660px;
	float: left;
	height: 465px;
	background-color: #000;
}


/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 0px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-family: "century gothic", didact gothic, sens-serif;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #ff6c31;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	text-decoration: none;
	color: #ff6c31;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #FFF;
}

/* ~~ this fixed width container surrounds all other elements ~~ */
.container {
	width: 960px;
	background-color: #000;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
.left-box {
	float: left;
	height: 478px;
	width: 280px;
	background-color: #372f2d;
	font-family: "Century Gothic"'Didact Gothic', sans-serif;
	font-size: 18px;
	color: #FFF;
	padding-top: 4px;
	padding-left: 15px;
	padding-right: 5px;
	padding-bottom: 10px;
	line-height: 16px;
}
.left-box p {
	font-family: "Century Gothic",'Didact Gothic', sans-serif;
	font-size: 14px;
	padding: 0px;
	color: #ff6c31;
	/* [disabled]line-height: 24px; */
}


.footer {
	float: left;
	height: 20px;
	position: relative;
	bottom: 0px;
	font-family: "Century Gothic",'Didact Gothic', sans-serif;
	font-size: 9px;
	color: #FFF;
	padding-top: 5px;
}
.left-ln {
	line-height: 24px;
}


.copy {
	font-family: "Century Gothic",'Didact Gothic', sans-serif;
	font-size: 9px;
	color: #FFF;
}

.top-box {
	background-color: #F0F0F0;
	float: left;
	height: 100px;
	width: 960px;
	position: relative;
	top: 0px;
	margin-top: -18px;
}

.nav-box {
	height: 20px;
	width: 600px;
	font-family: "Century Gothic",'Didact Gothic', sans-serif;
	font-size: 20px;
	text-transform: lowercase;
	color: #ff6c31;
	padding-left: 20px;
	text-align: right;
	-webkit-transition: color 500ms ease;
	-moz-transition: color 500ms ease;
	-ms-transition: color 500ms ease;
	-o-transition: color 500ms ease;
	transition: color 500ms ease;
	padding-top: 3px;
	padding-right: 20px;
}

.logo {
	margin-top: 0px;
}




/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.content {

	padding: 10px 0;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: none;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.nav-type {
	padding-right: 20px;
	color: #ff6c31;
	padding-left: 20px;
	margin-left: 20px;
	position: relative;
	left: 15px;
	font-family: "Century Gothic",'Didact Gothic', sans-serif;
	font-size: 19px;
	top: 2px;
}
.nav-type a {
	-webkit-transition: color 500ms ease;
	-moz-transition: color 500ms ease;
	-ms-transition: color 500ms ease;
	-o-transition: color 500ms ease;
	transition: color 500ms ease;
	color: #ff6c31;
}
.nav-type a:hover {	color:#fff;
-webkit-transition: color 500ms ease;
	-moz-transition: color 500ms ease;
	-ms-transition: color 500ms ease;
	-o-transition: color 500ms ease;
	transition: color 500ms ease;
}
.nav-type.current-menu-item a{ color#fff
	color: #FFF;
}
.gallerycontainer{
	position: relative;
	width: 280px;
/*Add a height attribute and set to largest image's height to prevent overlaying*/
}

.thumbnail img{
	border: 1px solid white;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	height: 65px;
	width: 65px;
}

.thumbnail:active{
	background-color: transparent;

}

.thumbnail:active img{
	border: 1px solid #ff6c31;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.thumbnail span{ /*CSS for enlarged image*/
	position: absolute;
	padding: 0px;
	left: -1000px;
	visibility: hidden;
	color: black;
	text-decoration: none;
	background-color: transparent;
	border: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
	padding: px;
	max-width: 627px;
	max-height: 440px;
	height: auto;
	width: auto;
	border: 1px solid #000;
}

.thumbnail:active span{ /*CSS for enlarged image*/
	visibility: visible;
	top: -44px;
	left: 300px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	width: 635px;
	height: 460px;
	background: #000;
	transition: none;
}
.thumbnail:active span img{
	transition: none;
	border: 1px solid black;
}

.thumbnail:focus{
	background-color: transparent;

}

.thumbnail:focus img{
	border: 1px solid #ff6c31;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.thumbnail:focus span{ /*CSS for enlarged image*/
	visibility: visible;
	top: -44px;
	left: 300px; /*position where enlarged image should offset horizontally */
	z-index: 50;
	width: 635px;
	height: 460px;
	background: #000;
	transition: none;
}
.thumbnail:focus span img{
	transition: none;
	border: 1px solid black;}

.left-box h3 {
	margin-bottom: 2px;
	font-size: 16px;
	margin-top: 5px;

}
.desc {
	color: #FFF;
	margin-top: 10px;
	margin-bottom: 5px;
	line-height: 14px;
}
.topleft {
	color: #FFFFFF;
	font-size: 19px;
}
.container .content .left-box .left-ln .topleft {

}
.img-box p {
	color: #FFF;
	margin: 15px;
	font-size: 14px;
	line-height: 24px;
	font-family: "century gothic",'Didact Gothic', sans-serif;
}
.img-box h3 {
	color: #FFF;
	margin: 15px;
	font-family: "century gothic",'Didact Gothic', sans-serif;
}

#default{ /*CSS for enlarged image*/
	position: relative;
	left: 16px;
	color: black;
	text-decoration: none;
	z-index: 40;
	top: 12px;
	visibility: visible;
}
#default img{
	margin: 0 px px 0;
	max-width: 627px;
	max-height: 435px;
	height: auto;
	width: auto;
}
.contact {
	margin-left: 25px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	line-height: 2px;
	color: #fff;
	vertical-align: top;
	font-size: 14px;
}
.container .content .img-box #contactform {
	text-align: right;
	margin-right: 150px;
}
input {
	margin-left: 20px;
}
textarea {
	margin-left: 20px;
	margin-right: -22px;
}



.lnhgt {
	line-height: 18px;
}
