/**
website: KCCCS.com
development framework: ASP.NET 4.0
Theme: Default
Stylesheet: Global.css

Description: This stylesheet addresses html elements

**/

/** html elements ================================================= **/

body
{
    font-family: Arial, sans-serif;
    color: #666666;
    margin-left: auto;
    margin-right: auto;
    background-image: url('../_images/bckgrnd.jpg');
    background-repeat: repeat-x;
    background-color: #3097c4;
}

/************** header tag styles **************/
h1{
	font-family: Arial, sans-serif;
	font-size: 120%;
	font-weight: bold;
	color: #0099cc;
}

h2{
	font-family: Arial, sans-serif;
	font-size: 110%;
	color: #666666;
	font-weight: normal;
}

h3{
	font-family: Arial, sans-serif;
	font-size: 90%;
	font-weight: normal;
	color: #666666;
}

h4{
	font-family: Arial, sans-serif;
	font-size: 90%;
	font-weight: normal;
	color: #0099cc;
}

h5{
	font-family: Arial, sans-serif;
	font-size: 80%;
	font-weight: normal;
	color: #0099cc;
}

h6{
	font-family: Arial, sans-serif;
	font-size: 72%;
	font-weight: normal;
	color: #0099cc;
}

/************** paragraph tag styles **************/
p{
	font-size: 90%;
}


/******* hyperlink and anchor tag styles *******/

a:link, a:visited{
	color: #0099cc;
	text-decoration: none;
}

a:hover{
	color: #152f17;
	text-decoration: underline;
}

	
/*************** list tag styles ***************/
ol{
	font-size: 90%;
	padding-bottom: 5px;
}

ol ol{
	list-style-type: lower-alpha;
	font-size: 100%;
}

ol ol ol{
	list-style-type: lower-roman;
	font-size: 100%;
}

ul{
	list-style-type: disc;
	font-size: 90%;
	padding-bottom: 5px;
}

ul ul{
	list-style-type: circle;
	font-size: 100%;
}

ul ul ul{
	list-style-type: none;
	font-size: 100%;
}

li{
	padding-bottom: 5px;
}


