@charset "utf-8";
/******************************************************************************
 * /style/website-style.css
 *
 *
 * Site CSS definitions
 *****************************************************************************/
/****************
reset the css styels
****************/
@import url(reset.css);
@import url(fonts/Karla.css);
@import url(fonts/Lato.css);
@import url(//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css);
/****************
import the component styles
****************/
@import url(components.css);

/****************
import the template styles
****************/
@import url(templates.css);
/*************************
General Styles
**************************/
html {
	height: 100%;
}

body {
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight:400;
    color: #262626;
	height:100%;
}
a {
	color:  #AC292C;;
}
p {
	padding-bottom: 8px;
	overflow: visible;
}
hr {
	height: 1px;
	border: 0px;
	background-color: #c0c0c0;
	color: #c0c0c0;
	width: 100%;
	margin: 3px 0px 10px 0px;
}
img { border: 0; }

h1, h2, h3, h4{
    line-height:normal;
	display:block;
    margin-bottom:10px;
}

h1 ,h2 {
	color: #AC292C;
    font-family: Karla;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin: 10px auto;

}
h3 {
	color: #AC292C;	font-family: Karla;	font-size: 30px;	font-weight: bold;
}
h4 {
	font-family: Karla;	font-size: 24px;	font-weight: bold;
}
p{
	font-family: Lato;	font-size: 19px; font-weight:normal;       line-height: 1.5;
	opacity: 0.8;
	color: #484848;
}
ul,ol{
    font-family: Lato;
    font-size: 19px;
    font-weight: normal;
    color: #484848;
    line-height: 1.5;
    margin-top: 10px;
    margin-bottom: 10px;
    opacity: 0.8;
}
li{
    margin-bottom: 10px;
}

select {
    width: 479px;
    border: 1px solid #7A7A7A;
    /* background-color: #7A7A7A; */
    height: 45px;
    font-family: Lato;
	font-size: 17px;
	line-height: 45px;
    color: #7A7A7A;
}
input[type=text], input[type=password]{
    width: 478px;    height: 45px;
    border:none;
    border-bottom: 1px solid #7A7A7A;
    font-family: Lato;
	font-size: 17px;
	line-height: 45px;
}
textarea{
    width: 478px;
    height: 45px;
    border: none;
    border-bottom: 1px solid #7A7A7A;
    font-family: Lato;
    font-size: 17px;
    line-height: 45px;
}


/*** custom checkboxes ***/

input[type=checkbox] { display:none; } /* to hide the checkbox itself */
input[type=checkbox] ~ label:before {
  font-family: FontAwesome;
  display: inline-block;
  font-size: 30px;
}

input[type=checkbox] ~ label:before { content: "\f096"; } /* unchecked icon */
input[type=checkbox] ~ label:before { letter-spacing: 10px; } /* space between checkbox and label */

input[type=checkbox]:checked ~ label:before { content: "\f046"; } /* checked icon */
input[type=checkbox]:checked ~ label:before { letter-spacing: 5px; } /* allow space for check mark */

input[type=text]:focus, input[type=text]:active,
input[type=password]:focus,input[type=password]:active,
textarea:focus, textarea:active{
    outline:none;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #7A7A7A;
	font-family: Lato;
	font-size: 17px;
	line-height: 45px;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #7A7A7A;
	font-family: Lato;
	font-size: 17px;
	line-height: 45px;
}
:-ms-input-placeholder { /* IE 10+ */
	color: #7A7A7A;
	font-family: Lato;
	font-size: 17px;
	line-height: 45px;
}
:-moz-placeholder { /* Firefox 18- */
  color: #7A7A7A;
	font-family: Lato;
	font-size: 17px;
	line-height: 45px;
}
.txt_white{
    color:white;
}

fieldset {
    padding: 5px 15px;
    margin-bottom: 20px;
    border: 1px solid #c0cdd4;
}
legend {
    padding: 0 3px 5px;
}
.clear {
    clear: both;
}
.btn{
	height: 52px;
	width: 153px;
	background-color: #AC292C;
	color: #FFFFFF;
	font-family: Karla;
	font-size: 14px;
	font-weight: normal;
	line-height: 0;
	text-align: center;
    outline:none;
    border:none;
    margin:0 10px;
    cursor:pointer;
    transition: all;
    transition-duration: 0.3s;
}
.btn:hover, .btn_yellow{
    background-color: #FEB31B;
    color: #292F33;
}

/*************************
General Layout
**************************/
#container, header, nav, #body, footer {
    width: 100%;
	margin:0 auto;
}


