/*
* Super Skeleton
* Copyright 2011, Brandon R Jones
* Original Skeleton, Copyright 2011, Dave Gamache
*/

/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, a, em, img, ul, ol, li, form, menu, section {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;}
	h1{
	    *font-weight: normal; }
	footer, header, menu, section {
		display: block; }
	body {
		line-height: 1; }
	ul {
		list-style: none; 
		line-height: 18px;}
	ol { 
		line-height: 18px;}


/* #Basic Styles
================================================== */
	body {
		background: #fafafa;
		font: 12px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		color: #444;
		-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
		-webkit-text-size-adjust: 100%;
 }
 
   .center {text-align: center;}
   
   .grecaptcha-badge {
display: none !important;
visibility: hidden !important;
}

/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #393939; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, h7 a { font-weight: inherit; }
	h1 { font-size: 12px;  margin: 0px;}
	h2 { font-size: 12px;  margin: 0px; display: inline; font-weight: normal;}
	h3 { color: #393939; font-weight: bold; font-size: 24px; margin: 3px 0 5px 0;}
	h3 span{ color: #0e71b0;font-size: 14px;}
    h3 a:link{ color: #0e71b0;font-size: 24px;}
	h4 { font-size: 18px; line-height: 18px; margin-bottom: 4px; font-weight: bold;}
	h4 span{ color: #777; font-weight: normal; font-size: 12px; line-height: 17px; margin-bottom: 4px;}
	h4 span a{ color: #0e71b0; font-weight: normal; font-size: 12px; line-height: 17px; margin-bottom: 4px;}
	h5 { font-size: 15px; font-weight: bold; margin: 5px 0 0 0;}
	h5 a:link{ font-size: 12px;}
	h5 span{ font-size: 12px;}
	h6 { font-size: 12px;  margin: 0px; display: inline;}
	h6 a:link{ font-size: 12px;}
	.subheader { color: #777; }
	p { margin: 0 0 0 0; }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }


/* Set BG */
.full-width{width: 100%;}

a, a:visited{
	color: #0e71b0;
	  text-decoration: none;
}
a:hover{
  color: #0f89d6;
  text-decoration: underline;
}

li a{
	color: #333;
}
.site_desc li a, .site_desc li a:visited {
	color: #0e71b0;
}
li a:visited{
	color: #333;
}
li a:hover{
  color: #0f89d6;
  text-decoration: underline;
}
li span{
	font-weight:bold; 
}
	
.catlist{
	 font-size: 12px;
}




/* tooltip */


/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 110%;
  left: 10px;
  margin-bottom: 5px;
  padding: 7px;
  width: 100px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #393939;
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 13px;
  line-height: 1.2;
}


/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after{
  position: absolute;
  bottom: 110%;
  left: 30px;
  width: 0;
  border-top: 5px solid #393939;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}


/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  transition:opacity 0.1s ease-out 0.1s;
}
/* end tooltip */

/* HEADER */
#header{
    position:fixed;
	top: 18px;
	left: 0px;
	width: 100%;
	height: 53px;
    background-color: #fff;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
    z-index: 100;
	border-bottom:1px solid #eee\9; /* ie hack */
}

#header_no_sub{
    position:fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 53px;
    background-color: #fff;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
    z-index: 100;
	border-bottom:1px solid #eee\9; /* ie hack */
}

#header.sticky, #header_no_sub.sticky  {
		top: 0px;
		transition: all 0.3s ease;
}


/* sub header */
.sub_header{
    position:fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 18px;
    background-color: #555;
    z-index: 100;
	text-align: center;
}

.sub_header.sticky  {
		top: 0px;
		transition: all 0.3s ease;
}

.sub_header ul li{
    display: inline-block;
	margin: 0px 20px 0 20px;
	
}
.sub_header a:link, .sub_header a:visited {
	color: #fff;
}

.sub_header a:hover {
	color: #D5D5D5;
}

.sub_nav {
    width:1275px;
    margin:0 auto;
    background: none;
}
.sub_nav .t1, .sub_nav .t2, .sub_nav .t3 {
    display: inline-block;
}
/* sub header end*/

.main-nav {
    margin:83px 0 0 0;
}
.main_nav_no_sub {
	margin:65px 0 0 0;
}
.main-nav-news {
	margin:126px 0 0 0;
}
.main_nav_error {
	margin:50px 0 0 0;
}

.toggle, #drop  {
    display:none;
}


#logo {
    float:left;
    height:53px;
    width:220px;
}

#logo img {
    height:44px;
    margin:3px 0 0;
}

#logo a {
    padding:0 10px 0 0;
}

#logo a:hover {
    background:none;
}


/* drop down */
.dropbtn {
	/*font-family: 'Open Sans', sans-serif;*/
	font: 12px/21px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #888;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:bold;
	font-size: 12px;
    background-color: #fff;
    padding: 0 10px;
	font-weight: bold;
	height: 53px;
    border: none;
    cursor: pointer;
}

.dropbtn:hover {
    color: #0e71b0!important;
}

.dropdown {
    position: relative;
    display: inline-block;
	padding: 0 50px 0 0;
}

.dropdown-content {
    display: none;
}

.show {display:block;}

.dropdown-content .t6, .dropdown-content .t5, .dropdown-content .t4, .dropdown-content .t3, .dropdown-content .t2, .dropdown-content .t1{
    display:none;
}

nav {
    width:1275px;
    margin:0 auto;
    background: none;
}

nav:after {
    content:"";
    display:table;
    clear:both;
}

nav ul {
    float:right;
    padding:0;
    margin:0;
    list-style:none;
    position:relative;
}

nav ul li {
    margin:0;
    display:inline-block;
    float:left;
    background-color:#fff;
}


nav li span{
    position:fixed;
    margin-left: 25px;
	font-size: 8px;
	color: #fff;
	padding: 2px 3px;
	top: 6px;
	line-height: 8px;
	background: #0e71b0;
	text-transform: uppercase;
	border-radius: 5px;
}

nav a {
    display:block;
    padding:0 10px;
    color:#888!important;
    line-height:53px;
    text-decoration:none!important;
    text-transform:uppercase;
    font-weight:bold;
	font-size: 12px;
}
.menu-item, .main-item {
    background: none;
}

nav a:hover, .menu-item.active, .main-item.active {
	color: #0e71b0!important;
}

nav ul ul {
    display:none;
    position:absolute;
	right: 0;
	width: 200px;
	border:1px solid #ccc;
	border:1px solid #ccc\9; /* ie hack */
}
nav ul ul li{
    float:none;
    display:list-item;
    position:relative;
    background:#fff;
}

nav ul ul li a {
    color:#888!important;
	height: 40px;
	line-height:40px;
	    text-transform:none;
		font-size: 13px;
}

nav ul ul li a:hover {
    background:#eee;
    color:#888!important;
}
/*
.t6 {
    display:none;
}
*/
.t5 {
    display:none;
}


/* new search */

/* Advanced search page */


#adv{
	width: 235px;
	height: 35px;
    padding: 0 0 0 10px;
	font-size: 16px;
	color: #393939;
	background-color: #e9e9e9;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-khtml-border-radius: 5px;
	border: 1px solid #c2c2c2;
	margin: 0 10px 0 0;

  }
.adv_search {
	 display: inline-block;
    vertical-align: top;
}
/*
.adv_search.button {
	width: 20px;
}
*/
.btn-search {
  color: #fff;
  background-color: #0e71b0;
  border-color: #0e71b0;
  text-align: center;
  height: 38px!important;


}
.btn-search a:hover {
  color: #fff;
  
}


select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  outline: 0;
  box-shadow: none;
  border: 0 !important;
  /*background: #393939;*/
  background: #e9e9e9;
}
/* Custom Select */
.select {
  position: relative;
  display: inline-block;
  width: 146px;
  height: 36px;
  line-height: 3;
  background: #0e71b0;
  overflow: hidden;
 /* border-radius: .25em;*/
   	border: 1px solid #c2c2c2;
	margin: 0 10px 0 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-khtml-border-radius: 5px;
	
}
select {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0 0 0 10px;
  color: #393939;
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  padding: 0 12px;
  background: #cfcfcf;
  color: #fff;
  pointer-events: none;
}
/* Transition */
.select:hover::after {
  color: #fff;
  background-color: #0e71b0;
  border-color: #0e71b0;
}
.select::after {
  -webkit-transition: .25s all ease;
  -o-transition: .25s all ease;
  transition: .25s all ease;
}

/* search form */

.search_wrap {
  display: inline-block;
  position: relative;
  height: 53px;
  float: right;
  padding: 0;
  position: relative;
  color: #888;
  -webkit-appearance: none; /* check with apple */
}

input.search_wrap[type="text"] {
  height: 53px;
  font-size: 25px;
  display: inline-block;
  font-weight: 100;
  border: none;
  outline: none;
  color: #888;
  padding: 0 0 0 8px;
  padding-right: 60px;
  width: 0px;
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  z-index: 3;
  transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
  cursor: pointer;
}

input.search_wrap[type="text"]:focus {
  width: 750px;
  z-index: 1;
  cursor: text;
  background: #444;
  margin: 0 50px 0 0;
}
.search_wrap:hover{
    color: #0e71b0;
}


i.fa-search { position: absolute; top: 18px; left: -40px; }
i.fa-caret-down, i.fa-caret-up {padding: 0 10px 0 7px;}

.search-drop {
	display:none;
}

/* news banner */
.news_btn {
	position:fixed;
	top: 71px;
	height: 24px;
	width: 100%;
	font-size: 22px;
	padding: 10px 0 10px 0;
	text-align: center;
	background: #0e71b0;
	border: 0px;
	z-index: 99;
}
.news_btn a:link, .news_btn a:visited{
	color: #fff!important;
}
.news_btn span{
	color: #fff;
	font-weight: bold;
}
/* 404 */
.error {
background-image: url('https://www.brdteengal.com/images/brdteengal-redhead-teen-maskot.jpg');
  background-repeat: no-repeat;
  background-size: 55%;
  background-position: right top;
  height: 100vh;
}
.error h1 {
	font-size: 55px;
	font-weight: bold;
	line-height: 100px;
	  padding: 150px 0 0 0;
}
.error h2 {
	display: inline-block;
	font-size: 35px;
	line-height: 34px;
		width: 60%;
}
.error h3 {
	font-size: 30px;
	font-weight: normal;
	width: 60%;
	padding: 150px 0 0 0;
}
.error_btn {
  color: #ffffff!important;
  background-color: #444;
  border-color: #444;
  text-align: center;
  margin: 25px 10px 20px 0;
  font-weight: bold!important;
}
.error_btn:hover, .error_btn_active:hover {
  color: #ffffff;
  background-color: #0e71b0;
  border-color: #0e71b0;
}
.error_btn_active {
  color: #ffffff!important;
  background-color: #0e71b0;
  border-color: #0e71b0;
  text-align: center;
  margin: 25px 10px 20px 0;
  font-weight: bold!important;
}
.error_search_wrapper {
position: relative;
margin: 30px 0 0 0;
width: 60%;
}

.error_search_field{
border: 0 solid #999;
outline: none;
font-size: 30px;
color: #555;
width: 95%;
height: 80px;
background: #d5d5d5;
padding: 0 0 0 15px;
-webkit-border-top-left-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
-moz-border-radius-topleft: 5px;
-moz-border-radius-bottomleft: 5px;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
float: left;
  }
  
