@font-face {
  font-family: "OpenSans-Regular";
  src: url("fonts/OpenSans-Regular.eot");
  src: local("☺"),
    url("fonts/OpenSans-Regular.woff") format("woff"),
    url("fonts/OpenSans-Regular.otf") format("opentype");
}

@font-face {
  font-family: "OpenSans-Semibold";
  src: url("fonts/OpenSans-Semibold.eot");
  src: local("☺"),
    url("fonts/OpenSans-Semibold.woff") format("woff"),
    url("fonts/OpenSans-Semibold.otf") format("opentype");
}

@font-face {
  font-family: "OpenSans-Bold";
  src: url("fonts/OpenSans-Bold.eot");
  src: local("☺"),
    url("fonts/OpenSans-Bold.woff") format("woff"),
    url("fonts/OpenSans-Bold.otf") format("opentype");
}

/* General Styles */
* {
  font-family: "Open Sans";
}

body {
  background: none repeat scroll 0 0 #ffffff;
  color: #403e42;
  font-size: 16px;
  font-weight: 300;
  line-height: 38px;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

/* Basic style */
::selection {
  background: #6c7383;
  color: #ffffff;
}
::-moz-selection {
  background: #6c7383;
  color: #ffffff;
}
::-webkit-selection {
  background: #6c7383;
  color: #ffffff;
}
/*
:hover {
  transition: all 0.2s ease-in-out; 
  -webkit-transition: all 0.2s ease-in-out; 
  -moz-transition: all 0.2s ease-in-out; 
  -ms-transition: all 0.2s ease-in-out; 
  -o-transition: all 0.2s ease-in-out;
}
*/

.clear {
  clear: both;
}
.float_left {
  float: left;
}
.float_right {
  float: right;
}

p {
  color: #403e42;
  font-size: 16px;
  font-weight: 300;
  line-height: 38px;
  margin-top: 0;
  margin-bottom: 3px;
  text-align: justify;
}
a {
  color: #a61261;
  font-size: 16px;
  line-height: 36px;
  font-weight: 300;
  text-decoration: underline;
  outline: none;
}
a:hover {
  color: #a61261;
  text-decoration: none;
}
a img {
  border: none;
  outline: none;
  text-decoration: none;
}
big a {
  color: #403e42;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none !important;
}

h1 {
  color: #403e42;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin: 0 0 10px;
}
h2 {
  color: #403e42;
  font-size: 22px;
  font-weight: 600;
  line-height: 26px;
  margin: 0 0 10px;
}
h3 {
  color: #403e42;  
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  margin: 0 0 10px;
}
h4 {
  color: #403e42;  
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 0;
}

hr {
  border: none;
  border-bottom: 1px solid #A61261;
  margin-bottom: 15px;
  margin-top: 15px;
}
ul, ol {
  list-style-position: inside;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 34px;
  color: #403e42;
}
table tr td {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #403e42;
}
label {
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  color: #403e42;
}

/* Styles for input fields */
/*input, select, textarea {
  transition: all 0.2s ease-in-out; 
  -webkit-transition: all 0.2s ease-in-out; 
  -moz-transition: all 0.2s ease-in-out; 
  -ms-transition: all 0.2s ease-in-out; 
  -o-transition: all 0.2s ease-in-out;
}*/
input[type="checkbox"] {
  cursor: pointer;
  margin: 0;
}
input::-moz-focus-inner, textarea::-mod-focus-inner,
input:focus, textarea:focus {
  border: 0 !important;
  outline: none !important;
}
form input, textarea {
  font-size: 16px;
  font-weight: 300;
  color: #403e42;
  outline: none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  box-shadow: -1px 1px 1px -1px inset;
  -moz-box-shadow: -1px 1px 1px -1px inset;
  -webkit-box-shadow: -1px 1px 1px -1px inset;  
}
form input[type="text"], form input[type="password"], form select {
  border: 1px solid #9F9EA0;
  border-radius: 6px;
  height: 30px;
  line-height: 30px;
  padding: 2px 5px 2px 10px;
}
form textarea {
  border: 1px solid #9F9EA0; 
  border-radius: 6px;
  padding: 5px 5px 5px 10px !important;
}
form input[type="text"]:hover, form input[type="password"]:hover, form textarea:hover {
  border: 1px solid #9F9EA0;
  border-radius: 6px;
}
form input[type="text"]:focus, form input[type="password"]:hover, form textarea:focus {
  border: 1px solid #9F9EA0;
  border-radius: 6px;
}
form input[type="submit"], form input[type="reset"] {
  background: none repeat scroll 0 0 #A61261 !important;
  border: 0 none !important;
  box-shadow: 1px 1px 2px -1px #000000;
  color: #FFFFFF !important;
  cursor: pointer;
  float: left;
  font-size: 16px !important;
  font-weight: 600;
  height: 40px;
  margin-right: 15px;
  margin-top: 10px;
  text-shadow: 1px 1px 1px #3D3D3D;
  text-transform: uppercase;
  width: 110px;
}
form input[type="submit"]:hover, form input[type="reset"]:hover {
  background: none repeat scroll 0 0 #777777;
}
form[name="login"] td {
  font-size: 16px;
}
/*.clear-input-style {
  color: #c9ccd1;
}*/

/* Main layout */
#wrapper {
  min-width: 1140px;
  max-width: 100%;
  margin: 0 auto;
}

