/*#############################################################
Based on the 'Blackbox' design by Viktor Persson 
URL: http://arcsin.se
#############################################################*/
	/* Standard elements */
* {
	margin: 0;
	padding: 0;
}

a {
	color: #555;
	text-decoration: none;
}

body {
	background: #fff url(img/white/bg.png) repeat-x fixed left bottom;
	color: #666;
	margin: 20px 0;
	text-align: center;
	font: normal 0.7em sans-serif, Arial;
}

ul {
	margin: 12px 0;
}

li {
	list-style: url(img/white/li.gif);
	margin-left: 18px;
}

code {
	font: normal 1em "Lucida Sans Unicode", serif;
	background: url(img/white/bgcode.gif);
	color: #777;
	display: block;
	padding: 3px 6px;
	white-space: pre;
	margin-bottom: 12px;
}

/* Misc */
div.quote {
	margin-bottom: 12px;
	font: normal 1.1em "Lucida Sans Unicode", serif;
	background: url(img/white/quote.gif) no-repeat;
	padding-left: 28px;
}

span.productName{
	font-weight: bold;
}

/* Main structure */
.main {
	background: #fff;
	border: 3px double #eee;
	border-color: #ebebeb #dfdfdf #222 #dfdfdf;
	margin: 20px auto 4px auto;
	text-align: left;
	width: 600px;
}

/* Header */
.gfx {
	background: #222 url(img/white/iphone_rotated.gif) no-repeat;
	height: 240px;
}

.gfx h1 {
	color: #eee;
	font: normal 2.6em Tahoma, sans-serif;
	padding-top:16px;
	padding-left:20px;
	padding-right: 275px;
}

/* Menu */
.menu a {
	background: #fff url(img/white/bgmenu.png) repeat-x;
	border-right: 1px solid #ddd;
	border-top: 1px solid #e5e5e5;
	font-size: 1.2em;
	float: left;
	padding-top: 4px;
	width: 199px;
	height: 36px;
}

.menu a span {
	padding-left: 6px;
}

.menu a:hover {
	background-position: left bottom;
	color: #777;
}

.menu a#last {
	width: 199px;
	border-right: none;
}

/* Content */
.content {
	border-top: 1px solid #e5e5e5;
	background: #e5e5e5;
	clear: both;
}

.content h1 {
	margin: 0 0 4px;
	font: bold 1.1em sans-serif, Arial;
	color: #555;
}

.content p {
	margin: 0 0 12px;
}

.item {
	background: #fcfcfc url(img/white/bgitem.gif) repeat-x;
	padding: 8px 10px;
}

.item a {
	text-decoration: underline;
}

/* Footer */
.footer {
	padding: 5px;
	background: #f5f5f5;
	color: #666;
}

.thumbnail {
	position: relative;
	z-index: 0;
}

.thumbnail:hover {
	background-color: transparent;
	z-index: 50;
}

.thumbnail span { /*CSS for enlarged image*/
	position: absolute;
	background-color: white;
	padding: 5px;
	left: -1000px;
	border: 1px solid black;
	visibility: hidden;
	color: black;
	text-decoration: none;
}

.thumbnail span img { /*CSS for enlarged image*/
	border-width: 0;
	padding: 2px;
}

.thumbnail:hover span { /*CSS for enlarged image on hover*/
	visibility: visible;
	top: 0;
	left: 60px;
	/*position where enlarged image should offset horizontally */
}