/* CSS Document */
/* This is the styling document for all content, e.g. text */
/*START: grid for normal content pages */
div.content-padding 
{ 
	padding: 18px 9px 0; 
}

#footer-padding
{
	padding: 31px 0 15px 0;
}

/* This gives a margin to text in portlets */
div.teaser
{
	margin: 5px 4px 0;
}

/* this gives a highlighted area of text like a portlet header */
div.hruler
{
	height: 1px;
	background: #999;
}

div.column
{
	
}


/* this is image padding so that text isn't attached to an image, fixes hspace not working in firefox and possibly other browsers. */
img.img-float-left
{
	float: left;
	margin: 0px 4px 0px 0px;
}

img.img-float-right
{
	float: right;
	margin: 0px 0px 0px 4px;
}

img.img-centered
{
	margin-left:auto;
	text-align:center;
	margin-right:auto;
	display: block;
}


/* this gives a break betweeen p values */
.next
{
	padding: 11px 0 0 0;
}

/*END: grid for normal content pages*/