/*icons*/
.glossflat 
{
	
	background: linear-gradient(top, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.7)), to(rgba(255, 255, 255, 0.2)));
	background: -webkit-linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
	background: -moz-linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
	background: -o-linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
	background: -ms-linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.2));
	
	height: 50%;
	width: 100%;
	position: relative;
	
	border-top-right-radius: .3em;
	border-top-left-radius: .3em;
	border-bottom-right-radius: 0em;
	border-bottom-left-radius: 0em;

	-webkit-border-top-right-radius: .3em;
	-webkit-border-top-left-radius: .3em;
	-webkit-border-bottom-right-radius: 0em;
	-webkit-border-bottom-left-radius: 0em;
	
	z-index: 5;
}

.iconbox 
{
	width: 650px;
	height: 100px;
	margin-left:20px;
	
}

/*tabbed icon set*/
.iconbox2 
{
	width: 380px;
	height: 400px;
	margin-left:10px;
	margin-top:-240px;
	position:absolute;
	text-align:center;
	opacity:.2;
}

.iconbox2:hover
{
	opacity:.9;
}

/*generic icon wrapper - set in page style below to have a differnt size!!! */
.iconholder 
{
	width:88px;
	height:88px;
	float: left;
	margin: 1px;
}

.icon /*mage an empty boxshadow in style to negate*/
{
	width: 100%;
	height: 100%;

	border-top-right-radius: .3em;
	border-top-left-radius: .3em;
	border-bottom-right-radius: .3em;
	border-bottom-left-radius: .3em;
	
	-webkit-border-top-right-radius: .3em;
	-webkit-border-top-left-radius: .3em;
	-webkit-border-bottom-right-radius: .3em;
	-webkit-border-bottom-left-radius: .3em;
	
	line-height: 100%;

	-webkit-box-shadow: 	0px 4px 6px rgba(0, 0, 0, 0.5),
							inset 2px 2px 2px rgba(0,0,0,.6), 
							inset -2px -2px 4px rgba(155,155,155,.6),
							1px 1px 4px rgba(25,25,25,.6),
							-1px -1px 4px rgba(25,25,25,.6);
	
	-moz-box-shadow:	0px 4px 6px rgba(0, 0, 0, 0.5),
						inset 2px 2px 2px rgba(0,0,0,.6), 
						inset -2px -2px 4px rgba(155,155,155,.6),
						1px 1px 4px rgba(25,25,25,.6),
						-1px -1px 4px rgba(25,25,25,.6);
	
	box-shadow: 	0px 4px 6px rgba(0, 0, 0, 0.5),
					inset 2px 2px 2px rgba(0,0,0,.6), 
					inset -2px -2px 4px rgba(155,155,155,.6),
					1px 1px 4px rgba(25,25,25,.6),
					-1px -1px 4px rgba(25,25,25,.6);
	
	-webkit-transition: all 500ms ease-in-out;
	-moz-transition: all 500ms ease-in-out;
	-o-transition: all 500ms ease-in-out;
	-ms-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.reflect
{
	-webkit-box-reflect: below 5px 
		-webkit-gradient(linear, left top, left bottom,
			 			from(rgba(255,255,255,.01)),
						color-stop(0.6, transparent),
						to(rgba(255,255,255,.15)));
}

.reflect:hover
{
	-webkit-box-reflect: below 25px
	 	-webkit-gradient(linear, left top, left bottom,
		from(rgba(255,255,255,.01)),
		color-stop(0.6, transparent), 
		to(rgba(255,255,255,.15)));
}

.icon:hover 
{
		margin-top: -20px;
		line-height: 0%;
		
		background: #FF05E6;
		background: linear-gradient(#FAB8FF, #FF05E6);
		background: -webkit-gradient(linear, left top, left bottom, from(#FAB8FF), to(#FF05E6));
		background: -webkit-linear-gradient(#FAB8FF, #FF05E6);
		background: -moz-linear-gradient(#FAB8FF, #FF05E6);
		background: -o-linear-gradient(#FAB8FF, #FF05E6);
		background: -ms-linear-gradient(#FAB8FF, #FF05E6);
}
	
.icon:active 
{
	background: blue;
	background: linear-gradient(cyan, blue);
	background: -webkit-gradient(linear, left top, left bottom, from(cyan), to(blue));
	background: -webkit-linear-gradient(cyan, blue);
	background: -moz-linear-gradient(cyan, blue);
	background: -o-linear-gradient(cyan, blue);
	background: -ms-linear-gradient(cyan, blue);
}

/* motion box - doublespace fixes margins*/

.superlevel1, .superlevel2 /*change in page to fit*/
{
	height: 88px;
	width: 88px;
	padding: 0 auto;
	margin: 0 auto;

	-webkit-border-radius: 8px;
	-khtml-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;

	position: absolute;
	opacity: .7;

	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	transition: all 500ms ease;
}

.superlevel2:hover 
{
	-webkit-transform: scale(1) rotate(45deg);
	-moz-transform: scale(1) rotate(45deg);
	transform: scale(1) rotate(45deg);
}

.superlevel2:active 
{
	-webkit-transform: scale(1.5) rotate(45deg);
	-moz-transform: scale(1.5) rotate(45deg);
	transform: scale(1.5) rotate(45deg);
}

.level0 
{
	display: block;

	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);

	margin: 0;
	padding: 0;
	position: relative;
	height: 100%;
	width: 100%;
}

.level1 
{
	display: block;

	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);

	margin-top: -75%;
	margin-left: 25%;
	padding: 0;
	position: relative;
	height: 50%;
	width: 50%;
}

.level2
{
	display: block;

	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);

	margin-top: -37.5%;
	margin-left: 37.5%;
	position: relative;
	height: 25%;
	width: 25%;
}

.level3 
{
	display: block;

	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);

	margin-top: -19.25%;
	margin-left: 43.75%;
	position: relative;
	height: 12.5%;
	width: 12.5%;
}

.level4 
{
	display: block;

	-webkit-border-radius: 5px;
	-khtml-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;

	-webkit-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	-moz-box-shadow: 5px 5px 5px rgba(0,0,0,.5);
	box-shadow: 5px 5px 5px rgba(0,0,0,.5);

	margin-top: -9.125%;
	margin-left: 46.875%;
	position: relative;
	height: 6.25%;
	width: 6.25%;
}

/*tab dot*/

.endpoint 
{
	height: 20px;
	width: 20px;

	-webkit-border-radius: 20px;
	-khtml-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;

	margin-left: 280px;
	margin-top: -27px;
	opacity: .4;
}

/* planet*/

.planetholder 
{
	height: 40px;
	width: 40px;

	-webkit-border-radius: 50px;
	-khtml-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;

	margin-top: -2.5px;
	margin-right: background:white;
	overflow: hidden;
	position: absolute;
	opacity: .8;

	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}

.planetholder:hover 
{
	-webkit-transform: scale(1) rotate(225deg);
	-moz-transform: scale(1) rotate(225deg);
	transform: scale(1) rotate(225deg);
}

.holdertop 
{
	height: 50%;
	width: 50%;
	position: absolute;
	margin-left: 50%;
	-webkit-border-top-right-radius: 50px;
	border-top-right-radius: 50px;
}

.holderbottom 
{
	height: 50%;
	width: 50%;
	position: absolute;
	margin-top: 50%;
	-webkit-border-bottom-left-radius: 50px;
	border-bottom-left-radius: 50px;
}

.streak, .circle 
{
	position: absolute;
}

.streak 
{
	height: 100%;
	width: 50%;
	border-top-left-radius: 6em 10em;
	border-bottom-left-radius: 6em 10em;
	border-top-right-radius: 6em 10em;
	border-bottom-right-radius: 6em 10em;
	
	-webkit-border-top-left-radius: 6em 10em;
	-webkit-border-bottom-left-radius: 6em 10em;
	-webkit-border-top-right-radius: 6em 10em;
	-webkit-border-bottom-right-radius: 6em 10em;
	
	margin-top: 0px;
	margin-left: 25%;
	opacity: .6;
}

.topcircle 
{
	height: 30%;
	width: 30%;

	-webkit-border-radius: 50px;
	-khtml-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;

	margin: 30%;
	border: 2px solid white;
	opacity: .6;
}

.left 
{
	-webkit-transform: scale(1) rotate(90deg);
	-moz-transform: scale(1) rotate(90deg);
	transform: scale(1) rotate(90deg);
}

.right 
{
	-webkit-transform: scale(1) rotate(45deg);
	-moz-transform: scale(1) rotate(45deg);
	transform: scale(1) rotate(45deg);
}

.upper 
{
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
}

.lower 
{
	-webkit-transform: scale(1) rotate(135deg);
	-moz-transform: scale(1) rotate(135deg);
	transform: scale(1) rotate(135deg);
}