@charset 'utf-8';
/*************************************************!
*
*   project:    liteAccordion - a horizontal accordion plugin for jQuery
*   author:     Nicola Hibbert
*   url:        http://nicolahibbert.com/liteaccordion-v2/
*   demo:       http://www.nicolahibbert.com/demo/liteAccordion/
*
*   Version:    2.0.2
*   Copyright:  (c) 2010-2011 Nicola Hibbert
*   Licence:    MIT
*
**************************************************/
/****************************************** Core */
.accordion { text-align: left; font: 'Helvetica Neue', Verdana, Arial, sans-serif }
.slide { float:left;}
.accordion > ol { position: relative; overflow: hidden; height: 100%; margin: 0; padding: 0; list-style-type: none }
.accordion .slide > h2 { 
	color: black;
    font-size: 16px;	 
	font-weight: normal;
	margin: 0; 
	z-index: 100; 
	position: absolute; 
	top: 0; 
	left: 0; 
	-webkit-transform: translateX(-100%) rotate(-90deg); 
	-webkit-transform-origin: right top; 
	-moz-transform: translateX(-100%) rotate(-90deg);
	-moz-transform-origin: right top; 
	-o-transform: translateX(-100%) rotate(-90deg); 
	-o-transform-origin: right top; 
	transform: translateX(-100%) rotate(-90deg); 
	transform-origin: right top;
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); 
}
.accordion .slide > h2 span { 
    display: block; 
    padding-right: 8%; 
    text-align: right; 
    height: 90%;
    margin-top: 5px; 
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}
.accordion .slide > h2 b { 
    display: inline-block; 
    position: absolute; 
    top: 13%; 
    left: 10%; 
    text-align: center; 
    -webkit-transform: rotate(90deg); 
    -moz-transform: rotate(90deg); 
    -o-transform: rotate(90deg); 
    transform: rotate(90deg);
	-ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}
.accordion .slide > h2:hover { cursor: pointer }
.accordion .slide > div { height: 100%; position: absolute; top: 0; z-index: 10; overflow: hidden; background: white }
.accordion noscript p { padding: 10px; margin: 0; background: white }

/****************************************** Basic */
.basic .slide > h2 { background: #333; color: white; line-height: 225% }


/***************************************** Light */
.light { padding: 6px 22px; background: #e7e4e3 url(../img/bannerBg.jpg) repeat; }
.light .slide > h2 { background: #e7e4e3; line-height: 265%;}
.light .slide > h2 span { background: f0f0f1; color: #909090;}
.light .slide > h2.selected span, .light .slide > h2.selected:after { height:57px !important;}

.first > h2 span, .light .first > h2:after { background:url(../img/first_D.png) no-repeat; }
.first > h2.selected span, .first > h2.selected:after { background:url(../img/first_s.png) no-repeat; height:57px !important;}

.second > h2 span, .second > h2:after { background:url(../img/second_D.png) no-repeat; }
.second > h2.selected span, .second > h2.selected:after { background:url(../img/second_S.png) no-repeat; height:57px !important;}

.third > h2 span, .third > h2:after { background:url(../img/third_D.png) no-repeat; }
.third > h2.selected span, .third > h2.selected:after { background:url(../img/third_s.png) no-repeat; height:57px !important;}

.fourth > h2 span, .fourth > h2:after { background:url(../img/fourth_D.png) no-repeat; }
.fourth > h2.selected span, .fourth > h2.selected:after { background:url(../img/fourth_s.png) no-repeat; height:57px !important;}

.fifth > h2 span, .fifth > h2:after { background:url(../img/fifth_D.png) no-repeat; }
.fifth > h2.selected span, .fifth > h2.selected:after { background:url(../img/fifth_s.png) no-repeat; height:57px !important;}

.sixth > h2 span, .sixth > h2:after { background:url(../img/sixth_D.png) no-repeat; }
.sixth > h2.selected span, .sixth > h2.selected:after { background:url(../img/sixth_s.png) no-repeat; height:57px !important;}

.seventh > h2 span, .seventh > h2:after { background:url(../img/seventh_D.png) no-repeat; }
.seventh > h2.selected span, .seventh > h2.selected:after { background:url(../img/seventh_s.png) no-repeat; height:57px !important;}

.eighth > h2 span, .eighth > h2:after { background:url(../img/eighth_D.png) no-repeat; }
.eighth > h2.selected span, .eighth > h2.selected:after { background:url(../img/eighth_s.png) no-repeat; height:57px !important;}



.light .slide > h2 b { background: #ffffff; color: #909090; text-shadow: -1px 1px 0 white }
.light .slide > h2.selected span, .light .slide h2.selected span:hover, .light .slide > h2.selected b { }
.light .slide > div { background: none; height:288px !important; padding-top:1px; padding-left:50px !important; width:757px !important; }


/******************************************** IE */
.ie .slide > h2 b { top: 42%; left: 5% }
.ie9 .slide > h2 { filter: none; -ms-transform: translateX(-100%) rotate(-90deg); -ms-transform-origin: right top }
.ie.dark .slide > h2 b, .ie.light .slide > h2 b { top: 44% }
.ie9.dark .slide > h2.selected span, .ie9.dark .slide > h2.selected span:hover, .light .slide > h2 span { filter: none }
.ie9.stitch { box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4); }

.ie.light .slide > h2 { line-height: 265% }
.ie.light .slide > h2 span { height: 89%; padding-right: 8% }
.ie.light .slide > h2 b { top: 33% } 
.ie.light .slide > h2.selected:after { display: none }
