/* CSS Document */
/* CSS for Captain Mike Walston Fishing Guide Pages */

/* background-color & background-image...background-position: bottom right....background-repeat: no-repeat */
body {
	background: #003366;
	background-attachment: fixed;
	background-position: bottom left;
	background-repeat: repeat-x;
}
/* for banner and buttons at top of each page */
.banner {
	display: block;
	margin: auto;
}
/* use this for each paragraph in content */
.para {
	text-indent: 15px;
	color: #FFFFFF;
	font-size: large;
}
.label {
	color: #FFFFFF;
	font-size: xx-large;
}
/* link properties for copyright symbols */
a:link {
	color: white;
}
a:visited {
	color: white;
}
a:hover {
	color: red;
}
/* for images in tables */
.right {
	margin-left: 30px;
}
.left {
	margin-right: 30px;
}
/* to use for tables with content */
.center {
	display: block;
	margin: auto;
}
/* for lists on 'info' page */
.list {
	list-style-image: url('./images/fishmark.gif');
	font-size: medium;
	margin-left: 20px;
	color: white;
}
/* position information for copyright and design notes */
.copy {
	font-size: small;
	color: white;
}
/* used as headings for lists on 'info' page */
.h1 {
	font-size: large;
	color: white;
	text-align: center;
}
/* for use with text on 'contact' page */
.h2 {
	color: white;
	font-size: medium;
}
.floatleft {
	float: left;
	margin: 15px;
}
