/*
Item Name : MyCountdown - Sliding Coming Soon Page
Author URI : http://themeforest.net/user/Pixelworkshop/
Version : 1.0
*/

/*

TABLE OF CONTENTS

01 RESET
02 PAGE & GRID
03 HEADER
03 HEADER
04 DOTS NAVIGATION
05 SCROLLPANE
06 CONTENT STYLING
07 COUNTDOWN
08 FORM ELEMENTS

*/



/*  _______________________________________

	01 RESET
    _______________________________________  */



/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
a, abbr, acronym, address, big, cite, code, 
del, dfn, em, img, ins, kbd, q, s, samp, 
small, strike, strong, sub, sup, tt, var, 
b, u, i, center, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary, 
time, mark, audio, video{margin:0; padding:0; border:0; font-size:100%; font:inherit; vertical-align:baseline}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{display:block}
body{line-height:1}
ol, ul{list-style:none}
blockquote, q{quotes:none}
blockquote:before, blockquote:after, 
q:before, q:after{content:''; content:none}
table{border-collapse:collapse; border-spacing:0}
*:focus {outline: none;}



/*  _______________________________________

	02 PAGE & GRID
    _______________________________________  */

html {
  background: url(../img/background.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  }

html, body {
	height: 100%;
	width:100%;
	overflow:hidden;
}
body {
	font: normal normal 16px;
	font-family: 'Raleway', sans-serif;
}
#wrapper {
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	left:0;
	/* overflow:hidden; */
	overflow-x:hidden;
	overflow-y:auto;
}
	#mask {
		width:2000%;
		height:1000px;
	}
	.section_holder {
		width:5%;
		height:5%;
		min-width:960px;
		min-height:900px;
		float:left;
	}
	.container {
		width:100%;
		height:100%;
		margin:0;
		position:relative;
	}
	
	iframe {margin-top: -5px; }
	#commentform iframe {margin-top: 0px;}

.wrapper_ocean {
/*background:url("../img/backgrounds/wild_oliva.png") repeat;*/

}

.next_button {display: block; width: 84px; height: 80px; position: absolute; right:-31px; top:350px;}
.previous_button {display: block; width: 84px; height: 80px; position: absolute; left:-28px; top:350px;}
  
  .next_button img, .previous_button img{
  position:absolute;
  left:0;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

  .next_button img.top:hover, .previous_button img.top:hover{
  opacity:0;
}

#header-title {display: none; width: 350px; position: absolute; top: 13px; left: 70px; z-index:999;}
#header-title  h2 {color: #fff; padding-top:5px;}
#logo {position:absolute; right:10px; top: 10px;}
.section_content {
	background-color:#fff;
	width:900px;
	min-height:700px;
	height:auto;
	margin:0 auto;
	position:absolute;
	top:50%;
	padding: 10px 80px 0px 80px;
	margin-top:-360px;
	left:50%; 
	margin-left:-520px;
	-moz-box-shadow: 0 0 25px 2px #192231;
-webkit-box-shadow: 0 0 25px 2px#192231;
box-shadow: 0 0 25px 2px #192231;
-webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
}
.section_content img {max-width: 100%; margin-bottom: 0px!important;}
.content_container {
	margin:25px auto 0 auto;
	width: 100%;
}
.grayline {height:2px; width:100%; background-color:#d9d9d9; margin: 0px auto 10px auto;}
.column_last {margin-right: 0!important;}
.column_1,
.column_2,
.column_3,
.column_third,
.column_1minus,
.column_half {
	display:inline;
	float: left;
	position: relative;
	margin-right: 25px;
}
.column_1 {width:21%;}
.column_1minus {width:48%;}
.column_2 {width:71%;}
.column_3 {width:100%;}
.column_half {width:47%;}
.column_third {width:31%;}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 12px;
}
.clear_section {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}



/*  _______________________________________

	03 HEADER
    _______________________________________  */

/*#menu {
	position: fixed;
	width:100%;
	padding:0;
	margin:0;
	top:0;
	height:85px;
	background-color:#000000;
		-moz-box-shadow: 0 0 25px 2px #192231;
-webkit-box-shadow: 0 0 25px 2px#192231;
box-shadow: 0 0 25px 2px #192231;
padding:0;
}*/

#menu {
	position: fixed;
	width:100%;
	padding:0;
	margin:0;
	top: 0; /* use top:-85px; for a slide-out */
	height:85px;
	background-color:#00577d;
		-moz-box-shadow: 0 0 25px 2px #192231;
-webkit-box-shadow: 0 0 25px 2px#192231;
box-shadow: 0 0 25px 2px #192231;
padding:0; 
-webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
}