.wrapper {
    width:95%;
    max-width: 1200px;
    margin: 0 auto;
	position:relative;
}


#content{
	padding: 0;
}
#container{
	min-height:100%;
	position:relative;
}
#content_holder{
	padding:10px;
	padding-bottom:120px; /* must be height of the footer element */
}
#content{
	min-height: 160px;
    width: 100%;
    padding-top: 75px;
    margin-bottom: 60px;
}
.left , .right{
    display:inline-block;
    float:left;
}

/*************************
Header Component
**************************/
header{
   /*	background:url(images/head_back.jpg) top left repeat;
	border-bottom: thin solid #666;
	height:75px;
    background-color: #AC292C;*/
}

#logo {
    background-size: contain;
    height: 75px;
    max-width: 90%;
    position: relative;
    top: 0px;
    width: 350px;
    z-index: 1;
    margin: auto;
    display: block;
    text-align: center;
}
#logo a{
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
}
/*************************
Navigation
**************************/

/* Main site */
nav {
	background-color: #AC292C;
	position: fixed;
	top: 0;
	z-index: 1;
	height: 75px;
}

/* Blog */
#primary-sidebar nav {
    background-color: transparent;
    position: relative;
    z-index: 1;
    height: auto;
}

.nav_bar{
    position:relative;
    background-color: #AC292C;
    top: 0;
    z-index: 1;
}

#menu {
    position:absolute;
    margin: 0;
    width: 150px;
    color: white;
    height: 75px;
    background-image: url(../images/responsive_menu_but.png);
    background-repeat: no-repeat;
    background-position-x: 17px;
    background-position-y: 22.5px;
    padding-left: 80px;
    line-height: 75px;
    font-size: 16px;
    opacity: 0.92;
    cursor:pointer;
}
#menu >ul{
    position:absolute;
    top:75px;
    left:0px;
    display:block;
    opacity:0;
    pointer-events:none;
    transition:all;
    transition-duration: 0.2s;
    transform: translateY(-20px);
}

#menu.clicked > ul{
    opacity:1;
    pointer-events:all;
    transform: translateY(0);
}
#menu.clicked > ul >li{
    width:265px;
    background-color: #AC292C;
	line-height: 44px;
}
#menu.clicked > ul >li:not(:last-child):before {
  content : "";
  position: absolute;
  left    : 20px;
  bottom  : 0;
  height  : 1px;
  width   : 225px;  /* or 100px */
  border-bottom:1px solid white;
}
#menu.clicked > ul >li >a{
    color: #FFFFFF;
	font-family: Karla;
	font-size: 15px;
	font-weight: bold;
}
#menu ul, #menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}
#menu li {
	font-size: 16px;
}
#menu li a:hover {
	color: #252525;
}
#menu li.clicked {
	background: #EAEAEA;
}
#menu li.active {
	background: #E0E0E0;
}
#menu li.active > a{
	color: #252525;
}
#menu > ul {
    width: 100%;
    height: 1000px;
}
#menu > ul > li {
    display: block;
    position: relative;

}
#menu > ul > li > a {
    display: inline-block;
    padding: 4px 20px;
    color: #6f7174;
	text-decoration: none;
}
#menu > ul > li >ul>li{
    width: 265px;
    background-color: #AC292C;
    line-height: 44px;
}
#menu > ul > li.clicked >ul>li{
    display: list-item;
    width: 265px;
    background-color: #AC292C;
    line-height: 44px;
}

#menu > ul > li > ul {
    background: #DBDBDB;
    position: absolute;
    top: 100%;
    left: 0;
	z-index:10;
    opacity:0;
    pointer-events:none;
    transition:all;
    transition-duration: 0.2s;
    transform: translateY(-20px);

}
#menu > ul > li.clicked ul{
    display:inline-block;
    position:relative;
    opacity:1;
    transform:translateY(0);
    pointer-events: all;
    transition-duration:0;
}
#menu ul ul > li > a {
    width: 164px;
    /* height: 12px; */
    /* border-bottom: 1px dotted #666; */
    display: block;
    padding: 4px 20px;
    padding-left: 30px;
    color: white;
    font-size: 14px;
    text-decoration: none;
    font-family: Karla;
    line-height: 1.5;
}
#menu ul ul > li > a:hover{
    color:white;
    text-decoration: underline;
}