.error_search_submit {
font-family: 'FontAwesome';
width: 80px;
height: 80px;
border: 0 solid #dadada;
font-size: 40px;
position: absolute;
top: 0;
right: 0;
background: #0e71b0;
color: #fff;
cursor: pointer;
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
-moz-border-radius-topright: 5px;
-moz-border-radius-bottomright: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.error_search_submit:hover {
background: #444;
color: #fff;
}

/* #Base 960 Grid
================================================== */

    .container, .footer-link                                { position: relative; width: 1275px; margin: 0 auto; padding: 0; }
	.report                                  { position: relative; width: 768px; margin: 0 auto; padding: 0; }
    .col, .cols                           { float: left; display: inline; margin-left: 0; margin-right: 0; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .col.alpha, .cols.alpha               { margin-left: 0; }
    .col.omega, .cols.omega               { margin-right: 0; }

    /* Base Grid */

    .container .three.cols                   { width: 220px; margin-right: 20px;}
	.container .socialcell.cols                   { width: 215px; }
    .container .four.cols                    { width: 240px;}
	.container .menu-right.cols                    { width: 225px; margin: 0 0 0 15px;}
	.container .five.cols                   { width: 290px; }
	.container .footer.cols                    { width: 240px; }
    .container .six.cols                     { width: 480px; }
    .container .ten.cols                     { width: 730px; }
	.container .eleven.cols                  { width: 650px; }
    .container .twelve.cols                  { width: 1030px;}
    .container .sixteen.cols                 { width: 1275px; }

	.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }
/* END GRID */
/* REVIEWS */
.r_news {
display:block;
	}
.r_thumbtop {width:226px; margin: 0 20px 0 0;
	float: left;
	display: block;
	text-align: center;
	min-height:220px;
	}
.r_pros {
width:25%;
min-height:160px;
float: left;
font-size: 13px;
padding: 0 10px 0 0;
border-right: 1px solid #ddd;
margin: 0 5px 20px 0;
	}
.r_cons {
width:25%;
min-height:160px;
float: left;
font-size: 13px;
margin: 0 0 20px 5px;
padding: 0 10px 0 0;
border-right: 1px solid #ddd;
margin: 0 0 0 5px;
	}
.r_scorebar { 
	display: block;
	height: 14px;
	width: 89px;
	position: relative;
	margin: 0 0 0 927px;
	padding: 1px;
	background-color: #555;
	}
.r_scorebar > span {
	display: block;
	height: 100%;
	background-color: #36ac36;
	position: relative;
	overflow: hidden;
	float:left;
	background-size: 5px;
	background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
	background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
	background-image: linear-gradient(90deg, rgba(255, 255, 255, .2) 50%, transparent 50%, transparent);
	}
.r_scoretop{
font-size: 50px;
font-weight: bold;
color:#444;
text-align:center;
padding: 15px 0;
}
.r_scoretop span{
font-size: 12px;
}
.r_procons {
    margin: 2px 0 5px 0; width: 100%;}

.r_menu{
font-size: 15px;
font-weight: bold;
}
.r_menu ul li{ color: #0e71b0; font-size: 10px;}
.r_menu a{ color: #000; font-size: 12px;}
.warning {
	color: #CE0505;
	font-weight: normal;
}
.med {
	color:#d86c03;
	font-weight: normal;
}
.good  a{
    color:#079807;
	font-weight: bold;
}
.good  span{
    color:#444;
	font-weight: bold;
	text-decoration:line-through;
	font-size: 12px;
}
.good li ul{
	font-weight: bold;
	font-size: 24px;
}
.warning li ul{
	font-weight: bold;
	font-size: 24px;
}

.r_link {
	text-align: center;
	margin: 20px 0 20px 0;
}
.r_link a{
	font-weight: bold;
	font-size: 30px;
	line-height: 30px;
}
.r_biglink {
	text-align: center;
	margin: 0 0 30px 0;
}
.r_biglink a{
	font-weight: bold;
	font-size: 40px;
	line-height: 40px;
}
.r_quote{
	font-weight: bold;
	font-size: 20px;
	margin: 20px 0 20px 0;
}
.r_stats_link {
	margin: 10px 0 20px 0;
	text-align: center;
}
.btn-review {
  color: #ffffff;
  background-color: #0e71b0;
  border-color: #0e71b0;
  text-align: center;
  margin: 5px 0 20px 0;
  min-width: 160px
}
.btn-review:hover,
.btn-review:focus,
.btn-review.focus,
.btn-review:active,
.btn-review.active,
.btn-search:hover,
.btn-search:focus,
.btn-search.focus,
.btn-search:active,
.btn-search.active,
.open > .dropdown-toggle.btn-review {
  color: #fff !important;
  background-color: #0f89d6;
  border-color: #0f89d6;
}
.btn-review:visited{
	color: #fff;
}

.r_review {
	width: 60%;
	height: auto;
	float: left;
	font-size: 14px;
	width: 59%\9;
}
.r_review p{
	margin: 10px 0 10px 0;

}
.r_review hr{
	margin: 2px 0 5px 0px;
}
.r_stats {
	width: 35%;
    height: auto;
	float: left;
    padding: 0 0 0 5%;
	font-size: 13px;
}
.r_stats img{
    padding: 0 3px 0 0;
	border: 0px solid #fff;
	margin: 0px;
}
.r_stats span{
    width: 8%;
	margin: 0 3px 0 0;
	font-weight: bold;
	font-size: 13px;
}
.r_stats li {
    padding: 2px 0 2px 0;
	background: #f1f1f1; }
.r_stats li:nth-child(odd) {
    background: none;
	}
.r_stats ul{
	margin: 0 0 5px 0;
}
.r_stats hr{
	margin: 2px 0 5px 0px;
}
.r_screen {
        width:25%;
		min-height: 200px;
        float:left;
		display:inline-block;
        position:relative;
		margin:5px 0 5px 0;
        text-align: center;
		width:24%\9;
	}
.r_sample {
        width:25%;
		min-height: 220px;
        float:left;
		display:inline-block;
        position:relative;
		margin:5px 0 20px 0;
        text-align: center;
		width:24%\9;
	}
 .r_sample img, .r_screen img {border: 2px solid #fff; background: #fff;
        *border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	margin: 0 auto;
    }
.r_clear {
      display: none;
    }
.r_info {
      font-size: 11px;
	  color: #444;
	  font-weight: normal;
    }
.r_info span{
      color: #707070;
	  font-weight: normal;
	  font-size: 11px;
	  margin: 0px;
    }

.r_thumbs a{
font-weight:bold; font-size: 12px;}
.r_thumbs span{
font-size: 10px;}
.r_thumbs{
float:left;display:inline;position:relative;
text-align: center;
line-height: normal;
width: 214px;
height: 170px\9;
margin: 0 0 10px 0;
margin: 5px 0px 10px 0px\9;
}
.r_frame{
 border: 2px solid #fff; background: #fff;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	margin: 3px 8px 5px 0px;
	}
.r_score{
font-size: 16px;
font-weight: bold;
color:#079807;
}
.r_score span{
color:#444;
}
.r_count {
font-size: 10px;
}
.r_date{
font-size: 11px; float: right; margin: 0 3px; font-weight: normal;
}
.r_sort{
font-size: 12px; color:#777; float: right; font-weight: normal;
}
.r_tags {
      font-size: 11px;
	  font-weight: normal;
    }
.r_cthumbs{
      width: 220px;
      margin: 0 7px 10px 0;
	  font-weight: normal;
    }
.r_bgr li { padding: 2px 0 2px 0; background: #eaeaea; font-size: 14px;}
.r_bgr li:nth-child(odd) { background: none; }
.r_quick {font-size: 10px; color: #079807; }
#r_searchform{
border: #ccc 1px solid;
background: #fff;
width: 99%;
padding: 0 2px;
height:24px;
}
#r_searchform #r_sf-text{
width: 85%;
float: left;
border: 0;
background: #fff;
color: #777;
line-height: 100%;
font-size: 12px;
font-family: Tahoma, Geneva, sans-serif;
margin-top:4px;
}
#r_searchform #r_sf-text:focus{
outline:none;
}
#r_searchform #r_sf-submit{
background: url("https://www.brdteengal.com/images/search.png") no-repeat 10px 0px;
border: 0;
float: right;
margin: 5px 0 0 0;
width: 27px;
height:16px;
z-index: 100;
cursor: pointer;
}
.warning {
	color: #CE0505;
	font-weight: bold;
}
.med {
	color:#d86c03;
	font-weight: bold;
}
.good {
	color:#0d7e0d;
	font-weight: bold;
}
.r_user{margin: 0 6px 0 0;
float:left;display:inline;position:relative; border: 2px solid #fff; background: #fff;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');}

#sticky-footer{
    position:fixed;
    padding-bottom:-10px;
    bottom:0px;
    width:100%;
    height:44px;
    background:#222;
    text-align: center;
}
#sticky-footer a {
	width: 100%;
	display: block;
	color: #fff;
	font-size: 20px;
	line-height: 26px;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 0 0 0;
}
#sticky-footer span {
	color: #0390de;
}	
	
	
/* END REVIEWS */
/* GALLERIES */
.g_video {width: 850px; text-align: center;}
.g_video embed, .g_video iframe, .g_video object, .g_video video {margin: 0 0 8px 0;}
.g_video2 {
text-align: center;
padding-top: 3px;
height: 0;
padding-bottom: 55.5%;
margin: 0 7px 12px 0;
position: relative;
overflow: hidden;
}
.g_video2 embed, .g_video2 iframe, .g_video2 object, .g_video2 video {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
margin: 0 0 16px 0;
}
.g_video_link  {margin: 0 0 16px 0; text-align: center;}
.g_video span, .g_video_link  span{font-weight: bold; font-size: 28px; line-height: 34px;}
.g_link {font-weight: bold; margin: 16px 0; text-align: center; font-size: 32px; line-height: 32px;}
.g_link span {font-weight: bold; font-size: 32px; line-height: 32px;}
.g_link span a {color: #363636;}
.g_pslink {position:absolute; width: 100%; text-align:center; top: 30%; margin: 0 5px; font-weight: bold; margin: 0 0 16px 0; text-align: center; font-size: 32px; line-height: 32px}
.g_pslink span {font-size: 20px; color: #d5d5d5;}
.container .gals { width: 1025px; float: left; display: inline;  margin: 0 10px 5px 0;}
.g_noline {border: 0px solid #ddd; clear: both; }
.intro h1, .intro h2, .intro h3 { font-size: 20px; line-height: 20px; margin-bottom: 8px; font-weight: bold;}
.intro h1 span, .intro h2 span, .intro h3 span { color: #444; font-weight: normal; font-size: 12px; line-height: 17px; margin-bottom: 4px;}
.intro h1 span a, .intro h2 span a, .intro h3 span a { color: #0e71b0; font-weight: normal; font-size: 12px; line-height: 17px; margin-bottom: 4px;}
.g_btnwide{
	width: 1094px;
	clear: both;
	margin: 0 0 10px 0;
	padding: 5px 8px 6px 8px;
	text-align: center;
	background: #363636;
	border: 0px;	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;	
}
.g_masonry {
-webkit-column-count: 2;
-moz-column-count: 2;
column-count: 2;
column-gap: 6px;
-webkit-column-gap: 6px;
-moz-column-gap: 6px;
}
.g_item {
display: inline-block;
background: #fff;
text-decoration: none;
width: 410px;
font-size: 14px;
padding: 6px;
margin: 0 0 10px 0;
}
.g_item span{
font-size: 12px;
font-weight: normal;
}
.g_item img{
margin: 0 0 4px 0;
width: 410px;
}
.g_item h2 a{
font-size: 21px;
line-height: 24px;
font-weight: bold;
color: #393939;
text-decoration: none;
}
.g_data {
font-weight: normal;
margin: 8px 0 6px 0;
	}
.g_data_home {
font-weight: normal;
margin: 6px 0 0 0;
	}
.g_data a:link, .g_data a:visited, .g_data_homea:link, .g_data_home a:visited{
color: #0e71b0 !important;
font-weight: normal !important;
	}
.g_data li, .g_data_home li{
font-size: 14px;
display: inline;
margin: 0 10px 0 0;
	}
.g_data_top a:link, .g_data_top a:visited{
color: #444 !important;
font-weight: normal !important;
	}
.g_data_top {
color: #707070 !important;
font-weight: normal;
margin: 0;
	}
.g_data_top li {
font-size: 12px;
display: inline;
margin: 0 6px 0 0;
}
.g_figure {
    text-align:center;
	margin: 0 7px 5px 0;
	display: inline-block;
    *display: inline;
}
.r_figure {
    text-align:center;
	margin: 0 50px 10px 0;
	display: inline-block;
    *display: inline;
}
.g_template { margin: 8px 0;}
.rating-block div.rating { position: relative;}
.rating-block div.rating div.bars { width: 86px; height: 14px; }
.rating-block div.rating div.bars span.stars-off, .rating-block div.rating div.bars span.stars-on { height: 14px; }
.rating-block div.rating div.bars span.stars-off { width: 86px; }
.rating-block div.rating.big .message { line-height: 14px; height: auto; right: auto; top: -30px; display: none; z-index: 9999; position: absolute; left: 50%; width: 130px; margin-left: -50px; padding: 4px; font-size: 13px; color: #ffffff; background-color: #0e71b0; text-align: center; -moz-border-radius: 3px; -webkit-border-radius: 3px; -khtml-border-radius: 3px; -ms-border-radius: 3px; -o-border-radius: 3px; border-radius: 3px; }
.rating-block div.rating.big div.bars { width: 112px; height: 18px; }
.rating-block div.rating.big div.bars span.stars-off, .rating-block div.rating.big div.bars span.stars-on { height: 18px; background-image: url("../images/rating_mask_lg.png"); }
.rating-block div.rating.big div.bars span.stars-off { width: 112px; }
.rating-block div.rating div.bars { display: block; position: relative; }
.rating-block div.rating div.bars span.stars-off, .rating-block div.rating div.bars span.stars-on { display: block; background-color: #ababab; background-repeat: no-repeat; background-position: 0 0%; background-image: url("../images/rating_mask_sm.png"); }
.rating-block div.rating div.bars span.stars-on { position: absolute; top: 0; left: 0; background-color: #0e71b0; }
.g_info span {margin: 0;}
.dark_btn {
	width: 1021px;
	clear: both;
	margin: 0 0 10px 0;
	padding: 5px 5px 6px 5px;
	text-align: center;
	background: #363636;
	border: 0px;	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;	
}
.g_tags {
	display:inline-block;
	color: #fff;
	margin: 0 0 5px 0;
	padding: 1px 5px 0 5px;
	text-align: center;
	background: #363636;
	border: 0px;	
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-khtml-border-radius: 3px;	
}
.g_tags:visited{
	color: #fff;	
}

.g_tag_list {
	display: inline-block;
}
.g_btn {
	width: 846px;
	clear: both;
	margin: 0 0 10px 0;
	padding: 5px 5px 6px 5px;
	text-align: center;
	background: #363636;
	border: 0px;	
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;	
}
.g_btn:hover, .dark_btn:hover, .g_btnwide:hover {
	background: #222;
}
.g_btn a, .dark_btn a, .g_btnwide a {
	width: 100%;
	display: block;
	color: #fff;
	font-size: 20px;
	line-height: 26px;
	font-weight: bold;
	text-decoration: none;
}
.g_btn span, .dark_btn span, .g_btnwide span {
	color: #30a1e9;
	font-size: 24px;
}
.g_tags a {
	display: block;
	font-size: 11px;
	line-height: 11px;
	font-weight: bold;
	text-decoration: none;
}
.g_tags:hover {
	background: #0e71b0;
	color: #fff;
	text-decoration: none;
}
.thumbnail{
 border: 2px solid #fff; background: #fff;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	/*margin: 3px 8px 5px 0px;*/
	max-width: 200px;
	max-height: 200px;
	}
.g_container {
margin: 0 5px 0 0;
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
}
.g_container figure{
    max-width: 160px;
    min-height: 237px;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    zoom: 1
}

.g_container figcaption{
    display:none;
}
.g_thumbs {
    max-width: 160px;
    min-height: 237px;
    vertical-align: top;
    display: inline-block;
    *display: inline;
    zoom: 1
}
.g_oddthumbs {
    min-width: 200px;
	margin: 0 0 10px 0;
	vertical-align: middle;
    display: inline-block;
	text-align: center;
    *display: inline;
	min-height: 115px;*/
    /*zoom: */
}
.g_popthumbs {
width: 160px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
text-align: left;
margin: 0 0 8px 0;
position:relative;
font-size: 10px;
line-height: 13px;
}
.g_popthumbs img{
width: 160px;
}
.g_relthumbs {
width: 196px;
height: 260px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
text-align: left;
margin: 0 0 14px 0;
position:relative;
overflow:hidden;

}
.g_relthumbs img{
width: 196px;
}
.g_bottom img{
	width: 100%;
	margin: 0 auto;	
}

/*
.g_oddthumbs img{
    max-width: 202px;
    min-height: 115px;

}

/* END GALLERIES */

/* Model index */
.g_block {
  text-align: justify;
}

.g_block:after {
  content: '';
  width: 100%; /* Ensures there are at least 2 lines of text, so justification works */
  display: inline-block;
}
.m_data {
    padding: 0 7px 3px 7px;
	font-size: 12px;
	line-height: 150%;

}

.m_desc {
padding: 0 0 5px 0;
	font-size: 18px;
	font-weight: bold;
		color: #333;
}
.m_desc h3 {
	font-size: 18px;
	font-weight: bold;
}
.m_desc h3 a:hover {
	color: #222;
}
.m_desc h3 a:visited {
	color: #444;
}
.data_item {
  position: relative;
  padding: 0 7px 0 0;
  display:inline-block;
  color: #777;
}
.data_item a:link, .data_item a:visited {
  color: #777;
  font-size: 12px;
}
.data_item a:hover {
	color: #d84b6f;
}

.m_overlay {
	position: absolute;
	top: 0px;
	right: 0;
	left: 0;
	text-align:center;
	color: #fff;
	max-width: 100px;
	border-bottom-right-radius: 10px;
	padding: 1px 0 0 0;
	font-size: 12px;
	font-weight: normal;
}

.m_overlay i {
	padding: 0 2px 0 0;
}

 .bg_main_color {
background: #0e71b0;
}
.list_container {
	position: relative;
    margin: 0 0 15px 0;
    /*border: 1px solid #ccc;*/
	text-align: left;
	background: #fff;
	-webkit-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
	-moz-box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
	box-shadow: 0px 1px 5px 0px rgba(0,0,0,0.3);
	vertical-align: top;
	display: inline-block;
*display: inline;
zoom: 1;
}

.model_container_new, .pussy_container_new {
    width: 194px;
}


/* TUBE */
#container {
text-align: justify;
-ms-text-justify: distribute-all-lines;
text-justify: distribute-all-lines;
}
#container:after {
  content: '';
  width: 100%;
  display: inline-block;
}

.video-container {
width: 226px;
min-height: 230px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
line-height: 130%;
text-align: left;
padding: 0 0 5px 0;
}
.t_video {
width: 650px;
height: 488px;
}
.stretch {
width: 100%;
display: inline-block;
font-size: 0;
line-height: 0
}
.t_thumb {width: 220px;
margin: 0 0 6px;
}
.t_fav  {
background:transparent url("https://www.brdteengal.com/images/addfav.png") no-repeat;
padding: 0 0 0 18px;
margin: 0 0 0 7px;
cursor:pointer;
}
.t_bigban{
background-color: #aaa;
margin: 20px 0 20px 20px;
}
.r_bgr li a:link{
color: #0e71b0;
}
.t_watch {
float: left; display: inline; width: 650px; margin: 0 5px 0 5px;
}
.t_head-main{
margin: 20px 5px 0 0;
float: right;
text-align: right; 
}

.t_menu{ width: 285px;
float: right; display: inline; margin: 0 5px 0 10px; }
t_sort_date a{
font-size: 60%;
}
.t_nav {
float:right;
}
.t_intro {
float: left; display: inline; width: 800px; margin: 0px;}
.t_avatar {width:300px;
	float: left;
	display: block;
	text-align: center;
	}
.t_avatar img{
	max-width:150px;
margin: 0 0 10px 0;
	}
.t_profile {
width:50%;
float: left;
font-size: 13px;
margin: 0 0 0 20px;
}
.t_profile span{
font-weight: bold;
}
.download {
  position: relative;
  padding: 15px 0 10px 0;
  font-size: 180%;
  font-weight: bold;
 text-align: center;
}
.download a{
  color: #da0000;
}
.download a:hover{
  color: #f20202;
}
.stats {
  background: transparent url(images/stats.png) no-repeat;
  padding: 0 0 0 20px;
  font-weight: bold;

}

.comment {
  background: transparent url(images/comment.png) no-repeat;
  padding: 0 0 0 20px;
  font-weight: bold;

}
.video-player-container {
  display: inline-block;
  margin: 0 0 20px 0px;
}

.video-container .stars {
  float: right;
}
.fav-remove {
font-size: 80%;
float: right;
padding: 0 2px 0 0;
}
.fav-remove a{
color: #da0000;
}

/** TAG CLOUD **/
div.tags {
  line-height: 1.5em;
}

div.tags a {
  padding: 0 3px;
  vertical-align: middle;
}

div.tags a:hover {
  /*color: #000;*/
}

a.tag-100 {
  font-size: 100%;
  color: #bdbdbd;
}

a.tag-100:hover {
  background-color: #bdbdbd;
  color: #000;
}

a.tag-110 {
  font-size: 110%;
  color: #aaaaaa;
}

a.tag-110:hover {
  background-color: #aaaaaa;
  color: #000;
}

a.tag-120 {
  font-size: 120%;
  color: #979797;
}

a.tag-120:hover {
  background-color: #979797;
  color: #000;
}

a.tag-130 {
  font-size: 130%;
  color: #848484;
}

a.tag-130:hover {
  background-color: #848484;
  color: #000;
}

a.tag-140 {
  font-size: 140%;
  color: #717171;
}

a.tag-140:hover {
  background-color: #717171;
  color: #000;
}

a.tag-150 {
  font-size: 150%;
  color: #5e5e5e;
}

a.tag-150:hover {
  background-color: #5e5e5e;
  color: #fff;
}

a.tag-160 {
  font-size: 160%;
  color: #4c4c4c;
}

a.tag-160:hover {
  background-color: #4c4c4c;
  color: #fff;
}

a.tag-170 {
  font-size: 170%;
  color: #383838;

}


a.tag-170:hover {
  background-color: #383838;
  color: #fff;
}

a.tag-180 {
  font-size: 180%;
  color: #262626;
}

a.tag-180:hover {
  background-color: #262626;
  color: #fff;
}

a.tag-190 {
  font-size: 190%;
  color: #131313;
}

a.tag-190:hover {
  background-color: #131313;
  color: #fff;
}

a.tag-200 {
  font-size: 200%;
  color: #000;
}

a.tag-200:hover {
  color: #fff;
  background-color: #000;

}
/* FORM FIELDS */
span.label {
  display: inline-block;
  text-align: left;
  width: 7em;
  font-weight: bold;
  vertical-align: top;
  padding-top: 3px;
}

span.wider {
  width: 10em;
}

span.nopad {
  padding-top: 0px;
}

span.input-container {
  vertical-align: top;
  margin-left: 3px;
  display: inline-block;
}

span.text-container {
  margin-left: 3px;
  position: relative;
  top: 0.2em;
  display: inline-block;
}

div.field {
  margin-top: 8px;

  margin-bottom: 8px;
}
/** RATING STARS **/
#rater-stars {
  position: absolute;
  top: 2px;
  left: 0px;
  z-index: 1;
}

.rater-div {
  position: absolute;
  width: 19.6px;
  height: 21px;
  top: 2px;
  left: 0px;
  background-color: #fff;
  filter: alpha(opacity=0);
  opacity: 0;
  z-index: 30;
  cursor: pointer;
}

#rater-text {
  position: absolute;
  top: 5px;
  left: 100px;
}
/* CLASSES */
.fs80 {
  font-size: 80%;
}

.fs90 {
  font-size: 90%;
}

.fs95 {
  font-size: 95%;
}

.fs105 {
  font-size: 105%;
}

.fs110 {
  font-size: 110%;
}

.fs120 {
  font-size: 120%;
}

.fs130 {
  font-size: 130%;
}
.timeframe {
  font-size: 80%;
 color: #717171;
}
/** MISC **/
.message-error {
  font-weight: bold;
  font-size: 135%;
  color: #d52727;
  padding: 4px 0 4px 0;
  margin-bottom: 8px;
  text-align:center;
}

.message-notice {
  font-weight: bold;
  font-size: 135%;
  color: #0e71b0;
  padding: 4px 0 4px 0;
  margin-bottom: 8px;
  text-align:center;
}

.message-warning {
  font-weight: bold;
  font-size: 135%;
  color: #ea8612;
  padding: 4px 0 4px 0;
  margin-bottom: 8px;
  text-align:center;
}

.captcha-image {
  border: 1px solid black;
  margin-bottom: 4px;
}

.captcha-reload {
  margin-left: 8px;
  vertical-align: top;
  cursor: pointer;
}

.swfupload {
  vertical-align: middle;

}
#player-content {
  display: none;
  position: absolute;
  width: 650px;
  height: 488px;
  background-color: #000;
  opacity: 0.95;
  text-align: left;
}

#player-content-icons {
  position: absolute;
  bottom: 40%;
  width: 650px;
  text-align: center;
}

#player-content-icons img {
  margin-left: 6px;
  margin-right: 6px;
}

#player-content-banner {
  position: absolute;
  bottom: 75%;
  width: 650px;
  text-align: center;
}
/* END TUBE*/

