﻿.signintext {
    /* Styles */
    
    width: 80%;
    height: 30px;
    background-color: #4F81BE;
    border-radius: 7px;
    border: 2px solid #46679A;
    box-shadow: 0 2px 2px rgba(180,180,180,0.1);
    cursor: pointer;
    outline: none;

    /* Font settings */
    font-weight: bold;
    
    
    -webkit-transition: all 1s ease-in;
    -moz-transition: all 1s ease-in;
    -ms-transition: all 1s ease-in;
    -o-transition: all 1s ease-in;
    transition: all 1s ease-in;
}
.signintext a {
    color: rgba(255, 255, 255, 0.7);
}
.signintext :hover {
    color: rgba(255, 255, 255, 1);
}

.signuptext 
{
    margin-top: 10px;
    width: 80%;
    
    /* Font settings */
    font-weight: bold;
    color: white;
}

.wrapper-dropdown-3 {
    /* Size and position */
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding-left: 10px;
	padding-right: 35px;
    

    /* Styles */
    cursor: pointer;
    outline: none;

    /* Font settings */
    font-weight: bold;
    color: #8AA8BD;
    font-size: 14px;
}

.wrapper-dropdown-3:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -3px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #8aa8bd transparent;
}

.wrapper-dropdown-3 .dropdow
{
    font-size: 14px;
    z-index: 9999;
	width: 240px;
  /* Size & position */
    position: absolute;
    top: 90%;
    right: -1px;

    /* Styles */
    background: white;
    border-radius: inherit;
    border: 1px solid rgba(0,0,0,0.17);
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    font-weight: normal;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    list-style: none;

    /* Hiding */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.wrapper-dropdown-3 .dropdow:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 15px;
    border-width: 0 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent;    
}

.wrapper-dropdown-3 .dropdow:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    bottom: 100%;
    right: 13px;
    border-width: 0 8px 8px 8px;
    border-style: solid;
    border-color: rgba(0,0,0,0.1) transparent;    
}

.wrapper-dropdown-3 .dropdow li a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #8aa8bd;
    border-bottom: 1px solid #e6e8ea;
    box-shadow: inset 0 1px 0 rgba(255,255,255,1);
    -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;
    text-align: left;
}

.wrapper-dropdown-3 .dropdow li{
    line-height: 14px;
}


/* Hover state */
.wrapper-dropdown-3 .dropdow li:hover a {
    background: #E9EEEE;
}

/* Active state */

.wrapper-dropdown-3.active .dropdow 
{
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.wrapper-dropdown-3 .selector{
    cursor: pointer;
}

#DivMemberSetting ul {
    width: 160px;
}

/* No CSS3 support */

.no-opacity       .wrapper-dropdown-3 .dropdow,
.no-pointerevents .wrapper-dropdown-3 .dropdow {
    display: none;
    opacity: 1; /* If opacity support but no pointer-events support */
    pointer-events: auto; /* If pointer-events support but no pointer-events support */
}

.no-opacity       .wrapper-dropdown-3.active .dropdow,
.no-pointerevents .wrapper-dropdown-3.active .dropdow {
    display: block;
}

