/**
 * CSS CODING CONVENTION:
 * Multiple words are separated by a "-"
 * Do not specify tags with classes, always do ".cls1" never "div.cls1"
 * If possible, don't use a class at all and use pure markup
 * Unless absolutly necessary, don't specify width or height
 * Grid base is 16px when spacing things, if at all possible use multiples of 16 (4, 8, 16, 32)
 * Use meaningful names for classes and id's ".next" instead of ".right" ect.
 */
html {
	background-color: #1a405d;
	background-image: url(resource/body-bg.png);
	background-repeat: repeat-x;
}
body {
	background-image: url(resource/foot-bg.png);
	background-repeat: repeat-x;
	background-position: bottom left;
	color: #6592A2;
}
#browser-warning {
	display: none;
}
a {
	color: #2c5075;
}
a:hover {
	color: #35608c;
}
input, select, textarea {
	padding: 4px;
}
strong {
	font-weight: bold;
}
#hd {
	margin-top: 99px;
	position: relative;
}
	#hd .logo {
		display: block;
		position: absolute;
		margin-top: 22px;
		top: -110px;
		left: -15px;
		outline: none;
	}
		#hd .logo .text {
			position: absolute;
			top: 47px;
			left: 113px;
		}
	#hd .search {
		position: absolute;
		left: 717px;
		top: -69px;
		width: 229px;
		z-index: 10;
		padding-right: 3px;
		background-position: 0 -78px;
		background-image: url(resource/search-bg-sprite.png);
	}
		#hd .search .left-bar {
			float: left;
			width: 4px;
			height: 39px;
			background-position: 0 -39px;
			background-image: url(resource/search-bg-sprite.png);
		}
		#hd .search .right-bar {
			padding: 6px;
			float: right;
			height: 27px;
			background-image: url(resource/search-bg-sprite.png);
		}
		#hd .search input[type="submit"] {
			margin-top: 0px;
			height: 26px;
			width: 56px;
			padding: 0px;
			border: 0px;
			cursor: pointer;
			background-image: url(resource/search-sprite.png);
		}
		#hd .search input[type="submit"]:hover {
			background-position: 0 -26px;	
		}
	#hd .nav {
		border-color: #01406d;
		border-style: solid;
		height: 46px;
		border-width: 1px 1px 0 1px;
		background-image: url(resource/nav-sprite.png);
	}
		#hd .nav .right-corner {
			margin: -1px -1px 0 0;
			width: 5px;
			height: 4px;
			background-image: url(resource/nav-corners.gif);
			background-position: -5px 0;
		}
		#hd .nav .left-corner {
			margin: -1px 0 0 -1px;
			width: 5px;
			height: 4px;
			background-image: url(resource/nav-corners.gif);
		}
		#hd .nav ul {
			margin-left: 98px;
			-moz-box-shadow: 3px 3px 3px #000;
			-webkit-box-shadow: 3px 3px 3px #000;
			box-shadow: 3px 3px 3px #000;
		}
			#hd .nav ul li {
				float: left;
				margin: 2px 0 0 0;
				background-image: url(resource/nav-sprite.png);
				background-position: 0 -88px;
				padding-right: 2px;
				position: relative;
			}
				#hd .nav ul li:hover {
					background-image: url(resource/nav-sprite.png);
					background-position: 0 -46px;
				}
				#hd .nav ul li:hover span, #hd .nav ul li:hover a {
					background-image: none;
					height: 43px;
				}
				#hd .nav ul li:hover span a {
					background-image: none;
				}
				#hd .nav ul li a {
					outline: none;
					display: block;
					line-height: 36px;
					text-decoration: none;
					color: #fff;
					text-shadow: 0 1px 0 #000000;
					font-weight: bold;
					padding: 0 10px;
					background-image: url(resource/nav-sprite.png);
					background-position: 0 -2px;
				}
				#hd .nav ul li span {
					background-image: url(resource/nav-sprite.png);
					background-position: 0 -2px;
					display: block;
					padding-right: 10px;
				}
					#hd .nav ul li span a {
						background-image: url(resource/dd-arrow.png) !important;
						background-position: 100% 16px;
						background-repeat: no-repeat;
						padding-right: 15px;
					}
				#hd .nav ul li ul {
					position: absolute;
					top: 44px;
					left: 0;
					margin: 0;
					background-image: url(resource/dd-background.png);
					background-repeat: repeat-x;
					background-position: 0 -60px;
					background-color: #081118;
					display: none;
					z-index: 10000;
				}
					#hd .nav ul li ul li {
						float: none;
						border-color: #013255;
						border-style: solid;
						border-width: 1px 1px 0 1px;
						text-shadow: 0 1px 0 #000000;
						font-size: 93%;
						margin: 0;
						padding: 1px;
						background-image: none;
						width: 210px;
					}
					#hd .nav ul li:hover ul li {
						background-image: none !important;
					}
					#hd .nav ul li:hover ul li a {
						height: auto;
					}
					#hd .nav ul li ul li.first {
						border-top: 0;
					}
					#hd .nav ul li ul li:last-child {
						border-bottom: 1px solid #013255;
					}
						#hd .nav ul li ul li a {
							white-space: nowrap;
							background-image: none;
							line-height: 27px;
						}
						#hd .nav ul li ul li a:hover {
							background-image: url(resource/dd-over-bg.png);
						}
			#hd .search input[type="text"] {
				width: 137px;
				height: 16px;
				border: 1px solid #064b7c;
				background-color: #011423;
				margin-right: 10px;
				color: #4a8fc0;
			}
			#hd .search input[type="text"]:focus {
				border-color: #075790;
			}
