@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	margin-bottom:10px;
	width: 100%;
	float: left;
	display: block;
	background:#fff;
	box-sizing:border-box;
	padding:10px;
	border-radius: 6px;	
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	overflow:hidden;
}

ul.listUI{margin:0; padding:0;
border-radius: 6px;	
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
background:#fff;
margin-bottom:10px !important;
box-sizing:border-box;
}

ul.listUI li{list-style-type: none; overflow:hidden;}
ul.listUI li+ li{border-top:1px solid #CCCCCC;}

ul.listUI li a .thumbnail{
  background: #fff;
  float:left;
  overflow:hidden;
  margin-right: 8px;
}
ul.listUI li a .logo{
  background: #fff;
  float:left;
  overflow:hidden;
  margin-right: 8px;
  border:1px solid #ddd;
}
ul.listUI li a .box{
	margin:0;
	padding:0;
	overflow:hidden;
}

.layout h1{
	margin:0;
	padding:0;
	font-size:1em;
	font-weight:normal;
	margin-bottom:5px;
}

ul.listUI li a .box h2{
	margin:0;
	padding:0;
	font-size:1em;
	font-weight:normal;
	margin-bottom:5px;
}

ul.listUI li a .box h2.blue_link{
	margin:0;
	padding:0;
	font-size:0.9em;
	font-weight:normal;
	margin-bottom:5px;
	color:#1C68AF;
}

ul.listUI li p.note{
	margin:0;
	padding:0;
	font-size:0.8em;
	color:#555555;
}

ul.listUI li a p.exp{
	margin:0 0 5px 0;
	padding:0;
	font-size:0.7em;
}
ul.listUI li a p.note{
	margin:0 0 10px 0;
	padding:0;
	font-size:0.8em;
}

.sample{background:#e72e34; color:#fff; font-size:10px; text-align:center; margin-bottom:10px; padding:10px;}
.time{color:#a7a7a7;}
.mb10{margin-bottom:10px;}

ul.listUI{margin-bottom:1em !important;}
  
ul.listUI li a{
	display: block;
	overflow:hidden;
	padding:10px 10px 10px 10px;
	color:#333;
	line-height:1.3;
	text-decoration: none;
}
ul.listUI li a.arrow{
	position: relative;
	padding:10px 26px 10px 10px;
}
ul.listUI li a.arrow::after{
	content:"";
	display: block;
	width:8px;
	height:8px;
	border-top:2px solid #333;
	border-right:2px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	position: absolute;
	right:10px;
	top:50%;
	margin-top:-7px;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

ul.bannerUI{margin:0 0 10px 0; padding:0;box-sizing:border-box; overflow:hidden;}
ul.bannerUI li{ width:50%;float:left;list-style-type: none; overflow:hidden; margin:0; padding:0;box-sizing:border-box;}

ul.bannerUI li:nth-child(odd){ padding:0 5px 10px 0;}
ul.bannerUI li:nth-child(even){ padding:0 0 10px 5px;}

ul.bannerUI li a{padding:0; margin:0; display:block; overflow:hidden;}
ul.bannerUI li a .banner{
width: 100%;
height: auto;
}

/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width:100%;
	clear: none;
	float: none;
}
ul.listUI li a .thumbnail{
width:60px;
height: auto;
}
ul.listUI li a .logo{
width:50px;
height: auto;
}
ul.listUI li a .img{
width:100%;
height: auto;
margin-bottom:10px;
}

.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

.gridContainer {
	width:100%;
	clear: none;
	float: none;
	margin-left: auto;
}
ul.listUI li a .thumbnail{
width: 100px;
height: auto;
}
ul.listUI li a .logo{
width: 90px;
height: auto;
}

.zeroMargin_tablet {
margin-left: 0;
}
.hide_tablet {
display: none;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

.gridContainer {
	width:100%;
	max-width: 950px;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
ul.listUI li a .thumbnail{
width: 140px;
height: auto;
}
ul.listUI li a .logo{
width: 130px;
height: auto;
}

.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}