/**
 * Form Generation Library Stylesheet
 * 
 * This style sheet includes the basic styles
 * for a form generated with the form generation
 * library for CodeIgniter
 * 
 * @license		MIT License
 * @author		Frank Michel
 * @link		http://frankmichel.com
 * @docu		http://frankmichel.com/formgenlib
 * @email		info@frankmichel.com
 *
 * @file		form.css
 * @version		1.0.4
 * @date		02/28/2011
 * 
 * Copyright (c) 2009 Frank Michel
*/

/* --------------------------------------------------------------------------
        GENERAL FORM */

form {

    margin:0px;
    padding:0px;
}


/**
 * this will make sure that floats will be cleared
 * for example if you use <br /> after checkboxes and radio buttons
*/
form br {
    clear: left;
}

#errors {
    padding: 10px; 
    margin: 0 5px 10px 00px;
    border: 1px solid #c00;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background-color: transparent;
    color: #c00;
}

/* --------------------------------------------------------------------------
        FIELDSET */

fieldset {
    /*border: 1px solid #BBBBBB;*/
    border: none;
   /* font-family: 'Roboto Slab', serif;*/
    font-size: 16px;
    margin-bottom: 20px;
    padding: 15px 20px;
}

legend {
    font-size: 14px;
    font-weight: bold;
}

/* --------------------------------------------------------------------------
        LABELS */

#contact_us_form  { line-height:30px;}
#contact_us_form fieldset {     padding: 0px;  }
#contact_us_form input {     padding: 2px;     width: 97%;    display: block;    border: 1px solid #C9C9C9;    margin: 5px 0 0px 0;    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0.1);    box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0.1); }
#contact_us_form label { float:none;font-size: 14px;font-weight: bold;}
#contact_us_form legend { display:none;}
#contact_us_form .button {
        background-color: #ae9b79;
    border-radius: 3px;
    box-shadow: 1px 1px 0 1px #66583e;
    color: #3a3227;
    display: block !important;
    font-family: "Open Sans Condensed",sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px !important;
    padding: 5px 10px;
    text-align: center;
      border: 0;
}

#contact_us_form h5 { margin: 5px 0 21px; }
label {
    display: inline;
    float: left;
    padding-right: 10px;
    vertical-align: middle;
    color: #2C2C2C;
    /*font-family: 'Roboto Slab', serif;  */
}

label.error {
    color: #B70000;
}

/**
 * use this class in the $config['defaults'] for 'label' in the config file
 * if you want the text in the label left justified
*/
label.left {
    text-align: left;
}

/**
 * 'combine' is used when two labels are combined such as in 'City/Zip'
*/
label.left.combine {
    width: auto;
    float: left;
    padding: 0;
}

/**
 * use this class in the $config['defaults'] for 'label' in the config file
 * if you want the text in the label right justified
*/
label.right {
    text-align: right;
}

label.right.combine {
    width: auto;
    float: none;
    text-align: right;	
    padding: 0;
}

/**
 * use this class in the $config['defaults'] for 'label' in the config file
 * if you want to display the label above the field
*/
label.top {
    float: none;
    padding: 0;
    width: auto;
    text-align: left;
}

/**
 * use this class in the $config['defaults'] for 'label' in the config file
 * if you want to display the label after the field
*/
label.after {
    float: none;
    padding-left: 10px;
    vertical-align: top;
    text-align: left;
}

label.after.combine {
    width: auto;
    float: left;
    padding: 0;
}

/**
 * this needs to be assigned to all 'checkbox' and 'radio' type elements
 * (to remove any width and float styles previously set)
*/
label.check {
    float: left;
    width: auto;
}

input.check + label.check  {
    padding-left: 6px;
}

/**
 * this is where you can style your required labels
 * don't forget to include this class name in the config file
*/
label.required {
    font-weight: bold;
}

/**
* label for top info with no input.
*/
label.info_label{
    width: auto;
    font-weight: bold;
    color: #666;
    padding-bottom: 10px;
    padding-top: 10px;
}

#request_info_form label.event_req_label{
    width:230px;
    padding-right:15px;
    padding-bottom: 5px;
    line-height: 20px;
    text-align: left;
}

/* --------------------------------------------------------------------------
        GENERAL INPUTS */

input, select, textarea, button {
    font-size: 12px;
    color:  #221006;
    /*border: 1px solid #4F718A;*/
    border: 1px solid #221006;
}

input.error, select.error, textarea.error {
    border: 1px solid #B70000;
}

input[disabled], input[readonly] {
    color: #808080;
    background-color: #efefef;
}

input[type="file"] {
    border: none;
}

/* --------------------------------------------------------------------------
        TEXT INPUTS */
input {
    width: 200px;
    padding: 3px;
    margin-bottom: 8px;
}
input[type="submit"]{
    /*width: auto;*/
    cursor: pointer;
}
/* --------------------------------------------------------------------------
        CHECKBOX / RADIO INPUTS */

input.check {
    float: left;
    width: auto;
    padding: 0;
    margin: 0;
    height: 24px;
    border: none;
}

/* --------------------------------------------------------------------------
        UPLOADS */

input.upload {
    border: none;
    background-color: transparent;
}

/* --------------------------------------------------------------------------
        IMAGE INPUTS */

input.image {
    border: 0px;
    background-color: transparent;
}

input[type="image"]{
    border: 0px;
    background-color: transparent;
}

/* --------------------------------------------------------------------------
        TEXTAREA */

textarea {
    padding: 2px;

    height: 150px;
    width: 97%;
    display: block;
    border: 1px solid #C9C9C9;
    margin: 5px 0 15px 0;
    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0.1);
    box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0.1);
}
/* --------------------------------------------------------------------------
        TEXTEDITOR  FOR RICH TEXT */

.texteditor {
    float: left;
}

/* --------------------------------------------------------------------------
        SELECT */

select {
    padding: 2px;
    margin-bottom: 4px;
    background-color: #fff;
    background: #fff  url('../images/search-input-bg.jpg') repeat-x;
}

optgroup {
    color: #fff;
    background-color: #999;
}

option {
    color: #000;
    background-color: #fff;
}

/******FOR CKEDITOR********/

select.cke_cms_pages optgroup, select.cke_products optgroup {
    background-color: #DDDDDD;
    color: #444444;
    font-style: normal;
    font-weight: bold;
    max-width: 300px;
    min-width: 200px;
}
select.cke_cms_pages optgroup option, select.cke_products optgroup option{
    color: #000;
    background-color: #fff;
    padding-left: 20px;
    font-weight: normal;
    max-width: 300px;
    min-width: 200px;
}
select.cke_documents{
    max-width: 300px;
    min-width: 200px;
}

/* --------------------------------------------------------------------------
        BUTTONS */

button, input.button,.button {
    width: auto;
    /*height: 24px;*/
    padding: 3px 7px 3px 7px;
    margin: 0;
    color: #fff;
    background: #959595;			
    border: 1px solid #707070;
    vertical-align: middle;	
}


.col_contact .button, .submit-button {
    position: relative;
    color: #fff;
    /*font-family: 'Roboto Slab', serif; */
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background-color: #649a71;
    padding: 7px 20px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    /*font-family: 'Roboto Slab', serif; */
    font-size: 1.1em;
    width: auto;
    height: auto;
    border: 0;
    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0);
    box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0);
}

.col_contact .button:hover,.submit-button:hover { 
    background-color: #578763;
    color: #fff;
}

/* --------------------------------------------------------------------------
        ERROR */
span.required{
    color: #B70000;
}

.inline-error{
    padding-left: 10px;
    color: #B70000;
}
.validate_err{
    color: #900;
}
/* --------------------------------------------------------------------------
        OTHER */

span.help {
    display: block;
    color: #666;
    font-size: 10px;
    margin-left: 160px;
    line-height: 15px;
    margin-bottom: 5px;
}
.top-searching form{padding: 0;}
.search-form input{border: 0 none;padding: 2px;}
.top-searching { float:right; display:block; margin-top:7px; display:none; }
.top-searching #search_button{width: auto;height: auto;}
.top-searching #search_keyword{width: 110px; padding:0px 5px 0px 4px; height:24px; color: #666666; border: medium none; line-height: 24px; border: 1px solid #81A0B7; border-radius: 6px; }