#bd {
	padding: 11px;
	border: 1px solid #22466b;
	border-top: 0px;
	color: #6592A2;
	background-color: #011733;
}
.left {
	float: left;
}
.right {
	float: right;
}
.center {
	text-align: center;
}
.clear {
	clear: both;
}
.sep {
	height: 1em;
}
#bd .message-container {
	border-style: solid;
	border-width: 1px;
	font-weight: bold;
	margin-bottom: 1em;
	padding: 4px;
	text-align: center;
}
#bd .page-success {
	background-color: #284f3c;
	border-color: #3f6858;
	color: #73cd9a;
}
#bd .page-error {
	background-color: #360808;
	border-color: #540b14;
	color: #9c6a6a;
	text-align: left;
}
	#bd .page-error .error-container {
		width: 400px;
		margin: 0 auto;
	}
		#bd .page-error .error-container li {
			font-weight: normal;
			margin-left: 1em;
		}
			#bd .page-error .error-container li img {
				background-image: url(resource/bullet-error.gif);
				width: 3px;
				height: 7px;
				margin-bottom: 1px;
			}
#bd .page-notice {
	background-color: #636003;
	border-color: #8d9204;
	color: #d3d005;
}
	#bd .page-notice a {
		color: #d3d005;
	}
	#bd .page-notice a:hover {
		color: #ebe806;
	}
