@charset "utf-8";
/* CSS Document */


/* Generic Links with Hover Color */
a:link {color: #353500;}    /* unvisited link */
a:visited {color: #353500;} /* visited link */
a:hover {color: gray;}   /* mouse over link */
a:active {color: gray;}  /* selected link */



@media screen and (max-device-width : 320px)
{
  textChange
  {
    font:30px;
  }
}
@media screen and (max-device-width : 1204px)
{
  textChange
  {
    font:18px;
  }
} 

.Shadow {
	box-shadow: 6px 6px 6px 6px grey;
}

/* Text for the Body */
div {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-style: normal;
	line-height:125%;
	color: #353500;
}

/* Text for the Header */
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 34px;
	font-style: normal;
	color: #FFFFFF;
	text-shadow: #000 2px 2px 3px;    
	padding-bottom: 2px; /* stops the "shadow" being chopped in IE */
	margin-left:20px;
}

/* Text for the Titles */
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 24px;
	font-style: normal;
	color: #353500;
}

/* Text for the Sub-Titles */
h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	color: #353500;
}

/* Text for the Footer */
.footertx {
	font-family: Verdana, Arial, Helvetica, sans-serif;;
	font-size: 12px;
	font-style: normal;
	color: #84888b;
	text-align:center;
	padding-top:20px;
}

/* Center Class for HTML Tables */
table {  margin-left: auto; margin-right: auto;  }
div.centered  {     text-align: center; } div.centered table  {     margin: 0 auto;      text-align: left; } 