@media print {
	div, input, form, canvas {
		display: none;
	}
	.printable {
		display: block;
	}
}

/*
	http://kb.mozillazine.org/Toolkit.zoomManager.zoomValues
	.3,.5,.67,.8,.9,1,1.1,1.2,1.33,1.5,1.7,2,2.4,3
*/

@media screen {
	canvas {
		position: absolute;
	}
	body, canvas {
	   user-select: none;
	   -o-user-select: none;
	   -moz-user-select: none;
	   -khtml-user-select: none;
	   -webkit-user-select: none;
	}
	body {
		margin: 0;
		padding: 0; 
		cursor: default;
		width: 100%;
		height: 100%; 
		background: #000;
		color: #000;
		overflow: hidden;
		overflow: -moz-hidden-unscrollable;
	}
	body, input, select, textarea {
		font-size: 15px;
		font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", helvetica, arial;
	}
	select {
		padding: 2px 0 3px
	}
	a {
		color: #87C9F5;
		margin: 0 5px 0 0;
	}
	a:hover {
		color: #FF2E8F;
		margin: 0 5px 0 0;
	}
	li {
		list-style-type: square;
		color: #333;
	}
	#languages select option {
		height: 17px;
		font-size: 12px;
	}
}

/* Text Box for Tool Text */

.text-control {
	position:absolute;
	padding: 1px;
	width: auto;
	border: 2px solid rgba(0,0,0,0.25);
	border-radius: 4px;
	background-color: rgba(0,0,0,0.15);
	color: #fff;
	z-index:10;
	box-shadow:3px 3px 3px rgba(0,0,0,0.5);
	-webkit-box-shadow:3px 3px 3px rgba(0,0,0,0.5);
	-moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.5);
}

.combo {
	position:absolute;
	height: 26px;
	width: 205px;
	border: solid 1px #292929;
	background: #444;
	text-shadow: rgba(0,0,0,1) 1px 1px 0;
	color: #fff;
	font-size: 14px;
	z-index: 10;
}

div.range {
	background: rgba(255, 255, 255, 0.25); 
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#292929), to(#333));
	padding: 1px 3px; 
	margin-top: 1px;
	border-radius: 2px;
}

div.range label {
	text-shadow: rgba(0,0,0,1) 1px 1px 0;
	display: inline-block; 
	color: #fff; 
	width: 55px; 
	position: relative;
	left: 3px;
	font-size: 14px;
}

.blurinput {
	color: #666;
	padding: 0 3px;
	border: 1px solid #fff;
	border-radius: 3px;
	position: relative;
	top: 1px;
	height: 23px;
}

input.button, 
button {
	background: #2599c7;
	background: -webkit-gradient(linear, left top, left bottom, from(#1a578d), to(#2599c7));
	background: -moz-linear-gradient(0deg, #1a578d, #2599c7);
	border: 1px solid rgba(32,32,32,0.5);
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 2px 10px 4px;
	border-radius: 12px;
	box-shadow: rgba(0,0,0,1) 0 1px 0;
	text-shadow: rgba(0,0,0,1) 1px 1px 0;
	color: white;
	font-size: 14px;
	text-decoration: none;
	vertical-align: middle;
}

input.button:active, 
button:active  {
	background: -webkit-gradient(linear, left top, left bottom, from(#155085), to(#1059aA));
}

input.confirm, 
confirm  {
	background: -webkit-gradient(linear, left top, left bottom, from(#C73838), to(#F74D4D));
}

input.confirm:active, 
confirm:active  {
	background: -webkit-gradient(linear, left top, left bottom, from(#A31818), to(#BF271F));
}

input.button:disabled, 
button:disabled {
	color: #aaa;
	text-decoration: line-through;
	border: 1px solid rgba(255, 255, 255, 0.12); 
	background: rgba(255, 255, 255, .07); 
}

input.navigation,
input.navigation:active{
	color: #d8d8d8;
	background: rgba(255, 255, 255, 0.13); 
	border: 1px solid rgba(255, 255, 255, 0.15); 
	border-radius: 3px;
}

input.navigationCurrent {
	background: rgba(0, 0, 0, 0.10); 
	color: #fff
}

#InfiniteScroll {
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#131313), to(#000));
}

.service {
	position: relative; 
	top: -1px;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#171717));
	border-bottom: 1px solid #202020;
}

.serviceCancel {
	cursor: pointer;
	font-size: 11px;
	border-radius: 3px;
	border: 1px solid #777;
	padding: 1px 4px 1px;
	margin-right: 5px;
}
.serviceCancel:hover {
	border: 1px solid #700;
	background: #400;
	color: #ff4444;
}