.search_container{
    position:absolute;
    right:0;
    top:0;
    height:75px;
    vertical-align:middle;
    line-height: 75px;
}

.search_container input#search{
    background: none;
    border: none;
    border-bottom: 1px solid white;
    font-size: 10pt;
    float: left;
    opacity: 0;
    color: #262626;
    padding-left:10px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #fff;
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transform: translateX(20px);
    transition: all .35s ease;
    height: 30px;
    width:auto;
    line-height: 30px;
    top: 30px;
    position: relative;
}
.search_icon{
    height: 42px;
    line-height: 42px;
    display: inline-block;
    vertical-align: middle;
}
.search_container:hover input#search, input#search:hover, input#search:focus{
    opacity: 1;
    outline:none;
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight:400;
    transform: translateX(0);
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -ms-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease;
}
.search_container input#search::-webkit-input-placeholder {
    opacity: 0.7;
   color: white;
   font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight:400;
}

.search_containerinput#search:-moz-placeholder { /* Firefox 18- */
   color: white;                                  opacity: 0.7;
   font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight:400;
}

.search_container input#search::-moz-placeholder {  /* Firefox 19+ */
   color: white;            opacity: 0.7;
   font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight:400;
}

.search_container input#search:-ms-input-placeholder {
   color: white;   opacity: 0.7;
   font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight:400;
}
form#search_form{
    display:inline;
}

/*************************
Responsive Menu
**************************/

#responsive_menu {
    height:100%;
	width: 100%;
	position:absolute;
}

a#navigation_but {
    display: block;
    height: 24px;
    padding-bottom: 3px;
    padding-left: 20px;
    padding-top: 6px;
	text-transform:uppercase;
	color:#889399;
	font-weight:bold;
	text-decoration:none;
	background-color:#ccc;
}

a#navigation_but img{
	vertical-align:middle;
	margin-right:14px;
}

div#responsive_menu_list{
	position:relative;
	z-index:2000;
	background-color:#ccc;
}

#responsive_menu_list ul, #responsive_menu li{
	list-style: none;
    padding: 0;
    margin: 0;
}

#responsive_menu_list li {
	font-size: 13px;
	line-height:29px;

}

#responsive_menu_list > ul > li{
	border-bottom:thin solid #aeaeae;
}

#responsive_menu_list li span.show_children{
	display:inline-block;
	cursor:pointer;
	background:url(images/responsive_submenu_arrow.png) 50% 50% no-repeat;
	width:25px;
	height:29px;
	float:right;
}

#responsive_menu_list  ul  li  a {
    color: #323232;
	text-decoration: none;
	padding-left: 13px;
	display: block;
}

#responsive_menu_list  ul  li:hover,
#responsive_menu_list  ul  li.active{
	background-color:#414a51;
}

#responsive_menu_list  ul  li.has_children.active > a{
	background-color:#414a51;
    background-image: url(/images/Responsive_NavigationDownArrow.png);
    background-repeat: no-repeat;
    background-position: 98% 50%;
}

#responsive_menu_list  ul  li.active > a,
#responsive_menu_list  ul  li > a:hover{
	color:#fff;
}

#responsive_menu_list > ul {
    width: 100%;
    height: 100%;
}

#responsive_menu_list > ul > li.has_children {
	background-color:#414a51;
}

#responsive_menu_list ul li ul{
	padding-left:13px;
}

#responsive_menu_list ul li ul li{
	border-top:thin solid #aeaeae;
}


/*************************
Body Component
**************************/


/*************************
Footer component
**************************/
footer {
	background-color: #F5EDDC;
	bottom:0;
	left:0;
    height: 90px;
    padding-top:30px;
    padding-bottom:30px;
}
footer p, footer a{
    color: #292F33;
	font-family: Lato;
    text-decoration:none;
	font-size: 14px;
	line-height: 20px;
    margin-bottom:0;
}

footer .wrapper {
    background-color: #F5EDDC;
}
footer >.wrapper> .wrapper{
    float:left;
    width:100%;
}
footer .col-sm-24{
    width: 25%;
}

