/* top elements */
* { margin:0; 	padding: 0; }

body {
		margin:0;
		padding:0;
		border:0;			/* This removes the border around the viewport in old versions of IE */
		width:100%;
		background:#FFF;
		font-size:16px;
		line-height: 2em;
	}
	a {
		color:blue;
	}
	a:hover {
		color:#ff0000;
		text-decoration:none;
	}
	h1, h2, h3, h4, h5, h6 {
	font-size:20px;
	}
	
	


/* images */



@media screen and (max-width: 600px) {
img {
   border:0px;
max-width: 100%;
	}
	table {
		overflow-x: auto;
		display: block;
	}
td img {
   border:0px;
max-width: 100px;
	}
a img {
   border:0px;
max-width: 100%;
}

}




/**************************************
   LAYOUT 
***************************************/	


/* header */

#header { 

clear:both;
		float:left;
		width:100%;
		background:#3665ab;
}


/* sidebar */
#footer {
clear:both;
		float:left;
		width:100%;
		border-top:2px solid #FF0000;
		background:#FFF;
		font-size: 1.2em;
		line-height: 2em;

	
}


#wrap { 

		background:#3665ab;
}


#rightbar {
	padding: 0;
	margin: 0; 			
}

/* main column */
#main {
	float:left;
		position:relative;
		padding:0 0 0 0;
		overflow:hidden;
		background:#FFF;		/* page background colour */
		width:96%;			/* page width minus left and right padding */
		left:2%;			/* page left padding */
		
		font-size: 1.2em;
		line-height: 2em;

}





/* footer */
#footer2 {
clear:both;
		float:left;
		width:100%;
		border-top:2px solid #FF0000;
		background:#FFF;
		font-size: 1.2em;
		line-height: 2em;

	
}


td p {text-align:left;}

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background-color:#FF0000;
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background-color:#e74c3c;
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}