@charset "utf-8";@import url(/media/system/css/system.css);

/**
 * @copyright	(C) 2007 Open Source Matters, Inc. <https://www.joomla.org>
 * @license		GNU General Public License version 2 or later; see LICENSE.txt
 */

/* Import project-level system CSS */


/* Unpublished */
.system-unpublished, tr.system-unpublished {
	background: #e8edf1;
	border-top: 4px solid #c4d3df;
	border-bottom: 4px solid #c4d3df;
}

span.highlight {
	background-color:#FFFFCC;
	font-weight:bold;
	padding:1px 0;
}

.img-fulltext-float-right {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}

.img-fulltext-float-left {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.img-fulltext-float-none {
}

.img-intro-float-right {
	float: right;
	margin-left: 5px;
	margin-bottom: 5px;
}

.img-intro-float-left {
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
}

.img-intro-float-none {
}
(function($){
$(document).ready(function(){
if('ontouchstart' in window){
	$('.box-scale,.box_left img,.box_right .box,ul.scroll_showcase > li > .item-inner').css('opacity',1);
}else{
	$('.box-scale').each(function(index){
		$(this).waypoint(function(){
			$(this).delay(300*index).animate({
				width: "100%"
			}, 0, function(){
				if (isIE () == 9) {
					$(this).animate({opacity: 1}); // apply opacity animation for ie9
				} else {
					$(this).addClass('scale-up'); // apply scale up for modern browsers
				}
			});
		}, { offset: '100%' });
	});

	$('.box_left img').each(function(index){
			$(this).waypoint(function(){
				$(this).delay(300*index).animate({
					width: "100%"
				}, 0, function(){
					if (isIE () == 9) {
						$(this).animate({opacity: 1}); // apply opacity animation for ie9
					} else {
						$(this).addClass('move-right'); // apply move right for modern browsers
					}
				});
				$('.box_right .box').each(function(index){
					$(this).delay(300*index+300).animate({
						width: "100%"
					}, 0, function(){
						if (isIE () == 9) {
							$(this).animate({opacity: 1}); // apply opacity animation for ie9
						} else {
							$(this).addClass('move-up'); // apply move up for modern browsers
						}
					});
				});
		}, { offset: '100%' });
		
	});



	$('ul.scroll_showcase > li > .item-inner').each(function(index){
			$(this).waypoint(function(){
				$(this).delay(300*index+300).animate({
					width: "auto"
				}, 0, function(){
					if (isIE () == 9) {
						$(this).animate({opacity: 1}); // apply opacity animation for ie9
					} else {
						$(this).addClass('move-up-h'); // apply move up for modern browsers
					}
				});
			}, { offset: '100%' });
	});

	//number follow increment
	$('.link_follow').css({'opacity':0,'display':'block'});
	$('.number_follow').each(function(){
		$(this).html('0'+'<span style="display:none">'+this.innerHTML+'</span>');
	});
	$('.number_follow:first').waypoint(function(){
		setTimeout(function(){
		$('.number_follow').each(function(){
				var el = this;
				if($('span',el).length){
				var y = parseInt($('span',el).html());
					$({someValue: 0}).animate({someValue: y}, {
					  duration: 2000,
					  easing:'swing', // can be anything
					  step: function() { // called on every step
						$(el).text(Math.round(this.someValue));
					  },
					  complete:function(){
						$(el).text(y);
						$(el).next().addClass('move-up-h');
					  }				  
					});
				}
		});
		},200);
	}, { offset: '100%' });
}
});
function isIE () {
	var myNav = navigator.userAgent.toLowerCase();
	return (myNav.indexOf('msie') != -1) ? parseInt(myNav.split('msie')[1]) : false;
}
})(jQuery);
.jumbotron {
  position: relative;
  padding: 48px 0;
}
.jumbotron h1 {
  font-size: 44pt;
  letter-spacing: -1px;
  line-height: 1;
  margin: 0 0 12px 0;
}
.jumbotron p {
  font-size: 16.5pt;
  line-height: 1.275;
  margin: 0 0 24px 0;
}
.jumbotron .btn {
  margin-top: 12px;
}
.jumbotron .btn-large {
  margin-top: 24px;
  font-size: 15pt;
}
.masthead {
  padding: 96px 0 72px;
  text-align: center;
}
.masthead h1 {
  font-size: 77pt;
}
.masthead p {
  font-size: 33pt;
}
.masthead .btn-large {
  font-size: 22pt;
  padding: 11pt 22pt;
}
.jumbotron.has-image {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.masthead.has-image {
  text-align: left;
}
.thumbnails {
  margin-bottom: 24px;
  margin-left: -40px;
  list-style: none;
  *zoom: 1;
}
.thumbnails:before,
.thumbnails:after {
  display: table;
  content: "";
  line-height: 0;
}
.thumbnails:after {
  clear: both;
}
.row-fluid .thumbnails {
  margin-left: 0;
}
.thumbnails > li {
  float: left;
  position: relative;
  margin-bottom: 24px;
  margin-left: 40px;
}
.thumbnail {
  border: 1px solid #ddd;
  display: block;
  padding: 4px;
  line-height: 24px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  box-shadow: 0 1px 3px rgba(0,0,0,0.055);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
a.thumbnail:hover {
  border-color: #cc6633;
  -webkit-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
  -moz-box-shadow: 0 1px 4px rgba(0,105,214,0.25);
  box-shadow: 0 1px 4px rgba(0,105,214,0.25);
}
.thumbnail > img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.thumbnail .caption {
  padding: 9px;
  color: #666;
}
.thumbnails.paper > li:before,
.thumbnails.paper > li:after {
  content: '';
  position: absolute;
  z-index: -2;
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  box-shadow: 0 15px 10px rgba(0,0,0,0.7);
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  transform: rotate(-3deg);
}
.thumbnails.paper > li:after {
  right: 10px;
  left: auto;
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  transform: rotate(3deg);
}
.thumbnails.paper .thumbnail {
  border: none;
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.thumbnails.paper a.thumbnail.paper:hover {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.t3-logo,
.t3-logo-small {
  display: block;
  text-decoration: none;
  text-indent: -9999em;
  text-align: left;
  background-repeat: no-repeat;
  background-position: center;
}
.t3-logo {
  width: 182px;
  height: 50px;
}
.t3-logo-small {
  width: 60px;
  height: 30px;
}
.t3-logo,
.t3-logo-color {
  background-image: url(http://joomlart.s3.amazonaws.com/images/jat3v3-documents/logo-complete/t3logo-big-color.png);
}
.t3-logo-small,
.t3-logo-small.t3-logo-color {
  background-image: url(http://joomlart.s3.amazonaws.com/images/jat3v3-documents/logo-complete/t3logo-small-color.png);
}
.t3-logo-dark {
  background-image: url(http://joomlart.s3.amazonaws.com/images/jat3v3-documents/logo-complete/t3logo-big-dark.png);
}
.t3-logo-small.t3-logo-dark {
  background-image: url(http://joomlart.s3.amazonaws.com/images/jat3v3-documents/logo-complete/t3logo-small-dark.png);
}
.t3-logo-light {
  background-image: url(http://joomlart.s3.amazonaws.com/images/jat3v3-documents/logo-complete/t3logo-big-light.png);
}
.t3-logo-small.t3-logo-light {
  background-image: url(http://joomlart.s3.amazonaws.com/images/jat3v3-documents/logo-complete/t3logo-small-light.png);
}

.wrap {
  width: auto;
  clear: both;
}
.offset-12 {
  margin-left: -932px;
}
.offset-11 {
  margin-left: -851px;
}
.offset-10 {
  margin-left: -770px;
}
.offset-9 {
  margin-left: -689px;
}
.offset-8 {
  margin-left: -608px;
}
.offset-7 {
  margin-left: -527px;
}
.offset-6 {
  margin-left: -446px;
}
.offset-5 {
  margin-left: -365px;
}
.offset-4 {
  margin-left: -284px;
}
.offset-3 {
  margin-left: -203px;
}
.offset-2 {
  margin-left: -122px;
}
.offset-1 {
  margin-left: -41px;
}
.row-fluid .spanfirst {
  margin-left: 0 !important;
}

.logo-control .logo-img-sm {
  display: none;
}
.logo-control .logo-img {
  display: block;
}
.body-data-holder:before {
  display: none;
  content: "grid-float-breakpoint:979px screen-xs:600px screen-sm:736px screen-md:932px screen-lg:1196px";
}

.wrap {
  width: auto;
  clear: both;
}
.tab-content {
  overflow: visible;
}

body {
  background-color: #fff;
  color: #383838;
  font-family: arial;
  font-size: 11pt;
  line-height: 24px;
  margin: 0;
}
a {
  color: #cc6633;
  text-decoration: none;
}
a:hover {
  color: #8f4724;
  text-decoration: underline;
}
img {
  max-width: 100% !important;
}
.img-rounded {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,0.2);
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.img-circle {
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}
table {
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
th,
td {
  line-height: 24px;
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
}
td {
  border-top: 1px solid #ddd;
}
th {
  background: #444;
  color: #eee;
  font-weight: bold;
}
th a {
  color: #eee;
}
th a:hover,
th a:focus,
th a:active {
  color: #fff;
}
.cat-list-row0:hover,
.cat-list-row1:hover {
  background: #f5f5f5;
}
.cat-list-row1,
tr.cat-list-row1 td {
  background: #f9f9f9;
}
table.contentpane,
table.tablelist,
table.category,
table.admintable,
table.blog {
  width: 100%;
}
table.contentpaneopen {
  border: 0;
}
.row-even,
.row-odd {
  padding: 5px;
  width: 99%;
  border-bottom: 1px solid #ddd;
}
.row-odd {
  background-color: transparent;
}
.row-even {
  background-color: #f9f9f9;
}
.blog-row-rule,
.blog-item-rule {
  border: 0;
}
.row-fluid .row-reveal {
  visibility: hidden;
}
.row-fluid:hover .row-reveal {
  visibility: visible;
}
.nav-list > li.offset > a {
  padding-left: 30px;
  font-size: 12px;
}
.blog-row-rule,
.blog-item-rule {
  border: 0;
}
.list-striped,
.row-striped {
  list-style: none;
  line-height: 18px;
  text-align: left;
  vertical-align: middle;
  border-top: 1px solid #ddd;
  margin-left: 0;
}
.list-striped li,
.list-striped dd,
.row-striped .row,
.row-striped .row-fluid {
  border-bottom: 1px solid #ddd;
  padding: 10px 15px;
}
.list-striped li:nth-child(odd),
.list-striped dd:nth-child(odd),
.row-striped .row:nth-child(odd),
.row-striped .row-fluid:nth-child(odd) {
  background-color: #f9f9f9;
}
.list-striped li:hover,
.list-striped dd:hover,
.row-striped .row:hover,
.row-striped .row-fluid:hover {
  background-color: #f5f5f5;
}
.row-striped .row-fluid {
  width: 97%;
}
.row-striped .row-fluid [class*="span"] {
  min-height: 10px;
}
.row-striped .row-fluid [class*="span"] {
  margin-left: 8px;
}
.row-striped .row-fluid [class*="span"]:first-child {
  margin-left: 0;
}
.list-condensed li {
  padding: 5px 10px;
}
.row-condensed .row,
.row-condensed .row-fluid {
  padding: 5px 10px;
}
.list-bordered,
.row-bordered {
  list-style: none;
  line-height: 18px;
  text-align: left;
  vertical-align: middle;
  margin-left: 0;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.star {
  color: #fc0;
}
.red {
  color: #e04245;
}
.center,
.table td.center,
.table th.center {
  text-align: center;
}
hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff;
}
hr.hr-condensed {
  margin: 10px 0;
}
.element-invisible {
  position: absolute;
  padding: 0;
  margin: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.width-auto {
  width: auto;
}

p {
  margin: 0 0 12px;
}
p small,
p .small {
  font-size: 9pt;
  color: #999;
}
.lead {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 200;
  line-height: 36px;
}
small {
  font-size: 85%;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
cite {
  font-style: normal;
}
.muted {
  color: #999;
}
a.muted:hover,
a.muted:focus {
  color: #808080;
}
.text-warning {
  color: #f80;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #cc6d00;
}
.text-error {
  color: #e04245;
}
a.text-error:hover,
a.text-error:focus {
  color: #cd2225;
}
.text-info {
  color: #07b;
}
a.text-info:hover,
a.text-info:focus {
  color: #005788;
}
.text-success {
  color: #690;
}
a.text-success:hover,
a.text-success:focus {
  color: #446600;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.highlight {
  background-color: #FFC;
  font-weight: bold;
  padding: 1px 4px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 12px 0;
  font-family: "Titillium Web";
  font-weight: bold;
  line-height: 1;
  color: #444;
  text-rendering: optimizelegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-weight: normal;
  line-height: 1;
  color: #999;
}
h1 {
  font-size: 27.5pt;
  line-height: 48px;
}
h1 small {
  font-size: 22pt;
}
h2 {
  font-size: 22pt;
  line-height: 48px;
}
h2 small {
  font-size: 16.5pt;
}
h3 {
  font-size: 16.5pt;
  line-height: 48px;
}
h3 small {
  font-size: 13pt;
}
h4 {
  font-size: 13pt;
  line-height: 24px;
}
h4 small {
  font-size: 11pt;
}
h5 {
  font-size: 12pt;
  line-height: 24px;
}
h5 small {
  font-size: 9pt;
}
h6 {
  font-size: 11pt;
  line-height: 24px;
}
.page-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  margin: 0 0 48px;
}
.page-title,
.page-header h1 {
  line-height: 1;
  margin: 0;
}
.page-subheader {
  border-bottom: 1px solid #ddd;
  margin: 0 0 24px;
  *zoom: 1;
}
.page-subheader:before,
.page-subheader:after {
  display: table;
  content: "";
  line-height: 0;
}
.page-subheader:after {
  clear: both;
}
.page-subtitle,
.page-subheader h2 {
  line-height: 1;
  margin: 0;
}
.page-header + .page-subheader {
  margin-top: -24px;
}
.article-title,
.article-header h1 {
  margin: 0 0 12px 0;
  line-height: 1;
}
.item-title {
  font-weight: bold;
}
ul,
ol {
  padding: 0;
  margin: 0 0 12px 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li {
  line-height: 24px;
}
ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}
ul.inline,
ol.inline {
  margin-left: 0;
  list-style: none;
}
ul.inline > li,
ol.inline > li {
  display: inline-block;
  
  *display: inline;
  *zoom: 1;
  padding-left: 5px;
  padding-right: 5px;
}
dl {
  margin-bottom: 24px;
}
dt,
dd {
  line-height: 24px;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 12px;
}
.dl-horizontal {
  *zoom: 1;
}
.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  content: "";
  line-height: 0;
}
.dl-horizontal:after {
  clear: both;
}
.dl-horizontal dt {
  float: left;
  width: 160px;
  clear: left;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dl-horizontal dd {
  margin-left: 180px;
}
.label,
.badge {
  display: inline-block;
  padding: 2px 4px;
  font-size: 9.306pt;
  font-weight: bold;
  line-height: 14px;
  color: #fff;
  vertical-align: baseline;
  white-space: nowrap;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #999;
}
.label {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.badge {
  padding-left: 9px;
  padding-right: 9px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.label:empty,
.badge:empty {
  display: none;
}
a.label:hover,
a.label:focus,
a.badge:hover,
a.badge:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.label-important,
.badge-important {
  background-color: #e04245;
}
.label-important[href],
.badge-important[href] {
  background-color: #cd2225;
}
.label-warning,
.badge-warning {
  background-color: #f80;
}
.label-warning[href],
.badge-warning[href] {
  background-color: #cc6d00;
}
.label-success,
.badge-success {
  background-color: #690;
}
.label-success[href],
.badge-success[href] {
  background-color: #446600;
}
.label-info,
.badge-info {
  background-color: #07b;
}
.label-info[href],
.badge-info[href] {
  background-color: #005788;
}
.label-inverse,
.badge-inverse {
  background-color: #444;
}
.label-inverse[href],
.badge-inverse[href] {
  background-color: #2b2b2b;
}
.btn .label,
.btn .badge {
  position: relative;
  top: -1px;
}
.btn-mini .label,
.btn-mini .badge {
  top: 0;
}
.page-header .label,
.page-header .badge {
  vertical-align: middle;
}
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #999;
}
abbr.initialism {
  font-size: 90%;
  text-transform: uppercase;
}
blockquote {
  padding: 0 0 0 15px;
  margin: 0 0 24px;
  border-left: 5px solid #eee;
}
blockquote p {
  margin-bottom: 0;
  font-size: 13.75pt;
  font-weight: 300;
  line-height: 1.25;
}
blockquote small {
  display: block;
  line-height: 24px;
  color: #999;
}
blockquote small:before {
  content: '\2014 \00A0';
}
blockquote.pull-right {
  float: right;
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #eee;
  border-left: 0;
}
blockquote.pull-right p,
blockquote.pull-right small {
  text-align: right;
}
blockquote.pull-right small:before {
  content: '';
}
blockquote.pull-right small:after {
  content: '\00A0 \2014';
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
address {
  display: block;
  margin-bottom: 0;
  font-style: normal;
  line-height: 24px;
}

form {
  margin: 0 0 24px;
}
input,
textarea {
  width: 210px;
}
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border linear .2s, box-shadow linear .2s, width 0.7s ease 0s;
  -moz-transition: border linear .2s, box-shadow linear .2s, width 0.7s ease 0s;
  -o-transition: border linear .2s, box-shadow linear .2s, width 0.7s ease 0s;
  transition: border linear .2s, box-shadow linear .2s, width 0.7s ease 0s;
}
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
  border-color: #999999;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0,0,0,.25);
  -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0,0,0,.25);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0,0,0,.25);
}
input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}
select,
input[type="file"] {
  height: 30px;
  line-height: 30px;
}
select {
  width: 220px;
  border: 1px solid #ddd;
}
select[multiple],
select[size] {
  height: auto;
}
.radio,
.checkbox {
  padding-left: 18px;
}
.radio input[type="radio"],
.checkbox input[type="checkbox"] {
  margin-left: -18px;
}
.controls > .radio:first-child,
.controls > .checkbox:first-child {
  padding-top: 5px;
}
.radio.inline,
.checkbox.inline {
  padding-top: 5px;
  margin-bottom: 0;
}
.radio.inline + .radio.inline,
.checkbox.inline + .checkbox.inline {
  margin-left: 10px;
}
.radio.btn-group input[type=radio] {
  display: none;
}
.radio.btn-group > label:first-of-type {
  margin-left: 0;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px;
}
fieldset.radio.btn-group {
  padding-left: 0;
}
.input-mini {
  width: 60px;
}
.input-small {
  width: 90px;
}
.input-medium {
  width: 150px;
}
.input-large {
  width: 210px;
}
.input-xlarge {
  width: 270px;
}
.input-xxlarge {
  width: 530px;
}
.form-actions {
  padding: 23px 20px 24px;
  margin-top: 24px;
  margin-bottom: 24px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}
.help-block,
.help-inline {
  color: #5e5e5e;
}
.help-block {
  margin-bottom: 12px;
}
.input-append,
.input-prepend {
  margin-bottom: 5px;
}
.form-search input,
.form-search textarea,
.form-search select,
.form-search .help-inline,
.form-search .uneditable-input,
.form-search .input-prepend,
.form-search .input-append,
.form-inline input,
.form-inline textarea,
.form-inline select,
.form-inline .help-inline,
.form-inline .uneditable-input,
.form-inline .input-prepend,
.form-inline .input-append,
.form-horizontal input,
.form-horizontal textarea,
.form-horizontal select,
.form-horizontal .help-inline,
.form-horizontal .uneditable-input,
.form-horizontal .input-prepend,
.form-horizontal .input-append {
  margin-bottom: 0;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  margin-right: 3px;
  margin-left: 0;
}
.control-group {
  margin-bottom: 12px;
}
legend + .control-group {
  margin-top: 24px;
}
.form-horizontal .control-group {
  margin-bottom: 24px;
}
.form-horizontal .control-label {
  width: 140px;
  padding-top: 5px;
  text-align: right;
}
.form-horizontal .controls {
  margin-left: 160px;
}
.form-horizontal .help-block {
  margin-top: 12px;
  margin-bottom: 0;
}
.form-horizontal .form-actions {
  padding-left: 160px;
}
.form-vertical .control-label {
  float: none;
  width: auto;
  padding-right: 0;
  padding-top: 0;
  text-align: left;
}
.form-vertical .controls {
  margin-left: 0;
}
.btn,
.button,
button {
  padding: 4px 14px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.1);
  color: #383838;
  text-shadow: 0 1px 1px rgba(255,255,255,0.75);
  background-color: #f8f8f8;
  background-image: -moz-linear-gradient(top,#ffffff,#eee);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),to(#eee));
  background-image: -webkit-linear-gradient(top,#ffffff,#eee);
  background-image: -o-linear-gradient(top,#ffffff,#eee);
  background-image: linear-gradient(to bottom,#ffffff,#eee);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffeeeeee', GradientType=0);
  border-color: #eee #eee #c8c8c8;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #eee;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  text-shadow: none !important;
  color: #727272;
}
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled],
.button:hover,
.button:focus,
.button:active,
.button.active,
.button.disabled,
.button[disabled],
button:hover,
button:focus,
button:active,
button.active,
button.disabled,
button[disabled] {
  color: #383838;
  background-color: #eee;
  *background-color: #e1e1e1;
}
.btn:active,
.btn.active,
.button:active,
.button.active,
button:active,
button.active {
  background-color: #d5d5d5 \9;
}
.btn:hover,
.btn a.btn:hover,
.button:hover,
.button a.btn:hover,
button:hover,
button a.btn:hover {
  text-decoration: none;
  background-color: #cc6633;
  color: #fff;
  background-position: 0 -30px;
  transition: none;
}
.btn:focus,
.btn a.btn:focus,
.button:focus,
.button a.btn:focus,
button:focus,
button a.btn:focus {
  outline: 0;
}
.btn.active,
.btn:active,
.btn a.btn:active,
.button.active,
.button:active,
.button a.btn:active,
button.active,
button:active,
button a.btn:active {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
  box-shadow: inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);
}
.btn-large {
  padding: 9px 14px;
  font-size: 13pt;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.5);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.5);
}
.btn-small {
  padding: 3px 9px;
  font-size: 10pt;
}
.btn-mini {
  padding: 2px 6px;
  font-size: 9pt;
}
.btn-micro {
  padding: 1px 4px;
  font-size: 10px;
  line-height: 8px;
}
.btn {
  border-color: #c5c5c5;
  border-color: rgba(0,0,0,0.15) rgba(0,0,0,0.15) rgba(0,0,0,0.25);
}
.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #d2784b;
  background-image: -moz-linear-gradient(top,#d6855c,#cc6633);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#d6855c),to(#cc6633));
  background-image: -webkit-linear-gradient(top,#d6855c,#cc6633);
  background-image: -o-linear-gradient(top,#d6855c,#cc6633);
  background-image: linear-gradient(to bottom,#d6855c,#cc6633);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd6845b', endColorstr='#ffcc6633', GradientType=0);
  border-color: #cc6633 #cc6633 #8f4724;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #cc6633;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  color: #fff;
  background-color: #cc6633;
  *background-color: #b85c2e;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #a35229 \9;
}
.btn-warning {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #ff961f;
  background-image: -moz-linear-gradient(top,#ffa033,#f80);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffa033),to(#f80));
  background-image: -webkit-linear-gradient(top,#ffa033,#f80);
  background-image: -o-linear-gradient(top,#ffa033,#f80);
  background-image: linear-gradient(to bottom,#ffa033,#f80);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffff9f32', endColorstr='#ffff8800', GradientType=0);
  border-color: #f80 #f80 #b35f00;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #f80;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  color: #fff;
  background-color: #f80;
  *background-color: #e67a00;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #cc6d00 \9;
}
.btn-danger,
.btn-error {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #e45c5f;
  background-image: -moz-linear-gradient(top,#e76e70,#e04245);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#e76e70),to(#e04245));
  background-image: -webkit-linear-gradient(top,#e76e70,#e04245);
  background-image: -o-linear-gradient(top,#e76e70,#e04245);
  background-image: linear-gradient(to bottom,#e76e70,#e04245);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe76d70', endColorstr='#ffe04245', GradientType=0);
  border-color: #e04245 #e04245 #b71e21;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #e04245;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled],
.btn-error:hover,
.btn-error:focus,
.btn-error:active,
.btn-error.active,
.btn-error.disabled,
.btn-error[disabled] {
  color: #fff;
  background-color: #e04245;
  *background-color: #dc2c2f;
}
.btn-danger:active,
.btn-danger.active,
.btn-error:active,
.btn-error.active {
  background-color: #cd2225 \9;
}
.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #7ab800;
  background-image: -moz-linear-gradient(top,#88cc00,#690);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#88cc00),to(#690));
  background-image: -webkit-linear-gradient(top,#88cc00,#690);
  background-image: -o-linear-gradient(top,#88cc00,#690);
  background-image: linear-gradient(to bottom,#88cc00,#690);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff87cc00', endColorstr='#ff669900', GradientType=0);
  border-color: #690 #690 #334d00;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #690;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #fff;
  background-color: #690;
  *background-color: #558000;
}
.btn-success:active,
.btn-success.active {
  background-color: #446600 \9;
}
.btn-info {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #00b0eb;
  background-image: -moz-linear-gradient(top,#00bfff,#09c);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#00bfff),to(#09c));
  background-image: -webkit-linear-gradient(top,#00bfff,#09c);
  background-image: -o-linear-gradient(top,#00bfff,#09c);
  background-image: linear-gradient(to bottom,#00bfff,#09c);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff00bfff', endColorstr='#ff0099cc', GradientType=0);
  border-color: #09c #09c #006080;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #09c;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  color: #fff;
  background-color: #09c;
  *background-color: #0086b3;
}
.btn-info:active,
.btn-info.active {
  background-color: #007399 \9;
}
.btn-inverse {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #535353;
  background-image: -moz-linear-gradient(top,#5e5e5e,#444);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#5e5e5e),to(#444));
  background-image: -webkit-linear-gradient(top,#5e5e5e,#444);
  background-image: -o-linear-gradient(top,#5e5e5e,#444);
  background-image: linear-gradient(to bottom,#5e5e5e,#444);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5d5d5d', endColorstr='#ff444444', GradientType=0);
  border-color: #444 #444 #1e1e1e;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #444;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.btn-inverse:hover,
.btn-inverse:focus,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  color: #fff;
  background-color: #444;
  *background-color: #373737;
}
.btn-inverse:active,
.btn-inverse.active {
  background-color: #2b2b2b \9;
}
.invalid {
  border-color: #e04245;
}
label.invalid {
  color: #e04245;
}
input.invalid {
  border: 1px solid #e04245;
}

.nav {
  margin-bottom: 24px;
}
.nav > li > a:hover {
  background-color: #666;
  color: #eee;
}
.nav .dropdown-toggle .caret {
  border-top-color: #cc6633;
  border-bottom-color: #cc6633;
  margin-top: 8px;
  margin-left: 5px;
}
.nav .dropdown-toggle:hover .caret {
  border-top-color: #8f4724;
  border-bottom-color: #8f4724;
}
.nav .active .dropdown-toggle .caret {
  border-top-color: #fff;
  border-bottom-color: #fff;
}
.nav-tabs .active .dropdown-toggle .caret {
  border-top-color: #666;
  border-bottom-color: #666;
}
.dropup,
.dropdown {
  position: relative;
}
.dropdown-toggle {
  *margin-bottom: -3px;
}
.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border-top: 4px solid #000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  content: "";
}
.dropdown .caret {
  margin-top: 8px;
  margin-left: 2px;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0,0,0,0.2);
  *border-right-width: 2px;
  *border-bottom-width: 2px;
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0 0 4px 4px;
  -moz-border-radius: 0 0 4px 4px;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 11px 1px;
  *margin: -5px 0 5px;
  overflow: hidden;
  background-color: #e5e5e5;
  border-bottom: 1px solid #fff;
}
.dropdown-menu li > a {
  clear: both;
  color: #444;
  display: block;
  line-height: 24px;
  font-weight: normal;
  padding: 3px 20px;
  text-shadow: none;
  white-space: nowrap;
}
.dropdown-menu li > a:hover,
.dropdown-menu li > a:focus,
.dropdown-submenu:hover > a {
  color: #eee;
  text-decoration: none;
  background-color: #666;
  background-color: #757575;
  background-image: -moz-linear-gradient(top,#808080,#666);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#808080),to(#666));
  background-image: -webkit-linear-gradient(top,#808080,#666);
  background-image: -o-linear-gradient(top,#808080,#666);
  background-image: linear-gradient(to bottom,#808080,#666);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7f7f7f', endColorstr='#ff666666', GradientType=0);
}
.dropdown-menu .active > a,
.dropdown-menu .active > a:hover {
  color: #eee;
  text-decoration: none;
  outline: 0;
  background-color: #cc6633;
  background-color: #d2784b;
  background-image: -moz-linear-gradient(top,#d6855c,#cc6633);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#d6855c),to(#cc6633));
  background-image: -webkit-linear-gradient(top,#d6855c,#cc6633);
  background-image: -o-linear-gradient(top,#d6855c,#cc6633);
  background-image: linear-gradient(to bottom,#d6855c,#cc6633);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd6845b', endColorstr='#ffcc6633', GradientType=0);
}
.dropdown-menu .disabled > a,
.dropdown-menu .disabled > a:hover {
  color: #999;
}
.dropdown-menu .disabled > a:hover {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  cursor: default;
}
.open {
  *z-index: 1000;
}
.open > .dropdown-menu {
  display: block;
}
.nav li.dropdown.open > .dropdown-toggle,
.nav li.dropdown.active > .dropdown-toggle,
.nav li.dropdown.open.active > .dropdown-toggle,
.nav > li.dropdown.open.active > a:hover {
  background-color: #cc6633;
  color: #eee;
}
.nav li.dropdown > .dropdown-toggle .caret {
  border-top-color: #666;
  border-bottom-color: #666;
}
.nav li.dropdown > .dropdown-toggle:hover .caret {
  border-top-color: #eee;
  border-bottom-color: #eee;
}
.nav li.dropdown.open > .dropdown-toggle .caret,
.nav li.dropdown.active > .dropdown-toggle .caret,
.nav li.dropdown.open.active > .dropdown-toggle .caret {
  border-top-color: #eee;
  border-bottom-color: #eee;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}
.touch .dropdown-submenu:hover > .dropdown-menu {
  display: none;
}
.touch .dropdown-submenu.open > .dropdown-menu {
  display: block;
}
.dropup .dropdown-submenu > .dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.dropdown-submenu > a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #cccccc;
  margin-top: 5px;
  margin-right: -10px;
}
.dropdown-submenu:hover > a:after {
  border-left-color: #eee;
}
.dropdown-submenu.pull-left {
  float: none;
}
.dropdown-submenu.pull-left > .dropdown-menu {
  left: -100%;
  margin-left: 10px;
  -webkit-border-radius: 6px 0 6px 6px;
  -moz-border-radius: 6px 0 6px 6px;
  border-radius: 6px 0 6px 6px;
}
.dropdown .dropdown-menu .nav-header {
  padding-left: 20px;
  padding-right: 20px;
}
.typeahead {
  margin-top: 2px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.t3-navhelper {
  background: #2f2f2f;
  color: #666;
}
.breadcrumb {
  padding: 12px 0;
  margin: 0;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  *zoom: 1;
}
.breadcrumb:before,
.breadcrumb:after {
  display: table;
  content: "";
  line-height: 0;
}
.breadcrumb:after {
  clear: both;
}
.breadcrumb li {
  text-shadow: none;
  display: block;
  float: left;
}
.breadcrumb a {
  color: #666;
}
.breadcrumb .divider {
  padding: 0 5px;
  color: #666;
}
.breadcrumb .divider img {
  vertical-align: middle;
}
.breadcrumb .active {
  color: #999;
}
.pagination {
  margin: 24px 0;
}
.pagination ul {
  display: inline-block;
  
  *display: inline;
  *zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.pagination ul > li {
  display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 4px 12px;
  line-height: 24px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-left-width: 0;
}
.pagination ul > li > a:hover,
.pagination ul > li > a:focus,
.pagination ul > .active > a,
.pagination ul > .active > span {
  background-color: #f5f5f5;
}
.pagination ul > .active > a,
.pagination ul > .active > span {
  color: #999;
  cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover,
.pagination ul > .disabled > a:focus {
  color: #999;
  background-color: transparent;
  cursor: default;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.pagination-centered {
  text-align: center;
}
.pagination-right {
  text-align: right;
}
.pagination-large ul > li > a,
.pagination-large ul > li > span {
  padding: 11px 19px;
  font-size: 13.75pt;
}
.pagination-large ul > li:first-child > a,
.pagination-large ul > li:first-child > span {
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
.pagination-large ul > li:last-child > a,
.pagination-large ul > li:last-child > span {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-mini ul > li:first-child > a,
.pagination-mini ul > li:first-child > span,
.pagination-small ul > li:first-child > a,
.pagination-small ul > li:first-child > span {
  -webkit-border-top-left-radius: 3px;
  -moz-border-radius-topleft: 3px;
  border-top-left-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-mini ul > li:last-child > a,
.pagination-mini ul > li:last-child > span,
.pagination-small ul > li:last-child > a,
.pagination-small ul > li:last-child > span {
  -webkit-border-top-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  border-bottom-right-radius: 3px;
}
.pagination-small ul > li > a,
.pagination-small ul > li > span {
  padding: 2px 10px;
  font-size: 9.35pt;
}
.pagination-mini ul > li > a,
.pagination-mini ul > li > span {
  padding: 1px 6px;
  font-size: 8.25pt;
}
.pager {
  margin: 24px 0;
  list-style: none;
  text-align: center;
  *zoom: 1;
}
.pager:before,
.pager:after {
  display: table;
  content: "";
  line-height: 0;
}
.pager:after {
  clear: both;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
  background-color: #f5f5f5;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  color: #999;
  background-color: #fff;
  cursor: default;
}

.t3-mainnav {
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top,#ffffff,#e6e6e6);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#ffffff),to(#e6e6e6));
  background-image: -webkit-linear-gradient(top,#ffffff,#e6e6e6);
  background-image: -o-linear-gradient(top,#ffffff,#e6e6e6);
  background-image: linear-gradient(to bottom,#ffffff,#e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe5e5e5', GradientType=0);
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #cccccc;
}
.t3-mainnav .navbar {
  color: #666;
  margin-bottom: 0;
  margin-top: 0;
}
.t3-mainnav .navbar-inner {
  min-height: 40px;
  padding: 0;
  background: transparent;
  border: 0;
  border-left: 1px solid #d9d9d9;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.t3-mainnav .navbar .nav {
  margin: 0;
}
.t3-mainnav .navbar .nav > li > a {
  border-top: 0;
  border-right: 1px solid #d9d9d9;
  padding: 8px 24px;
  text-shadow: none;
}
.t3-mainnav .navbar .nav > li > a:focus,
.t3-mainnav .navbar .nav > li > a:hover {
  background-color: #666;
  background-color: #757575;
  background-image: -moz-linear-gradient(top,#808080,#666);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#808080),to(#666));
  background-image: -webkit-linear-gradient(top,#808080,#666);
  background-image: -o-linear-gradient(top,#808080,#666);
  background-image: linear-gradient(to bottom,#808080,#666);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff7f7f7f', endColorstr='#ff666666', GradientType=0);
  text-shadow: none;
  outline: none;
}
.t3-mainnav .navbar .nav > .active > a,
.t3-mainnav .navbar .nav > .active > a:hover,
.t3-mainnav .navbar .nav > .active > a:focus {
  color: #eee;
  text-shadow: none;
  background-color: #d2784b;
  background-image: -moz-linear-gradient(top,#d6855c,#cc6633);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#d6855c),to(#cc6633));
  background-image: -webkit-linear-gradient(top,#d6855c,#cc6633);
  background-image: -o-linear-gradient(top,#d6855c,#cc6633);
  background-image: linear-gradient(to bottom,#d6855c,#cc6633);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd6845b', endColorstr='#ffcc6633', GradientType=0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
}
.t3-mainnav .navbar .btn-navbar {
  float: left;
  padding: 5px 10px;
  margin: 4px 24px 4px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
  background-color: #e8e8e8;
  background-image: -moz-linear-gradient(top,#f2f2f2,#d9d9d9);
  background-image: -webkit-gradient(linear,0 0,0 100%,from(#f2f2f2),to(#d9d9d9));
  background-image: -webkit-linear-gradient(top,#f2f2f2,#d9d9d9);
  background-image: -o-linear-gradient(top,#f2f2f2,#d9d9d9);
  background-image: linear-gradient(to bottom,#f2f2f2,#d9d9d9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2f2f2', endColorstr='#ffd8d8d8', GradientType=0);
  border-color: #d9d9d9 #d9d9d9 #b3b3b3;
  border-color: rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);
  
  *background-color: #d9d9d9;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.075);
}
.t3-mainnav .navbar .btn-navbar:hover,
.t3-mainnav .navbar .btn-navbar:focus,
.t3-mainnav .navbar .btn-navbar:active,
.t3-mainnav .navbar .btn-navbar.active,
.t3-mainnav .navbar .btn-navbar.disabled,
.t3-mainnav .navbar .btn-navbar[disabled] {
  color: #fff;
  background-color: #d9d9d9;
  *background-color: #cccccc;
}
.t3-mainnav .navbar .btn-navbar:active,
.t3-mainnav .navbar .btn-navbar.active {
  background-color: #bfbfbf \9;
}
.t3-mainnav .navbar .btn-navbar [class^="icon-"],
.t3-mainnav .navbar .btn-navbar [class^=" icon-"] {
  color: #666;
  text-shadow: none;
}
.t3-mainnav .dropdown .caret {
  margin-left: 5px;
}
.t3-mainnav .dropdown-menu {
  -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
.t3-mainnav .dropdown-menu li > a {
  border-top: 1px solid #eee;
  padding: 5px 20px;
  text-shadow: none;
}
.t3-mainnav .dropdown-menu li:first-child > a {
  border-top: 0;
}
.t3-mainnav .navbar .nav > li > .dropdown-menu:before {
  display: none;
}
.t3-mainnav .navbar .nav > li > .dropdown-menu:after {
  display: none;
}
.t3-mainnav .dropdown-menu .disabled > a,
.t3-mainnav .dropdown-menu .disabled > a:hover {
  color: #999;
}
.t3-mainnav .dropdown-menu .disabled > a:hover {
  background-color: transparent;
}
.t3-mainnav .nav li.dropdown.open > .dropdown-toggle {
  background-color: #666;
  color: #eee;
}
.t3-mainnav .nav li.dropdown.active > .dropdown-toggle,
.t3-mainnav .nav li.dropdown.open.active > .dropdown-toggle {
  background-color: #cc6633;
  color: #eee;
}

.t3-module {
  background: transparent;
  color: inherit;
  margin-bottom: 48px;
}
.t3-module .module-inner {
  padding: 0;
}
.t3-mainbody .module-title,
.t3-sl-1 .module-title {
  background: url(/templates/bt_business/images/line-h3.png) bottom left repeat-x;
  color: #444;
  line-height: normal;
  margin: 0 0 2px 0;
  padding: 0;
}
.t3-mainbody .module-title span,
.t3-sl-1 .module-title span {
  background: url(/templates/bt_business/images/themes/orange/line-span-h3.png) bottom left repeat-x;
  display: inline-block;
  font-family: "Titillium Web";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 20px;
  color: #cc6633;
  line-height: 31px;
}
.t3-mainbody .module-title span span,
.t3-sl-1 .module-title span span {
  color: #545454;
}
.module-ct {
  background: inherit;
  color: inherit;
  padding: 0;
  *zoom: 1;
}
.module-ct:before,
.module-ct:after {
  display: table;
  content: "";
  line-height: 0;
}
.module-ct:after {
  clear: both;
}
.t3-module ul.unstyled,
.t3-module ol.unstyled,
.t3-module ul.nav,
.t3-module ol.nav {
  margin-left: 0;
}
.module_menu .nav {
  margin-bottom: 24px;
}
.module_menu .nav > li {
  border-top: 1px solid #eee;
}
.module_menu .nav > li > a {
  padding: 5px;
}
.module_menu .nav > li:first-child {
  border-top: 0;
}
.module_menu .nav > li:first-child > a {
  padding-top: 0;
  border-top: 0;
}
#login-form input[type="text"],
#login-form input[type="password"] {
  width: 90%;
}
.banneritem a {
  font-weight: bold;
}
.bannerfooter {
  border-top: 1px solid #ddd;
  font-size: 9pt;
  padding-top: 12px;
  text-align: right;
}
.categories-module,
ul.categories-module,
.category-module,
ul.category-module {
  margin: 0;
}
.categories-module li,
ul.categories-module li,
.category-module li,
ul.category-module li {
  list-style: none;
  padding: 12px 0;
  border-top: 1px solid #ddd;
}
.categories-module li:first-child,
ul.categories-module li:first-child,
.category-module li:first-child,
ul.category-module li:first-child {
  border-top: 0;
  padding-top: 0;
}
.categories-module h4,
ul.categories-module h4,
.category-module h4,
ul.category-module h4 {
  font-size: 11pt;
  font-weight: normal;
  margin: 0;
}
.feed h4 {
  font-weight: bold;
}
.feed .newsfeed,
.feed ul.newsfeed {
  border-top: 1px solid #eee;
}
.feed .newsfeed .feed-link,
.feed .newsfeed h5.feed-link,
.feed ul.newsfeed .feed-link,
.feed ul.newsfeed h5.feed-link {
  font-size: 11pt;
  font-weight: normal;
  margin: 0;
}
.latestusers,
ul.latestusers {
  margin-left: 0;
}
.latestusers li,
ul.latestusers li {
  background: #eee;
  display: inline-block;
  padding: 5px 10px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.stats-module dt,
.stats-module dd {
  display: inline-block;
  margin: 0;
}
.stats-module dt {
  font-weight: bold;
  width: 35%;
}
.stats-module dd {
  width: 60%;
}
div.tagspopular ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
div.tagspopular ul li {
  color: #666;
  display: inline-block;
  margin: 0 5px 5px 0;
}
div.tagspopular ul li a {
  background: #eee;
  border-radius: 3px;
  color: #666;
  display: block;
  padding: 2px 5px;
}
div.tagspopular ul li a:hover,
div.tagspopular ul li a:focus,
div.tagspopular ul li a:active {
  background: #8f4724;
  color: #fff;
  text-decoration: none;
}
div.tagssimilar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
div.tagssimilar ul li {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}
div.tagssimilar ul li a {
  color: #666;
}
div.tagssimilar ul li a:hover,
div.tagssimilar ul li a:focus,
div.tagssimilar ul li a:active {
  color: #8f4724;
}
.accordionLayout .bt-inner .bt-inner-wrapper img {
  border-right: 3px solid #cc6633;
  margin-right: 15px;
}
a:focus {
  outline: none;
}
.custom .box {
  color: #6f6f6f;
  line-height: 24px;
  margin-top: 16px;
}
.custom .box p {
  float: left;
}
.custom .box h3 {
  font-size: 18px;
  color: #606060;
  margin: 0 0 8px;
  font-weight: 600;
}
.custom .box div {
  padding: 0 0 12px 60px;
}
.custom .box:first-child {
  padding-top: 0;
  margin-top: 12px;
}
.custom .box:last-child div {
  background: none;
  padding-bottom: 0;
}
.custom_load {
  padding-top: 12px;
}
.custom_load p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
  font-family: "Titillium Web";
  text-transform: uppercase;
}
.custom_load p img {
  margin-bottom: 20px;
}
.bt-date-d,
.bt-date-m,
.defaultLayout .bt-inner .bt-title {
  font-family: "Titillium Web";
}
.item-pagebasic {
  text-align: center;
  float: left;
  margin-right: 83px;
}
.item-pagebasic .box-top h3 {
  font-size: 36px;
  font-family: "Titillium Web";
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 30px;
}
.item-pagebasic .box-top p {
  font-size: 15px;
  color: #fff;
  line-height: 30px;
}
.box-top {
  margin: 0 0 30px;
}
.box-bottom {
  width: 100%;
  float: left;
}
.box-bottom .box-basic {
  background: #F5F5F5;
  color: #1A1A1A;
  float: left;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
  width: 20%;
  transition: all 0.01s ease;
  -webkit-transition: all 0.01s ease;
  -moz-transition: all 0.01s ease;
  -o-transition: all 0.01s ease;
}
.box-bottom .box-basic:hover {
  transform: scale(1.03,1.03);
  -webkit-transform: scale(1.03,1.03);
  -moz-transform: scale(1.03,1.03);
  -o-transform: scale(1.03,1.03);
  -ms-transform: scale(1.03,1.03);
  background: #fff;
  box-shadow: 0 0 4px 0px #000;
  position: relative;
}
.box-bottom .box-basic:hover p {
  background-color: #cc6633;
  border-right: 0;
}
.box-bottom .box-basic:hover h3 {
  border-right: 0;
}
.box-bottom .box-basic:hover a.botton {
  background-color: #d17547;
  border-bottom: 3px solid #cc6633;
  text-decoration: none;
}
.box-bottom .box-basic ul li {
  border-bottom: 1px solid #e9e9e9;
  padding: 12px 0;
  list-style: none;
}
.box-bottom .box-basic p {
  border-right: 1px solid #656565;
  background-color: #262626;
  padding: 0 35px;
  margin: 0;
  font-family: "Titillium Web";
  font-weight: 600;
  font-size: 40px;
  line-height: normal;
  color: #fff;
}
.box-bottom .box-basic h3 {
  border-right: 1px solid #656565;
  font-size: 18px;
  font-weight: normal;
  margin: 0;
  padding: 8px 0;
  color: #fff;
  border-top: 1px solid #3d3d3d;
  border-bottom: 1px solid #3d3d3d;
  text-transform: uppercase;
  font-family: "Titillium Web";
  background-color: #2f2f2f;
}
.box-bottom .box-basic a.botton,
.box-tab a.botton {
  background-color: #151515;
  border-bottom: 3px solid #000000;
  border-radius: 3px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 15px;
  font-family: "Titillium Web";
  font-weight: 600;
  line-height: 36px;
  margin: 4px 0;
  padding: 0 16px;
  text-transform: uppercase;
}
.box-bottom .box-basic ul {
  border-right: 1px solid #d7d7d7;
}
.box-bottom .box-basic:last-child p,
.box-bottom .box-basic:last-child h3 {
  border-right: 0;
}
.box-basic:first-child ul li img {
  padding: 0 10px 0 22px;
}
.main-top .t3-module {
  margin-bottom: 0;
}
.tab-items-inner .box-tab p {
  color: #fff;
  padding: 0 20px;
}
.box-tab {
  float: left;
  font-size: 12px;
  margin-bottom: 20px;
  text-align: center;
  width: 33.33%;
}
.box-tab h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  font-family: "Titillium Web";
}
.box-tab a.botton {
  margin-top: 25px;
}
.box-tab a.botton:hover {
  background-color: #cc6633;
  border-bottom: 3px solid #a35229;
  text-decoration: none;
}
.custom_load .dad {
  background: url(/templates/bt_business/images/bg-loadding.png) top left repeat-x;
  width: 297px;
  height: 18px;
  display: inline-block;
}
.custom_load .dad .child1 {
  background: url(/templates/bt_business/images/themes/orange/loadding.png) top left repeat-x;
  height: 18px;
  display: inline-block;
  overflow: hidden;
  text-indent: 999px;
  border-radius: 3px 0 0 3px;
}
.main-top {
  background: url(/templates/bt_business/images/bg_buttontab.png) repeat-x left top #222222;
  
}
.main-top .bt-tabs {
  margin: 5px;
  background: #222222;
  border: none;
}
.main-top .tab-buttons {
  background: url(/templates/bt_business/images/bg_buttontab.png) repeat-x left bottom #101010;
}
.main-top .tab-buttons ul {
  
  list-style: none;
  height: auto;
  
  width: 100%;
  height: 58px;
  padding: 0 !important;
  margin: 0 !important;
}
.main-top .tab-buttons ul li.active span {
  color: #9e9e9e !important;
}
.main-top .tab-buttons ul li.active,
.main-top .tab-buttons ul li.active:hover {
  background: #222;
  color: #fff;
}
.main-top .tab-buttons ul li.active,
.main-top .tab-buttons ul li.active:hover span {
  color: #fff !important;
}
.main-top .tab-buttons ul li:HOVER {
  background: #222;
  color: #fff !important;
}
.main-top .tab-buttons ul li:HOVER span {
  color: #fff !important;
}
.main-top .tab-buttons ul li span {
  color: #7a7a7a !important;
}
.main-top .tab-buttons ul li {
  height: 22px;
  float: left;
  border-right: 1px solid #393939;
  font-size: 12px;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: tahoma, arial, time new roman;
  color: #7a7a7a;
  cursor: pointer;
  text-align: center !important;
}
.main-top .tab-items {
  position: relative;
  overflow: hidden;
}
.main-top .tab-items > div {
  position: static;
}
.main-top .tab-items > div > div {
  opacity: 0;
  display: block;
  text-align: left !important;
  position: absolute;
  
  overflow: hidden;
  background: none;
}
.main-top .bt-tabs {
  margin: 0;
}
.main-top .tab-items-inner {
  min-height: 125px;
  padding: 25px 20px 50px;
}
.main-top .tab-items-inner p {
  color: #fff;
}
.main-top .btTab-article-title {
  color: #3caca3;
  font-size: 16px;
  text-transform: uppercase;
}
.main-top .tab-buttons ul li {
  font-size: 16px;
  font-weight: normal;
  padding: 3px 20px 0;
  line-height: 50px;
  height: auto;
  overflow: hidden;
}
.main-top .tab-buttons ul li.active {
  border-bottom: 1px solid #202020;
  padding-bottom: 3px;
  border-top: 4px solid #f47621;
  padding-top: 0;
}
.box1 {
  padding: 80px 42px;
  background: url(/templates/bt_business/images/box1-bg.png) bottom right no-repeat;
}
.box1 .cat {
  color: #fff;
  font-weight: 300;
  font-family: "Titillium Web";
  font-size: 20px;
  text-transform: uppercase;
}
.box1 h3 {
  margin: 0;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 60px;
  line-height: 60px;
  padding-bottom: 10px;
}
.box1 img {
  padding-right: 30px;
}
.box1 p {
  margin: 0 0 15px;
}
.box1 a.botton {
  background-color: #d6855c;
  border-bottom: 3px solid #cc6633;
  border-radius: 3px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Titillium Web";
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  margin: 4px 0;
  padding: 0 16px;
  text-transform: uppercase;
}
.box1 a.botton:hover {
  background-color: #151515;
  border-bottom: 3px solid #000;
  text-decoration: none;
}
.tab-items .active {
  z-index: 999;
}
.main-top .tab-items-inner:nth-child(3) {
  padding: 0;
}
#panel_content .t3-module.moduletable50 {
  width: 48%;
}
.btl-border {
  background-color: #42B0A7;
  border-bottom: 3px solid #cc6633;
  border-radius: 3px;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Titillium Web";
  font-size: 18px;
  font-weight: 400;
  line-height: 36px;
  margin: 4px 0;
  padding: 0 16px;
  text-transform: uppercase;
}
.btl-border:hover {
  background-color: #151515;
  border-bottom: 3px solid #000;
  text-decoration: none;
}
#panel_content .t3-module {
  width: 23%;
  margin-left: 2%;
  float: left;
}
#panel_content .t3-module ul.nav li a {
  color: #b5b4b4;
  border-bottom: 1px solid #303030;
  padding: 4px 0;
}
#panel_content .t3-module ul.nav li a:hover {
  background: none;
}
#panel_content .t3-module ul.nav li:last-child a {
  border-bottom: 0;
}
#panel_content .t3-module h3 {
  display: block !important;
  background: url(/templates/bt_business/images/line-panel.png) bottom left repeat-x;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
}
#panel_content .t3-module h3 > span {
  border-bottom: 1px solid #9e9e9e;
  padding-bottom: 4px;
  display: inline-block;
}
.moduletable50 #btl-content-login .social_btlogin {
  width: 49%;
  float: right;
  border-bottom: 0;
  border-left: 1px solid #292929;
}
.moduletable50 #btl-content-login .btl-input .user,
.moduletable50 #btl-content-login .btl-input .pass {
  
  border: 1px solid #424242 !important;
  background-color: #282828 !important;
}
.moduletable50 #btl-checkbox-remember {
  float: left;
  margin: 4px 5px 0 0;
}
.moduletable50 #btl-content-login #btl-input-remember {
  display: inline-block;
  float: left;
  padding: 21px 0 0 0;
  width: 100%;
  text-align: left;
}
.moduletable50 #btl-content-login div.btl-buttonsubmit {
  float: left;
}
.moduletable50 #btl-content-login .btl-formlogin {
  float: right;
  width: 50%;
}
.moduletable50 #btl-content-login .social_btlogin ul {
  background: none;
}
#mod-search-searchword {
  background-color: #282828;
  border: 1px solid #424242;
  border-radius: 2px;
  margin: 15px 0;
}
.form-search .btn-primary {
  background: #cc6633 !important;
  border-bottom: 3px solid #a35229;
  border-radius: 3px;
  text-shadow: none;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Titillium Web";
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  margin: 4px 0;
  padding: 0 12px;
}
.form-search .btn-primary:hover {
  background: #e04245;
  border-bottom-color: #ce2e31;
}
.t3-spotlight-1 .t3-module {
  padding: 0 10px;
}
.t3-spotlight-1 .item-last .t3-module {
  padding-left: 0;
  padding-right: 40px;
}
#bt_scrolling div.k2ItemsBlock ul li {
  float: left;
  width: 33.33%;
  list-style: none;
}
#bt_scrolling div.k2ItemsBlock ul li .item-inner {
  background-color: #222;
  margin-left: 20px;
}
#bt_scrolling div.k2ItemsBlock ul li .item-inner:hover {
  background-color: #cc6633;
}
#bt_scrolling div.k2ItemsBlock ul li .item-inner:hover a.moduleItemImage:before {
  background: url(/templates/bt_business/images/themes/orange/bg-scroll-showcase-a-before-hover.png);
}
#bt_scrolling a.moduleItemImage:hover img {
  opacity: 0.5;
}
#bt_scrolling a.moduleItemImage:hover .hover_over {
  background: url(/templates/bt_business/images/themes/orange/bg-scroll-showcase-img-before.png) no-repeat center center;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 99;
}
#bt_scrolling div.k2ItemsBlock ul {
  margin-left: -20px;
}
#bt_scrolling div.k2ItemsBlock {
  display: inline-block;
  margin: 30px 40px;
}
#bt_scrolling div.k2ItemsBlock p.modulePretext {
  font-family: "Titillium Web";
  font-weight: 400;
}
#bt_scrolling .bt-author {
  background: url(/templates/bt_business/images/showcase_scroll_author.png) no-repeat scroll left;
  margin-right: 10px;
  padding-left: 20px;
  font-family: "Titillium Web";
  font-size: 11px;
  font-weight: bold;
}
#bt_scrolling .bt-author a {
  color: #fff;
}
#bt_scrolling .bt-date {
  background: url(/templates/bt_business/images/showcase_scroll_date.png) no-repeat scroll left center;
  padding-left: 20px;
  font-family: "Titillium Web";
  font-size: 11px;
  font-weight: bold;
}
#bt_scrolling div.k2ItemsBlock ul li div.moduleItemIntrotext a.moduleItemImage img {
  border: 0;
}
#bt_scrolling div.k2ItemsBlock ul li a.moduleItemImage:before {
  background: url(/templates/bt_business/images/bg-scroll-showcase-a-before.png) no-repeat left top;
  bottom: 0;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  width: 14px;
  z-index: 99;
}
#bt_scrolling div.k2ItemsBlock ul li a.moduleItemImage {
  position: relative;
  display: inline-block;
  width: 100%;
}
#bt_scrolling div.k2ItemsBlock ul li a.moduleItemTitle {
  color: #fff;
  color: #FFFFFF;
  display: block;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  padding-bottom: 10px;
  text-transform: none;
  font-family: "Titillium Web";
}
#bt_scrolling div.k2ItemsBlock ul li div.moduleItemIntrotext {
  display: block;
  line-height: 24px;
  padding: 15px 20px 40px;
  color: #fff;
}

.items-leading .leading {
  margin-bottom: 48px;
}
.items-row .item {
  margin-bottom: 48px;
}
.divider-vertical {
  margin: 0 0 48px;
  border: 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #fff;
}
.article-aside {
  color: #999;
  font-size: 10pt;
  margin-bottom: 24px;
}
.article-info {
  margin: 0;
  width: 90%;
}
.article-info .article-info-term {
  display: none;
}
.article-info dd {
  float: left;
  margin-left: 0;
  margin-right: 10px;
  white-space: nowrap;
}
.article-info dd span {
  font-weight: bold;
}
.article-footer {
  color: #999;
  font-size: 10pt;
  margin-bottom: 24px;
}
article img[align=left],
.img_caption.left,
.pull-left.item-image {
  margin: 0 40px 24px 0;
}
article img[align=right],
.img_caption.right,
.pull-right.item-image {
  margin: 0 0 24px 40px;
}
.img-intro-none,
.img-intro-left,
.img-intro-right,
.img-fulltext-none,
.img-fulltext-left,
.img-fulltext-right,
.img_caption {
  position: relative;
}
.img-intro-none,
.img-intro-left,
.img-intro-right,
.img-fulltext-none,
.img-fulltext-left,
.img-fulltext-right,
.img_caption {
  margin-bottom: 24px;
  max-width: 100%;
}
.img-fulltext-left {
  float: left;
  margin-right: 40px;
}
.img-fulltext-right {
  float: right;
  margin-left: 40px;
}
.img-intro-none img,
.img-intro-left img,
.img-intro-right img,
.img-fulltext-none img,
.img-fulltext-left img,
.img-fulltext-right img {
  margin: 0;
}
.img_caption img {
  margin-bottom: 1px !important;
}
.img_caption p.img_caption {
  background: #eee;
  color: #666;
  font-size: 9pt;
  width: 100%;
  margin: 0;
  padding: 5px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  clear: both;
}
article aside .btn-group > .dropdown-toggle,
article aside .btn-group > .dropdown-toggle:hover,
article aside .btn-group > .dropdown-toggle:active,
article aside .btn-group > .dropdown-toggle:focus {
  background: transparent;
  border: 0;
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.login_form fieldset,
.login fieldset {
  padding: 15px 0 0;
}
.login_form fieldset p,
.login fieldset p {
  margin: 0 0 5px;
}
.login_form label,
.login label {
  display: block;
  font-weight: bold;
}
.login-fields {
  margin: 0 0 10px;
}
.login_form .input,
.login_form .inputbox,
.login-fields .required {
  margin-left: 10px;
  width: 150px;
}
.login_form .remember .input,
.login_form .remember .inputbox {
  width: 20px;
}
.form-register fieldset {
  padding: 0 0 10px;
}
.form-register p {
  margin: 0 0 5px;
}
.form-register p.form-des {
  margin: 15px 0;
}
.form-register label {
  display: block;
  float: left;
  font-weight: bold;
  text-align: right;
  width: 130px;
}
.form-register .input,
.form-register .inputbox {
  margin-left: 10px;
  width: 200px;
}
.form-register .btn,
.form-register .button {
  margin-left: 140px;
}
.registration fieldset dt {
  margin-right: 5px;
}
.admintable textarea {
  max-width: 90% !important;
  resize: none;
}
#mailto-window {
  background: #fff;
  margin: 10px 0 20px;
  padding: 0;
  position: relative;
}
#mailto-window h2 {
  margin-top: 0;
  margin-bottom: 20px;
}
#mailto-window .mailto-close {
  background: #FFF;
  background: -moz-linear-gradient(bottom,#ccc,#f0f0f0);
  background: -webkit-linear-gradient(bottom,#ccc,#f0f0f0);
  border: 1px solid #CCC;
  border-radius: 3px;
  color: #666;
  font-size: 92%;
  padding: 2px 5px;
  position: absolute;
  top: -10px;
  right: 0px;
  text-shadow: 1px 1px 0 #f0f0f0;
}
#mailto-window .mailto-close a {
  color: #666;
}
#mailto-window .mailto-close:hover {
  border-color: #999;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
}
#mailtoForm .formelm {
  padding: 5px 0;
  vertical-align: middle;
  overflow: hidden;
}
#mailtoForm .formelm label {
  display: inline-block;
  float: left;
  font-weight: bold;
  vertical-align: middle;
  width: 100px;
}
#mailtoForm p {
  margin-top: 20px;
}
#mailtoForm .input,
#mailtoForm .inputbox {
  width: 65%;
}
#mailtoForm .btn,
#mailtoForm .button,
#mailtoForm button {
  margin-right: 5px;
}
.user-details {
  padding: 10px 0;
}
.user-details p {
  margin: 0 0 5px;
}
.user-details label {
  display: block;
  float: left;
  font-weight: bold;
  text-align: right;
  width: 130px;
}
.user-details .input,
.user-details .inputbox {
  margin-left: 10px;
  width: 200px;
}
.user-details .btn,
.user-details button {
  margin-left: 140px;
}
.user-details .paramlist .paramlist_key {
  padding: 0 0 5px;
  width: 130px;
}
.user-details .paramlist .paramlist_value {
  padding: 0 0 5px;
}
.user-details .user_name span {
  font-weight: bold;
  padding-left: 10px;
}
.reset .form-validate p,
.remind .form-validate p {
  background: #eee;
  border: 1px solid #ddd;
  margin-bottom: 24px;
  padding: 12px 24px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.reset .form-validate fieldset dl,
.remind .form-validate fieldset dl {
  margin: 0;
}
.reset .form-validate fieldset dt,
.remind .form-validate fieldset dt {
  margin: 4px 0 0 0;
}
#searchForm {
  padding: 12px 24px;
  border: 1px solid #ddd;
  background: #eee;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  *zoom: 1;
}
#searchForm:before,
#searchForm:after {
  display: table;
  content: "";
  line-height: 0;
}
#searchForm:after {
  clear: both;
}
#searchForm fieldset {
  margin: 24px 0;
}
#searchForm legend {
  margin-bottom: 12px;
}
.phrases-box input,
.phrases-box label,
.form-limit input,
.form-limit label,
.only label {
  display: inline-block;
  margin-right: 10px;
}
.phrases-box input {
  margin: 0;
}
.search-results {
  margin-top: 24px;
}
.search-results .result-title {
  font-size: 13pt;
  margin-top: 24px;
}
.search-results .result-category {
  font-size: 9pt;
  color: #999;
}
.search-results .result-text {
  margin-top: 5px;
  margin-bottom: 5px;
}
.search-results .result-created {
  font-size: 9pt;
  color: #999;
}
.contact .accordion-heading .accordion-toggle {
  font-weight: bold;
}
#archive-items > li {
  line-height: normal;
  margin: 0;
  overflow: visible;
  padding: 0;
}
#archive-items div.intro {
  clear: both;
  overflow: hidden;
}
.category-item {
  margin-top: 24px;
  *zoom: 1;
}
.category-item:before,
.category-item:after {
  display: table;
  content: "";
  line-height: 0;
}
.category-item:after {
  clear: both;
}
.category-item .page-header {
  line-height: normal;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 24px;
}
.category-item .category-item {
  margin-left: 4.2918454935622%;
}
.newsfeed-category > h2,
.newsfeed > h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  margin-bottom: 24px;
  margin-top: 0;
}
.newsfeed-category .category-desc,
.newsfeed .category-desc {
  margin-bottom: 24px;
}
.newsfeed-category .category li,
.newsfeed .category li {
  *zoom: 1;
}
.newsfeed-category .category li:before,
.newsfeed-category .category li:after,
.newsfeed .category li:before,
.newsfeed .category li:after {
  display: table;
  content: "";
  line-height: 0;
}
.newsfeed-category .category li:after,
.newsfeed .category li:after {
  clear: both;
}
.newsfeed > h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 24px;
  margin-bottom: 24px;
  margin-top: 0;
}
.newsfeed .feed-description {
  margin-bottom: 24px;
  font-size: 13pt;
}
.newsfeed .feed-item-description .feed-description {
  font-size: 11pt;
}
.newsfeed ol li > a {
  font-weight: bold;
  font-size: 13pt;
}
.edit textarea {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.edit.item-page fieldset .form-actions {
  clear: both;
}
.button2-left,
.button2-left div {
  float: left;
}
.button2-right,
.button2-right div {
  float: right;
}
.button2-left {
  margin: 5px 5px 0 0;
}
.button2-right {
  margin: 5px 0 0 5px;
}
.button2-left a,
.button2-right a,
.button2-left span,
.button2-right span {
  background: #eee;
  border: 1px solid #e1e1e1;
  color: #999;
  cursor: pointer;
  display: block;
  float: left;
  padding: 2px 10px;
  border-radius: 4px;
}
.button2-left span,
.button2-right span {
  color: #999;
  cursor: default;
}
.button2-left .page a,
.button2-right .page a,
.button2-left .page span,
.button2-right .page span {
  padding: 0 6px;
}
.button2-left a:hover,
.button2-right a:hover {
  background: #e1e1e1;
  color: #444;
  text-decoration: none;
}
.control-group a.modal {
  position: inherit;
  width: auto !important;
  margin-left: 0 !important;
  top: auto !important;
}
.controls img.calendar {
  cursor: pointer;
  margin-left: 5px;
}
#imageForm #upbutton {
  margin-top: -18px;
}
.view-imagesList body {
  padding-top: 0;
}
.view-imagesList .t3-mainbody {
  padding: 0;
}
.view-imagesList .manager.thumbnails {
  overflow: hidden;
}
.view-imagesList .manager.thumbnails li {
  float: left;
  margin: 0 10px 20px;
}
.article-content .pagination ul {
  border-left: 1px solid #ddd;
}
.article-content .pagination li {
  float: left;
  padding: 12px 24px;
  line-height: normal;
  border: 1px solid #ddd;
  border-left: 0;
}
.article-content .pagination li a {
  border: 0;
  text-decoration: none;
  background-color: transparent;
  line-height: normal;
  padding: 0;
}
.pagenavcounter {
  margin: 0 0 24px;
  font-weight: bold;
}
#article-index {
  float: right;
  margin: 0 0 24px 24px;
  padding: 10px;
  width: 30%;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#article-index ul {
  margin: 0 0 0 20px;
}
.pagenav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pagenav li {
  margin: 0;
  padding: 0;
  float: left;
}
.pagenav li.pagenav-prev {
  margin-right: 10px;
}
.pagenav li a {
  padding: 12px 24px;
  line-height: normal;
  border: 1px solid #ddd;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.pagenav li a:hover,
.pagenav li a:active,
.pagenav li a:focus {
  background-color: #666;
  color: #eee;
}
.counter {
  float: right;
  line-height: 1;
  margin: 12px 0;
  text-align: right;
}
.items-more h3 {
  margin: 0 0 5px;
}
.back_button a {
  display: block;
  margin: 10px 0;
}
.filters {
  margin: 12px 0 5px;
}
.display-limit {
  margin: 12px 0 5px;
}
.filters .filter-search,
.filters .display-limit {
  float: left;
  width: 50%;
}
.filters .display-limit {
  float: right;
  text-align: right;
}
#system-message dt {
  font-weight: bold;
}
#system-message dd {
  font-weight: bold;
}
#system-message dd.message ul,
#system-message dd.error ul,
#system-message dd.notice ul {
  margin: 0;
  padding: 0;
}
#system-message dd.message ul li,
#system-message dd.error ul li,
#system-message dd.notice ul li {
  background: none;
  margin: 0;
  padding: 5px;
}
.tip-wrap {
  background: #fff6df;
  border: 1px solid #fb3;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.4);
  -moz-box-shadow: 0 0 3px rgba(0,0,0,0.4);
  box-shadow: 0 0 3px rgba(0,0,0,0.4);
  max-width: 300px;
  z-index: 999;
}
.tip-title {
  border-bottom: 1px solid #fb3;
  font-weight: bold;
  padding: 5px 10px;
}
.tip-text {
  font-size: 11pt;
  margin: 0;
  padding: 5px 10px;
}
.hasTip img {
  border: none;
  margin: 0 5px 0 0;
}
.width-10 {
  width: 10px;
}
.width-20 {
  width: 20px;
}
.width-30 {
  width: 30px;
}
.width-40 {
  width: 40px;
}
.width-50 {
  width: 50px;
}
.width-60 {
  width: 60px;
}
.width-70 {
  width: 70px;
}
.width-80 {
  width: 80px;
}
.width-90 {
  width: 90px;
}
.width-100 {
  width: 100px;
}
.height-10 {
  height: 10px;
}
.height-20 {
  height: 20px;
}
.height-30 {
  height: 30px;
}
.height-40 {
  height: 40px;
}
.height-50 {
  height: 50px;
}
.height-60 {
  height: 60px;
}
.height-70 {
  height: 70px;
}
.height-80 {
  height: 80px;
}
.height-90 {
  height: 90px;
}
.height-100 {
  height: 100px;
}
.iframe-bordered {
  border: 1px solid #ddd;
}
.input-prepend .chzn-container-single .chzn-single {
  border-color: #ccc;
  height: 26px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.input-prepend .chzn-container-active .chzn-single-with-drop {
  -webkit-border-radius: 0 3px 0 0;
  -moz-border-radius: 0 3px 0 0;
  border-radius: 0 3px 0 0;
}
.input-prepend .chzn-container-single .chzn-drop {
  border-color: #ccc;
}
.btn-group .chzn-results {
  white-space: normal;
}
.languageswitcherload {
  float: right;
  width: 100%;
}
.languageswitcherload .mod-languages {
  text-align: right;
}



.t3-header {
  padding-top: 24px;
  padding-bottom: 24px;
}
.logo {
  float: left;
}
.logo a {
  display: inline-block;
  line-height: 1;
  margin: 0;
}
.logo-image {
  overflow: hidden;
}
.logo-image a {
  background-image: url(/templates/bt_business/images/logo.png);
  background-repeat: no-repeat;
  width: 204px;
  height: 65px;
}
.logo-image span,
.logo-image small {
  display: none;
}
.logo-text a {
  color: #444;
  text-decoration: none;
  font-size: 13.75pt;
}
.logo-text:hover a,
.logo-text a:hover,
.logo-text a:active,
.logo-text a:focus {
  text-decoration: none;
}
.logo-text .site-slogan {
  display: block;
  font-size: 11pt;
  margin-top: 5px;
}
.head-search {
  float: right;
  margin-top: 24px;
}
.head-search form {
  margin: 0;
  float: right;
}
.head-search label {
  display: none;
}
.head-search .input {
  background: url(/templates/bt_business/images/themes/orange/ico/search-invert.png) no-repeat 8px center;
  width: 120px;
  padding-left: 26px;
}
.head-search .input:focus {
  color: #444;
  width: 180px;
}
.t3-mainbody {
  padding-bottom: 24px;
  padding-top: 24px;
}
.t3-footer {
  background: #222;
  color: #666;
  *zoom: 1;
}
.t3-footer:before,
.t3-footer:after {
  display: table;
  content: "";
  line-height: 0;
}
.t3-footer:after {
  clear: both;
}
.t3-footer small {
  display: block;
  font-size: 100%;
}
.t3-footer a {
  color: #999;
}
.t3-footer a:hover,
.t3-footer a:active,
.t3-footer a:focus {
  color: #e6e6e6;
}
.t3-footnav {
  padding: 72px 0 48px;
  *zoom: 1;
}
.t3-footnav:before,
.t3-footnav:after {
  display: table;
  content: "";
  line-height: 0;
}
.t3-footnav:after {
  clear: both;
}
.t3-footnav ul {
  list-style: none;
  margin-left: 0;
}
.t3-footnav li {
  line-height: 24px;
}
.t3-footnav .module-title {
  font-size: 15pt;
  color: #999;
}
.t3-copyright {
  border-top: 1px solid #2f2f2f;
  font-size: 9pt;
  padding: 48px 0 96px;
  *zoom: 1;
}
.t3-copyright:before,
.t3-copyright:after {
  display: table;
  content: "";
  line-height: 0;
}
.t3-copyright:after {
  clear: both;
}
.copyright {
  float: left;
}
.poweredby {
  float: right;
  text-align: right;
}
.poweredby .t3-logo,
.poweredby .t3-logo-small {
  float: right;
  opacity: .5;
}

html,
body {
  color: #383838;
  overflow-x: hidden;
}
.btp-grid-item {
  float: left;
  margin: 0;
}
.btp-grid-view-inner {
  margin-left: -22px;
}
.btp-grid-item-inner {
  margin-left: 22px;
  margin-bottom: 22px;
  background: #f1f1f1;
}
.btp-grid-item-inner:hover {
  background: #cc6633;
}
.link-div {
  float: none;
  display: none;
  position: absolute;
  top: 30%;
  left: 30%;
}
.link-div .modal {
  position: relative;
  margin: 0;
  top: auto;
  left: auto;
}
.link-div a.zoom-img-list-custom-btp,
.link-div a.readmore_detail:hover,
.custom-btp-template .zoom-img-list-custom-btp,
.custom-btp-template .readmore_detail:hover,
.porfolio_related a.link_article,
.porfolio_related .defaultLayout2 .bt-contentshowcase a.img_show:hover {
  background-color: #E94747;
}
.link-div a.readmore_detail,
.link-div a.zoom-img-list-custom-btp:hover,
.custom-btp-template .zoom-img-list-custom-btp:hover,
.custom-btp-template .readmore_detail,
.porfolio_related .defaultLayout2 .bt-contentshowcase a.link_article:hover,
.porfolio_related a.img_show {
  background-color: #cc6633;
}
.btp-item {
  float: left;
  margin: 0;
  width: 50%;
}
.btp-list-inner {
  margin-left: -22px;
}
.btp-item-inner {
  margin-left: 22px;
  background: #F1F1F1;
  margin-bottom: 22px;
}
.btp-item-inner:hover {
  background: #cc6633;
  color: #fff;
}
.btp-list-item-intro {
  text-align: left;
  padding: 0 24px 30px 24px;
  color: #676767;
}
.btp-list .btp-item-title {
  margin: 0;
  padding: 9px 0 12px 0;
  font-family: "Titillium Web";
  text-transform: uppercase;
  font-weight: 200;
}
.btp-categories {
  text-align: left;
  line-height: 35px;
  margin-bottom: 20px;
  display: inline-block;
}
.btp-categories a {
  background: #111111;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-transform: none;
  float: left;
  padding: 0;
  border-radius: 0;
  margin: 0;
  line-height: 35px;
  text-decoration: none;
}
.btp-categories a + a {
  border-left: 1px solid #333333;
}
.btp-categories a:hover,
.btp-categories a.active {
  background: #cc6633;
}
.btp-detail-title {
  font-family: "Titillium Web";
  text-transform: uppercase;
  font-weight: 300;
  color: #cc6633;
  line-height: normal;
  font-size: 26px;
  border-bottom: 1px solid #bdbdbd;
  padding: 0;
  margin-bottom: 24px;
  margin-top: 0;
}
.btp-title-desc-full,
.btp-title-extrafield,
.porfolio_related .module-title {
  font-family: "Titillium Web";
  font-weight: 300;
  color: #cc6633;
  line-height: normal;
  font-size: 20px;
  border-bottom: 1px solid #bdbdbd;
  padding: 0;
  margin: 0;
}
.t3-mainbody .porfolio_related .module-title span {
  color: #cc6633;
  text-transform: none;
  font-family: "Titillium Web";
  font-weight: 300;
  line-height: normal;
  font-size: 20px;
}
.btp-detail-title span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #cc6633;
  margin-bottom: -1px;
}
.btp-title-desc-full span,
.btp-title-extrafield span,
.porfolio_related .module-title > span {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid #cc6633;
  margin-bottom: -1px;
  background: none;
}
.btp-detail-voting {
  color: #cc6633;
}
.category-in-details {
  display: inline-block;
  background: url(/templates/bt_business/images/themes/orange/bg-category-in-details.png) no-repeat scroll left center transparent;
  padding-left: 19px;
  margin-left: 17px;
  font-weight: bold;
}
.extrafield-title {
  display: block;
  font-size: 14px;
  color: #cc6633;
  font-weight: normal;
}
.btp-detail-desc .btp-detail-desc-full {
  border: none;
  width: 60%;
  float: left;
}
.btp-detail-desc .btp-detail-extrafields {
  width: 40%;
  float: left;
}
.btp-detail-desc .btp-detail-extrafields .btp-detail-extrafields-inner {
  margin-left: 40px;
}
.porfolio_related .defaultLayout2 .bt-inner {
  margin: 0 0 0 22px;
  background: #f5f5f5;
}
.porfolio_related .jcarousel-skin-tango {
  margin-left: -22px;
}
.defaultLayout2 .bt-inner .bt-title {
  font-family: "Titillium Web";
}
.porfolio_related .defaultLayout2 .bt-inner .bt-title {
  padding: 0 0 8px 0;
  font-family: "Titillium Web";
  font-weight: 300;
  font-size: 16px;
  text-transform: uppercase;
}
.porfolio_related .bt-inner-info {
  text-align: left;
  padding: 15px;
}
.porfolio_related .defaultLayout2 .bt-inner:hover {
  background: #cc6633;
}
.porfolio_related .absolute_link + .absolute_link {
  margin-left: 3px;
}
.t3-header .t3-megamenu .mega-nav .mega-group > .mega-group-title,
.t3-header .t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title,
.t3-header .t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title {
  color: #fff;
  font-family: "Titillium Web";
  font-size: 14px;
  padding-left: 5px;
  border-bottom: 1px solid #4f4d4d;
  font-weight: 300;
}
.t3-header .t3-megamenu .mega-nav > li .separator,
.t3-header .t3-megamenu .mega-nav > li a,
.t3-header .t3-megamenu .dropdown-menu .mega-nav > li a {
  padding: 0 0 0 5px;
  line-height: 32px;
  display: block;
}
.t3-header .container-inner {
  border-bottom: 3px solid #cc6633;
}
.t3-mainnav {
  background: none;
  border: none;
  float: right;
}
.page-heading {
  padding-top: 63px;
}
.logo a {
  height: 60px;
  display: block;
  width: 250px;
  background: url(/templates/bt_business/images/logo.png) no-repeat left center transparent;
}
.t3-mainnav .navbar .nav > li > .separator,
.t3-mainnav .navbar .nav > li > a {
  font-family: "Titillium Web";
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  line-height: 24px;
  padding: 18px 20px;
  color: #fff;
  display: inline-block;
}
.background_slidieshow #cp-caption {
  
  left: 0;
}
.background_slidieshow .cp-desc {
  font-family: "Titillium Web";
  font-weight: 300;
  background: none;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
#cp-caption .button_inner a + a {
  margin-left: 5px;
}
#cp-caption .button_inner a {
  font-size: 20px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Titillium Web";
  font-weight: 300;
  border-radius: 5px;
  display: inline-block;
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  text-decoration: none;
}
.spotlight_container_inner {
  background: #000;
  border-top: 2px solid #cc6633;
  border-bottom: 1px solid #161616;
}
.spotlight_bottom .t3-module {
  padding-left: 18px;
  border-left: 1px solid #161616;
  margin: 0;
}
.spotlight_bottom-inner-2 .back_to_top a {
  background: url(/templates/bt_business/images/themes/orange/bg-arrow-bottom.png) scroll no-repeat center top transparent;
  display: inline-block;
  width: 45px;
  height: 20px;
}
.spotlight_bottom .item-first .t3-module {
  border-left: none;
}
.spotlight_bottom .t3-module h3.module-title {
  color: #fff;
  font-family: "Titillium Web";
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  margin: 0;
}
.spotlight_bottom .t3-module.googlemap {
  padding-right: 18px;
}
.spotlight_bottom .nav > li > a:hover {
  color: #cc6633;
  background: none;
}
.t3-footer .nav > li.active  a,
.t3-footer .nav > li a:hover {
  background-color: transparent;
  color: #cc6633;
}
.t3-footer .nav > li + li > .separator,
.t3-footer .nav > li + li > a {
  background: url(/templates/bt_business/images/bg-split-menu-bottom.png) scroll no-repeat left center transparent;
  margin-left: 10px;
  padding-left: 20px;
}
.social_link p {
  display: inline-block;
  margin: 0 25px 0 0;
  line-height: 31px;
  font-family: 'Open Sans';
  font-weight: bold;
  color: #414141;
  font-size: 16px;
  height: 31px;
}
.social_link {
  text-align: right;
  padding-right: 18px;
}
.acymailing_text {
  float: left;
  font-family: "open sans";
  font-size: 16px;
  font-weight: bold;
  height: 31px;
  line-height: 31px;
  margin-left: 0;
  margin-right: 15px;
}
.acymailing_module .acymailing_fulldiv {
  margin-left: 18px !important;
}
.acymailing_module_form .acysubbuttons .button {
  background: url(/templates/bt_business/images/bg-submit_subscribe.png) scroll no-repeat center center #cc6633 !important;
}
.acymailing_module_form .acyfield_email,
.acymailing_module_form .acysubbuttons {
  display: inline-block;
  float: left;
}
.footer_block .t3-module {
  border-left: 1px solid #161616;
}
.footer_block .item-first .t3-module {
  border-left: none;
}
.t3-copyright .nav {
  margin: 0;
  padding-left: 18px;
}
.t3-copyright .module {
  padding-left: 18px;
  color: #ababab;
}
.t3-sidebar .t3-sidebar-inner {
  padding: 0 10px;
}
.t3-content-inner {
  padding: 0 10px;
}
div.catItemHeader h3.catItemTitle,
div.userItemHeader h3.userItemTitle,
div.tagItemHeader h2.tagItemTitle,
h2.latestItemTitle,
div.itemHeader h2.itemTitle,
.article-header .article-title {
  color: #cc6633;
  margin: 0;
  padding: 10px 0 0 0;
  font-weight: 400;
  font-family: "Titillium Web";
  font-size: 26px;
  line-height: normal;
}
div.catItemDateCreated,
div.userItemHeader div.userItemDateCreated,
div.tagItemDateCreated,
div.latestItemDateCreated,
div.itemDateCreated,
.published {
  display: inline-block;
  background: url(/templates/bt_business/images/themes/orange/icon_item_infor_date.png) scroll no-repeat left center transparent;
  padding-left: 20px;
}
* + div.catItemDateCreated,
div.userItemHeader * + div.userItemDateCreated,
* + div.tagItemDateCreated,
* + div.itemCommentLink,
* + div.itemDateCreated,
.article-header * + .published,
.article-header * + .category-name {
  margin-left: 18px;
}
div.catItemCategory,
div.userItemCategory,
div.tagItemCategory,
div.latestItemCategory,
div.itemCategory,
.category-name {
  display: inline-block;
  margin: 0 0 0 18px;
  border: none;
  padding: 0 0 0 20px;
  background: url(/templates/bt_business/images/themes/orange/icon_item_infor_category.png) scroll no-repeat left center transparent;
}
div.catItemView,
div.userItemView,
div.tagItemView,
div.latestItemView,
.items-row {
  padding: 0 0 15px 0;
  margin: 0 0 25px 0;
  border-bottom: 1px solid #d4d4d4;
}
div.catItemReadMore a,
div.userItemReadMore a,
div.tagItemReadMore a,
div.latestItemReadMore a,
a.readmore_button {
  display: inline-block;
  font-family: "Titillium Web";
  font-size: 14px;
  font-weight: 300;
}
div.itemCommentsForm form#comment-form label,
div.itemTagsBlock ul.itemTags li a {
  font-family: "Titillium Web";
}
div.itemCommentsForm h3.k2ItemCommentFormTitle {
  font-family: "Titillium Web";
  color: #cc6633;
}
div.itemCommentsForm form input.inputbox {
  float: left;
  border: 1px solid #e4e4e4;
  height: 24px;
  width: 290px;
  margin: 0 15px 0 0;
  line-height: 24px;
  padding: 3px 5px;
  border-radius: 0;
  box-shadow: none;
}
div.itemCommentsForm form input#submitCommentButton {
  background: url(/templates/bt_business/images/themes/orange/bg-submit-comment-k2.png) scroll repeat-x left top transparent;
  font-family: "Titillium Web";
  float: left;
}
.t3-navhelper {
  background: #fff url(/templates/bt_business/images/bg_navhelper.png) repeat-x bottom left;
  border-bottom: 1px solid #e9e9e9;
  padding: 10px;
}
.item_navhelper {
  background: url(/templates/bt_business/images/sperate_navhelper.png) scroll no-repeat left center transparent;
  padding-left: 20px;
  margin-left: 12px;
  display: inline-block;
}
.first_item {
  background: url(/templates/bt_business/images/themes/orange/sperate_navhelper_home.png) scroll no-repeat left 4px transparent;
  padding-left: 22px;
  margin: 0;
}
.t3-module.bg_green {
  color: #fff;
  background: #cc6633;
}
.bg_green  .nav > li > a {
  background: url(/templates/bt_business/images/bg-menu-right-normal.png) scroll no-repeat 7px center #cc6633;
  color: #fff;
  display: block;
  padding: 8px 0 8px 30px;
}
.bg_green  .nav > li + li {
  border-top: 1px solid #d78860;
  padding-top: 1px;
}
.bg_green .nav > li > a:hover,
.bg_green .nav > li.active > a {
  background: url(/templates/bt_business/images/bg-menu-right-hover.png) scroll no-repeat 7px center #d78860;
}
.box_contact_inner + .box_contact_inner {
  border-top: 1px solid #d78860;
}
.box_contact_inner {
  padding: 11px 10px 11px 48px;
}
.box_contact_inner.contact_inner1 {
  background: url(/templates/bt_business/images/icon_contact_phone.png) scroll no-repeat 15px 14px transparent;
  font-size: 16px;
}
.box_contact_inner.contact_inner2 {
  background: url(/templates/bt_business/images/icon_contact_add.png) scroll no-repeat 15px 18px transparent;
}
.box_contact_inner.contact_inner3 {
  background: url(/templates/bt_business/images/icon_contact_email.png) scroll no-repeat 15px 17px transparent;
  font-weight: bold;
}
.box_contact_inner.contact_inner4 {
  background: url(/templates/bt_business/images/icon_contact_tt_link.png) scroll no-repeat 15px 15px transparent;
}
.t3-mainbody .bg_green .module-title {
  color: #fff;
  background: none;
  border-bottom: 1px solid #d37b50;
  margin: 0 0 4px 0;
  padding: 0 13px 0 15px;
}
.right_bar .defaultLayout2 .bt-inner a {
  display: inline-block;
  margin-top: 5px;
  margin-right: 10px;
}
.right_bar .defaultLayout2 .bt-inner .bt-introtext {
  font-family: "Titillium Web";
  font-size: 14px;
  font-weight: 400;
}
div.k2TagCloudBlock a,
div.k2TagCloudBlock a:hover {
  display: inline-block;
  background: #acacac;
  border-radius: 3px;
  color: #fff;
  font-family: "Titillium Web";
  font-size: 14px !important;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  font-weight: 400;
}
div.k2TagCloudBlock a:hover {
  background: #cc6633;
}
div.k2Pagination {
  padding: 0;
  margin: 0;
  text-align: left;
}
ul.pagination-list,
div.k2Pagination ul.pagination-list {
  margin-bottom: 15px;
  text-align: left;
}
ul.pagination-list li.page-number .navitem {
  background: url(/templates/bt_business/images/themes/orange/pagination_number.png) scroll no-repeat center top transparent;
  color: #fff;
  text-decoration: none;
}
ul.pagination-list li.pagination-start .navitem {
  background: url(/templates/bt_business/images/themes/orange/pagination_start.png) scroll no-repeat center top transparent;
}
ul.pagination-list li.pagination-prev .navitem {
  background: url(/templates/bt_business/images/themes/orange/pagination_prev.png) scroll no-repeat center top transparent;
}
ul.pagination-list li.pagination-next .navitem {
  background: url(/templates/bt_business/images/themes/orange/pagination_next.png) scroll no-repeat center top transparent;
}
ul.pagination-list li.pagination-end .navitem {
  background: url(/templates/bt_business/images/themes/orange/pagination_end.png) scroll no-repeat center top transparent;
}
ul.pagination-list li.page-number span.navitem,
ul.pagination-list li.page-number a.navitem:hover {
  background-position: center -23px;
}
ul.pagination-list li.pagination-start a.navitem:hover {
  background-position: center -23px;
}
ul.pagination-list li.pagination-prev a.navitem:hover {
  background-position: center -23px;
}
ul.pagination-list li.pagination-next a.navitem:hover {
  background-position: center -23px;
}
ul.pagination-list li.pagination-end a.navitem:hover {
  background-position: center -23px;
}
nav.pagination {
  margin: 0;
}
.page-heading-inner {
  padding-top: 46px;
}
.page-heading-title {
  color: #fff;
  font-family: "Titillium Web";
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
}
h3.label_contact_form {
  color: #cc6633;
  font-family: "Titillium Web";
  font-weight: 300;
  border-bottom: 1px solid #e4e4e4;
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
}
h3.label_contact_form span {
  border-bottom: 1px solid #cc6633;
  margin-bottom: -1px;
  padding-bottom: 8px;
  display: inline-block;
}
.contact_label label {
  font-size: 14px;
  color: #797979;
  font-family: "Titillium Web";
  font-weight: 300;
  margin-bottom: 3px;
}
.contact_email_copy_input input {
  float: left;
  margin-top: 5px;
  margin-right: 5px;
}
.contact_submit_button button {
  background: url(/templates/bt_business/images/themes/orange/bg-submit-comment-k2.png) scroll repeat-x left top transparent;
  border: none;
  padding: 0 15px;
  height: 33px;
  line-height: 33px;
  font-family: "Titillium Web";
  font-weight: bold;
  font-size: 14px;
  text-shadow: none;
  box-shadow: none;
  color: #fff !important;
  text-transform: uppercase;
  margin: 0;
}
#ezblog-menu .blog-navi {
  background: #cc6633;
  border-radius: 0;
  border: none;
  padding: 4px;
}
#ezblog-body .profile-title a {
  margin-bottom: -1px;
  display: inline-block;
  border-bottom: 1px solid #cc6633;
  color: #cc6633;
  font-family: "Titillium Web";
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
}
#ezblog-body .forCategory .profile-avatar + .profile-info,
#ezblog-body .forTeamBlog .profile-avatar + .profile-info,
#ezblog-body .forBlogger .profile-avatar + .profile-info {
  margin: 0 0 0 115px;
}
.blog-meta-list-item .blog-author a {
  color: #cc6633;
  font-size: 14px;
  font-weight: bold;
}
#ezblog-body .blog-avatar + .blog-cap {
  margin-left: 56px;
}
.blog-meta-list-item .blog-created {
  display: inline-block;
  background: url(/templates/bt_business/images/themes/orange/icon_item_infor_date.png) no-repeat scroll left center transparent;
  padding-left: 20px;
}
.blog-meta-list-item .blog-category {
  display: inline-block;
  background: url(/templates/bt_business/images/themes/orange/icon_item_infor_category.png) no-repeat scroll left center transparent;
  padding: 0 0 0 20px;
  margin: 0 0 0 18px;
}
#ezblog-posts .blog-content .blog-image {
  border: none;
  padding: 0;
  width: 218px;
  z-index: 99;
  position: relative;
  margin: 9px 10px 10px 0;
}
#ezblog-body .blog-post .blog-title,
#ezblog-body .blog-post .blog-title a {
  font-size: 22px;
  font-family: "Titillium Web";
  font-weight: 400;
  line-height: 36px;
}
div.latestItemTagsBlock ul.latestItemTags li a,
div.userItemTagsBlock ul.userItemTags li a,
div.catItemTagsBlock ul.catItemTags li a,
#eblog-wrapper .blog-taglist a {
  color: #fff;
  font-family: "Titillium Web";
  font-weight: 400;
  font-size: 14px;
  background: #acacac;
  border-radius: 3px;
  line-height: 30px;
  height: 30px;
  margin: 0 5px;
  padding: 0 10px;
  display: inline-block;
}
div.latestItemTagsBlock ul.latestItemTags li a:hover,
div.userItemTagsBlock ul.userItemTags li a:hover,
div.catItemTagsBlock ul.catItemTags li a:hover,
div.itemTagsBlock ul.itemTags li a:hover,
#eblog-wrapper .blog-taglist a:hover {
  background: #cc6633;
  text-decoration: none;
}
#ezblog-body .blog-meta-bottom div > span + span {
  border-left: 1px solid #858585;
}
#ezblog-body .blog-post .blog-comments a {
  background: none;
  color: #858585;
  padding-left: 0;
}
#ezblog-body .blog-readmore a {
  padding: 0;
  background: none;
  font-family: "Titillium Web";
  font-weight: 400;
  font-size: 14px;
}
.eblog-pagination ul.pagination-list li {
  float: left;
  height: 23px;
  width: 23px;
}
#ezblog-body .slider-holder {
  background: #cc6633;
  color: #fff;
}
#ezblog-body .featured-navi {
  margin: 0;
  background: #cc6633;
  border: none;
}
#ezblog-body .featured-author {
  width: 220px;
  padding: 7px;
  background: url(/templates/bt_business/images/easyblog/bg-author-feature-easyblog.png) repeat scroll left top transparent;
  position: absolute;
  bottom: 0;
  z-index: 99;
  right: 0;
}
#ezblog-body ul.featured-entries li.featured-item b.featured-tag {
  right: 0;
  background: url(/templates/bt_business/images/themes/orange/easyblog/bg-feature-item.png) no-repeat scroll center center transparent;
}
#ezblog-label {
  color: #cc6633;
  font-size: 20px;
  font-family: "Titillium Web";
  font-weight: 600;
  border-bottom: 1px solid #d4d4d4;
  text-transform: uppercase;
}
.defaultLayout2 .include_tab .bt-inner .bt-title {
  font-family: "Titillium Web";
}
.tab_sidebar .tab-buttons ul li.active {
  background: #cc6633;
  color: #fff;
}
.tab_sidebar .tab-buttons ul li {
  background: #e5e5e5;
  color: #cc6633;
  font-family: "Titillium Web";
  text-transform: uppercase;
  border: none;
  padding: 0 15px;
}
.tab_sidebar .tab-buttons ul li span {
  color: #cc6633;
}
.tab_sidebar .tab-buttons ul li + li {
  margin-left: 3px;
}
#ezblog-body.blog-read-item .blog-read .blog-title {
  color: #cc6633;
  font-size: 22px;
  font-family: "Titillium Web";
  font-weight: 400;
  padding-top: 25px;
}
#ezblog-body .blog-option li + li {
  border-left: 1px solid #e9eaea;
}
#ezblog-body.blog-read-item .blog-option ul li.blog-hit,
#ezblog-body.blog-read-item .blog-option ul li.blog-comments,
#ezblog-body.blog-read-item .blog-option ul li.blog-email,
#ezblog-body.blog-read-item .blog-option ul li.print,
#ezblog-body.blog-read-item .blog-option ul li.bookmark,
#ezblog-body.blog-read-item .blog-option ul li.blog-report {
  float: right;
}
#ezblog-body.blog-read-item .blog-option ul li.blog-email,
#ezblog-body.blog-read-item .blog-option ul li.print,
#ezblog-body.blog-read-item .blog-option ul li.bookmark,
#ezblog-body.blog-read-item .blog-option ul li.blog-report {
  padding: 0 0 0 10px;
  margin: 0 0 0 10px;
}
#eblog-wrapper #section-author .author_info .author-name a {
  display: block;
  text-transform: uppercase;
  font-family: "Titillium Web";
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid #d4d4d4;
}
#eblog-wrapper #section-author .author_info .author-info {
  margin-left: 112px;
}
#ezblog-body .profile-connect .connect-links li + li {
  padding-left: 5px;
  margin-left: 5px;
  border-left: 1px solid #cc6633;
}
#section-author .author_recent_post h3 {
  text-transform: uppercase;
  font-family: "Titillium Web";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #cc6633;
  border-bottom: 1px solid #d4d4d4;
}
#section-author .author_recent_post h3 span {
  border-bottom: 1px solid #cc6633;
  margin-bottom: -1px;
  display: inline-block;
}
#ezblog-body .blog-section .section-title {
  text-transform: uppercase;
  font-family: "Titillium Web";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #cc6633;
  border-bottom: 1px solid #d4d4d4;
  padding: 0;
}
#ezblog-body .blog-section .section-title span {
  border-bottom: 1px solid #cc6633;
  margin-bottom: -1px;
  display: inline-block;
}
#ezblog-body .author_recent_post .entry-related-post li {
  border-bottom: 1px solid #f1f1f1;
  padding: 10px 0 10px 22px;
  background: url(/templates/bt_business/images/easyblog/icon-recent_post.png) no-repeat scroll 6px center transparent;
}
.easy-blog-comment .name-field,
.easy-blog-comment .email-field,
.easy-blog-comment .website-field {
  float: left;
  width: 33.3333%;
}
#comment-form.easy-blog-comment .bg-form-row {
  margin-left: -6px;
  margin-top: 10px;
}
#comment-form.easy-blog-comment .form-row-inner {
  margin-left: 6px;
}
.subscription-bg input,
.subscription-bg label,
.auto-register-bg input,
.auto-register-bg label {
  float: left;
  line-height: normal;
}
.auto-register-bg label,
.subscription-bg label {
  margin-right: 10px;
}
#eblog-wrapper #comment-form input#btnSubmit {
  background: url(/templates/bt_business/images/themes/orange/bg-submit-comment-k2.png) scroll repeat-x left top transparent;
  border: none;
  padding: 0 15px;
  height: 33px;
  line-height: 33px;
  font-family: "Titillium Web";
  font-weight: bold;
  font-size: 14px;
  text-shadow: none;
  box-shadow: none;
  color: #fff !important;
  text-transform: uppercase;
}
#eblog-wrapper .list-comment .comment-author {
  text-transform: uppercase;
  font-family: "Titillium Web";
  font-size: 14px;
  font-weight: 300;
}
#eblog-wrapper .list-comment .comment-date {
  color: #585858;
  font-family: "Titillium Web";
  font-size: 14px;
  font-weight: 300;
}
#ezblog-body .comment-avatar + .comment-content {
  margin: 0 0 0 98px;
}
.html_3 .box_left {
  width: 58%;
  float: left;
  text-align: center;
  padding-top: 15px;
}
.html_3 .box_right {
  width: 40%;
  float: right;
}
.html_3 .box_desc {
  text-align: center;
  padding: 18px 50px 50px 50px;
  font-family: "Titillium Web";
  font-size: 16px;
  font-weight: 300;
}
.bt_scrolling h3.module-title {
  text-align: center;
  margin: 0;
  font-size: 36px;
  font-family: "Titillium Web";
  font-weight: bold;
  text-transform: uppercase;
}
.green_title h3.module-title {
  color: #cc6633;
}
.green_title h3.module-title > span {
  border-bottom: 1px solid #cc6633;
}
.html_2 .box_desc {
  line-height: 30px;
  font-family: "Titillium Web";
  font-size: 16px;
  font-weight: 300;
  padding: 15px 120px 30px 120px;
  text-align: center;
}
.scroll_showcase .defaultLayout2 .bt-inner {
  background: #222222;
  color: #fff;
  margin: 0 0 0 20px;
}
.scroll_showcase .jcarousel-skin-tango {
  margin-left: -20px;
}
.scroll_showcase .item_subject_title {
  line-height: 30px;
  font-family: "Titillium Web";
  font-size: 16px;
  color: #7d7d7d;
  font-weight: 300;
  padding: 15px 120px 18px 120px;
  text-align: center;
}
.scroll_showcase .defaultLayout2 .bt-author a:hover {
  color: #cc6633;
  background: none;
}
.scroll_showcase .defaultLayout2 .bt-author {
  background: url(/templates/bt_business/images/showcase_scroll_author.png) scroll no-repeat left center transparent;
  margin-right: 10px;
  padding-left: 20px;
}
.scroll_showcase .defaultLayout2 .bt-date {
  background: url(/templates/bt_business/images/showcase_scroll_date.png) scroll no-repeat left center transparent;
  padding-left: 20px;
}
.scroll_showcase .defaultLayout2 .bt-date,
.scroll_showcase .defaultLayout2 .bt-author {
  color: #c5c5c5;
  font-family: "Titillium Web";
  font-size: 11px;
  font-weight: bold;
}
.scroll_showcase .defaultLayout2 .bt-inner a.bt-image-link:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  z-index: 99;
  height: 14px;
  width: 14px;
  background: url(/templates/bt_business/images/bg-scroll-showcase-a-before.png) scroll no-repeat left top transparent;
}
.scroll_showcase .defaultLayout2 .bt-inner:hover {
  background: #cc6633;
}
.scroll_showcase .defaultLayout2 .bt-inner:hover a.bt-image-link:before {
  background: url(/templates/bt_business/images/themes/orange/bg-scroll-showcase-a-before-hover.png) scroll no-repeat left top transparent;
}
.scroll_showcase .defaultLayout2 .bt-inner a.bt-image-link:hover .hover_over {
  background: url(/templates/bt_business/images/themes/orange/bg-scroll-showcase-img-before.png) scroll no-repeat center center transparent;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  display: block;
}
.custom_layout .modal {
  width: auto;
  left: auto;
  top: auto;
  position: relative;
  border: none;
  box-shadow: none;
  border-radius: 0;
  margin: 0;
  background: none;
}
.social .box_social .number_follow,
.social .box_social .link_follow,
.scroll_showcase2 .defaultLayout2 .bt-inner .bt-introtext,
.scroll_showcase2 .defaultLayout2 .bt-inner .bt-title {
  font-family: "Titillium Web";
}
.abovefooter_showcase h3.module-title {
  font-family: "Titillium Web";
  padding-left: 45px;
}
.abovefooter_showcase h3.module-title > span {
  border-bottom: 1px solid #cc6633;
}
.social .box_social {
  width: 25%;
  float: left;
}
.social .box_social .box_social_inner {
  padding-left: 40px;
}
.social .box_social img {
  float: left;
  margin-right: 20px;
}
.mod_btquickcontact.contact_footer .btqc-field-container.label-bg-name,
.mod_btquickcontact.contact_footer .btqc-field-container.label-bg-email {
  float: left;
  width: 50%;
}
.mod_btquickcontact.contact_footer {
  border: none;
  padding-right: 20px;
}
.mod_btquickcontact.contact_footer form {
  margin: 0 0 0 -6px;
}
.mod_btquickcontact.contact_footer .btqc-field-container-inner {
  margin-bottom: 17px;
  margin-left: 6px;
}
.mod_btquickcontact.contact_footer .label-submit-button .btqc-field-container-inner {
  margin-right: -2px;
}
.btqc-field-container input.btqc_submit {
  background: #cc6633;
  font-family: "open sans";
  text-align: left;
}
#above_footer .defaultLayout2 .btcontentshowcase-next {
  background: url(/templates/bt_business/images/themes/orange/showcase_abovefooter_next.png) scroll no-repeat center top transparent !important;
  right: 0;
  top: 23%;
}
#above_footer .defaultLayout2 .btcontentshowcase-prev {
  background: url(/templates/bt_business/images/themes/orange/showcase_abovefooter_back.png) scroll no-repeat center top transparent !important;
  left: 0;
  top: 23%;
}
html,
.p-author .profile .p-name,
.custom-timeline-owner-profile .p-name,
.cards-base p,
.cards-base p a,
.timeline-header .custom-timeline-summary,
.timeline-header .custom-timeline-summary a:link,
.timeline-header .custom-timeline-summary a:visited,
.timeline-header .summary,
.timeline-header .summary a:link,
.timeline-header .summary a:visited,
.p-author a.profile:hover .p-name,
.p-author a.profile:focus .p-name {
  color: #cc6633;
  font-size: 12px;
}
.customisable,
.customisable:link,
.customisable:visited,
.customisable:hover,
.customisable:focus,
.customisable:active,
.customisable-highlight:hover,
.customisable-highlight:focus,
a:hover .customisable-highlight,
a:focus .customisable-highlight {
  color: #cc6633;
}
#data {
  border-bottom: 3px solid #cc6633;
}
#panel_icon {
  background: url(/templates/bt_business/images/themes/orange/bg_arrow.png) no-repeat center bottom;
}
.tab-buttons ul li:hover span {
  color: #cc6633;
}
#ezblog-label span {
  border-bottom: 1px solid #cc6633;
  margin-bottom: -1px;
  display: inline-block;
}
div.itemCommentsForm h3.k2ItemCommentFormTitle span {
  margin-bottom: -1px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #cc6633;
}
#eblog-wrapper #section-author .author_info .author-name a span {
  border-bottom: 1px solid #cc6633;
  margin-bottom: -1px;
  display: inline-block;
  padding-bottom: 8px;
}
#ezblog-menu .blog-navi li.toolbar-item > a:hover,
#ezblog-menu .blog-navi li.toolbar-item > a:focus {
  background: #af582c;
  box-shadow: none;
}
#ezblog-menu .blog-navi li.toolbar-item {
  border-right: 1px solid #d6855c;
}
#ezblog-menu .blog-navi li.toolbar-item.float-r {
  border-left: 1px solid #d6855c;
}
.widthAuto .container {
  width: auto !important;
}
.fcLayout .bt-pagination {
  margin: 20px 0 10px !important;
}
.fcLayout .bt-pagination a {
  margin: 0 3px !important;
}
.accordionLayout .bt-inner .bt-title {
  background: url(/templates/bt_business/images/themes/orange/bg_item_accordion.png) no-repeat top left;
  padding-left: 32px !important;
}
.customisable,
.customisable:link,
.customisable:visited,
.customisable:hover,
.customisable:focus,
.customisable:active,
.customisable-highlight:hover,
.customisable-highlight:focus,
a:hover .customisable-highlight,
a:focus .customisable-highlight {
  color: #cc6633;
}
.bg_slideshow_over_desc.color_text .small-title,
.bg_slideshow_over_desc.color_text .small_desc,
.bg_slideshow_over_desc.color_text .main_desc {
  color: #cc6633;
}
#cp-caption .button_inner a.button1 {
  background: #cc6633;
  border: 2px solid #cc6633;
}
#cp-caption .button_inner a.button2:hover {
  background: #cc6633;
  border: 2px solid #cc6633;
}
#cp-caption .color_text .button_inner a.button2,
#cp-caption .color_text .button_inner a.button1:hover {
  color: #cc6633;
}
.fcLayout .bt-pagination a:active,
.fcLayout .bt-pagination a:focus,
.fcLayout .bt-pagination a:hover,
.fcLayout .bt-pagination a.selected {
  background-color: #cc6633 !important;
}
#bt-panel .t3-module {
  margin-bottom: 0;
}
.t3-mainnav .navbar .nav > .active > a,
.t3-mainnav .navbar .nav > .active > a:hover,
.t3-mainnav .navbar .nav > .active > a:focus,
.t3-mainnav .navbar .nav > li > a:focus,
.t3-mainnav .navbar .nav > li > a:hover,
.t3-mainnav .nav li.dropdown.open > .dropdown-toggle,
.t3-mainnav .nav li.dropdown.active > .dropdown-toggle,
.t3-mainnav .nav li.dropdown.open.active > .dropdown-toggle {
  background: #cc6633;
}
.bt_social_register .btn-submit > button,
#btl-content-registration .btl-buttonsubmit .btl-buttonsubmit {
  background: url(/templates/bt_business/images/themes/orange/bg-submit-social-register.png) scroll no-repeat right top transparent;
}
.bt_social_register .btn-submit > button:hover,
#btl-content-registration .btl-buttonsubmit .btl-buttonsubmit:hover {
  background-position: right bottom;
}
#btl-content-registration .btl-buttonsubmit .btl-buttonsubmit:hover {
  border: 1px solid #a35229;
  color: #fff !important;
}
.bt_social_register .btn-submit button:hover {
  background-color: #cc6633;
  border: 1px solid #a35229;
  color: #fff !important;
}
#btl-content-login-default .btl-buttonsubmit .btl-border:hover,
#btl-content-login .btl-buttonsubmit .btl-border:hover,
.btl-panel .btl-border:hover {
  background: url(/templates/bt_business/images/themes/orange/bg_social_login_form.png) scroll repeat-x left bottom transparent !important;
  border: 1px solid #a35229;
}
#btl-content-login-default .btl-buttonsubmit .btl-border:hover input.btl-buttonsubmit,
#btl-content-login .btl-buttonsubmit .btl-border:hover span.btl-buttonsubmit {
  text-shadow: 0 -1px 0 #a35229;
  color: #fff;
}
#btl .btl-panel #btl-panel-login:hover,
#btl .btl-panel #btl-panel-registration:hover {
  background: url(/templates/bt_business/images/themes/orange/social-connect-login-panel.png) scroll repeat-x right bottom transparent !important;
  border: 1px solid #a35229 !important;
}
#btl-content-login-default .btl-input .user:focus,
#btl-content-login .btl-input .user:focus {
  background: url(/templates/bt_business/images/themes/orange/icon_user_login_focus.png) scroll no-repeat 9px center transparent !important;
}
#btl-content-login-default .btl-input .pass:focus,
#btl-content-login .btl-input .pass:focus {
  background: url(/templates/bt_business/images/themes/orange/icon_pass_login_focus.png) scroll no-repeat 9px center transparent !important;
}
.social-connect-login h3.module-title,
.social-connect-login h3.module-title span {
  color: #cc6633 !important;
}
#users-profile-core dd {
  color: #cc6633;
}
.logout_form_social .btn-primary,
.profile .btn-primary {
  background-color: #cc6633 !important;
  background-image: linear-gradient(to bottom,#cc6633,#a35229) !important;
}
.profile-edit #menu .nav li.active a {
  border-top: 3px solid #cc6633;
  background: none;
}
.profile-edit #menu .nav li.active a,
.profile #menu .nav li.active a {
  height: 36px;
}
.profile-edit #menu .nav li a {
  color: #cc6633;
}
.profile-edit #menu .nav li a:hover {
  background: none;
  color: #cc6633 !important;
}
.defaultLayout2 .btcontentshowcase-navigation .bullet {
  width: 8px !important;
  height: 8px !important;
  background: url(/templates/bt_business/images/themes/orange/bg-bulet-showcase2.png) scroll no-repeat center top transparent !important;
  margin: 0 3px !important;
}
.defaultLayout2 .btcontentshowcase-navigation .bullet.current {
  background: url(/templates/bt_business/images/themes/orange/bg-bulet-showcase2.png) scroll no-repeat center -8px transparent !important;
}
#ezblog-menu .blog-navi li.toolbar-item > form #ezblog-search {
  background: url(/templates/bt_business/images/themes/orange/easyblog/bg-search-toolbox.png) no-repeat scroll left center transparent;
  height: 21px;
  padding: 2px;
  border: none;
  border-radius: 0;
  margin: 6px 0 0 0;
  box-shadow: none;
}
#ezblog-menu .blog-navi li.toolbar-item > form button.submit-search {
  background: url(/templates/bt_business/images/themes/orange/easyblog/bg-search-toolbox.png) no-repeat scroll right center transparent;
  width: 26px;
  height: 25px;
  border: none;
  border-radius: 0;
  margin: 6px 0 0 0;
}
.itemRatingList .itemCurrentRating {
  background: url(/templates/bt_business/images/themes/orange/rate-image-easyblog.png) scroll repeat-x left -34px transparent;
}
.itemRatingList {
  background: url(/templates/bt_business/images/themes/orange/rate-image-easyblog.png) scroll repeat-x left top transparent;
}
.itemRatingList li a:hover {
  background: url(/templates/bt_business/images/themes/orange/rate-image-easyblog.png) scroll repeat-x left -17px transparent;
}
.blog-rating .ui-stars-star a {
  background: url(/templates/bt_business/images/themes/orange/rate-image-easyblog.png) repeat-x scroll left top transparent !important;
}
.blog-rating .ui-stars-star-on a {
  background: url(/templates/bt_business/images/themes/orange/rate-image-easyblog.png) repeat-x scroll left -34px transparent !important;
}
.blog-rating .ui-stars-star-hover a,
.blog-rating .ui-stars-star-hover a:hover {
  background: url(/templates/bt_business/images/themes/orange/rate-image-easyblog.png) repeat-x scroll left -17px transparent !important;
}
#ezblog-body .featured-a a.active span {
  background: url(/templates/bt_business/images/themes/orange/easyblog/feature_slide_icon_active.png) no-repeat scroll center center transparent;
}
.btp-detail-voting .btp-rating-background {
  background: url(/templates/bt_business/images/themes/orange/rate-image.png) repeat-x scroll left top transparent !important;
}
.btp-detail-voting .btp-rating-current {
  background: url(/templates/bt_business/images/themes/orange/rate-image.png) repeat-x scroll left -31px transparent !important;
}
.btp-detail-voting .btp-rating-background a:hover {
  background: url(/templates/bt_business/images/themes/orange/rate-image.png) repeat-x scroll left -16px transparent !important;
}
div.itemRelated h3,
div.itemAuthorLatest h3 {
  border-bottom: 1px solid #D4D4D4;
  color: #cc6633;
  font-family: "Titillium Web";
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 4px;
  text-transform: uppercase;
}
div.itemRelated h3 span,
div.itemAuthorLatest h3 span {
  border-bottom: 1px solid #cc6633;
  display: inline-block;
  margin-bottom: -1px;
}
.defaultLayout .bt-inner .bt-introtext {
  margin: 5px 0 5px 80px;
}
.defaultLayout .bt-inner .bt-title {
  padding: 0 0 0 80px;
}
.accordionLayout .bt-inner .bt-category {
  right: 0;
}
.mod_easyblogarchive .mod-months .mod-month {
  background: url(/templates/bt_business/images/easyblog/bg_item_blog_archive_mod.png) no-repeat scroll left center transparent;
  font-weight: bold;
  color: #8a8a8a;
}
.tab-items > div > div {
  text-align: left !important;
}
#cp-caption-inner {
  padding: 0 10px;
}
.bt_social_register .control-label {
  padding: 0 10px !important;
}
.bt_socialconnect_login .inputbox {
  border: 1px solid #cdcdcd;
}
.profile-edit #menu {
  border: none !important;
}
.logo,
.page-heading-title {
  padding: 0 0 0 10px;
}
.article-aside {
  font-size: 12px;
  color: #383838;
  margin: 0;
}
.article-info dd span {
  font-weight: normal;
}
#system-message {
  margin: 0;
}
.group_register .btl-input button {
  margin: 0 !important;
}
.btn:focus,
.btn:active {
  background: #cc6633 !important;
}
#btl-content-login.btl-content-block h3,
#btl-content-registration.btl-content-block h3 {
  font-family: "Titillium Web";
  background: url(/templates/bt_business/images/popup_title_sociallogin.png) no-repeat scroll right bottom #cc6633;
}
@media (max-width: 1024px) {
  
  .bt_scrolling .widthAuto {
    display: none;
  }
  .page-heading-inner {
    padding-left: 10px;
  }
}
@media (max-width: 979px) {
  .t3-header .t3-mainnav .navbar .btn-navbar {
    font-family: "Titillium Web";
  }
}
@media (max-width: 760px) {
  .acymailing_module .acymailing_fulldiv {
    margin-left: 18px !important;
  }
}
.hidden {
  display: none;
  visibility: hidden;
}
.visible-phone {
  display: none !important;
}
.visible-tablet {
  display: none !important;
}
.hidden-desktop {
  display: none !important;
}
.visible-desktop {
  display: inherit !important;
}
@media (min-width: 768px) and (max-width: 979px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-tablet {
    display: inherit !important;
  }
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .hidden-desktop {
    display: inherit !important;
  }
  .visible-desktop {
    display: none !important;
  }
  .visible-phone {
    display: inherit !important;
  }
  .hidden-phone {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: inherit !important;
  }
  .hidden-print {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .row {
    margin-left: -40px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 40px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 1196px;
  }
  .span12 {
    width: 1196px;
  }
  .span11 {
    width: 1093px;
  }
  .span10 {
    width: 990px;
  }
  .span9 {
    width: 887px;
  }
  .span8 {
    width: 784px;
  }
  .span7 {
    width: 681px;
  }
  .span6 {
    width: 578px;
  }
  .span5 {
    width: 475px;
  }
  .span4 {
    width: 372px;
  }
  .span3 {
    width: 269px;
  }
  .span2 {
    width: 166px;
  }
  .span1 {
    width: 63px;
  }
  .offset12 {
    margin-left: 1276px;
  }
  .offset11 {
    margin-left: 1173px;
  }
  .offset10 {
    margin-left: 1070px;
  }
  .offset9 {
    margin-left: 967px;
  }
  .offset8 {
    margin-left: 864px;
  }
  .offset7 {
    margin-left: 761px;
  }
  .offset6 {
    margin-left: 658px;
  }
  .offset5 {
    margin-left: 555px;
  }
  .offset4 {
    margin-left: 452px;
  }
  .offset3 {
    margin-left: 349px;
  }
  .offset2 {
    margin-left: 246px;
  }
  .offset1 {
    margin-left: 143px;
  }
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 3.3444816053512%;
    *margin-left: 3.2908335366816%;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 3.3444816053512%;
  }
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94635193133%;
  }
  .row-fluid .span11 {
    width: 91.387959866221%;
    *width: 91.334311797551%;
  }
  .row-fluid .span10 {
    width: 82.775919732441%;
    *width: 82.722271663772%;
  }
  .row-fluid .span9 {
    width: 74.163879598662%;
    *width: 74.110231529993%;
  }
  .row-fluid .span8 {
    width: 65.551839464883%;
    *width: 65.498191396213%;
  }
  .row-fluid .span7 {
    width: 56.939799331104%;
    *width: 56.886151262434%;
  }
  .row-fluid .span6 {
    width: 48.327759197324%;
    *width: 48.274111128655%;
  }
  .row-fluid .span5 {
    width: 39.715719063545%;
    *width: 39.662070994876%;
  }
  .row-fluid .span4 {
    width: 31.103678929766%;
    *width: 31.050030861096%;
  }
  .row-fluid .span3 {
    width: 22.491638795987%;
    *width: 22.437990727317%;
  }
  .row-fluid .span2 {
    width: 13.879598662207%;
    *width: 13.825950593538%;
  }
  .row-fluid .span1 {
    width: 5.2675585284281%;
    *width: 5.2139104597586%;
  }
  .row-fluid .offset12 {
    margin-left: 106.6889632107%;
    *margin-left: 106.58166707336%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 103.34448160535%;
    *margin-left: 103.23718546801%;
  }
  .row-fluid .offset11 {
    margin-left: 98.076923076923%;
    *margin-left: 97.969626939584%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 94.732441471572%;
    *margin-left: 94.625145334233%;
  }
  .row-fluid .offset10 {
    margin-left: 89.464882943144%;
    *margin-left: 89.357586805805%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 86.120401337793%;
    *margin-left: 86.013105200454%;
  }
  .row-fluid .offset9 {
    margin-left: 80.852842809365%;
    *margin-left: 80.745546672025%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 77.508361204013%;
    *margin-left: 77.401065066674%;
  }
  .row-fluid .offset8 {
    margin-left: 72.240802675585%;
    *margin-left: 72.133506538246%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 68.896321070234%;
    *margin-left: 68.789024932895%;
  }
  .row-fluid .offset7 {
    margin-left: 63.628762541806%;
    *margin-left: 63.521466404467%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 60.284280936455%;
    *margin-left: 60.176984799116%;
  }
  .row-fluid .offset6 {
    margin-left: 55.016722408027%;
    *margin-left: 54.909426270688%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 51.672240802676%;
    *margin-left: 51.564944665337%;
  }
  .row-fluid .offset5 {
    margin-left: 46.404682274247%;
    *margin-left: 46.297386136908%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 43.060200668896%;
    *margin-left: 42.952904531557%;
  }
  .row-fluid .offset4 {
    margin-left: 37.792642140468%;
    *margin-left: 37.685346003129%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 34.448160535117%;
    *margin-left: 34.340864397778%;
  }
  .row-fluid .offset3 {
    margin-left: 29.180602006689%;
    *margin-left: 29.07330586935%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 25.836120401338%;
    *margin-left: 25.728824263999%;
  }
  .row-fluid .offset2 {
    margin-left: 20.56856187291%;
    *margin-left: 20.461265735571%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 17.224080267559%;
    *margin-left: 17.116784130219%;
  }
  .row-fluid .offset1 {
    margin-left: 11.95652173913%;
    *margin-left: 11.849225601791%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 8.6120401337793%;
    *margin-left: 8.5047439964402%;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 40px;
  }
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 1182px;
  }
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 1079px;
  }
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 976px;
  }
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 873px;
  }
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 770px;
  }
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 667px;
  }
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 564px;
  }
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 461px;
  }
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 358px;
  }
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 255px;
  }
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 152px;
  }
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 49px;
  }
  .thumbnails {
    margin-left: -40px;
  }
  .thumbnails > li {
    margin-left: 40px;
  }
  .row-fluid .thumbnails {
    margin-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .row {
    margin-left: -20px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 20px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 736px;
  }
  .span12 {
    width: 736px;
  }
  .span11 {
    width: 673px;
  }
  .span10 {
    width: 610px;
  }
  .span9 {
    width: 547px;
  }
  .span8 {
    width: 484px;
  }
  .span7 {
    width: 421px;
  }
  .span6 {
    width: 358px;
  }
  .span5 {
    width: 295px;
  }
  .span4 {
    width: 232px;
  }
  .span3 {
    width: 169px;
  }
  .span2 {
    width: 106px;
  }
  .span1 {
    width: 43px;
  }
  .offset12 {
    margin-left: 776px;
  }
  .offset11 {
    margin-left: 713px;
  }
  .offset10 {
    margin-left: 650px;
  }
  .offset9 {
    margin-left: 587px;
  }
  .offset8 {
    margin-left: 524px;
  }
  .offset7 {
    margin-left: 461px;
  }
  .offset6 {
    margin-left: 398px;
  }
  .offset5 {
    margin-left: 335px;
  }
  .offset4 {
    margin-left: 272px;
  }
  .offset3 {
    margin-left: 209px;
  }
  .offset2 {
    margin-left: 146px;
  }
  .offset1 {
    margin-left: 83px;
  }
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 2.7173913043478%;
    *margin-left: 2.6637432356783%;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 2.7173913043478%;
  }
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94635193133%;
  }
  .row-fluid .span11 {
    width: 91.440217391304%;
    *width: 91.386569322635%;
  }
  .row-fluid .span10 {
    width: 82.880434782609%;
    *width: 82.826786713939%;
  }
  .row-fluid .span9 {
    width: 74.320652173913%;
    *width: 74.267004105244%;
  }
  .row-fluid .span8 {
    width: 65.760869565217%;
    *width: 65.707221496548%;
  }
  .row-fluid .span7 {
    width: 57.201086956522%;
    *width: 57.147438887852%;
  }
  .row-fluid .span6 {
    width: 48.641304347826%;
    *width: 48.587656279157%;
  }
  .row-fluid .span5 {
    width: 40.08152173913%;
    *width: 40.027873670461%;
  }
  .row-fluid .span4 {
    width: 31.521739130435%;
    *width: 31.468091061765%;
  }
  .row-fluid .span3 {
    width: 22.961956521739%;
    *width: 22.90830845307%;
  }
  .row-fluid .span2 {
    width: 14.402173913043%;
    *width: 14.348525844374%;
  }
  .row-fluid .span1 {
    width: 5.8423913043478%;
    *width: 5.7887432356783%;
  }
  .row-fluid .offset12 {
    margin-left: 105.4347826087%;
    *margin-left: 105.32748647136%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 102.71739130435%;
    *margin-left: 102.61009516701%;
  }
  .row-fluid .offset11 {
    margin-left: 96.875%;
    *margin-left: 96.767703862661%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 94.157608695652%;
    *margin-left: 94.050312558313%;
  }
  .row-fluid .offset10 {
    margin-left: 88.315217391304%;
    *margin-left: 88.207921253965%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 85.597826086957%;
    *margin-left: 85.490529949617%;
  }
  .row-fluid .offset9 {
    margin-left: 79.755434782609%;
    *margin-left: 79.64813864527%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 77.038043478261%;
    *margin-left: 76.930747340922%;
  }
  .row-fluid .offset8 {
    margin-left: 71.195652173913%;
    *margin-left: 71.088356036574%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 68.478260869565%;
    *margin-left: 68.370964732226%;
  }
  .row-fluid .offset7 {
    margin-left: 62.635869565217%;
    *margin-left: 62.528573427878%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 59.91847826087%;
    *margin-left: 59.811182123531%;
  }
  .row-fluid .offset6 {
    margin-left: 54.076086956522%;
    *margin-left: 53.968790819183%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 51.358695652174%;
    *margin-left: 51.251399514835%;
  }
  .row-fluid .offset5 {
    margin-left: 45.516304347826%;
    *margin-left: 45.409008210487%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 42.798913043478%;
    *margin-left: 42.691616906139%;
  }
  .row-fluid .offset4 {
    margin-left: 36.95652173913%;
    *margin-left: 36.849225601791%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 34.239130434783%;
    *margin-left: 34.131834297444%;
  }
  .row-fluid .offset3 {
    margin-left: 28.396739130435%;
    *margin-left: 28.289442993096%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 25.679347826087%;
    *margin-left: 25.572051688748%;
  }
  .row-fluid .offset2 {
    margin-left: 19.836956521739%;
    *margin-left: 19.7296603844%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 17.119565217391%;
    *margin-left: 17.012269080052%;
  }
  .row-fluid .offset1 {
    margin-left: 11.277173913043%;
    *margin-left: 11.169877775704%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 8.5597826086957%;
    *margin-left: 8.4524864713566%;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 20px;
  }
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 722px;
  }
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 659px;
  }
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 596px;
  }
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 533px;
  }
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 470px;
  }
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 407px;
  }
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 344px;
  }
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 281px;
  }
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 218px;
  }
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 155px;
  }
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 92px;
  }
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 29px;
  }
}

