/*
bottom		Sets the bottom margin edge for a positioned box
clip		Clips an absolutely positioned element
cursor		Specifies the type of cursor to be displayed
left		Sets the left margin edge for a positioned box
overflow	Specifies what happens if content overflows an element's box
overflow-x	Specifies what to do with the left/right edges of the content if it overflows the element's content area
overflow-y	Specifies what to do with the top/bottom edges of the content if it overflows the element's content area
position	Specifies the type of positioning for an element
right		Sets the right margin edge for a positioned box
top		Sets the top margin edge for a positioned box
z-index		Sets the stack order of an element
*/
body {
	background-size:		cover;
	background-color:		azure;
}

body:hover {
	background-image:		url('https://chafeinternational.s3.amazonaws.com/biggerstthomas.jpg');
}

object {
	display:			none;
	z-index:			0;
}

p {
	font-family:			verdana;
	font-size:			20px;
}

.fixed {
	display:			none;
	position:			fixed;
	top:				0px;
	right:				0px;
	width:				84%;
	height:				94%;
}

/*
1.The horizontal offset of the shadow, positive means the shadow will be on the right of the box, a negative offset will put the shadow on the left of the box.
2.The vertical offset of the shadow, a negative one means the box-shadow will be above the box, a positive one means the shadow will be below the box.
3.The blur radius (optional), if set to 0 the shadow will be sharp, the higher the number, the more blurred it will be.
4.The spread radius (optional), positive values increase the size of the shadow, negative values decrease the size. Default is 0 (the shadow is same size as blur).
5.Color
*/
.desktop {
	background-size:		cover;
	background-repeat:		no-repeat;
	position:			absolute;
	bottom:				0px;
	left:				0px;
	width:				300px;
	height:				300px;
	/*border:			1px solid #ccc;*/
	border-radius:			5px;
	transition:			all 100ms ease-out;
	z-index:			-1;
}

.cammap {
	position:			absolute;
	bottom:				315px;
	left:				0px;
	width:				300px;
	height:				300px;
	border-radius:			5px;
	transition:			all 100ms ease-out;
	z-index:			-1;
}

.chess {
	display:			block;
	position:			absolute;
	bottom:				315px;
	left:				315px;
	width:				300px;
	height:				300px;
	border-radius:			5px;
	transition:			all 100ms ease-out;
	z-index:			-1;
}

.beef {
	position:			absolute;
	background-image:		url(http://i.imgur.com/X5ClMDm.gif);
	background-size:		cover;
	left:				315px;
	bottom:				0px;
	width:				300px;
	height:				300px;
	border-radius:			5px;
	transition:			all 100ms ease-out;
	z-index:			-1;
}

.cameraloc {
	text-align:			center;
	font-family:			Verdana;
	display:			none;
	position:			absolute;
	background-color:		lightblue;
	box-shadow:			-3px 3px 10px 2px #333;
	width:				14px;
	height:				14px;
	border-radius:			7px;
	transition:			all 100ms ease-out;
	z-index:			1;
}

.camclose {
	display:			block;
	position:			absolute;
	background-color:		red;
	box-shadow:			-3px 3px 10px 2px #333;
	top:				-14px;
	right:				0px;
	width:				14px;
	height:				14px;
	border-radius:			7px;
	transition:			all 100ms ease-out;
	z-index:			1;
}

.video {
	display:			block;
	position:			absolute;
	left:				2px;
	top:				2px;
	width:				100%;
	height:				100%;
	z-index:			1;
}

.wx {
	display:			none;
	font-size:			12px;
	font-family:			Verdana;
	text-align:			right;
	position:			absolute;
	top:				2px;
	right:				2px;
	width:				50px;
	height:				12px;
	z-index:			1;
}

.windheading {
	transform:			rotate(0deg);
	padding:			0px 0px 0px 0px;
	font-size:			17px;
	font-weight:			100;
	font-family:			Verdana;
	text-align:			center;
	position:			absolute;
	right:				50px;
	top:				10px;
	width:				5px;
	height:				12px;
}

.windmph {
	font-size:			8px;
	font-weight:			100;
	font-family:			Verdana;
	text-align:			center;
	position:			absolute;
	right:				50px;
	top:				20px;
	width:				80px;
	height:				8px;
}

.obs {
	/*background-image:		url(https://icons.wxug.com/i/c/k/partlycloudy.gif);*/
	background-repeat:		no-repeat;
	background-size:		cover;	
	display:			none;
	position:			absolute;
	top:				28px;
	right:				2px;
	width:				30px;
	height:				30px;
	z-index:			1;
}

.thirteenthview {
	right:				239px;
	bottom:				72px;
}

.thirteenthview:hover {
	width:				304px;
	height:				170px;
}

.causeway {
	right:				159px;
	bottom:				57px;
}

.causeway:hover {
	width:				304px;
	height:				170px;
}

.fourthview {
	right:				127px;
	bottom:				27px;
}

.fourthview:hover {
	width:				304px;
	height:				170px;
}

.bl {
	background-color:		#a3ccff;
	box-shadow:			-10px 10px 15px 3px #333;
}

.br {
	background-color:		#a3ccff;
	box-shadow:			10px 10px 15px 3px #333;
}

.tl {
	box-shadow:			-10px -10px 15px 3px #333;
}

.tr {
	background-color:		#a3ccff;
	box-shadow:			10px -10px 15px 3px #333;
}

.desktop:hover {
	background-color:		white;
	background-image:		none;
	box-shadow:			0px 0px 5px rgba(35, 35, 255, 1);
}

.cammap:hover {
	/*background-image:		url(/images/cammapwht.png);*/
	box-shadow:			0px 0px 5px rgba(35, 35, 255, 1);
}

.cameraloc:hover {
	background-color:		white;
	box-shadow:			0px 0px 5px rgba(35, 35, 255, 1);
}

.chess:hover {
	background-color:		white;
	box-shadow:			0px 0px 5px rgba(35, 35, 255, 1);
}

.beef:hover {
	background-color:		white;
	background-image:		none;
	box-shadow:			0px 0px 5px rgba(35, 35, 255, 1);
}


p.a:hover {
	font-size:			22px;
}