/************************************
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
************************************/

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    background:transparent;
}

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:1;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
nav ul {
    list-style:none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
    quotes:none;
}

/*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/*a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃えるようにしています*/
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるようにしています */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できるようにしています
また、mark要素とは、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用するようです。*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

/*テキストに打ち消し線が付くようにしています*/
del {
    text-decoration: line-through;
}

/*IEではデフォルトで点線を下線表示する設定ではないので、下線がつくようにしています
また、マウスオーバー時にヘルプカーソルの表示が出るようにしています*/
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
    border-collapse:collapse;
    border-spacing:0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
    vertical-align:middle;
}

/*画像を縦に並べたときに余白が出てしまわないように*/
img {
　　　vertical-align: top;
　　　font-size:0;
　　　line-height: 0;
}

.alt {
	text-indent:-9999px;
	font-size:0px;
	line-height:0;
}

.clear {
	clear:both;
}


.clearfix:after {  
    content: ".";  
     display: block;       
	 visibility: hidden;  
    height: 0.1px;  
    font-size: 0.1em;  
     line-height: 0;  
   clear: both;  
 }
 
 .clearfix {
 display: inline-block;
 }

.round {
	-webkit-border-top-right-radius: 28px;
      -moz-border-radius-topright: 28px;
      border-top-right-radius: 28px;
	  -webkit-border-top-left-radius: 28px;
      -moz-border-radius-topleft: 28px;
      border-top-left-radius: 28px;
	  
	  -webkit-border-bottom-right-radius: 28px;
      -moz-border-radius-bottomright: 28px;
      border-bottom-right-radius: 28px;
	  -webkit-border-bottom-left-radius: 28px;
      -moz-border-radius-bottomleft: 28px;
      border-bottom-left-radius: 28px;
}

.smallround {
	-webkit-border-top-right-radius: 4px;
      -moz-border-radius-topright: 4px;
      border-top-right-radius: 4px;
	  -webkit-border-top-left-radius: 4px;
      -moz-border-radius-topleft: 4px;
      border-top-left-radius: 4px;
	  
	  -webkit-border-bottom-right-radius: 4px;
      -moz-border-radius-bottomright: 4px;
      border-bottom-right-radius: 4px;
	  -webkit-border-bottom-left-radius: 4px;
      -moz-border-radius-bottomleft: 4px;
      border-bottom-left-radius: 4px;
}


.shadow {
	-webkit-box-shadow:0px 0px 10px 0px #333; /* Safari, Chrome逕ｨ */
	-moz-box-shadow:0px 0px 10px 0px #333; /* Firefox逕ｨ */
	box-shadow:0px 0px 10px 0px #333; /* CSS3 */
}

 * {
	font-family:"メイリオ",Meiryo,"ＭＳ Ｐゴシック","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",sans-serif;
	font-size:13px;
	line-height:1.8em;
	color: #333333;
	letter-spacing:1px;
}

a {
	text-decoration:none;
}

a:hover {
	color:#39F;
	text-decoration:underline;
}

.hide{
display:none;	
}

/***********************************/
/****      MAIN WRAPPER           **/
/***********************************/

div#wrapper{
	text-align:center;
	width:100%;
}

div#footer{
	width:930px;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
	position:relative;
}

/***********************************/
/****        HEADER               **/
/***********************************/

/*TOP PAGE*/

div#topHeader{
	width:930px;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	height:107px;	
}

img#headerImage{
	position:absolute;
	top:-90px;
	right:0px;
}

h1#home{
	display:block;
	width:205px;
	height:43px;
	background:url(../img/common/logo1.png) top left no-repeat;
	position:absolute;
	top:40px;
	left:0px;
}

h1#home a{
	display:block;
	width:205px;
	height:43px;
}

ul#headerNavi{
	position:absolute;
	top:60px;
	left:270px;
	list-style:none;
	width:450px;
}

ul#headerNavi li{
	display:inline;
	margin-right:20px;
}

