/*
* Template Name: Hike
* Author: Serif Templates
* Author URI: http://seriftemplates.com
* Version: 1.0
*/


@font-face {
    font-family: 'Lato Light';
    src: url('fonts/Lato-Lig-webfont.eot');
    src: url('fonts/Lato-Lig-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/Lato-Lig-webfont.woff') format('woff'),
         url('fonts/Lato-Lig-webfont.ttf') format('truetype'),
         url('fonts/Lato-Lig-webfont.svg#LatoLight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Regular-webfont.eot');
    src: url('fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/OpenSans-Regular-webfont.woff') format('woff'),
         url('fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('fonts/OpenSans-Regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Light';
    src: url('fonts/OpenSans-Light-webfont.eot');
    src: url('fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/OpenSans-Light-webfont.woff') format('woff'),
         url('fonts/OpenSans-Light-webfont.ttf') format('truetype'),
         url('fonts/OpenSans-Light-webfont.svg#open_sanslight') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans Extrabold';
    src: url('fonts/OpenSans-ExtraBold-webfont.eot');
    src: url('fonts/OpenSans-ExtraBold-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/OpenSans-ExtraBold-webfont.woff') format('woff'),
         url('fonts/OpenSans-ExtraBold-webfont.ttf') format('truetype'),
         url('fonts/OpenSans-ExtraBold-webfont.svg#open_sansextrabold') format('svg');
    font-weight: normal;
    font-style: normal;
}


#preloader {
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#fff; /* change if the mask should have another color then white */
	z-index:99; /* makes sure it stays on top */
}

#status {
	width:60px;
	height:59px;
	position:absolute;
	left:50%; /* centers the loading animation horizontally one the screen */
	top:50%; /* centers the loading animation vertically one the screen */
	background-image:url(images/page-loader.gif); /* path to your loading animation */
	background-repeat:no-repeat;
	background-position:center;
	margin:-30px 0 0 -30px; /* is width and height divided by two */
}

::-moz-selection { background-color: #666; color: #FFF; }
::selection { background-color: #666; color: #FFF; }


/* ------------------------------------------------------------------------
	Back To Top
------------------------------------------------------------------------- */

#toTop {
	display:none;
	text-decoration:none;
	position:fixed;
	bottom:12px;
	right:12px;
	overflow:hidden;
	width:43px;
	height:43px;
	border:none;
	text-indent:100%;
	z-index: 999;
	background: #282A2B url(images/totop.png) no-repeat left top;
	-webkit-border-radius: 0px; 
    -moz-border-radius: 0px; 
    border-radius: 0px; 
}

#toTopHover {
	background: #000 url(images/totop.png) no-repeat left -43px;
	width:43px;
	height:43px;
	display:block;
	overflow:hidden;
	float:left;
	opacity: 0;
	-moz-opacity: 0;
	filter:alpha(opacity=0);
}

#toTop:active, #toTop:focus {
	outline:none;
}


/* ------------------------------------------------------------------------
	Accordion
------------------------------------------------------------------------- */

