/* -------------------------------------------------- 
   Table of Contents
-----------------------------------------------------

:: 01. Global 

/* ---------------------------------------------------

/*	--------------------------------------------------
	Buttons
-------------------------------------------------- */
	
a.button,
a.button:visited {
  display: inline-block;
  padding: 4px 14px;
  margin: 0 3px 5px 0;
  font-size: 12px;
  font-weight: normal ! important;
  line-height: 20px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
     -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #bbbbbb;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-bottom-color: #a2a2a2;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
  filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  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-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
}
	
a.button.radius {
	border-radius: 4px!important;
	-webkit-border-radius: 4px!important;
	-moz-border-radius: 4px!important;
	-o-border-radius: 4px!important;
}

a.button.round {
	border-radius: 30px!important;
	-webkit-border-radius: 30px!important;
	-moz-border-radius: 30px!important;
	-o-border-radius: 30px!important;
}
	
a.button.medium {
	padding: 9px 18px!important;
	font-size: 15px;
}

a.button.large {
	padding: 12px 22px!important;
	font-size: 16px;
}

a.button:hover {
	color: #333333;
  	text-decoration: none;
  	background-color: #e6e6e6;
  	*background-color: #d9d9d9;
  	/* Buttons in IE7 don't get borders, so darken on hover */

  	background-position: 0 -15px;
  	-webkit-transition: background-position 0.1s linear;
       -moz-transition: background-position 0.1s linear;
      	-ms-transition: background-position 0.1s linear;
       	 -o-transition: background-position 0.1s linear;
          	transition: background-position 0.1s linear;
}

a.button:focus {
	outline: thin dotted #333;
  	outline: 5px auto -webkit-focus-ring-color;
  	outline-offset: -2px;
}
	