.ca-menu{
    padding:0;
    margin:0 auto;
    width: 940px;
}
.ca-menu li{
    width: 100px;
    height: 85px;
    overflow: hidden;
    position: relative;
	font-size:13px;
    float:left;
    background: #00577d;
    margin-right: 4px;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    transition: all 300ms linear;
}
.ca-menu li:last-child{
    margin-right: 0px;
}
.ca-menu li a{
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #fff;
    position: relative;
}
.ca-icon{
  
    position: absolute;
    left: 32px;
    top: 10px;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ca-content{
    position: absolute;
    left: 0px;
    width: 100%;
    height: 50%;
    top: 63%;
}
.ca-main{
    font-size: 14px;
	font-weight: bold;
    text-align: center;
	line-height: 32px;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-sub{
    text-align:center;
    font-size: 10px;
    color: #fff;
    line-height: 25px;
    opacity: 0.8;
    position: absolute;
    bottom: 0;
    width: 100%; 
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
}
.ca-menu li:hover{
    background-color: #00afab;
}
.ca-menu li:hover .ca-icon{
    color: #00afab;
    -webkit-animation: moveFromBottom 300ms ease;
    -moz-animation: moveFromBottom 300ms ease;
    -ms-animation: moveFromBottom 300ms ease;
}
.ca-menu li:hover .ca-main{
    color: #fff;
	font-weight: bold;
   
    -webkit-animation: moveFromBottom 500ms ease;
    -moz-animation: moveFromBottom 500ms ease;
    -ms-animation: moveFromBottom 500ms ease;
    /* color: #fff; */
    /* -webkit-animation: smallToBig 300ms ease;
    -moz-animation: smallToBig 300ms ease;
    -ms-animation: smallToBig 300ms ease; */
}
.ca-menu li:hover .ca-sub{
    color: #fff;
	font-weight: bold;
    background-color: #00afab;
    -webkit-animation: moveFromBottom 500ms ease;
    -moz-animation: moveFromBottom 500ms ease;
    -ms-animation: moveFromBottom 500ms ease;
}

ul li a.selected .ca-main {
    background-color: #00afab;  color: #fff; opacity: 1.0;}

ul li a.selected {
    background-color: #00afab;}
	
	
@-webkit-keyframes smallToBig{
    from {
        -webkit-transform: scale(0.1);
    }
    to {
        -webkit-transform: scale(1);
    }
}
@-moz-keyframes smallToBig{
    from {
        -moz-transform: scale(0.1);
    }
    to {
        -moz-transform: scale(1);
    }
}
@-ms-keyframes smallToBig{
    from {
        -ms-transform: scale(0.1);
    }
    to {
        -ms-transform: scale(1);
    }
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(100%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(100%);
    }
    to {
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(100%);
    }
    to {
        -ms-transform: translateY(0%);
    }
}




/*
#menu ul {
	text-align: center;
}
#menu ul li {
	display:inline;
	margin:0 15px 0 15px;
}
#menu ul li a {
	display: inline-block;
    text-align: center;
	text-transform:uppercase;	
	font-size:12px;
	line-height:12px;
	padding:14px 0px 14px 0px;
	text-shadow:1px 1px #000000;
	background:url("../img/mag_glass.png") no-repeat center;
}
#menu ul li a:hover,
#menu ul li a.selected {
	text-decoration:none;
	color:#ffffff;
	border-top:6px solid #ffffff;
} */



/*  _______________________________________

	04 DOTS NAVIGATION
    _______________________________________  */



.navigationmap {
display: none; /*comment this out to have the tile map appear */
	position: fixed;
	text-align:center;
	float:right;
	top:100px;
	right:20px;
}
	.navigationmap li {
		float:left;
		margin:0;
		padding:0;
	}
	.navigationmap li.clearrow {
		clear:both;
		float:none;
	}
	.navigationmap li.emptyitem {
		float:left;
		display:block;
		width:20px;
		height:20px;
		margin:3px;
	}
	.navigationmap a {
		display:block;
		width:50px;
		height:50px;
		margin:7px;
		background-color:#c9c9c9;
		
		transition: all 0.5s ease;
		-moz-box-shadow: 0 0 8px 2px #192231;
-webkit-box-shadow: 0 0 8px 2px#192231;
box-shadow: 0 0 8px 2px #192231;
	}
	.navigationmap_vertical li {
		clear:both;
	}
	
	/*Map images*/
	.navigationmap .section_home {background:url("../img/home.png") no-repeat center;}
	.navigationmap .section_1 {background:url("../img/history.png") no-repeat center;}
	.navigationmap .section_2 {background:url("../img/doc-white.png") no-repeat center;}
	.navigationmap .section_3 {background:url("../img/comment-box.png") no-repeat center;}
	.navigationmap .section_4 {background:url("../img/checkbox.png") no-repeat center;}
	.navigationmap .section_5 {background:url("../img/map.png") no-repeat center;}
	.navigationmap .section_6 {background:url("../img/routing.png") no-repeat center;}
	.navigationmap .section_7 {background:url("../img/noise.png") no-repeat center;}
	.navigationmap .section_8 {background:url("../img/GetInvolved.png") no-repeat center;}

	
	.navigationmap .scrollsection {background-color: #626262;}
	.navigationmap a:hover {background-color:#43963a;}
	.navigationmap .selected {background-color:#43963a; opacity: 1.0;}

	


/*  _______________________________________

	05 SCROLLPANE
    _______________________________________  */



.scrollpane {
	width: 755px;
	height: 400px;
	margin:0 auto;
	overflow: auto;
}
.jspContainer {
	overflow: hidden;
	position: relative;
}
.jspPane {
	position: absolute;
}
.jspVerticalBar {
	position: absolute;
	top: -30px;
	height:370px;
	right:1px;
	width: 10px;
	background:url("../img/scrollpane/scrollpane_track.png") center 5px no-repeat;
}
	.jspVerticalBar * {
		margin: 0;
		padding: 0;
	}
.jspVerticalBar .jspCap {
	display: block;
	background: none;
	height: 30px;
}
.jspTrack {
	position: relative;
}
.jspDrag {
	background:url("../img/scrollpane/scrollpane_drag.png") center center no-repeat;
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	width:11px;
	height:11px;
}



/*  _______________________________________

	06 CONTENT STYLING
    _______________________________________  */

p, ul, ol {font-size:15px;line-height:20px;}
p {margin-bottom: 15px;}

a {text-decoration:none;color:#00afab;}
a:hover {text-decoration:underline;}

/* Headings */

h1, h2, h3, h4, h5, h6 {line-height:100%;}
h1 {font-size:34px;line-height:32px;margin-bottom:8px; color:#3c5255; font-weight:bold;}
h2 {
	font-size: 24px; 
		margin-bottom:5px;
		font-weight: bold;
}
h3 {
	font-size: 18px; 
		margin-bottom:10px;
		color: #00577d;
		font-weight: bold;
}
h4 {
	font-size: 16px; 
	color: #00afab;
	font-weight: bold;
}
h5 {
	font-size: 14px;
	font-style:normal;
	text-transform:uppercase;
}
h6 {
	font-size: 12px; 
	font-style:normal;
	text-transform:uppercase;
	padding-bottom:6px;
	border-bottom:1px solid rgba(255,255,255,0.04);
}
.textcenter {text-align:center;}
.imagecenter{display: block;margin-left: auto;margin-right: auto;}

/* Lists */

ul, ol {
	margin-left:0;
}
ul {
	list-style:none;
}

.transpo {
	list-style-image: url("../img/transpo.png");

}

.study {
	list-style-image: url("../img/study.png");

}
.alts {
	list-style-image: url("../img/alts.png");

}
.agency {
	list-style-image: url("../img/agency.png");

}
.enviro {
	list-style-image: url("../img/enviro.png");

}.permits {
	list-style-image: url("../img/permits.png");

}

.section_content ul {
	list-style:outside; padding-left:16px;
}
.section_content li {
margin-bottom:8px;
}
ol {
	list-style:decimal;
}
.list li, .list2 li, .num li, .num2 li {
	padding-left:12px
}
.list {
	margin:0 0 18px 15px;
	list-style:disc;
}
.list2 {
	margin:0 0 18px 15px; 
	list-style:square;
}
.num {
	margin:0 0 18px 18px; 
	list-style:decimal;
}
.num2 {
	margin:0 0 18px 18px; 
	list-style:upper-latin;
}
.caption {font-size: 10px; font-style: italic; color: #54565b;line-height:1.1em;}
/* Colored Border Paragraphs */

.dark, .brown, .yellow, .red, .blue, .green {
	padding-left:15px; 
}
.dark {
	border-left:#54565b solid 7px;
}
.brown  {
	border-left:#8D8767 solid 7px;
}
.yellow {
	border-left:#DBA742 solid 7px;
}
.red {
	border-left:#C05D48 solid 7px;
}
.blue {
	border-left:#52878B solid 7px;
}
.green {
	border-left:#B0BD85 solid 7px;
}

/* Portfolio Images */

img {
	margin-bottom:20px;
}
.gallery {
	float:left;
	padding:0;
	margin:2px 0;
}
.gallery li {
	width:232px;
	height:145px;
	float:left;
	padding:0;
	margin:0 1px 1px 0;
}
.gallery li.gallery_last {
	margin-right:0;
}

/* Misc */

.logo {
	
	width:80%
	height:44px;
	margin:0 auto;
}
.separator {
	background:url("../img/separator.png") center center;
	clear:both;
	width:700px;
	height:90px;
	margin:0 auto;
}
.black_box {
	padding:20px 20px 0 20px;
	width:170px;
	background:#000000;
	background:rgba(0,0,0,0.3);
	border-bottom:1px solid rgba(255,255,255,0.04);
	-webkit-border-radius:4px;
	-khtml-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}

/* Social Icons */

.social_icons {
	margin:10px auto;
	width:184px;
}
	.social_icons li {
		float:left;
		margin:0 5px 0 5px;
	}


/*  _______________________________________

	08 FORM ELEMENTS
    _______________________________________  */



#contact {
	display: block;
	width: 455px;
	margin: 0;
	padding: 0;
}
#contactform {
	clear:both;
}
input,
input.submit,
textarea {
	border:none;
	background:url("../img/darkbg30.png") repeat;
	border-bottom:1px solid rgba(255,255,255,0.06);
	-webkit-border-radius:4px;
	-khtml-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}
input, 
textarea {
	font-family: 'Droid Sans',sans-serif;
	font-size:11px;
	color:#dddddd;
	margin:10px 0;
	padding:5px;
	width:295px;
	resize:none;
}
input:hover, 
textarea:hover {
	background:url("../img/darkbg40.png") repeat;
}
label,
input.submit {
	font-family: 'Droid Sans',sans-serif;
	font-size: 11px;
	color:#eeeeee;
}
input.submit {
	text-shadow:none;
}
label {
	float: left;
	height: 26px;
	margin:10px 0;
	line-height: 26px;
	width: 150px;
}
input {
	height:20px;
}
input.verify {
	width:30px;
	float:left;
}
input.submit {
	float:right;
	height:30px;
	margin-left:20px;
	padding:8px 5px 8px 5px;
	width:80px;
}
span.required{
	font-size: 13px;
	color:rgb(144,0,0);
	color:rgba(144,0,0, 0.7);
}
#message {
	margin: 0;
	padding: 0;
}
.error_message, 
.success_message {
	font-size:11px;
	padding:10px 10px 10px 36px; 
	margin-bottom:18px;
	text-shadow:1px 1px 1px #ffffff; 
	-webkit-border-radius:4px;
	-khtml-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}
	.error_message {
		background:rgb(251, 229, 226) url("../img/icons/cross.png") no-repeat 10px 8px; 
		background:rgba(251, 229, 226, 0.8) url("../img/icons/cross.png") no-repeat 10px 8px; 
		border:#200704 solid 1px; 
		color:#6b180d;
	}
	.success_message {
		background:rgb(225, 248, 203) url("../img/icons/tick.png") no-repeat 10px 8px; 
		background:rgba(225, 248, 203, 0.8) url("../img/icons/tick.png") no-repeat 10px 8px; 
		border:#242a0d solid 1px; 
		color:#465119;
	}
.loader {
	clear:both;
	padding: 12px 0 0 15px;
}

/* Newsletter Styling */

#newsletter_signup {
	margin:-10px 0;
}
#newsletter_email {
	width:530px;
	text-align:center;
	margin-bottom:20px;
}
#newsletter_button {
	float:left;
	width:100px;
	margin-left:220px;
	margin-bottom:20px;
}
#newsletter_response {  
	clear:both;
    display:block;
	margin:0 auto 0 auto;
	-webkit-border-radius:4px;
	-khtml-border-radius:4px;
	-moz-border-radius:4px;
	border-radius:4px;
}  
	.newsletter_waiting {
		background:url("../img/icons/loader.gif") no-repeat;
		margin:0 auto;
		width:24px;
		height:24px;
		padding:0;
	}
	.newsletter_success,
	.newsletter_error {
		width:300px;
		padding:7px 10px 1px 36px; 
		text-shadow:1px 1px 1px #ffffff; 
	}
	.newsletter_error {
		background:rgb(251, 229, 226) url("../img/icons/cross.png") no-repeat 10px 8px; 
		background:rgba(251, 229, 226, 0.8) url("../img/icons/cross.png") no-repeat 10px 8px; 
		border:#200704 solid 1px; 
		color:#ee7624;
	}
	.newsletter_success {
		background:rgb(225, 248, 203) url("../img/icons/tick.png") no-repeat 10px 8px; 
		background:rgba(225, 248, 203, 0.8) url("../img/icons/tick.png") no-repeat 10px 8px; 
		border:#00a1e0 solid 1px; 
		color:#00a1e0;
	}



/*  _______________________________________

	COMMENT FORM
    _______________________________________  */



.panel {
	position: fixed;
	top: 150px;
	right: 0px;
	display: none;
	background:#fff;
	-moz-border-radius: 0 6px 6px 0;
	-webkit-border-radius: 0 6px 6px 0;
	border-radius: 0 6px 6px 0;
	width: 480px;
	height: 660px;
	padding: 15px 15px 3px 0px;
	-moz-box-shadow: 0 0 25px 2px #000000;
-webkit-box-shadow: 0 0 25px 2px#000000;
box-shadow: 0 0 25px 2px #000000;
}
.panel ul li {
	line-height:21px;
}
.panel a {
	color:#dddddd;
	padding-left:10px;
}
.panel a:hover,
.panel a.current {
	border-left:2px solid #ffffff;
	text-decoration:none;
	padding-left:8px;
}
a.trigger{
	position: fixed;
	text-decoration: none;
	top: 100px; 
	right: -10px;
	font-size: 20px;
	font-style:italic;
	font-weight:bold;
	color:#fff;
	line-height:34px;
	padding: 10px 15px;
	background:#ee7624;
	/* -moz-border-radius: 0 6px 6px 0;
	-webkit-border-radius: 0 6px 6px 0; */
	/* border-radius: 0 6px 6px 0; */
	display: block;
	transition: all 0.5s ease;
		-moz-box-shadow: 0 0 25px 2px #192231;
-webkit-box-shadow: 0 0 25px 2px#192231;
box-shadow: 0 0 25px 2px #192231;
	
}
a.trigger:hover{
background:#ee7624;
	position: fixed;
	display: block;
	right: -1px
}
#comment-button {display: none; height: 25px; padding: 5px 15px; border: 2px solid #fff; position: absolute; top: 5px; right: 15px; background-color:#ee7624;/*  border-radius: 4px; */	transition: all 0.5s ease;}
#comment-button:hover {background-color: #bd352c;}
#comment-button a {color: #fff; font-size: 20px; font-weight: bold; line-height:1.2em;}
#comment-button a:hover {text-decoration: none;}
#commentform {margin-top:-25px;}

/*LOGO CONTAINER*/
#drpt-logo-container {position: absolute; bottom:10px; left:10px; width:500px;}
/*  _______________________________________

	TOOLTIP
    _______________________________________  */

 a.tooltip {outline:none;text-decoration:none;}
    a.tooltip strong {line-height:30px;}
    a.tooltip > span 
    {
	    width:auto;
		height:10px;
	    padding: 0px 20px 5px 20px;
	    margin-top: 0px;
	    margin-left: 50px;
	    opacity: 0;
	    visibility: hidden;
	    z-index: 100;	   
	    position: absolute;

	    font-family: Arial;
	    font-size: 13px;
	    font-style: bold;  
        	    
	    -webkit-border-radius: 3px;
	    -moz-border-radius: 3px;
	    -o-border-radius: 3px;
	    border-radius: 3px;
	    
	    
        -webkit-box-shadow: 2px 2px 2px #999;
	    -moz-box-shadow: 2px 2px 2px #999;		
	    box-shadow: 2px 2px 2px #999;	    
	    
	    -webkit-transition-property:opacity, margin-top, visibility, margin-left;
	    -webkit-transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
	    -webkit-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
	
	    -moz-transition-property:opacity, margin-top, visibility, margin-left;
	    -moz-transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
	    -moz-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
	
	    -o-transition-property:opacity, margin-top, visibility, margin-left;
	    -o-transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
	    -o-transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
	
	    transition-property:opacity, margin-top, visibility, margin-left;
	    transition-duration:0.4s, 0.3s, 0.4s, 0.3s;  
	    transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out;
    }
    
    /*a.tooltip > span:hover,*/
	a.tooltip:hover > span
	{
		opacity: 1;
		text-decoration:none;
		visibility: visible;
		overflow: visible;
		margin-top:-30px;
		display: inline;
		margin-left: 50px;		
	}

	a.tooltip span b {
    
		width: 15px;
		height: 15px;
		margin-left: -10px;
		margin-top: 3px;
			
		display: block;
		position: absolute;

		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
		z-index: -10;
		-webkit-box-shadow: inset -1px 1px 0 #fff;
		-moz-box-shadow: inset 0 1px 0 #fff;
		-o-box-shadow: inset 0 1px 0 #fff;
		box-shadow: inset 0 1px 0 #fff;
			
		display: none\0/;
		*display: none;
	}
    
a.tooltip > span {
	color: #EEEEEE; 

	background: #000000;
	background: -moz-linear-gradient(top, #000000 0%, #000000 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#000000), color-stop(100%,#000000));
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000',GradientType=0 );
	    
	border: 1px solid #FFFFFF;	     
}    
	  
a.tooltip span b {
	background: #000000;
	border-top: 1px solid #FFFFFF;
	border-right: 1px solid #FFFFFF;
}  

a.tooltip span {
    z-index:5000!important;
	}
	
/*  _______________________________________

	Slideout
    _______________________________________  */
	
#menu-tab {  
display: none; /* comment this out to have a slide-out men */
height:38px;
  left:48%;
  position:relative;
  top:84px;
  width:60px;}
  
  #slideout {position:relative; top:-86px;  -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    transition-duration: 0.6s;
    -o-transition-duration: 0.6s;}
	
	#slideout:hover {
   top:0px
}
#slideout:hover #menu {
    top:0px;
}