/* Accordeon */
.accordion-toggle {
    cursor: pointer;
	letter-spacing: 0px;
	padding: 12px 20px 12px 20px;
	margin: 10px 0 0 0;
	background:-webkit-gradient(linear,left top,left bottom,from(#eaeaea),to(#d7d7d7));
	background:-webkit-linear-gradient(top,#eaeaea,#d7d7d7);
	background:-moz-linear-gradient(top,#eaeaea,#d7d7d7);
	background:-ms-linear-gradient(top,#eaeaea,#d7d7d7);
	background:-o-linear-gradient(top,#eaeaea,#d7d7d7);
    color:#726c60;
    text-decoration:none;
	text-shadow:#FFF 1px 1px 1px;
	font-family:Verdana;font-size:12px;line-height:12px;font-weight:bold;
	}
.accordion-content {
    display: none;
  	padding: 10px 14px;
	margin: 0 0 10px 0;
	border-top: 0px;
	display: none;
	background-color: #fff!important;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	-o-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
.accordion-content.default {
    display: block;
	}
#accordion {
	margin: 10px 0 20px 0;
	}

 /* ---- Messages ------*/
.message {
	font-size: 15px;
  padding: 8px 14px 8px 14px;
  margin: 0 5px 10px 5px;
  color: #0e71b0;
  background-color: #d9edf7;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid #bce8f1;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.message a {
  color: #0d5888;
  text-decoration: none;
}

.message a:hover {
  color: #268ed0;
}
.message span {
  font-size: 22px;
  line-height: 26px;
  font-weight: bold;
}
.ads {
  margin: 3px 0px 10px 0px;
}
.m_ads {
  font-size: 16px; font-weight: bold;
  padding: 8px 14px 8px 14px;
  margin: 3px 0px 10px 0px;
  color: #0e71b0;
  background-color: #d9edf7;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid #bce8f1;
  -webkit-border-radius: 10px;
     -moz-border-radius: 10px;
          border-radius: 10px;
}
.m_ads a {
  color: #0d5888;
  text-decoration: none;
}

.m_ads a:hover {
  color: #268ed0;
}


/*  ----- End Messages  -----*/
/* Firefox Bug */
#fire{
display:none;
}
@-moz-document url-prefix() {
#fire{
display:block;
padding:1px 0;
}
}
/* End Firefox Bug */

/* ul li  */

.deals span {display: inline-block; font-size: 12px;}
ul.deals {font-size: 13px; width: 90%; float: left; display: inline-block; padding: 0 5px 0 0; margin: 0 2px 0 0; text-decoration: none;}
ul.deals a:hover {text-decoration: none;}
.four.cols li span  { font-weight: bold; color: #0e71b0; } /* review score */
.nav li ul ol {margin: 10px 0 3px 0;}
ul.cat, ol.cat{font-size: 13px;width: 50%; float: left; padding: 0 5px 0 0; margin: 0 2px 0 0;}
.bottom-tl ul {float: left; width: 18%; margin: 0 0 10px 0;}
.bottom-tl ul:last-child {float: left; width: 10%; margin: 0 0 10px 0;}
.bottom-tl li a {font-size: 16px; line-height: 20px;}
.four.cols.menu ul { margin: 0 5px 0 0;}
.four.cols.menu ol { margin: 0 0 20px 24px;}
.news li { padding: 0 0 5px 0;}
.twelve.cols li a, .twelve.cols li a:visited, .sixteen.cols li a, .sixteen.cols li a:visited{
	color: #0e71b0;
	  text-decoration: none;
}
.twelve.cols li a:hover, .sixteen.cols li a:hover{
  color: #0f89d6;
  text-decoration: underline;
}
.twelve.cols ol { margin: 0 0 0 32px;}
.m_glist{
  width: 48%;
  float:left;
  margin: 0 10px 10px 0;
  font-size: 11px;
}
.m_glist span a{font-size:12px; color: #079807;font-weight: bold;}

/*  End ul li  */


/*  ====== MENU  ======  */
.four.cols li{margin: 0 5px 0 0;}
.four.cols p{margin: 0 0 2px 0;}
.revtag {
	display: inline-block;
	width: 36px;
	height: 12px;
	background: url("https://www.brdteengal.com/images/revtag.png") bottom;
	text-indent: -99999px;
	margin: 0 0 0 5px;
}
.revtag:hover {background-position: 0 0;}
.rev_glist {margin: 2px 0 0 0;}
.newsdate {background:url("https://www.brdteengal.com/images/link.png") no-repeat; padding: 0 0 0 10px; margin: 5px 0 0 0; font-size: 11px; line-height: 10px; font-weight: bold; color: #000;}
.newsdate span {margin: 0 0 0 3px;}
.plus {background:url("https://www.brdteengal.com/images/plus.png") no-repeat; padding: 0 0 0 12px; font-size: 12px; line-height: 12px;}
.best_paysites li:not(:first-child) {padding: 5px 0 0 0;}
.paysites{font-weight: bold;background:url("https://www.brdteengal.com/images/award.png") no-repeat; padding: 0 0px 0 20px; font-weight: bold;}

/*  ====== END MENU  ======  */

/*  ====== RIGHT SIDE  ======  */
.twelve .cols  p{float: right;}
.text_list li {margin: 0 0 8px 0; display: inline-block; width:100%;}
.text_list img {border: 0px; padding: 0 0 0 5px;}
.text_list a {font-size: 16px; color: #444!important;}
.text_list span {font-size: 13px; color: #0e71b0; font-weight: normal;}
.intro {float: left; display: inline; margin: 0px;}
.socialcell {float: right; display: inline;}

/*  Pagination  */
.pagi {
  font-size: 14px;
  text-align:right;
  padding:0 0 20px 0; 
}
.pagi ul{
  display: inline;
  *display: inline;
}

.pagi li {
  display: inline;
  font-size: 20px;
}
.pagi a{
  text-decoration: none;
  padding: 5px 8px 4px 8px;
  color: #fff !important;
  background-color: #0e71b0;
  border:1px solid #0e71b0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -khtml-border-radius: 4px;
}
.pagi a:visited{
  color: #0f89d6;
}

.pagi a:hover,
.pagi .active {
  background-color: #0f89d6;
  color: #fff !important;
  border:1px solid #0f89d6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}
/* End Pagination */

/* Social  */
.social-gal{ display:block; float:right; margin: 18px 0px 0 0}
.social{float: right;}
.social_big {display:none;}
.addthis_toolbox {min-width: 60px; margin: 0px 0 4px 0;}
/* End Social  */

/* Favorites */
#favcount{background:url("https://www.brdteengal.com/images/addfav.png") no-repeat; padding: 0 0 0 18px; text-decoration:none; font-weight: bold;}
#favcount span  {color:#646464; padding: 0 0 0 5px;}
.my_fav ul {
    width:80%;
	padding: 20px 0 0 0;
}
/* End Favorites */


.topsites {
text-align: center;
line-height: normal;
width: 160px;
height: 96px;
height: 150px\9;
margin: 5px 3px 60px 3px;
margin: 5px 3px 10px 3px\9;
}
.topsites img{
margin: 0 0 5px 0;
}
.topsites a{
font-weight:bold;}

/* DISCOUNT */
.discount {
text-align: left;
line-height: normal;
width: 100%;
margin: 10px 0 10px 0;
}
.discount img{
margin: 0 10px 14px 0;
}
.discount a{
font-weight:bold;
font-size: 18px;
}
.discount span{
font-size: 17px;
color: #6f6f6f;
}
.discount_btn{
margin: 7px 0 3px 0;
}
/* Button */
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus,
.btn.focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.btn-success {
  color: #ffffff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success:hover,
.btn-success:visited,
.btn-success:focus,
.btn-success.focus,
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  color: #ffffff;
  background-color: #449d44;
  border-color: #398439;
}
.btn-success:active,
.btn-success.active,
.open > .dropdown-toggle.btn-success {
  background-image: none;
}
.btn-success.disabled,
.btn-success[disabled],
fieldset[disabled] .btn-success,
.btn-success.disabled:hover,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success:hover,
.btn-success.disabled:focus,
.btn-success[disabled]:focus,
fieldset[disabled] .btn-success:focus,
.btn-success.disabled.focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success.focus,
.btn-success.disabled:active,
.btn-success[disabled]:active,
fieldset[disabled] .btn-success:active,
.btn-success.disabled.active,
.btn-success[disabled].active,
fieldset[disabled] .btn-success.active {
  background-color: #5cb85c;
  border-color: #4cae4c;
}
.btn-success {
  color: #fff;
  background-color: #5cb85c;
}

.btn-ghost {
  color: #0e71b0;
  background-color: #fff;
  border-color: #0e71b0;
}
.btn-ghost:hover,
.btn-ghost:focus,
.btn-ghost.focus,
.btn-ghost:active,
.btn-ghost.active,
.open > .dropdown-toggle.btn-ghost {
  color: #ffffff;
  background-color: #0e71b0;
  border-color: #0e71b0;
}
.g_btn_side {
  color: #ffffff;
  background-color: #0e71b0;
  border-color: #0e71b0;
  	text-align: center;
	margin: 0 0 20px 0;
	width: 220px;
}

.g_btn_side:hover,
.g_btn_side:focus,
.g_btn_side.focus,
.g_btn_side:active,
.g_btn_side.active {
  color: #fff;
  background-color: #0f89d6;
  border-color: #0f89d6;
}
.g_btn_side:visited{
	color: #fff;
}
.g_btn_bottom {
  color: #ffffff;
  background-color: #0e71b0;
  border-color: #0e71b0;
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin: 0 0 0 12px;
  width: 200px;
}
.g_btn_bottom:hover,
.g_btn_bottom:focus,
.g_btn_bottom.focus,
.g_btn_bottom:active,
.g_btn_bottom.active {
  color: #fff;
  background-color: #0f89d6;
  border-color: #0f89d6;
}
.g_btn_bottom:visited{
	color: #fff;
}

/* Images */
.frame {float:left;display:inline;position:relative; border: 2px solid #fff; background: #fff;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	}
.thumb_large {width:344px; height: 329px; margin: 0 3px 3px 0;
*border: 1px solid #fff;
	font-size: 10px;
	line-height: 17px;
	}
.fav_model_thumb {width:160px; height: 237px; margin: 0 8px 8px 0;
*border: 1px solid #fff;
*margin: 0 6px 6px 0;
	font-size: 10px;
	line-height: 13px;
	}
.thumb {width:160px; height: 235px; margin: 0 8px 8px 0;
*border: 1px solid #fff;
*margin: 0 6px 6px 0;
	font-size: 10px;
	line-height: 13px;
	}
.thumb_small {width:110px; height: 168px; margin: 0 8px 8px 0;
*border: 1px solid #fff;
	font-size: 10px;
	line-height: 14px;
	}
	
.thumb_best{width:110px; height: 168px; margin: 0 8px 3px 0;
*margin: 0 3px 3px 0;
*border: 1px solid #fff;
	font-size: 10px;
	line-height: 20px;
	}
.bottom-p-container, .bottom-p-container-extra {
width: 250px;
min-height: 250px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
line-height: 130%;
text-align: left;
padding: 10px 0 5px 0;
}

.model {width:160px; margin: 2px 20px 10px 0;
	font-size: 10px;
	line-height: 12px;
	float: left;
	}
.model img{border: 2px solid #fff; background: #fff; margin: 0 0 10px 0;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	}
.model_best {width:120px; margin: 2px 20px 0 0;
	font-size: 10px;
	line-height: 12px;
	float: left;
	}
.model_bio {
    margin: 9px 0 0 0; line-height: 16px;
	}
.m_rating {margin: 2px 0 4px 0;
	}
	
.m_twitter {width:20px;height:16px;overflow:hidden;position:absolute;bottom:1px;right:1px;display:block;background:transparent url("https://www.brdteengal.com/images/twitter.png") bottom right no-repeat;cursor:pointer;}
.m_instagram {width:20px;height:16px;overflow:hidden;position:absolute;bottom:1px;right:1px;display:inline;background:transparent url("https://www.brdteengal.com/images/twitter.png") bottom right no-repeat;cursor:pointer;}
.m_social {display: inline;float: left; margin: 5px 5px 0 0;}
.m_links {
 text-align: center; color: #181818; font-weight: bold; font-size: 20px; line-height: 30px; margin: 0 0 10px 0; 
 border-bottom: solid 1px #ddd;}
 .m_links a{
 color: #079807;}
.m_webcam{
    clear:both; font-weight: bold; font-size: 22px; padding: 6px 0 3px 0;
}
.m_webcam_pop {
    font-weight: bold; font-size: 22px; padding: 10px 0 3px 0;
}
.m_webcam a:link, .m_webcam_pop a:link{
    color:#079807;
}
.m_sponsorlist{
    clear:both; font-weight: bold; font-size: 18px; padding: 6px 0 15px 0;
}
.m_sponsorlist_pop{
     font-weight: bold; font-size: 18px; line-height: 20px; margin: 10px 0 15px 0;
}
.link_ab {margin: 0 0 0 8px;
color: #999;
	}
	
.thumb_mindex {width:160px; margin: 3px 12px 8px 0;
*border: 1px solid #fff;
*margin: 0 10px 10px 0;
	float:left;display:inline;position:relative;
	text-align: center;
	font-weight:bold;
	line-height: 12px;
	}
	
.thumb_mindex img{width:160px; height:193px;
	}
	
.thumb_mindex span{
font-size:10px;
color: #0e71b0;
line-height: 15px;
font-weight: normal;
	}
.model_container img{border: 2px solid #fff; background: #fff;
*border: 1px solid #fff;
margin: 0 0 6px 0;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	}
.model_container {
width: 160px;
min-height: 100px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
text-align: left;
margin: 0 0 8px 0;
position:relative;
font-size: 14px;
line-height: 17px;
text-align: center;
font-weight: bold;
}
.model_container span{
font-size: 12px;
font-weight: normal;
color: #0e71b0;
}
.alt_container img{border: 2px solid #fff; background: #fff;
*border: 1px solid #fff;
margin: 0 0 6px 0;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	}
.alt_container {
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
text-align: left;
margin: 0 0 8px 0;
position:relative;
font-size: 11px;
line-height: 17px;
}
.alt_container span{
font-size: 11px;
font-weight: normal;
color: #0e71b0;
}
.pussy_container {
width: 160px;
min-height: 100px;
}
.tits_container, .ass_container, .sponsor_container {
width: 246px;
min-height: 100px;
}

.sponsor_container {
font-size: 14px;
text-align: center;
font-weight: bold;
}
.sponsor_container span{
font-size: 12px;
}

.rating_box {
margin: 5px 0 0 0;
font-size: 11px;
}
.s_cell {margin: 0 8px 8px 0;
	}	

.x_thumb {
    display:none;
}

.hof_hide {display: block;}
.hide {display: block; }
.best_hide {display: block; }
.best_hide2 {display: block; }
.hide_top {display: block;}
.cols img, .col img{max-width: 100%; height: auto;}
.main_container {
width: 160px;
min-height: 234px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
text-align: left;
margin: 0 0 8px 0;
position:relative;
font-size: 10px;
line-height: 13px;
}
.main_container img{
margin: 0 0 2px 0;
}
.pop_container, .pop_container_hide {
width: 160px;
min-height: 234px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
text-align: left;
margin: 0 0 8px 0;
position:relative;
font-size: 10px;
line-height: 13px;
}
.pop_container img, .pop_container_hide img {
margin: 0 0 2px 0;
}
/* Sponsors */
.box_container {
width: 160px;
min-height: 200px;
vertical-align: top;
display: inline-block;
*display: inline;
zoom: 1;
text-align: left;
margin: 0 0 8px 0;
position:relative;
font-size: 10px;
line-height: 13px;
}
.box_container img{
margin: 0 0 2px 0;
}
.frame_box {border: 0px solid #fff; background: #fff;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	}

.sponsor {width:250px; margin: 2px 20px 10px 0;
	font-size: 10px;
	line-height: 12px;
	float: left;
	}
.sponsor img{border: 2px solid #fff; background: #fff; margin: 0 0 10px 0;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	}
.sponsor_info {
    margin: 9px 0 0 0;
	font-size: 13px;
	}
.sponsor_info a{
     display:block; font-weight: bold; font-size: 13px;
	}
.sponsor_info span{
	font-size: 11px;
	font-weight: normal;
	}
.sponsor_review {font-weight: bold; font-size: 12px; line-height: 18px;}
.sponsor_btn {
	text-align: center;
	margin: 15px 0 5px 270px;
}
.sponsor_hidden {
	display: none;
}
.total_gals{float: right;}
/* end sponsors */
/* End Images */

/*  Hover Buttons  */
.fav_btn {width:14px;height:14px;overflow:hidden;position:absolute;bottom:1px;right:17px;display:block;background:transparent url("https://www.brdteengal.com/images/addfav-dual.png") bottom right no-repeat;cursor:pointer;}
.fav_btn_on {background-position:top right;}
.fav_btn_off {background-position:bottom right;}
.model-fav-link  {
background:transparent url("https://www.brdteengal.com/images/addfav.png") no-repeat;
padding: 0 0 0 18px;
margin: 0 0 0 7px;
cursor:pointer;}

.report_btn {width:14px;height:14px;overflow:hidden;position:absolute;bottom:1px;right:1px;display:block;background:transparent url("https://www.brdteengal.com/images/report-dual.png") bottom right no-repeat;cursor:pointer;}
.report_btn_on {background-position:top right;}
.report_btn_off {background-position:bottom right;}
/* End Hover Buttons  */

.g_spot {font-size: 16px;}
.g_spot img {margin: 0 10px 20px 0;}
.g_spot a {font-weight:bold; font-size: 20px; line-height: 30px;
}
/* Ads */
.top_img, .top_img2, .top_img3, .top_img4 {
width:162px;
     display: -moz-inline-stack;
	display: inline-block;
		margin: 0 3px 0 3px;
	text-align: center;
	zoom: 1;
       *display: inline;
}
.top_img img, .top_img2 img, .top_img3 img, .top_img4 img{
width:160px;
height: 237px;
	border: 0px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	margin: 0 0 3px 0;
}

.top_img span a, .top_img2 span a, .top_img3 span a, .top_img4 span a{
	color: #000000;
}

.bn_spot, .bn_spot_wide, .bn_spot2, .bn_spot3 {text-align:center; font-size:14px; margin:10px 0 20px 0;}
.bn_spot a, .bn_spot_wide a, .bn_spot2 a, .bn_spot3 a {font-size:20px;}
.bn_spot p, .bn_spot_wide p, .bn_spot2 p, .bn_spot3 p {font-size:20px; margin: 10px 0 10px 0;}
.bn_spot span, .bn_spot_wide span, .bn_spot2 span, .bn_spot3 span {color:#da0000; font-size:12px;}
.bn_spot img, .bn_spot_wide img {width:150px; margin:5px 5px 0 0; border:0px solid #fff;
-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');}
.bn_spot2 img, .bn_spot3 img {width:200px; margin:5px 5px 0 0; border:0px solid #fff;
-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');}
.bn_spot_thumb, .bn_spot_extra, .bn_spot_extra2 {display: inline-block;}



.mid_img a, .mid_img2 a {font-size:20px; font-weight:bold;}
.mid_img p, .mid_img2 p {font-size:20px; margin: 20px 0 10px 0;}
.mid_img span, .mid_img2 span {color:#0f89d6; font-size:12px;}

.mid_img, .mid_img2 {
	 font-size:14px!important;
     display: -moz-inline-stack;
	display: inline-block;
	text-align:center; font-size:12px; margin:10px 0 10px 0;
	zoom: 1;
       *display: inline;
}
.mid_img img, .mid_img2 img{
width:150px;
	border: 0px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	margin: 0 3px 3px 3px;
}
 
 .top_single{
    background: #fff;
	border: 2px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
	margin: 0 0 8px 0;
	position: relative;
	width: 98%;
}
.adtext {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #000;
    background: rgba(0,0,0,0.3);
    text-align: center;
	height: 20px;
}
.top_single:hover .adtext {
    display: block;
	color: #fff;
	text-decoration: none;
	padding: 10px 0;
	font-weight: bold;
	font-size: 18px;
}
/* iframe banners */
    #b_wrap { width: 900px; height: 250px; padding: 0; overflow: hidden; margin: 0 auto;}
    #b_frame { width: 900px; height: 250px; }

/* End Ads */
/*  ====== END RIGHT SIDE  ======  */

/* Misc */

.break { display:none;}
.split {display:none;}
.textbreak { display:none;}
.search_opt { display:none;}
.hidden {
    display: none;
}
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
	  margin: 15px 0 0 0;
    }
.menu-line {
    margin: 2px 0 10px 0 !important;
	width: 90%;
	*margin: 0;
	}

hr{	
	border: solid #ededed; border-width: 1px 0 0; clear: both; margin: 5px 0 5px 0px;
	border-bottom: 0px solid #FFF;
	*border: 1px solid #ededed; *border-width: 1px; *margin: 0px;
	}

hr.partial-bottom{margin-bottom: 20px;}

/* End Misc */


/* #FOOTER */
#section-footer{
	background: #363636;
	margin-top: 40px;
	padding: 40px 0;
	font-size: 12px
}


#section-footer h5{
	margin-bottom: 10px;
	font-size: 12px;
	background: url("https://www.brdteengal.com/images/diagonal_dark.png") repeat transparent;
	color: #eee;
	}
	
 
#section-footer ul li{
	padding:3px 0;
	margin: 0;
}

#section-footer ul li a:hover{
	color: #fff;
}
#section-footer span{
	color: #fff;
	font-size: 10px;
}
	
#section-footer, #section-footer a, 
#section-sub-footer{ 
	color: #aaa; 
	}
.title18 { 
padding: 20px 5px 0 5px;
background: #1c1c1c;
font-size: 12px;
text-align: center;
color: #aaa;
}
.title18 a{ 
color: #aaa;
}

/* #SUBFOOTER */
#section-sub-footer{
background: #1c1c1c;
padding: 10px 0;
}

#section-sub-footer span{
	float: left;
	font-size: 12px;
	line-height: 16px; 
	}
/* BACK TO TOP */
#toTop {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #0e71b0; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 15px; /* Some padding */
    font-size: 18px; /* Increase font size */
}

#toTop:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

/* Modal */

.s_modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

/* Modal Content */
.s_modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 800px;
}

/* The Close Button */
.s_close {
    color: #0e71b0;
    float: right;
    font-size: 35px;
    font-weight: bold;
}

.s_close:hover,
.s_close:focus {
    color: #0f89d6;
    text-decoration: none;
    cursor: pointer;
}
#sModalLink {
    cursor: pointer;
}


/* REPORT */
.report a:focus{
    outline: none;
}
.report textarea{
width: 260px;
height: 50px;
resize:none;
}
.report{
width: 270px;
}
.ui-icon {
	display: block;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
}
.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ui-button {
	display: inline-block;
	position: relative;
	padding: 0;
	line-height: normal;
	margin-right: .1em;
	cursor: pointer;
	vertical-align: middle;
	text-align: center;
	overflow: visible; /* removes extra width in IE */
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
	text-decoration: none;
}
/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
	width: 2.2em;
}
/* button elements seem to need a little more width */
button.ui-button-icon-only {
	width: 2.4em;
}
.ui-button-icons-only {
	width: 3.4em;
}
button.ui-button-icons-only {
	width: 3.7em;
}

/* button text element */
.ui-button .ui-button-text {
	display: block;
	line-height: normal;
}

.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
	padding: .4em;
	text-indent: -9999999px;
}

textarea{
	background: #fff; border: 1px solid #aaa;
}
/* workarounds */
/* reset extra padding in Firefox, see h5bp.com/l */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
	border: 0;
	padding: 0;
}

.ui-dialog {
	position: absolute;
	top: 0;
	left: 0;
	padding: .2em;
	outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
	padding: .4em 1em;
	position: relative;
    background: #fff;
}

.ui-dialog .ui-dialog-titlebar-close {
	position: absolute;
	right: .3em;
	top: 50%;
	width: 21px;
	margin: -10px 0 0 0;
	padding: 0px;
	height: 20px;
}
.ui-dialog .ui-dialog-content {
	position: relative;
	padding: .5em 1em;
	background: none;
	overflow: auto;
	background: #fff;
}
.ui-state-default,
.ui-widget-content,
.ui-widget-header {
	background: #fff;
	font-weight: normal;
}
.ui-icon {
	width: 16px;
	height: 16px;
}

.ui-state-default .ui-icon {
	background-image: url(https://www.brdteengal.com/images/close.png);
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
	background-image: url(https://www.brdteengal.com/images/close_d.png);
}
.ui-icon-closethick { background-position: 0px 0px; }


/* Overlays */
.ui-widget-overlay {
	background: #000;
	opacity: .7;
	filter: Alpha(Opacity=45);
}

/* ======================================================= */
/* Responsive Nav Queries - just under 1110 */
/* ======================================================= */
@media only screen and (max-width: 1274px) {

/* #Base 1110 Grid
================================================== */

    .container, .footer-link                                { position: relative; width: 1110px; margin: 0 auto; padding: 0; }
	.report                                  { position: relative; width: 768px; margin: 0 auto; padding: 0; }
    .col, .cols                           { float: left; display: inline; margin-left: 0; margin-right: 0; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .col.alpha, .cols.alpha               { margin-left: 0; }
    .col.omega, .cols.omega               { margin-right: 0; }

    /* Base Grid */

    .container .three.cols                   { width: 190px; margin-right: 10px;}
	.container .socialcell.cols                   { width: 215px; }
    .container .four.cols                    { width: 240px;}
	.container .menu-right.cols                    { width: 225px; margin: 0 0 0 15px;}
	.container .five.cols                   { width: 290px; }
	.container .footer.cols                    { width: 240px; }
    .container .six.cols                     { width: 350px; }
    .container .ten.cols                     { width: 730px; }
	.container .eleven.cols                  { width: 650px; }
    .container .twelve.cols                  { width: 865px;}
    .container .sixteen.cols                 { width: 1110px; }

	.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }
/* END GRID */
.sub_nav {
    width:1110px;
}
nav {
    width:1110px;
}
nav a {
    padding:0 7px;
}

.dark_btn {
	width: 856px;

}
.top_img, .top_img2, .top_img3 {
width:164px;
}
.top_img4 {
display:none;
}
.t5 {
    display:none;
}
.dropdown .t6 {
    display:block;
}
.bn_spot_extra2 {display:none;}
.container .gals { width: 860px;}
.g_relthumbs {
width: 170px;
height: 226px;
}
.g_relthumbs img{
width: 170px;
}
.tits_container, .ass_container, .sponsor_container {
width: 206px;
}
.model_container_new, .pussy_container_new {
    width: 206px;
}
.mid_img, .mid_img2 {
	 font-size:13px!important;
}
.bn_spot, .bn_spot_wide, .bn_spot2, .bn_spot3 {font-size:13px;}
.pop_container_hide {
display:none;
}
/* iframe banners */
    #b_wrap { width: 810px; height: 225px; padding: 0; overflow: hidden; }
    #b_frame {
        -ms-zoom: 0.90;
        -moz-transform: scale(0.90);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.90);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.90);
        -webkit-transform-origin: 0 0;
    }
	
#adv{
	width: 225px;
  }
.select {
  width: 139px;
}
.btn-search {
	width: 855px;
	margin: 10px 0 0 0;
}

/* 404 */
.error {
  background-size: 65%;
  
}
.error h1 {
	font-size: 50px;
}
.error h2 {
	width: 70%;
}
.error h3 {
	width: 80%;
}
.error_search_field{
font-size: 26px;
  }
	
}


@media only screen and (max-width: 1109px) {
/* #Base 960 Grid
================================================== */

    .container, .footer-link                                  { position: relative; width: 960px; margin: 0 auto; padding: 0; }
	.report                                  { position: relative; width: 768px; margin: 0 auto; padding: 0; }
    .col, .cols                           { float: left; display: inline; margin-left: 5px; margin-right: 5px; }
    .row                                        { margin-bottom: 20px; }

    /* Nested Column Classes */
    .col.alpha, .cols.alpha               { margin-left: 0; }
    .col.omega, .cols.omega               { margin-right: 0; }

    /* Base Grid */

    .container .three.cols                   { width: 170px;  margin-right: 0px;}
	.container .socialcell.cols                   { width: 215px; }
    .container .four.cols                    { width: 230px; }
	.container .five.cols                   { width: 290px; }
	.container .footer.cols                    { width: 230px;}
    .container .six.cols                     { width: 350px; }
    .container .ten.cols                     { width: 590px; }
	.container .eleven.cols                  { width: 650px; }
    .container .twelve.cols                  { width: 710px; }
	.container .gals                  { width: 705px;}
    .container .sixteen.cols                 { width: 950px; }


	
	.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; }
/* END GRID */


/* HEADER */
nav {
	width: 950px;
}

.sub_nav {
    width:950px;
}

.t4 {
    display:none;
}
.dropdown-content .t4{
    display:block;
}
input.search_wrap[type="text"]:focus {
  width: 600px;
}

h3 { color: #181818; font-weight: bold; font-size: 18px; margin: 3px 0 3px 0;}
h3 span{ color: #0e71b0;font-size: 12px;}
h3 a:link{ color: #0e71b0;font-size: 20px;}

/* advanced seacrh */
#adv {
	width: 685px;}
.select {
	width: 162px;
	margin: 10px 10px 0 0;
}
.btn-search {
	width: 697px;
}

.bn_spot_extra {display: none;}

.message {
	font-size: 14px;
}
.message span {
  font-size: 18px;
  line-height: 22px;
}

/*.intro {width: 600px;}*/
.top_img, .top_img2{ margin: 0 5px 0 5px;}
.top_img3{ display: none;}
.thumb {width:134px; height: 200px; margin: 0 3px 3px 0;}
.thumb_mindex {width:134px; margin: 0 7px 7px 0;}
.thumb_small {width:110px; height: 168px; margin: 0 3px 3px 0;}
.thumb_best {width:110px; height: 168px; margin: 0 4px 3px 0;}
.thumbnail{
	max-width: 164px;
	max-height: 164px;
	}
.g_oddthumbs {
    min-width: 164px;
}
.g_mbthumbs {
    width: 160px;
}
.g_video {display:none;}
.s_cell {margin: 0 8px 8px 0;}
.r_thumbs{
width: 176px;
height: 150px\9;
}
.r_scorebar { 
	margin: 0 0 0 806px;
	}
#sticky-footer{
    position:fixed;
    padding-bottom:-10px;
    bottom:0px;
    width:100%;
    height:44px;
    background:#222;
    text-align: center;
}
#sticky-footer a {
	width: 100%;
	display: block;
	color: #fff;
	font-size: 20px;
	line-height: 26px;
	font-weight: bold;
	text-decoration: none;
	padding: 8px 0 0 0;
}
#sticky-footer span {
	color: #0390de;
}
.box_container {
margin: 0 0 12px 0;
}
.pop_container {
width: 150px;
min-height: 221px;
margin: 0 0 6px 0;
}
.g_popthumbs, .g_popthumbs img {
width: 150px;
}
.g_relthumbs {
width: 148px;
height: 196px;
}
.g_relthumbs img{
width: 148px;
}
.main_container {
margin: 0 0 12px 0;
}
.tits_container, .ass_container, .sponsor_container {
width: 168px;
}
.model_container_new, .pussy_container_new {
    width: 168px;
}
.best_hide {display:none;}
.best_hide2 {display:none;}
.topsites {
margin: 5px 6px 60px 6px;
margin: 5px 6px 10px 6px\9;
}
.bottom-p-container-extra {
display: none;
}
.report textarea{
width: 240px;
}
.report{
width: 250px;
}
.g_btnwide {
	width: 944px;
}
.dark_btn {
	width: 702px;
}
.g_btn {
	width: 693px;
}
.g_btn_side {
	width: 210px;
}
.g_link span {font-size: 28px; line-height: 28px; margin: 0 0 10px 0;}
.g_btn_bottom {
  font-size: 20px;
  margin: 0 0 0 10px;
  width: 180px;
}
.pagi {
  padding:0 2px 20px 0;
}
.pagi a{
  font-size: 20px;
}
.bn_spot2 img {width:220px;}
.bn_spot3 img {width:164px;}
.bottom-tl li a {font-size: 14px;}
/* iframe banners */
    #b_wrap { width: 675px; height: 187px; padding: 0; overflow: hidden; }
    #b_frame {
        -ms-zoom: 0.75;
        -moz-transform: scale(0.75);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.75);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.75);
        -webkit-transform-origin: 0 0;
    }
