html,body{
	height:100%;	
	width:100%;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
}

#container{
	margin:20px;
}

#logo{
  display:inline-block;
  vertical-align:top;
  float: right;
  padding:10px;
  margin-top:-137px;
  text-align:right;
  font-size:18px;
}

form{
	width: 100%;
	text-align:center;
	/*padding: 10px;	
	margin-left:-20px;*/
	/*background-color: #333333;*/
	color: #FFFFFF;
}



label{
	margin-right: 5px;	
}

a{
	color:#FF0000;	
}
a:visited{
	color:#CCCCCC;
}

#glow{
	box-shadow: 0 0 150px rgba(0, 0, 255, 1);
    -webkit-box-shadow: 0 0 150px rgba(0, 0, 255, 1); 	
	z-index: 100000;
	padding:-30px;
}

#shortcut_bar{
	display:block;
	position:relative;
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	width:60%;
	font-size:24px;
	margin-top:137px;
}

#shortcut_bar a{
	text-decoration: none;
	color: black;	
}

#shortcut_bar a:hover{
	color: #1455E6;
}

#footer_settings{
	font-size:14px;	
}

#SelectedService{
	padding: 20px; top: 0; position: absolute; margin-top: 20px;
}

#ServicesSelection{
	display: inline;
}

#CancelPasswordBar{
	color: #FF0000;
}

.vertcenter{
	padding:5px;
	height:100%;
	margin:auto;
	vertical-align:top;
}

.smallsquare{
	width:32px;
	height:32px;
}

.viewport {
	margin-top:150px;
		
    -webkit-perspective: 1600px;
    -webkit-perspective-origin: 50% 400px;
    -webkit-transform: scale(0.75,0.75);
}

.cube {
    position: relative;
    margin: 0 auto; padding:0;
    height:360px;
    width: 360px;
    -webkit-transition: -webkit-transform 50ms linear;
    -webkit-transform-style: preserve-3d;
    -webkit-transform: rotateX(-42deg) rotateY(671deg);
	
	/*disable text selection*/
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	 user-select: none;
}

.face {
    width: 108%;
    height: 105%;
	margin-top:-5%;
	margin-left:-5%;
}
.tile {
    width: 100%;
    height: 100%; 
    border: #000000 3px solid;
    float: left;
    text-align: center;
	background-color: #333333;
}
.row {
    width: 33.3%;
    height: 33%;    
    float: left;
}
.tileimage{
	height: 95%;
	width: 95%;	
   margin: 0 auto;
}


.cube a:hover img {
    color: #fff; 
	background-color: #FFFFFF;
	 border: #FFFFFF 1px solid;
}

.cube > div {
    position: absolute;
    height: 360px;
    width: 360px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 1);
    font-size: 1em;
    line-height: 1em;
    color: #000000;
    border: 1px solid #555;
    border-radius: 3px;
	margin:0;
}

.cube > div:first-child  {
    -webkit-transform: rotateX(90deg) translateZ(200px);
}

.cube > div:nth-child(2) {
    -webkit-transform: translateZ(200px);
}

.cube > div:nth-child(3) {
    -webkit-transform: rotateY(90deg) translateZ(200px);
    text-align: center;
}

.cube > div:nth-child(4) {
    -webkit-transform: rotateY(180deg) translateZ(200px);
}

.cube > div:nth-child(5) {
    -webkit-transform: rotateY(-90deg) translateZ(200px);
}

.cube > div:nth-child(5) p {
    text-align: center;
    font-size: 2.77em;
    margin: 40px;
    line-height: 60px;
}

.cube > div:nth-child(6) {
    -webkit-transform: rotateX(-90deg) rotate(180deg) translateZ(200px);
}

object {
    opacity: 0.5;
}

object:hover {
    opacity: 1;
}

/* Zoom and blur experiment */
/* As of June 10th 2012: filters are webkit only */
/*************************************************/

.zoom-wrapper {
    -webkit-animation: zoom-in 5s linear infinite alternate;
    -webkit-filter: blur(0);
    -webkit-transform-style: preserve-3d;
}

@-webkit-keyframes zoom-in {
    from {
        -webkit-transform: translateZ(-1000px);
        -webkit-filter: blur(3px);
    }
    to {
        -webkit-transform: translateZ(100px);
        -webkit-filter: blur(0);
    }
}