/* 
RESET ALL CSS ATTRIBUTES
http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
SET ALL POSITIONING
*/
/*
#wrapper {
	width: 320px;
	height: 480px;
	overflow: hidden;
}
*/

body {
	font-family: Arial, Helvetica, sans-serif;
}


/*
TABS
*/
ul.tabs {
	list-style:none; 
	height: 5.3em;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0.1em 0.18em !important;
	list-style-image:none !important; 
}

ul.tabs a {
	display: block;
	text-decoration: none;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	color: #050505;
	height: 2em;
	width: 2em;
	line-height: 2em;
	background: -moz-linear-gradient(
		top,
		#ffffff 0%,
		#ebebeb 50%,
		#dbdbdb 50%,
		#b5b5b5);
	background: -webkit-gradient(
		linear, left top, left bottom, 
		from(#ffffff),
		color-stop(0.50, #ebebeb),
		color-stop(0.50, #dbdbdb),
		to(#b5b5b5));
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: 1px solid #949494;
	-moz-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(000,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	text-shadow:
		0px -1px 0px rgba(000,000,000,0.2),
		0px 1px 0px rgba(255,255,255,1);
}

ul.tabs a.current {

	color: red;
	-moz-box-shadow:
		0px 1px 3px rgba(255,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);
	-webkit-box-shadow:
		0px 1px 3px rgba(255,000,000,0.5),
		inset 0px 0px 2px rgba(255,255,255,1);

}

.panes {
	background-color: #fff;
}

.panes .pane {
	display:none;
}

.square {
	float: left;
	display: block;
	width: 3.1em;
	height: 2.3em;
	line-height: 2.3em;
	text-align: center;
	margin: 6px 3px 0 3px;
	font-size: 0.9em;
	text-shadow: 0px 0px 4px #fff;
	filter: dropshadow(color=#fff, offx=1, offy=1);
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	-border-radius: 8px;
	-webkit-box-shadow: 1px 1px 1px 1px #ccc;
	-moz-box-shadow: 1px 1px 1px 1px #ccc;
	box-shadow: 1px 1px 1px 1px #ccc; 
}

.square:first-child {
	clear: left;
}

#colorName {
	position: absolute;
	font-size: 2em;
	top: 5em;
	text-align: center;
	width: 100%;
	text-shadow: 0px 0px 3px #ffffff;
filter: dropshadow(color=#ffffff, offx=0, offy=0); 
}

/*
@media only screen and (-webkit-min-device-pixel-ratio: 2) {
	#colorName {
		width: 640px !important;
	}

	#wrapper {
		width: 640px !important;
		height: 960px !important;
	}
}
*/