.error h1 {
	font-size: 42px;

	  padding: 130px 0 0 0;
	  
}
.error h3 {
	font-size: 26px;
	  padding: 130px 0 0 0;
	  
}
.error_search_field{
font-size: 20px;
  }
  
}
/* ======================================================= */
/* Responsive Nav Queries - just under 960 */
/* ======================================================= */


@media only screen and (max-width: 959px) {

/* GRID */
        .container, .footer-link                                   { width: 768px; }
		.report                                 { width: 480px; }
        .container .col,
        .container .cols                         { margin-left: 5px; margin-right: 5px;  }
        .col.alpha, .cols.alpha               { margin-left: 0; margin-right: 5px; }
        .col.omega, .cols.omega               { margin-right: 0; margin-left: 5px; }


        .container .three.cols                   { width: 134px; }
		.container .socialcell.cols                   { width: 170px; }
        .container .four.cols                    { width: 182px; }
        .container .footer.cols                    { width: 182px; }
        .container .six.cols                     { width: 278px; }
        .container .ten.cols                     { width: 470px; }
        .container .twelve.cols                  { width: 566px; }
		.container .gals                  { width: 561px;}
        .container .sixteen.cols                 { width: 758px; }


/* END GRID */

/* HEADER */
.extra-menu {
    display:none;
}
input.search_wrap[type="text"]:focus {
  width: 410px;
}
.t3 {
    display:none;
}

.dropdown-content .t3{
    display:block;
}

nav a {
    padding:0 8px;
}
#header{
	top: 18px;
}
.main-nav {
    margin:83px 0 0 0;
}
nav {
	width: 758px;
}

