/* http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
/* End Box Sizing */

/* http://mystrd.at/modern-clean-css-sticky-footer */
html {
    position:relative;
    min-height:100%;
}
body {
    margin:0 0 100px; /* bottom = footer height */
}

footer {
    position: absolute;
    left:0;
    bottom:0;
    height:30px;
    width:100%;
    background-color:#ccc;
    text-align:center;
    padding:5px;
}
/* End Sticky Footer */

section, header, nav {
    padding-left:25px;
    padding-top:25px;
}

nav ul {
    list-style-type:none;
    margin:0;
    padding:0;
}

nav ul li {
    display:inline;
    background-color:#eee;
    padding:5px;
    margin-right:5px;
}

.logo {
    margin-left:25px;
    margin-top:25px;
    width:100px;
}

/* Registration    */

input[type="radio"] {
  margin-right: 10px;
}

.label {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    font-size: 1.2em;
    color: black;

}

/* Style Rubric Table */
.taskpointstable {
    border: 1px solid #D6DDE6;
    width: 85%;
}

.taskpointstable td {
    border: 1px solid #D6DDE6;
    padding: 0.3em;
}
.taskpointstable th {
    border: 1px solid #828282;
    color: white;
    background-color: black;
    font-weight: bold;
    text-align: left;
    padding-left: 0.3em;
}


/*----------------------------------------------------
Flash message
-----------------------------------------------------*/
.flash_message {
    width:100%;
    text-align:center;
    padding:5px;
    position:fixed;
    top:0;
    left:0;
    background-color:yellow;
    font-weight:bold;
}
