/* CSS Guideline to style mediabox */
/* When adding your own theme,make sure to replace "custom" with your theme name */
/* use lowercase characters and no space. For example,we name our theme "mytheme" */
/* we replace every "mediabox-light" with "mediabox-mytheme" */
/* Wrapper,the very outside container of mediabox */
#mediabox-wrapper.mediabox-light{}
#mediabox-wrapper .clr {clear:both;}
#mediabox-close{height:30px;width:20px;display:block;background:url(close.png) 0 0 no-repeat;clear:both;}
#mediabox-close span{display:none;}
/* Table for border look and feel */
#mediabox-top.mediabox-left{background:url(tl.png) 0 0 no-repeat;clear:both;}
#mediabox-top .mediabox-right{background:url(tr.png) 100% 0 no-repeat;}
#mediabox-top .mediabox-center{background:url(top.png) 0 0 repeat-x;height:20px;margin-left:20px;margin-right:20px;}
#mediabox-middle {overflow: hidden;}
#mediabox-middle.mediabox-left{background:url(left.png) 0 0 repeat-y;clear:both;}
#mediabox-middle .mediabox-right{background:url(right.png) 100% 0 repeat-y;}
#mediabox-middle .mediabox-center{background:#fff;margin-left:20px;margin-right:20px;}
#mediabox-bottom.mediabox-left{background:url(bl.png) 0 0 no-repeat;}
#mediabox-bottom .mediabox-right{background:url(br.png) 100% 0 no-repeat;}
#mediabox-bottom .mediabox-center{background:url(bottom.png) 0 0 repeat-x;height:20px;margin-left:20px;margin-right:20px;}
/* Object/Image container */
#mediabox-container{}
/* Spinner class that gets added when loading content and removed when loaded */
#mediabox-container.spinner{background:url(ajax-loader.gif) 50% 50% no-repeat;}
/* Warning class that gets added when erroring */
#mediabox-container.warning{background:url(warning.png) 50% 50% no-repeat;}
#mediabox-container.warning h1 {position: absolute;text-align: center;margin-left: 10px;}
/* Arrows wrapper (for previous and next when visible) */
#mediabox-arrows{margin-top:15px;position:absolute;right:0;width:70px;height:20px;}
#mediabox-arrows a{float:left;display:block;width:20px;height:20px;margin-right:5px;}
/* Previous arrow and its text span */
#mediabox-arrows #mediabox-previous{background:url(prev.png) 0 0 no-repeat}
#mediabox-arrows #mediabox-previous span{display:none;}
/* text wrapper,useful to set as display none when using images */
/* Next arrow and its text span */
#mediabox-arrows #mediabox-next{background:url(next.png) 0 0 no-repeat}
#mediabox-arrows #mediabox-next span{display:none;}
/* text wrapper,useful to set as display none when using images */
#mediabox-arrows #mediabox-previous.inactive,
#mediabox-arrows #mediabox-next.inactive{background-position:0 -20px;}
/* Captions wrapper and titles and descriptions */
#mediabox-caption{padding-top:25px;font-family:Helvetica,Arial,sans-serif;}
#mediabox-caption h2{/* titles */
margin:0 0 10px 0;padding:0;color:#333;font-size:18px;font-weight:bold;}
#mediabox-caption p{/* description */
margin:0;color:#999;font-size:12px;}