/* sub header */

.sub_nav {
    width:758px;
}

.sub_header ul li{
	margin: 0px 10px;	
}


/* advanced seacrh */

#adv {
	width: 543px;}
.select {
	width: 269px;
	margin: 10px 10px 0 0;
}
.btn-search {
	width: 556px;
}

.four.cols.menu ul { width: 100%; margin: 0 4px 0 0;}
.four.cols.menu ol { width: 100%; margin: 0 4px 0 20px;}
.four.cols.menu ul a, .four.cols.menu ol a { font-size: 16px; line-height:18px;}
.site_desc li a, .site_desc li a:visited {
	font-size: 12px !important;
}
#searchbox {
display:block; margin:8px 0 0 0;
}
.my_fav ul {
	padding: 20px 0;
}
.search-top { display:none;}
.break { display:block;}
.textbreak { display:none;}
.text_list span {display:none;}
.message {margin: 0 5px 10px 5px;}
.ads {
  margin: 5px 0px 10px 0px;
}
.cols img, .col img{max-width: 100%; height: auto;}
/*.intro {width: 380px;}*/
.socialcell {width: 170px;}
#nav.sticky { width: 758px; 
} 
.link_ab {margin: 0px;
	}
.catlist{
	font-weight:bold; 
	font-size: 20px;
	line-height: 30px;
}
/* --- IMAGES  --- */
.topsites {
margin: 5px 14px 60px 10px;
margin: 5px 14px 10px 10px\9;}
.hide_top {display: none;}
.x_thumb {float:left;display:inline;position:relative; width:132px; border: 2px solid #fff; background: #fff; height: 172px;margin: 0 3px 3px 0;
*border: 1px solid #fff;
	-moz-box-shadow: 1px 1px 4px #a8a8a8;
	-webkit-box-shadow: 1px 1px 4px #a8a8a8;
	box-shadow: 1px 1px 4px #a8a8a8;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color='#a8a8a8');
		font-size: 11px;
	line-height: 10px;
	text-align: center;
	}
