/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Non-semantic
04 Navbar
05 Single-Page Sections
06 Footer
07 Bootstrap Carousel
08 Buttons
09 Media queries 
===========================
*/

/* ---------------------------------------------------------------------------------------------------------- 
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

div, article, section, header, footer, nav, li {
	position:relative;
}

.group:after {
	display:block;
	height:0;
	clear:both;
	content:".";
	visibility:hidden; /* For clearing */
}
body {
	background:#fefefe;
	color: #312A1E;
	font-size: 100%;
	font-family: Cambria, Georgia, serif;
}
::-moz-selection {
background:#cd1f42;
color:#fff;
}

::selection {
background:#cd1f42;
color:#fff;
}

/*---------- FORMS ----------*/

input[type=text],input[type=password], input[type=submit], textarea {
	width: 100%;
	padding: 0.5em;
	font-size: 0.8em;
	margin-bottom: 1.5em;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

input, button, select, textarea {
	font-family: Cambria, Georgia, serif;
}

input {
    outline: 0;
}

/* ---------------------------------------------------------------------------------------------------------- 
02 Typography -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/*

14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		0.875em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.5em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)

*/

p {
	font-size: 1em; /* 16px */
	line-height: 1.5; /* 24px */
	margin: 0 0 1.5em 0;
}

label {
	font-size: 1em; /* 16px */
	line-height: 1.5; /* 24px */
	margin: 0 0 0.5em 0;
}

ul, ol {
	font-size: 1em; /* 16px */
	line-height: 1.5; /* 24px */
}

article > a:link, a:visited {
	color: #FFF;
}

a:hover, a:active {
	color: #D74C68;
	text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: normal; /* reset default browser weight for our webfonts */
	font-family: Cambria, Georgia, serif;
}
h1 {
	font-size: 1.5em; /* 24px */
	line-height: 1; /* 24px */
	margin-top: 1.42em;
	margin-bottom: 0em;
}
h2 {
	font-size: 1.3125em; /* 21px */
	line-height: 1.1429; /* 24px */
	margin-top: 1.1429em;
	margin-bottom: 0em;
}
h3 {
	font-size: 1.25em; /* 18px */
	line-height: 1.3333; /* 24px */
	margin-top: 1.3333em;
	margin-bottom: 1em;
}
h4 {
	font-size: 1em; /* 16px */
	line-height: 1.5; /* 24px */
	margin-top: 1.5em;
	margin-bottom: 0em;
}
h5 {
	font-size: 1em; /* 14px */
	line-height: 1.7143; /* 24px */
	margin-top: 1.7143em;
	margin-bottom: 0em;
}
strong {
	font-weight:normal;
	font-family: Cambria, Georgia, serif;
}
small {
	font-size: 0.75em; /* 12px */
	line-height: 2; /* 24px */
	margin-top: 2em;
	margin-bottom: 0em;
}
em {
	font-style: normal;
	font-family: Cambria, Georgia, serif;
	/*font-family: 'Open Sans';*/
}
.muted {
	color: #A5A5A2;
	font-family: Cambria, Georgia, serif;
}
.impressed {
	text-shadow:
 -1px -1px 0 rgba(0, 0, 0, 0.5), /* shadow */  1px 1px 0 rgba(255, 255, 255, 0.9); /* highlight */
}
.more-link {
	font-size: .875em; /* 14px */
	margin-top: 1.5em;
	font-weight:bold;
	font-family: Cambria, Georgia, serif;
}
.more-link:link, .more-link:visited {
	color: #cd1f42;
	text-transform: uppercase;
}
/* ---------------------------------------------------------------------------------------------------------- 
03 Non-semantic ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/* New Image Replacement Hack */

.hide-text {
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	font-size: 1em;
}
.alignright {
	text-align: right;
}
.alignleft {
	text-align: left;
}
.aligncenter {
	text-align: center;
}
.medium {
	font-weight: normal;
	font-family: Cambria, Georgia, serif;
}
/* ---------------------------------------------------------------------------------------------------------- 
04 Navbar ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

/*** MAIN MENU - ESSENTIAL STYLE 5-Mar-2015***/

/* Iconfont made with icomoon.com */

ul li ul {
  padding: 0;
  position: absolute;
  left: 0;
  width: 90px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}

ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
  color: #cd1f42;
  background: #fefefe;
  font-family: Cambria, Georgia, serif;
  font-weight: normal;
  font-size: 1.25em;
  left: 0px;
  top: 70px;
  padding: 35px 0px 22px 15px;
  z-index: 99;
  -webkit-box-shadow:  2px 3px 2px 0px rgba(00, 00, 00, .3);
  box-shadow:  2px 3px 2px 0px rgba(00, 00, 00, .3);
}