/*footer a,
footer a:link,
footer a:visited,
footer a:active,
footer a:hover {
    border-left: 1px solid #5e5f61;
	text-decoration: none;
	font-size: 12px;
	line-height: 15px;
	color: #aaaaab;
	margin-top: 15px;
	padding: 0 12px;
	display: inline-block;
}
footer a:first-child,
footer a.contact_point {
	border-left: 0;
}
footer a.contact_point {
	padding-right: 8px;
}*/

/*************************
Contact Page
**************************/
div#contact_content{
	float:left;
	width:45%;
}

div#contact_map{
	float:right;
	width:50%
}



/****************
pagination
****************/
div.pagination_holder{
  text-align:right;
}

/****************
icons
****************/
span.pdf_icon{
  background: url(/images/pdf.png) 0 50% no-repeat;
  padding-left: 20px;
}
.table{
    display:table;
}
.tr{
    display:table-row;
}
.td{
    display:table-cell;
}
#blanket
{
    background-color: #111;
    opacity: 0.65;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
    opacity: .60;
    -khtml-opacity: 0.6;
    position: absolute;
    z-index: 1001;
    top: 0px;
    left: 0px;
    width: 100%;
}
.popUpDiv {
    position:absolute;
    background-color: white;
    width:500px;
    height:450px;
    z-index: 2000;
    padding: 10px 20px;
    top: 10%;
    left: 30%;
}
.popUpDiv .closeButton
{
    display: block;
    width: 21px;
    height: 21px;
    background: url(images/elements/DialogClose.gif) no-repeat;
    cursor: pointer;
    float: right !important;
}
.popuplink
{
    cursor: pointer;
}
/*registration form */
div#attendees div{
    border-bottom: thin dotted #aeaeae;
    padding: 14px 0;
}

div#attendees div.a_even{
    background-color: #fafafa;
}
@charset "UTF-8";

/*
    Name: YouTubePopUp
    Description: jQuery plugin to display YouTube or Vimeo video in PopUp, responsive and retina, easy to use.
    Version: 1.0.2
    Plugin URL: http://wp-time.com/youtube-popup-jquery-plugin/
    Written By: Qassim Hassan
    Twitter: @QQQHZ
    Websites: wp-time.com | qass.im | wp-plugins.in
    Dual licensed under the MIT and GPL licenses:
        http://www.opensource.org/licenses/mit-license.php
        http://www.gnu.org/licenses/gpl.html
    Copyright (c) 2016 - Qassim Hassan
*/

.YouTubePopUp-Wrap{
    position:fixed;
    width:100%;
    height:100%;
    background-color:#000;
    background-color:rgba(0,0,0,0.8);
    top:0;
    left:0;
    z-index:9999999999999;
}

.YouTubePopUp-animation{
    opacity: 0;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUp;
    animation-name: YouTubePopUp;
}

@-webkit-keyframes YouTubePopUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes YouTubePopUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body.logged-in .YouTubePopUp-Wrap{ /* For WordPress */
    top:32px;
    z-index:99998;
}

.YouTubePopUp-Content{
    max-width:680px;
    display:block;
    margin:0 auto;
    height:100%;
    position:relative;
}

.YouTubePopUp-Content iframe{
    max-width:100% !important;
    width:100% !important;
    display:block !important;
    height:480px !important;
    border:none !important;
    position:absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.YouTubePopUp-Hide{
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: YouTubePopUpHide;
    animation-name: YouTubePopUpHide;
}

@-webkit-keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes YouTubePopUpHide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.YouTubePopUp-Close{
    position:absolute;
    top:0;
    cursor:pointer;
    bottom:528px;
    right:0px;
    margin:auto 0;
    width:24px;
    height:24px;
    background:url(../images/close.png) no-repeat;
    background-size:24px 24px;
    -webkit-background-size:24px 24px;
    -moz-background-size:24px 24px;
    -o-background-size:24px 24px;
}

.YouTubePopUp-Close:hover{
    opacity:0.5;
}

@media all and (max-width: 768px) and (min-width: 10px){
    .YouTubePopUp-Content{
        max-width:90%;
    }
}

@media all and (max-width: 600px) and (min-width: 10px){
    .YouTubePopUp-Content iframe{
        height:320px !important;
    }

    .YouTubePopUp-Close{
        bottom:362px;
    }
}

@media all and (max-width: 480px) and (min-width: 10px){
    .YouTubePopUp-Content iframe{
        height:220px !important;
    }

    .YouTubePopUp-Close{
        bottom:262px;
    }
}