.x_thumb img{padding: 0 0 1px 0;}
.thumb_large {width:332px; height: 317px; margin: 0 3px 3px 0;}
.hof_hide {display: none;}
.thumb {width:132px; height: 208px; margin: 0 5px 5px 0px; line-height: 20px;}
.thumb_small {width:106px; height: 173px; margin: 0 3px 3px 0; line-height: 18px;}
.thumb_best {width:86px; height: 146px; margin: 0 4px 3px 0;}
.thumb_best span{display:none;}
.s_cell {width:160px; height: 246px; margin: 0 8px 8px 0; line-height: 28px;}	
.thumb_mindex {width:132px; margin: 3px 8px 8px 0;
	}
.thumb_mindex img{width:130px;
	}
.thumbnail{
	max-width: 176px;
	max-height: 176px;
	}
.g_oddthumbs {
    min-width: 176px;
}
.g_mbthumbs {
    width: 170px;
}
.r_thumbs{
width: 186px;
height: 150px\9;
}
.r_frame{
	margin: 3px 10px 5px 0px;
	}
.r_thumbtop {
	width: 190px;
	min-height:190px;
	}
.r_scorebar {
	margin: 0 0 0 645px;
	}
 .r_sample img, .r_screen img {max-width: 176px;
    }
.sponsor {width:200px;
	}
