﻿/*main*/
body {
    font-family: Verdana;
    font-size: 80%;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    color: #666666;
}

/*header of regular pages*/

/*user logged in and sign out link*/
div#login {
    position: absolute;
    top: 10px;
    right: 10px;
}

/*school logo*/
div#logo {
    position: absolute;
    top: 6px;
    left: 16px;
}

/*tabs where modules are displayed*/
div#topmenu
{
    width: 100%;
    padding-top: 92px;
/* background-image: url(images/gradbg.jpg); */
}

/*modules*/
table.topmenu {
    border-top: solid 1px #285090;
    border-bottom: solid 1px Dimgray;
    font-weight: bold;
    background-color: #e1e3f2;
}

    table.topmenu td {
        color: Black;
        padding: 2px 2px 2px 4px;
    }

        /*highlight module when hovering*/
        table.topmenu td:hover {
            color: Navy;
            background-color: Whitesmoke;
            cursor: pointer;
            border-bottom: solid 1px silver;
            border-top: solid 1px silver;
        }

        /*module currently selected*/
        table.topmenu td.moduleon {
            color: Navy;
            background-color: Whitesmoke;
            cursor: pointer;
            border-bottom: solid 1px silver;
            border-top: solid 1px silver;
            border-left: solid 1px silver;
            border-right: solid 1px silver;
        }


/*Back-end (School Portal) tabs*/
ul#nav, ul#nav li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul#nav {
    margin-left: 18px;
    width: 99%;
}

    ul#nav li {
        float: left;
        margin-right: 3px;
        text-align: center;
    }

    ul#nav a {
        float: left;
        width: 10em;
        padding: 10px 0;
        text-decoration: none;
        color: white;
        border-left: solid 1px #ccc;
        border-bottom: none;
        font-size: 10px;
    }

        ul#nav a:hover {
            text-decoration: underline;
        }

    ul#nav li.activelink a, ul#nav li.activelink a:hover {
        color: white;
        font-weight: bold;
        text-decoration: underline;
    }
    ul#nav li.activelink a:after, ul#nav li.activelink a:before {
            top: 110%;
            left: 50%;
            border: solid transparent;
            content: " ";
            height: 0;
            width: 0;
            position: absolute;
            pointer-events: none;
        }

        /*ul#nav li.activelink a::after {
            border-color: rgba(228, 226, 216, 1);
            border-top-color: rgba(203, 203, 203, 1);
            border-width: 12px;
            margin-left: -12px;
        }*/

/*front-end (Student Portal) tabs*/
ul#nav2, ul#nav2 li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul#nav2 {
    margin-left: 18px;
    width: 99%;
}

    ul#nav2 li {
        float: left;
        margin-right: 3px;
        text-align: center;
    }

    ul#nav2 a {
        float: left;
        width: 15em;
        padding: 5px 0;
        text-decoration: none;
        border: solid 1px silver;
        border-bottom: none;
    }

        ul#nav2 a:hover {
            background: #143D55;
            color: #ffffff;
        }

    ul#nav2 li.activelink a, ul#nav2 li.activelink a:hover {
        background: #143D55;
        color: #ffffff;
        font-weight: bold;
    }


/*blue bar between tabs (modules) and content*/
div#searchbar {
    float: right;
    width: 100%;
    padding-top: 6px;
    border-bottom: solid 1px silver;
    border-top: solid 1px silver;
    color: #ffffff;
    text-align: right;
    font-weight: bold;
    background-color: rgba(228, 226, 216, 1);
    height: 30px;
}

/*buttons used in the searchbar, such as Add To Favorites*/
input.btntop {
    background-color: transparent;
    border: none 1px black;
    color: Black;
    font-size: x-small;
    font-family: Verdana;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
}


/*when looking at a specific student/course/section/teacher, this div shows the object name*/
div#pagetitle {
    float: left;
    left: 0px;
    text-align: left;
    height: 18px;
    vertical-align: text-top;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 16px;
    color: black;
    font-weight: bold;
    font-size: 1.4em;
}

/*left menu of regular pages*/

#leftmenu {
    width: 15%;
    margin-top: 10px;
    float: left;
}

