/*
General purpose CSS for the formatting of my Computer Programming 12 class documents

Dave Drapak
	21. December 2014 	- created
	1. July 2015		- repurposed to be my general style sheet for my website
	31. July 			- messing with margins and lists
*/

/* Load up our fonts*/
@import url(https://fonts.googleapis.com/css?family=Gentium+Basic:400italic,700,400,700italic|Open+Sans:400italic,700italic,400,700,300);
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300i,700);




/* general layout structure */
body {
    //background-color: 	#fff8e0;
	background-color:		#fcf9ed;
	font-size:				120%
}

/* font assignment  */
nav, footer, header, h1, h2, h3, h4, .question  {
    font-family:	"Open Sans", Arial, sans-serif;
	font-weight:	300;
	color:			#a5220b;
	margin-bottom:	1em;
}

strong {
    font-family:	"Open Sans", Arial, sans-serif;
	color:			#701707;
	font-weight:	normal;
}

sup strong {
	//font-weight:	bold;
	color:			#337ab7;
}

body, #homeLink, header em {
    font-family:	"Open Sans", Arial, sans-serif;
}

header {
	font-size:		3em;
}
h1 {
	font-size:		3em;
}
h2 {
	font-size:		2em;
}
h3 {
	font-size:		1.7em;
}
h4 {
	font-size:		1.3em;
}

.courseTitleClass {
	margin-top:		2em;	
}

/* indentation */
.indent {
	margin-left:	2em;
	
}

table, td, th {
	vertical-align:	top;
	padding-right:	1em;
}

/* border information */
table {
	font-family: 'Open Sans Condensed', sans-serif;			
	border-collapse: collapse;
}
tr { 
	border: 			solid;
	border-width: 		1px 0;
	border-color:		grey;
}

tr:first-child {
	border-top: 		none;
}
tr:last-child {
	border-bottom: 		none;
}

th {
	text-align:			right;
}
#departmentNameID {
	width:				10%;
}
