* {
	margin: 0;
	padding: 0;
	border: 0;
}

html, body {
	height: 100%;
	background: #fff;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em;
	color: #333;
}

h1, h2, h3, h4 {
	font-family: 'Raleway', sans-serif;
	margin: 10px 0;
	line-height: 1.2em;
}

h1 {
	font-size: 1.8em;
}

h1 i {
	color: #ee2e24;
	font-size: 1.2em;
}

h2 {
	font-size: 1.6em;
}

h3 {
	font-size: 1.4em;
}

h4 {
	font-size: 1.2em;
}

strong {
	font-weight: 600;
}

p {
	line-height: 2;
	margin: 15px 0;
}

.content a:link,
.content a:visited {
	color: #000;
}

.content a:hover,
.content a:active {
	color: #ee2e24;
}


ul, ol {
	margin: 15px 0;
	overflow: hidden;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li {
	margin: 10px 0 10px 35px;
	line-height: 1.5em;
}

hr {
	width: 100%;
	margin: 15px 0;
	border-top: 1px solid #f1f1f1;
	clear: both;
}

.error,
.required_field {
	color: #ee2e24;
}

.required_flt {
	float: right;
	margin: 5px 80px 0 0;
}

input[type=text],
input[type=email] {
	border: 1px solid #e1e1e1;
	padding: 15px;
	color: #333;
	font-family: 'Open Sans', sans-serif;
	margin: 10px 0;
	display: block;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	width: 300px;
	font-size: 1em;
}

textarea {
	border: 1px solid #e1e1e1;
	padding: 15px;
	color: #333;
	font-family: 'Open Sans', sans-serif;
	margin: 10px 0;
	display: block;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	width: 300px;
	height: 150px;
	font-size: 1em;
}

select {
	border: 1px solid #e1e1e1;
	padding: 15px;
	color: #333;
	font-family: 'Open Sans', sans-serif;
	margin: 10px 0;
	display: block;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	width: 300px;
	font-size: 1em;
}

button {
	display: inline-block;
	text-decoration: none;
	padding: 10px 20px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em; 
	margin: 10px 0;
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	-webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
	transition: background 500ms ease;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #ededed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#ededed 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
	cursor: pointer;
}


button:hover {
	-webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
	transition: background 500ms ease;
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #ededed 1%, #ffffff 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ededed), color-stop(99%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* IE10+ */
	background: linear-gradient(to bottom,  #ededed 1%,#ffffff 99%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

input[type=submit] {
	display: inline-block;
	text-decoration: none;
	padding: 10px 20px;
	font-family: 'Open Sans', sans-serif;
	font-size: 1em; 
	margin: 10px 0;
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	-webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
	transition: background 500ms ease;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #ededed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#ededed 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
	cursor: pointer;
}


input[type=submit]:hover {
	-webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
	transition: background 500ms ease;
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #ededed 1%, #ffffff 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ededed), color-stop(99%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* IE10+ */
	background: linear-gradient(to bottom,  #ededed 1%,#ffffff 99%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

a.white_btn {
	display: inline-block;
	text-decoration: none;
	padding: 10px 20px;
	margin: 10px 0;
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	-webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
	transition: background 500ms ease;
	background: #ffffff; /* Old browsers */
	background: -moz-linear-gradient(top,  #ffffff 0%, #ededed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ffffff 0%,#ededed 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ffffff 0%,#ededed 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
}

a.white_btn:hover {
	display: inline-block;
	text-decoration: none;
	padding: 10px 20px;
	margin: 10px 0;
	-webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	-webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
	transition: background 500ms ease;
	background: #ededed; /* Old browsers */
	background: -moz-linear-gradient(top,  #ededed 1%, #ffffff 99%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(1%,#ededed), color-stop(99%,#ffffff)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ededed 1%,#ffffff 99%); /* IE10+ */
	background: linear-gradient(to bottom,  #ededed 1%,#ffffff 99%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

dl {
	width: 95%;
	margin: 25px auto;
}

dt {
	font-weight: bold;
	margin: 20px 0;
	cursor: pointer;
	line-height: 1.5em;
}

dt i {
	color: #ee2e24;
}

dd {
	margin: 10px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px solid #f1f1f1;
	display: none;
}

#open_facts:hover,
#close_facts:hover {
	cursor: pointer;
	color: #ee2e24;
}

.wrap {
	width: 95%;
	margin: 0 auto;
}

img.left {
	display: block;
	margin: 0 10px 10px 0;
	float: none;
}

img.right {
	display: block;
	margin: 0 0 10px 10px;
	float: none;
}

.flt_left {
	float:left;
	width: 45%;
}

.flt_right {
	float: right;
	width: 45%;
}

.image_wrap.full {
	width: 100%;
	height: auto;
	display: block;
	margin: 15px 0;
}

.image_wrap.full img {
	width: 100%;
	height: auto;
}

.wrapper {
	min-height: 100%;
	margin: 0 auto -100px;
}

.top_bar {
	width: 100%;
	background: #f9f9f9;
	height: 30px;
}

ul.top_bar_left {
	list-style: none;
	float: left;
	margin: 0;
}

ul.top_bar_right {
	list-style: none;
	float: right;
	margin: 0;
}

ul.top_bar_left li {
	float: left;
	margin: 8px 0 0 0;
	padding: 0px 5px 0 5px;
	border-right: 1px solid #d1d1d1; 
	font-size: .8em;
	line-height: 1;
}

ul.top_bar_left li.last-item {
	border-right: none;
}

ul.top_bar_right li {
	float: left;
	margin: 8px 0 0 0;
	padding: 0px 5px 0 5px;
	font-size: .8em;
	line-height: 1;
}

.top_bar a:link,
.top_bar a:visited {
	text-decoration: none;
	color: #333;
	-webkit-transition: color 500ms ease;
	-moz-transition: color 500ms ease;
	-ms-transition: color 500ms ease;
	-o-transition: color 500ms ease;
	transition: color 500ms ease;
}

.top_bar a:active,
.top_bar a:hover {
	color: #000;
	-webkit-transition: color 500ms ease;
	-moz-transition: color 500ms ease;
	-ms-transition: color 500ms ease;
	-o-transition: color 500ms ease;
	transition: color 500ms ease;
}

.fa-facebook-square {
	color: #3b5999;
}

.fa-twitter-square {
	color: #2aa8e0;
}

.fa-linkedin-square {
	color: #017bb6;
}


header {
	/*height: 120px;*/
}

#logo {
	width: 278px;
	height: 30px;
	margin: 20px 0;
	float: left;
}

.search_box {
	float: right;
	height: 38px;
	width: 25%;
	background: #f5f5f5;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	border: 1px solid #f1f1f1;
	margin: 15px 0;
}

.search_box.active {
	-webkit-box-shadow: 0 0 15px 0 #e5e5e5;
	box-shadow: 0 0 15px 0 #e5e5e5;
	border: 1px solid #e1e1e1;	
}

.search_box input {
	float: left;
	width: 67%;
	height: 38px;
	background: none;
	border: none;
	margin: 0 0 0 2%;
	outline: none;
	padding: 0;
}

.search_box button {
	float: right;
	width: 15%;
	height: 38px;
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
	margin: 0;
	-webkit-transition: color 500ms ease;
	-moz-transition: color 500ms ease;
	-ms-transition: color 500ms ease;
	-o-transition: color 500ms ease;
	transition: color 500ms ease;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.search_box button:hover {
	color: #ee2e24;
	-webkit-transition: color 500ms ease;
	-moz-transition: color 500ms ease;
	-ms-transition: color 500ms ease;
	-o-transition: color 500ms ease;
	transition: color 500ms ease;
}

.mobile_nav,
.close_mobile_nav {
	display: none;
}

#lang_break {
	display: none;
}

nav ul {
	margin: 0 auto !important;
	width: 95%;
	height: 70px;
	overflow: visible;
}

nav ul li {
	width: 16.2%;
	float: left;
	list-style: none;
	margin: .2%;
	position: relative;
	line-height: 1;
}

nav a {
	display: block;
	text-align: center;
	padding: 10px 2% 10px 10%;
	width: 65%;
	float: left;
	text-align: left;
	height: 50px;
	-webkit-border-radius: 3px 0 0 3px;
	border-radius: 3px 0 0 3px;
	font-size: 1em;
	text-decoration: none;
	text-shadow: -1px -1px 1px rgba(0,0,0,.3);
	color: #fff;
	webkit-transition: background 500ms ease;
	-moz-transition: background 500ms ease;
	-ms-transition: background 500ms ease;
	-o-transition: background 500ms ease;
	transition: background 500ms ease;
	box-sizing: content-box;
}

nav li i {
	float: left;
	display: block;
	height: 45px;
	width: 20%;
	text-align: center;
	padding: 25px 0 0 0;
	color: #fff;
	font-size: 1.5em;
	-webkit-border-radius: 0 3px 3px 0;
	border-radius: 0 3px 3px 0;
	box-sizing: content-box;
}

nav ul li .submenu {
	padding: 10px 0 0 0;
	display: none;
	position: absolute;
	background: none;
	top: 70px;
	left: 0;
	z-index: 100;
}

nav ul li .submenu_block {
	width: 200px;
	padding: 15px;
	background: #fff;
	border: 1px solid #f1f1f1;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	-webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
	box-shadow: 0 0 10px 0 rgba(0,0,0,.2);
}

nav ul li .submenu_block ul {
	list-style: none;
	height: auto;
}

nav ul li .submenu_block ul li {
	float: none;
	width: 100%;
}

nav ul li .submenu_block ul li a {
	width: 100%;
	padding: 15px 0;
	border-bottom: 1px solid #f1f1f1;
	text-align: left;
	color: #333;
	text-shadow: none;
	float: none;
}

nav ul li .submenu_block ul li a:hover {
	font-weight: 600;
}

.hero {
	width: 95%;
	height: 240px;
	overflow: hidden;
	margin: 20px auto;
	text-align: center;
	position: relative;
}

.hero .left_layout .left {
	width: 31%;
	/* display: block; */
	height: 84%;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	padding: 2%;
	float: left;
	overflow: hidden;
	text-align: left;
	position: absolute;
}

.hero .left_layout .left p {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

.hero .left_layout .left h1,
.hero .left_layout .left h2 {
	color: #fff;
	font-size: 18px;
}

.hero .left_layout .right {
	width: 64%;
	/* height: 240px; */
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	float: right;
	overflow: hidden;
	position: relative;
}

.hero .left_layout .right img {
	vertical-align: middle;
	max-width: 100%;
}

.hero .right_layout .left {
	width: 31%;
	/* display: block; */
	height: 84%;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	padding: 2%;
	float: right;
	overflow: hidden;
	text-align: left;
	position: absolute;
	right: 0;
}

.hero .right_layout .left p {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

.hero .right_layout .left h1,
.hero .right_layout .left h2 {
	color: #fff;
	font-size: 18px;
}

.hero .right_layout .right {
	width: 64%;
	/* height: 240px; */
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	float: left;
	overflow: hidden;
	position: relative;
}

.hero .right_layout .right img {
	vertical-align: middle;
	max-width: 100%;
}

.hero .full_width .left {
	display: none;
}

.hero .full_width .left p {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

.hero .full_width .left h1,
.hero .full_width .left h2 {
	color: #fff;
	font-size: 18px;
}

.hero .full_width .right {
	width: 100%;
	/* height: 240px; */
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	float: left;
	overflow: hidden;
	position: relative;
}

.hero .full_width .right img {
	vertical-align: middle;
	max-width: 100%;
}

.hero .pagination {
	display: inline-block;
	padding: 10px;
	clear: both;
	list-style: none;
	background: #f0f0f0;
	margin: 5px auto;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
}

.hero .pagination li {
	background: #fff;
	float: left;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	-webkit-border-radius: 50% 50% 50% 50%;
	border-radius: 50% 50% 50% 50%;
}

.hero .pagination li.active {
	background: #333;
}

.content {
	margin-top: 40px;
}

ul.three_col_widget {
	list-style: none;
	margin: 15px 0;
}

ul.three_col_widget li {
	width: 32%;
	float: left;
	margin: 0 1% 0 0;
}

ul.three_col_widget li.last {
	margin: 0;
}

ul.three_col_widget .thumbnail {
	width: 95%;
	height: 210px;
	margin: 0 auto;
	overflow: hidden;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}

ul.three_col_widget .thumbnail img.smaller {
	max-height: 80%;
	display: block;
	margin: 10px auto;
	width: auto;
	max-width: 100%;
}

ul.three_col_widget .text {
	width: 91%;
	padding: 2%;
	min-height: 260px;
	margin: 10px auto;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}

ul.three_col_widget .text a {
	text-decoration: none;
}

ul.three_col_widget .text p {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}

ul.three_col_widget .text h2 {
	color: #fff;
	font-size: 20px;
	line-height: 24px;
}

ul.breadcrumbs {
	margin: 10px 0 20px 0;
	list-style: none;
	color: #666;
	font-size: .7em;
}

ul.breadcrumbs li {
	float: left;
	margin: 0 10px 0 0;
}

ul.breadcrumbs a:link,
ul.breadcrumbs a:visited {
	color: #666;
	text-decoration: none;
}

ul.breadcrumbs a:hover,
ul.breadcrumbs a:active {
	color: #666;
	text-decoration: underline;
}

aside {
	float:right;
	margin: 10px 0 10px 10px;
	width: 25%;
	background: #e8e7e7;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	padding: 3%;
}

.blog_content {
	width: 60%;
	float: left;
}


article {
	padding: 5%;
	width: 55%;
	border: 1px solid #f1f1f1;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	float: left;
	display: inline-block;
	margin: 0 0 15px 0;
}

article h1 a {
	text-decoration: none !important;	
}

article .feat_img_wrap {
	width: 100px;
	height: 100px;
	float: left;
	margin: 15px 15px 15px 0;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
	overflow: hidden;
	border: 1px solid #f1f1f1;
}

ul.three_col_widget_product {
	list-style: none;
	margin: 15px 0;
}

ul.three_col_widget_product li {
	width: 30%;
	float: left;
	padding: 1%;
	margin: 0 1% 0 0;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}

ul.three_col_widget_product li.last {
	margin: 0;
}

ul.three_col_widget_product .thumbnail {
	width: 90%;
	height: 210px;
	padding: 5%;
	background: #fff;
	overflow: hidden;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-radius: 5px 5px 5px 5px;
}

ul.three_col_widget_product .thumbnail img {
	display: block;
	margin: 10% auto;
	max-height: 80%;
	max-width: 100%;
	height: auto;
	width: auto;
}

ul.three_col_widget_product p {
	color: #fff;
	font-size: 14px;
	line-height: 20px;
}

ul.three_col_widget_product h2 {
	color: #fff;
	font-size: 20px;
	line-height: 24px;
}

ul.three_col_widget_product h2 a {
	text-decoration: none;
	color: #fff !important;
}

ul.three_col_widget_product h2 a:hover {
	text-decoration: underline;
	color: #fff !important;
}

table.search_results {
	width: 100%;
	table-layout: fixed;
}

table.search_results th {
	padding: 10px;
	background: #ee2e24;
	color: #fff;
	font-weight: 600;
	text-align: left;
}

table.search_results td {
	padding: 10px;
	text-align: left;
	line-height: 1.5em;
	word-wrap: break-word;
}

table.search_results tr:nth-child(even) {
	background: #f1f1f1;
}

.push {
	height: 100px;
	clear: both;
}

footer {
	/*background: #f9f9f9;*/
	height: 100px;
	clear: both;
}

.footer_question {
	font-family: 'Raleway', sans-serif;
	color: #ee2e24;
	text-align: right;
	padding: 5px 0;
}

.footer_question a {
	display: inline-block;
	background: #ee2e24;
	color: #fff !important;
	padding: 5px 10px;
	margin: 0 5px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	text-decoration: none;
}

.footer_question a:hover {
	background: #d72920;
}

footer p {
	font-size: .6em;
	color: #666;
	margin: 5px 0;
}

footer a:link,
footer a:visited {
	color: #666;
}

footer a:hover,
footer a:active {
	color: #000;
}

/* WordPress Image Algin
-------------------------------------------------------------- */
.alignnone { margin: 5px 10px 0px 0;}
.aligncenter, div.aligncenter { display:block; margin: 5px auto 5px auto;}
.alignright { float:right; margin: 5px 0 0px 10px;}
.alignleft {float:left; margin: 5px 10px 0px 0;}
.aligncenter { display: block; margin: 5px auto 5px auto;}
a img.alignright {float:right; margin: 5px 0 0px 10px;}
a img.alignnone {margin: 5px 10px 0px 0;}
a img.alignleft { float:left; margin: 5px 10px 0px 0;}
a img.aligncenter { display: block; margin-left: auto; margin-right: auto}
.wp-caption {background: #f7f7f7; border: 1px solid #f0f0f0; max-width: 96%; /* Image does not overflow the content area */ padding: 5px 3px 10px; text-align: center;}
.wp-caption.alignnone { margin: 5px 10px 10px 0;}
.wp-caption.alignleft { margin: 5px 10px 10px 0;}
.wp-caption.alignright {margin: 5px 0 10px 10px;}
.wp-caption img { border: 0 none; height: auto; margin:0; max-width: 98.5%; padding:0; width: auto;}
.wp-caption p.wp-caption-text { font-size:11px !important; color:#333 !important; line-height:17px; margin:0; padding:0 4px 5px;}
/* End WordPress Image Algin
-------------------------------------------------------------- */