.smk_accordion {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

.smk_accordion .accordion_in {
  border: 1px solid #CCC;
  position: relative;
  z-index: 10;
  margin-top: -1px;
  overflow: hidden;
}

.smk_accordion .accordion_in .acc_head {
  position: relative;
  background: #FDFDFD;
  padding: 10px;
  color: #7B7E85;
  font-size: 16px;
  font-family: "Lato Light", sans-serif;
  display: block;
  cursor: pointer;
}
.smk_accordion .accordion_in .acc_head .acc_icon_expand {
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 10px;
  top: 50%;
  margin-top: -9px;
  background: url(images/plusminus.png) center 0;
}

.smk_accordion .accordion_in .acc_content {
  background: #F9F9F9;
  color: #7B7E85;
  font-family: "Lato Light", sans-serif;
  padding: 3px 40px 20px 10px;
}
.smk_accordion .accordion_in .acc_content h1:first-of-type,
.smk_accordion .accordion_in .acc_content h2:first-of-type,
.smk_accordion .accordion_in .acc_content h3:first-of-type,
.smk_accordion .accordion_in .acc_content h4:first-of-type,
.smk_accordion .accordion_in .acc_content h5:first-of-type,
.smk_accordion .accordion_in .acc_content h6:first-of-type {
  margin-top: 5px;
}

.smk_accordion .accordion_in:first-of-type,
.smk_accordion .accordion_in:first-of-type .acc_head {
  border-radius: 0px 0px 0 0;
}
.smk_accordion .accordion_in:last-of-type,
.smk_accordion .accordion_in:last-of-type .acc_content {
  border-radius: 0 0 0px 0px;
}
.smk_accordion .accordion_in.acc_active > .acc_content {
  display: block;
}
.smk_accordion .accordion_in.acc_active > .acc_head {
  background: #F9F9F9;
}
.smk_accordion .accordion_in.acc_active > .acc_head .acc_icon_expand {
  background: url(images/plusminus.png) center -18px;
}
.smk_accordion.acc_with_icon .accordion_in .acc_head,
.smk_accordion.acc_with_icon .accordion_in .acc_content {
  padding-left: 40px;
}


/* ------------------------------------------------------------------------
	Skills Bar
------------------------------------------------------------------------- */


.progress-bar {
    background-color: #EBEBEB;
    height: 15px;
    padding: 0;
    width: 100%;
    margin: 0;         
    border-radius: 0px;        
}

.progress-bar span {
    display: inline-block;
    height: 100%;
    border-radius: 0px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset;
    transition: width .4s ease-in-out;    
}

.hike span {
      background-color: #47C868; 
}

.stripes span {
            -webkit-background-size: 30px 30px;
            -moz-background-size: 30px 30px;
            background-size: 30px 30px;			
			background-image: -webkit-gradient(linear, left top, right bottom,
								color-stop(.25, rgba(255, 255, 255, .15)), color-stop(.25, transparent),
								color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .15)),
								color-stop(.75, rgba(255, 255, 255, .15)), color-stop(.75, transparent),
								to(transparent));
            background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                                transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                                transparent 75%, transparent);
            background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                                transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                                transparent 75%, transparent);
            background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                                transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                                transparent 75%, transparent);
            background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                                transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                                transparent 75%, transparent);
            background-image: linear-gradient(135deg, rgba(255, 255, 255, .15) 25%, transparent 25%,
                                transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
                                transparent 75%, transparent);            
            
            -webkit-animation: animate-stripes 3s linear infinite;
            -moz-animation: animate-stripes 3s linear infinite;       		
		}
        
        @-webkit-keyframes animate-stripes { 
			0% {background-position: 0 0;} 100% {background-position: 60px 0;}
        }
        
        
        @-moz-keyframes animate-stripes {
			0% {background-position: 0 0;} 100% {background-position: 60px 0;}
        }


/* ------------------------------------------------------------------------
	Lightbox
------------------------------------------------------------------------- */

#wplightbox_prevdiv {
	background-image: url("images/prev_mod.png") !important;
	background:transparent;
	border: solid 2px #fff  !important;
	margin-left: 66px !important;
	-webkit-transition: background-color 0.25s;
	-moz-transition: background-color 0.25s;
	-o-transition: background-color 0.25s;
	-ms-transition: background-color 0.25s;
	transition: background-color 0.25s;
}

#wplightbox_prevdiv:hover {
	background-image: url("images/prev_mod_over.png") !important;
	background:#fff;
}

#wplightbox_nextdiv {
	background-image: url("images/next_mod.png") !important;
	background:transparent;
	border: solid 2px #fff  !important;
	margin-left: -63px !important;
	-webkit-transition: background-color 0.25s;
	-moz-transition: background-color 0.25s;
	-o-transition: background-color 0.25s;
	-ms-transition: background-color 0.25s;
	transition: background-color 0.25s;
}

