/****************************
Global Style
****************************/

/*no margin or padding*/
*
{
	margin: 0;
	padding: 0;
}

/*Define the font for the whole page*/
body
{
	font-size: 100%;
	font-style: normal;
	font-family: Verdana, sans-serif;
}

/****************************
Header Style
****************************/

/*Add padding to the header*/
#header
{
	padding: 10px 20px;
}

/*all header lists have no bullets*/
#header ul
{
	list-style-type: none;
	padding: 5px 0px;
}

/*change the font/padding for the subtitle*/
#header ul.subtitle li
{
	font-size: 1.4em;
}

/****************************
Content Style
****************************/

/*sets the color of text in the content section to black*/
/*sets the width of the content section to 500px*/
#content p
{
    color: #000;
}


.content_block
{
    padding: 0px 20px;
	max-width: 750px;
}


.content_block h1
{
    padding: 10px 0px;
    font-size: 1.7em;
    clear: both;
}

.content_block ol
{
	padding: 0px 30px;
}

.content_block ul
{
	padding: 0px 30px;
}