.ad-widget {
	margin-bottom: 1em;
}
.widget {
	border: 1px solid #22466b;
	background-color: #fff;
	margin-bottom: 1em;
	color: #333;
}
.widget:last-child {
	margin-bottom: 0;
}
	.widget .rss-icon {
		background-image: url(resource/icn-rss.png);
		width: 16px;
		height: 17px;
		padding: 0 !important;
		border: 0 !important;
	}
	.widget .share {
		height: 16px;
		overflow: hidden;
		display: block;
		width: 125px;
	}
		.widget .share img {
			background-image: url(resource/share.gif);
			border: 0 !important;
			padding: 0 !important;
			width: 125px;
			height: 16px;
		}
	.widget .hd {
		background-color: #0d1a20;
		background-image: url(resource/hd-ft-sprite.png);
		color: #fff;
		padding: 10px;
	}
		.widget .hd h2 {
			font-weight: bold;
			text-shadow: 0 1px 0 #000;
		}
		.widget .hd ul {
			float: right;
		}
			.widget .hd ul li {
				float: right;
			}
			.widget .hd ul li:last-child {
				margin-left: 0;
			}
		.widget .hd .tab-panel {
			margin: -10px;
			background-image: url(resource/tab-bg-sprite.png);
		}
		.widget .hd .tab-panel  ul {
			height: 36px;
			float: none;
		}
			.widget .hd .tab-panel ul li {
				float: left;
				background-image: url(resource/tab-bg-sprite.png);
				background-position: 0 -37px;
			}
			.widget .hd .tab-panel ul li:hover {
				background-position: 0 -259px;
			}
				.widget .hd .tab-panel ul li a {
					color: #fff;
					text-shadow: 0 1px 0 #000;
					font-weight: bold;
					display: block;
					background-image: url(resource/tab-bg-sprite.png);
					background-repeat: no-repeat;
					background-position: 0 -74px;
					text-decoration: none;
					outline: none;
				}
					.widget .hd .tab-panel ul li a span {
						display: block;
						padding: 12px 19px 8px 19px;
						background-image: url(resource/tab-bg-sprite.png);
						background-repeat: no-repeat;
						background-position: right -111px;
					}
				.widget .hd .tab-panel ul li.active {
					background-position: 0 -148px;
				}
					.widget .hd .tab-panel ul li.active a {
						color: #0f1d24;
						text-shadow: 0 1px 0 #d2d2d2;
						background-position: 0 -185px;
					}
						.widget .hd .tab-panel ul li.active a span {
							background-position: right -222px;
						}
		.widget .hd .social, .widget .sub-hd .social, .widget .ft .social {
			color: #ebebeb;
			font-size: 88%;
		}
			.widget .hd .social li, .widget .sub-hd .social li, .widget .ft .social li {
				float: left;
				margin-right: 5px;
			}
			.widget .hd .social .last, .widget .sub-hd .social .last, .widget .ft .social .last {
				margin-right: 0;
			}
			.widget .hd .social img, .widget .sub-hd .social img, .widget .ft .social img {
				width: 16px;
				height: 17px;
				padding: 0px;
				border: 0px;
				background-image: url(resource/social-sprite.png);
			}
			.widget .hd .social .rss, .widget .sub-hd .social .rss, .widget .ft .social .rss {
				background-position: 0 -34px;
			}
			.widget .hd .social .fb, .widget .sub-hd .social .fb, .widget .ft .social .fb {
				background-position: 0 -17px;
			}
	.widget .sub-hd {
		background-color: #013155;
		padding: 8px;
		color: #fff;
	}
		.widget .sub-hd h3 {
			margin: 0;
			color: #fff;
			font-size: 100%;
		}
		.widget .sub-hd a {
			color: #fff;
		}
	.widget .sidebar {
		font-size: 95% !important;
	}
	.widget .sidebar a {
		font-weight: bold;
	}
	.widget .bd {
		font-size: 12.35px;
		padding: 8px;
	}
		.widget .bd .sub-hd h1, .widget .bd .sub-hd h2, .widget .bd .sub-hd h3, .widget .bd .sub-hd h4, .widget .bd .sub-hd h5 {
			color: #fff;
			font-size: 100%;
			margin: 0;
		}
		.widget .bd h1, .widget .bd h2, .widget .bd h3, .widget .bd h4, .widget .bd h5 {
			margin-bottom: 4px;
			font-weight: bold;
			color: #236271;
		}
		.widget .bd h1 {
			font-size: 175%;
		}
		.widget .bd h2 {
			font-size: 145%;
		}
		.widget .bd h3 {
			font-size: 125%;
		}
		.widget .bd h4 {
			font-size: 110%;
		}
		.widget .bd h5 {
			font-size: 100%;
		}
			.widget .bd h3 a {
				text-decoration: none;
			}
		.widget .bd em, .widget .bd address {
			font-style: italic;
		}
		.widget .bd .html ol li {
			list-style: decimal;
			padding: 2px 0;
			margin-left: 22px;
		}
		.widget .bd .dropdown-menu,
		.widget .bd .sub-menu {
			position: relative;
		}
		.widget .bd .dropdown-menu span {
			display: inline-block;
			background-color: #fff;
			border: 1px solid #c8c8c8;
			background-image: url(resource/dropdown-sprite.png);
			background-repeat: no-repeat;
			background-position: right 3px;
			text-decoration: none;
			color: #000;
			padding: 4px 26px 4px 8px;
			cursor: pointer;
			-moz-border-radius: 4px;
			-webkit-border-radius: 4px;
		}
		.widget .bd .sub-menu span {
			border: 1px solid #d4dce1;
			text-decoration: none;
			font-weight: bold;
			background-image: url(resource/submenu-sprite.png);
			background-repeat: no-repeat;
			background-position: 96% 10px;
			color: #2c5075;
			padding: 4px 26px 4px 8px;
			cursor: pointer;
			min-width: 235px;
		}
		.widget .bd .sub-menu:hover span {
			background-color: #fafafa;
			border-color: #8aa5b4;
			background-position: 96% -7px;
		}
		.widget .bd .sub-menu:hover .shadow {
			display: block !important;
		}
		.widget .bd .sub-menu .shadow {
			margin-top: 2px !important;
		}
		.widget .bd .dropdown-menu:hover span,
		.widget .bd .dropdown-menu .selected {
			background-position: right -37px;
			border-color: #a9a9a9;
		}
		.widget .bd .dropdown-menu .shadow,
		.widget .bd .sub-menu .shadow {
			position: absolute;
			top: 19px;
			left: 0;
			min-width: 100px;
			display: none;
			margin: 2px 0 0 2px;
			z-index: 10000;
		}
		.widget .bd .dropdown-menu ul,
		.widget .bd .sub-menu ul {
			background-color: #fff;
			margin: -2px 0 0 -2px;
		}
			.widget .bd .dropdown-menu ul li.first,
			.widget .bd .sub-menu ul li.first {
				border-top: 1px solid #a9a9a9;	
			}
			.widget .bd .dropdown-menu ul li,
			.widget .bd .sub-menu ul li {
				position: static;
				text-align: left;
				font-weight: normal;
				border-left: 1px solid #a9a9a9;
				border-right: 1px solid #a9a9a9;
				border-bottom: 1px solid #efefef;
			}
			.widget .bd .dropdown-menu ul li:hover,
			.widget .bd .sub-menu ul li:hover {
				background-color: #f7f7f7;
			}
			.widget .bd .dropdown-menu ul li:last-child,
			.widget .bd .sub-menu ul li:last-child {
				border-bottom: 1px solid #a9a9a9;
			}
				.widget .bd .dropdown-menu ul li a,
				.widget .bd .sub-menu ul li a {
					display: block;
					outline: none;
					white-space: nowrap;
					text-decoration: none;
					padding: 4px;
				}
				.widget .bd .dropdown-menu ul li a:hover,
				.widget .bd .sub-menu ul li a:hover {
					background-color: #f7f7f7;
				}
		.widget .bd .sub-pager .pager-bar {
			background-color: #EEEEEE;
			padding: 4px;
			margin: 1px 1px 0 1px;
		}
			.widget .bd .sub-pager .pager-bar .right, .widget .bd .sub-pager .pager-bar .left {
				margin: 6px 2px;
			}
		.widget .bd .sub-pager .pager-bottom {
			margin-top: 0px;
		}	
			.widget .bd .sub-pager .pager-bottom .middle {
				margin-top: 6px;
			}
		.widget .bd .meta {
			color: #363d4f;
			font-size: 87%;
		}
		.widget .bd .orange-ajax-loader {
			width: 16px;
			height: 16px;
			background-image: url(resource/orange-ajax-loader.gif);
			padding: 0;
			border: 0;
		}
		.widget .bd .no-result {
			text-align: center;
			padding: 24px;
			background-color: #fafafb;
			color: #777;
			margin: 0 -8px -8px -8px;
		}
		.widget .bd p {
			margin-bottom: 1em;
		}
		.widget .bd p:last-child {
			margin-bottom: 0;
		}
		.widget .bd img {
			padding: 2px;
			border: 1px solid #999;
		}
			.widget .bd a img:hover {
				border-color: #272c2f;	
			}
		.widget .bd .article-list .comments {
			font-weight: normal;
			text-decoration: none;
			color: #f07e01;
		}
		.widget .bd .article-list .comments:hover {
			text-decoration: underline;
			color: #567391;
		}
		.widget .bd .loading {
			background-image: url(resource/loading.jpg);
			background-position: 50% 50%;
			background-repeat: no-repeat;
		}
		.widget .bd .shadow {
			-moz-box-shadow: 3px 3px 3px #666;
			-webkit-box-shadow: 3px 3px 3px #666;
			box-shadow: 3px 3px 3px #666;
		}
			.widget .bd .img-data img {
				float: left;
				margin-right: 8px;
			}
			.widget .bd .img-data dl {
				font-size: 90%;
			}
				.widget .bd .img-data dl dt {
					color: #297583;
					float: left;
					margin-right: .5em;
					margin-bottom: .5em;
				}
				.widget .bd .img-data dl dd {
					margin-bottom: .5em;
				}
		.widget .bd .bullet {
			margin: 4px 0;
		}
			.widget .bd .bullet li,
			.widget .bd .html ul li {
				background-position: 9px 7px;
				background-image: url(resource/bullet.gif);
				background-repeat: no-repeat;
				padding: 2px 0 2px 1.4em;
			}
			.widget .bd .bullet li .description {
				font-size: 87%;
			}
		.widget .bd .faded {
			color: #777777;
		}
		.widget .bd .no-avatar {
			background-image: url(resource/no-avatar.jpg) !important;
			border: 0px !important;
			width: 90px;
			height: 90px;
		}
		.widget .bd .no-avatar-small {
			background-image: url(resource/no-avatar-small.jpg) !important;
			border: 0px !important;
			width: 45px;
			height: 45px;
		}
		.widget .bd .indent {
			margin-left: 32px;
		}
		.widget .bd .text-indent {
			text-indent: 1em;
		}
		.seperator-label {
			background-image: url(resource/seperator-bar.gif);
			background-repeat: repeat-x;
			background-position: 0 10px;
		}
			.seperator-label span {
				margin-left: 1em;
				padding: 0 4px;
				color: #999;
				background-color: #fff;
			}
		.widget .bd .bar {
			background-color: #999;
			height: 1px;
			margin: 8px 0;
		}
		.widget .bd .pager-bar a {
			font-weight: bold;
		}
		.widget .bd .pager-bar .middle {
			width: 200px;
			text-align: center;
			margin: 0 auto;
		}
			.widget .bd .pager-bar .middle select {
				padding: 3px;
			}
		.widget .bd .pager-bar .left {
			float: left;
			margin-left: 32px;
		}
		.widget .bd .pager-bar .right {
			float: right;
			margin-right: 32px;
		}
		.widget .bd .pager-top {
			margin-top: 8px;
		}
			.widget .bd .pager-top .left, .pager-top .right {
				margin-top: 2px;
			}
		.widget .bd .pager-bottom {
			margin-bottom: 8px;
		}
			.widget .bd .pager-bottom .left, .pager-top .right {
				margin-bottom: 4px;
			}
		.widget .bd .caption {
			width: 172px;
			margin-top: -3px;
			text-align: center;
			padding: 4px;
			background-color: #e4e4e4;
		}
			.widget .bd .caption a {
				font-weight: bold;
				color: #000;
			}
			.widget .bd .caption a:hover {
				color: #5c5c5c;
			}
			.widget .bd .caption .author {
				margin-bottom: 4px;
			}
		.widget .bd .form {
			width: 75%;
			margin: 1em auto;
			border-collapse: separate;
			border-spacing: 1px;
		}
		.widget .bd .colored-content-block {
			width: 99% !important;
			background-color: #f6f6f7;
			padding: 4px;
		}
		.widget .bd .form-wide {
			width: 100% !important;
		}
			.widget .bd input, 
			.widget .bd textarea,
			.widget .bd select {
				-moz-border-radius: 4px;
				-webkit-border-radius: 4px;
			}
			.widget .bd input.xsmall {
				width: 35px;
			}
			.widget .bd input.small {
				width: 100px;
			}
			.widget .bd input.medium {
				width: 200px;
			}
			.widget .bd input.large {
				width: 300px;
			}
			.widget .bd input[type="text"],
			.widget .bd input[type="password"],
			select {
				border: 1px solid #c8c8c8;
			}
			.widget .bd input[type="text"]:focus,
			.widget .bd input[type="password"]:focus,
			select:focus {
				border-color: #898989;
			}
			.widget .bd textarea {
				border: 1px solid #c8c8c8;
			}
			.widget .bd textarea:focus {
				border-color: #a0a0a0;
			}
			.widget .bd textarea.xxsmall {
				width: 250px;
				height: 30px;
			}
			.widget .bd textarea.small {
				width: 250px;
				height: 80px;
			}
			.widget .bd textarea.small {
				width: 250px;
				height: 80px;
			}
			.widget .bd textarea.medium {
				width: 360px;
				height: 120px;
			}
			.widget .bd textarea.large {
				width: 360px;
				height: 220px;
			}
			.widget .bd textarea.xlarge {
				width: 360px;
				height: 350px;
			}
			.widget .bd .yes-no {
				width: 140px;
			}
				.widget .bd .yes-no .first {
					text-align: right;
				}
				.widget .bd .yes-no td {
					padding: 4px;
				}
				.widget .bd .yes-no .yes {
					padding: 8px;
					background-color: #c3deb6;
				}
				.widget .bd .yes-no .no {
					padding: 8px;
					background-color: #e9bab8;
				}
			.widget .bd .radio li {
				padding: 2px 0;
				vertical-align: middle;
			}
			.widget .bd .form tr {
				height: 100%;
				clear: both;
			}
				.widget .bd .form td[colspan="2"] {
					text-align: center;
					padding: 8px;
				}
				.widget .bd .form td {
					background-color: #f6f6f7;
					border-bottom: 0 !important;
					padding: 5px;
					width: 63%;
					vertical-align: top;
				}
				.widget .bd .form .error label, .widget .bd .red {
					color: #731b19;
				}
				.widget .bd .form .error .description {
					color: #957f82 !important;
				}
				.widget .bd .form .error-x {
					background-image: url(resource/form-error-x.gif);
					background-repeat: no-repeat;
					height: 14px;
					width: 14px;
					padding: 0px;
					cursor: default !important;
					border-width: 0px;
					margin-top: 2px;
				}
				.widget .bd .form .capcha {
					text-align: left !important;
				}
					.widget .bd .form .capcha img {
						border: 0;
						padding: 0;
						cursor: pointer;
					}
					.widget .bd .form .capcha ul {
						margin: 5px 0 0 13%;
					}
					.widget .bd .form .capcha li {
						float: left;
						width: 110px;
						margin-left: 1em;
					}
				.widget .bd .form .col-left {
					width: 33% !important;
				}
					.widget .bd .form .col-left label, .widget .bd .form .capcha label {
						font-weight: bold;
					}
					.widget .bd .form .col-left .description {
						font-size: 90%;
						color: #999;
					}
					.widget .bd .form .col-left .description a {
						color: #888;
						font-size: 90%
					}
					.widget .bd .form .col-left .description a:hover {
						color: #666;
					}
				.widget .bd .gradient-block {
					background-image: url(resource/gradient-block.png);
					width: 45px;
					height: 39px;
					text-align: center;
					vertical-align: middle;
					padding-top: 6px;
					color: #999;
				}
					.widget .bd .gradient-block .stat {
						font-size: 150%;
						font-weight: bold;
						color: #152b33;
					}
					.widget .bd .gradient-block .out-of {
						font-size: 9px;
						color: #000;
					}
		.widget .bd .panel {
			margin: 0 1em;
		}
		.widget .bd .panel .bd {
			padding: 0;
		}
		.widget .bd .panel table {
			width: 100%;
		}
			.widget .bd .panel table th {
				font-weight: bold;
				background-color: #DCDCDC;
			}
			.widget .bd .panel table th, .widget .bd .panel table td {
				padding: 6px;
			}
			.widget .bd .panel table td {
				border-bottom: 1px solid #D8D8D8;
			}
				.widget .bd .panel table td label {
					font-weight: bold;
				}
			.widget .bd .panel table .odd td {
				background-color:#F7F7F7;
			}
				.widget .bd .panel table .last td {
					border-bottom: 0px !important;
				}	
		.widget .bd select optgroup {
			font-weight: bold;
		}
			.widget .bd select optgroup option {
				font-weight: normal;
			}
		.widget .bd .breadcrumb {
			margin-bottom: 1em;
		}
			.widget .bd .breadcrumb ol li {
				float: left;
			}
			.widget .bd .breadcrumb .bullet li:first-child {
				padding-left: 0;
				background-image: none;
			}
		.widget .bd .green {
			color: #1a7538;
		}
		.widget .bd table.data {
			width: 95%;
			margin: 0 auto;
		}
			.widget .bd table.data th {
				background-color: #f2f2f2;
				padding: 4px;
				font-weight: bold;
				font-size: 87%;
				text-align: center;
			}
			.widget .bd table.data td {
				padding: 4px;
				font-size: 90%;
			}
	.widget .tab-content {
		display: none;
	}
	.widget .tab-content-show {
		display: block !important;
	}
	.widget .ft {
		background-color: #f0f1f2;
		background-image: url(resource/hd-ft-sprite.png);
		background-position: 0 -36px;
		padding: 8px;
		border-color: #c8c8c8;
		border-style: solid;
		border-width: 1px 0;
	}
		.widget .ft input[type="submit"] {
			margin: -4px;
			font-size: 87%;
			padding: 2px 10px;
		}
		.widget .ft a {
			color: #2e6478;
		}
		.widget .ft a:hover {
			color: #558090;
		}
	.widget .no-top-border {
		margin-top: -1px;
	}
	.widget .widget {
		margin: 0 -8px;
		border: 0;
	}
		.widget .widget:first-child, .widget .yui-u .widget .widget:first-child {
			margin-top: -8px;
		}
		.widget .widget:last-child, .widget .yui-u .widget .widget:last-child  {
			margin-bottom: -8px;
		}
	.widget .yui-u .widget {
		margin: 0;
	}
		.widget .yui-u .widget .widget {
			margin: 0 -8px;
		}
	.widget .yui-u .widget:last-child .widget:last-child {
		margin-bottom: -8px;
	}
	.widget input[type="submit"], input[type="button"] {
		background-image: url(resource/button-sprite.png);
		color: #fff;
		font-weight: bold;
		border: 1px solid #17537d;
		padding: 3px 13px;
		font-size: 97%;
	}
	.widget input[type="submit"]:hover, input[type="button"]:hover {
		background-position: 0 -25px;
		border: 1px solid #27565b;
		cursor: pointer;
	}
	.feature input[type="text"] {
		background-image: url(resource/feature-sprite-input.png);
		border: 1px solid #bb7800;
		border-bottom: 1px solid #ee9f02;
		width: 199px;
		color: #8d3c08;
		padding: 6px;
	}
	.feature input[type="text"]:focus {
		background-position: 0 -28px;
	}
	.feature input[type="image"] {
		background-image: url(resource/feature-sprite-submit.png);
		width: 57px;
		height: 22px;
		margin-right: 8px;
	}
	.feature input[type="image"]:hover {
		background-position: -65px 0px;
	}
	.feature input[type="image"].join {
		background-position: 0px -30px;
	}
	.feature input[type="image"].join:hover {
		background-position: -65px -30px;
	}