ul#headerNavi li a{
	
}

ul#headerNavi li a:hover{
	text-decoration:none;
}

img#logo02{
	position:absolute;
	top:60px;
	right:0px;	
}

div.greetingAreaWrapper{
	text-align: left;
}
img.logo4{
	width:50%;
	margin-top:30px;
	margin-bottom:50px;
}
div.greetingArea p{
	font-size:15px;
	line-height: 2.0;
}
div.QRcode{
	margin:30px 0;
	text-align: right;
}
div.QRcode div.QR_url{
	display: inline-block;
	vertical-align: middle;
}
div.QRcode div.QR_url p{
	font-size:15px;
}
div.QRcode div.QR_url a{
	color:#39F;
}
div.QRcode div.QR_url a:hover{
	opacity: 0.5;
}
div.QRcode img{
	width:120px;
	margin-left:20px;
	padding:0;
	vertical-align: middle;
}

/*ABOUT PAGE*/

div#headerWrapper{
	width:100%;
	height:107px;
	background:url(../img/common/headerBG.gif) top center repeat;
	position:fixed;
	z-index:8000;
	*left:0px;
	*top:0px;
}

div#header{
	width:930px;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
	height:107px;
	position:relative;	
}

img#headerCursorAbout{
	position:absolute;
	top:100px;
	left:420px;
}

div#headerSubMenu{
	width:100%;
	height:50px;
	background:#fff;
	position:absolute;
	left:0px;
	top:107px;
	text-align:center;
}

div#headerSubMenu ul#subMenu{
	list-style:none;
	height:40px;
	position:relative;
	top:15px;
	left:-65px;
	*left:35%;/*IE7*/
	*top:20px;
	display:inline-block;
	
}

div#headerSubMenu ul#subMenu li{
	display:inline-block;
	width:100px;
	color:#666666;
	border-right:#999 solid 1px;
	height:20px;
	font-size:90%;
	float:left;
}

div#headerSubMenu ul#subMenu li a:hover{
	text-decoration:none;
}

/* INFO PAGE*/

div#headerWrapperInfo{
	width:100%;
	height:107px;
	background:url(../img/common/headerBG.gif) top center repeat;
	position:relative;
	z-index:8000;
}

img#headerCursorInfo{
	position:absolute;
	top:100px;
	left:565px;
}

div#headerPankuzu{
	width:100%;
	height:40px;
	background:#fff;
	position:absolute;
	text-align:center;
	*top:107px;
	*left:0px;
}

div.pankuzu{
	width:930px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	color:#999999;	
	font-size:85%;
	padding-top:13px;
	height:30px;
	text-align:left;
	*top:0px;
	*left:0px;
}

div.pankuzu a{
    color:#999999;	
}

/***********************************/
/****        TOPPAGE              **/
/***********************************/

div#topimage{
	width:100%;
	height:336px;
	background:url(../img/toppage/topMainBg.jpg) left top repeat-x;
	overflow:hidden;
	position:relative;
}	

div#topimage img{
	margin-left:auto;
	margin-right:auto;
	position:relative;
	top:-20px;
}

div#topContents{
	width:930px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	margin:50px 0px 20px 0px;
}


div.topContentsLeft{
	width:490px;
	float:left;
}

div.topBlogArea{
	margin-left:10px;
	width:480px;
	position:relative;
}

div.topBlogArea h2{
	display:block;
	width:480px;
	height:27px;
	background:url(../img/toppage/blogTitle.png) top left no-repeat;
	border-bottom:#999 solid 1px;
	margin-bottom:20px;
		
}

div.topBlogArea img#blogLink{
	position:absolute;
	top:0px;
	right:0px;
}

div.topBlogArea ul.topBlogList{
	list-style:none;
	display:block;
	width:470px;
	text-align:left;
	padding-left:10px
	
}

ul.topBlogList li{
	margin-top:5px;
}

ul.topBlogList li a{
	text-decoration:none;
	color:#0068B3;
}