#wplightbox_nextdiv:hover {
	background-image: url("images/next_mod_over.png") !important;
	background:#fff;
}

#wplightbox_closediv {
	background-image: url("images/lightbox_close_1_mod.png") !important;
	background:transparent;
	border: solid 2px #fff  !important;
	margin-top: 66px !important;
	margin-left: -21px;
	-webkit-transition: background-color 0.25s;
	-moz-transition: background-color 0.25s;
	-o-transition: background-color 0.25s;
	-ms-transition: background-color 0.25s;
	transition: background-color 0.25s;
}

#wplightbox_closediv:hover {
	background-image: url("images/lightbox_close_1_mod_over.png") !important;
	background:#fff;
}

#wplightbox_prevdiv, #wplightbox_nextdiv, #wplightbox_closediv {
	-webkit-border-radius: 0px;
       -moz-border-radius: 0px;
            border-radius: 0px;
}


/* ------------------------------------------------------------------------
	Price List Hover Effect
------------------------------------------------------------------------- */

#price-table1, #price-table2, #price-table3, #price-table4,
#price-table5, #price-table6, #price-table7, #price-table8,
#price-table9, #price-table10 {
	-webkit-transition: all 0.25s ease;
  	-moz-transition: all 0.25s ease;
  	-o-transition: all 0.25s ease;
  	-ms-transition: all 0.25s ease;
  	transition: all 0.25s ease;
}

#price-table1:hover, #price-table2:hover, #price-table3:hover, #price-table4:hover,
#price-table5:hover, #price-table6:hover, #price-table7:hover, #price-table8:hover,
#price-table9:hover, #price-table10:hover {
    z-index:1;
    transform:scale(1.10);
    -ms-transform:scale(1.10);
    -moz-transform:scale(1.10);
    -webkit-transform:scale(1.10);
    -o-transform:scale(1.10);
    }



/* ------------------------------------------------------------------------
	Contact Form
------------------------------------------------------------------------- */

#contact p, label, legend { font-family:"Arial", sans-serif; color:#636363; font-size:16.0px !important; line-height:1.21em; }

#contact h1 { margin: 10px 0 10px; font-family:"Arial", sans-serif; font-size: 18px; color: #636363; }
#contact hr { color: inherit; height: 0; margin: 6px 0 6px 0; padding: 0; border: 1px solid #d9d9d9; border-style: none none solid; }

#contact { display: block; width: 600px; }

/* Form style */

#contact label { display: inline-block; float: left; height: 26px; line-height: 26px; width: 155px; font-size: 1.0em; -webkit-border-radius:5px; }
#contact input, textarea, select { width: 280px; margin: 0; padding: 5px; color: #666; background: #fff; border: 1px solid #DBDBDB !important; margin: 5px 0; font:1.0em "Arial", sans-serif; font-size:16.0px  }
#contact input:focus, textarea:focus, select:focus { border: 1px solid #EBEBEB; background-color: #fff; color:#333; }
#contact input.submit { width: 85px; cursor: pointer; border: none; background:#00A1E4; color:#fff; }
#contact input.submit:hover { background:#444; }
#contact input[type="submit"][disabled] { background:#888; }
#contact fieldset { padding:20px 20px 20px 0; border: none; }
#contact legend { padding:7px 10px; font-weight:bold; color:#000; border:1px solid #eee; margin-bottom:0 !important; margin-bottom:20px; }

#contact span.required{ font-size: 16px; color: #636363; } /* Select the colour of the * if the field is required. */

#message { margin: 10px 0; padding: 0; }

.error_message { display: block; font-family:"Arial", sans-serif; font-size:16.0px; height: 22px; line-height: 22px; background: #FBE3E4 url('images/error.gif') no-repeat 10px center; padding: 5px 10px 5px 35px; color:#8a1f11;border: none; }

.loader { padding: 0 10px; }

#contact #success_page h1 { background: url('images/success.gif') left no-repeat; padding-left:22px; }

acronym { border-bottom:1px dotted #ccc; }