/* Reset
-----------------------------------------------------------------------------*/
/* 
The * selector selects all elements.
OR
The * selector can also select all elements inside another element (e.g. div * {}).
*/
/* Remove defaults for the following: */ 
*  { 
    margin: 0; 
    padding: 0; 
    border: 0; 
}

/* Floating
-----------------------------------------------------------------------------*/
/*
The clear property specifies on which sides of an element 
floating elements are not allowed to float.
*/
.clear { 
    clear: both; 
} 

.right { 
    float: right; 
} 

.left { 
    float: left; 
}

/* Body
-----------------------------------------------------------------------------*/
/*
font: font-style font-variant font-weight font-size/line-height font-family|caption|icon|menu|message-box|small-caption|status-bar|initial|inherit;
    font-style: normal|italic|oblique|initial|inherit;
    font-variant: normal|small-caps|initial|inherit;
    font-weight: normal|bold|bolder|lighter|number|initial|inherit;
    font-size:medium|xx-small|x-small|small|large|x-large|xx-large|smaller|larger|length|initial|inherit;
    line-height: normal|number|length|initial|inherit;
    font-family: font|initial|inherit;
The default size for ‘medium’ text in "all" modern browsers is 16px.
If desired, set font proportion to 62.5%;
This takes 16px down to 10px for ease of conversion,
i.e. 1em = 10px, 0.8em = 8px, 1.6em = 16px, etc.
*/
body { 
    font-family: Verdana, sans-serif;
    /* background: url(/images/wallpaper.png) repeat; */
    color: black;
    text-align: left; 
} 

/* Headings
-----------------------------------------------------------------------------*/
h1 { 
    font-size: 2.0em; 
    color: rgb(0,127,255);
} 

h2 { 
    font-size: 1.8em;
    color: rgb(0,127,255);
} 

h3 { 
    font-size: 1.6em;
    color: rgb(0,127,255);
} 

h4 { 
    font-size: 1.4em;
    color: rgb(0,127,255);
} 

h5 { 
    font-size: 1.2em;
    color: rgb(0,127,255);
} 

/* Paragraphs
-----------------------------------------------------------------------------*/
p { 
    font-size: 1.0em;
}


/* All Caps
-----------------------------------------------------------------------------*/
.uppercase {
    text-transform: uppercase;
}

/* Header
-----------------------------------------------------------------------------*/
.header {
    background-color: rgb(0,0,127);
    color: rgb(0,127,255);
    padding: 0.5em;
    text-align: center;
    font-size: 5.0em;
    font-weight: bold;
}

/* Side Navigation Bar
-----------------------------------------------------------------------------*/
.sidenav {
    position: relative;
    float: left;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
    width; 6em;
    background-color: rgb(0,0,127);
    color: gold;
    font-weight: bold;
}
.content {
    position: relative;
    float: right;
    display: inline-block;
    top: 0;
    bottom: 0;
    left: 0;
}

/* Footer
-----------------------------------------------------------------------------*/
.footer {
    bottom: 0;
    background-color: rgb(0,0,127);
    color: rgb(255,127,255);
    padding: 1.5em;
    text-align: center;
}

/* Alignment & Breathing Room
-----------------------------------------------------------------------------*/
.pad {
    margin: 1.0em;
}
/*
div.container {
    border: 1px solid gray;
    border-radius: 5px;
    padding: 0 25px;
}
*/

/* Buttons
-----------------------------------------------------------------------------*/
.button {
    background-color: rgb(127,0,127);
    border: none;
    border-radius: 1.0em;
    color: gold;
    padding: 1.0em 2.0em;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1.0em;
    cursor: pointer;
    -webkit-transition-duration: 0.25s; /* Safari */
    transition-duration: 0.25s;
}
.buttonshadow:hover {
    box-shadow: 0 1.0em 1.5em 0 rgba(0,0,0,0.25),0 0.5em 1.0em 0 rgba(0,0,0,0.15);
}

/* Accordion
-----------------------------------------------------------------------------*/
button.accordion {
    background-color: rgb(0,0,127);
    color: white;
    cursor: pointer;
    padding: 2.5em;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.0em;
    transition: 0.5s;
}
button.accordion.active, button.accordion:hover {
    background-color: rgb(191,191,255);
}
button.accordion:after {
    content: '\25BC';
    font-size: 1.5em;
    color: white;
    float: right;
    margin-left: .5em;
}
button.accordion.active:after {
    content: '\25B2';
}
.panel {
    padding: 0 2.5em;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    opacity: 0;
}
.panel.show {
    opacity: 1;
    max-height: 4em;
}

/* Lists  
-----------------------------------------------------------------------------*/
/* list-style-type: circle|disc|square; */
ul {
    list-style: none;
    padding:0;
    margin:0;
}

ul li { 
    padding-left: 1em; 
    text-indent: -.7em;
}

ul li:before {
    content: "•";
    color: gold;
}

ol {
    /*White numbers in purple dots*/
}

ol li {
    /*May not need to specify?*/
}

/* Tables  
-----------------------------------------------------------------------------*/ 
table {  
  border-spacing: 0; 
  border-collapse: collapse; 
} 

td { 
  text-align: left; 
  font-weight: normal; 
}

/* Search Bar [Future Use]
-----------------------------------------------------------------------------*/
/*
input.text 
  { 
  padding: 3px; 
  border: 1px solid #999999;     
}
*/

/*
input.search[type=text] {
    width: 130px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: white;
    background-image: url('http://www.w3schools.com/howto/searchicon.png');
    background-position: 10px 10px;
    background-repeat: no-repeat;
    padding: 12px 20px 12px 40px;
    -webkit-transition: width 0.4s ease-in-out;
    transition: width 0.4s ease-in-out;
}
input.search[type=text]:focus {
    width: 100%;
}
*/
