@charset "UTF-8";
/* 
	User Submitted Posts - CSS for HTML5 form
	http://perishablepress.com/user-submitted-posts/
	Complete list of CSS hooks for the submission form @ http://m0n.co/e
*/
div#user-submitted-posts { width: 100%; }
div#user-submitted-posts fieldset { margin: 10px 0; border: 0; }
div#user-submitted-posts fieldset label { float: left; width: 20%; }
div#user-submitted-posts fieldset input.usp-input { float: left; width: 60%; }
div#user-submitted-posts fieldset input.usp-input.usp-clone { width: 100%; margin: 3px 0; padding: 0; line-height: 18px; font-size: 12px; border: 1px solid #ccc; background-color: #fafafa; }
div#user-submitted-posts textarea.usp-textarea { width: 90%; }
div#user-submitted-posts fieldset.usp-images label { clear: both; width: 90%; }
div#usp-upload-message { float: left; clear: both; font-size: 12px; }
div#user-submitted-image { /*width: 50%;*/ width:308px; display:inline-block; }
a#usp_add-another { float: left; clear: both; }
div.usp-input-error { width: 80%; overflow: hidden; text-align: right; }

/************ START OF CUSTOM CSS ************/
.submit_input{
	text-align:center;
	font-weight:bold; 
	color:#D6D6D6 !important;
}
#submit_title{
	text-align:center; 
	font-weight:bold; 
	color:#D6D6D6; 
	height:30px; 
	font-size: 28px; 
}
#user-submitted-category{
	text-align:center;
	font-weight:bold;
	color:#D6D6D6;
	height:29px;
	width:290px;
}
.download_link_buttons{
	float:left;
	width:168px;
}

.download_link_buttons img {
	height:77px !important;
}

.download_link_buttons > .download-link > img{
	height:77px;
	width:168px;	
}

.download-width {
    width: 504px;
    margin: 0 auto;
}


#download_buttons{
	display:inline-block;
	padding: 6px;
    padding-right: 30px;
    padding-left: 35px;
    border: 1px solid #999;
    border-radius: 18px;
    background-color: rgba(255,255,255,0.8);
    width: 571px;
}

.submit_input_txt{
	width:170px;
	height:20px;
	padding:0px !important;
	font-size:12px;
	text-align:center;
}
#submit_form_fields{
	width:540px;
	float:left;
}
#image_upload2{
	background: url(../images/upbig.png) 0 0 no-repeat;
}
#image_upload1{
	background: url(../images/upsmall.png) 0 0 no-repeat;
}
#image_upload1 , #image_upload2{
	width: 154px;
	height: 143px;
	overflow: hidden;
	cursor: pointer;
}
#user-submitted-image1{
	position: relative;
	height: 100%;
	width: auto;
	opacity: 0;
	-moz-opacity: 0;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}

#user-submitted-image2{
	position: relative;
	height: 100%;
	width: auto;
	opacity: 0;
	-moz-opacity: 0;
	filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}
.user-displayed-image{
	width: 150px;
	height: 145px;
}
#submit_uploads{
	float:left;
	width:160px;
}
.post_attach_img{
	width:400px;
}

.top_ten_up h1{
	font-size:14px;
}

.usp-content #insert-media-button{
	display:none;
}

.hr_line{
	border:1px solid;
	margin-bottom:10px;
	margin-top:10px;
}

#usp-submit{
	text-align:center;
}

.compatibility_link_buttons div{
	width:430px;
	margin:0 auto;
	text-align:left;
}
.compatibility_link_buttons div span{
	width:200px;
	display:inline-block;
}
.compatibility_link_buttons div span:first-child{
	width:215px;
	margin-right:10px;
}

/************ END OF CUSTOM CSS ************/

/************Pop up Css***********************/
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}


.popup {
	padding: 30px;
	background: #fff;
	border-radius: 5px;
	width: 30%;
	text-align:center;
	position:fixed;
	left: 50%;
	top: 50%;
	-ms-transform: translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	transition: all 5s ease-in-out;
}
.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .contents {
  max-height: 30%;
  overflow: auto;
}

#file_missing {
  background: #3498db;
  background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
  background-image: -moz-linear-gradient(top, #3498db, #2980b9);
  background-image: -ms-linear-gradient(top, #3498db, #2980b9);
  background-image: -o-linear-gradient(top, #3498db, #2980b9);
  background-image: linear-gradient(to bottom, #3498db, #2980b9);
  -webkit-border-radius: 28;
  -moz-border-radius: 28;
  border-radius: 28px;
  font-family: Arial;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  margin-top:10px;
}

#file_missing:hover {
  background: #3cb0fd;
  background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
  background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
  background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
  text-decoration: none;
}

a.fourm-therad:hover {
    text-decoration: underline;
}
/*************Popup css end*****************************/