/*  _______________________________________

	lightbox images
    _______________________________________  */

.example-image-link{display:inline-block;margin-top:0px;background-color:#fff;line-height:0;-webkit-transition:border 0.5s ease-in-out;-moz-transition:border 0.5s ease-in-out;-o-transition:bborder 0.5s ease-in-out;transition:border 0.5s ease-in-out; text-align:center;}.example-image:hover{border: 3px solid #4ae;-webkit-transition:border 0.5s ease-in-out;-moz-transition:border 0.5s ease-in-out;-o-transition:bborder 0.5s ease-in-out;transition:border 0.5s ease-in-out;}.example-image{width:100%; border: 1px solid #e1e1e1; margin-top:5px; -webkit-transition:border 0.5s ease-in-out;-moz-transition:border 0.5s ease-in-out;-o-transition:bborder 0.5s ease-in-out;transition:border 0.5s ease-in-out;}
.shrink {width:70%;}
.other-image-link{display:inline-block;background-color:#fff;line-height:0;-webkit-transition:border 0.5s ease-in-out;-moz-transition:border 0.5s ease-in-out;-o-transition:bborder 0.5s ease-in-out;transition:border 0.5s ease-in-out; text-align:center;}.other-image:hover{border: 3px solid #4ae;-webkit-transition:border 0.5s ease-in-out;-moz-transition:border 0.5s ease-in-out;-o-transition:bborder 0.5s ease-in-out;transition:border 0.5s ease-in-out;}.other-image{width:100%; border: 1px solid #e1e1e1; margin-top:5px; -webkit-transition:border 0.5s ease-in-out;-moz-transition:border 0.5s ease-in-out;-o-transition:bborder 0.5s ease-in-out;transition:border 0.5s ease-in-out;}

/*  _______________________________________

	MEDIA QUERIES
    _______________________________________  */
	
@media screen and (max-width: 1400px) {
.ca-menu{width: 930px;}
.ca-menu li{ width: 90px; margin-right: 2px;}
.ca-icon{left: 27px;}
.ca-main{font-size: 12px;}
.section_content {margin-top:-335px;}

	}
	
		@media screen and (max-width: 1250px) {
.section_content {margin:-330px auto 0 -480px; width:780px;}
.ca-menu{width: 930px;}
.ca-menu li{ width: 80px; margin-right: 0px; }
.ca-icon{left: 23px;}
.ca-main{font-size: 11px;}

	}
	
	@media screen and (max-width: 1100px) {
.ca-menu{width: 930px;}
.ca-menu li{ width: 80px; margin-right: 0px; }
.ca-icon{left: 23px;}
.ca-main{font-size: 11px;}
.section_content {margin:-330px auto 0 -460px; width:750px;}
h1 {font-size:28px; line-height: 1.3em;}
h2 {font-size: 19px;}
h3 {font-size: 14px;}
p, ul, ol {font-size:13px;line-height:20px;}
	}
	
		@media screen and (max-width: 960px) {
.ca-menu{width: 930px;}
.ca-menu li{ width: 70px; margin-right: 0px; border-right: 1px solid #454545;}
.ca-icon{left: 17px;}
.ca-main{font-size: 10px;}
.ca-menu li:last-child{ border-right: none;}
.section_content {margin:-335px auto 0 -440px; width:660px;}
#drpt-logo-container {display:none;}
	}
	
@media screen and (max-width: 860px) {
#header-title {display: block;}
#menu {height: 45px;}
.ca-menu{display:none;}
#comment-button {display: block; }
a.trigger {display: none;}
.section_content {margin:-350px auto 0 -450px; width:580px;}
#dc2rvalogo {width:150px;}
	}
	
	@media screen and (max-width: 760px) {
.section_content {margin:-350px auto 0 -460px; width:460px;}
h1 {font-size:18px; line-height: 1.3em;}
h2 {font-size: 16px;}
h3 {font-size: 14px;}
#dc2rvalogo {display:none;}
.smallboard {width:40%;}
.column_1,
.column_2,
.column_3,
.column_half {
width:100%;
#dc2rvalogo {width:150px;}
}
	}
	
		@media screen and (max-width: 660px) {
html, body {
overflow:visible;}
.section_holder {
    height: 1200px;
	float:none;}
.section_content {margin:-540px auto 0 -440px; width:270px;}
#header-title h2 {display:none;}
h1 {font-size:16px; line-height: 1.5em;}
h2 {font-size: 14px;}
h3 {font-size: 12px;}
.column_1,
.column_2,
.column_3,
.column_half {
width:100%;
}
.mobilehide {display:none;}
	}
	
	
	@media screen and (max-width: 360px) {
html, body {
overflow:visible;}
.section_holder {
    height: 1200px;
	float:none;}

.section_content {margin:-540px 40px 200px -460px; width:170px;
	padding: 10px 50px 0px 30px;width: 200px;}
.section_content img {max-width:80%;}
.next_button img, .previous_button img {right: 11px; max-width:70%!important;}

	#header-title h2 {display:none;}
h1 {font-size:14px; line-height: 1.0em;}
h2 {font-size: 12px;}
h3 {font-size: 10px;}
.column_1,
.column_2,
.column_3,
.column_half {
width:100%;
}
.mobilehide {display:none;}

	}	
	