a.button:active {
	background-color: #e6e6e6;
  	background-color: #d9d9d9 \9;
  	background-image: none;
  	outline: 0;
  	-webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
       -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
	
a.button.green {
	color: #ffffff;
  	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  	background-color: #5bb75b;
  	*background-color: #51a351;
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  	background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  	background-image: -o-linear-gradient(top, #62c462, #51a351);
  	background-image: linear-gradient(to bottom, #62c462, #51a351);
  	background-image: -moz-linear-gradient(top, #62c462, #51a351);
  	background-repeat: repeat-x;
  	border-color: #51a351 #51a351 #387038;
  	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);
  	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

a.button.green:hover {
	color: #ffffff;
  	background-color: #51a351;
	*background-color: #499249;
}
	
a.button.light-blue {
	color: #ffffff;
  	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  	background-color: #49afcd;
  	*background-color: #2f96b4;
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  	background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  	background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  	background-image: linear-gradient(to bottom, #5bc0de, #2f96b4);
  	background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  	background-repeat: repeat-x;
  	border-color: #2f96b4 #2f96b4 #1f6377;
  	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);
  	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

a.button.light-blue:hover {
	color: #ffffff;
  	background-color: #2f96b4;
	*background-color: #2a85a0;
}

a.button.blue {
	color: #ffffff;
 	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
 	background-color: #006dcc;
  	*background-color: #0044cc;
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));
  	background-image: -webkit-linear-gradient(top, #0088cc, #0044cc);
  	background-image: -o-linear-gradient(top, #0088cc, #0044cc);
  	background-image: linear-gradient(to bottom, #0088cc, #0044cc);
  	background-image: -moz-linear-gradient(top, #0088cc, #0044cc);
  	background-repeat: repeat-x;
  	border-color: #0044cc #0044cc #002a80;
  	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);
  	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

a.button.blue:hover {
	color: #ffffff;
  	background-color: #0044cc;
  	*background-color: #003bb3;
}

a.button.red {
	color: #ffffff;
  	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  	background-color: #da4f49;
  	*background-color: #bd362f;
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  	background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  	background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  	background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  	background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  	background-repeat: repeat-x;
  	border-color: #bd362f #bd362f #802420;
  	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
  	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

a.button.red:hover {
	color: #ffffff;
    background-color: #bd362f;
	*background-color: #a9302a;
}
	
a.button.orange {
    color: #ffffff;
  	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
 	background-color: #faa732;
  	*background-color: #f89406;
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  	background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  	background-image: -o-linear-gradient(top, #fbb450, #f89406);
  	background-image: linear-gradient(to bottom, #fbb450, #f89406);
  	background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  	background-repeat: repeat-x;
  	border-color: #f89406 #f89406 #ad6704;
  	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
  	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

a.button.orange:hover {
  	color: #ffffff;
  	background-color: #f89406;
	*background-color: #df8505;
}
	
a.button.grey {
	color: #555!important;
	text-shadow: 0 1px 0 rgba(255,255,255,0.2);
	border-color: #acacac!important;
	background: #f5f5f5;
  		background: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  		background: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  		background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  		background: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  		background: -o-linear-gradient(top, #ffffff, #e6e6e6);
  		background: linear-gradient(top, #ffffff, #e6e6e6);
}

a.button.grey:hover {
	background: #f6f6f6;
		background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfc), to(#f6f6f6));
		background: -webkit-linear-gradient(top, #fcfcfc, #f6f6f6);
		background: -moz-linear-gradient(top, #fcfcfc, #f6f6f6);
		background: -ms-linear-gradient(top, #fcfcfc, #f6f6f6);
		background: -o-linear-gradient(top, #fcfcfc, #f6f6f6);
}
	
a.button.black {
	color: #ffffff;
  	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  	background-color: #363636;
  	*background-color: #222222;
  	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));
  	background-image: -webkit-linear-gradient(top, #444444, #222222);
  	background-image: -o-linear-gradient(top, #444444, #222222);
  	background-image: linear-gradient(to bottom, #444444, #222222);
  	background-image: -moz-linear-gradient(top, #444444, #222222);
  	background-repeat: repeat-x;
  	border-color: #222222 #222222 #000000;
  	border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  	filter: progid:dximagetransform.microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);
  	filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}

a.button.black:hover {
	color: #ffffff;
  	background-color: #222222;
	*background-color: #151515;
}


/*	--------------------------------------------------
	Alerts
-------------------------------------------------- */

div.alert-box {  
	display: block; 
	padding: 14px 20px; 
	font-weight: normal; 
	font-style: normal; font-size: 14px; 
	background: #FBFBFB;
    border: 1px solid #DFDFDF;
    color: #373737;
	margin-bottom: 20px; 
	position: relative; 
	text-align: center; 
	border-radius: 4px!important;
		-webkit-border-radius: 4px!important;
		-moz-border-radius: 4px!important;
		-o-border-radius: 4px!important;
	box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
		-webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
		-moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
		-o-box-shadow: 0 1px 2px rgba(0,0,0,0.05), inset 0 1px 0 rgba(255,255,255,0.6);
}
.alert-box.success { 
	background: #DCF9D8;
    border: 1px solid #94E49C;
    color: #1B8531;
}
.alert-box.warning { 
	background: #FFF7D6;
    border: 1px solid #E9D477;
    color: #956433;
}
.alert-box.error { 
	background: #FFDCDD;
    border: 1px solid #E9B9BB;
    color: #BF210E;
}
	
.alert-box a.close { color: #000; position: absolute; right: 4px; top: 0; font-size: 18px; opacity: 0.1; padding: 4px; font-weight: bold; text-decoration: none; }
	
.ie8 .alert-box a.close { color: #ddd; }
.ie8 .alert-box a.close:hover { color: #999; }
	
.alert-box a.close:hover,.alert-box a.close:focus { opacity: 0.4; }


/*	--------------------------------------------------
	Columns
-------------------------------------------------- */

.uxde-one-half { width: 48%; }
.uxde-one-third { width: 30.66%; }
.uxde-two-third { width: 65.33%; }
.uxde-one-fourth { width: 22%; }
.uxde-three-fourth { width: 74%; }
.uxde-one-fifth { width: 16.8%; }
.uxde-two-fifth { width: 37.6%; }
.uxde-three-fifth { width: 58.4%; }
.uxde-four-fifth { width: 67.2%; }
.uxde-one-sixth { width: 13.33%; }
.uxde-five-sixth { width: 82.67%; }

.uxde-one-half,
.uxde-one-third,
.uxde-two-third,
.uxde-three-fourth,
.uxde-one-fourth,
.uxde-one-fifth,
.uxde-two-fifth,
.uxde-three-fifth,
.uxde-four-fifth,
.uxde-one-sixth,
.uxde-five-sixth {
	position: relative;
	margin-right: 4%;
	margin-bottom: 2em;
	float: left;
	}

.uxde-column-last {
	margin-right: 0!important;
	clear: right;
}	

/*  --------------------------------------------------
    Tabs
-------------------------------------------------- */
dl.tabs { display: block; margin: 0; padding: 0; height: 45px; border-bottom: solid 1px #ddd; }
dl.tabs dt { display: block; width: auto; height: 45px; padding: 0 9px 0 20px; line-height: 45px; float: left; color: #999; font-size: 11px; text-transform: uppercase; cursor: default; }
dl.tabs dt:first-child { padding: 0 9px 0 0; }
dl.tabs dd { display: block; width: auto; height: 45px; padding: 0; float: left; }
dl.tabs dd:first-child a {}
dl.tabs dd a { display: block; width: auto; height: 44px; padding: 0 18px; line-height: 45px; border: solid 1px #EAEAEA; margin: 0 -1px 0 0; color: #7c7c7c; background: #FBFBFB; font-weight: bold; }
dl.tabs dd a.active { background: #FFFFFF; height: 45px; color: #32343a; border-bottom: none;}
    
dl.tabs dd a:hover { background: #FFFFFF; color: #32343a; }

	.nice.tabs { border-bottom: solid 1px #eee; margin: 0 0 40px 0; height:45px; }
	.nice.tabs dd a { padding: 7px 18px 9px; font-size: 15px; font-size: 1.5rem; color: #555555; background: none; border: none; }
	.nice.tabs dd a.active { font-weight: bold; color: #333; background: #fff; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 3px solid #00a6fc; margin: 0 10px; position: relative; top: -5px; }
	.nice.tabs dd:first-child a.active { margin-left: 0; }
		
dl.tabs.vertical { height: auto; }
dl.tabs.vertical dt, dl.tabs.vertical dd, dl.nice.tabs.vertical dt, dl.nice.tabs.vertical dd { float: none; height: auto; }
dl.tabs.vertical dd a { display: block; width: auto; height: auto; padding: 15px 20px; line-height: 1; border: solid 0 #ccc; border-width: 1px 1px 0; margin: 0; color: #555; background: #eee; font-size: 15px; font-size: 1.5rem; }
dl.tabs.vertical dd a.active { height: auto; margin: 0; border-width: 1px 0 0; background: #fff; }
	
	.nice.tabs.vertical { border-bottom: solid 1px #eee; height: auto; }
	.nice.tabs.vertical dd a { padding: 15px 20px; border: none; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 1px solid #eee; background: #fff; }
	.nice.tabs.vertical dd a.active { border: none; background: #00a6fc; color: #fff; margin: 0; position: static; top: 0; height: auto; }
	.nice.tabs.vertical dd:first-child a.active { margin: 0; }
    
ul.tabs-content { margin: 0 0 40px 0; display: block; border-bottom: 1px solid #EAEAEA; border-left: 1px solid #EAEAEA; border-right: 1px solid #EAEAEA;}
ul.tabs-content>li { display:none; margin: 0; padding: 20px; }
ul.tabs-content>li.active { display: block; }
    
dl.contained, dl.nice.contained { margin-bottom: 0; }
dl.contained.tabs dd a { padding: 0 14px; }
dl.nice.contained.tabs dd a { padding: 7px 18px 9px; }

ul.contained.tabs-content { padding: 0; }
ul.contained.tabs-content>li { padding: 20px; border: solid 0 #ddd; border-width: 0 1px 1px 1px; }
ul.contained.vertical.tabs-content>li { border-width: 1px 1px 1px 1px; }
ul.nice.contained.tabs-content>li { border-color: #eee; }
	
	
/*    --------------------------------------------------
    Toggles
-------------------------------------------------- */
	
.toggle { margin-bottom: 20px; }

.toggle-pane p { margin-bottom: 0; }
	
.toggle .toggle-pane { overflow: hidden; }

.toggle.closed .toggle-pane { display: none; }
	
.toggle .trigger { position: relative; cursor: pointer; font-weight: bold; color: #32343a; padding: 15px 20px; border: 1px solid #EAEAEA; background: #FBFBFB; }

.toggle-pane { background: #FFFFFF; padding: 20px; border: 1px solid #ddd; border-top: none; line-height: 20px; }
	
.toggle .trigger span { background: url(images/toggle-arrow.png) top left no-repeat; width: 10px; height: 6px; position: absolute; right: 19px; top: 50%; margin-top: -3px; }
	
.toggle.closed .trigger span { background-position: bottom left; }


/*	--------------------------------------------------
   	Dropcap & Highlight
-------------------------------------------------- */

.dropcap {
    background: #222222;
	-webkit-border-radius: 50px;
	   -moz-border-radius: 50px;
    		border-radius: 50px;
    color: #FFFFFF;
    display: block;
    float: left;
    font-size: 24px;
	font-weight: normal;
    height: 40px;
    line-height: 40px;
    margin: 0 8px 0 0;
    text-align: center;
    width: 40px;
}

.highlight {
    background: #FFFF66;
}


/*	--------------------------------------------------
   	Video
   	Mad props to http://www.alistapart.com/articles/creating-intrinsic-ratios-for-video/
-------------------------------------------------- */

	
.video-container {
	margin-bottom: 20px;
}


/*	--------------------------------------------------
   	Review System
-------------------------------------------------- */


#review-box {
	background: #FFFFFF;
	margin: 0 0 20px 0;
}

#review-box h5 {
	font-family: "Open Sans",Helvetica,Arial,sans-serif;
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
	color: #444444;
	text-transform: uppercase;
	border-bottom: 1px solid #EAEAEA;
	padding: 0 0 10px 0;
}

#review-box ul{
	margin: 0 0 20px 0;
	padding: 0;
	list-style: none
}

#review-box ul li{
	margin-bottom: 10px;
}

#review-box ul li .review-criteria-score {
	margin-bottom: 10px;
}

#review-box ul li .review-criteria-score [class*="icon-"] {
	font-size: 14px;
	width: 14px;
	color: #FFA83F;
	margin: 0 0 0 1px;
}

#review-box ul li .review-criteria-bar-container {
	background: #EAEAEA;
	height: 12px;
}

#review-box ul li .review-criteria-bar {
	float:left;
	height:12px;
	-webkit-background-size: 10px 10px;
	-moz-background-size: 10px 10px;
	-o-background-size: 10px 10px;
	background-size: 10px 10px;
	background-color: #F55D2D;
	background-image: -webkit-gradient(linear, 0 0, 100% 100%, color-stop(0.25, rgba(255, 255, 255, 0.1)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.1)), color-stop(0.75, rgba(255, 255, 255, 0.1)), color-stop(0.75, transparent), to(transparent));
	background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
	background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
	background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
	background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
	background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
	-webkit-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
	-khtml-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
	-moz-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
	-o-box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
	box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

#review-box .review-total-score {
	background:#EAEAEA
}

#review-box .review-total-score .left {
	max-width: 50%;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	padding: 10px 15px;
	margin: 0;
	text-transform: uppercase;
}

#review-box .review-total-score .right {
	background: #F55D2D;
	padding: 8px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
}

#review-box .review-total-score .right .icon-star {
	font-size: 18px;
	line-height: 22px;
	margin: 0 2px;
	width: 18px;
}

#review-box .review-summary {
	border: 1px solid #EAEAEA;
	padding: 15px;
	font-size: 13px;
	line-height: 21px;
}

#review-box .review-summary p {
	margin: 0 0 0 0;
}

.user-review {
	background: #EAEAEA;
	margin: 0 0 0 0;
}

.user-review .left {
	max-width: 50%;
	font-size: 16px;
	font-weight: bold;
	line-height: 20px;
	padding: 10px 15px;
	margin: 0;
	text-transform: uppercase;
}

.user-review .right {
	background: #F55D2D;
	padding: 8px 7px;
	color: #FFFFFF;
	font-weight: bold;
	font-size: 20px;
	line-height: 24px;
}

.user-review .right img {
	margin: 0 2px;
}

#review-box .review-total-score .type-star {
	font-size: 14px;
	padding: 7px 15px;
}

#review-box .review-total-score-box [class*="icon-"] {
	font-size: 18px;
	color: #FFFFFF;
	margin: 0 1px;
}

.widget .review-badge {
    background: #F55D2D;
    color: #FFFFFF;
    display: inline-block;
    float: left;
	font-style: normal;
    font-weight: bold;
    margin-right: 6px;
    padding: 0 3px 1px 3px;
}

.widget .review-badge span {
	font-style: normal;
	line-height: 20px;
	font-size: 11px;
	color: #FFFFFF ! important;
}

.widget .review-badge span [class*="icon-"] {
	margin: 0 1px 0 1px;
	width: 9px;
	font-size: 11px;
	line-height: 20px;
}

/*-----------------------------------------------------------------------------------*/

/*	Retina

/*-----------------------------------------------------------------------------------*/


@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#back-top span {
		background: url(images/back-top@2x.png) no-repeat;
		background-size: 50px 50px;
	}
}


/*-----------------------------------------------------------------------------------*/

/*	Social Share

/*-----------------------------------------------------------------------------------*/


.share-section {
	background: #FFFFFF;
	display: block;
	width: 100%;
	overflow: hidden;
	border-top: 1px solid #DFDFDF;
	border-bottom: 1px solid #DFDFDF;
	padding: 10px 0 9px 0;
	margin: -10px 0 25px 0;
}

.share-section .share-count {
	border-right: 1px solid #DFDFDF;
	float: left;
	width: auto;
	padding: 0 17px 0 0;
	margin: 0 0 0 0;
}

.share-section span.total-shares {	
	color: #7FC04C;
	font-size: 15px;
	font-weight: bold;
	font-style: italic;
}

.share-section span.text-shares {
	font-size: 15px;
	text-transform: uppercase;
	margin-top: 0px;
	font-style: italic;
	color: #888888;
}

.share-section .share-buttons {
	float: left;
	width: auto;
	margin: 0 0 0 0;
}

.share-section .share-buttons ul {
	margin: 0 0 0 0;
	list-style: none;
}

.share-section .share-buttons ul li {
	float: left;
	margin: 0 2px 0 0;
	height: 20px;
	border-right: 1px solid #DFDFDF;
	padding: 0 0 0 16px;
}

.share-section .share-buttons ul li.twitter-button {
	width: 95px;
}

.share-section .share-buttons ul li.facebook-button {
	width: 88px;
}

.share-section .share-buttons ul li.google-button {
	width: 78px;
}

.share-section .share-buttons ul li.linkedin-button {
	width: 108px;
}

.share-section .share-buttons ul li.pinterest-button {
	width: 69px;
	border-right: none;
}