ul.topBlogList li a:hover{
	text-decoration:underline;
}


div.topTopicsArea{
	margin-left:10px;
	width:480px;
	margin-top:0px;
}

div.topTopicsArea h2{
	display:block;
	width:480px;
	height:27px;
	background:url(../img/toppage/topicsTitle.png) top left no-repeat;
	border-bottom:#999 solid 1px;
	margin-bottom:20px;
		
}

div.topTopicsArea ul.topTopicsList{
	list-style:none;
	display:block;
	width:470px;
	text-align:left;
	padding-left:10px;
	
	
}

ul.topTopicsList li{
	margin-top:3px;
}

ul.topTopicsList li span{
	color:#999999;
	margin-right:10px;
}

ul.topTopicsList li a{
	text-decoration:none;
	color:#0068B3;
}

ul.topTopicsList li a:hover{
	text-decoration:underline;
}


div.topBannerArea{
	width:490px;
	margin-top:30px;
	margin-left:18px;
	padding-bottom:10px;
}

div.topBannerArea div.banner{
	float:left;
	margin-bottom:10px;
	
}

div.topBannerArea div.banner img{
	margin-right:6px;	
}


div.topContentsRight{
	width:400px;
	float:right;
}

div.topStandArea{
	width:400px;
}

div.topStandArea h2{
	display:block;
	width:400px;
	height:27px;
	background:url(../img/toppage/shinkanTitle.png) top left no-repeat;
	border-bottom:#999 solid 1px;
	margin-bottom:20px;
		
}

div#newsStand{
	width:400px;
	text-align:left;
}

div#newsStand h3{
	width:400px;
	font-size:140%;
	line-height:1.5;
	font-weight:normal;
	margin-bottom:10px;
}

div.standLeft{
	width:150px;
	float:left;
	text-align:center;
}

div.standLeft p.standNumber{
	color:#39B54A;
	margin-top:10px;
	line-height:1.5;
}

div.standLeft img.stand_b{
	margin-top:5px;	
}

div.standRight{
	width:240px;
	float:right;
}

div.standRight p{
	font-size:85%;
	line-height:1.5;
}

img#topStandReadMore{
	margin:10px 0px;
}

/***********************************/
/****        COMMON PAGE          **/
/***********************************/
div#contentsWrapper{
	width:100%;
	text-align:center;
}

div#contents{
	width:930px;
	text-align:left;
	margin-left:auto;
	margin-right:auto;
	position:relative;
}


/***********************************/
/****        ABOUT PAGE          **/
/***********************************/

div.aboutPage{
	margin-top:160px;	
}

div.aboutInner{
	position:relative;
	left:190px;
	width:740px;

}

/*はじめに*/

img#aboutTitle01{
	position:relative;
	left:-190px;
	top:30px;
}

h2{
font-size:190%;
font-weight:normal;
line-height:1.5;
color:#333333;
}

ul.aboutList{
	list-style:none;
	width:600px;
	margin:30px 0px;
}

ul.aboutList li{
	width:600px;
	margin-left:65px;
	position:relative;
	margin-bottom:30px;
}

ul.aboutList li img{
	position:absolute;
	top:0px;
	left:-65px;	
}

p.aboutRead{
	font-size:130%;
	color:#005AAB;
	margin-bottom:30px;
}

/*会社概要*/

img#aboutTitle02{
	position:relative;
	left:-190px;
	top:30px;
}


/*事業内容*/

img#aboutTitle03{
	position:relative;
	left:-190px;
	top:60px;
}

table.gaiyou{
  	border-top:#000 solid 2px;
	position:relative;
	top:0px; left:0px;
	width:670px;
	margin-bottom:40px;
}

table.gaiyou tr{
	min-height:42px;
	border-bottom:#CCCCCC solid 1px;	
}

table.gaiyou td{
	*border-bottom:#CCCCCC solid 1px;/*IE7*/
}

table#boardMember td{
	font-size:85%;
	color:#666666;
	border:none;
	height:22px;
	margin:0px;
}