#ft {
	margin-top: 1em;
	padding: 13px 0;
	color: #6592a2;
	font-size: 87%;
}
	#ft a{
		color: #557b88;
	}
	#ft a:hover {
		color: #6592a2;
	}
	#ft .links {
		float: left;
	}
		#ft .links li {
			float: left;
			margin-left: 4px;
		}
	#ft .copyright {
		float: right;
	}

/* Network Bar */
.network-bar {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-image: url(http://img.gamer-source.com/network-bar-bg.png);
	height: 29px;
	color: #656564;
	font-size: 11px;
	border-bottom: 1px solid #000;
	line-height: 13.5333px;
	font-size: 11px;
	font-family: arial;
}
	.network-bar a {
		color: #a8a698;
		text-decoration: none;
	}
		.network-bar a:hover {
			color: #c0beae;
		}
			.network-bar a:hover .container, .network-bar .container-selected {
				background-image: url(http://img.gamer-source.com/network-bar-bg.png);
				background-position: 0 -29px;
				border: 1px solid #585854;
			}
	.network-bar .global-links {
		float: left;
	}
		.network-bar .global-links .container {
			float: left;
			border: 1px solid transparent;
			border-right: 1px solid #3b3b38;
		}
	.network-bar .g-source {
		padding-bottom: 5px !important;
	}
		.network-bar .g-source img {
			float: left;
			background-image: url(http://img.gamer-source.com/network-bar-logo-sprite.png);
			height: 16px;
			width: 16px;
			margin: -2px 5px 0 0;
		}
	.network-bar .sc-source,
	.network-bar .d-source {
		padding-bottom: 3px !important;
	}
		.network-bar .sc-source img {
			float: left;
			background-image: url(http://img.gamer-source.com/network-bar-logo-sprite.png);
			background-position: 0 -16px;
			height: 20px;
			width: 16px;
			margin: -4px 6px 0 0;
		}
		.network-bar .d-source img {
			float: left;
			background-image: url(http://img.gamer-source.com/network-bar-logo-sprite.png);
			background-position: 0 -36px;
			height: 16px;
			width: 16px;
			margin: 0 5px 0 -2px;
		}
	.network-bar .container {
		position: relative;
		padding: 8px;
	}
	.network-bar .logged-in {
		border-left: 0 !important;
	}
		.network-bar .logged-in strong {
			color: #79786d;
		}
	.network-bar .member-info {
		float: right;
		text-align: left !important;
	}
		.network-bar .member-info .container {
			float: right !important;
			border: 1px solid transparent;
			border-left: 1px solid #3b3b38;
			height: 11px;
		}
		.network-bar .threads img {
			float: left;
			background-image: url(http://img.gamer-source.com/network-bar-account-sprite.png);
			height: 11px;
			width: 13px;
			margin: 2px 6px 0 0;
		}
		.network-bar .threads .tip-bottom {
			margin-left: -12px;
		}
		.network-bar .friends img {
			float: left;
			background-image: url(http://img.gamer-source.com/network-bar-account-sprite.png);
			background-position: 0 -11px;
			height: 16px;
			width: 16px;
			margin: -2px 5px 0 -2px;
		}
		.network-bar .friends .tip-right {
			left: -64px !important;
			margin-left: -12px;
		}
		.network-bar .cart .tip-bottom {
			margin-left: -12px;
		}
		.network-bar .cart img {
			float: left;
			background-image: url(http://img.gamer-source.com/network-bar-account-sprite.png);
			background-position: 0 -27px;
			height: 15px;
			width: 16px;
			margin: 2px 6px 0 0;
		}
		.network-bar .login-container {
			width: 185px;
			margin: 29px 80px 0 0;
			position: relative;
			z-index: 10;
			display: none;
			color: #70706f;
		}
			.network-bar .login-container input[type="text"],
			.network-bar .login-container input[type="password"] {
				background-color: #161612;
				border: 1px solid #52524d;
				color: #b9b9b2;
				padding: 4px;
				margin-bottom: 6px;
				border-radius: 4px;
				-moz-border-radius: 4px;
				-webkit-border-radius: 4px;
			}
			.network-bar .login-container input[type="submit"] {
				border: 1px solid #474743;
				color: #686861;
				background-image: url(http://img.gamer-source.com/network-login-button-bg.png);
				background-repeat: repeat-x;
				margin: 0 0 6px 46px;
				padding: 2px 4px;
				cursor: pointer;
			}
			.network-bar .login-container input[type="submit"]:hover {
				border-color: #474744;
				color: #666660;
				background-position: 0 -23px;
			}
			.network-bar .login-container input[type="text"]:focus,
			.network-bar .login-container input[type="password"]:focus {
				border-color: #5d5d57;
			}
			.network-bar .login-container .remember {
				cursor: pointer;
				margin: 0 0 6px 16px;
			}
			.network-bar .login-container .checkbox,
			.network-bar .login-container .checkbox-selected {
				float: left;
				margin-right: 6px;
				width: 13px;
				height: 13px;
				background-image: url(http://img.gamer-source.com/network-login-checkbox.png);
			}
			.network-bar .login-container .checkbox-selected {
				background-position: 0 -13px;
			}
			.network-bar .login-container .hd {
				text-align: center;
				font-weight: bold;
				padding: 10px 0;
				color: #656564;
			}
			.network-bar .login-container .hd,
			.network-bar .login-container .bd {
				background-repeat: repeat-y;
				background-image: url(http://img.gamer-source.com/network-login-bg.png);
			}
			.network-bar .login-container .bd {
				padding-left: 23px;
			}
			.network-bar .login-container .ft {
				height: 7px;
				background-image: url(http://img.gamer-source.com/network-login-foot-bg.png);
			}
		.network-bar .login {
			cursor: pointer;
		}
/* Tooltip */
.tooltip:hover div {
	display: block;
}
.tooltip div {
	display: none;
	background-image: url(http://img.gamer-source.com/tooltip-arrow-sprite.png);
	background-repeat: no-repeat;
	position: absolute;
	padding-top: 7px;
	z-index: 1001;
}
.tooltip .tip-bottom {
	margin: 22px 0 0 0;
	background-position: 6px 0;
}
.tooltip .tip-right {
	left: -10px;
	background-position: 98% 0;
}
.tooltip div span {
	font-family: arial;
	background-color: #282828;
	color: #ccc;
	font-size: 11px;
	padding: 4px 6px;
	white-space: nowrap;
}

/*
 * Lightbox
 */

/*
 * Ext Core Library Examples 3.0 Beta
 * http://extjs.com/
 * Copyright(c) 2006-2009, Ext JS, LLC.
 * 
 * The MIT License
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 * 
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 * 
 */

#ux-lightbox {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 15000;
    text-align: center;
    line-height: 0;
	top: 0;
}

#ux-lightbox img {
    width: auto;
    height: auto;
}

#ux-lightbox a img {
    border: none;
}

#ux-lightbox-outerImageContainer {
    position: relative;
    background-color: #f3efec;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

#ux-lightbox-imageContainer {
    padding: 10px;
}

#ux-lightbox-loading{
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
    background: url(lightbox/lb-load.gif) no-repeat center 15%;
}

#ux-lightbox-hoverNav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

#ux-lightbox-imageContainer > #ux-lightbox-hoverNav {
    left: 0;
}

#ux-lightbox-hoverNav a{
    outline: none;
}

#ux-lightbox-navPrev,
#ux-lightbox-navNext {
    width: 49%;
    height: 100%;
    background-image: url(data:image/gif;base64,AAAA); /* Trick IE into showing hover */
    display: block;
}

#ux-lightbox-navPrev { left: 0; float: left;}
#ux-lightbox-navNext { right: 0; float: right;}
#ux-lightbox-navPrev:hover, #ux-lightbox-navPrev:visited:hover { background: url(lightbox/lb-prev.png) left 33% no-repeat; }
#ux-lightbox-navNext:hover, #ux-lightbox-navNext:visited:hover { background: url(lightbox/lb-next.png) right 33% no-repeat; }

#ux-lightbox-outerDataContainer {
    margin: 0 auto;
    width: 100%;
}

#ux-lightbox-dataContainer{
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #f3efec;
    overflow: auto;
    line-height: 1.4em;
}

#ux-lightbox-data{	padding:0 10px; color: #666; }
#ux-lightbox-data #ux-lightbox-details{ width: 80%; float: left; text-align: left; }
#ux-lightbox-data #ux-lightbox-caption{ font-weight: bold;	}
#ux-lightbox-data #ux-lightbox-imageNumber{ display: block; clear: left; padding-bottom: 1.0em;	}
#ux-lightbox-data #ux-lightbox-navClose{ background: url(lightbox/lb-close.gif) no-repeat; width: 66px; height: 22px; float: right;  padding-bottom: 0.7em; outline: none;}
#ux-lightbox-data #ux-lightbox-navClose:hover{ background-image: url(lightbox/lb-close-over.gif);}

#ux-lightbox-overlay,
#ux-lightbox-shim{
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 14999;
    width: 100%;
    height: 500px;
    background-color: #000;
    padding: 0;
    margin: 0;
}

#ux-lightbox-shim {
    z-index: 89;
    background-color: transparent;
}