/* Logo styles */
#logo {
  width: 285px;
  height: 80px;  
  padding-top: 28px;
  padding-bottom: 32px;
  float: left;
}
#logo a {
  display: block;
}
#logo a img {
  width: 285px;
  height: 80px;
  margin: 0;
  padding: 0;
}

/* Header styles */
#header {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;  

}
#header_top_wrap {
  width: 100%;
  height: auto;
}
#header_top {
  width: 1140px;
  height: 140px;
  margin: 0 auto;
}
#header_bottom {
  position: relative;
  width: 100%;
  height: 425px;  
}
#header_menu {
  background: url("../images/menu_bg.png") repeat scroll left top transparent;
  bottom: 0;
  height: 65px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 999999;
  border-bottom: 1px solid #CFCFCF;
}

/* Bannerslide */
#bannerslide_container {
  min-width: 1140px;
  max-width: 1600px;
  height: 425px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-bottom: 1px solid #EFEFEF;
}
#banner_slide {
  background: transparent;
  position: absolute;
  width: 1600px;
  z-index: 10;
}
#banner_slide_nav {
  bottom: 50px;
  left: 0;
  width: 1600px;
}
#banner_slide_nav div.rightSide {
  background: none repeat scroll 0 0 transparent;
  height: 47px;
  position: absolute;
  right: -20px;
  top: -185px;
  width: 47px;
}
#banner_slide_nav > div > a.prevSlide {
  background: url('../images/bannerslide_prev_arrow.png') no-repeat;
  width: 47px;
  height: 47px;
  margin: 0;
  padding: 0;
}
#banner_slide_nav > div > a.prevSlide:hover {
  background: url('../images/bannerslide_prev_arrow_hover.png') no-repeat;
}
#banner_slide_nav div.leftSide {
  background: none repeat scroll 0 0 transparent;
  height: 47px;
  left: 0;
  position: absolute;
  top: -185px;
  width: 47px;
}
#banner_slide_nav > div > a.nextSlide {
  background: url('../images/bannerslide_next_arrow.png') no-repeat;
  width: 47px;
  height: 47px;
  margin: 0;
  padding: 0;
}
#banner_slide_nav > div > a.nextSlide:hover {
  background: url('../images/bannerslide_next_arrow_hover.png') no-repeat;
}
#banner_slide_nav div.middleSide {
  background: none;
  width: 100%;
  height: 31px;
  display: block;    
}
#banner_slide_pager {
  margin: 0 auto;
  padding-top: 9px;
}
#banner_slide_pager > a {
  background: #ff7e00;
  width: 12px;
  height: 12px;
  color: #78B321;
  cursor: pointer;
  display: block;
  float: left;
  font-size: 1px;
  line-height: 11px;
  margin-right: 3px;
  padding: 0;
  text-align: center;
  text-decoration: none;
}