table#boardMember tr{
	border:none;
	margin:0px;
	padding:0px;
}

td.gaiyou_left{
	width:110px;
	background:#FBFBFB;
	min-height:42px;
	font-size:100%;
	font-weight:bold;
	padding:10px 10px 10px 30px;
	letter-spacing:2px;
}


td.gaiyou_right{
	min-height:42px;
	padding:10px 10px 10px 20px;
	color:#666666;
	line-height:1.5;
	font-size:90%;
	position:relative;
}

td.smallSize{
	letter-spacing:0;
	font-size:90%;
	line-height:1.9;
}

img#gmap_b{
	position:absolute;
	right:20px;
	bottom:30px;
}

ul.aboutList li span.bold{
	font-size:120%;
	font-weight:bold;
	position:relative;
	left:0px; top:8px;
}

ul.aboutList li span.sub{
	font-size:85%;
	color:#666;
	position:relative;
	left:10px; top:10px;
}	

ul.aboutList li span.sub a{
	color:#09F;
}

table#telephone td{
	font-size:90%;
	color:#666;
	border:none;
}

table#telephone tr{
	border:none;
}


/***********************************/
/****    プライバシーポリシー PAGE    **/
/***********************************/

div.privacyPage{
	margin-top:160px;	
}

div.privacyInner{
	width:90%;
	margin:0 auto;
	position:relative;
}
div.privacyBox{
	width:89%;
	margin:0 auto;
}
div.privacyBox2{
	width:86%;
	margin:0 auto;
}
div.privacyBorderBox{
	width:100%;
	margin-top:20px;
	padding: 10px 20px 30px;
	border: solid 1px #000;
	box-sizing: border-box;
}
div.privacyInner h2{
	font-size:28px!important;
	font-weight:normal;
	line-height:1.5;
	color:#333333;
	text-align: center;
}
div.privacyInner h3{
	font-size:24px;
	margin-top:60px;
	margin-bottom:10px;
}
div.privacyInner p{
	font-size:16px;
	line-height:2em;
}
div.privacyInner .check{
	width:96%;
	margin:0 auto;
	padding-left:2em;
	text-indent:-2em;
	box-sizing:border-box;
	display:block;
}
div.privacyInner ol.paren{
	width:100%;
}
div.privacyInner ol.paren li{
	padding-left:2em;
	text-indent:-2.2em;
	font-size:16px;
	list-style-type:none;
	counter-increment:cnt;
	line-height:2em;
}
div.privacyInner ol.paren li:nth-child(n+2){
	padding-top:10px;
}
div.privacyInner ol.paren li::before{
	content: "(" counter(cnt) ") ";
}
div.privacyInner ol{
	width:90%;
	margin:0 auto;
}
div.privacyInner ol li{
	padding-top:10px;
	padding-left:2.4em;
	text-indent:-2.2em;
	font-size:16px;
	list-style-type:none;
	counter-increment:cnt;
	line-height:1.5em;
}
div.privacyInner ol li::before{
	padding-right:1.5em;
	content: counter(cnt);
}
div.privacyInner ul{
	width:86%;
	margin:0 auto;
	box-sizing: border-box;
}
div.privacyInner ul li{
	padding-top:10px;
	font-size:16px;
	line-height: 1.8em;
}
div.privacyInner a{
	line-height: 1.5em;
	text-decoration:underline;
}
div.privacyInner a:hover {
	color:#39F;
}

.pt10{ padding-top:10px; }
.pt20{ padding-top:20px; }
.pt30{ padding-top:30px; }
.pt40{ padding-top:40px; }
.pt80{ padding-top:80px; }

.pb10{ padding-bottom:10px; }
.pb40{ padding-bottom:40px; }

.pl10{ padding-left:10px; }
.pl70{ padding-left:70px; }

.ta_r{ text-align:right; }

.ti_2{ padding-left:2.3em; text-indent:-2.9em; }
.ti_3{ padding-left:3em; text-indent:-2.9em; }

