/**################################################
##
##   project:    awsAccordion - a vertical/horizontal accordion plugin for jQuery
##   author:     @anotherwebstorm
##   demo:       code.anotherwebstorm.com/apps/awsaccordion.html
##   Version:    1.0
##   Copyright:  (c) 2012-2013 Marco Cardoso
##
################################################**/

/*##IMPORT AWESOME FONT ICONS##*/
  /*Refer to http://fortawesome.github.com/Font-Awesome/#all-icons to check all icons */

@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('fonts/proximanova-regular-webfont.eot');
    src: url('fonts/proximanova-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/proximanova-regular-webfont.woff') format('woff'),
         url('fonts/proximanova-regular-webfont.ttf') format('truetype'),
         url('fonts/proximanova-regular-webfont.svg#proxima_nova_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'MontserratRegular';
    src: url('fonts/montserrat-regular.eot');
    src: url('fonts/montserrat-regular.eot') format('embedded-opentype'),
         url('fonts/montserrat-regular.woff') format('woff'),
         url('fonts/montserrat-regular.ttf') format('truetype'),
         url('fonts/montserrat-regular.svg#MontserratRegular') format('svg');
}
/*##VERTICAL ACCORDION##*/
.accordion-ver>ul , .accordion-hor>ul{
  margin: 0 auto;
  padding: 0;
  list-style:none;
} 
.accordion-ver>ul>li {
	background:url(../images/select-img2.png) #F79520 no-repeat 90% center;
  display:block;
  margin: 0;
  list-style:none;
  clear: left;
  position: relative;
  width: 100%;
   font-family: 'MontserratRegular';
  /*background:;*/
  /**margin-bottom: -4px;*/ /* IE6 e IE7 */
}
/*.accordion-ver>ul>li.first { background:#F79520;}
.accordion-ver>ul>li.first { background:#F79520;}
.accordion-ver>ul>li.second{background:#1C75BC;}
.accordion-ver>ul>li.active {background:#1C75BC;}
.accordion-ver>ul>li.third{background:#004C78;}
.accordion-ver>ul>li:hover {
  cursor:pointer;
}*/
.accordion-ver ul>li:first-child{background-color:#F79520;

} 

.accordion-ver ul>li:nth-child(2) {background-color:#1C75BC;

} 
.accordion-ver ul>li:nth-child(3){background-color:#004C78;
}