#banner_slide_pager a.activeSlide {
  background: #FFFFFF;
  color: #FFFFFF;
}
#banner_slide #banner_slide_images {
  max-width: 1600px !important;
  min-width: 1140px !important;
  height: 425px !important;
  overflow: hidden;
  position: relative;
  margin: 0;
  padding: 0;
}
#banner_slide #banner_slide_images li {
  list-style: none;
}
#banner_slide #banner_slide_images li a {
  display: block;
  height: 360px;
  text-decoration: none;
  width: 100%;
}
#banner_slide #banner_slide_images img {
  width: 1600px !important;
  height: 425px !important;
  float: left;
}

/* Bannerslide text */
.bannerslide_text {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;  
}
#banner_slide .quote {
  width: 600px;
  height: 375px;
  margin: 0 auto;
}
#banner_slide .quote > * {
  background: none repeat scroll 0 0 transparent;
  color: #FFFFFF;
  font-size: 48px;
  line-height: 48px;
  margin: 115px 0 0;
  padding: 0;
  text-shadow: 1px 1px 20px black;
  text-align: center;
  font-weight: 400;
}
#banner_slide .quote a {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}
#banner_slide .quote a:hover {
  text-decoration: none;
}
#banner_slide .bs_buttons {
  display: none;
  padding-top: 20px;
}

/* Header menu */
#header_menu > ul.menu-top {
  width: 1140px;
  height: 65px;
  display: block;
  list-style: none outside none;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
#header_menu > ul.menu-top > li {
  position: relative;
  float: left;
}
#header_menu > ul.menu-top > li:hover > span.shadow_left {
  background: url("../images/menu_shadow_left.png") no-repeat;
  width: 8px;
  height: 65px;
  position: absolute;
  left: -8px;
  top: 0;
}
#header_menu > ul.menu-top > li:hover > span.shadow_right {
  background: url("../images/menu_shadow_right.png") no-repeat;
  width: 8px;
  height: 65px;
  position: absolute;
  right: -8px;
  top: 0;  
}
#header_menu > ul.menu-top > li:first-child {
  margin-left: -28px;
}
#header_menu > ul.menu-top > li:last-child {

}
#header_menu > ul.menu-top > li > a {
  color: #FFFFFF;
  display: block;
  font-size: 16px;
  font-weight: 600;
  height: 65px;
  line-height: 65px;
  padding-left: 29px;
  padding-right: 29px;
  text-decoration: none !important;  
  text-transform: uppercase;
  text-shadow: 1px 1px 1px #3d3d3d;
}
#header_menu > ul.menu-top > li:first-child a {

}
#header_menu > ul.menu-top > li:last-child a {

}
#header_menu > ul.menu-top > li > a:hover, 
#header_menu > ul.menu-top > li.menu-hover > a,
#header_menu > ul.menu-top > li.menu-current > a, 
#header_menu > ul.menu-top > li.menu-parent > a {
  background: #A61261;
  color: #ffffff;
  height: 65px;
}