ul li ul li { 
  background: #fefefe; 
  display: block; 
  color: #cd1f42;
}

ul li:hover  {
  background: #fefefe;
  color: #cd1f42;
}

/* END Iconfont made with icomoon.com */





ul li ul {
  padding: 0;
  position: absolute;
  left: 0;
  width: 90px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transiton: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -transition: opacity 0.2s;
}


ul li:hover ul {
  display: block;
  opacity: 1;
  visibility: visible;
  color: #cd1f42;
  background: #fefefe;
  left: 0px;
  top: 50px;
  z-index: 95;

}

ul li ul li { 
  background: #fefefe; 
  display: block; 
  color: #cd1f42; 
  padding: 35px 15px 35px 15px; 
}

ul li:hover  {
  background: #fefefe;
  color: #cd1f42;
}


/*** END MAIN MENU - ESSENTIAL STYLE 5-Mar-2015***/


/*** MAIN MENU - ESSENTIAL STYLES ***/

ul#menu-main  ul {
	display: none;
}

	ul#menu-main  li.lng:hover > ul {
		display: block;
		margin: 35px 0px;
		width: 115px;
	}

ul#menu-main  {
	font-family: Cambria, Georgia, serif;
	font-weight: normal;
	border-radius: 10px;  
	list-style: none;	
	display: inline-table;
	
}
	ul#menu-main :after {
		content: ""; clear: both; display: block;
	}
ul#menu-main  li:hover {
		background: #fefefe;
		
	}
		ul#menu-main  li:hover a {
			color: #cd1f42;
		
			
		}
	
	ul#menu-main > li > a {
		display: block; 
		padding: 35px 15px 35px 15px;
		color: #f1f1f1; 
	  font-family: Cambria, Georgia, serif;
  font-weight: normal;
  font-size: 1.25em;
	}
	
	ul#menu-main  ul {
	background: #fefefe; 
	border-radius: 0px; 
	padding: 0;
	font-size: 1em;
	/*padding-right: 22px;
	padding-bottom: -10px;*/
				
}
	
		ul#menu-main  ul li a {
			color: #fff;
			font-family: Cambria, Georgia, serif;
            font-weight: normal;
            font-size: 1.25em;
			
		}	
			ul#menu-main  ul li a:hover {
				text-decoration: underline;
			}
			
			ul#menu-main  ul li.lng a:after {
		content: ""; clear: both; display: block;
	}
	
	ul#menu-main  li.lng > a  {
		width: 100px;
		padding: 35px 0px 35px 15px;
		margin: 0px;
	}

/*** END MAIN MENU - ESSENTIAL STYLES ***/ 

.navbar .brand {
	margin-left:0;
	padding: 0;
	margin-top: 1.05em;
}

.navbar-inverse .navbar-inner {
	background-repeat: repeat;
	background-color: #cd1f42;
	border-color: #A41935;
	border-bottom-width:2px;
}
.navbar-wrapper {
	overflow:hidden;/* No fixed height, will break collapsible nav */
}

.navbar-inverse .brand, .navbar-inverse .nav > li > a {
	text-shadow: none;
}

/* ---------------------------------------------------------------------------------------------------------- 
05 Single-Page Sections ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
#headerwrap {
	width: 78%;
	background: #fefefe;
	/*background: #f3f3f3;*/
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	min-height: 250px;
	padding-top:14px;
	text-align:center;
}
#headerwrap h1 {
	color: #312A1E;
	font-family: Cambria, Georgia, serif;
	font-size: 4em;
	font-weight: 400;
	margin: 0.875em 0;
}
#headerwrap h2 {
	color: #312A1E;
	font-family: Cambria, Georgia, serif;
	font-size: 2em;
	font-weight: normal;
	margin: 0.5em 0;
	text-shadow: 1px 1px 1px #333333;
}

