/* Styles that affect the Irwin Tile */

/* Forces mozilla firefox to measure the content border to border, (therefore nullifying inconsistancies between IE's and Firefox's interpretation of the CSS2 box model)
rarther than measuring the content area. making the total width 120px, (118px width of div plus border of 1px either side, and putting the padding on the INSIDE, rarther
than firefox's way of measuring the width as the content area. For example 4px padding, 1px border, 118px content area, 1px border,  4px padding from left to right.)*/

div{-moz-box-sizing:border-box;box-sizing:border-box;}

/*---------------------------------*/

#irwin_container{
	width: 120px; 
	background-color: #b4cad5;
	border: 1px solid #000;
	font-family: verdana;
	font-size: 11px;
	font-color: #000;
	padding: 4px; 
	margin-bottom: 5px;
	}
#irwin_container h1{font-size: 11px; padding: 0px; margin: 0px; border-bottom: 1px dashed #000; padding-bottom: 5px; text-align:center;}
#irwin_container p{padding: 0px; margin:5px 0px 5px 0px; text-align:left; color: #000; line-height:15px;}
#irwin_container p a{text-decoration: none; color: #2c5972; font-weight: bold;}