.fb{ font-weight:bold; }



/***********************************/
/****      調査情報 PAGE          **/
/***********************************/

div.infoPage{
	margin-top:70px;	
}

div.infoContentsLeft{
	width:230px;
	float:left;
	text-align:center;
}

p.infoDate{
	margin-top:10px;
}

img.backNumber_b{
	margin-top:10px;
	margin-bottom:20px;
}

div.infoSaleArea{
 width:230px;
 background:#F8F7F2;
 padding-bottom:10px;
 margin-bottom:20px;
}

div.infoSaleArea img{
	margin:10px 0px;	
}

div.infoSaleArea p.saleText{
	width:200px;
	text-align:left;
	font-size:85%;
	color:#666;
	line-height:1.7;
	margin-left:15px;
	margin-bottom:15px;
}	

/*div.infoSaleArea p.saleText span.yellow{
	font-size:inherit;
	color:#F5A900;	
}*/

div.infoSaleArea p.saleText span.blue{
	font-size:inherit;
	color:#00028F;
	font-weight:bold;
}

div.infoSaleArea p.saleText span a{
	font-size:inherit;
	color:#00028F;
	font-weight:bold;
}

div.infoSaleArea p.saleText span.green{
	font-size:inherit;
	color:#39B54A;
	letter-spacing:0;
	font-weight:bold;
}

div.infoContentsRight{
	width:650px;
	float:right;
}

div.infoRightInner{
	
}


div.infoRightInner p{
	margin:20px 0px;
	font-size:130%;	
	line-height:1.5;
}

div.infoRightInner p span.name{
	color:#666;
	font-size:85%;
	margin-left:10px;	
}

div.infoRightInner p span.orange{
	color:#E94C18;
	font-size:inherit;
	font-weight:bold;
}	

div.infoRightInner p.infoNum{
	margin:5px 0px;
	font-size:100%;
}

div.infoRightInner h2{
	margin-bottom:20px;
}


div.infoRightInnerSmall{
	
}


div.infoRightInnerSmall p{
	margin:20px 0px;
	font-size:100%;
	color:#666;
	line-height:1.5;
}

div.infoRightInnerSmall p span.orange{
	color:#E94C18;
	font-size:inherit;
	font-weight:normal;
	line-height:1.6;
}


/*バックナンバー*/

img#before2013_b{
	margin:20px 0px 40px 0px;
}

div.backNumBox{
	width:650px;
	border-bottom:#CCCCCC solid 1px;
	margin-bottom:20px;
	padding-bottom:10px;
}
	
p.bn_title{
	font-size:140%;
	line-height:1.5;
	margin-bottom:10px;
}

div.bn_left{
	width:135px;
	float:left;
	text-align:center;
}

div.bn_left p.bn_num{
	color:#39B54A;
	font-size:85%;
	margin-top:10px;	
}

div.bn_right{
	width:500px;
	float:right;
	text-align:left;
	position:relative;
}

div.bn_right p{
	font-size:90%;
	color:#666666;
}

div.bn_right img{
	margin:8px 0px;
}

/***********************************/
/****        FOOTER AREA          **/
/***********************************/

ul#footer{
	width:930px;
	height: 30px;
	padding-left:10px;
	margin:0 auto;
	margin-top:10px;
	margin-bottom:30px!important;
	position:relative;
	border-top:#999 solid 1px;
	padding-top:15px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
p.corp{
	position:absolute;
	top:0px;
	left:0px;	
}

ul#footer li.copyrightArea{
	width:auto;
	height: 30px;
	text-align: left;
	display: block;
	box-sizing: border-box;
}

p.copyright{
	font-size:85%;
	color:#999999;
}
ul#footer li.privacy{
	font-size: 100%;
	width: auto;
	text-align: center!important;
	display: block;
}
ul#footer li.privacy a{
	text-decoration:none;
}
ul#footer li.linkarea{
	width: auto;
	text-align:center!important;
	display: block;
}
div.linkarea img{
	width:100%;
}