#headerwrap h3 {
	color: #3b393c;
	font-family: Cambria, Georgia, serif;
	font-size: 1.9em;
	font-weight: normal;
	margin: 5px;
	text-align:center;
}

#headerwrap h1 span {
	color:#cd1f42;
}

#headerwrap input[type=text],input[type=password] {
	background: #f9f9f9;
	font-family: Cambria, Georgia, serif;
    font-size: 1.125em;
	border-top: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);
	text-align: center;
	padding-bottom: 10px;
	vertical-align: middle;
	margin-bottom:0 !important;
	height: 2.7em;
	width:100%;
	margin:10px;
	
}

#headerwrap input[type=text]:focus, #headerwrap input[type=password]:focus {
	background: #f9f9f9;
	color: #3b393c;
	transition: background 0.25 ease-in;
	-moz-transition: background 0.25 ease-in;
	-webkit-transition: background 0.25 ease-in;
	outline: none;
}

#headerwrap input[type=submit] {
	font-family: Cambria, Georgia, serif;
	color: #fff;
	width: 100%;
	height: 2.7em;
	font-size: 1.125em; 
	padding:0.5em;
	letter-spacing: 0.05em;
	margin: 10px;
	border: 0;
	text-transform: none;
	background: #cd1f42 !important;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

#headerwrap input[type=submit]:hover, #headerwrap input[type=submit]:active {
	background: #A41935 !important;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);
	border: 1px solid #d7d7d7; /*#312A1E*/
	color: #fefefe;
}

/*========== Social Icons ==========*/

ul.icon {
	font-size:54px;
	margin:0.875em 0 0.5em 0;
}

ul.icon li {
	display:inline-block;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

ul.icon li:hover {
	opacity:0.7;
}

section.single-page {
	padding: 1.5em 0; /* 76px */
}
section.single-page h1 {
	text-align: center;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	/*font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Patua One', cursive;*/
	margin-bottom: 2em; /* 72px */
	font-size: 2.25em; /* 36px */
}

#feature {
	background: url("../img/yellow.png") repeat-x 0 0;
	height: 406px;
	z-index: 500;
	box-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
	-webkit-box-shadow: 0 5px 16px rgba(0, 0, 0, 0.3);
}
#feature article {
	text-align: center;
	margin-top: 120px;
	max-width: 1170px;
}
#feature-headline {
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	/*font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Patua One', cursive;*/
	text-transform: uppercase;
	color: rgba(228, 229, 229, 1);
	margin-bottom: 3%; /* 39px */
	margin-top: -.25em;
	height: 109px;
	background-size: 100% auto;
}
#feature-headline span {
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	/*font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Patua One', cursive;*/
	text-transform: lowercase;
}
#feature article p {
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	/*font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Patua One', cursive;*/
	font-size: 40px;
	margin-bottom: 0;
	line-height: 1.35;
	color: #fff;
}

/* News */

section#news {
	background:#fefefe;
	/*background:#fafafa;*/
	/*background: url("../img/grey-cardboard-bg.png") repeat 0 0;*/
}

#news h1 {
	font-size: 3em;
	margin-bottom: 1em;
	margin-top: 0.05em;
}
#news h2 {
	font-size: 21px;
	margin-top: 24px;
	margin-bottom: 16px;
	color: #312A1E;
	clear: right;
}

