div#MainContent div p {
	/********** RESETS PREDEFINED PROPERTIES **************/
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the p tag */
	padding: 0px !IMPORTANT; /* This resets ALL the padding for the p tag */
	/********** REDEFINES PROPERTIES **************/
	margin: 0px 8px !IMPORTANT; /* This redefines the top/bottom margins to 0px and left/right to 8px */
	padding-top: 10px !IMPORTANT; /* The redefines the top padding to be 10px. Marging causes a gap between the h2 and div tag */
	padding-bottom: 10px !IMPORTANT; /* The redefines the bottom padding to be 10px. */
}


div#MainContent div h1, div#MainContent div h2, div#MainContent div h3, div#MainContent div h4, div#MainContent div h5, div#MainContent div h6 {
	padding-left: 5px !IMPORTANT; /* Indents the Headings */ 
}


div#MainContent div ul.BulletedList { /* This CSS class will create a list with disc bullets */
	padding: 0px !IMPORTANT; /* This resets ALL the padding for the ul tag */
	/********** CHANGES THE STYLE TYPE TO DISC  **************/

	list-style-type: disc !IMPORTANT;
	/********** REDEFINES PROPERTIES **************/
	margin-left: 22px !IMPORTANT;
	margin-bottom: 10px !IMPORTANT;
	margin-top: 0px;
	margin-right: 0px;
}


div#MainContent div ul.BulletedList li {
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the li tag */
	line-height: 2;
}

div#MainContent div ul.BulletedList ul {
	margin-left: 22px;
}

div#MainContent div ol { /* This CSS class will create a list with disc bullets */
/********** RESETS PREDEFINED PROPERTIES **************/
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the ul tag */
	padding: 0px !IMPORTANT; /* This resets ALL the padding for the ul tag */

/********** REDEFINES PROPERTIES **************/
	margin-left: 30px !IMPORTANT;
	margin-bottom: 10px !IMPORTANT;
}


div#MainContent div ol li {
	margin: 0px !IMPORTANT; /* This resets ALL the margins for the li tag */
	line-height: 1.5; /* The values for a line heigh do not have to be in em, px, or % */
}

/*****************************************************
***************** MainContent DIVs *******************
******************************************************
* This code created new generic boxes to be used in 
* the MainContent area. They are based on the color
* scheme A (blue and grey).
*****************************************************/

div.LargeBox1, div.LargeBox2, div.LargeBox3, div.SmallBox1, div.SmallBox2, div.SmallBox3 {
	border: 2px solid;
	border-top: none;
}

div.LargeBox1, div.LargeBox2, div.LargeBox3 { /* Large Boxes extend across the entire MainContent Area */
	margin: 0px 0px 20px 0px;
	padding: 0px;
}

div.LargeBox1 { /* Grey Box */
	border-color: #b0b0b0;
}

div.LargeBox2 { /* Blue Box */
	border-color: #5988b8;
}

div.LargeBox3 { /* Third Box (Grey for this scheme) */
	border-color: #b0b0b0;
}

div.SmallBox1, div.SmallBox2, div.SmallBox3 { /* Small Boxes extend 1/2 way across the MainContent Area */
	margin: 0px;
	padding: 0px;
	width: 310px;
}

div.SmallBox1 { /* Blue Box */
	border-color:#b0b0b0;
}

div.SmallBox2 { /* Grey Box */
	border-color:#5988b8;
}

div.SmallBox3 { /* Blue Box */
	border-color:#b0b0b0;
}

h2.LargeBox1, h2.LargeBox2, h2.LargeBox3, h2.SmallBox1, h2.SmallBox2, h2.SmallBox3 {
	background-position: bottom left;
	background-repeat: repeat-x;
	margin-top: 0px;
}

h2.LargeBox1 { /* Grey Box */
	background-image: url(http://state.tn.us/css/2008a/A/images/mc/mc_01.jpg);
	background-color: #b0b0b0;
	color: #000;
}

h2.LargeBox2 { /* Blue Box */
	background-image: url(http://state.tn.us/css/2008a/A/images/mc/mc_02.jpg);
	background-color: #b0b0b0;
	color: #FFF;
}

h2.LargeBox3 { /* Third Box - Grey */
	background-image: url(http://state.tn.us/css/2008a/A/images/mc/mc_03.jpg);
	background-color: #b0b0b0;
	color: #000;
}

h2.SmallBox1, h2.SmallBox2, h2.SmallBox3 {
	width: 304px;
	margin-top: 0px !IMPORTANT;
}

h2.SmallBox1, h2.SmallBox1 a:link, h2.SmallBox1 a:visited, h2.SmallBox1 a:hover, h2.SmallBox1 a:visited, h2.SmallBox1 a:hover {
	background-image: url(http://state.tn.us/css/2008a/A/images/mc/mc_01.jpg);
	background-color: #b0b0b0;
	color: #000;
}

h2.SmallBox2, h2.SmallBox2 a:link, h2.SmallBox2 a:visited, h2.SmallBox2 a:hover, h2.SmallBox2 a:visited, h2.SmallBox2 a:hover {
	background-image: url(http://state.tn.us/css/2008a/A/images/mc/mc_02.jpg);
	background-color: #b0b0b0;
	color: #000;
}

h2.SmallBox3, h2.SmallBox3 a:link, h2.SmallBox3 a:visited, h2.SmallBox3 a:hover, h2.SmallBox3 a:visited, h2.SmallBox3 a:hover {
	background-image: url(http://state.tn.us/css/2008a/A/images/mc/mc_03.jpg);
	background-color: #b0b0b0;
	color: #000;
}


/**************************************************************************

*******  Floats the provider form to the right of the page  **************/

.mainfloat	{
			width: 80%; height: 80%;
		}


.floatleft {	

			
			position: relative;
			margin-right: 80px;
					
		}


.floatright
		{
			float: right; 
			width: 70px;
		}




/*********************************************************************************

*******  Table Borders matching gray scheme for publications.html  **************/

th.publications {background-color: #b0b0b0; color: black; text-align: center; line-height: 2;}



/********************************************************

********************************************************/
div#MainContent div.Billboard p.HeadlineSnippet {
	padding-top: 2px !IMPORTANT;
}

div#MainContent div.Billboard span.ViewLink {
	font-size: 84.6%;
	margin-left: 15px;
}


div#MainContent div.QuickLinks ul.NewsFormat {
	margin: 0px;
	padding: 8px 0px;
}

div#MainContent ul.NewsFormat li {
	margin-bottom: 10px;
	font-size: 100%;
	list-style-type: none;
}

div#MainContent .HeadlineDate {
	margin-left: 5px;
	font-style: italic;
	font-size: 92.3%;	
}

div#MainContent div ul.NewsFormat li h3 {
	font-size: 100%;
} 

div#MainContent div ul.NewsFormat li p {
	font-size: 100%;
	padding: 3px 5px 3px 10px !IMPORTANT;
	margin: 0px !IMPORTANT;
} 