/* Main menu */
#main_menu {
  width: auto;
  height: auto;
  float: right;
  padding-top: 48px;
}
#main_menu > ul.menu-top {
  height: 37px;
  display: block;
  list-style: none outside none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 99999;
}
#main_menu > ul.menu-top > li {
  position: relative;
  float: left;
  margin-left: 8px;
  margin-right: 8px;
}
#main_menu > ul.menu-top > li:first-child {
  margin-left: 0;
}
#main_menu > ul.menu-top > li:last-child {
  margin-right: 0;
}
#main_menu > ul.menu-top > li > a {
  color: #403F42;
  display: block;
  font-size: 18px;
  font-weight: 600;
  height: 37px;
  line-height: 37px;
  padding-left: 16px;
  padding-right: 16px;
  text-decoration: none !important;
  text-transform: uppercase;
}
#main_menu > ul.menu-top > li > a:hover,
#main_menu > ul.menu-top > li.menu-hover > a {
  background: #A61261;
  color: #ffffff;
}
#main_menu > ul.menu-top > li.menu-current > a, 
#main_menu > ul.menu-top > li.menu-parent > a {
  background: transparent;
  color: #403F42;
  border-bottom: 2px solid #A61261;  
  padding-left: 0;
  padding-right: 0;
  margin-left: 16px;
  margin-right: 16px;
  height: 35px;
}
#main_menu > ul.menu-top > li.menu-current:hover, 
#main_menu > ul.menu-top > li.menu-parent:hover {
  background: #A61261;
}
#main_menu > ul.menu-top > li.menu-current:hover > a, 
#main_menu > ul.menu-top > li.menu-parent:hover > a {
  color: #ffffff;
}

/* Main Menu - Submenu */
#main_menu > ul.menu-top > li:hover > ul {
  visibility: visible;
}
#main_menu > ul.menu-top > li > ul {
  background: none repeat scroll 0 0 #A61261;
  left: 0;
  list-style: none outside none;
  margin: 0;
  padding: 5px 0;
  position: absolute;
  top: 37px;
  visibility: hidden;
  z-index: 9999999;
}
#main_menu > ul.menu-top > li > ul > li {
  position: relative;
}
#main_menu > ul.menu-top > li > ul > li:hover,
#main_menu > ul.menu-top > li > ul > li.menu-current,
#main_menu > ul.menu-top > li > ul > li.menu-parent {

}
#main_menu > ul.menu-top > li > ul > li.menu-current > a {

}
#main_menu > ul.menu-top > li > ul > li.menu-expand > a {
  background: url("../images/submenu_hover.png") no-repeat scroll 185px center transparent !important;
}
#main_menu > ul.menu-top > li > ul > li.menu-expand > a:hover {
  background: url("../images/submenu_hover.png") no-repeat scroll 185px center #b5116d !important;
}
#main_menu > ul.menu-top > li > ul > li > a {
  font-size: 14px;
  font-weight: 300;
  display: block;
  line-height: 30px;
  padding: 0 20px 0 16px;
  color: #ffffff;
  min-width: 165px;
  text-decoration: none;
}
#main_menu > ul.menu-top > li > ul > li > a:hover {
  color: #ffffff;
  background: #b5116d;
}

/* Main Menu - Submenu - Submenu */
#main_menu > ul.menu-top > li > ul > li:hover > ul {
  visibility: visible;
}
#main_menu > ul.menu-top > li > ul > li > ul {
  background: none repeat scroll 0 0 #A61261;
  right: -192px;
  list-style: none outside none;
  margin: 0;
  padding: 5px 0;
  position: absolute;
  top: -5px;
  visibility: hidden;
  z-index: 9999999;
}
#main_menu > ul.menu-top > li > ul > li > ul > li {

}
#main_menu > ul.menu-top > li > ul > li > ul > li:hover,
#main_menu > ul.menu-top > li > ul > li > ul > li.menu-current,
#main_menu > ul.menu-top > li > ul > li > ul > li.menu-parent {

}
#main_menu > ul.menu-top > li > ul > li > ul > li.menu-current > a {

}
#main_menu > ul.menu-top > li > ul > li > ul > li > a {
  font-size: 14px;
  font-weight: 300;
  display: block;
  line-height: 30px;
  padding: 0 16px;
  color: #ffffff;
  min-width: 125px;
  text-decoration: none;
  min-width: 160px;
  text-decoration: none;
}
#main_menu > ul.menu-top > li > ul > li > ul > li > a:hover {
  color: #ffffff;
  background: #b5116d;
}