section#news .align {
	font-size: 6em;
	text-align: center;
}
article.post {
	background: none repeat scroll 0 0 rgba(255, 255, 255, 0.7);
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
article .inside {
	margin: 18px 24px 24px;
	padding-top: 1em;
	/*background: url("../img/dot-row-2.png") repeat-x scroll 0 0 transparent !important;*/
}

.support {
	background: #cd1f42;
	padding: 5px;
	color: #fff;
	font-size: 1em;
	text-align: center;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.post-date {
	color: #A5A5A2;
	float: right;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	font-size: 14px;
	font-style: normal;
	line-height: 2;
	margin-right: 15px;
	margin-bottom: 10px;
	margin-top: 10px;
}

.simms-version {
	color: #A5A5A2;
	float: center;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	font-size: 12px;
	font-style: normal;
	line-height: 2;
	margin-top: 2px;
}

.simms-support {
	float: center;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	font-size: 16px;
	font-style: normal;
	line-height: 2;
	margin: 2px;
}

.simms-support a {
	color: #D23555;
}

.simms-support a:link, a:visited {
	color: #D23555;
}

.simms-support a:hover, a:active {
	color: #D23555;
	text-decoration: underline;
}

/* Promotions */

section#promotions {
	padding-top: 6.75em;
	background:#fafafa;
}
section#promotions h1 {
	font-size: 3em;
	margin-bottom: 1em;
	margin-top: 0.5em;
}
section#promotions hgroup h2 {
	margin-top: 1em;
	text-transform: capitalize;
}
section#promotions hgroup h3 {
	margin-top:  .35em;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Patua One', cursive;*/
}
section#promotions .entry-content {
	margin: 0.875em 0 2.5em;
}
section#promotions .align {
	text-align:center;
	margin-top:10px;
	font-size:6em;
}


/* promotions Image Hover */

.mask2 img {
	margin: 0 auto;
	max-width: 100%;
	display: block;
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	filter: alpha(opacity=95);
	opacity: 0.9;
	box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.mask2 img:hover {
	-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=99)";
	filter: alpha(opacity=99);
	opacity: 1;
}

/* Contact */

#contact {
	padding-bottom: 0;
	padding-top: 6.75em;
}

#contact h1 {
	font-size: 3em;
	margin-bottom: 1em;
	margin-top: 0.5em;
}

section#contact {
	color: #e312A1E;
	/*color: #e4e5e2;*/	
	background: #fefefe;
	/*background: url("../img/grey-cardboard-bg.png") repeat 0 0;*/
}

section#contact h2 {
	font-size: 22px;
	margin-bottom: 15px;
	margin-top: 10px;
	text-align:center;
}

section#contact p {
	margin:10px;
	text-align:center;
}

section#contact .align {
	text-align:center;
	margin-top:10px;
	font-size: 6em;
}
section#contact .align .sev_icon {
	text-align:center;
	margin:10px 0 20px 0;
	font-size: 0.6em;
	color:#cd1f42;
}

section#contact .span4 {
	/*background:#d6415f;*/
	background:#fafafa;
	padding: 60px 0px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
section#contact .span4:hover {
	/*background:#cd1f42;*/
	background:#f1f1f1;
	box-shadow: 1px 1px 6px #C1BAC1;
}

#contact input[type=text] {
	background: #f9f9f9;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/font-size: 1.125em;
	border-top: 3px solid rgba(0, 0, 0, 0.1);
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.7);
	text-align: center;
	padding-bottom: 5px;
	vertical-align: middle;
	margin-bottom:0 !important;
	height: 4.6em;
	width:40%;
	margin: 11px;
	text-align:center;
}

#contact input[type=text]:focus {
	background: #f9f9f9;
	color: #3b393c;
	transition: background 0.25 ease-in;
	-moz-transition: background 0.25 ease-in;
	-webkit-transition: background 0.25 ease-in;
}

#contact input[type=submit] {
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
   /*font-family: 'Patua One', cursive;*/
	color: #fff;
	width: 65%;
	height: 1.7em;
	font-size: 1.125em; /* 21px */
	padding:0.1em;
	letter-spacing: 0.05em;
	margin: 0px 15px;
	border: 0;
	display:inline;
	text-transform: none;
	background: #cd1f42 !important;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}
#contact input[type=submit]:hover, #headerwrap input[type=submit]:active {
	/*background: #d6415f !important;*/
	background: #312A1E !important;
}

/* Subscription Form */

section#contact .span4 form {
	text-align: center;
	
}

.mc-field-group {
display: inline-block;
vertical-align: middle;
margin: 0px 10px;
}

section#contact .span4 .emailform input{
	max-width: 70%;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
}

/* Other Form */