table.leftmenu td {
    color: Black;
    padding: 4px 4px 2px 2px;
    border-top: solid 1px Whitesmoke;
    border-bottom: solid 1px Whitesmoke;
}

    /*when hovering or when active, highlight it*/
    table.leftmenu td:hover, td.lefton {
        color: Navy;
        cursor: pointer;
        border-bottom: solid 1px silver;
        border-top: solid 1px silver;
        font-weight: bold;
    }

/*single left menu, when the options are not grouped (like in Students)*/
#singlemenu {
    width: 100%;
    border-style: solid;
    border-color: #D8D5D1;
    border-width: 1px;
    float: left;
    margin: 5px;
}

    #singlemenu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #singlemenu img {
        border: none;
    }

    #singlemenu li a {
        height: 32px;
        voice-family: "\"}\"";
        voice-family: inherit;
        height: 24px;
        text-decoration: none;
    }

        #singlemenu li a:link, #singlemenu li a:visited {
            display: block;
            padding: 4px 0 4px 14px;
        }

        #singlemenu li a:hover, #singlemenu li a.current {
            padding: 4px 0 4px 14px;
            font-weight: bold;
            text-decoration: underline;
        }

/*double left menu, when options are grouped (like once a student is selected)*/
#doublemenu {
    width: 100%;
    margin-top: 0px;
    border-style: solid;
    border-color: #D8D5D1;
    border-width: 1px;
    padding-top: 4px;
    padding-bottom: 12px;
    margin: 5px;
}

    #doublemenu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

     #doublemenu img {
        border: none;
    }

    #doublemenu li a {
        height: 32px;
        voice-family: "\"}\"";
        voice-family: inherit;
        height: 24px;
        text-decoration: none;
    }

    #doublemenu li a:link, #doublemenu li a:visited {
        display: block;
        padding: 4px 0 4px 34px;
    }

    #doublemenu li a:hover, #doublemenu li a.current {
        padding: 4px 0 4px 36px;
        font-weight: bold;
         text-decoration: underline;
    }



/*content*/
div#content {
    float: left;
    width: 82%;
    margin-top: 8px;
    margin-left: 24px;
}

/*header for the content portion, especially in the front-end portal*/
.contentheader {
    color: #143D55;
    padding-left: 10px;
    font-size: 180%;
    font-weight: bold;
    font-variant: small-caps;
}


/*footer*/
div#footer {
    text-align: center;
    margin-top: 8px;
    border-top: solid 1px silver;
    padding-top: 6px;
    margin-top: 24px;
    clear: both;
}

.footer {
    background: url(_assets/img/gd.png) repeat-x -24px;
    font-weight: bold;
    border-right: solid 1px #d9d9d9;
    border-top: solid 1px #d9d9d9;
}

/*footer used in the 2nd Master Page example*/
div#footer2 {
    text-align: right;
    margin-top: 8px;
    border-top: none 1px silver;
    padding-top: 6px;
    margin-top: 24px;
    clear: both;
    color: White;
}

/*general*/

/*regular button*/
input.btn {
    background-color: #006666;
    border: solid 1px #D8D5D1;
    color: Black;
    font-weight: bold;
    font-size: x-small;
    font-family: Verdana;
    background: url(_assets/img/blue_hd_bg.png) repeat-x;
    background: url(_assets/img/gd.png) repeat-x -24px;
    margin-bottom: 0px;
}

/*small button*/
input.btnsmall {
    background-color: #006666;
    border: solid 1px #D8D5D1;
    color: Black;
    font-weight: bold;
    font-size: x-small;
    font-family: Verdana;
    width: 60px;
    background: url(_assets/img/blue_hd_bg.png) repeat-x;
    background: url(_assets/img/gd.png) repeat-x -24px;
    height: 18px;
}

/*Button displayed as a link, i.e., no background*/
input.btnlink {
    background-color: #ffffff;
    border: none 1px black;
    color: #3688BA;
    font-size: x-small;
    font-family: Verdana;
    width: 140px;
    text-align: left;
    height: 16px;
}

input.btnlinkWithoutBackground {
    background-color: transparent;
    border: none 1px black;
    color: #3688BA;
    font-size: x-small;
    font-family: Verdana;
    text-align: center;
    height: 16px;
    cursor: pointer;
}

