﻿/**
Change the image banner.
*/
.header #image-banner
{
	background: url('/img/header3.jpg') no-repeat; /**TODO: Move this out of here to random / page specific */
}

/**
Main Item
*/
#mainItem
{
	margin-bottom: 10px;
}

#mainItem .image
{
	display: block;
	position: relative;
	width: 450px;
	height: 300px;
	float: left;
}

#mainItem .image img
{
	width: 100%;
	height: 100%;
}

#mainItem .title
{
	display: block;
	width: 498px;
	float: right;		
	padding: 4px 0px 4px 20px;
}

#mainItem .description
{
	width: 498px;
	float: right;
	padding: 10px 10px 0px 4px;
	text-align: justify;
	font-size: 0.95em;
}

/**
Each of the other items.
*/
#items li
{
	width: 300px;
	height: 250px;
	float: left;
	margin-right: 47px;
	overflow: hidden;
	cursor: pointer;
	list-style: none;	
}

#items li.lastItem
{
	margin-right: 0px;
}

#items li a
{
	display: block;
	width: 100%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
}

#items li .image
{
	display: block;
	position: absolute;	
	width: 300px;
	height: 250px;
	z-index: -1;
	background-color: White;
	float: left;
	cursor: pointer;
}

#items li .image img
{
	width: 100%;
	height: 100%;
}

#items li .title
{
	display: block;
	width: 278px;
	padding: 4px 0px 4px 20px;
	font-weight: bold;
	cursor: pointer;
}

#items li .rollover
{
	display: block; 
	/**background-color: #555555;	*/
	background-color: #4a79b5;
	height: 100%;		
	/** JS will toggle display.*/
	filter: alpha(opacity=0);
	opacity: 0.0;
	cursor: pointer;
}

#items li .description
{
	display: block;
	text-align: left;
	padding: 20px 20px;
	color: White;
	cursor: pointer;
}