#theme-form {
	position: relative;
	z-index: 999;
}
#theme-form input[type=text], .cform-form textarea {
	background: #fefefe;;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/border: 0;
	text-align: left;
	vertical-align: middle;
}
#theme-form input[type=text]:focus, .cform-form textarea:focus {
	background: #fff;
	color: #333;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	transition: background 0.25 ease-in;
	-moz-transition: background 0.25 ease-in;
	-webkit-transition: background 0.25 ease-in;
	outline: 0; /*POLINA 2015.01.30*/
}
#theme-form input[type=text] {
	height: 3.25em;
}
#theme-form input[type=submit] {
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Patua One', cursive;*/
	color: #fff;
	width: 185px;
	height: 60px;
	text-shadow: none;
	font-size: 1.3125em; /* 21px */
	padding:0.5em;
	letter-spacing: 0.05em;
	margin: 0 0 20px 0;
	display: block;
	border: 0;
	text-transform: none;
	background: #cd1f42 !important;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
#theme-form input[type=submit]:hover, #theme-form input[type=submit]:active {
	background: #43413e !important;
}
#theme-form textarea {
	padding-top: 1em;
}
div.cform-response-output {
	max-width: 60%;
	text-align: center;
	margin-left: 40% !important;
	margin-top: 0.5em !important;
	padding: 0.5em !important;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
.cform-not-valid-tip {
	color: #888;
	border: 1px dotted #ad3729 !important;
	width: 100% !important;
	left: 0 !important;
	padding: 0.5em !important;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}


/* Map */

#map {
	padding-bottom: 0;
	padding-top: 0.5em;
}

section#map {	
	background: #fff;
	/*background: url("../img/grey-cardboard-bg.png") repeat 0 0;*/
}


/* Featurettes */

hr.featurette-divider {
	margin: 7em 0;
	border-width: 0;
	height: 90px;
	background: #cd1f42;
	/*background: url("../img/dot-row-3-lt.png") repeat-x;*/
}

/* ---------------------------------------------------------------------------------------------------------- 
06 Footer ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

#footer-wrapper {
	margin-top: 20px;
	background: #fafafa;
}
footer {
	text-align: center;
	color: #1a1a1a;
	font-weight: bold;
	margin: 20px;

}

footer p {
	margin-top: -130px;
}
/* ---------------------------------------------------------------------------------------------------------- 
07 Bootstrap Carousel ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
    
    .carousel-caption {
	background-color: transparent;
	position: static;
	max-width: 550px;
	padding: 0 20px;
	margin-top: 200px;
	position:absolute;
}
.carousel-caption h1,  .carousel-caption .lead {
	margin: 0;
	line-height: 1.25;
	color: #fff;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
}
.carousel-caption .btn {
	margin-top: 10px;
}
.carousel-control {
	height: 50px;
	top: 46%;
	margin-top: 0;
	font-size: 6.5em;
	text-shadow: 0 1px 1px rgba(0, 0, 0, .4);
	background-color: transparent;
	border: 0;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	opacity: 0.4;
	border-radius: 0;
}
.carousel-control:link, .carousel-control:visited {
	color: #262626;
}
/* Banner Carousel  */    
    #banner.carousel {
	margin-top: 4.75em;
	margin-bottom: 0;
	margin-top: 0;
	max-height: 642px;
}
.banner-caption {
	/*	width: 18%; */
    	position: absolute;
	left: 20%;
	top: 10%;
	color: #007ac3;
}
#intro-caption {
	margin-top:150px;
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	text-align: center;
	font-size: 80px;
	line-height: 90px;
	color:#fff;
	font-weight:bold;
	text-shadow: 2px 2px 2px #000;
}
#intro-caption span {
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
	font-size: 0.65em;
}
#banner.carousel .item {
}
#banner.carousel img {
}
#banner.carousel .carousel-control {
}
/* ---------------------------------------------------------------------------------------------------------- 
08 Buttons ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */    