/***********************************/
/****        RSS LISTING          **/
/***********************************/

.rsstc   { margin: 0; padding: 0 ; text-align:left;}
.rsstc a { color: #0068B3;}
.rsstc em  { font-style: normal; font-weight: bold; }
.rsstc ul   { list-style: none;
display: block;
width: 470px;
text-align: left;
padding-left: 10px; }
.rsstc li   { list-style-type: none; margin-top: 5px;}

/***********************************/
/****        COLOR BOX             **/
/***********************************/

/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper{position:absolute; top:0; left:0; z-index:9999; overflow:visible;}
#cboxWrapper {max-width:none;}
#cboxOverlay{position:fixed; width:100%; height:100%;}
#cboxMiddleLeft, #cboxBottomLeft{clear:left;}
#cboxContent{position:relative;}
#cboxLoadedContent{overflow:auto; -webkit-overflow-scrolling: touch;}
#cboxTitle{margin:0;}
#cboxLoadingOverlay, #cboxLoadingGraphic{position:absolute; top:0; left:0; width:100%; height:100%;}
#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow{cursor:pointer;}
.cboxPhoto{float:left; margin:auto; border:0; display:block; max-width:none; -ms-interpolation-mode:bicubic;}
.cboxIframe{width:100%; height:100%; display:block; border:0;}
#colorbox, #cboxContent, #cboxLoadedContent{box-sizing:content-box; -moz-box-sizing:content-box; -webkit-box-sizing:content-box;}

/* 
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay{background:url(images/overlay.png) repeat 0 0;}
#colorbox{outline:0;}
    #cboxTopLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px 0;}
    #cboxTopRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px 0;}
    #cboxBottomLeft{width:21px; height:21px; background:url(images/controls.png) no-repeat -101px -29px;}
    #cboxBottomRight{width:21px; height:21px; background:url(images/controls.png) no-repeat -130px -29px;}
    #cboxMiddleLeft{width:21px; background:url(images/controls.png) left top repeat-y;}
    #cboxMiddleRight{width:21px; background:url(images/controls.png) right top repeat-y;}
    #cboxTopCenter{height:21px; background:url(images/border.png) 0 0 repeat-x;}
    #cboxBottomCenter{height:21px; background:url(images/border.png) 0 -29px repeat-x;}
    #cboxContent{background:#fff; overflow:visible;}
        .cboxIframe{background:#fff;}
        #cboxError{padding:50px; border:1px solid #ccc;}
        #cboxLoadedContent{margin-bottom:28px;}
        /*#cboxTitle{position:absolute; bottom:4px; left:0; text-align:center; width:100%; color:#949494;}*/
        #cboxCurrent{position:absolute; bottom:0px; left:58px; color:#949494;font-size:80%;}
        #cboxLoadingOverlay{background:url(images/loading_background.png) no-repeat center center;}
        #cboxLoadingGraphic{background:url(images/loading.gif) no-repeat center center;}

        /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
        #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {border:0; padding:0; margin:0; overflow:visible; width:auto; background:none; }
        
        /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
        #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {outline:0;}

        #cboxSlideshow{position:absolute; bottom:4px; right:30px; color:#0092ef;}
        #cboxPrevious{position:absolute; bottom:0; left:0; background:url(images/controls.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(images/controls.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}
        #cboxClose{position:absolute; bottom:0; right:0; background:url(images/controls.png) no-repeat -25px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxClose:hover{background-position:-25px -25px;}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}


/*title
#cboxTitle { 
    text-align:justify !important;
    width:98.5% !important; 
    margin-bottom:24px !important;
    padding:5px !important;
    background-color:#333 !important;
    opacity:0.75 !important;
    filter:alpha(opacity=75) !important;
    color:#fff !important;
}

*/

#cboxTitle{position:absolute; bottom:-70px; left:30px; text-align:left; width:85%; color:#fff; padding: 10px; font-size: .9em; }
