/* stylDane */
/* styl.css */
/*links */
a:link {
	color: blue;
}
a:visited {
	color: green;
}
a:hover {
	color: red;
}
.art:first-letter {
	color: red;
	font-size: large;
}
/*classes fonts */
.big {
	font-size: 1.5em;
	font-weight: bold;
}
.mid {
	font-size: 1.2em;	
}
.small {
	font-size: 0.8em;
}
/*classes colours */
.red {color: red;}
.blue {color: blue;}
.green {color: green;}
.yellow {color: yellow;} 
/*classes position */
.right {text-align: right;}
.center {text-align: center;}
.left {text-align: left;}
/* web and html elements */
#web {
	width: 990px;
	margin: 0 auto;
}
#foot {
	width: 200px;
 	height:25px;
 	border:2px solid blue;
 	margin-left:40%;
}
#foot p {
	color: red;
	text-align: center;
	font-size: 14px;
	font-weight:bold;
	margin: 3px;
}
#foot span {
	background-color: #80FFDF;
	border: 1px solid blue;
}
#mlt {
	float:left;
	width: 680px;
}
#mrt {
	float:right;
}
#mb {
	float:left;
}