/* CSS Document */

/**************************************************************************************************/
/*                                        TEXT STYLE CSS                                          */
/*                                   Written by Mohamed Issa                                      */
/**************************************************************************************************/

/*custom "class" style definition*/
body{
	font-family: Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #000000;
}

p, li{
	font-size: 14px;
	color:#000000;
	margin: 0;
}

h1{
	font-size: 18px;
	font-weight: strong;
	margin: 0;
}

h2{
	font-size: 14px;
	font-weight: strong;
	margin: 0;
}

h3{
	font-size: 12px;
	font-weight: strong;
	margin: 0;
}

.copyright {
	color:#666666;
	font-size: 10px;
	font-weight: strong;
	
}

/*Selector styles for text links*/

/*style when link is idle*/
a:link{
	color:#0066CC;
	text-decoration: none;
}

/*style when link is clicked*/
a:active{
}

/*style when link is visited*/
a:visited{
	color:#0066CC;
	text-decoration: none;
}

/*style when link is rolled over*/
/*Careful! ensure hover style is declared LAST! or it wont work*/
a:hover{
	text-decoration: underline;
}
