/* Revison of Kevin Hunters original css sheet*/

html, body {
	width: 98% !important; /*Use ALMOST all the width, using all the width allows some things to trail slightly off the screen, most annoying */
}

/* Body specifications */

body {
	margin: 0;
	padding: 0;
	font-family: Geneva, Helvetica, sans-serif;
	position: relative; /*options: absolute, fixed, relative */
	background-color: rgb(100%, 100%, 100%); /* white */
	color: rgb(0%, 0%, 0%);         /* text color: black */
}


/* general anchor text descriptions */

a {
	display: inline;
	text-decoration: none;      /* Take away the underline */
	background-color: transparent;
}

a:link {
	color: rgb(48%, 0%, 0%);  /* Mainly red color */
	font-weight: bold;
}

a:visited {
	color: rgb(65%, 60%, 60%);
	font-weight: bold;
}

a:hover { /* when the mouse is over a hyperlink */
	background-color: rgb(48%, 0%, 0%);  /*Set BG color to dark red*/
	color: rgb(100%, 100%, 100%);        /*Set text color to white*/
}

div.prereqs a:hover { /* This is to fix the hovering problem for non-links */
    background-color: transparent;
    color: rgb(0%,0%,0%);
}

img {
	border: 0px;
	position: relative;
}

.center {
        text-align: center;
 }

div.mainheader {
	margin-top: 1em;           /* margin is the space "outside" of the space for the content of this division */
	margin-right: 1em;
	margin-bottom: 2px;
	margin-left: 1em;
	padding-top: 0;           /* Padding is the space "inside" of the space for the content of this class of division */
	padding-right: 0;
	padding-bottom: 1em;
	padding-left: 0;
	border-top: 0;            /* border is the design or line between margin and padding */
	border-right: 0;
	border-bottom: 4px solid; /* px means pixel; solid creates a solid border, as opposed to a 'dotted', 'double', or some other type of border */
	border-left: 0;
	border-color: rgb(48%, 0%, 0%);  /* Now that the border is defined, make it a dark, mainly red color */
}

div.mainheader { /* Begin to define the layout of a sitemast division */
	background-color: rgb(100%, 100%, 100%);    /* white */
}

div.mainheader img {
	display: inline;
}

div.mainheader h1 { /* Define how an <h1> tag that is used inside of sitemast instance of a division is treated */
	margin: 0px;
	padding-top: 1em;
	padding-right: 0.5em;
	padding-bottom: 0;
	padding-left: 1em;
	font-family: Helvetica, sans-serif;
	font-size: 1.8em;
	font-weight: bold;
	line-height: 1em;
	letter-spacing: 0em;
	border: 0px;
	color: rgb(48%, 0%, 0%);
	background-color: transparent;
	text-align: right;
	width: 100%;
}

div.content { /* Create the area for the the content class */
	position: relative;
	background: rgb(100%, 100%, 100%);
	padding-left: 3%;
}


div.content h3, div.content h5, div.content h6 { /* Define <h2> thru <h6> for the content class */
	line-height: 1em;
	margin-top: 1em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	border-bottom: 1px dotted;
}

div.prereqs h3 { /*Define h3 for the prereqs page */
    border-bottom: 0px;
}

div.content h2, div.content h4 {
	line-height: 1em;
	margin-top: 1em;
	color: rgb(200, 0, 0);
}

div. content img {
float: right
}

div.bio {
	float: left;
	position: relative;
	margin-bottom: 1em;
}

div.stuff {
	margin-left: 1em;
}
 div.pic {
	float: left;
        padding-left: 1em;
        padding-right: 1em;
}

div.content p {
	margin-left: 0;
	margin-right: 3%;
	text-indent: 0.15in;
}

div.indent {
	padding-left: 3em;
}


div.content ul {
	list-style-type: disc;
}

div.indent {
	margin-left: 20px;
}

div.content table.main {
    border: 0px solid black;
}

div.content td {
    border: 1px solid black;
}

div.content td.top {
    border-top: 0px;
}

div.content td.left {
    border-left: 0px;
}

div.content td.right {
    border-right: 0px;
}

div.content td.bottom {
    border-bottom: 0px;
}

.content div.links{
    text-align: center; /* pushes links and title to center */
    margin-bottom: 4px;
}
