/*custom font for text*/

/*CSS file for fontawesome - an iconfont we will be using.
This CSS file imported contains the font-face declaration. More info: http://fortawesome.github.io/Font-Awesome/ */

/* 123uncomment section if something not working ig fixed*/
/* @import url(./font-awesome.min.css);*/

/*Basic reset*/
#accordian * {/*margin: 0;*/ padding: 0;}
/*
body {
    background: #4EB889;
    font-family: Nunito, arial, verdana;
}*/
#accordian {
    background: #004050;
    width: 100%;
    margin: 100px auto 0 auto;
    color: white;
    /*Some cool shadow and glow effect*/
    box-shadow:
    0 5px 15px 1px rgba(0, 0, 0, 0.6),
    0 0 200px 1px rgba(255, 255, 255, 0.5);
}
/*heading styles*/
#accordian h3 {
    font-size: 13px;
    line-height: 34px;
    padding: 0 10px;
    cursor: pointer;
    /*fallback for browsers not supporting gradients*/
    background: #003040;
    background: linear-gradient(#003040, #002535);
}
/*heading hover effect*/
#accordian h3:hover {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
}
/*iconfont styles*/
#accordian h3 span {
    float: left;
    font-size: 16px;
    margin-right: 10px;
}
#accordian ul li h3  div{
    padding-left: 32px;
}
/*list items*/
#accordian li {
    list-style-type: none;
}
/*links*/
#accordian ul li a,
#accordian ul ul li a {
    color: white;
    text-decoration: none;
    font-size: 11px;
    line-height: 27px;
    display: block;
    padding: 0 15px;
    /*transition for smooth hover animation*/
    transition: all 0.15s;
}
/*hover effect on links*/
#accordian ul ul li a:hover {
    background: #003545;
    border-left: 5px solid lightgreen;
}
/*Lets hide the non active LIs by default*/
#accordian ul ul {
    display: none;
}
#accordian li.active ul {
    display: block;
}


/*add some effect to current item*/
#accordian ul li.active ul li.current a{
    border-left: 5px solid lightgreen;
}

#dora-header {
    line-height: 25px;
}