/* DESKTOP */ 

/* decided on width per: http://www.zingdesign.com/wp-content/uploads/Zing-Design-Responsive-website-cheatsheet-1.pdf */
@media only screen and (min-width: 769px) {

#mobile_navigation, .mobile_only {
display:none;
}

#content {
height:450px;
width:500px;
margin-left:auto;
margin-right:auto;
background-color:black; 
border:2px solid DimGray;
border-radius:25px;
background-image:url("desktop.png");
background-repeat: no-repeat;
background-position:center;
}

.sub_content {
height:95%;
width:95%;
background-color:black;
border:1px solid DimGray;
border-radius:12.5px;
opacity:0.95;
filter:alpha(opacity=95); /* For IE8 and earlier */
margin-top:10px;
margin-left:auto;
margin-right:auto;
overflow:auto;
}

iframe {
height:50%;
width:90%;
border-radius:12.5px;
}

form {
margin-left:auto;
margin-right:auto;
width:150px;
float:middle;
}

input {
text-align:center;
}

}