/*Button displayed as a link, i.e., no background with centered text*/
input.btnlinkcenter {
    text-align: center;
}

/*hyperlink*/
.hl {
    color: #3688BA;
    font-size: x-small;
    font-family: Verdana;
    width: 120px;
    text-align: left;
    height: 16px;
}

/*default controls*/
input.tb, input.dt, textarea.tb, .list, .lib {
    background-color: #ffffff;
    border: solid 1px #D8D5D1;
    color: #000000;
    font-size: x-small;
    font-family: Verdana;
    width: 180px;
    margin-bottom: 0px;
}

/*dropdown and list items*/
.dd, .lib {
    width: 184px;
    font-size: x-small;
    font-family: Verdana;
}

/*required dropdown*/
.ddreq {
    width: 184px;
    font-size: x-small;
    font-family: Verdana;
    background-color: #ffffcc;
}

/*required textbox*/
.tbreq, .tbdtreq {
    background-color: #ffffcc;
    border: solid 1px #D8D5D1;
    color: #000000;
    font-size: x-small;
    font-family: Verdana;
    width: 180px;
}

    .dd:disabled, .ddreq:disabled, .tb:disabled, .tbreq:disabled {
        background-color: lightgray !important;
    }

/*widgets in the dashboards*/
table.innerbox {
    width: 90%;
    height: 180px;
    border: solid 1px silver;
    background-image: url(images/lightgray.gif);
    background-position: top;
    background-repeat: repeat-x;
    background-color: #e3e3df;
}

/*in the academic dashboard, the graphic displays*/
table.innerinnerbox {
    border: solid 1px silver;
    background-image: url(images/lightgray.gif);
    background-position: middle;
    background-repeat: repeat-x;
    background-color: #e3e3df;
}

table.innerbox td.ib {
    padding: 4px 4px 4px 4px;
    text-align: justify;
}

/*Messages - Error, OK*/
div .errormsg {
    border: solid 1px #E79D9B;
    background-color: #FEDDD5;
    padding: 5px 5px 5px 5px;
    height: 100%;
    color: RED;
    vertical-align: middle;
    width: auto !important;
    text-align: center;
    margin-top: 10px;
}

div .okmsg {
    border: solid 1px #3C8864;
    background-color: #D7F1FF;
    padding: 5px 5px 5px 5px;
    height: 100%;
    color: #3C8864;
    vertical-align: middle;
    width: auto !important;
    text-align: center;
    margin-top: 10px;
}


/*grid*/
.grid {
    border: solid 1px silver;
}

.boxtop {
    border-top: solid 1px silver;
}

.boxbottom {
    border-bottom: solid 1px silver;
}

.boxleft {
    border-left: solid 1px silver;
}

.boxright {
    border-right: solid 1px silver;
}

.gridhdr {
    background-color: #e1e3f2;
    border: solid 1px #285090;
    font-weight: bold;
    font-family: Verdana;
    font-size: x-small;
    color: silver;
    text-align: left;
    text-decoration: none;
    background-image: url(images/comment_bg.jpg);
    background-position: top;
}

.gridhdredit {
    background-color: #c1DAD7;
    font-weight: bold;
    font-family: Verdana;
    font-size: x-small;
    color: #006699;
    text-align: center;
    text-decoration: none;
    width: 36px;
}

/*when pages have filters, this div holds all filters*/
div#choices {
    border: solid 1px #FFE9A9;
    background-color: #F7F7CF;
    padding: 5px 5px 5px 5px;
    height: 100%;
}

/*sub div holding the filters on the left side of the screen*/
div#ch1 {
    border-right: solid 1px #FFF3C2;
    width: 49%;
    padding-top: 10px;
    float: left;
    position: relative;
    height: 100%;
}

/*sub div holding the filters on the right side of the screen*/
div#ch2 {
    width: 49%;
    padding-top: 10px;
    position: relative;
    float: left;
}

/*filter button*/
div#chbt {
    width: 100%;
    clear: both;
    text-align: center;
    padding-top: 20px;
}

/*header*/
div#chh {
    width: 100%;
    margin-left: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    color: brown;
    font-size: 120%;
}

/*wizard, used in the Administration module*/
.wiz {
    background: url(images/bg_gradient_global.jpg) repeat-x;
    border: solid 1px dimgray;
    padding: 10px 10px 10px 10px;
}