/* Content Styles */
#content {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: relative;  
}
#content_top_wrap {
  width: 100%;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
#content_top {
  width: 1140px;
  margin: 0 auto;
}
#content_bottom_wrap {
  background: #F6F5F2;
  border-top: 1px solid #DAD8D3;
  border-bottom: 1px solid #DAD8D3;
  width: 100%;
  height: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}
#content_bottom {
  width: 1140px;
  height: 400px;
  margin: 0 auto;
}
.content_left {
  width: 530px;
  float: left;
  padding-right: 78px;
}
.content_right {
  width: 530px;
  float: left;
}

/* Google Map Container */
#google_map_container {
  min-width: 1140px;
  max-width: 1600px;
  height: 365px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  -moz-box-shadow: inset 0 0 5px 1px #DBDAD7;
  -webkit-box-shadow: inset 0 0 5px 1px #DBDAD7;
  box-shadow: inset 0 0 5px 1px #DBDAD7;
}
#gmapsInfoWindow {
  min-width: 320px;
  min-height: 140px;
}
#gmapsInfoWindow * {
  color: #fffefe;
  font-size: 14px;
  font-weight: 400;
  text-shadow: 1px 1px 1px #3d3d3d;
}
#gmapsInfoWindow a {
  text-decoration: underline;
}
#gmapsInfoWindow a:hover {
  text-decoration: none;
}
#gmapsInfoWindow p {
  padding-left: 30px;
  line-height: 28px;
}
#gmapsInfoWindow p.title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  padding-left: 0;
}
#gmapsInfoWindow p.street {
  background: url("../images/icon_street.png") no-repeat scroll 10px 5px transparent;
}
#gmapsInfoWindow p.address {
  background: none;
}
#gmapsInfoWindow p.phone {
  background: url("../images/icon_phone.png") no-repeat scroll 5px 5px transparent;
}
#gmapsInfoWindow p.email {
  background: url("../images/icon_email.png") no-repeat scroll 5px 11px transparent;
}
#gmapsInfoWindow p.social_media {
  line-height: 10px;
  margin-top: 10px;
  margin-left: 5px;
  padding: 0;
}
#gmapsInfoWindow span {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-right: 10px;
}
#gmapsInfoWindow span a {
  width: 30px;
  height: 30px;
  display: block;
}
#gmapsInfoWindow span.facebook {
  background: url("../images/social_facebook.png") no-repeat;
}
#gmapsInfoWindow span.twitter {
  background: url("../images/social_twitter.png") no-repeat;
}
#gmapsInfoWindow span.linkedin {
  background: url("../images/social_linkedin.png") no-repeat;
}
.gmnoprint {
  display: none;
}

/* FOOTER STYLE */
#footer {
  width: 100%;
  height: 65px;
  margin: 0;
  padding: 0;
}
#footer_container {
  width: 1140px;
  height: 100%;
  margin: 0 auto;
}

/* Footer copyright client */
#footer_copyright_client {
  float: left;
  text-align: left;
  padding-top: 15px;
}
#footer_copyright_client p {
  color: #403e42;
  font-size: 14px;
  font-weight: 300;
  margin: 0;
  padding: 0;
  line-height: 35px;
}
#footer_copyright_client span {
  color: #403e42;
  font-size: 14px;
  font-weight: 600;
}

/* Footer copyright ionline */
#footer_copyright_ionline {
  float: right;
  text-align: right;
  padding-top: 15px;
}
#footer_copyright_ionline p {
  color: #403E42;
  font-size: 14px;
  margin: 0;
  padding: 0;
  line-height: 35px;
}
#footer_copyright_ionline a {
  color: #403E42;
  font-size: 14px;
  text-decoration: none;
}
#footer_copyright_ionline a:hover {
  color: #a61261;
  text-decoration: none;
}