.search_form{

}
.search_form label{
    width: auto;
    float: left;
    
    font-size:16px;
    line-height:normal;
    margin:0 0 5px;
    font-family: 'Open Sans',sans-serif;
    display: inline-block;
    padding-bottom: 3px;
    color: #3e3e3e;
    font-weight: bold;
    
}
.search_form input {
    border: 1px solid #bbbbbb;margin-bottom:10px;padding:5px;clear:left;
}
.search_form select { border: 1px solid #bbbbbb;float:left;clear:left;
}
.search_form input.date_picker{
    width: 100px;
}
#error_report_form_id select{
    width: 350px;
}
.search_form .button{
   background: url("../images/more-back.jpg") no-repeat scroll right center #1ba3d3;
    border-radius: 12px;
    color: #ffffff;
    cursor: pointer;
    font-family: 'Open Sans',sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    padding: 6px 16px 10px 5px;
    width: 118px;
    overflow:hidden;
    border: none;
}
.search_form .button:hover {  background: url(../images/more-back-over.jpg) #1997C4 center right no-repeat; }
.save_search_form{
    padding-top: 15px;
}
.save_search_form label{
    width: auto;
    float: none;
    min-width: 80px;
    display: inline-block;
    padding-bottom: 3px;
}


/*Responce message*/
.response-msg {
    padding:5px 5px 5px 45px;
    font-size:13px;
    margin: 10px 20px;
    text-align: left;
    line-height: normal;
    margin-bottom: 15px;
}
.response-msg p{
    padding: 0; margin: 0;
}
.response-msg #errors{
    border: 0;
    background: none;
}
.response-msg ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.response-msg ul li{
    padding-bottom: 3px;
}
.response-msg span {
    display:block;
    font-weight:bold;
    padding:0;
}

.alert {
    background:#fff url('../images/icons/error.png') 10px 50% no-repeat;
    color:#b50007;
    border-top:none; border-right:none; border-left:none; border-bottom: 1px solid #f4f4f4;
}

.notice  {
    background:#fff url('../images/icons/notice.png') 10px 50% no-repeat;
    color:#828400;
    border-top:none; border-right:none; border-left:none; border-bottom: 1px solid #f4f4f4;
}

.info {
    background:#fff url('../images/icons/info.png') 10px 50% no-repeat;
    color:#0055b5;
    border-top:none; border-right:none; border-left:none; border-bottom: 1px solid #f4f4f4;
}

.confirm {
    background:#fff url('../images/icons/success.png') 10px 50% no-repeat;
    border-top:none; border-right:none; border-left:none; border-bottom: 1px solid #f4f4f4;
}

.no-icon {
    background-image: none;
    padding-left: 5px;
}

#request_info_form label{
    width: 130px;
    text-align: right;
}
#request_info_form label.check{
    width: auto;
    text-align: left;
    line-height: 20px;
}

input[type="submit"].green_button,button.green_button,a.green_button:link,a.green_button:visited{
    background-color: #6DBE41;
    color: #FFFFFF;
    line-height: 28px;
    height: 28px;
    font-weight:  bold;
    color: #FFF;
    cursor: pointer;
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
    display: inline-block;
    border: 1px solid #569733;
    font-size: 12px;
}

#select_sortby_text{
    background-image: url("/images/selectbox_bg-180.png");
    color: #77787C;
    font-size: 12px;
    font-weight: bold;
    height: 21px;
    padding-left: 7px;
    padding-top: 7px;
    position: absolute;
    text-transform: uppercase;
    width: 173px;
}
#select_topic_text{
    background-image: url("/images/selectbox_bg-272.png");
    color: #77787C;
    font-size: 12px;
    font-weight: bold;
    height: 21px;
    padding-left: 7px;
    padding-top: 7px;
    position: absolute;
    text-transform: uppercase;
    width: 265px;
}
select.styled {
    opacity: 0;
    filter:alpha(opacity=0); /*this is for i6 8 and earlier*/
    position: relative;
    width: 269px;
    z-index: 5;
    height: 28px;
    color: #77787C;
    font-size: 12px;
    text-transform: uppercase;
}
.map_search_form input.check{
    width: auto;
    height: auto;
    float: none;
}

input.member-submit-search{
    background: #fff;
}
.form_content{
    margin-top: 20px;
}

/*****Search ******/
input.top_search_input{
    margin: 0;
    width: 150px;
    height: 15px;
    padding: 0;
    color: #999;
    font-size:11px;
    color:#007AC3;
    text-transform: none;
    border: 1px solid #007AC3;
}
input.top_search_btn{
    margin: 0;
    margin-top: 2px;
    padding: 0;
    height: 19px;
    padding-bottom: 2px;
    background: url(../images/go-btn.png) top left no-repeat;
    font-size:10px;
    color:#007AC3;
    font-weight:bold;
    border:none;
    width:29px;
}

/*********Contact Us Form**********/
#contact_us_form img{margin-bottom: 3px;}

/****Login Widget From******/
.login_widget input{margin-bottom: 0px;}
.login_widget label{width: 170px; font-size: 11px; line-height: 18px;}


/************* HTML/BODY************/

html {-webkit-background-size: cover;-moz-background-size: cover;-o-background-size: cover;background-size: cover;}
body {    margin: 0;     padding: 0; }
body.texteditor{background: none !important;}

