/* iflfstyles.css - style sheet for Iron Fist, Lead Foot site */
/* all styles should be contained here */


/* print styles */
	@media print { 
		* {	/* universal selector applies to ALL elements */
			color: black;
		}
		body { 
		  background-color: white;
		}
		/* for page section header tables */
		table.header-pagesect {
			border: 1px solid #666666;
		}
	}

/* default styles for standard elements */
	* {	/* universal selector applies to ALL elements */
		font-family: Verdana, Arial, Helvetica, sans-serif;
	}
/* body fonts specs are for things like links text in left panel */	
	body {
		margin: 0px;
		background-color: #ffffff;
		font-size: 11px;
		background-image: url(../images/general/fadesvt.jpg);
                link: #3300ff;
	}
/* p, span, div fonts specs are for things like text within P tages - you can not set font color here */
	p, span, div {
		font-size: 13px;
	}
	/* link pseudoclasses must be declared in this order: link, visited, hover, active */
	a, a:link {
		color: #3300ff;
	}
	a:visited {
		color: #00008b;
	}
	a:hover, a:active {
		color: #ff0000;
	}
	table { /* all tables default to stretch to fill their container */
		width: 90%;
		margin: 15px;
		border-width: 5px;
		border-color: white;
		border-collapse: collapse;

	}
	
	table td {
		font-size: 11px;

	}

	table td img {
		margin: 15px;
	}

	img {
		border: 0px;
	}
	input, select {
		font-size: 11px;
		font-weight: normal;
		vertical-align: middle;
		border: #999999 1px solid;
	}
	button, textarea {
		font-size: 11px;
		font-weight: normal;
		border: #999999 1px solid;
	}