.wizsidebar {
    background: url(images/bg_gradient_global.jpg) repeat-x; /*background-color: #143D55;*/
    vertical-align: top;
    width: 35%;
    border: solid 1px whitesmoke;
    padding: 10px 10px 10px 10px;
}

/*used to display information*/
.divinfo {
    border: solid 1px #D8D5D1;
    background: url(images/bg_gradient_global_light.png) repeat-x -64px;
    background-position: top;
    margin-bottom: 10px;
    padding: 0px 0px 10px 0px;
}

.divinfoinside {
    padding: 0px 10px 0px 10px;
}

.divinfoheader {
    height: 18px;
    font-weight: bold;
    color: #808080;
    font-size: 120%;
    vertical-align: middle;
    padding: 2px 0px 2px 10px;
    border-bottom: solid 1px #EAE9E9;
    margin-bottom: 10px; /*width: 200px;*/ /*background: url(images/bg_gradient_global_light.png) repeat-x;*/
    background-color: #f0f0f0;
}

.nicediv {
    color: #666666;
    background-color: #F7F7F7;
    border: solid 1px #EAE9E9;
    padding: 10px;
}

.nicedivheader {
    height: 18px;
    font-weight: bold;
    color: #666666;
    font-size: 140%;
    vertical-align: middle;
    padding: 2px 0px 2px 0px;
    border-bottom: solid 1px #EAE9E9;
    margin-bottom: 10px;
    text-align: left;
    width: 100%;
}

/*round text box, used for publicly facing pages (such as when creating account)*/
.roundedtb {
    background: url('images/bg.gif') 100% -1100px;
    width: 225px;
    display: block;
    border: 0;
    padding: 5px 5px 5px 4px;
    height: 25px;
    margin: 0px;
    float: left;
    font-size: x-small;
    font-family: Verdana;
    color: #666666;
}


.roundedspan {
    background: url('images/bg.gif') 0 -1100px;
    width: 220px;
    float: left;
    display: block;
    padding-left: 4px;
    padding-right: 10px;
    height: 25px;
    margin: 0px;
    margin-right: 20px;
}

.help {
    color: #B6BBDA;
    visibility: hidden;
}

/*modal popup*/
.modalBackground {
    background-color: Gray;
    filter: alpha(opacity=30);
    opacity: 0.3;
}

.modalPopup {
    background-color: #ffffdd;
    border-width: 3px;
    border-style: solid;
    border-color: red;
    padding: 3px;
}

.updateDiv {
    position: absolute;
    top: 0;
    left: 0;
    width: 140px;
    height: 30px;
    text-align: center;
    vertical-align: middle;
    padding-top: 5px;
    color: #666666;
    background-color: #F3F3F3;
    border: solid 1px #EAE9E9;
}

.popupdiv {
    color: #666666;
    background-color: #F7F7F7 !important;
    border: solid 1px dimgray;
    padding: 0px;
}

.popUpHeader {
    background-color: #5C88A5 !important;
    color: #ffffff;
    padding: 3px 0px 0px 5px;
    margin-bottom: 5px;
    height: 22px;
    font-weight: bold;
}

.btnPopupClose {
    position: absolute;
    right: 0;
    margin-right: 30px;
    width: auto;
    background: none;
    border: none;
    font-weight: bold;
    color: blue;
    cursor: pointer;
}

.ontopPopup {
    top: 10px !important;
}
/*jQUERY formatting*/
#controller span.jFlowSelected {
    background: #f0f0f0;
    font-weight: bold;
    border: solid 1px #EAE9E9;
    border-bottom: solid 1px #f0f0f0;
}

#controller span {
    background-color: #ffffff;
    border: solid 1px #EAE9E9;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
    padding-top: 5px;
}

.navflow {
    float: left;
    line-height: 32px;
}

.labelhdr {
    text-align: right;
    color: dimgray;
    font-weight: bold;
}

.pointer {
    cursor: pointer;
}

/*pager*/
.pager, .pager td {
    text-align: right;
    background-color: White;
    font-weight: bold;
    border: none;
}

    .pager a {
        color: Dimgray;
        font-weight: normal;
    }

