/* GLOBALS */

*,
*:after,
*:before {
    padding: 0;
    margin: 0;
}

::selection {
    background: transparent; 
}

::-moz-selection {
    background: transparent; 
}

.wrapper-demo {
    margin: 0;
    *zoom: 1;
    font-weight: 400;
}

.wrapper-demo:after {
    clear: both;
    content: "";
    display: table;
}
.dropdown-outer {
    width: 100%;
	float: left;
    margin: 0;
    padding: 2.5em 0 0 0;
	color: rgba(58,117,156,1.00);
}
.dropdown-outer #dd {
	font-family: open-sans;
	font-weight: 400;
	font-size: 1.1em;
	letter-spacing: 0.02em;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
}
.wrapper-dropdown-5 {
    /* Size & position */
    position: relative;
    width: 75%;
    margin: 0;
    padding: .75em .9em;

    /* Styles */
    background: #fff;
    border: 1px solid rgba(58, 117, 156,1.00);
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.wrapper-dropdown-5:after { /* Little arrow */
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: rgb(58, 117, 156) transparent;
}

.wrapper-dropdown-5 .dropdown {
    /* Size & position */
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;

    /* Styles */
    background: #fff;
    border: 1px solid rgba(58, 117, 156,1.00);
    border-top: none;
    border-bottom: none;
    list-style: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

    /* Hiding */
    max-height: 0;
    overflow: hidden;
}

.wrapper-dropdown-5 .dropdown li {
    padding: 0 10px ;
}

.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: rgba(58, 117, 156,1.00);
    padding: 10px 0;
    transition: all 0.3s ease-out;
    border-bottom: 1px solid rgba(230,230,230,1.0);
}

.wrapper-dropdown-5 .dropdown li:last-of-type a {
    border: none;
}

/* Hover state */

.wrapper-dropdown-5 .dropdown li:hover a {
    color: rgba(0,0,0,1.0);
}

/* Active state */

.wrapper-dropdown-5.active {
    
    background: rgba(78,131,166,1.00);
    box-shadow: none;
    border-bottom: none;
    color: rgb(255,255,255);
}

.wrapper-dropdown-5.active:after {
    border-color: rgb(255,255,255) transparent;
	border-width: 0 6px 6px 6px;
}

.wrapper-dropdown-5.active .dropdown {
    border-bottom: 1px solid rgba(58,117,156,1.0);
    max-height: 50em;
}
@media (min-width: 950px){
}
@media (min-width: 875px) and (max-width: 949px){
.dropdown-outer #dd {
	font-size: 1.0em;
}
.dropdown-outer {
    padding: 2.0em 0 0 0;
}
}
@media (min-width: 810px) and (max-width: 874px){
.dropdown-outer #dd {
	font-size: 0.95em;
}
.dropdown-outer {
    padding: 1.8em 0 0 0;
}
}
@media (min-width: 768px) and (max-width: 809px){
.dropdown-outer #dd {
	font-size: 0.9em;
}
.dropdown-outer {
    padding: 1.6em 0 0 0;
}
}
@media (max-width: 767px){
.dropdown-outer {
	display: none;
}
}