.sponsor_btn {
	text-align: center;
	margin: 15px 0 20px 0px;
	clear: both;
}
.sponsor_review {font-weight: bold; font-size: 14px; line-height: 20px;}
.pop_container {
width: 116px;
min-height: 184px;
line-height: 28px;
}
.g_popthumbs, .g_popthumbs img {
width: 116px;
}
.g_relthumbs {
width: 180px;
height: 239px;
}
.g_relthumbs img{
width: 180px;
}
.box_container {
width: 132px;
min-height: 246px;
margin: 0 0 6px 0;
}
.main_container {
width: 132px;
min-height: 160px;
margin: 0 0 6px 0;
line-height: 28px;
}
.sponsor_container, .tits_container, .ass_container {
width: 270px;
}
.pussy_container {
width: 132px;
}
.model_container_new, .pussy_container_new {
    width: 274px;
}
/* --- END IMAGES  --- */
.fav_btn {width:24px;height:24px;overflow:hidden;position:absolute;bottom:1px;right:30px;display:block;background:transparent url("https://www.brdteengal.com/images/addfav-new.png") bottom right no-repeat;cursor:pointer;}
.fav_btn_on {background-position:top right;}
.fav_btn_off {background-position:bottom right;}
.report_btn {width:24px;height:24px;overflow:hidden;position:absolute;bottom:1px;right:1px;display:block;background:transparent url("https://www.brdteengal.com/images/report-new.png") bottom right no-repeat;cursor:pointer;}
.report_btn_on {background-position:top right;}
.report_btn_off {background-position:bottom right;}
/* GALLERIES */
.g_btn a, .dark_btn a, .g_btnwide a {
	font-size: 16px;
	line-height: 26px;
}
.g_btn span, .dark_btn span, .g_btnwide span {
	font-size: 20px;
}
.g_btn_side {
	width: 164px;
	font-size: 12px;
}
.g_thumbs {
    max-width: 130px;
    min-height: 193px;
}
.m_glist{
  width: 100%;
  font-size: 14px;
}
.m_glist span a{font-size:16px;}

.model_hr {display: none;}
.model_bio {
    font-size: 14px; line-height: 16px;
	}
.m_webcam{
    padding: 10px 0 3px 0;
}
.model_container {
width: 132px;
}
/* END GALLERIES */
/* --- ADS  --- */
.top_img, .top_img2 {width: 128px;line-height: 14px;}
.top_img img, .top_img2 img{width:124px;}
.top_img a, .top_img2 a{font-size:10px;}
.bn_spot img, .bn_spot_wide img {width:124px;}
.mid_img2 {
display: none;}
.r_sort{
float: left;
}
.r_bgr li { padding: 6px 0 6px 0; background: #eaeaea; font-size: 18px;}
.top_single:hover .adtext {
	padding: 8px 0;
	font-weight: bold;
	font-size: 16px;
}
/* --- END ADS  --- */
/* --- Sponsors --- */
.sponsor_info {
	font-size: 14px;
	}
.sponsor_info a{
     font-size: 14px;
	}
/* --- End Sponsors --- */	
.report textarea{
width: 240px;
}
.report{
width: 250px;
}
.g_btnwide {
	width: 752px;
}
.dark_btn {
	width: 558px;
}
.g_btn {
	width: 548px;
}
.g_link span {font-size: 32px; line-height: 32px;}
.g_btn_bottom {
  font-size: 24px;
  margin: 15px 0 0 0;
  width: 400px;
}
.bn_spot2 img, .bn_spot3 img {width:250px;}

/* Modal Content */
.s_modal-content {
    width: 600px;
}
.pagi li{line-height: 40px;}
.bottom-tl ul {width: 16%;}
.bottom-tl ul:last-child {width: 16%;}
.bottom-tl li a {font-size: 12px;}
/* iframe banners */
    #b_wrap { width: 540px; height: 150px; padding: 0; overflow: hidden; }
    #b_frame {
        -ms-zoom: 0.60;
        -moz-transform: scale(0.60);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.60);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.60);
        -webkit-transform-origin: 0 0;
    }
	
.error {
  background-size: 60%;
    background-position: right 45px;
  
}

.error h1 {
	font-size: 36px;

	  padding: 100px 0 0 0;
	  
	line-height: 50px;
}
.error h2 {
	font-size: 24px;
}
.error h3 {
	font-size: 22px;
	width: 100%;
}
.error_search_field{
font-size: 20px;
  }	
}

/* ======================================================= */

/* ======================================================= */
/* Responsive Nav Queries - (min-width: 480px) and (max-width: 767px) */
/* ======================================================= */

@media only screen and (max-width: 767px) {

/* GRID */

        .container, .footer-link  { width: 420px; }
        .cols, .col { margin: 0; }
        .container .three.cols,
		.container .socialcell.cols,
        .container .four.cols,
		.container .footer.cols,
        .container .six.cols,
        .container .ten.cols,
        .container .twelve.cols,
        .container .sixteen.cols{ width: 420px; }
		.container .gals  { width: 420px; margin: 0;}


/* END GRID  */
/*fix for review categories
.twelve.cols li{
	font-size: 16px;
	margin: 2px 0 2px 0;
}
*/

/* HEADER */
#logo {
    width:155px;
}
#logo img {
    height:36px;
    margin:8px 0 0 5px;
}

nav {
	width: 480px;
}

/* sub header */
.sub_nav {
    width:480px;
}

.sub_nav .t3 {
    display: none;
}

input.search_wrap[type="text"]:focus {
  width: 360px;
}
.t2 {
    display:none;
}
.dropdown-content .t2{
    display:block;
}

/* news banner */
.news_btn {
	height: 26px;
	padding: 10px 0 8px 0;
	font-size: 20px;
}
.main-nav-news{
	margin:126px 0 0 0;
}

/* advanced seacrh */
#adv {
	width: 410px;}
.select {
	width: 420px;
	margin: 10px 0 0 0;
}
.btn-search {
	width: 424px;
}

.split { display:block;}
.message {display:none;}
/*.head-main{display: none;}*/
.hidden {display:block;}
.hidden2 {display:none;}
.text_list a {font-size: 16px; line-height: 20px;}
.textbreak { display:block;}
.search_opt { display:block;}
h1, h4{ text-align:center;}
h4 span{font-size: 16px; line-height: 17px;}
h4 span a{font-size: 16px; line-height: 30px;}
h5 { text-align:center; }
.four.cols{display: none;}  /* hidden menu */
/*.intro {width: 420px;}*/
.intro {float: none;}
.model {width:140px;
	}
.m_glist{
  width: 100%;
}
.model-fav-link  {
margin: 0px;}
/* --- SOCIAL --- */
.social {display:none;}
/*.social_big {display: block; margin: 0 0 15px 0; text-align:center;}*/
.social_big {display:none;}
.social-gal{ display:block; float:none; margin: 18px 0px 0 0}
.socialcell {width: 420px;}
/* --- END SOCIAL --- */

/* --- IMAGES  --- */
/*.topsites {
margin: 5px 20px 55px 24px;
margin: 5px 20px 10px 24px\9;}*/
.topsites {
font-size: 11px;
width: 130px;
height: 78px;
height: 124px\9;
margin: 5px 6px 60px 0px;
margin: 5px 6px 10px 0px\9;}

.x_thumb {display:none;}
.thumb_large {width:308px; height: 295px; margin: 0 3px 3px 0;}
.thumb {width:130px; height: 205px; margin: 0 6px 3px 0; line-height: 20px}
.thumb_small {width:98px; height: 161px; margin: 0 3px 3px 0;}
.thumb_best {width:98px; height: 162px; margin: 0 3px 3px 0;}
.thumb_mindex {width:128px; margin: 3px 12px 10px 0;
	}
.thumb_mindex img{width:130px;
	}
.s_cell {width:140px; height: 218px; margin: 0 8px 8px 0; line-height: 30px;}
.r_cthumbs{
      width: 220px;
    }
.r_thumbs{
width: 210px;
}
.r_frame{
	margin: 3px 5px 5px 5px;
	}
.r_thumbtop {
width:100%;
margin: 0 0 10px 0;
	}
.r_thumbtop img{
width:96%;
	}

.r_pros {
width:100%;
border-right: 0px; margin: 0 0 20px 0;
min-height:0px;
	}
.r_cons {
width:100%;
border-right: 0px; margin: 0 0 20px 0;
min-height:0px;
	}
.r_review {
	width: 100%;
}
.r_stats {
	width: 100%;
	padding: 0;
}
.r_scoretop{
padding: 5px 0 15px;
}
.r_scorebar { 
margin: 0 0 0 163px;
	}
.r_sample,.r_screen  {
width:50%;
width:49%\9;
	}
 .r_sample img, .r_screen img {max-width: 200px;
    }
.r_news {
display:none;
	}
.r_biglink {
	text-align: center;
	margin: 0 0 30px 0;
}
.r_biglink a{
	font-weight: bold;
	font-size: 30px;
	line-height: 30px;
}
#sticky-footer{
	height:56px
}
#sticky-footer a {
	font-size: 16px;
	line-height: 20px;
	padding: 8px 0 0 0;
}
/* --- END IMAGES  --- */
/* GALLERIES */
.g_container {
margin: 0 0 10px 0;
}
.g_thumbs {
    max-width: 160px;
    min-height: 237px;
}
.thumbnail{
	max-width: 200px;
	max-height: 200px;
	}
.g_oddthumbs {
    min-width: 200px;
}
.g_mbthumbs {
    width: 196px;
}
.g_data li, .g_data_top li {
	display:inline-block;
	margin: 4px 10px 4px 0;
	}
.g_tag_list li {
	display:inline-block;
	}
.g_tags {
	display:inline-block;
	font-size: 16px;
	margin: 0 0 8px 0;
	padding: 4px 8px 4px 8px;
	border: 0px;		
}
/* galleries rating */
.rating-block div.rating.big div.bars { width: 420px; height: 82px; }
.rating-block div.rating.big div.bars span.stars-off, .rating-block div.rating.big div.bars span.stars-on { height: 82px; background-image: url("../images/stars-420.png"); }
.rating-block div.rating.big div.bars span.stars-off { width: 420px; }
/* END GALLERIES */
/* --- ADS --- */
.top_img, .top_img2, .top_img3, .top_img4 { display: none;}
.bn_spot img {width:150px;}
.bn_spot_wide img {width:190px;}
.bn_spot_extra {display:inline-block;}
.mid_img2{
display: inline-block;}
.adtext {
	height: 14px;
}
.top_single:hover .adtext {
	padding: 8px 0;
	font-weight: bold;
	font-size: 14px;
}
.bottom-p-container {
width: 420px;
text-align: center;
padding: 10px 0 10px 0;
}
.bottom-p-container-extra {
display: block;
width: 420px;
text-align: center;
padding: 10px 0 10px 0;
}
.model_container_new, .pussy_container_new {
    width: 202px;
}
/* --- END ADS --- */
.bottom-tl {margin: 20px 0 0 0;}
.bottom-tl ul {width: 50%; margin: 0 0 0 0;}
.bottom-tl ul:last-child {width: 50%; margin: 0 0 0 0;}
.bottom-tl li a {font-size: 18px; line-height: 30px;}

.pagi {text-align:center;}
.pagi span {display: none;}

nav li span{
    display:none;
}
.r_sort{
float: inherit;
}
#section-footer, #section-footer a{ 
		font-size: 20px;
		line-height: 30px;
	}