/*used for the tree view*/
.RootStyle {
    font-weight: bold;
    color: #666666;
    margin-top: 10px;
    vertical-align: bottom;
}

.tree td div {
    height: 100% !important;
}

/*ratings functionality in the front-end*/
.emptystar {
    background-image: url(images/star_12_bw.png);
    width: 12px;
    height: 12px;
}

.fullstar {
    background-image: url(images/star_12.png);
    width: 12px;
    height: 11px;
}

.weakstrength {
    background-color: Red;
    color: White;
    font-weight: bold;
    padding: 2px 2px 2px 2px;
    font-style: italic;
}

.goodstrength {
    background-color: Green;
    color: White;
    font-weight: bold;
    padding: 2px 2px 2px 2px;
    font-style: italic;
}

/*used in the search textbox*/
.watermarked {
    color: Darkgray;
    border: None 1px white;
    font-style: italic;
}

.nonwatermarked {
    color: #000000;
    border: None 1px white;
}

/*images should be aligned by the middle*/
.imgmiddle {
    vertical-align: middle;
    border: none;
}

.imgc {
    vertical-align: middle;
    padding: 0px 10px 0px 0px;
    width: 24px;
}


.HeaderText {
    font-size: 1.6em;
    font-weight: bold;
    padding: 5px 5px 5px 5px;
}

.HeaderDiv {
    padding: 5px 5px 5px 5px;
}

table.frm {
    background-color: White;
    border: solid 1px black;
    min-height: 800px;
}

div#detail {
    border: solid 1px #143D55;
    background-color: #DADDF6;
    padding: 5px 5px 5px 5px;
    margin: 5px 15px 5px 5px;
    height: 100%;
    width: 90%;
}

.link {
    color: #143D55;
    font-size: 140%;
    font-weight: bold;
    font-variant: small-caps;
    text-decoration: none;
}

.reglink {
    color: #3688BA;
    font-size: x-small;
    font-family: Verdana;
    text-align: left;
    height: 16px;
}

.calendartext {
    padding-left: 5px;
}

.invisible {
    display: none;
}


/*div having one dropdown to select from*/
div#selector {
    border: solid 1px #FFE9A9;
    background-color: #F7F7CF;
    padding: 5px 5px 5px 5px;
    height: 100%;
}

div#creator {
    border: solid 1px #FFE9A9;
    background-color: #F7F7CF;
    padding: 5px 5px 5px 5px;
    height: 100%;
}

.dontshow {
    display: none;
}

/*header for div when user has to make a choice*/
.divchoiceheader {
    height: 18px;
    font-weight: bold;
    color: #143D55;
    font-size: 120%;
    vertical-align: middle;
    padding: 2px 0px 2px 10px;
    border-bottom: solid 1px #EAE9E9;
    margin-bottom: 10px; /*width: 200px;*/
}

/*TEacher Dashboard*/
div#rounded {
    border-radius: 15px;
    border: 1px solid dimgray;
    background-color: #FCE6C9;
}

div#headerright {
    float: right;
}

.showme {
    display: none;
}

.showhim:hover .showme {
    display: inline-block;
}

.studentflag {
    /*width: 125px;*/
    white-space: nowrap;
    padding: 3px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-left: 15px;
    float: left;
}
/*nice BG color (blue): 5C88A5*/
/* nice gray progression: f0f0f0 (with cecfd0 border), d9d9d9, cecece */

select[disabled] {
    background-color: rgb(235, 235, 228);
}


.logo
{
	background-image: url(images/AOA-Genius-SIS-header2017.jpg);
	height: 94px;
	background-repeat: no-repeat;
}

.logorepeat
{
	background-image: url(images/AOA-Genius-SIS-header2017_repeat.jpg);
	height: 94px;
	background-repeat: repeat;
}



.welcomelogo
{
	background-image: url(images/AOA-Genius-SIS-header2017);
	height: 56px;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 56px;
	border-bottom: solid 1px #e0e0e0;
	text-align: left;
}

.welcomelogorepeat
{
	background-image: url(images/AOA-Genius-SIS-header2017_repeat.jpg);
	height: 56px;
	background-repeat: repeat;
}


.affiliationflag {
    /*width: 125px;*/
    white-space: nowrap;
    padding: 3px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-left: 15px;
    float: left;
}