/* Just some base styles not needed for example to function */

.clear
{
	height: 0 ;
	line-height: 0 !;
	clear: both ;
	font-size: 1px ;
	margin: 0;
	padding: 0;
	float: left ;
}
	
/* Advanced CSS hover styles */
ul { overflow: hidden; padding: 3px; }
ul > li {
	position: relative;
	float: left;
	list-style: none;
	margin: 0 10px 10px 0;
	font-size: 10px;
}
ul a 							{ text-decoration: none; display: block; 
	background-color:transparent;
	border:none;

}
ul li img 						{ display: block; position: relative; z-index: -1; 	background-color:transparent;
	border:none;} /* IE8 fix, background colour appears behind img for uknown reason set negative z-index */
ul li:not([class=na]) img 		{ position: static; } /* Reset relative position, as this plays havoc with good browsers */


ul a:hover:after,
ul a:focus:after
{
	content: attr(title);
	color:#999;
	position: absolute;
	bottom: 0;
	height: 50px;
	line-height: 28px;
	text-align: center;
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px;
	width: 100%;
	background: rgb(12,12,12);
	background: rgba(12,12,12,0.7);
	background: -moz-linear-gradient(top, rgba(12,12,12,0.7), rgba(12,12,12,0.7)); /* Firefox 3.6+ */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(12,12,12,0.7)), to(rgba(12,12,12,0.7))); /* Safari */
	display: block;
}
ul a.reverse:hover:after,
ul a.reverse:focus:after { top: 0; right: 0; }

ul a.offset:hover:after,
ul a.offset:focus:after { top: 50%; margin-top: 0px; }

ul a.alternate01:hover:after,
ul a.alternate01:focus:after
{ 
	top: 0;
	width: 50%; 
	height: 100%; 
	line-height: normal; 
	text-align: left; 
	padding: 0px; 
	font-size: 12px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Change colours */
ul.highlight01 a:hover img, ul.highlight01 a:focus img {
}

ul.highlight01 a:hover:after,
ul.highlight01 a:focus:after
{
	background: rgb(30,82,140);
	background: rgba(30, 82, 140, 0.7);
	background: -moz-linear-gradient(top, rgba(30, 82, 140, 0.7), rgba(43, 117, 200, 0.7)); /* Firefox 3.6+ */
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(30, 82, 140, 0.7)), to(rgba(43, 117, 200, 0.7))); /* Safari */
	color: #000;
}
