html {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
body {
	padding: 0;
	margin: 0;
	width: 100%;
	height: 100%;
	font-family: "Lucida Grande", Helvetica, Sans-serif;
}

body img.background {
	position: absolute;
	top:0;
	left:0;
}

a {
	color: #FFF;
}

#main {
	position: relative;
	overflow: auto;
	width: 100%;
	height: 100%;
}

div.post {
	position: relative;
	width: 300px;
	height: 300px;
	float: left;
}

div.post img.postedimg {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
/*
div.post a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-decoration: none;
}
*/

div.post span {
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: center;
	text-decoration: none;
	margin-bottom: 36px;
}

div.post span b {
	color: #FFF;
	line-height: 16px;
	font-size: 12px;
	font-weight: normal;
}

div.post div.footer {
	position: absolute;
	bottom: 4px;
	left: 29px;
	font-size: 10px;
	font-family: Tahoma, Helvetica, Sans-serif;
	text-align: right;
	color: #FFF;
	font-weight: bold;
	line-height: 19px;
	height: 26px;
	overflow: hidden;
}

div.post div.footer a {
	color: #FFF;
	text-decoration: none;
}

div.post div.footer a:hover {
	text-decoration: underline;
}

div.post div.footer img {
	width: 20px;
	height: 20px;
	vertical-align: middle;
	border: 0;
}

div.bg {
	width: 100%;
	height: 100%;
	
	  /* for IE */
  filter:alpha(opacity=90);
  /* CSS3 standard */
  opacity:0.9;
}

div.color0 div.bg {
	background-color: #007236;
}

div.color1 div.bg {
	background-color: #005825;
}
div.color2 div.bg {
	background-color: #00a650;
}
div.color3 div.bg {
	background-color: #00421c;
}

div.comingsoon {
	position: absolute;
	font-weight: bold;
	color: #FFF;
	font-size: 24px;
	letter-spacing: -2px;
	text-align: center;
}


/* Bubble with a border rather than solid colour
------------------------------------------ */

.triangle-right {
	position:relative;
	padding: 8px;
	margin: 0 8px 32px;
	color:#fff;
	background:#007236; /* default background for browsers without gradient support */
	
	/* css3 */
	-moz-border-radius:10px;
	-webkit-border-radius:10px;
	border-radius:10px;
	
	/* NOTE: webkit gradient implementation is not as per spec */
	background:-webkit-gradient(linear, left top, left bottom, from(#00a650), to(#007236));
	background:-moz-linear-gradient(top, #00a650, #007236);
	background:-o-linear-gradient(top, #00a650, #007236);
	background:linear-gradient(top, #00a650, #007236);
}

/* creates triangle */
.triangle-right:after {
	content:"\00a0";
	display:block; /* reduce the damage in FF3.0 */
	position:absolute;
	bottom:-40px; /* value = - border-top-width - border-bottom-width */
	left: 10px; /* controls horizontal position */
	width:0;
	height:0;
	border-width:20px 0 20px 20px; /* vary these values to change the angle of the vertex */
	border-style:solid;
	border-color:#007236 transparent transparent; 
}