.btn {
	font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/
/*font-family: 'Patua One', cursive;*/
	color: #fff;
	width: 40%;
	height: 10px;
	text-shadow: none;
	font-size: 1.125em; /* 21px */
	padding: 0.875em 0.6em;
	letter-spacing: 0.05em;
	margin: 1.5em 0em 0.05em 0.05em;
	display: inline;
	border: 0;
	text-transform: none;
	background: #cd1f42 !important;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}

.btn:link, .btn:visited {
	color: #fff;
}
.btn:hover {
	background: #dd4466 !important;
	/*background: #312A1E !important;*/
}
.navbar-inverse .btn-navbar {
	width: auto;
	height: auto;
}

/* ---------------------------------------------------------------------------------------------------------- 
09 Media queries --------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */


/* RESPONSIVE 
-------------------------------------------------- */

  @media (max-width: 1186px) {
 .banner-caption {
	    	/*	width: 18%; */
 position: absolute;
 left: 20%;
 top: 6%;
 color: #007ac3;
}
 #intro-caption {
 font-family: Cambria, Georgia, serif;
/*font-family: 'Open Sans', sans-serif;*/

 text-align: center;
 font-size: 60px;
 line-height: 70px;
}
 .banner-caption p {
 font-size: 1em;
}
}
 @media (max-width: 979px) {
 .navbar-fixed-top {
 margin-bottom: 0;
}
 .navbar .container {
 width: 100%;
}
 .navbar .brand {
 margin-top: 20px;
}
 .navbar .btn-navbar {
 margin-top: 30px;   /*POLINA 2014.08.27*/
 margin-right: 30px;/*POLINA 2014.08.27*/
}
 .navbar-fixed-top .navbar-inner {
 padding: 0px;
}
 .featurette {
 height: auto;
 padding: 0;
}
 .featurette-image.pull-left,  .featurette-image.pull-right {
 display: block;
 float: none;
 max-width: 40%;
 margin: 0 auto 20px;
}

}
 @media (min-width: 768px) and (max-width: 979px) {
 
/*POLINA 2014.08.27*/


#contact input[type=submit] {
 margin:0;  
 width: 92%;      
}

#contact input[type=email] {
margin-left: 0px; 
width: 85%;      
}
/*END POLINA 2014.08.27*/
}

@media (min-width: 1501px) {
    #logotd {
        float:right;
        margin-right: 703px;
    }

    #newsTable{
        width:1000px;
    }

    .span3{
        width:450px !important;
    }

    #headerwrap{
        margin-left:40px;
    }
}

.entry-content {
	min-height: 200px;
}

/*POLINA 2014.08.27*/
 @media (min-width: 980px) and (max-width: 1200px) {
    #contact input[type=submit] {
     margin-top:0;  
     width: 77%;      
    }
}
/*END POLINA 2014.08.27*/

 @media (max-width: 767px) 
 {
     /*POLINA 2014.08.27*/
.entry-content {
	margin-bottom: 1.5em;
	margin-left: 1.5em;
}

.inside h2 {
	margin-bottom: 0.5em;
	margin-left: 1.2em;
}

article .entry-content {
	padding-bottom: 1.5em;
	margin-left: 1.5em;
}

article .inside h2 {
	margin-bottom: 0.5em;
	margin-left: 0;
}

.span6 {
	margin-left: 5px;
	margin-right: 5px;
}

/*END POLINA 2014.08.27*/

 .container {
 padding-right: 5px;
 padding-left: 5px;
}

 .navbar .container {
 width: 100%;
}
 .navbar-fixed-top,  .navbar-fixed-bottom,  .navbar-static-top {
 margin-right: 0px;
 margin-left: 0px;
 margin-bottom:0px;
 padding-bottom:0px;
}

 .navbar-inner {
 margin: 0;
}
 

 .featurette-heading {
 font-size: 30px;
}
 .featurette .lead {
 font-size: 18px;
 line-height: 1.5;
}

.flexslider{
	display:none;
}


/*POLINA 2014.08.27*/
#contact input[type=submit] {
 margin-top:0; 
 margin-left:35px; 
 width: 68%;      
}

#contact input[type=email] {
padding: 5px 5px;
margin-left: 20px;
width: 65%;      
}

#headerwrap {
 margin-top: 0;
 padding-top: 0;
}