html, body, button, input, select, textarea {    color: #3e3e3e;    background-color:#fff;    font-family: 'Open Sans', sans-serif;    font-size: 14px;    line-height:21px;    margin:0;    padding:0;    overflow-x:hidden;}

/************* COMMON *************/

sup { font-size: 0.875em; }

a { text-decoration: none; color: #ae9b79;}
a:hover { text-decoration: none; }

p{  line-height:21px;    font-size:1em;    margin: 0;    font-weight:500;    padding:0;}
span { font-weight: 700; color: #BAA98C;}
ul {}
ul li {padding: 3px 0;  font-weight: 500;}

ol {}
ol li {padding: 3px 0;}

hr { height: 1px; margin: 0; background: #D5CAB6; border: none;}

.chromeframe {    margin: 0.2em 0;    background: #ccc;    color: #000;    padding: 0.2em 0;}

.clearfix { zoom: 1; }
.clearfix:after { content: " ";	display: block;	clear: both; visibility: hidden; font-size: 0; height: 0; }
.clear{ clear: both;     display: block;    height: 1px;    line-height: 1px;    margin: 0;    padding: 0;    width: 100%;}
.clear_block{width:100%; clear:both; display:block; }
.clr-both, .clear-both, .clr, .clr_b, .clr_both {  clear: both;  }
.clr_l {  clear: left;  }
.clr_r {  clear: right; }

.txt-left {  text-align: left; }
.txt-right {  text-align: right; }
.no-trans {  text-transform: none; }
.center {  text-align: center; }

.float-right, .flt-right, .fl_right, .float_right {  float: right; }
.float-left, .flt-left, .fl_left, .float_left {  float: left; }
.txt_center {  text-align: center; }

.b{font-weight: bold}
.c{text-align: center;}

.text-replace { display: none; }

.bold { font-weight: bold; font-size: 12px; }


/****************** IMAGES **************/

img a {  border: none; margin:0px; padding:0px; }
img { border:none; margin:0px; padding:0px; }
a img {border: none;}


/**************** SELECTION COLOURS ******************/

::-moz-selection {    background: #d3b7d1;    text-shadow: none;}
::selection {    background: #B4E2F5;    text-shadow: none;}


/************ HEAD TAG ***************/

h1 { font-family: 'Open Sans Condensed', sans-serif; font-size: 36px; line-height: 37px; margin: 10px 0; font-weight:300; color: #846c41;}
h2 { font-family: 'Open Sans Condensed', sans-serif; font-size:30px; line-height: 39px; margin: 10px 0; font-weight:300; color: #650735;}
h3 { font-family: 'Open Sans Condensed', sans-serif; font-size: 29px; line-height: 32px; margin: 10px 0 0 0; font-weight:300; color: #846c41;}
h4 { margin: 0;  color: #9B8866;  position: relative;  font-family: 'Open Sans Condensed', sans-serif; font-size: 18px; font-weight: 600; line-height: 26px;
    padding: 5px 0;}
h5 { font-family: 'Open Sans', sans-serif; font-size: 13px; line-height: 17px; margin: 10px 0; font-weight:600; color: #804c7d;}
h6 { font-family: 'Open Sans', sans-serif; font-size: 12px; line-height: 16px; margin: 10px 0; font-weight:600; color: #804c7d;}


/*********BREADCRUMB***********/

#breadcrumbs {  float:left; padding:0px; margin:0px; margin-bottom:10px; color:#8098AC; font-size:9px; display:none; }
#breadcrumbs a:link, #breadcrumbs a:visited{color:#8098AC; }
#breadcrumbs a:hover{color:#567396; }
#print-box {  float:right; padding:0px; margin:0px; cursor: pointer; margin-right: 20px; display:none; }


/*********Page header***************/

#top-search {  height:28px; margin-top:5px; margin:0px; padding:0px; width:100%; background-color:#E5F1F9;  font-size:11px; }
#top-search-back {  height:23px; margin: 0 auto;  padding-top:5px; padding-right:5px;    text-align: left;    width: 990px; background: url(../images/search-back.jpg) top right no-repeat #E5F1F9; }

#header-right {float:right; padding-top:10px;}

#top-search .content-right {  width:990px; margin:0px auto; padding:0px; text-align:right; }
div#topnav {
    position: relative;
    z-index: 9999;
}
#header {    width: 100%;  margin:0px;  padding:0px;  height:125px; background: url(../images/back-header.jpg) top left repeat-x;  position:fixed; top: 0; z-index: 99;   }
#header-wrapper {    width: 990px;  margin:0px auto;  padding:0px;     }
div#topnavbarcontainer {  background: #000;    z-index: 999;}
#topnavbar { max-width:1140px;  width: 100%; margin: 0 auto; height:42px;    position: relative;
    background: #000;
    z-index: 99;}
#topnavbar #topnav .logo {  float:left; padding: 10px 20px; background-color: #650735;  box-shadow: 0 4px 0 0 rgba(0,0,0,0.2); position: absolute; z-index: 9999;}

#mainnavbar {   background: rgba(0,0,0,0.4); height: 54px; width: 100%;  position: relative;  z-index: 9;}
.top-contact-spacer { margin-left: 251px; position: relative; display: block; float: left; height: 1px; margin-top: 0;}
#mainnav { margin: 0 auto; max-width: 1140px; padding-left: 253px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;  box-sizing: border-box;  z-index: 1; position: relative;}
.top-contact {  display: block; font-family: 'Open Sans', sans-serif; color: #fff; position: relative; z-index: 9999; float: left; line-height:39px;}
.top-contact a{  display: block; font-family: 'Open Sans', sans-serif; color: #fff; position: relative; z-index: 9999; float: left; line-height:39px; margin-left:30px;}
.top-contact a:hover{color: #ae9b79;text-decoration: none;}
.language-select ul {  position: absolute;  right: 6px;  width: auto;  height: 42px;   margin: 0;  padding: 0;  padding-left: 0;}
.language-select ul li { display: inline; position: relative; color: #fff; line-height: 39px;}
.language-select ul li a { display: block;color: #fff; display:inline;}
.language-select ul li a:hover { color: #ae9b79;text-decoration: none;}
.language-select ul li a.active {  color: #ae9b79;text-decoration: none;}
.toggle-menu-icon{display:none; float: right; padding: 12px 15px 0 0; box-sizing: border-box;}
/*********Page footer***************/

#footer-wrapper {    background: #000; width:100%;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box;  behavior: url(/script/boxsizing.htc);}
#footer{    width:100%; max-width:1140px;    margin:0 auto;    overflow:hidden;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); padding: 5px 20px;}
#footer a {  color: #ae9b79;}
#footer a:hover {  color: #fff; text-decoration: none;}
.footer-col{    width: 33%;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);    padding: 20px 0;    float: left;}
.footer-col p{    color:#fff;}
#footer ul{margin: 7px 0 0 0; padding:0px;}
#footer ul li{display:block;padding: 0 0 0px;}
#footer ul li a{ color:#ae9b79 !important;background: none; }
#footer ul li a:hover{ color:#fff !important;}
#footer .title{ color:#FFF;}

#footer-wrapper2 {    background: #210010; width:100%;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box;  behavior: url(/script/boxsizing.htc);}
#footer2{    width:100%; max-width:1140px;    margin:0 auto;    overflow:hidden;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); padding: 5px 20px;}
#footer2 a {  color: #ae9b79;}
#footer2 a:hover {  color: #fff; text-decoration: none;}
#footer2 .footer-col{    width: 50%;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);    padding: 20px 0;    float: left; }
#footer2 .footer-col2{    width: 50%;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);    padding: 20px 0;    float: right;    margin-top: 5px;  margin-bottom: 30px; }
.footer-col p{    color:#fff;}
#footer2 ul{margin: 7px 0 0 0; padding:0px;}
#footer2 .footer-col2 ul{margin: 7px 0 0 0; padding:0px; float:right;}
#footer2 ul li{display:block;padding: 0 0 0px;}
#footer2 ul li a{ color:#ae9b79 !important;background: none; }
#footer2 ul li a:hover{ color:#fff !important;}
#footer2 .title{ color:#FFF;}


.footer-col-last {
  width: 100%;
  border-top: 1px solid rgb(39, 31, 19);
}
.sidr-details{    padding: 16px;    vertical-align: bottom;    position: absolute;    bottom: 0; }

.newsletter input { border: 1px solid #B3C6D4;    background: url(../images/white-gradient.png) top left repeat-x #ffffff ;    height: 23px;    float: left;    width: 100%;    font-size: 	11px;    font-weight: normal;    color: #77787c;    padding-left: 8px;    line-height: 23px;    margin-bottom: 5px; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }
#newsletter_submit {    position: relative;    color: #fff;    /*font-family: 'Roboto Slab', serif; */  margin-top: 10px;   -webkit-border-radius: 15px;    -moz-border-radius: 15px;    border-radius: 15px;    background: #649a71;    padding: 7px 20px;    -webkit-border-radius: 50px;    border-radius: 50px;    /*font-family: 'Roboto Slab', serif; */    font-size: 1.1em;    width: auto !important;    height: auto;    border: 0;    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0);     box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0); }


/************* LAYOUT, COLUMNS & BLOCKS ***************/

#content-wrapper {   -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);  max-width: 1140px;    position: relative;    margin: 0 auto;    width:100%;  top: -64px; }
#content-back {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }

#columns { float: left; width: 100%;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }
#columns-75 { float: left; width:75%;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);   padding-left: 10px;}
#inner-content  {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);     top: 0px;    position: relative;}

.col_fullwidth  { width:100%; margin: 0 20px 10px 0; float: left; text-align:left; padding:0px; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.fullwidth_content #columns{ width:100%;    padding: 20px 0 45px 0; }
.col_main       { width:100%; margin: 0px; float: left; text-align:left; padding:0px; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.col_medium     { width:100%; margin: 10px 20px 0px 0px; float: left; text-align:left; padding:0px; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.col_small      { width:100%; margin: 10px 20px 0px 0px; float: left; text-align:left; padding:0px; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}

.col_search_result{width: 670px; margin-right: 20px;}

.col_widget {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); float: left;  width: 67%;  padding: 20px;  }
.col_contact {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); float: left;  width: 100%;  padding: 20px;  }
.col_100 {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); float: left;  width: 100%;    padding: 20px 20px 0 20px; }
.col_66 { -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); float: left;  width: 66%;  padding: 20px; }
.col_50 { -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);float: left;  width: 50%;  padding: 20px 20px 0 20px; }
.col_75 {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); float: left;  width: 75%;  padding: 20px 20px 0 20px; }
.col_33 { -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); float: left;  width: 33%;  padding: 20px 20px 0 20px; }
.col_25 { -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); float: left;  width: 25%;  padding: 20px 20px 0 20px; }

#skipContent {  }

.section-header { font-family:'Open Sans Condensed'; font-size: 36px; line-height: 37px; margin: 10px 0; font-weight: 300; color: #846c41; }
.section-header h1 { padding: 0px;margin:0px; }

.section-content {    border-top: 0 solid #006ba8;    line-height: 24px;    margin: 0;    padding-bottom: 11px;  position: relative; }
.section-content a:link, .section-content a:visited, .section-content a:active {  text-decoration: none; }
.section-content a:hover { /*color:#007AC3;*/ text-decoration: underline; }
.section-content img {   
    padding: 0px;
  width: 100%;
  /*max-width: 376px;*/
  float: none;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.section-content h2 a {color:#650735;}
.section-content h2 a:hover {text-decoration: none;}
.section-content-no-bd{ padding: 0px; }

#image-area{  width:100%; margin:0px auto; padding:0px;     top: -54px; z-index: 0;  position: relative; max-height: 696px; }
#image-area img{  width:100%;   }

.submit-btn { background: url(../images/submit.jpg) top left no-repeat;    background-color: #ffffff;    border-radius: 12px;    border: 0;    border-top: 4px solid #ededed;    color: #1ba3d3;    cursor: pointer;    font-family: 'Open Sans', sans-serif;    font-size: 16px;    font-weight: 500;    margin: 0;    width: 190px;    line-height: 1px;    padding:0;    padding-bottom: 6px;}


/*********News layout***************/

.news_content #columns{  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);  }

.news_list h1 {  font-weight: 500;  margin-bottom: 30px; }
.news_list .section-header { margin-top: 50px; /*font-family: 'Roboto Slab',serif;*/    font-size: 2.2em;    font-weight: 300;    line-height: 1.5em; border:none; }
.news_list #columns{ margin-right: 20px; margin-top:30px;}
.news_list .readon {  margin-top: 20px;    margin-bottom: 10px;}

.news a {    font-weight: normal!important;    font-style: italic!important;    color: #3e3e3e!important;}
.news_title a{    font-size: 16px;    font-weight: bold;    line-height: normal;    margin: 0 0 5px;    color: #804c7d;}
.news_title a:hover{text-decoration: none!important;color: #804c7d;}

.news_content .col_main       {width: 670px;}
.news_content .col_medium     { width: 400px;}
.news_content .col_small      { width: 250px;}

.news-items { width:230px; font-size: 12px; background: url(../images/caption-top.png) bottom left repeat-x; padding-bottom:10px; float: right; margin-bottom:20px; }
.news-items-heading { width:230px; font-size: 18px; font-weight:bold; background: url(../images/caption-top.png) top left repeat-x; padding: 10px 0 5px; }

.news_details{clear: both; margin-bottom: 20px; border-bottom: 1px solid #dcdfe3;}
.news_details .news_thumb{ width: 40%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);  float:left; }
.news_details .news_thumb img {    width: 100%; height:auto; }
.news_details .news_desc{  float:left;  width: 60%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); line-height: 24px;    margin: 0 0 10px 0;    padding: 0px 10px; }
.news_details .news_title{    color: #3e3e3e;    font-size: 1.6em;    font-weight: 400;    line-height: 1.4em;    margin: 0px 0 10px;    padding-top: 5px;}
.news_details .news_date{font-style: italic; display:none;}
.news_details .news_thumb_no_img{}
.news_details .news_desc_no_img{}

/********* User Layout  *************/

.user_content #columns{ float: left;  width: 66%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}

/********* Events Layout  *************/

.events_content #columns{ float: left; width: 66%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.events_content #columns .col_widget {  width: 100%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); padding: 20px;}

/********* Contact Layout  *************/

.contact_content #columns{ width:100%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }


/**************Search Result*******************/

.search_top_title{font-size: 20px;font-weight: bold;margin-bottom: 15px;}
.search_res_title {font-size: 12px;font-weight: bold;padding-bottom: 5px;padding-top: 10px;}
.search_res_desc{font-size: 11px;padding-bottom: 15px;}
.search_res_rank_link{color: #4F718A;   padding-bottom: 7px;   font-style: italic;}
.search_res_link{font-weight: bold;line-height: 35px;padding-bottom: 0px;text-transform: uppercase;}
.search_res_link img{float: left;padding: 0;margin: 0;padding-right: 10px;margin-left: -5px;}
.border_b_4{border-bottom: 4px solid #E7E7E7;margin-bottom: 15px;margin-top: 0px;}
.mt_10{margin-top: 10px;}
.search_res_msg{font-size: 14px;text-align: center;padding-top: 40px;font-weight: bold;padding-bottom:  40px;}

.search-form-container{margin-top: 20px;margin-bottom: 20px;}
.search_form_content{/*float: left;width: 310px;*/}
.search_form_right{float: left;width: 310px;margin-left: 20px;}
.gm-style-iw{    height: 100% !important;    overflow: hidden !important; }

/*******MAP*********/

#map{width: 527px;float: left;height: 400px;}
#map_content{border: 1px solid #CCC;font-size: 11px;color: #66666A;}
#map_content a{color: #278DCC;}
#map_sidebar{width: 180px;float: left;height: 400px;padding-left: 0px;margin-right: 1px;overflow: auto;border-right: 1px solid #CCC;}
.map-side-cont{padding-top: 5px;margin: 0;padding-left: 5px;}
.map-side-cont hr{background: #CCC;color: #CCC;border: 0;height: 1px;}
.in-map-side{background: #EEE;}
#map_radius_div{display: none;margin-right: 0px;}
#map_sidebar h3{text-align: left;font-size: 14px;font-weight: bold;margin: 0;padding: 0;background: #E9E9E9;padding-left: 5px;line-height: 30px;color: #EF4F91;}
.map_points{clear: both;max-width: 300px;padding-bottom: 10px;}

/***********TAB**********************/

#list_tabs{background: none;border: 0;}
#list_tabs .ui-tabs-nav{ background: none;border: 0;}
#list_tabs .ui-tabs-nav li{float: right;}
#list_tabs .ui-tabs-selected{margin-bottom: 1px;padding-bottom: 0px;}
#list_tabs .ui-tabs-panel{padding: 0;}
#list_tabs .ui-tabs-nav li.tab_err{float: left;color: #EF4F91;}
#list_tabs .ui-tabs-nav li.tab_err a{color: #EF4F91;}

/***************Dialog******************/

#info_dialog{display: none;}
#dialog_cookie{display: none;padding: 2px;margin: 0;}
.cookie_dialog{border: 0;}
.cookie_dialog .ui-dialog-titlebar{display: none;}

#dialog_cookie .info_dialog_head{height: 35px;line-height: 35px;border-bottom: 0px solid #6dbe41;}
#dialog_cookie img{border: none;}
#info_dialog .info_dialog_body,#dialog_cookie .info_dialog_body{padding: 10px;padding-bottom: 20px;}
#info_dialog p{margin: 0 10px 20px;}
#dialog_cookie .info_dialog_body{color: #333;font-size: 11px;}
.dialog_close{display: block;float: right;height: 30px;width: 30px;border-left: 2px solid #6dbe41;text-align: center;cursor: pointer;font-size: 16px;}
.dialog_close:hover{color: #d2d2d2;}
.cookie_dialog .ui-dialog-buttonpane button {background: none repeat scroll 0 0 #6DBE41;border: 2px solid #FFFFFF;color: #FFFFFF;font-size: 0.75em;font-weight: 700;height: 28px;line-height: 28px;margin: 0.5em 8px 0.5em 0; padding: 0 10px;text-align: center;text-transform: uppercase;}


/********Pagination************************/

.pagination_links{text-align:center;margin:5px 0;padding:10px 10px;font-family:Arial, Helvetica, sans-serif;font-size:9pt;border-top:1px solid #dedede;border-bottom:1px solid #dedede; color: #5c5c5c; margin-top: 20px;}
.form_content .pagination_links{text-align:center;margin:5px 0;padding:10px 10px;font-family:Arial, Helvetica, sans-serif;font-size:9pt;border-top:1px solid #E4E18E;border-bottom:1px solid #E4E18E; color: #FFFED4;}
.pagination_links a{border:1px solid #5c5c5c; padding:3px 8px; margin:0 2px; /*-m-moz-border-radius: 10px;-webkit-border-radius: 10px;-khtml-border-radius: 10px; border-radius: 10px;*/color:#5c5c5c;}
.pagination_links strong,.pagination_links a:hover{padding:3px 8px;margin:0 2px;background:#5c5c5c;/*border:1px solid #278DCC;-moz-border-radius: 10px;-webkit-border-radius: 10px;-khtml-border-radius: 10px;border-radius: 10px;*/ color:#fff;text-decoration:none;}
.pagination_links span{border:1px solid #ddd;background:#FBF9EE;padding:3px 8px;margin:0 2px;color: #C0C0C0;/*-moz-border-radius: 10px;-webkit-border-radius: 10px;-khtml-border-radius: 10px;border-radius: 10px;*/}
.search_pagination{}
#pagination{    margin-top: 20px; }
#pagination a.page_num:last-child{    margin-right:10px;}
.first_page, .last_page,.page_num{    padding: 3px;    background-color: #ccc;    color: #3e3e3e;    font-weight: bold;    border: 1px solid;}

span#last{    margin-left: 10px;}
.curent_page{    background-color:#fff;    color:#000;}


/***************** I-FRAME *************/

#iframe_back {  background-color: #ffffff;  margin: 0px;  padding: 0px;}
.col_frame {    width: 910px; margin: 0px 0px 15px 10px; background-color: #ffffff;     float:left;    overflow: hidden;   }
.col_frame a:visited, .col_frame a:link, .col_frame a:active {  color: #6dbe41; text-decoration:none;}
.col_frame a:hover {    color: #00adef; text-decoration:none;}


/*************** EVENTS ***********/

.event_date {  width: 280px;  float:left;  padding:0px 5px 5px 0px;}
.event_title {  font-size: 14px;  font-weight: bold; margin-bottom: 20px;  }
.event_date a {   text-decoration:none;   font-size: 14px;}
.event_prep {  width: 580px;  float: left;  padding-top:5px;}
.event_details_head {  margin-bottom: 10px;}
.event_details_L {  width:100px;  float:left;  font-size:13px;  margin-top:5px; color:  #00adef; font-weight:bold;}
.event_details_L300 {  width:280px;  float:left;  padding-left:5px; margin-top:5px; margin-bottom:10px; }
.event_details_R300 {  width:280px;  float:left; padding-left:5px; margin-top:5px; margin-bottom:10px;}
.event_details_R {  width:480px;  float:left; padding-left:5px; margin-top:5px; margin-bottom:10px;}

.event_agenda_L {  width:80px;  float:left;  font-size:12px;  margin-top:5px;  font-weight:bold; border: 1px solid #d2d2d2;  background-color:#d2d2d2; padding:5px;}
.event_agenda_R {  width:480px;  float:left; padding:5px 7px; margin-top:5px; margin-bottom:5px; border: 1px solid #d2d2d2;}
.event_agenda_R ul {  margin-left:-3px;  line-height: 18px;}

.event_venue {  width: 170px;  margin:-10px -10px 10px 5px;  background-color: #d2d2d2;  padding:10px;  float:right;  white-space: normal;}
.event-top {  width: 600px;  background-image: url(../images/Events_back.jpg);  background-repeat: no-repeat;  background-position: top left;  height: 20px;  padding: 7px 10px 1px 10px;  border-bottom: 2px solid #ffffff;  margin:0px;}
.events {  width: 608px;  background-color: #ffffff;  border: 1px solid #d2d2d2;  padding: 5px 5px;  margin:0px;}
.events .row_grey {  background-color: #eeeded;  padding: 5px 5px;}
.events .row_white {  background-color: #ffffff;  padding: 5px 5px;}
.botom_back_link{text-align: center;}


/************* SITE MAP **************/

#sitemap{font-size: 15px;position:relative; top:40px;}
#sitemap a { text-decoration:none; color:#553542; }
#sitemap ul {  /*list-style-image: url(../images/bullet-1.jpg);*/ line-height:20px; margin-left: 40px; list-style: none; }
#sitemap ul li a {  color:#553542; }
#sitemap ul li a:hover {  color:#23140D; text-decoration: underline; }
#sitemap ul li  {  margin-bottom:20px; }
#sitemap ul ul {  /*list-style-image: url(../images/bullet-2.jpg);*/ line-height:18px;  margin-top:5px;}
#sitemap ul ul  li {   margin-bottom:10px; }
#sitemap ul ul ul {  /*list-style-image: url(../images/bullet-2.jpg); */line-height:18px; }


/************* GALLERY **************/

.gallery_details{clear: both; margin-bottom: 20px;width:100%;}
.gallery_details .gallery_thumb{ width: 33%; height: auto; float: left; padding: 10px;-webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.gallery_details .gallery_desc{width: 65%; padding-left: 8px; float: left;}
.gallery_details .gallery_title{font-weight: bold; padding-top: 3px; font-size: 15px;}
.gallery_slidshow #columns{ padding: 0 20px; width: 100%!important; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }
.gallery_full_details{padding-bottom: 10px;}
.gallery_content.col_widget {  width: 100%;}
.prev {   float:left; }
.next {   float:right; }
.gallery_thumb img { width: 100%;}
.rslides_tabs ul li {  float:left; }
.rslides1_tabs ul li {  float:left; }

.galleria-container{    background:none!important; height:570px;}
.galleria-info {    width: 89%;    top: 248px;    left: 42px;    z-index: 2;    position: absolute;    margin-bottom: -66px;    display: block!important;}
.galleria-info-text{    display: block;    height: 67px!important;    opacity: 0.5; }
.galleria-container img { top: 0!important;}

/************* RESOURCES **************/

div#resources_widget a {    display: inherit;    color: #804c7d;    padding: 2px 15px 0px 0px;    min-height: 15px;    font-weight: bold;    background-position: 100% 80%;    display: block;    font-size: 14px;}
#resource_Search_container label{    width: 167px;}
select#topic_search{    width: 236px;    margin-left: -52px;}
select#types{    margin-left: -51px;    width: 234px;}
div#resource_Search_container div {    margin: 10px 0px;}

.form_left{    float:left;width:48%;}
.form_right{    float:left;width:48%;    margin-left:10px!important;    background-color: #1ba3d3;    color: #fff;padding:10px;}

#resource_Search_container{    margin-top:20px;}
#resource_Search_container label{    color:#fff;}

.form_left #keyword{    width: 226px;    padding: 0px 0px 0px 10px;    height: 26px;}
.form_left #keyword_search{    width: 100px;    height: 26px;    float: right;    margin-right: 29px;    border-radius: 5px;}


/*********Product item**********/

.products_item { width: 50%;float: left; padding-right: 10px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }
.products_extra_inst{font-style: italic; font-size: 19px;}
.products_item .product_desc{  float: left;  width: 55%;  padding-right: 30px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc)}
.products_item .p-title{font-weight: bold;padding-right: 5px;color: #4F718A;}
.products_item .products_img { float: left; padding-right: 20px; width: 45%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.products_item .prod_qty{width: 30px;}
.products_item .products_img img {  width: 100%;  margin-top: 7px;}
.products_item .price{padding-top: 10px; padding-right: 30px;}
.products_item .price_main{font-weight: bold;color: #4F718A;}
.products_item .price_changed{font-weight: bold;color: #c72c03; text-decoration: line-through; display: inline-block; padding-left: 5px;}
.products_item form.add_to_cart_form{ padding: 0px; margin: 0; line-height: 20px; float: right; margin-right: 0px;}
.view_prod_details{float: right; margin-right: 0px;}
.products_content.col_widget {  width: 100%;}

/*********Product details**********/

.products_item_details{   margin-right: 0px;}
.products_item_details .product_desc{float: left; width: 385px;}
.products_item_details .p-title{color: #221006;    display: inline-block;    font-size: 18px;    font-weight: bold;    line-height: 30px;    padding-right: 5px;}
.products_item_details .products_img{float: left; margin-right: 10px; max-width: 300px;}
.products_item_details .products_img img{width: 290px;}
.products_item_details .prod_qty{width: 30px;}

.products_item_details .price{padding-top: 5px;}
.products_item_details .price_main{font-weight: bold;color:  #221006;}
.products_item_details .price_changed{font-weight: bold;color: #c72c03; text-decoration: line-through; display: inline-block; padding-left: 5px;}
.products_item_details form.add_to_cart_form{ padding: 0px; margin: 0; line-height: 20px; float: none; font-size: 15px;}

.products_item_details .item_option{padding-top: 5px;}
.item_option_title{display: block; padding: 10px 10px 10px 0px; font-weight: bold; color:  #221006;}
.item_option_value{display: block; padding-left: 20px;}

.payment-methods { background: url("../images/payment-methods.jpg") top left no-repeat; width:312px; height:32px; float:right; margin-bottom:5px; }

/*for check option*/
.opt_type_val_1{display: block; clear: both;}
.products_item_details .item_option ul{padding: 0; margin: 0; list-style: none;}
#columns .products_item_details .item_option ul li{ padding: 0 0 5px 0; margin: 0;clear: both;}
.item_option_value label{ padding-left: 20px;display: inline-block;}

/***********Cart***********/
.cart_hightlight{font-weight: bold;}
.cart_empty{font-weight: bold; text-transform: uppercase;}
.cart_content #columns{margin-right: 20px; width: 940px;}
.cart-details {background: url("../images/announcement-back.jpg") no-repeat scroll left top #F0E8D3; font-size: 14px;}
.cart-details table {padding-top:8px;}
.cart-details input.prod_qty{width: 30px; text-align: center;}
.cart-details .head_row{background: #2B160A; color: #FAE9C9; line-height: 20px; padding: 0; margin: 0;text-transform: uppercase;}
.cart-details .head_row th{padding: 5px 10px; margin: 0;}
.cart-details .even_row{}
.cart-details .odd_row{/*background: #e1e1e1;*/}
.cart-details .cart_buttons{float: right; margin-top: 20px;}
.cart-details a.button{height: 17px;line-height: 17px; display: inline-block;}
.cart-details a.button:hover{text-decoration: none;}
.order_instruction{width: 500px; height: 50px;}

#cart-details ul.cart_item_options{padding: 0;margin: 0;font-size: 11px; list-style: none;}
#cart-details ul.cart_item_options li{padding: 0;margin: 0;height:auto;line-height: 15px;}
img.remove_prod{float: left;padding-right: 5px;}
.checkout_form select{max-width: 208px;}
.deilvery_info_details{width: 50%;}
.deilvery_method_details label{width: auto; line-height: 20px;display: inline-block; min-width: 60%;}
.deilvery_method_details input.check{float: none;}


/************* WIDGETS **************/

#widget_column {    width: 25%;    float: right;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);   padding: 20px;}

.widget {   float: right;margin-bottom: 5px; width: 100%;  }
.widget ul { }
.widget ul li { }
.widget ul li.no-border {  border-bottom: none; }

.widget_content ul li:last-child  {  border-bottom: none; }
.widget_content {     padding-bottom: 10px;    padding-bottom: 5px;}

.widget_heading {/*display: none;*/ font-size: 11px;font-weight: bold;padding: 7px 15px 5px 5px;margin:0px;text-transform:uppercase;line-height: 18px; color: #4F718A; display:none;}

.widget_content a{  /*font-size: 10px; line-height: 14px; color: #555555;*/ }

.widget_footer{    background-color: #007970;    padding:7px 15px 7px 15px;    margin:0px;    font-size:12px;    line-height: 16px;    font-weight: bold;    border-top: 1px solid #374a4d;    text-transform:uppercase;    color:#ffffff;}
.widget_footer a:active, .widget_footer a:link, .widget_footer a:visited{    color:#ffffff;    text-decoration: none;}
.widget_footer a:hover {    color: #e9e9e9;    text-decoration: none;}

.widget_content_white {    margin:0px 5px 5px 5px;    padding:5px 15px;    background-color: #ffffff;    color: #77787c;    font-size:12px;    line-height: 14px;}

#advance_search_options{    display: none;  }
.widget_floating_input {    text-transform: uppercase;    margin-top: 10px;    float:left;    font-weight:bold;    width: auto;    margin-left: 0;    padding-left: 0;}
.widget_floating_text {    text-transform: uppercase;    padding-top: 10px;    float:left;    font-weight:bold;}
.widget_floating_image {    text-transform: uppercase;    float:left;    font-weight:bold;}

.widget_search_icon img {    text-align: center;}

.widget_video {    margin:0px 5px 5px 5px;    padding:0px;    color: #ffffff;    font-size:12px;}

.widget_content_white ul {    list-style: none;    margin-left: 0px;    padding: 0px;}
.widget_content_white ul li{    clear: both;}

.widget_image {    border: 2px solid #374a4d;    background-color: #8a3c80;    color:#ffffff;    margin:0px 0px 10px 0px;    padding:0px;    width: 290px;    overflow: hidden;    height:auto;    text-align:center;}
.widget_image img {    border:0px;    margin:0px;    padding:0px;    height:auto;    display:inline;}

.widget_twitter{border:1px solid #dcdfe3;padding:10px;width:100%;box-sizing:border-box;}
.widget_twitter .item{margin-bottom:10px;}


/*********Left widget layout**********/
#left_widget {width:25%; }
#left_widget #widget_column {    width: 100%;    float: left;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);  padding: 20px 0 0 0;}

/*********Right widget layout**********/
#right_widget {width:25%; }
#right_widget #widget_column {    width: 100%;    float: right;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);   padding: 20px;}

/*********Top widget layout**********/
#top_widget  {    width: 100%;    float: left;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); clear:both; margin-bottom:20px; }
#top_widget #widget_column {    width: 100%;    float: none;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);   padding: 20px;}
#top_widget #widget_column .widget {    width: 25%;    float: left;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);   padding: 0px 20px;}

/*********Bottom widget layout**********/
#bottom_widget  {    width: 100%;    float: left;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); clear:both; margin-bottom:20px; }
#bottom_widget #widget_column {    width: 100%;    float: none;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);   padding: 20px;}
#bottom_widget #widget_column .widget {    width: 33.3%;    float: left;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);   padding: 0px 20px;}

/*********Newsletter widget**********/
.newsletter_signup{border:1px solid #dcdfe3;padding:10px;width:100%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }
.newsletter_signup input { border: 1px solid #B3C6D4;    background: url(../images/white-gradient.png) top left repeat-x #ffffff ;    height: 23px;    float: left;    width: 100%;    font-size: 	11px;    font-weight: normal;    color: #77787c;    padding-left: 8px;    line-height: 23px;    margin-bottom: 5px; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }
.newsletter_signup #newsletter_submit { position: relative;    color: #fff;    /*font-family: 'Roboto Slab', serif; */ float: none;    margin-top: 5px;   -webkit-border-radius: 15px;    -moz-border-radius: 15px;    border-radius: 15px;    background: #649a71;    padding: 7px 20px;    -webkit-border-radius: 50px;    border-radius: 50px;    /*font-family: 'Roboto Slab', serif; */    font-size: 1.1em;    width: auto !important;    height: auto;    border: 0;    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0);     box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0); }

/*********Search widget**********/
.widget_search {    border: 1px solid #dcdfe3;    background: url(../images/widget-content-back.png) top left repeat-x #ffffff ;    padding: 10px;    color:      #77787C; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.widget-input-container {    clear: both; }
.widget_search_input {    border: 1px solid #B3C6D4;    background: url(../images/white-gradient.png) top left repeat-x #ffffff ;    height: 23px;    float: left;    width: 200px;    font-size: 	11px;    font-weight: normal;    color: #77787c;    padding-left: 8px;    line-height: 23px;    margin-bottom: 17px;}
input[type="submit"].widget_search_btn {    background: url(../images/search-icon.png) top left no-repeat;    width: 31px;    height: 31px;    float: left;    margin-bottom: 17px;    padding:0px;    border: none;  margin-left: 10px;  margin-right:10px;    cursor: pointer;}
#search_widget_form p {  width: 100%;  clear:both; float:none; }

/*********Login widget**********/
#logon {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); width: 100%; padding:10px; border: 1px solid #dcdfe3; }
#logon input {     padding: 2px;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); width: 100% !important;   display: block;    border: 1px solid #C9C9C9;    margin: 5px 0 0px 0;    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0.1);    box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0.1); float:left; clear:both; }
#logon #login-submit {    position: relative;    color: #fff;    /*font-family: 'Roboto Slab', serif; */ float: right;    margin-top: 5px;   -webkit-border-radius: 15px;    -moz-border-radius: 15px;    border-radius: 15px;    background-color: #649a71;    padding: 7px 20px;    -webkit-border-radius: 50px;    border-radius: 50px;    /*font-family: 'Roboto Slab', serif; */    font-size: 1.1em;    width: auto !important;    height: auto;    border: 0;    -webkit-box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0);     box-shadow: inset 2px 2px 10px 0 rgba(0,0,0,0); }

/*********Latest news scrolling widget**********/
.widget_latest_news {  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); width: 100%; padding:10px; border: 1px solid #dcdfe3; }
.widget_latest_news ul {  padding:0px; margin:0px; list-style: none; }
.widget_latest_news ul li {  padding: 10px 0px; margin:0px; list-style: none; }
.widget_latest_news a:link,.widget_latest_news a:visited{/*color: #4F718A;*/}
.widget_latest_news h3{/*font-size: 12px; font-weight: bold; padding: 0;margin: 0;line-height: 15px;*/}
.widget_latest_news h3 a{/*font-size: 12px;*/}
.scroll_news .widget_content{height: 250px; overflow: hidden;}

/*********Resource widget**********/
.resource_title {    color: #00adef;    font-weight: bold;    margin-bottom: 0px;    margin-right:5px;}
.resource_text {    float: left;    margin-bottom: 5px;    padding:0px;}
.resource_info {}

/*********Event calender widget**********/
.widget_callender {    border: 1px solid #dcdfe3;    color:#ffffff;    background: #E9E9E9;    margin:0px 0px 1px 0px;    padding: 6px;    font-family: Arial, Helvetica, sans-serif;    font-size:11px;    width: 100%; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}
.event_calendar{    color: #4F718A;    margin: 0 0px;    padding: 0px;    background: #E9E9E9; -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); width: 100%;}
.event_calendar td {     -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); width: 14%;}
.event_calendar .ev_cl_head th{    border-bottom: 1px solid #cececf;}
.event_calendar .ev_cl_head {    font-size: 12px;    font-weight: bold;    text-transform: uppercase;}
.widget_callender .ev_cl_head th{    padding-top: 5px;    padding-bottom: 0px;    text-align: center;}
.widget_callender .ev_cl_week th{    padding-top: 10px;    padding-bottom: 10px;    text-align: center;    text-transform: uppercase;}
.event_calendar .heading_month{    float: left;    padding-left:  20px;}
.event_calendar .heading_year{    float: right;    padding-right: 0px;}
.widget_callender .ev_cl_prev{    float: left;    padding-left: 0px;}
.widget_callender .ev_cl_next{    float: right;    padding-right: 0px;}
.widget_callender .ico-next{    background: url('../images/next.png') no-repeat;    height: 22px;    width: 25px;    display: block;    overflow: hidden;    text-indent: -99999px;    float: right;}
.widget_callender .ico-prev{    background: url('../images/prev.png') no-repeat;    height: 22px;    width: 25px;    display: block;    overflow: hidden;    text-indent: -99999px;    float: left;}
.widget_callender .day-default{  width: 100%;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);    height: 33px;    line-height: 32px;    text-align: center;    padding-right: 0px;    background: #cececf;    border-bottom: 1px solid #ffffff/*#cececf*/;    border-right: 1px solid #ffffff/*#cececf*/;    font-weight: bold;    position: relative;}
.widget_callender tr:nth-child(3) td .day-default{    border-top: 1px solid #cececf;}
.widget_callender tr td:last-child .day-default{    border-right: 0px solid #cececf;}
.widget_callender .day-default a{    display: block;    color: #804c7d;    font-weight: bold;    min-width: 33px; width:100%; text-align: center;    height: 33px;}
.widget_callender .day-default a:hover{    text-decoration: none;    color: #666;}
.widget_callender .highlight{    background: #804c7d;    border-bottom: 1px solid #cececf;    border-right: 1px solid #cececf;    color: #FFF;    font-weight: bold;}
.widget_callender .highlight:hover {    background: #fff;  }
.widget_callender .highlight a{    color: #FFF;    font-weight: bold;}
.widget_callender .highlight_today{    font-weight: bold;    background: url(../images/calendar-day-h.png) top left repeat-x #B3C6D4;    border-bottom: 1px solid #ffffff/*#cececf*/;    border-right: 1px solid #ffffff/*#cececf*/;    color: #fff;}
.widget_callender .highlight_today a{    color: #FFF;    font-weight: bold;    background: #804c7d;}
.widget_callender .cl_tooltip{    display: none;    font-size: 12px;    min-height:  100px;    padding-left: 24px;    position: absolute;    width: 246px;    z-index: 9000;    top: -20px;    left: 0px;    padding-left: 35px;    background: transparent;    background-image: url("../images/cl_tooltip.png");    background-position: 12px top;    background-repeat: no-repeat;}
.cl_tooltip .tooltip_cont{    min-height:  100px;    width: 226px;    border-bottom: 1px solid #d5d5d5;    border-top: 1px solid #d5d5d5;    border-right: 1px solid #d5d5d5;    background: #fff;    color: #777;    text-align: left;    padding: 5px 10px;}
.widget_callender .tooltip_cont h4{    margin: 0;    padding: 0;    margin-bottom: 3px;    line-height: 20px;    margin-top: 5px;color:#3e3e3e; }
.widget_callender .tooltip_cont .tip_location{    padding-bottom: 10px;}
.widget_callender .tooltip_cont a,.widget_callender .highlight_today .tooltip_cont a{    width: auto;    height: auto;    color: #804c7d;  text-align: left;  font-weight: bold;    line-height: normal;    background: none;}
#right_widget {    display: block;}

/*************page menu widget*******************/
.submenu {
    position: relative;
    display: block;
    background-color: #74654A;
    padding: 0;
    margin: 0;
}

.submenu.sticky {
  position: fixed;
  top: 0;
  width: 25%;
  padding-top: 20px;
  background-color: #fff;
  }

.submenu ul {
  padding: 0;
  margin: 0;
}

.submenu ul li {
  list-style-type: none;
    padding: 0;
}

.submenu ul li a {
  padding: 5px 15px 5px 16px;
  color: #fff;
    display: block;
    background: #988564;
  border-top: solid 1px #A99775;
  border-bottom: solid 1px #847356;
}

.submenu h4 {
  padding: 0 0 0 16px;
      color: #BAA786;
    background-color: #74654A;
}

.submenu ul li a:hover {
  background: #8C7C5C;
}

/*************Banner caption*******************/

.nivo-caption h1 { 
font-size: 60px;
    line-height: 60px;
    font-family: Montserrat;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    margin-top: -140px;
}
.nivo-caption h2 { 
  font-size: 24px;
  line-height: 30px;
  font-size: 30px;
  line-height: 36px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 400;
  color: #fff;
  padding: 5px;
}

.banner-capt-right-mobile h2 { 
  font-size: 24px;
  line-height: 30px;
  font-size: 30px;
  line-height: 36px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-weight: 400;
  color: #fff;
  padding: 5px;
}

/*.nivo-caption a.caption-btn { background:#804c7d; padding: 5px 10px; color:#fff; text-decoration:none; }*/
.nivo-caption a.caption-btn:hover { background:#887149; color:#fff; text-decoration:none; }
.nivo-caption {
     /* background: rgba(0,0,0,0.2)!important;*/
  width: 100%!important;
    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);
    color: #fff;
    display: block;
    height: 0;
    margin: 0 auto;
    position: relative;
    width: 100%;
    z-index: 8; 
}

.caption-cont {
  max-width: 1140px;
    margin:0 auto;
      position: relative;
  min-height: 300px;
}

.banner-capt-left {
  width: 57%;
  float: left;
   padding: 20px 30px 30px 41px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.banner-capt-right {
  width: 40%;
  float: right;
   padding: 20px 0px 30px 41px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%!important;
   background: rgba(0,0,0,0.3);
  position: absolute;
  right: 0;  
    height: 300px!important;
}
.banner-capt-right .banner-text {
    font-family: "Open Sans Condensed";
    font-weight: bold;
    font-size: 26px;
    line-height: 28px;
    padding: 0 0 0 5px;}

.banner-capt-right .banner-text a {
	color: white;
	text-decoration: underline;
}
.banner-capt-right .privacy {
	font-family: "Open Sans Condensed";
	font-size: 16px;
}

a.caption-btn {
  /* float: initial; */
  display: block!important;
  background-color: #ae9b79;
  color: #3A3227;
  /* position: relative; */
  padding: 5px 10px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-top: 10px!important;
  width: 84px;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
      -webkit-box-shadow: 1px 1px 0 1 #66583E;
  box-shadow: 1px 1px 0 1 #66583E;
  -webkit-box-shadow: 1px 1px 0 1px #66583E;
  box-shadow: 1px 1px 0 1px #66583E;
}

.banner-capt-right-mobile {
  width: 100%;
  padding: 12px 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%!important;
  background: #8C7853;
  position: relative;
  margin-top: 0;
display:none;
}


p.banner-text {
  color: #fff;
}

.banner-capt-left-mobile { 
    width: 100%;padding: 12px 30px;
    position: relative;  
    -webkit-box-sizing: border-box; 
    -moz-box-sizing: border-box;  
    box-sizing: border-box; 
    bottom: 0; 
    display: block; 
    background: #000!important;  
    display: none;}

/*************sitemap layout*******************/
ul#site-map-content    {  padding: 10px;  -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); }
ul#site-map-content  li  { margin:0px; padding:5px; list-style: none; }
ul#site-map-content ul {  margin:0px; padding:0px; list-style: none; }
ul#site-map-content ul li {  margin:0px; padding:5px; list-style: none; }
ul#site-map-content ul li ul li {  margin:0px; padding:5px; list-style: none; }
ul#site-map-content ul li ul li ul li {  margin:0px; padding:5px; list-style: none; }



/*************Maintenance Layout*******************/

.maintenance #content-wrapper{width: 680px; background: url('../images/maintenance-bg.jpg') no-repeat;}
.maintenance #columns {background: transparent;min-height: 250px;}


/********* Admin specific CSS Layouts *************/
/*#admin-wrapper .section-content { margin: 20px 3% 0;}*/


/***************************OTHER or CUSTOM*********************/


#codeigniter_profiler {     /*display:none;*/ }

/***************************END*********************/
a.learn-more {
  position: relative;
  padding: 5px 38px 5px 5px;
  color: #fff;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 54px;
}

a.learn-more:hover {text-decoration: none!important;color: #ae9b79;}
.learn-more img {  width: 27px!important;  display: block;position: absolute;  right: 0px!important;  top: 4px;  left: inherit!important;}

a.gold-btn {
  background-color: #ae9b79;
  color: #FFFFFF;
  padding: 5px 10px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  margin-top: 10px!important;
  font-family: 'Open Sans Condensed', sans-serif;
  font-size: 19px;
  font-weight: 300;
  text-align: center;
      -webkit-box-shadow: 1px 1px 0 1px #867A65;
  box-shadow: 1px 1px 0 1px #867A65;
  -webkit-box-shadow: 1px 1px 0 1px #867A65;
  box-shadow: 1px 1px 0 1px #867A65;
}

a.gold-btn:hover {
  background-color: #9D8A6A;
  color: #FFFFFF;
  text-decoration: none;
}
.gallery-btn{
	margin-top:20px;
	text-align:center;
}


.video-play {
  display: none;
  position: absolute;
  top: 17%;
  left: 35%;
}

.inner-banner {
 position: relative; 
margin: 0 auto;
margin-top: -54px;
}

.inner-banner img {
width: 100%;
}

.mapbanner {
  position: relative;
  margin-top: -54px;
  background-color: #7E254D;
  padding-top: 52px;
}

.banner-holder {
  position: relative;
}

/*************************firefox only styles**************************/
@-moz-document url-prefix() {
#image-area {
  margin: auto 0!important;
}
#mainnavbar {
  background: rgba(0,0,0,1);
  box-shadow: 0 4px 0 0 rgba(0,0,0,0.2);
}

}
#accordion{
	font-size:20px;
}
#accordion p{
	font-size:14px;
}

.response-msg.confirm.ui-corner-all {
  position: relative;
  top: 60px;
  font-size: 21px;
    color: green;
}

/* Gallery in News Page: accomodating for Title*/
#block_3955 {
	margin-top: -50px;
}
/*dropdown menu*/

ul#dropdown{    height: 54px;  padding: 0px; float: left; display: inline;    -webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc); list-style: none; width:100%; margin:0px;}

/* level 1 */

ul#dropdown li{   display: block; padding: 0; vertical-align: bottom;  position: relative;height: 100%; line-height: 54px; text-align: center;float: left; list-style: none; }
ul#dropdown li:hover{background: #650735;text-decoration: none; }

ul#dropdown li:last-child{ border-right:0!important;float:right;}
ul#dropdown li a{color: #fff;font-family: 'Open Sans Condensed', sans-serif;font-size: 15px;font-weight: 600;line-height: 54px;display: block;vertical-align: bottom;width: 100%; padding: 0px 20px;text-transform: uppercase;
-webkit-box-sizing: border-box;  -moz-box-sizing: border-box; box-sizing: border-box; behavior: url(/script/boxsizing.htc);}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
   /* IE10+ specific styles go here */
ul#dropdown li a {  font-size:14px!important;}
}

/* ul#dropdown li.active a {background: #650735;text-decoration: none;} */
ul#dropdown li a:hover {background: #650735; text-decoration: none;}
ul#dropdown li a img{vertical-align: bottom; }

/* Online Consultation */
ul#dropdown li a.onlineconsultation, ul#dropdown li a.onlineconsultation:hover {background: #ae9b79; text-decoration: none; }
	

/* level 2 */

ul#dropdown li ul{   padding: 0;    position: absolute;top: 53px;margin: 0;left: -1px; 
    -webkit-box-shadow: none;      -moz-box-shadow: none;    box-shadow: none;
    display: block;  visibility: hidden;
    opacity: 0;
    -webkit-transiton: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    -transition: opacity 1s;   z-index: 999;
    background: #650735;
}
ul#dropdown li ul li{ clear: both;   display: block!important;    padding: 0!important;   text-align: left;  width: 100%;
  min-width: 220px;}
ul#dropdown li ul li a {  white-space: nowrap;font-family: 'Open Sans', sans-serif;font-size: 14px;font-weight: 500;line-height: 27px;text-transform: initial;color: #fff;padding: 5px 12px 5px 12px!important; margin: 0;  width: 100%;
  min-width: 220px;display: block;  border-top: #770D41 solid 1px;  border-bottom: #56062D solid 1px;  background: #650735; }
ul#dropdown li ul li a:hover {     background: #56062D;     display: block;}
ul#dropdown li ul li ul li a:hover {     background: #3E3E3E;     display: block;}
ul#dropdown li:hover ul {  display: block;  opacity: 1;  visibility: visible; }
ul#dropdown ul li:hover ul {  display: none;  opacity: 1;  visibility: hidden; }
ul#dropdown ul li ul li:hover ul {  display: none;  opacity: 1;  visibility: hidden; }

/*  level 3    */

ul#dropdown li ul li ul{    position: absolute;    top: 0px;    margin:0;    left: 100%;    width: 224px;      padding: 0;display: block;
    -webkit-box-shadow: none;     -moz-box-shadow: none;    box-shadow: none;
    visibility: hidden !important;
    opacity: 0;
    -webkit-transiton: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    -transition: opacity 1s;    z-index: 999;
     }
ul#dropdown li ul li:hover ul {  display: block;  opacity: 1;  visibility: visible !important; }
ul#dropdown ul ul { left: 100%; top: 10px; }
ul#dropdown ul li:hover > ul { visibility: visible; color:#804C7D; }
ul#dropdown ul li:hover ul {  display: block;  opacity: 1;  visibility: visible; }

/*  level 4    */

ul#dropdown li ul li ul li ul{    position: absolute;    top: 0px;    margin:0;    left: 100%;    width: 224px;    padding: 0; display: block;
    -webkit-box-shadow: none;    -moz-box-shadow: none;    box-shadow: none;
    visibility: hidden !important;
    opacity: 0;
    -webkit-transiton: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    -transition: opacity 1s;
     }

ul#dropdown li ul li ul li:hover ul {  display: block;  opacity: 1;  visibility: visible !important; }

ul#dropdown ul ul ul { left: 100%; top: 10px; }
ul#dropdown ul li ul li:hover > ul { visibility: visible; color:#804C7D; }

ul#dropdown ul li ul li:hover ul {  display: block;  opacity: 1;  visibility: visible; }

