/*
	 Organic Tabs
	 by Chris Coyier
	 http://css-tricks.com
*/

* { margin: 0; padding: 0; }
html { overflow-y: scroll; }
a { text-decoration: none; }
a:focus { outline: 0; }
p { font-size: 15px; margin: 0 0 20px 0; }
#page-wrap { width: 440px; margin: 80px auto; }
h1 { font: bold 40px Sans-Serif; margin: 0 0 20px 0; }

/* Generic Utility */
.hide { position: absolute; top: -9999px; left: -9999px; }


/* Specific to example one */

#example-one { background: #eee; padding: 10px; margin: 0 0 20px 0; -moz-box-shadow: 0 0 5px #666; -webkit-box-shadow: 0 0 5px #666; }

#example-one .nav { overflow: hidden; margin: 0 0 10px 0; }
#example-one .nav li { width: 97px; float: left; margin: 0 10px 0 0; font:13px Arial, Helvetica, sans-serif; line-height:16px; }
#example-one .nav li.last { margin-right: 0; }
#example-one .nav li a { display: block; padding: 5px; background: #959290; color: white; font-size: 10px; text-align: center; border: 0; }
#example-one .nav li a:hover { }

#example-one ul { list-style: none; }
#example-one ul li a { display: block; border-bottom: 1px solid #666; padding: 4px; color: #666; }
#example-one ul li a:hover { background: #fe4902; color: white; }
#example-one ul li:last-child a { border: none; }

#example-one ul li.nav-one a.current, #example-one ul.featured li a:hover {color: #F8EB17; }
#example-one ul li.nav-two a.current, #example-one ul.core li a:hover { color: #F8EB17; }
#example-one ul li.nav-three a.current, #example-one ul.jquerytuts li a:hover { color: white; }
#example-one ul li.nav-four a.current, #example-one ul.classics li a:hover { color: white; }
#example-two{ background:#fff; padding: 0px 0px;min-height: 385px;}



/* Specific to example two */

#example-two .list-wrap { padding: 0px 10px 0px 10px; margin: 0 0 0px 0; }

#example-two ul { list-style: none; }
#example-two ul li a { display: block; padding: 4px;}
#example-two ul li a:hover { color: #fff; }
#example-two ul li:last-child a { border: none; }

#example-two .nav { overflow: hidden; margin-bottom: 10px; }
#example-two .nav li { width: 158px; float: left; margin: 0 10px 0 0; }
#example-two .nav li.last { margin-right: 0; }
#example-two .nav li a { display: block; padding: 11px 5px 0px 5px; background: #825302 url("../img/page_img/largetab_bg.jpg") center no-repeat;  width:163px; height:28px; color: white;
font:14px Arial, Helvetica, sans-serif; text-align: center; border: 0; }


#example-two li a.current,#example-two li a.current:hover { background: #825302 url("../img/page_img/largetab_bg.jpg") center no-repeat !important; color: #fff; }
#example-two .nav li a:hover, #example-two .nav li a:focus { color: #fff;}

/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box; 
    -moz-box-sizing:border-box; 
    box-sizing:border-box;
}

.accordion {
    overflow:hidden;
    box-shadow:0px 1px 3px rgba(0,0,0,0.25);
    border-radius:3px;
    background:#333;
}

/*----- Section Titles -----*/
.accordion-section-title {
    width:100%;
    padding:10px;
    display:inline-block;
    border-bottom:1px solid #1a1a1a;
    background:#A91D21;
    transition:all linear 0.15s;
    /* Type */
    font-size:13px;
    text-shadow:0px 1px 0px #1a1a1a;
    color:#fff;text-transform: uppercase;
}

.accordion-section-title.active, .accordion-section-title:hover {
    background:#A91D21;
    /* Type */
    text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
    padding:15px;
    display:none; border:8px solid #A91D21; border-top:0px; color:#282828; background: #fff;}
	.accordion-section-content a{color:#fff;}
}