/*Colors
red: #F44336 500 dominant theme
black: #000000
    700 status bar red: #D32F2F gray: #616161
    300 secondary info red: #E57373
    A for accent yellow: #FFFF00
    App bar

    red: red   -> 
Crimson darker: #710000 - dominant
red: rgb (153 0 0)#990000
beige: rgb (255 227 210)#FFE3D2
white gray: rgb (238 238 238)#EEEEEE
gray: rgb (82 82 82) #525252
yellow: rgb (255, 194, 14)#FFC20E
orange: (0 100 100) ED1C24
*/

/*Global links*/
a:link,
a:visited {
    text-decoration: none;
    color: #710000;
}

a:hover {
    color: #000;
}

body {
    background-color: white;
}

body, p {
    font-family: Verdana, Arial, sans-serif;
    font-size: 11px;
}

h2 {
    font-size: 17px;
    text-align: center;
    text-shadow: 0 1px 1px #710000;
}

h3 {
    font-size: 14px;
}

h4 {
    font-size: 12px;
}

h5 {
    font-size: 11px;
    margin-left: 25px;
}

ul {
    list-style-type: square;
}
/*table, td, th{
       border: solid .6px black;
       padding-left: 5px;
	}
table td{
       background-color: #ffffff;
       width: 33%;
       border-collapse: separate;
  }
table th{
       background-color: #EEEEEE;

  }
table{
       width: 600px;
       padding: 1px;
       margin: auto;
       background-color: red;
       border-collapse: separate;
	}
table caption{
    margin-bottom: 5px;
}*/

/*Header*/
.headerInner {
    width: 960px;
    height: 79px;
}

.headerImage {
    padding: 0px 50px 60px 10px;
}

/*Navigation*/
/*nav - whole nav bar (nav)*/
.navWrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #710000;
    height: 20px;
}
/*nav - buttons*/
.navButton:hover {
    background-color: black;
}

.navButton {
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: relative;
}

.navButton a{
    color: #EEEEEE; /*white*/
    font-weight: bold;
}
.navButton a:hover{
    color: #FFFF00;/*yellow*/
}
/*nav - text in buttons*/
.navContent {
    width: 100%;
}
/*Dropdown for nav*/
.dropdown {
    position: absolute;
    left: 0;
    top: 20px;
    height: 100px;
    width: 100%;
    display: none;
    box-sizing: border-box;
    border: solid thin gray;
}
.dropdown a{
     color: black;
}

.dDContent {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.dropdownButton {
    height: 15px;
    width: 100%;
}

    .dropdownButton:hover {
        background-color: #000000;
    }

.navButton:hover > .dropdown {
    display: block;
    background-color: #EEEEEE;
    height: auto;
}


/*aside is the box for news*/
asidetop {
    float: left;
    border: outset thin #710000;
    padding: 5px 5px 5px 5px;
    margin: 1px 20px 5px 5px;
    background-color: rgba(255, 194, 14, .05);
}

aside {
    width: 250px;
    float: right;
    border: outset thin #710000;
    padding: 5px 5px 5px 5px;
    margin: 1px 7px 0 10px;
}

    aside p,
    time {
        font-size: 11px;
    }

.news {
    color: #710000;
    font-weight: bold;
    text-align: center;
}

/*CLASSES and IDS*/
.orangeb {
    color: #ED1C24;
    font-weight: bold;
}

.NopicMentor {
    clear: both;
    padding: 0px 0px 0px 0px;
    margin: 0px 0px 0px 0px;
}

/* For media*/
.achecker {
    text-align: center;
    padding-top: 5px;
}

.media {
    padding: 3px;
    margin: 5px;
    border: outset thin #710000;
}

/*images*/
.pictures {
    padding: 3px;
    margin: 5px;
    border: outset thin #710000;
}

.picWrap {
    border: 1px black;
    float: left;
    margin: 0 20px 0 0;
}

.picCentered {
    border: outset thin #710000;
    padding: 3px;
    margin: 5px auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.picMentor {
    padding: 5px 0px;
    clear: both;
}

figure {
    /*text-align: center;*/
}

figcaption {
    font-style: italic;
}

.figcaptioncentered {
    font-style: italic;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

hr {
    border: dotted thin #710000;
    justify-content: center;
}

/*IDs*/
/*bottom - links in the bottom, above footer*/
#bottom ul li {
    list-style-type: none;
    font-size: 10px;
    display: inline;
    color: #710000;
}

#bottom {
    text-align: center;
    padding-bottom: 0;
}

#clearboth {
    clear: both;
}

#members li {
    list-style-type: none;
}

#redTitle {
    color: #710000;
}

#content {
    padding-left: 10px;
    padding-right: 10px;
}

#page {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.wrapper {
    width: 960px;
    min-height: 100%;
    background-color: white;
    padding: 5px 15px 0 15px;
}

/*footer*/
footer {
    text-align: center;
    font-style: italic;
    background-color: #710000;
    color: white;
    height: 15px;
}

    footer p {
        font-size: 10px;
    }