/*END POLINA 2014.08.27*/

}
    
    /* Smaller screens ----------- */
	@media (max-width : 480px) {
 #headerwrap {
 padding-top:0;
}
 #headerwrap h1 {
 font-size:2em;
}
 #headerwrap h2 {
 font-size:1em;
}
 #headerwrap input[type="text"] {
 width: 80%;
}
 #headerwrap input[type="password"] {
 width: 80%;
}
 #headerwrap input[type="submit"] {
 margin-top:0.5em;  /*POLINA 2014.08.27*/
 /*width: 135px;*/ /*POLINA 2014.08.27*/
 width: 80%;      /*POLINA 2014.08.27*/
}
 .container {
1px solid yellow;
}


 #feature article p {
 font-family: Cambria, Georgia, serif;
 font-size: 26px; 
 margin-bottom: 0;
 line-height: 30px;
 color: #fff;
}

 #navbar-inner {
 margin:	0;
/* background-color: #fefefe;*/ /*POLINA 2014.08.27*/
   background-color: #cd1f42;   /*POLINA 2014.08.27*/
}

/*POLINA 2014.08.27*/
.entry-content {
	margin-bottom: 1em;
	margin-left: 1em;
}

.inside h2 {
	margin-bottom: 0.5em;
	margin-left: 1em;
}

article .entry-content {
	padding-bottom: 1.5em;
	margin-left: 1.5em;
}

article .inside h2 {
	margin-bottom: 0.5em;
	margin-left: 0;
}

.span6 {
	margin-left: 5px;
	margin-right: 5px;
}

/*END POLINA 2014.08.27*/

}
    
    /* Smartphones (portrait and landscape) ----------- */
	@media only screen  and (min-device-width : 320px)  and (max-device-width : 480px) {
 
 .nav .nav-collapse {
  display: block;
 }
  .container a img {
 margin: 0;
 padding: 0; 
}

 #feature-headline {
 background: transparent;
 text-indent: 0;
 overflow: visible;
 margin-top: 1.5em;
}
 #navbar-inner {
 margin:	0;
}
 #banner { /*display: none;*/
}
 section.single-page {
 padding: 0.875em 0;
}
		
		/* Feature */
		#feature-badge {
/*	display: none; */
		}
		
		/* promotions & News */
		
#news h1 {
 background: transparent;
}
 #news h1 span {
 background: transparent;
 padding: 0;
}
 #promotions .container {
 top: 0 !important;
}
 #feature article p {
 font-family: Cambria, Georgia, serif;
 font-size: 26px;
 margin-bottom: 0;
 line-height: 30px;
 color: #fff;
}
 .img-news {
 width: 100%;
}
 .img-news {
 margin-right: auto;
 margin-left: auto;
 display: block;
}
 section#promotions hgroup h2 {
 margin-top: 1.5em;
}

	
		/* Services */
		
		#contact h1 {
 background: transparent;
}
 #contact h1 span {
 background: transparent;
 padding: 0;
}
 section#contact h2 {
 margin-bottom: 0.25em;
}
 section#contact h2, section#contact ul {
 text-align: center;
}
		
		
		/* Contact Form */

		#theme-form {
 overflow: hidden;
}
 #theme-form input[type=submit] {
 width: 100%;
}
}

	/* Smartphones (landscape) ----------- */
	@media only screen  and (min-width : 321px) {
 #feature-headline {
 font-size: 32px; 
}


}
	
	/* Smartphones (portrait) ----------- */
	@media only screen  and (max-width : 320px) {
 #feature-headline {
 font-size: 1.1875em; 
}
 #feature article p {
 font-family: Cambria, Georgia, serif;
 font-size: 26px;
 margin-bottom: 0;
 line-height: 30px;
 color: #fff;
}

}
	
	/* iPads (portrait and landscape) ----------- */
	@media only screen  and (min-device-width : 768px)  and (max-device-width : 1024px) {
 .banner-caption p {
 font-size: 0.6em;
}
 #intro-caption {
 font-size: 4em;
}
}
	
	/* iPads (landscape) ----------- */
	@media only screen  and (min-device-width : 768px)  and (max-device-width : 1024px)  and (orientation : landscape) {
/* Styles */
	}
	
	/* iPads (portrait) ----------- */
	@media only screen  and (min-device-width : 768px)  and (max-device-width : 1024px)  and (orientation : portrait) {
/* Styles */
	}
	
	/* Desktops and laptops ----------- */
	@media only screen  and (min-width : 1224px) {
/* Styles */
	}

/* Styles */
	}