@media (max-width: 767px) {
  body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom,
  .navbar-static-top {
    margin-left: -20px;
    margin-right: -20px;
  }
  .container-fluid {
    padding: 0;
  }
  .dl-horizontal dt {
    float: none;
    clear: none;
    width: auto;
    text-align: left;
  }
  .dl-horizontal dd {
    margin-left: 0;
  }
  .container {
    width: auto;
  }
  .row-fluid {
    width: 100%;
  }
  .row,
  .thumbnails {
    margin-left: 0;
  }
  .thumbnails > li {
    float: none;
    margin-left: 0;
  }
  [class*="span"],
  .uneditable-input[class*="span"],
  .row-fluid [class*="span"] {
    float: none;
    display: block;
    width: 100%;
    margin-left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .span12,
  .row-fluid .span12 {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .row-fluid [class*="offset"]:first-child {
    margin-left: 0;
  }
  .input-large,
  .input-xlarge,
  .input-xxlarge,
  input[class*="span"],
  select[class*="span"],
  textarea[class*="span"],
  .uneditable-input {
    display: block;
    width: 100%;
    min-height: 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .input-prepend input,
  .input-append input,
  .input-prepend input[class*="span"],
  .input-append input[class*="span"] {
    display: inline-block;
    width: auto;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 0;
  }
  .modal {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
  }
  .modal.fade {
    top: -100px;
  }
  .modal.fade.in {
    top: 20px;
  }
}
@media (max-width: 480px) {
  .nav-collapse {
    -webkit-transform: translate3d(0,0,0);
  }
  .page-header h1 small {
    display: block;
    line-height: 24px;
  }
  input[type="checkbox"],
  input[type="radio"] {
    border: 1px solid #ccc;
  }
  .form-horizontal .control-label {
    float: none;
    width: auto;
    padding-top: 0;
    text-align: left;
  }
  .form-horizontal .controls {
    margin-left: 0;
  }
  .form-horizontal .control-list {
    padding-top: 0;
  }
  .form-horizontal .form-actions {
    padding-left: 10px;
    padding-right: 10px;
  }
  .media .pull-left,
  .media .pull-right {
    float: none;
    display: block;
    margin-bottom: 10px;
  }
  .media-object {
    margin-right: 0;
    margin-left: 0;
  }
  .modal {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  .modal-header .close {
    padding: 10px;
    margin: -10px;
  }
  .carousel-caption {
    position: static;
  }
}

.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -moz-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}
.fade.in {
  opacity: 1;
}
.collapse {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height .35s ease;
  -moz-transition: height .35s ease;
  -o-transition: height .35s ease;
  transition: height .35s ease;
}
.collapse.in {
  height: auto;
}

@media (max-width: 979px) {
  body {
    padding-top: 0;
  }
  .navbar-fixed-top,
  .navbar-fixed-bottom {
    position: static;
  }
  .navbar-fixed-top {
    margin-bottom: 24px;
  }
  .navbar-fixed-bottom {
    margin-top: 24px;
  }
  .navbar-fixed-top .navbar-inner,
  .navbar-fixed-bottom .navbar-inner {
    padding: 5px;
  }
  .navbar .container {
    width: auto;
    padding: 0;
  }
  .navbar .brand {
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 0 0 -5px;
  }
  .nav-collapse {
    clear: both;
  }
  .nav-collapse .nav {
    float: none;
    margin: 0 0 12px;
  }
  .nav-collapse .nav > li {
    float: none;
  }
  .nav-collapse .nav > li > a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > .divider-vertical {
    display: none;
  }
  .nav-collapse .nav .nav-header {
    color: #666;
    text-shadow: none;
  }
  .nav-collapse .nav > li > a,
  .nav-collapse .dropdown-menu a {
    padding: 9px 15px;
    font-weight: bold;
    color: #666;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  .nav-collapse .btn {
    padding: 4px 10px 4px;
    font-weight: normal;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
  }
  .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 2px;
  }
  .nav-collapse .nav > li > a:hover,
  .nav-collapse .nav > li > a:focus,
  .nav-collapse .dropdown-menu a:hover,
  .nav-collapse .dropdown-menu a:focus {
    background-color: #e6e6e6;
  }
  .navbar-inverse .nav-collapse .nav > li > a,
  .navbar-inverse .nav-collapse .dropdown-menu a {
    color: #999;
  }
  .navbar-inverse .nav-collapse .nav > li > a:hover,
  .navbar-inverse .nav-collapse .nav > li > a:focus,
  .navbar-inverse .nav-collapse .dropdown-menu a:hover,
  .navbar-inverse .nav-collapse .dropdown-menu a:focus {
    background-color: #111111;
  }
  .nav-collapse.in .btn-group {
    margin-top: 5px;
    padding: 0;
  }
  .nav-collapse .dropdown-menu {
    position: static;
    top: auto;
    left: auto;
    float: none;
    display: none;
    max-width: none;
    margin: 0 15px;
    padding: 0;
    background-color: transparent;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .nav-collapse .open > .dropdown-menu {
    display: block;
  }
  .nav-collapse .dropdown-menu:before,
  .nav-collapse .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .dropdown-menu .divider {
    display: none;
  }
  .nav-collapse .nav > li > .dropdown-menu:before,
  .nav-collapse .nav > li > .dropdown-menu:after {
    display: none;
  }
  .nav-collapse .navbar-form,
  .nav-collapse .navbar-search {
    float: none;
    padding: 12px 15px;
    margin: 12px 0;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
    -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);
  }
  .navbar-inverse .nav-collapse .navbar-form,
  .navbar-inverse .nav-collapse .navbar-search {
    border-top-color: #111111;
    border-bottom-color: #111111;
  }
  .navbar .nav-collapse .nav.pull-right {
    float: none;
    margin-left: 0;
  }
  .nav-collapse,
  .nav-collapse.collapse {
    overflow: hidden;
    height: 0;
  }
  .navbar .btn-navbar {
    display: block;
  }
  .navbar-static .navbar-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: auto;
  }
}
@media (min-width: 980px) {
  .nav-collapse.collapse {
    height: auto !important;
    overflow: visible !important;
  }
}
@media (min-width: 980px) and (max-width: 1199px) {
  .row {
    margin-left: -40px;
    *zoom: 1;
  }
  .row:before,
  .row:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after {
    clear: both;
  }
  [class*="span"] {
    float: left;
    min-height: 1px;
    margin-left: 40px;
  }
  .container,
  .navbar-static-top .container,
  .navbar-fixed-top .container,
  .navbar-fixed-bottom .container {
    width: 932px;
  }
  .span12 {
    width: 932px;
  }
  .span11 {
    width: 851px;
  }
  .span10 {
    width: 770px;
  }
  .span9 {
    width: 689px;
  }
  .span8 {
    width: 608px;
  }
  .span7 {
    width: 527px;
  }
  .span6 {
    width: 446px;
  }
  .span5 {
    width: 365px;
  }
  .span4 {
    width: 284px;
  }
  .span3 {
    width: 203px;
  }
  .span2 {
    width: 122px;
  }
  .span1 {
    width: 41px;
  }
  .offset12 {
    margin-left: 1012px;
  }
  .offset11 {
    margin-left: 931px;
  }
  .offset10 {
    margin-left: 850px;
  }
  .offset9 {
    margin-left: 769px;
  }
  .offset8 {
    margin-left: 688px;
  }
  .offset7 {
    margin-left: 607px;
  }
  .offset6 {
    margin-left: 526px;
  }
  .offset5 {
    margin-left: 445px;
  }
  .offset4 {
    margin-left: 364px;
  }
  .offset3 {
    margin-left: 283px;
  }
  .offset2 {
    margin-left: 202px;
  }
  .offset1 {
    margin-left: 121px;
  }
  .row-fluid {
    width: 100%;
    *zoom: 1;
  }
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row-fluid:after {
    clear: both;
  }
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 4.2918454935622%;
    *margin-left: 4.2381974248927%;
  }
  .row-fluid [class*="span"]:first-child {
    margin-left: 0;
  }
  .row-fluid .controls-row [class*="span"] + [class*="span"] {
    margin-left: 4.2918454935622%;
  }
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94635193133%;
  }
  .row-fluid .span11 {
    width: 91.309012875536%;
    *width: 91.255364806867%;
  }
  .row-fluid .span10 {
    width: 82.618025751073%;
    *width: 82.564377682403%;
  }
  .row-fluid .span9 {
    width: 73.927038626609%;
    *width: 73.87339055794%;
  }
  .row-fluid .span8 {
    width: 65.236051502146%;
    *width: 65.182403433476%;
  }
  .row-fluid .span7 {
    width: 56.545064377682%;
    *width: 56.491416309013%;
  }
  .row-fluid .span6 {
    width: 47.854077253219%;
    *width: 47.800429184549%;
  }
  .row-fluid .span5 {
    width: 39.163090128755%;
    *width: 39.109442060086%;
  }
  .row-fluid .span4 {
    width: 30.472103004292%;
    *width: 30.418454935622%;
  }
  .row-fluid .span3 {
    width: 21.781115879828%;
    *width: 21.727467811159%;
  }
  .row-fluid .span2 {
    width: 13.090128755365%;
    *width: 13.036480686695%;
  }
  .row-fluid .span1 {
    width: 4.3991416309013%;
    *width: 4.3454935622318%;
  }
  .row-fluid .offset12 {
    margin-left: 108.58369098712%;
    *margin-left: 108.47639484979%;
  }
  .row-fluid .offset12:first-child {
    margin-left: 104.29184549356%;
    *margin-left: 104.18454935622%;
  }
  .row-fluid .offset11 {
    margin-left: 99.892703862661%;
    *margin-left: 99.785407725322%;
  }
  .row-fluid .offset11:first-child {
    margin-left: 95.600858369099%;
    *margin-left: 95.49356223176%;
  }
  .row-fluid .offset10 {
    margin-left: 91.201716738197%;
    *margin-left: 91.094420600858%;
  }
  .row-fluid .offset10:first-child {
    margin-left: 86.909871244635%;
    *margin-left: 86.802575107296%;
  }
  .row-fluid .offset9 {
    margin-left: 82.510729613734%;
    *margin-left: 82.403433476395%;
  }
  .row-fluid .offset9:first-child {
    margin-left: 78.218884120172%;
    *margin-left: 78.111587982833%;
  }
  .row-fluid .offset8 {
    margin-left: 73.81974248927%;
    *margin-left: 73.712446351931%;
  }
  .row-fluid .offset8:first-child {
    margin-left: 69.527896995708%;
    *margin-left: 69.420600858369%;
  }
  .row-fluid .offset7 {
    margin-left: 65.128755364807%;
    *margin-left: 65.021459227468%;
  }
  .row-fluid .offset7:first-child {
    margin-left: 60.836909871245%;
    *margin-left: 60.729613733906%;
  }
  .row-fluid .offset6 {
    margin-left: 56.437768240343%;
    *margin-left: 56.330472103004%;
  }
  .row-fluid .offset6:first-child {
    margin-left: 52.145922746781%;
    *margin-left: 52.038626609442%;
  }
  .row-fluid .offset5 {
    margin-left: 47.74678111588%;
    *margin-left: 47.639484978541%;
  }
  .row-fluid .offset5:first-child {
    margin-left: 43.454935622318%;
    *margin-left: 43.347639484979%;
  }
  .row-fluid .offset4 {
    margin-left: 39.055793991416%;
    *margin-left: 38.948497854077%;
  }
  .row-fluid .offset4:first-child {
    margin-left: 34.763948497854%;
    *margin-left: 34.656652360515%;
  }
  .row-fluid .offset3 {
    margin-left: 30.364806866953%;
    *margin-left: 30.257510729614%;
  }
  .row-fluid .offset3:first-child {
    margin-left: 26.072961373391%;
    *margin-left: 25.965665236052%;
  }
  .row-fluid .offset2 {
    margin-left: 21.673819742489%;
    *margin-left: 21.56652360515%;
  }
  .row-fluid .offset2:first-child {
    margin-left: 17.381974248927%;
    *margin-left: 17.274678111588%;
  }
  .row-fluid .offset1 {
    margin-left: 12.982832618026%;
    *margin-left: 12.875536480687%;
  }
  .row-fluid .offset1:first-child {
    margin-left: 8.6909871244635%;
    *margin-left: 8.5836909871245%;
  }
  input,
  textarea,
  .uneditable-input {
    margin-left: 0;
  }
  .controls-row [class*="span"] + [class*="span"] {
    margin-left: 40px;
  }
  input.span12, textarea.span12, .uneditable-input.span12 {
    width: 918px;
  }
  input.span11, textarea.span11, .uneditable-input.span11 {
    width: 837px;
  }
  input.span10, textarea.span10, .uneditable-input.span10 {
    width: 756px;
  }
  input.span9, textarea.span9, .uneditable-input.span9 {
    width: 675px;
  }
  input.span8, textarea.span8, .uneditable-input.span8 {
    width: 594px;
  }
  input.span7, textarea.span7, .uneditable-input.span7 {
    width: 513px;
  }
  input.span6, textarea.span6, .uneditable-input.span6 {
    width: 432px;
  }
  input.span5, textarea.span5, .uneditable-input.span5 {
    width: 351px;
  }
  input.span4, textarea.span4, .uneditable-input.span4 {
    width: 270px;
  }
  input.span3, textarea.span3, .uneditable-input.span3 {
    width: 189px;
  }
  input.span2, textarea.span2, .uneditable-input.span2 {
    width: 108px;
  }
  input.span1, textarea.span1, .uneditable-input.span1 {
    width: 27px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .offset-12 {
    margin-left: -736px;
  }
  .offset-11 {
    margin-left: -673px;
  }
  .offset-10 {
    margin-left: -610px;
  }
  .offset-9 {
    margin-left: -547px;
  }
  .offset-8 {
    margin-left: -484px;
  }
  .offset-7 {
    margin-left: -421px;
  }
  .offset-6 {
    margin-left: -358px;
  }
  .offset-5 {
    margin-left: -295px;
  }
  .offset-4 {
    margin-left: -232px;
  }
  .offset-3 {
    margin-left: -169px;
  }
  .offset-2 {
    margin-left: -106px;
  }
  .offset-1 {
    margin-left: -43px;
  }
}
@media (min-width: 980px) and (max-width: 1199px) {
  .offset-12 {
    margin-left: -932px;
  }
  .offset-11 {
    margin-left: -851px;
  }
  .offset-10 {
    margin-left: -770px;
  }
  .offset-9 {
    margin-left: -689px;
  }
  .offset-8 {
    margin-left: -608px;
  }
  .offset-7 {
    margin-left: -527px;
  }
  .offset-6 {
    margin-left: -446px;
  }
  .offset-5 {
    margin-left: -365px;
  }
  .offset-4 {
    margin-left: -284px;
  }
  .offset-3 {
    margin-left: -203px;
  }
  .offset-2 {
    margin-left: -122px;
  }
  .offset-1 {
    margin-left: -41px;
  }
}
@media (min-width: 1200px) {
  .offset-12 {
    margin-left: -1196px;
  }
  .offset-11 {
    margin-left: -1093px;
  }
  .offset-10 {
    margin-left: -990px;
  }
  .offset-9 {
    margin-left: -887px;
  }
  .offset-8 {
    margin-left: -784px;
  }
  .offset-7 {
    margin-left: -681px;
  }
  .offset-6 {
    margin-left: -578px;
  }
  .offset-5 {
    margin-left: -475px;
  }
  .offset-4 {
    margin-left: -372px;
  }
  .offset-3 {
    margin-left: -269px;
  }
  .offset-2 {
    margin-left: -166px;
  }
  .offset-1 {
    margin-left: -63px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .row,
  .row-fluid {
    width: 100%;
    margin-left: 0;
    *zoom: 1;
  }
  .row:before,
  .row:after,
  .row-fluid:before,
  .row-fluid:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .row:after,
  .row-fluid:after {
    clear: both;
  }
  .row [class*="span"],
  .row-fluid [class*="span"] {
    display: block;
    width: 100%;
    min-height: 34px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: left;
    margin-left: 2.7173913043478%;
    *margin-left: 2.6637432356783%;
  }
  .row [class*="span"]:first-child:not(.pull-right),
  .row-fluid [class*="span"]:first-child:not(.pull-right) {
    margin-left: 0;
  }
  .row [class*="span"].pull-right:first-child + [class*="span"]:not(.pull-right),
  .row-fluid [class*="span"].pull-right:first-child + [class*="span"]:not(.pull-right) {
    margin-left: 0;
  }
  .row .span12,
  .row-fluid .span12 {
    width: 100%;
    *width: 99.94635193133%;
  }
  .row .span11,
  .row-fluid .span11 {
    width: 91.440217391304%;
    *width: 91.386569322635%;
  }
  .row .span10,
  .row-fluid .span10 {
    width: 82.880434782609%;
    *width: 82.826786713939%;
  }
  .row .span9,
  .row-fluid .span9 {
    width: 74.320652173913%;
    *width: 74.267004105244%;
  }
  .row .span8,
  .row-fluid .span8 {
    width: 65.760869565217%;
    *width: 65.707221496548%;
  }
  .row .span7,
  .row-fluid .span7 {
    width: 57.201086956522%;
    *width: 57.147438887852%;
  }
  .row .span6,
  .row-fluid .span6 {
    width: 48.641304347826%;
    *width: 48.587656279157%;
  }
  .row .span5,
  .row-fluid .span5 {
    width: 40.08152173913%;
    *width: 40.027873670461%;
  }
  .row .span4,
  .row-fluid .span4 {
    width: 31.521739130435%;
    *width: 31.468091061765%;
  }
  .row .span3,
  .row-fluid .span3 {
    width: 22.961956521739%;
    *width: 22.90830845307%;
  }
  .row .span2,
  .row-fluid .span2 {
    width: 14.402173913043%;
    *width: 14.348525844374%;
  }
  .row .span1,
  .row-fluid .span1 {
    width: 5.8423913043478%;
    *width: 5.7887432356783%;
  }
  .span12 .row [class*="span"] {
    margin-left: 2.7173913043478%;
    *margin-left: 2.6637432356783%;
  }
  .span12 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span12 .row .span12 {
    width: 100%;
    *width: 99.94635193133%;
  }
  .span12 .row .span11 {
    width: 91.440217391304%;
    *width: 91.386569322635%;
  }
  .span12 .row .span10 {
    width: 82.880434782609%;
    *width: 82.826786713939%;
  }
  .span12 .row .span9 {
    width: 74.320652173913%;
    *width: 74.267004105244%;
  }
  .span12 .row .span8 {
    width: 65.760869565217%;
    *width: 65.707221496548%;
  }
  .span12 .row .span7 {
    width: 57.201086956522%;
    *width: 57.147438887852%;
  }
  .span12 .row .span6 {
    width: 48.641304347826%;
    *width: 48.587656279157%;
  }
  .span12 .row .span5 {
    width: 40.08152173913%;
    *width: 40.027873670461%;
  }
  .span12 .row .span4 {
    width: 31.521739130435%;
    *width: 31.468091061765%;
  }
  .span12 .row .span3 {
    width: 22.961956521739%;
    *width: 22.90830845307%;
  }
  .span12 .row .span2 {
    width: 14.402173913043%;
    *width: 14.348525844374%;
  }
  .span12 .row .span1 {
    width: 5.8423913043478%;
    *width: 5.7887432356783%;
  }
  .span11 .row [class*="span"] {
    margin-left: 2.9717682020802%;
    *margin-left: 2.9181201334107%;
  }
  .span11 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span11 .row .span11 {
    width: 91.440217391304%;
    *width: 91.386569322635%;
  }
  .span11 .row .span10 {
    width: 82.880434782609%;
    *width: 82.826786713939%;
  }
  .span11 .row .span9 {
    width: 74.320652173913%;
    *width: 74.267004105244%;
  }
  .span11 .row .span8 {
    width: 65.760869565217%;
    *width: 65.707221496548%;
  }
  .span11 .row .span7 {
    width: 57.201086956522%;
    *width: 57.147438887852%;
  }
  .span11 .row .span6 {
    width: 48.641304347826%;
    *width: 48.587656279157%;
  }
  .span11 .row .span5 {
    width: 40.08152173913%;
    *width: 40.027873670461%;
  }
  .span11 .row .span4 {
    width: 31.521739130435%;
    *width: 31.468091061765%;
  }
  .span11 .row .span3 {
    width: 22.961956521739%;
    *width: 22.90830845307%;
  }
  .span11 .row .span2 {
    width: 14.402173913043%;
    *width: 14.348525844374%;
  }
  .span11 .row .span1 {
    width: 5.8423913043478%;
    *width: 5.7887432356783%;
  }
  .span10 .row [class*="span"] {
    margin-left: 3.2786885245902%;
    *margin-left: 3.2250404559206%;
  }
  .span10 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span10 .row .span10 {
    width: 90.638930163447%;
    *width: 90.585282094778%;
  }
  .span10 .row .span9 {
    width: 81.277860326894%;
    *width: 81.224212258225%;
  }
  .span10 .row .span8 {
    width: 71.916790490342%;
    *width: 71.863142421672%;
  }
  .span10 .row .span7 {
    width: 62.555720653789%;
    *width: 62.502072585119%;
  }
  .span10 .row .span6 {
    width: 53.194650817236%;
    *width: 53.141002748567%;
  }
  .span10 .row .span5 {
    width: 43.833580980684%;
    *width: 43.779932912014%;
  }
  .span10 .row .span4 {
    width: 34.472511144131%;
    *width: 34.418863075461%;
  }
  .span10 .row .span3 {
    width: 25.111441307578%;
    *width: 25.057793238908%;
  }
  .span10 .row .span2 {
    width: 15.750371471025%;
    *width: 15.696723402356%;
  }
  .span10 .row .span1 {
    width: 6.3893016344725%;
    *width: 6.335653565803%;
  }
  .span9 .row [class*="span"] {
    margin-left: 3.6563071297989%;
    *margin-left: 3.6026590611294%;
  }
  .span9 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span9 .row .span9 {
    width: 89.672131147541%;
    *width: 89.618483078871%;
  }
  .span9 .row .span8 {
    width: 79.344262295082%;
    *width: 79.290614226412%;
  }
  .span9 .row .span7 {
    width: 69.016393442623%;
    *width: 68.962745373953%;
  }
  .span9 .row .span6 {
    width: 58.688524590164%;
    *width: 58.634876521494%;
  }
  .span9 .row .span5 {
    width: 48.360655737705%;
    *width: 48.307007669035%;
  }
  .span9 .row .span4 {
    width: 38.032786885246%;
    *width: 37.979138816576%;
  }
  .span9 .row .span3 {
    width: 27.704918032787%;
    *width: 27.651269964117%;
  }
  .span9 .row .span2 {
    width: 17.377049180328%;
    *width: 17.323401111658%;
  }
  .span9 .row .span1 {
    width: 7.0491803278689%;
    *width: 6.9955322591993%;
  }
  .span8 .row [class*="span"] {
    margin-left: 4.1322314049587%;
    *margin-left: 4.0785833362892%;
  }
  .span8 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span8 .row .span8 {
    width: 88.482632541133%;
    *width: 88.428984472464%;
  }
  .span8 .row .span7 {
    width: 76.965265082267%;
    *width: 76.911617013597%;
  }
  .span8 .row .span6 {
    width: 65.4478976234%;
    *width: 65.394249554731%;
  }
  .span8 .row .span5 {
    width: 53.930530164534%;
    *width: 53.876882095864%;
  }
  .span8 .row .span4 {
    width: 42.413162705667%;
    *width: 42.359514636998%;
  }
  .span8 .row .span3 {
    width: 30.895795246801%;
    *width: 30.842147178131%;
  }
  .span8 .row .span2 {
    width: 19.378427787934%;
    *width: 19.324779719265%;
  }
  .span8 .row .span1 {
    width: 7.8610603290676%;
    *width: 7.8074122603981%;
  }
  .span7 .row [class*="span"] {
    margin-left: 4.750593824228%;
    *margin-left: 4.6969457555585%;
  }
  .span7 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span7 .row .span7 {
    width: 86.98347107438%;
    *width: 86.929823005711%;
  }
  .span7 .row .span6 {
    width: 73.96694214876%;
    *width: 73.913294080091%;
  }
  .span7 .row .span5 {
    width: 60.950413223141%;
    *width: 60.896765154471%;
  }
  .span7 .row .span4 {
    width: 47.933884297521%;
    *width: 47.880236228851%;
  }
  .span7 .row .span3 {
    width: 34.917355371901%;
    *width: 34.863707303231%;
  }
  .span7 .row .span2 {
    width: 21.900826446281%;
    *width: 21.847178377611%;
  }
  .span7 .row .span1 {
    width: 8.8842975206612%;
    *width: 8.8306494519916%;
  }
  .span6 .row [class*="span"] {
    margin-left: 5.586592178771%;
    *margin-left: 5.5329441101014%;
  }
  .span6 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span6 .row .span6 {
    width: 85.035629453682%;
    *width: 84.981981385012%;
  }
  .span6 .row .span5 {
    width: 70.071258907363%;
    *width: 70.017610838694%;
  }
  .span6 .row .span4 {
    width: 55.106888361045%;
    *width: 55.053240292376%;
  }
  .span6 .row .span3 {
    width: 40.142517814727%;
    *width: 40.088869746057%;
  }
  .span6 .row .span2 {
    width: 25.178147268409%;
    *width: 25.124499199739%;
  }
  .span6 .row .span1 {
    width: 10.21377672209%;
    *width: 10.160128653421%;
  }
  .span5 .row [class*="span"] {
    margin-left: 6.7796610169492%;
    *margin-left: 6.7260129482796%;
  }
  .span5 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span5 .row .span5 {
    width: 82.402234636872%;
    *width: 82.348586568202%;
  }
  .span5 .row .span4 {
    width: 64.804469273743%;
    *width: 64.750821205073%;
  }
  .span5 .row .span3 {
    width: 47.206703910615%;
    *width: 47.153055841945%;
  }
  .span5 .row .span2 {
    width: 29.608938547486%;
    *width: 29.555290478817%;
  }
  .span5 .row .span1 {
    width: 12.011173184358%;
    *width: 11.957525115688%;
  }
  .span4 .row [class*="span"] {
    margin-left: 8.6206896551724%;
    *margin-left: 8.5670415865029%;
  }
  .span4 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span4 .row .span4 {
    width: 78.64406779661%;
    *width: 78.590419727941%;
  }
  .span4 .row .span3 {
    width: 57.28813559322%;
    *width: 57.234487524551%;
  }
  .span4 .row .span2 {
    width: 35.932203389831%;
    *width: 35.878555321161%;
  }
  .span4 .row .span1 {
    width: 14.576271186441%;
    *width: 14.522623117771%;
  }
  .span3 .row [class*="span"] {
    margin-left: 11.834319526627%;
    *margin-left: 11.780671457958%;
  }
  .span3 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span3 .row .span3 {
    width: 72.844827586207%;
    *width: 72.791179517537%;
  }
  .span3 .row .span2 {
    width: 45.689655172414%;
    *width: 45.636007103744%;
  }
  .span3 .row .span1 {
    width: 18.534482758621%;
    *width: 18.480834689951%;
  }
  .span2 .row [class*="span"] {
    margin-left: 18.867924528302%;
    *margin-left: 18.814276459632%;
  }
  .span2 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span2 .row .span2 {
    width: 62.721893491124%;
    *width: 62.668245422455%;
  }
  .span2 .row .span1 {
    width: 25.443786982249%;
    *width: 25.390138913579%;
  }
  .span1 .row [class*="span"] {
    margin-left: 46.511627906977%;
    *margin-left: 46.457979838307%;
  }
  .span1 .row [class*="span"]:first-child {
    margin-left: 0;
  }
  .span1 .row .span1 {
    width: 40.566037735849%;
    *width: 40.51238966718%;
  }
  .spanfirst {
    margin-left: 0 !important;
    clear: left;
  }
}
.row .span50,
.row-fluid .span50 {
  width: 50%;
  float: left;
}
.row .span33,
.row-fluid .span33 {
  width: 33.3333%;
  float: left;
}
.row .span25,
.row-fluid .span25 {
  width: 25%;
  float: left;
}
.row .span20,
.row-fluid .span20 {
  width: 20%;
  float: left;
}
.row .span16,
.row-fluid .span16 {
  width: 16.6666%;
  float: left;
}
.hidden-default {
  display: none !important;
}
@media (min-width: 1200px) {
  .hidden-wide {
    display: none !important;
  }
}
@media (min-width: 980px) and (max-width: 1199px) {
  .hidden-normal {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .hidden-xtablet {
    display: none !important;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  .hidden-tablet {
    display: none !important;
  }
}
@media (max-width: 599px) {
  .hidden-mobile {
    display: none !important;
  }
}

.hidden {
  display: none !important;
  visibility: hidden;
}
@media (min-width: 768px) and (max-width: 979px) {
  .jumbotron {
    padding: 24px 0;
  }
  .jumbotron h1 {
    font-size: 22pt;
  }
  .jumbotron p {
    font-size: 11pt;
  }
  .masthead {
    padding: 48px 0;
  }
  .masthead h1 {
    font-size: 44pt;
  }
  .masthead p {
    font-size: 22pt;
  }
  .masthead .btn-large {
    font-size: 13pt;
    padding: 9pt 13pt;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .jumbotron {
    padding: 24px 0;
  }
  .jumbotron h1 {
    font-size: 22pt;
  }
  .jumbotron p {
    font-size: 13pt;
  }
  .masthead {
    padding: 24px 0;
  }
  .masthead h1 {
    font-size: 22pt;
  }
  .masthead p {
    font-size: 13pt;
  }
  .masthead .btn-large {
    font-size: 11pt;
    padding: 9pt 13pt;
    margin-top: 0;
  }
}



@media (max-width: 979px) {
  .always-show .mega > .mega-dropdown-menu,
  .always-show .dropdown-menu {
    display: block !important;
  }
  .navbar-collapse-fixed-top,
  .navbar-collapse-fixed-bottom {
    border-top: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  .navbar-collapse-fixed-top .nav-collapse,
  .navbar-collapse-fixed-bottom .nav-collapse {
    position: absolute;
    width: 100%;
    left: 0;
    top: 41px;
    margin: 0;
  }
  .navbar-collapse-fixed-top .nav-collapse.in,
  .navbar-collapse-fixed-bottom .nav-collapse.in {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navbar-collapse-fixed-top .nav-collapse.in > *,
  .navbar-collapse-fixed-bottom .nav-collapse.in > * {
    -webkit-transform: translateZ(0);
  }
  .navbar-collapse-fixed-top .nav-collapse.animate,
  .navbar-collapse-fixed-bottom .nav-collapse.animate {
    overflow: hidden;
  }
  .navbar-collapse-fixed-bottom {
    bottom: 0;
    top: auto;
  }
  .navbar-collapse-fixed-bottom .nav-collapse {
    bottom: 41px;
    top: auto;
  }
  .navbar-collapse-fixed-bottom .btn-navbar {
    position: absolute;
    bottom: 0;
  }
  .logo-control .logo-img-sm {
    display: block;
  }
  .logo-control .logo-img {
    display: none;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 22pt;
    line-height: 1.25;
  }
  h1 small {
    font-size: 22pt;
  }
  h2 {
    font-size: 16.5pt;
    line-height: 1.25;
  }
  h2 small {
    font-size: 16.5pt;
  }
  h3 {
    font-size: 13.75pt;
    line-height: 1.25;
  }
  h3 small {
    font-size: 11pt;
  }
  h4,
  h5,
  h6 {
    font-size: 11pt;
    line-height: 1.25;
  }
  h4 small,
  h5 small,
  h6 small {
    font-size: 11pt -2px;
  }
}

@media (max-width: 979px) {
  .t3-navhelper {
    margin-left: 0;
    margin-right: 0;
  }
  .t3-mainnav {
    background: #e6e6e6;
    border-top: 1px solid #d9d9d9;
    height: auto;
    margin-left: -20px;
    margin-right: -20px;
  }
  .t3-mainnav .navbar .btn-navbar:hover {
    cursor: pointer;
  }
  .t3-mainnav .nav-collapse {
    margin-top: 12px;
    background: #fff;
  }
  .t3-mainnav .nav-collapse .nav {
    margin: 0;
  }
  .t3-mainnav .nav-collapse .nav > li > a {
    margin-bottom: 0;
  }
  .t3-mainnav .nav-collapse .nav > li > a,
  .t3-mainnav .nav-collapse .dropdown-menu a {
    border-bottom: 1px solid #eee;
    padding: 12px 24px;
    font-weight: bold;
    text-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
  }
  .t3-mainnav .nav-collapse .dropdown-menu li + li a {
    margin-bottom: 0;
  }
  .t3-mainnav .nav-collapse .nav > li > a:hover {
    background-color: #666;
    background-image: none;
    color: #fff;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  }
  .t3-mainnav .nav-collapse .dropdown-menu a {
    border-top: 1px solid #d9d9d9;
    border-bottom: 0;
    font-weight: normal;
    padding: 12px 24px;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  }
  .t3-mainnav .nav-collapse .dropdown-menu.open a,
  .t3-mainnav .nav-collapse .dropdown-submenu.open > a,
  .t3-mainnav .nav-collapse .dropdown-menu a:hover {
    background-color: #666;
    background-image: none;
    color: #fff;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  }
  .t3-mainnav .nav-collapse .dropdown-menu {
    margin: 0;
    padding: 0;
    background-color: #e6e6e6;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .t3-mainnav.navbar-collapse-fixed-top,
  .t3-mainnav.navbar-collapse-fixed-bottom {
    margin: 0;
  }
  .t3-mainnav.navbar-collapse-fixed-top .nav-collapse,
  .t3-mainnav.navbar-collapse-fixed-bottom .nav-collapse {
    margin: 0;
  }
  .t3-mainnav .navbar .nav > li > .dropdown-menu:before,
  .t3-mainnav .navbar .nav > li > .dropdown-menu:after,
  .t3-mainnav .navbar .nav > li > .dropdown-menu .divider {
    display: none;
  }
  .t3-mainnav .customization {
    display: none;
  }
}

@media (max-width: 599px) {
  article img[align=left],
  .img_caption.left,
  article img[align=right],
  .img_caption.right,
  .img-fulltext-left,
  .img-fulltext-right {
    float: none !important;
    margin-left: 0;
    margin-right: 0;
    width: 100% !important;
  }
}



@media (max-width: 979px) {
  body {
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  .head-search {
    float: left !important;
    margin-top: 24px;
    margin-left: 0 !important;
    width: 100% !important;
  }
  .head-search form {
    float: none;
  }
  .head-search .input {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 30px;
  }
  .head-search .input:focus {
    width: 100%;
  }
  .t3-header .span8,
  .t3-header .span4 {
    width: 100% !important;
    margin-left: 0 !important;
    float: none;
  }
  .languageswitcherload {
    float: left;
  }
  .languageswitcherload .mod-languages {
    text-align: right;
  }
  .t3-sl {
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .t3-footer {
    margin-left: 0;
    margin-right: 0;
  }
  .t3-footnav {
    padding: 24px 20px 0;
    font-size: 9pt;
  }
  .t3-footnav .module-title {
    font-size: 11pt;
    font-weight: bold;
  }
  .t3-copyright {
    padding: 24px 20px 48px;
    *zoom: 1;
  }
  .t3-copyright:before,
  .t3-copyright:after {
    display: table;
    content: "";
    line-height: 0;
  }
  .t3-copyright:after {
    clear: both;
  }
  .copyright,
  .poweredby {
    float: none;
    display: inline-block;
    text-align: center;
  }
  .poweredby {
    margin-top: 12px;
  }
  .poweredby .t3-logo,
  .poweredby .t3-logo-small {
    float: none;
    display: inline-block;
  }
}
.t3-megamenu .mega-inner {
  padding: 12px;
  *zoom: 1;
}
.t3-megamenu .mega-inner:before,
.t3-megamenu .mega-inner:after {
  display: table;
  content: "";
  line-height: 0;
}
.t3-megamenu .mega-inner:after {
  clear: both;
}
.t3-megamenu .row-fluid + .row-fluid {
  padding-top: 12px;
  border-top: 1px solid #eee;
}
.t3-megamenu .mega > .mega-dropdown-menu {
  min-width: 200px;
  display: none;
}
.t3-megamenu .mega.open > .mega-dropdown-menu,
.t3-megamenu .mega.dropdown-submenu:hover > .mega-dropdown-menu {
  display: block;
}
.t3-megamenu .mega-group {
  *zoom: 1;
}
.t3-megamenu .mega-group:before,
.t3-megamenu .mega-group:after {
  display: table;
  content: "";
  line-height: 0;
}
.t3-megamenu .mega-group:after {
  clear: both;
}
.t3-megamenu .mega-nav .mega-group > .mega-group-title,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title {
  background: inherit;
  color: inherit;
  font-weight: bold;
  padding: 0;
  margin: 0;
}
.t3-megamenu .mega-nav .mega-group > .mega-group-title:hover,
.t3-megamenu .mega-nav .mega-group > .mega-group-title:active,
.t3-megamenu .mega-nav .mega-group > .mega-group-title:focus,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title:hover,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title:active,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title:focus,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title:hover,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title:active,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title:focus {
  background: inherit;
  color: inherit;
}
.t3-megamenu .mega-group-ct {
  margin: 0;
  padding: 0;
  *zoom: 1;
}
.t3-megamenu .mega-group-ct:before,
.t3-megamenu .mega-group-ct:after {
  display: table;
  content: "";
  line-height: 0;
}
.t3-megamenu .mega-group-ct:after {
  clear: both;
}
.t3-megamenu .span12.mega-col-nav .mega-inner {
  padding: 5px;
}
.t3-megamenu .mega-group .span12.mega-col-nav .mega-inner {
  padding: 0;
}
.t3-megamenu .mega-nav,
.t3-megamenu .dropdown-menu .mega-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.t3-megamenu .mega-nav > li,
.t3-megamenu .dropdown-menu .mega-nav > li {
  list-style: none;
  margin-left: 0;
}
.t3-megamenu .mega-nav > li a,
.t3-megamenu .dropdown-menu .mega-nav > li a {
  white-space: normal;
}
.t3-megamenu .mega-group > .mega-nav,
.t3-megamenu .dropdown-menu .mega-group > .mega-nav {
  margin-left: -5px;
  margin-right: -5px;
}
.t3-megamenu .mega-nav .dropdown-submenu > a::after {
  margin-right: 5px;
}
.t3-megamenu .t3-module {
  margin-bottom: 12px;
}
.t3-megamenu .t3-module .module-title {
  margin-bottom: 0;
}
.t3-megamenu .t3-module .module-ct {
  margin: 0;
  padding: 0;
}
.t3-megamenu .mega-align-left > .dropdown-menu {
  left: 0;
}
.t3-megamenu .mega-align-right > .dropdown-menu {
  left: auto;
  right: 0;
}
.t3-megamenu .mega-align-center > .dropdown-menu {
  left: 50%;
  transform: translate(-50%);
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
}
.t3-megamenu .dropdown-submenu.mega-align-left > .dropdown-menu {
  left: 100%;
}
.t3-megamenu .dropdown-submenu.mega-align-right > .dropdown-menu {
  left: auto;
  right: 100%;
}
.t3-megamenu .mega-align-justify {
  position: static;
}
.t3-megamenu .mega-align-justify > .dropdown-menu {
  left: 0;
  margin-left: 0;
  top: auto;
}
.t3-megamenu .mega-caption {
  display: block;
  white-space: nowrap;
}
.t3-megamenu .nav .caret,
.t3-megamenu .dropdown-submenu .caret,
.t3-megamenu .mega-menu .caret {
  display: none;
}
.t3-megamenu .nav > .dropdown > .dropdown-toggle .caret {
  display: inline-block;
}
.t3-megamenu .nav [class^="icon-"],
.t3-megamenu .nav [class*=" icon-"] {
  margin-right: 5px;
}
@media (min-width: 980px) {
  .t3-megamenu.animate .mega > .mega-dropdown-menu {
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 0;
  }
  .t3-megamenu.animate .mega.animating > .mega-dropdown-menu {
    display: block !important;
  }
  .t3-megamenu.animate .mega.open > .mega-dropdown-menu,
  .t3-megamenu.animate .mega.animating.open > .mega-dropdown-menu {
    opacity: 1;
  }
  .t3-megamenu.animate.zoom .mega > .mega-dropdown-menu {
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transform-origin: 20% 20%;
    -moz-transform-origin: 20% 20%;
    transform-origin: 20% 20%;
  }
  .t3-megamenu.animate.zoom .mega.open > .mega-dropdown-menu {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .t3-megamenu.animate.zoom .level0 > .mega-align-center > .mega-dropdown-menu {
    -webkit-transform: scale(0,0) translate(-50%,0);
    -ms-transform: scale(0,0) translate(-50%,0);
    transform: scale(0,0) translate(-50%,0);
    -webkit-transform-origin: 0% 20%;
    -moz-transform-origin: 0% 20%;
    transform-origin: 0% 20%;
  }
  .t3-megamenu.animate.zoom .level0 > .mega-align-center.open > .mega-dropdown-menu {
    -webkit-transform: scale(1,1) translate(-50%,0);
    -ms-transform: scale(1,1) translate(-50%,0);
    transform: scale(1,1) translate(-50%,0);
  }
  .t3-megamenu.animate.elastic .mega > .mega-dropdown-menu {
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 10% 0;
    -moz-transform-origin: 10% 0;
    transform-origin: 10% 0;
  }
  .t3-megamenu.animate.elastic .mega.open > .mega-dropdown-menu {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .t3-megamenu.animate.elastic .level0 > .mega > .mega-dropdown-menu {
    -webkit-transform: scale(1, 0);
    -moz-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    -o-transform: scale(1, 0);
    transform: scale(1, 0);
  }
  .t3-megamenu.animate.elastic .level0 .open > .mega-dropdown-menu {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .t3-megamenu.animate.elastic .level0 > .mega-align-center > .mega-dropdown-menu {
    transform: scale(1,0) translate(-50%,0);
    -ms-transform: scale(1,0) translate(-50%,0);
    -webkit-transform: scale(1,0) translate(-50%,0);
  }
  .t3-megamenu.animate.elastic .level0 > .mega-align-center.open > .mega-dropdown-menu {
    transform: scale(1,1) translate(-50%,0);
    -ms-transform: scale(1,1) translate(-50%,0);
    -webkit-transform: scale(1,1) translate(-50%,0);
  }
  .t3-megamenu.animate.slide {
    
  }
  .t3-megamenu.animate.slide .mega {
    
  }
  .t3-megamenu.animate.slide .mega.animating > .mega-dropdown-menu {
    overflow: hidden;
  }
  .t3-megamenu.animate.slide .mega > .mega-dropdown-menu > div {
    transition: all 400ms;
    -webkit-transition: all 400ms;
    -ms-transition: all 400ms;
    -o-transition: all 400ms;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-top: -100%;
  }
  .t3-megamenu.animate.slide .mega.open > .mega-dropdown-menu > div {
    margin-top: 0%;
  }
  .t3-megamenu.animate.slide .mega .mega > .mega-dropdown-menu {
    min-width: 0;
  }
  .t3-megamenu.animate.slide .mega .mega > .mega-dropdown-menu > div {
    min-width: 200px;
    margin-top: 0;
    margin-left: -500px;
  }
  .t3-megamenu.animate.slide .mega .mega.open > .mega-dropdown-menu > div {
    margin-left: 0;
  }
}
.t3-megamenu .mega-inner {
  padding: 24px;
}
.t3-megamenu .row-fluid + .row-fluid {
  border-top: 1px solid #ddd;
}
.t3-megamenu .mega-nav .mega-group > .mega-group-title,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title {
  background: inherit;
  color: #222;
  font-size: 13pt;
  font-weight: bold;
  margin-bottom: 5px;
}
.t3-megamenu .mega-nav .mega-group > .mega-group-title:hover,
.t3-megamenu .mega-nav .mega-group > .mega-group-title:active,
.t3-megamenu .mega-nav .mega-group > .mega-group-title:focus,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title:hover,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title:active,
.t3-megamenu .dropdown-menu .mega-nav .mega-group > .mega-group-title:focus,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title:hover,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title:active,
.t3-megamenu .dropdown-menu .active .mega-nav .mega-group > .mega-group-title:focus {
  background: inherit;
  color: #222;
}
.t3-megamenu .mega-nav > li a,
.t3-megamenu .dropdown-menu .mega-nav > li a {
  padding: 5px 12px;
}
.t3-megamenu .mega-nav .dropdown-submenu > a::after {
  margin-right: 0;
}
.t3-megamenu .t3-module .module-title {
  font-size: 13pt;
  color: #222;
  display: block;
  line-height: 24px;
  margin-bottom: 5px;
}
.t3-megamenu .t3-module ul,
.t3-megamenu .t3-module .nav {
  margin: 0 0 0 15px;
}
.t3-megamenu .t3-module ul li,
.t3-megamenu .t3-module .nav li {
  list-style: disc;
  display: list-item;
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
}
.t3-megamenu .t3-module ul li a,
.t3-megamenu .t3-module .nav li a {
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  font-size: 100%;
  background: none;
  font: inherit;
  white-space: normal;
}
.t3-megamenu .t3-module ul li a:hover,
.t3-megamenu .t3-module ul li a:focus,
.t3-megamenu .t3-module ul li a:active,
.t3-megamenu .t3-module .nav li a:hover,
.t3-megamenu .t3-module .nav li a:focus,
.t3-megamenu .t3-module .nav li a:active {
  background: none;
  color: inherit;
  font: inherit;
}
.t3-megamenu .mega-caption {
  color: #999;
  font-size: 9pt;
  margin-top: 3px;
  font-weight: normal;
}
@media (max-width: 979px) {
  .t3-megamenu .mega-inner {
    padding: 12px 24px;
  }
  .t3-megamenu .row-fluid,
  .t3-megamenu .mega-dropdown-menu,
  .t3-megamenu .row-fluid [class*="span"] {
    width: 100% !important;
    min-width: 100% !important;
    left: 0 !important;
    margin-left: 0 !important;
    transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -ms-transform: none !important;
    -o-transform: none !important;
  }
  .t3-megamenu .row-fluid + .row-fluid {
    padding-top: 12px;
    border-top: 1px solid #eee;
  }
  .t3-megamenu .hidden-collapse,
  .t3-megamenu .always-show  .caret,
  .t3-megamenu .sub-hidden-collapse > .nav-child,
  .t3-megamenu .sub-hidden-collapse .caret,
  .t3-megamenu .sub-hidden-collapse > a:after,
  .t3-megamenu .always-show .dropdown-submenu > a:after {
    display: none !important;
  }
  .t3-megamenu .mega-caption {
    display: none !important;
  }
  html[dir="rtl"] .t3-megamenu .row-fluid,
  html[dir="rtl"] .t3-megamenu .mega-dropdown-menu,
  html[dir="rtl"] .t3-megamenu .row-fluid [class*="span"] {
    right: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 979px) {
  .t3-megamenu .mega-inner {
    padding: 12px 24px;
  }
  .t3-megamenu .row-fluid + .row-fluid {
    border-top: 1px solid #999;
  }
  .t3-megamenu .span12.mega-col-nav .mega-inner {
    padding: 0;
  }
  .t3-megamenu .mega-nav > li a,
  .t3-megamenu .dropdown-menu .mega-nav > li a {
    padding: 5px 24px;
  }
  .t3-megamenu .t3-module {
    margin-bottom: 0;
  }
  .off-canvas #off-canvas-nav .t3-mainnav {
    background: #000;
  }
  .off-canvas #off-canvas-nav .t3-mainnav .nav-collapse .nav li a {
    color: #fff;
    height: auto;
    line-height: 24px;
    padding: 5px 0 5px 0;
    border: none;
    background: #000;
    font-weight: normal;
    margin: 0;
    font-size: 12px;
    border-top: 1px solid #4F4D4D;
  }
  .off-canvas #off-canvas-nav .t3-mainnav .nav-collapse .nav li a:hover,
  .off-canvas #off-canvas-nav .t3-mainnav .nav-collapse .nav li.active > a {
    background: #cc6633;
  }
  .off-canvas #off-canvas-nav .t3-mainnav .nav-collapse .nav > li > a {
    padding: 5px 0 5px 10px;
  }
  .off-canvas #off-canvas-nav .t3-mainnav .nav-collapse .nav li li > a {
    padding: 5px 0 5px 20px;
  }
  .off-canvas #off-canvas-nav .t3-mainnav .nav-collapse .nav li li li > a {
    padding: 5px 0 5px 30px;
  }
  .off-canvas #off-canvas-nav .t3-megamenu .dropdown-menu .mega-inner {
    padding: 0;
  }
}
#off-canvas-nav {
  display: none;
}
@media (max-width: 979px) {
  .off-canvas {
    width: 100%;
    overflow-x: hidden;
    position: relative;
  }
  .off-canvas body {
    width: 100%;
    overflow-x: hidden;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  .off-canvas body > * {
    left: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 500ms ease;
    -moz-transition: -moz-transform 500ms ease;
    -o-transition: -o-transform 500ms ease;
    transition: transform 500ms ease;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .off-canvas #t3-mainnav .nav-collapse,
  .off-canvas #ja-mainnav .nav-collapse {
    display: none;
  }
  .off-canvas #off-canvas-nav {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    z-index: 1;
    background: none;
  }
  .off-canvas #off-canvas-nav .t3-mainnav {
    margin: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .off-canvas #off-canvas-nav .t3-mainnav .nav-collapse {
    height: auto;
    background: none;
  }
  .off-canvas-enabled body > * {
    -webkit-transform: translateX(250px);
    -moz-transform: translateX(250px);
    -o-transform: translateX(250px);
    transform: translateX(250px);
  }
  .off-canvas-enabled #t3-mainnav {
    display: block;
  }
}
@media (max-width: 767px) {
  .off-canvas .t3-mainnav .nav-collapse {
    margin-top: 0;
  }
}
@font-face{font-family:'FontAwesome';src:url(/templates/bt_business/fonts/font-awesome/font/fontawesome-webfont.eot?v=3.2.1);src:url(/templates/bt_business/fonts/font-awesome/font/fontawesome-webfont.eot#iefix&v=3.2.1) format('embedded-opentype'),url(/templates/bt_business/fonts/font-awesome/font/fontawesome-webfont.woff?v=3.2.1) format('woff'),url(/templates/bt_business/fonts/font-awesome/font/fontawesome-webfont.ttf?v=3.2.1) format('truetype'),url(/templates/bt_business/fonts/font-awesome/font/fontawesome-webfont.svg#fontawesomeregular?v=3.2.1) format('svg');font-weight:normal;font-style:normal;}[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;*margin-right:.3em;}
[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none;}
.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em;}
a [class^="icon-"],a [class*=" icon-"]{display:inline;}
[class^="icon-"].icon-fixed-width,[class*=" icon-"].icon-fixed-width{display:inline-block;width:1.1428571428571428em;text-align:right;padding-right:0.2857142857142857em;}[class^="icon-"].icon-fixed-width.icon-large,[class*=" icon-"].icon-fixed-width.icon-large{width:1.4285714285714286em;}
.icons-ul{margin-left:2.142857142857143em;list-style-type:none;}.icons-ul>li{position:relative;}
.icons-ul .icon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;text-align:center;line-height:inherit;}
[class^="icon-"].hide,[class*=" icon-"].hide{display:none;}
.icon-muted{color:#eeeeee;}
.icon-light{color:#ffffff;}
.icon-dark{color:#333333;}
.icon-border{border:solid 1px #eeeeee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
.icon-2x{font-size:2em;}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
.icon-3x{font-size:3em;}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px;}
.icon-4x{font-size:4em;}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
.icon-5x{font-size:5em;}.icon-5x.icon-border{border-width:5px;-webkit-border-radius:7px;-moz-border-radius:7px;border-radius:7px;}
.pull-right{float:right;}
.pull-left{float:left;}
[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em;}
[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em;}
[class^="icon-"],[class*=" icon-"]{display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0% 0%;background-repeat:repeat;margin-top:0;}
.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none;}
.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em;}
.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block;}
.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em;}
.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em;}
.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em;}
.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em;}
.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0;}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em;}
.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em;}
.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em;}
.nav-list [class^="icon-"],.nav-list [class*=" icon-"]{line-height:inherit;}
.icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:-35%;}.icon-stack [class^="icon-"],.icon-stack [class*=" icon-"]{display:block;text-align:center;position:absolute;width:100%;height:100%;font-size:1em;line-height:inherit;*line-height:2em;}
.icon-stack .icon-stack-base{font-size:2em;*line-height:1em;}
.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear;}
a .icon-stack,a .icon-spin{display:inline-block;text-decoration:none;}
@-moz-keyframes spin{0%{-moz-transform:rotate(0deg);} 100%{-moz-transform:rotate(359deg);}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);} 100%{-webkit-transform:rotate(359deg);}}@-o-keyframes spin{0%{-o-transform:rotate(0deg);} 100%{-o-transform:rotate(359deg);}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg);} 100%{-ms-transform:rotate(359deg);}}@keyframes spin{0%{transform:rotate(0deg);} 100%{transform:rotate(359deg);}}.icon-rotate-90:before{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);}
.icon-rotate-180:before{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);}
.icon-rotate-270:before{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);}
.icon-flip-horizontal:before{-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1);}
.icon-flip-vertical:before{-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1);}
a .icon-rotate-90:before,a .icon-rotate-180:before,a .icon-rotate-270:before,a .icon-flip-horizontal:before,a .icon-flip-vertical:before{display:inline-block;}
.icon-glass:before{content:"\f000";}
.icon-music:before{content:"\f001";}
.icon-search:before{content:"\f002";}
.icon-envelope-alt:before{content:"\f003";}
.icon-heart:before{content:"\f004";}
.icon-star:before{content:"\f005";}
.icon-star-empty:before{content:"\f006";}
.icon-user:before{content:"\f007";}
.icon-film:before{content:"\f008";}
.icon-th-large:before{content:"\f009";}
.icon-th:before{content:"\f00a";}
.icon-th-list:before{content:"\f00b";}
.icon-ok:before{content:"\f00c";}
.icon-remove:before{content:"\f00d";}
.icon-zoom-in:before{content:"\f00e";}
.icon-zoom-out:before{content:"\f010";}
.icon-power-off:before,.icon-off:before{content:"\f011";}
.icon-signal:before{content:"\f012";}
.icon-gear:before,.icon-cog:before{content:"\f013";}
.icon-trash:before{content:"\f014";}
.icon-home:before{content:"\f015";}
.icon-file-alt:before{content:"\f016";}
.icon-time:before{content:"\f017";}
.icon-road:before{content:"\f018";}
.icon-download-alt:before{content:"\f019";}
.icon-download:before{content:"\f01a";}
.icon-upload:before{content:"\f01b";}
.icon-inbox:before{content:"\f01c";}
.icon-play-circle:before{content:"\f01d";}
.icon-rotate-right:before,.icon-repeat:before{content:"\f01e";}
.icon-refresh:before{content:"\f021";}
.icon-list-alt:before{content:"\f022";}
.icon-lock:before{content:"\f023";}
.icon-flag:before{content:"\f024";}
.icon-headphones:before{content:"\f025";}
.icon-volume-off:before{content:"\f026";}
.icon-volume-down:before{content:"\f027";}
.icon-volume-up:before{content:"\f028";}
.icon-qrcode:before{content:"\f029";}
.icon-barcode:before{content:"\f02a";}
.icon-tag:before{content:"\f02b";}
.icon-tags:before{content:"\f02c";}
.icon-book:before{content:"\f02d";}
.icon-bookmark:before{content:"\f02e";}
.icon-print:before{content:"\f02f";}
.icon-camera:before{content:"\f030";}
.icon-font:before{content:"\f031";}
.icon-bold:before{content:"\f032";}
.icon-italic:before{content:"\f033";}
.icon-text-height:before{content:"\f034";}
.icon-text-width:before{content:"\f035";}
.icon-align-left:before{content:"\f036";}
.icon-align-center:before{content:"\f037";}
.icon-align-right:before{content:"\f038";}
.icon-align-justify:before{content:"\f039";}
.icon-list:before{content:"\f03a";}
.icon-indent-left:before{content:"\f03b";}
.icon-indent-right:before{content:"\f03c";}
.icon-facetime-video:before{content:"\f03d";}
.icon-picture:before{content:"\f03e";}
.icon-pencil:before{content:"\f040";}
.icon-map-marker:before{content:"\f041";}
.icon-adjust:before{content:"\f042";}
.icon-tint:before{content:"\f043";}
.icon-edit:before{content:"\f044";}
.icon-share:before{content:"\f045";}
.icon-check:before{content:"\f046";}
.icon-move:before{content:"\f047";}
.icon-step-backward:before{content:"\f048";}
.icon-fast-backward:before{content:"\f049";}
.icon-backward:before{content:"\f04a";}
.icon-play:before{content:"\f04b";}
.icon-pause:before{content:"\f04c";}
.icon-stop:before{content:"\f04d";}
.icon-forward:before{content:"\f04e";}
.icon-fast-forward:before{content:"\f050";}
.icon-step-forward:before{content:"\f051";}
.icon-eject:before{content:"\f052";}
.icon-chevron-left:before{content:"\f053";}
.icon-chevron-right:before{content:"\f054";}
.icon-plus-sign:before{content:"\f055";}
.icon-minus-sign:before{content:"\f056";}
.icon-remove-sign:before{content:"\f057";}
.icon-ok-sign:before{content:"\f058";}
.icon-question-sign:before{content:"\f059";}
.icon-info-sign:before{content:"\f05a";}
.icon-screenshot:before{content:"\f05b";}
.icon-remove-circle:before{content:"\f05c";}
.icon-ok-circle:before{content:"\f05d";}
.icon-ban-circle:before{content:"\f05e";}
.icon-arrow-left:before{content:"\f060";}
.icon-arrow-right:before{content:"\f061";}
.icon-arrow-up:before{content:"\f062";}
.icon-arrow-down:before{content:"\f063";}
.icon-mail-forward:before,.icon-share-alt:before{content:"\f064";}
.icon-resize-full:before{content:"\f065";}
.icon-resize-small:before{content:"\f066";}
.icon-plus:before{content:"\f067";}
.icon-minus:before{content:"\f068";}
.icon-asterisk:before{content:"\f069";}
.icon-exclamation-sign:before{content:"\f06a";}
.icon-gift:before{content:"\f06b";}
.icon-leaf:before{content:"\f06c";}
.icon-fire:before{content:"\f06d";}
.icon-eye-open:before{content:"\f06e";}
.icon-eye-close:before{content:"\f070";}
.icon-warning-sign:before{content:"\f071";}
.icon-plane:before{content:"\f072";}
.icon-calendar:before{content:"\f073";}
.icon-random:before{content:"\f074";}
.icon-comment:before{content:"\f075";}
.icon-magnet:before{content:"\f076";}
.icon-chevron-up:before{content:"\f077";}
.icon-chevron-down:before{content:"\f078";}
.icon-retweet:before{content:"\f079";}
.icon-shopping-cart:before{content:"\f07a";}
.icon-folder-close:before{content:"\f07b";}
.icon-folder-open:before{content:"\f07c";}
.icon-resize-vertical:before{content:"\f07d";}
.icon-resize-horizontal:before{content:"\f07e";}
.icon-bar-chart:before{content:"\f080";}
.icon-twitter-sign:before{content:"\f081";}
.icon-facebook-sign:before{content:"\f082";}
.icon-camera-retro:before{content:"\f083";}
.icon-key:before{content:"\f084";}
.icon-gears:before,.icon-cogs:before{content:"\f085";}
.icon-comments:before{content:"\f086";}
.icon-thumbs-up-alt:before{content:"\f087";}
.icon-thumbs-down-alt:before{content:"\f088";}
.icon-star-half:before{content:"\f089";}
.icon-heart-empty:before{content:"\f08a";}
.icon-signout:before{content:"\f08b";}
.icon-linkedin-sign:before{content:"\f08c";}
.icon-pushpin:before{content:"\f08d";}
.icon-external-link:before{content:"\f08e";}
.icon-signin:before{content:"\f090";}
.icon-trophy:before{content:"\f091";}
.icon-github-sign:before{content:"\f092";}
.icon-upload-alt:before{content:"\f093";}
.icon-lemon:before{content:"\f094";}
.icon-phone:before{content:"\f095";}
.icon-unchecked:before,.icon-check-empty:before{content:"\f096";}
.icon-bookmark-empty:before{content:"\f097";}
.icon-phone-sign:before{content:"\f098";}
.icon-twitter:before{content:"\f099";}
.icon-facebook:before{content:"\f09a";}
.icon-github:before{content:"\f09b";}
.icon-unlock:before{content:"\f09c";}
.icon-credit-card:before{content:"\f09d";}
.icon-rss:before{content:"\f09e";}
.icon-hdd:before{content:"\f0a0";}
.icon-bullhorn:before{content:"\f0a1";}
.icon-bell:before{content:"\f0a2";}
.icon-certificate:before{content:"\f0a3";}
.icon-hand-right:before{content:"\f0a4";}
.icon-hand-left:before{content:"\f0a5";}
.icon-hand-up:before{content:"\f0a6";}
.icon-hand-down:before{content:"\f0a7";}
.icon-circle-arrow-left:before{content:"\f0a8";}
.icon-circle-arrow-right:before{content:"\f0a9";}
.icon-circle-arrow-up:before{content:"\f0aa";}
.icon-circle-arrow-down:before{content:"\f0ab";}
.icon-globe:before{content:"\f0ac";}
.icon-wrench:before{content:"\f0ad";}
.icon-tasks:before{content:"\f0ae";}
.icon-filter:before{content:"\f0b0";}
.icon-briefcase:before{content:"\f0b1";}
.icon-fullscreen:before{content:"\f0b2";}
.icon-group:before{content:"\f0c0";}
.icon-link:before{content:"\f0c1";}
.icon-cloud:before{content:"\f0c2";}
.icon-beaker:before{content:"\f0c3";}
.icon-cut:before{content:"\f0c4";}
.icon-copy:before{content:"\f0c5";}
.icon-paperclip:before,.icon-paper-clip:before{content:"\f0c6";}
.icon-save:before{content:"\f0c7";}
.icon-sign-blank:before{content:"\f0c8";}
.icon-reorder:before{content:"\f0c9";}
.icon-list-ul:before{content:"\f0ca";}
.icon-list-ol:before{content:"\f0cb";}
.icon-strikethrough:before{content:"\f0cc";}
.icon-underline:before{content:"\f0cd";}
.icon-table:before{content:"\f0ce";}
.icon-magic:before{content:"\f0d0";}
.icon-truck:before{content:"\f0d1";}
.icon-pinterest:before{content:"\f0d2";}
.icon-pinterest-sign:before{content:"\f0d3";}
.icon-google-plus-sign:before{content:"\f0d4";}
.icon-google-plus:before{content:"\f0d5";}
.icon-money:before{content:"\f0d6";}
.icon-caret-down:before{content:"\f0d7";}
.icon-caret-up:before{content:"\f0d8";}
.icon-caret-left:before{content:"\f0d9";}
.icon-caret-right:before{content:"\f0da";}
.icon-columns:before{content:"\f0db";}
.icon-sort:before{content:"\f0dc";}
.icon-sort-down:before{content:"\f0dd";}
.icon-sort-up:before{content:"\f0de";}
.icon-envelope:before{content:"\f0e0";}
.icon-linkedin:before{content:"\f0e1";}
.icon-rotate-left:before,.icon-undo:before{content:"\f0e2";}
.icon-legal:before{content:"\f0e3";}
.icon-dashboard:before{content:"\f0e4";}
.icon-comment-alt:before{content:"\f0e5";}
.icon-comments-alt:before{content:"\f0e6";}
.icon-bolt:before{content:"\f0e7";}
.icon-sitemap:before{content:"\f0e8";}
.icon-umbrella:before{content:"\f0e9";}
.icon-paste:before{content:"\f0ea";}
.icon-lightbulb:before{content:"\f0eb";}
.icon-exchange:before{content:"\f0ec";}
.icon-cloud-download:before{content:"\f0ed";}
.icon-cloud-upload:before{content:"\f0ee";}
.icon-user-md:before{content:"\f0f0";}
.icon-stethoscope:before{content:"\f0f1";}
.icon-suitcase:before{content:"\f0f2";}
.icon-bell-alt:before{content:"\f0f3";}
.icon-coffee:before{content:"\f0f4";}
.icon-food:before{content:"\f0f5";}
.icon-file-text-alt:before{content:"\f0f6";}
.icon-building:before{content:"\f0f7";}
.icon-hospital:before{content:"\f0f8";}
.icon-ambulance:before{content:"\f0f9";}
.icon-medkit:before{content:"\f0fa";}
.icon-fighter-jet:before{content:"\f0fb";}
.icon-beer:before{content:"\f0fc";}
.icon-h-sign:before{content:"\f0fd";}
.icon-plus-sign-alt:before{content:"\f0fe";}
.icon-double-angle-left:before{content:"\f100";}
.icon-double-angle-right:before{content:"\f101";}
.icon-double-angle-up:before{content:"\f102";}
.icon-double-angle-down:before{content:"\f103";}
.icon-angle-left:before{content:"\f104";}
.icon-angle-right:before{content:"\f105";}
.icon-angle-up:before{content:"\f106";}
.icon-angle-down:before{content:"\f107";}
.icon-desktop:before{content:"\f108";}
.icon-laptop:before{content:"\f109";}
.icon-tablet:before{content:"\f10a";}
.icon-mobile-phone:before{content:"\f10b";}
.icon-circle-blank:before{content:"\f10c";}
.icon-quote-left:before{content:"\f10d";}
.icon-quote-right:before{content:"\f10e";}
.icon-spinner:before{content:"\f110";}
.icon-circle:before{content:"\f111";}
.icon-mail-reply:before,.icon-reply:before{content:"\f112";}
.icon-github-alt:before{content:"\f113";}
.icon-folder-close-alt:before{content:"\f114";}
.icon-folder-open-alt:before{content:"\f115";}
.icon-expand-alt:before{content:"\f116";}
.icon-collapse-alt:before{content:"\f117";}
.icon-smile:before{content:"\f118";}
.icon-frown:before{content:"\f119";}
.icon-meh:before{content:"\f11a";}
.icon-gamepad:before{content:"\f11b";}
.icon-keyboard:before{content:"\f11c";}
.icon-flag-alt:before{content:"\f11d";}
.icon-flag-checkered:before{content:"\f11e";}
.icon-terminal:before{content:"\f120";}
.icon-code:before{content:"\f121";}
.icon-reply-all:before{content:"\f122";}
.icon-mail-reply-all:before{content:"\f122";}
.icon-star-half-full:before,.icon-star-half-empty:before{content:"\f123";}
.icon-location-arrow:before{content:"\f124";}
.icon-crop:before{content:"\f125";}
.icon-code-fork:before{content:"\f126";}
.icon-unlink:before{content:"\f127";}
.icon-question:before{content:"\f128";}
.icon-info:before{content:"\f129";}
.icon-exclamation:before{content:"\f12a";}
.icon-superscript:before{content:"\f12b";}
.icon-subscript:before{content:"\f12c";}
.icon-eraser:before{content:"\f12d";}
.icon-puzzle-piece:before{content:"\f12e";}
.icon-microphone:before{content:"\f130";}
.icon-microphone-off:before{content:"\f131";}
.icon-shield:before{content:"\f132";}
.icon-calendar-empty:before{content:"\f133";}
.icon-fire-extinguisher:before{content:"\f134";}
.icon-rocket:before{content:"\f135";}
.icon-maxcdn:before{content:"\f136";}
.icon-chevron-sign-left:before{content:"\f137";}
.icon-chevron-sign-right:before{content:"\f138";}
.icon-chevron-sign-up:before{content:"\f139";}
.icon-chevron-sign-down:before{content:"\f13a";}
.icon-html5:before{content:"\f13b";}
.icon-css3:before{content:"\f13c";}
.icon-anchor:before{content:"\f13d";}
.icon-unlock-alt:before{content:"\f13e";}
.icon-bullseye:before{content:"\f140";}
.icon-ellipsis-horizontal:before{content:"\f141";}
.icon-ellipsis-vertical:before{content:"\f142";}
.icon-rss-sign:before{content:"\f143";}
.icon-play-sign:before{content:"\f144";}
.icon-ticket:before{content:"\f145";}
.icon-minus-sign-alt:before{content:"\f146";}
.icon-check-minus:before{content:"\f147";}
.icon-level-up:before{content:"\f148";}
.icon-level-down:before{content:"\f149";}
.icon-check-sign:before{content:"\f14a";}
.icon-edit-sign:before{content:"\f14b";}
.icon-external-link-sign:before{content:"\f14c";}
.icon-share-sign:before{content:"\f14d";}
.icon-compass:before{content:"\f14e";}
.icon-collapse:before{content:"\f150";}
.icon-collapse-top:before{content:"\f151";}
.icon-expand:before{content:"\f152";}
.icon-euro:before,.icon-eur:before{content:"\f153";}
.icon-gbp:before{content:"\f154";}
.icon-dollar:before,.icon-usd:before{content:"\f155";}
.icon-rupee:before,.icon-inr:before{content:"\f156";}
.icon-yen:before,.icon-jpy:before{content:"\f157";}
.icon-renminbi:before,.icon-cny:before{content:"\f158";}
.icon-won:before,.icon-krw:before{content:"\f159";}
.icon-bitcoin:before,.icon-btc:before{content:"\f15a";}
.icon-file:before{content:"\f15b";}
.icon-file-text:before{content:"\f15c";}
.icon-sort-by-alphabet:before{content:"\f15d";}
.icon-sort-by-alphabet-alt:before{content:"\f15e";}
.icon-sort-by-attributes:before{content:"\f160";}
.icon-sort-by-attributes-alt:before{content:"\f161";}
.icon-sort-by-order:before{content:"\f162";}
.icon-sort-by-order-alt:before{content:"\f163";}
.icon-thumbs-up:before{content:"\f164";}
.icon-thumbs-down:before{content:"\f165";}
.icon-youtube-sign:before{content:"\f166";}
.icon-youtube:before{content:"\f167";}
.icon-xing:before{content:"\f168";}
.icon-xing-sign:before{content:"\f169";}
.icon-youtube-play:before{content:"\f16a";}
.icon-dropbox:before{content:"\f16b";}
.icon-stackexchange:before{content:"\f16c";}
.icon-instagram:before{content:"\f16d";}
.icon-flickr:before{content:"\f16e";}
.icon-adn:before{content:"\f170";}
.icon-bitbucket:before{content:"\f171";}
.icon-bitbucket-sign:before{content:"\f172";}
.icon-tumblr:before{content:"\f173";}
.icon-tumblr-sign:before{content:"\f174";}
.icon-long-arrow-down:before{content:"\f175";}
.icon-long-arrow-up:before{content:"\f176";}
.icon-long-arrow-left:before{content:"\f177";}
.icon-long-arrow-right:before{content:"\f178";}
.icon-apple:before{content:"\f179";}
.icon-windows:before{content:"\f17a";}
.icon-android:before{content:"\f17b";}
.icon-linux:before{content:"\f17c";}
.icon-dribbble:before{content:"\f17d";}
.icon-skype:before{content:"\f17e";}
.icon-foursquare:before{content:"\f180";}
.icon-trello:before{content:"\f181";}
.icon-female:before{content:"\f182";}
.icon-male:before{content:"\f183";}
.icon-gittip:before{content:"\f184";}
.icon-sun:before{content:"\f185";}
.icon-moon:before{content:"\f186";}
.icon-archive:before{content:"\f187";}
.icon-bug:before{content:"\f188";}
.icon-vk:before{content:"\f189";}
.icon-weibo:before{content:"\f18a";}
.icon-renren:before{content:"\f18b";}