#section-footer h5{
	margin-bottom: 10px;
	margin-top: 10px;
	font-size: 20px;
	}
.g_btnwide  {
	width: 404px;
}
.dark_btn, .g_btn  {
	width: 412px;
}
.sponsor_container, .tits_container, .ass_container {
width: 200px;
}
.total_gals{float: none; text-align: center;}
.m_webcam_pop {
     clear: both;
}
.m_sponsorlist_pop{
     clear: both;
}
.pop_container {
width: 132px;
min-height: 160px;
}
.g_relthumbs {
width: 196px;
height: 260px;
}
.g_relthumbs img{
width: 196px;
}
.g_popthumbs, .g_popthumbs img {
width: 132px;
}
.g_link span {font-size: 22px; line-height: 22px;}
.g_btn_bottom {
  font-size: 24px;
  margin: 15px 0 0 0;
  width: 360px;
}
.bn_spot2 img {width:420px;}
.bn_spot3 img {width:190px;}

/* Modal Content */
.s_modal-content {
    width: 380px;
}
/* iframe banners */
    #b_wrap { width: 405px; height: 112px; padding: 0; overflow: hidden; }
    #b_frame {
        -ms-zoom: 0.45;
        -moz-transform: scale(0.45);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.45);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.45);
        -webkit-transform-origin: 0 0;
    }
	.error {
  background-size: 90%;
  background-position: right 40px;
}
	.error h1 {
	font-size: 40px;
	  padding: 90px 0 300px 0;
	  text-align: left;
	line-height: 40px;
	width: 60%;
}
	.error h2 {
	  display:none;
}
.error h3 {
	font-size: 24px;
	  padding: 100px 0 0 0;
}
.error_btn {
  margin: 15px 15px 0 0;
}
.error_btn_active {
  margin: 15px 15px 0 0;
}
.error_search_wrapper {

margin: 20px 0;
width: 100%;
}
.error_search_field{
font-size: 30px;
  }	
  

}

/* ======================================================= */
/* Responsive Nav Queries - Swaps normal Nav with a dropdown menu with the #responsive-nav ID */
/* ======================================================= */
@media only screen and (max-width: 640px) {
/* news banner */
.news_btn {
	height: 42px;
	padding: 8px 0 8px 0;
	font-size: 20px;
}
.main-nav-news{
	margin:144px 0 0 0;
}
}

/* ======================================================= */
/* Responsive Nav Queries - Swaps normal Nav with a dropdown menu with the #responsive-nav ID */
/* ======================================================= */


@media only screen and (max-width: 479px) {
/* GRID */
        .container, .footer-link  { width: 300px; }
		.report { width: 300px; }
        .cols, .col { margin: 0; }
        .container .three.cols,
		.container .socialcell.cols,
        .container .four.cols,
		.container .footer.cols,
        .container .six.cols,
        .container .ten.cols,
        .container .twelve.cols,
        .container .sixteen.cols  { width: 300px; }
		.container .gals  { width: 300px;}


/* END GRID */

/* HEADER */
.search_wrap {
	display: none;
}
.dropdown {
	display: none;
}
.dropdown-content .t1{
    display:block;
}
.t5 {
    display:block;
}
.t6 {
    display:block;
}

/* HEADER */
.sub_nav {
    width:300px;
}
.sub_nav .t2 {
    display: none;
}

#logo {
    display:none;
}

#logo-mobile {
    height:53px;
    width:220px;
}

#logo-mobile img {
    height:44px;
    margin:3px 0 0;
}

#logo-mobile a {
    padding:0 10px 0 10px;
}

#logo-mobile a:hover {
    background:none;
}

nav {
    margin:0;
    width:100%;
}
nav a:hover {
    background-color:#0e71b0;
}
.main-item.active, .menu-item.active {
    background-color:#393939;
}

.toggle + a,.top-menu, .drop, .menu-item.top-menu-news, .menu-item.top-menu-text, .menu-extra3 {
    display:none;
}

.toggle {
    display:block;
    color:#0e71b0;
}
.toggle i{
    display:block;
    padding:10px 15px 0 0;
    color:#0e71b0;
	float: right;
	font-size: 30px;
}

#drop:checked + ul {
    display:block;
	/*overflow: auto;
	height: 200px;*/
}

nav ul li, .menu-item, .main-item {
    display:block;
    width:50%;
    background:#393939;
    border-bottom:1px solid #888;
-webkit-box-shadow: inset 1px 0px 0px 0px rgba(136,136,136,1);
-moz-box-shadow: inset 1px 0px 0px 0px rgba(136,136,136,1);
box-shadow: inset 1px 0px 0px 0px rgba(136,136,136,1);
}
nav ul li a {
    color:#fff!important;
	height: 40px;
	line-height:40px;
	text-transform: none;
	font-size: 14px;
}

nav a:hover { 
    color: #fff!important;
}


/* search form mobile */
#search-submit {
    position: relative;
    z-index: 1;
	float: right;
    top: 15px;
    cursor:pointer;
    width: 0;
	-webkit-appearance: none;
	
}
.search-field {
	color: #fff;
    width: 100%;
	border: 0;
	height: 60px;
	float:left;
	background: #222;
	padding: 10px 0 10px 10px;
	font-size: 24px;
	-webkit-appearance: none;
}
.search-drop {
	display:block;
    width: 100%;
    border-bottom:1px solid #888;
	-webkit-appearance: none;
}

/* news banner */
.news_btn {
	height: 42px;
	padding: 8px 0 8px 0;
	font-size: 18px;
}
.main-nav-news{
	margin:146px 0 0 0;
}


/* advanced seacrh */
#adv {
	width: 290px;}
.adv_search.button {
	width: 300px;
}
.select {
	width: 300px;
}
.btn-search {
	width: 303px;
}

/*  end media only */
.split { display:block;}
h4{ text-align:center; }
h4 span{font-size: 14px; line-height: 30px;}
h4 span a{font-size: 14px; line-height: 30px;}
h5 { text-align:center; }
.hidden {display:block;}
.textbreak { display:block;}
/*.intro {width: 300px;}*/
.model-fav-link  {
margin: 0px;}
.model_hr {display: none;}
.m_sponsorlist{
    display:none;
}
/* MENU */
#nav {
font-family:Verdana;font-size:9px;line-height:12px;font-weight:bold;text-transform:uppercase
}
/* --- SOCIAL --- */
.social {display:none;}
/*.social_big {display: block; margin: 0 0 15px 0;}*/
.social_big {display: none;}
.socialcell {width: 300px;}
/* --- END SOCIAL --- */

/* --- IMAGES  --- */
.topsites {
font-size: 11px;
width: 130px;
height: 78px;
height: 124px\9;
margin: 5px 6px 60px 6px;
margin: 5px 6px 10px 6px\9;}
.best_hide {display:block;}
.hide {display:none;}
.hide_top {display: block;}
.thumb_large {width:294px; height: 274px; margin: 0 3px 3px 0;font-size: 10px;line-height: 13px;}
.thumb {width:140px; height: 218px; margin: 0 5px 5px 0;}
.thumb_small{width:93px; height: 155px; margin: 0 3px 3px 0;}
.thumb_best {width:93px; height: 154px; margin: 0 3px 3px 0;}
.s_cell {width:110px; height: 186px; margin: 0 8px 8px 0; line-height: 16px;}	
.x_thumb {display:none;}
/* DISCOUNT */
.discount {
text-align: center;
}
.discount img{
margin: 0 32px 14px 32px;
}
.model {width:110px;
	}
.m_glist{
  width: 98%;
}
.thumb_mindex {width:140px; margin: 3px 8px 8px 0;
	}
.thumb_mindex img{width:138px;
	}
.r_cthumbs{
      width: 220px;
      margin: 0 0 10px 0;
    }
.r_thumbs{
width: 290px;
font-size: 14px;
}
.r_thumbs a, .r_thumbs span{
font-size: 14px;
}
 .r_sample, .r_screen {min-height: 150px;
    }
 .r_sample img, .r_screen img {max-width: 140px; max-height: 140px;
    }
.r_frame{
	margin: 3px 5px 5px 5px;
	background: #292929;
	}
.r_thumbtop img{
width:94%;
	}
.r_scorebar { 
	margin: 0 0 0 103px;
	}
#sticky-footer{
	height:54px
}
textarea#comment {width: 300px;}

.sponsor {width:294px;
	}
.sponsor_hidden {
	display: block;
}
.pop_container {
width: 142px;
min-height: 200px;
}
.g_popthumbs, .g_popthumbs img{
width: 142px;
}
.g_relthumbs {
width: 142px;
height: 188px;
}
.g_relthumbs img{
width: 142px;
}
.box_container {
width: 142px;
min-height: 256px;
}
.main_container {
width: 142px;
min-height: 200px;
}
.sponsor_container, .tits_container, .ass_container {
width: 294px;
margin: 0 0 16px 0;
font-size: 16px;
line-height: 18px;
}
.sponsor_container span{
font-size: 14px;
}
.model_container {
width: 142px;
margin: 0 0 16px 0;
font-size: 16px;
line-height: 18px;
}
.pussy_container {
width: 142px;
margin: 0 0 16px 0;
}
.model_container_new, .pussy_container_new {
    width: 300px;
}
/* --- END IMAGES  --- */
/* GALLERIES */
.g_thumbs {
    max-width: 140px;
    min-height: 207px;
}
.thumbnail{
	max-width: 142px;
	max-height: 142px;
	}
.g_oddthumbs {
    min-width: 148px;
}
.g_mbthumbs {
    width: 140px;
	margin: 0 0 4px 0;
}
.g_figure {
	margin: 0 4px 0 0;
}
/* galleries rating */
.rating-block div.rating.big div.bars { width: 300px; height: 59px; }
.rating-block div.rating.big div.bars span.stars-off, .rating-block div.rating.big div.bars span.stars-on { height: 59px; background-image: url("../images/stars-300.png"); }
.rating-block div.rating.big div.bars span.stars-off { width: 300px; }
/* END GALLERIES */
/* --- ADS --- */
.bn_spot img, .bn_spot_wide img {width:120px;}
.adtext {
	height: 12px;
}
.top_single:hover .adtext {
	padding: 8px 0;
	font-weight: bold;
	font-size: 12px;
}
.bottom-p-container, .bottom-p-container-extra {
width: 300px;
}
/* --- END ADS --- */

.bottom-tl ul {text-align:center; width: 98%;}
.bottom-tl ul:last-child {text-align:center; width: 98%;}
.bottom-tl li a {font-size: 20px; line-height: 34px;}
.pagi {
  font-size: 18px;
}
.pagi li{text-align:center;}
.pagi span {display: none;}
.report textarea{
width: 200px;
}
.report{
width: 190px;
}
.g_btnwide {
	width: 282px;
}
.dark_btn, .g_btn {
	width: 290px;
}
.m_webcam_pop {display: none;}
.m_sponsorlist_pop {display: none;}
.g_link span {font-size: 30px; line-height: 30px;}
.g_btn_bottom {
  font-size: 24px;
  margin: 15px 0 0 0;
  width: 260px;
}
.bn_spot2 img, .bn_spot3 img {width:290px;}

/* Modal Content */
.s_modal-content {
    width: 280px;
}
/* iframe banners */
    #b_wrap { width: 300px; height: 85px; padding: 0; overflow: hidden; }
    #b_frame {
        -ms-zoom: 0.33;
        -moz-transform: scale(0.33);
        -moz-transform-origin: 0 0;
        -o-transform: scale(0.33);
        -o-transform-origin: 0 0;
        -webkit-transform: scale(0.33);
        -webkit-transform-origin: 0 0;
    }
.error {
  background-size: 65%;
  background-position: right 50px;
}	
	.error h1 {
	  padding: 90px 0 0px 0;
}
.error h3 {
	  padding: 100px 0 0 0;
}
.error_btn {
	width: 90%;
  margin: 15px 0 0 0;
}
.error_btn:last-child {
	width: 90%;
  margin: 15px 0 20px 0;
}
.error_btn_active {
		width: 90%;
  margin: 15px 0 0 0;
}
.error_search_field{
font-size: 20px;

  }
  .error_search_wrapper {
width: 99%;
}
	
}

/* media height for dropdown */
@media only screen and (max-height: 550px) and (max-width: 1100px) {
	.dropdown-content {
    height: 60vh; /* For screen height */
	overflow: scroll;
	overflow-x: hidden;
}
}