.accordion-ver ul>li:nth-child(4){background-color:#003368;
}
.accordion-ver ul>li:nth-child(5){background-color:#FBB03B;
}
.accordion-ver > ul > li.last {background-color : #F47721;}

.accordion-ver ul>li:first-child.active{background-color:#F79520;
background:url(../images/select-img.png)#F79520 no-repeat top 8px right 29px;
} 

.accordion-ver ul>li:nth-child(2).active {background-color:#1C75BC;
background:url(../images/select-img.png)#1C75BC no-repeat top 8px right 29px;
} 
.accordion-ver ul>li:nth-child(3).active {background-color:#004C78;
background:url(../images/select-img.png)#004C78 no-repeat top 8px right 29px;
}
.accordion-ver ul>li:nth-child(4).active {background-color:#003368;
background:url(../images/select-img.png)#003368 no-repeat top 8px right 29px;
}

.accordion-ver ul>li:nth-child(5).active {background-color: #FBB03B;
background:url(../images/select-img.png)#FBB03B no-repeat top 8px right 29px;
}

.accordion-ver>ul>li.last {
  border: 0;
  background: #F47721;
  background:url(../images/select-img2.png) #F47721 no-repeat top 8px right 29px;
}  

.accordion-ver>ul>li.last.active {
  background-color: #F47721;
background:url(../images/select-img.png)#F47721 no-repeat top 8px right 29px;
}
.accordion-ver>ul>li>h2 {
  position: absolute;
  display:block;
  float:left;
  margin: 0;
  padding: 0 0 0 10px;
  top: 0;
  left: 0;
  font-size: 15px;
  text-decoration:none;
  text-transform:uppercase;
  color: #FFF;
  border:none;
  box-sizing:border-box;
  font-weight:normal;
}
.accordion-ver>ul>li>h2:hover {
  cursor:pointer;
} 
.accordion-ver>ul>li>div {
  display:none;
  background: #F1F2F2;
  overflow: hidden;
    padding:10px 10px 0 10px;

}
.accordion-ver:hover>ul>li:hover>div {
  cursor: default;
} 
.accordion-ver>ul>li>div>span {
  display: block;
  padding:0 0 10px 0;
  font-family: 'proxima_nova_rgregular';
  text-align: left !important;
  line-height: normal;
   color: #58595B;
    font-size:16px;
	text-transform:none;
}
.accordion-ver>ul>li>span.numericTab {
  position: absolute;
  display:block;
  top: 0;
  padding: 0 10px 0 0;
  float:right;
  margin: 0;
  right: 0;

  text-decoration:none;
   
}
.accordion-ver>ul>li>i {
  position: absolute;
  display:block;
  top: 0;
  right: 0;
  padding: 0 10px 0 0;
  float:right;
  margin: 0;
  font-size: 18px;
  text-decoration:none;
  color: #000;
}

/*##HORIZONTAL ACCORDION##*/
.accordion-hor>ul>li {
  display:block;
  margin: 0;
  list-style:none;
  overflow: hidden;
  float:left;
  padding: 0;
  position: relative;
  border-right:#f0f0f0 1px solid;
  background:#cccccc;
}
.accordion-hor>ul>li:hover {
  cursor:pointer;
}
.accordion-hor>ul>li.last {
  border: 0;
} 
.accordion-hor>ul>li>h2 {
  position: absolute;
  display:block;
  float:left;
  /*margin-top: 0;*/
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  width: 100%;
  top: 30px;
  text-align: left;
  font-size: 15px;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration:none;
  text-transform:uppercase;
  color: #000;

  /* CSS3 Transform Rotate & Translate for H1 */
  white-space:nowrap;
  -moz-transform: rotate(90.0deg) translate(-40px,0px);  /* FF3.5+ */
  -moz-transform-origin: 0 100%;
  -o-transform: rotate(90.0deg) translate(-40px,0px);  /* Opera 10.5 */
  -o-transform-origin: 0 100%;
  -webkit-transform: rotate(90.0deg) translate(-40px,0px);  /* Saf3.1+, Chrome */
  -webkit-transform-origin: 0 100%;
  transform: rotate(90.0deg) translate(-40px,0px);  /* Saf3.1+, Chrome */
  transform-origin: 0 100%;
  /*filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1.0);*/  /* IE6,IE7 */
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1.0)"; /* IE8 */ 
}
.accordion-hor>ul>li>h2:hover {
  cursor:pointer;
}
.accordion-hor>ul>li>div {
  position:relative;
  display:block;
  float:left;
  overflow: hidden;
  /**top:0px;*/       /* IE7 Hack */
  /**left:0px;*/      /* IE7 Hack */
  margin:0;
  background: #666;
  font-family: Helvetica, Arial, sans-serif;
}
.accordion-hor:hover>ul>li:hover>div {
  cursor: default;  
}
.accordion-hor>ul>li>div>span {
  padding:10px;
  display: block;
  text-align: left !important;
  line-height: normal;
}
.accordion-hor>ul>li>span.numericTab {
  position: absolute;
  display:block;
  bottom: 0;
  padding: 10px 0;
  float:left;
  margin: 0;
  font-size: 15px;
  font-family: Helvetica, Arial, sans-serif;
  text-decoration:none;
  text-align: center;
  color: #000;
  background:#cccccc;  
}
.accordion-hor>ul>li>i {
  position: absolute;
  display:block;
  bottom: 0;
  padding: 10px 0;
  float:left;
  margin: 0;
  font-size: 18px;
  text-decoration:none;
  color: #000;  
}