/**
 * sv.img-box.css
 * defines styles for image boxes throughout the site.
 * 
 * This file could be appended to main.css in case of performance issues
 */

.img-box {
	font-size: 11px;
	line-height: 18px;
	position: relative;
}

/* image box placement */
.img-box-float-left {
	float: left;
}
.img-box-float-right {
	float: right;
}
.img-box-clear-left {
	clear: left;
}
.img-box-clear-right {
	clear: right;
}
.img-box-clear-both {
	clear: both;
}

/* general content style */
.img-box .img-box-title {
	font-size: 18px;
	color: #666;
	font-weight: normal;
	padding: 0;
	margin: 0;
}

.img-box .img-box-content {
	padding: 0;
	margin: 0;
}

.img-box .img-box-more {
	font-weight: bold;
	color: #5B87C4;
	padding: 0;
	margin: 0;
}

/* centered image */
.img-box-center {
	width: 175px;
	padding: 20px 0 0;
	background: transparent url(../images/img-box-center-bg-top.png) scroll no-repeat 0 0;
}

.img-box-center .img-box-title, .img-box-center .img-box-content {
	padding: 0 14px; /* background image contains 2px outer space */
}

.img-box-center img {
	position: absolute;
	top: 11px;
	left: 14px;
}

.img-box-center .clear {
	height: 20px;
	padding: 0;
	margin: 0 0 -20px;
	background: transparent url(../images/img-box-center-bg-bot.png) scroll no-repeat 0 bottom;
}

/* left and right images */
.img-box-right, .img-box-left {
	width: 231px;
	padding: 9px 12px;
}

.img-box-right .img-box-title, .img-box-left .img-box-title {
	margin: 0 0 9px;
	color: #666;
}
.img-box-right .img-box-more, .img-box-left .img-box-more {
	color: #5B87C4;
}

.img-box-right img {
	float: right;
	padding: 0 0 0 9px;
	margin: 0 -4px 0 0;
}

.img-box-left img {
	float: left;
	padding: 0 8px 0 0;
	margin: 0 0 0 -3px;
}

/* behind image boxes */
.img-box-behind {
	width: 207px;
	height: 253px;
	margin: 0;
	padding: 61px 19px 0 14px;
	background: transparent url(../images/img-box-behind-default.png) scroll no-repeat 0 0;
}

.img-box-behind .img-box-title {
	width: 183px;
	margin: 0;
	padding: 9px 12px 0;
	background: transparent url(../images/img-box-behind-bg-top.png) scroll no-repeat 0 0;
	color: #666;
}

.img-box-behind .img-box-content {
	width: 183px;
	margin: 0;
	padding: 0 12px 9px;
	background: transparent url(../images/img-box-behind-bg-bot.png) scroll no-repeat 0 bottom;
}

.img-box-behind .img-box-more {
	font-weight: bold;
	color: #5B87C4;
}

