/* set default background color and font to use*/
body{
	background-color:white;
	font-family: "Helvetica", Times New Roman;
	color: blue;
}

/* set header definitions - size, color, emphasis */
h1{
	color: white;
	font-size: 32px;
	text-align: center;
	
}

h2{
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	
}

h3{
	font-size: 14px;
	font-weight: bold;
	
}


/* set anchor definitions - base, active, visited, hover - remove underline */
a:link{
	/* plain link on page*/
	color: blue;
	text-decoration: none;
}

a:visited{
	/* user visited the link and returned*/
	color: blue;
	text-decoration: none;
}

a:hover{
	/* mouse over the link */
	color: lightblue;
	text-decoration: none;
}

a:active{
	/*link clicked on*/
	color: red;
	text-decoration: none;
	
}

/* create navigation lists*/
ul.navigate{
	list-style-type: none; /*remove bullets*/
	margin: 0;
	padding: 0;
	display:inline-block;
}

/* create horizontal navigation list & set image size*/
li.navigate{
	float: left;
}

a.navigate{
	display: block;
	width: 30px;
}

img.navigate{
	width: 25px;
	height: 25px;
	
}

/* table styling */
table, th, td{
	border: 1px white;
	border-collapse: separate;
	border-spacing: 2px 2px;
	margin-left:auto;
	margin-right:auto;
	
	
}

tr { 
	background: white
}

th, td {
	padding: 5px;
	color: black;
}

img.center
{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.header{
	padding-bottom: 3px;
	background-color: black;

}


.nopadding{
	line-height: 20%;
}


.indent2{
	padding-left: 1em;
}

.indent5{
	padding-left: 8em;
}

.indent10{
	padding-left: 15em;
}

.indentmargin{
	margin-left: 30px;
}

.textcenter{
	text-align: center;
}

.textemphasis
{
	font-style:italic;
}

.textbold
{
	font-weight:bold;
}

.textfontxsmall
{
	font-size: x-small;
}

.bottommargin
{
	margin-bottom: 20px;

}
.topmargin
{
	margin-top: 5px;
}  

.tableheader
{
	color:white;
	background-color: black;
}
.footer
{
   font-size: x-small;
   text-align: center;
   color: grey;
}

.roundedborder
{
	margin-left:30px;
	margin-right: 30px;
	margin-top: 10px;
	margin-bottom: 10px;
	border-radius: 50px;
	border: 2px solid black;
	background-color: lightgrey;
	padding: 15px;
	text-align: center;
}

#networks {
	position: fixed;
	float: left;
}

#networks img {
	height: 100px;
}
