﻿form {
    width: 100%;
    margin: 30px auto;
}

textarea,
select,
input,
button {
    outline: none;
}

.search {
    padding: 10px 15px;
    border: 2px solid #3892e0;
    width: 83%;
    -ms-border-radius: 7px 0 0 7px;
    border-radius: 7px 0 0 7px;
}
::-webkit-input-placeholder {
    font-style: italic;
}
:-moz-placeholder {
    font-style: italic;  
}
::-moz-placeholder {
    font-style: italic;  
}
:-ms-input-placeholder {  
    font-style: italic; 
}
.searchButton {
    width: 16%;
    position: relative;
    padding: 9px 15px;
    left: -8px;
    border: 2px solid #3892e0;
    background-color: #3892e0;
    color: #fafafa;
    border-radius: 0 7px 7px 0;
    font-size: 16px;
}

    .button:hover {
        border: 2px solid #207cca;
        background-color: #207cca;
    }


.programs-filter-categories {
    margin-left: 10px;
}

.programs-filter-options {
    margin-left: 20px;
}

    .programs-filter-options li input[type="checkbox"] {
        margin-right: 5px;
    }

.programs-filter-categories li {
    list-style: none;
}

.programs-filter-categories .accordion-checkbox {
    display: none;
}

.programs-filter-categories li > .programs-filter-options li {
    height: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height .2s ease-in-out;
    -moz-transition: max-height .2s ease-in-out;
    -o-transition: max-height .2s ease-in-out;
    -ms-transition: max-height .2s ease-in-out;
    transition: max-height .2s ease-in-out;
    padding-right: 5px;
}

.programs-filter-categories .accordion-checkbox:checked ~ .programs-filter-options li {
    height: auto;
    max-height: 42px;
    padding: 3px;
}

.program-item {
    border: 1px solid #bce8f1;
    padding: 3px 14px 7px 14px;
    margin: 7px 0;
    border-radius: 4px;
}

    .program-item:hover {
        background-color: #d9edf7;
    }

.panel-heading {
    padding: 15px 20px;
}

.term-selection {
    margin: 7px 0;
    display: none;
}

.programs-paging {
    padding: 10px;
}
.programFilter { }
.showPassword{}
.emailLinks {
    border-radius: 7px;
    margin: 2px 5px;
    width: 50px;
}
.email-ul a:hover {
    text-decoration: none;
    font-weight:bold;
}
.email-ul #gmailLink:hover {
    color: #db3629;
}
.email-ul #yahooLink:hover {
    color: #5A0F8E;
}
.email-ul #liveLink:hover {
    color: #009fc8;
}
/*Radio*/
/* The container */
.radio-container {
    display: inline-block;
    position: relative;
    padding-left: 24px;
    padding-right: 12px;
    cursor: pointer;
    /*font-size: 22px;*/
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 5px;
}

/* Hide the browser's default radio button */
.radio-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #FFF;
    border-radius: 50%;
    border: 2px solid #2196F3;
    margin-top: 1px;
}

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
    background-color: #FFF;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
   top: 3px;
   left: 3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2196F3;
}
@media (max-width: 500px) {
    .container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
}
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css");

.filter-title > a:before {
    float: left !important;
    font-family: FontAwesome;
    content: "\f068";
    padding-right: 5px;
}

.filter-title > a.collapsed:before {
    float: left !important;
    content: "\f067";
}
.filter-title > a:hover,
.filter-title > a:active,
.filter-title > a:focus {
    text-decoration: none;
}