/**********************************************************************
*  Programmer:  Ryan Huelsmann
*  Date:        9-22-2011
*  Exercise:    stylesheet for other pages for project
*  File:        content.css
*  Location:    root/styles
***********************************************************************/
/* Format the specific styles for the elements of a certain page */
p {
    margin: 0;
    padding-bottom: .5em;
}
h2 {
    padding-bottom: .25em;
	margin-left: 0;
}
ul { margin-left: 1em; }
/* Format the styles for the sidebar division */
#sidebar2 {
	width: 175px;
	margin: 0;
	float: left;
}
#sidebar2 ul{
	margin: 0;
	padding-left: 1em;
}
#sidebar2 li{
	margin: 0;
	padding-left: .25em;
	padding-bottom: .25em;
}
#sidebar2 p{
	margin-top: 2em;
	margin-bottom: .25em;
	margin-left: 0;
}
#main2 {
	margin-left: 180px;
}
#main2 ul{
	margin-left: 0;
}
ul.circle { list-style-type: circle; }
table{
	border: 1px solid black;
	border-collapse: collapse;
}
th { background-color: #40e0d0}
td, th{
	border: 1px solid black;
	padding: .2em .7em;
	text-align: left;
}
.left { text-align: left;}
.aqua { background-color: #afeeee; }
label{
	width: 5em;
	text-align: right;
}
#data input {
	margin-left: 1em;
	margin-bottom: .5em;
}
#buttons{
	padding-top: .5em;
	margin-left: .6em;
}
/* Format the specific styles for certain ids */
#id_name { 
text-align: right; 
}
/* Format the specific styles for certain classes */
.class_name {
    text-indent: 2em;
}