
* {box-sizing: border-box;}

/* reset styles */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, button, form {
	margin: 0; padding: 0;  border: 0; outline: 0; font-size: 100%;
	vertical-align: baseline; background: transparent;
}
body { line-height: 1; }
/* ol, ul { list-style: none; } */

ol, ul {margin-left: 20px; }

blockquote, q { quotes: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ''; }
:focus { outline: 0; }
ins { text-decoration: none; }
del { text-decoration: line-through; }
table { border-collapse: collapse; border-spacing: 0; }
td {vertical-align: top; padding: 5px;}
textarea {font-size: 18px;width: 400px;}

textarea, input {
    border: 1px solid gray;
    outline: none; /* Optional: Removes default focus outline */
    padding: 2px;  /* Optional: Adds some inner spacing */
    border-radius: 4px; /* Optional: Adds rounded corners */
}

body {
    font-family: 'PT Sans', sans-serif;
	font-size: 16px;
    line-height: inherit;
    font-weight: 400;
	color: #2b3338;
    background-color: #252a2f;
}

#bodyWrap {
    width: 480px;
    margin: 0 auto;
    background-color: #e1ebf0;
    box-shadow: 0 0 5px rgba(0,0,0,0.35);
}

button {
    cursor: pointer;
    opacity: 0.9;
    text-shadow: 0 1px 1px rgba(0,0,0,0.35);
    background-color: #0288d1;
    color: #fff;
    padding: 12px;
    width: 80%;
    border-radius: 20px;
    margin: 5px;
}
button:hover {
    opacity: 1;
}

button.textlink {
    background:none!important;
    color: #0277bd;
    border:none; 
    padding:0!important;
    font: inherit;
    /*border is optional*/
    border-bottom:none; 
    cursor: pointer;
    opacity: 1;
    text-shadow: 0 0 0 0;
    background-color: none;
    width: 100%;
    border-radius: none;
    margin: none;

}

img {
    max-width: 440px;
    max-height: 220px;
}

input[type=text], input[type=password] {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
}
input[type=number] {
    width: 100px;
    padding: 10px;
}

select {
	width: 80%;
	padding: 10px;
	margin-bottom: 20px;
}

p {
    margin: 1em 0;
    text-align: left;
}


a {
    text-decoration: none;
    cursor: pointer;
    color: #0277bd;
}



h2 {
    font-size: 24px;
    margin: 1em 0;
}

h4 {
    font-weight: bold;
}


form {
    text-align: center;    
}

.divider {
    height: 1px;
    background-color: #0288d1;
    margin: 20px 20px 40px 20px;
    text-align: center;
    box-shadow: 0 0 5px rgba(0,0,0,0.35);
}


.floatLeft {float: left;}
.floatRight {float: right;}
.clearFloat {clear: both;}

#header {
    height: 60px;
    background: rgb(46,157,231);
    background: -moz-linear-gradient(top,  rgba(46,157,231,1) 0%, rgba(25,129,222,1) 100%);
    background: -webkit-linear-gradient(top,  rgba(46,157,231,1) 0%,rgba(25,129,222,1) 100%);
    background: linear-gradient(to bottom,  rgba(46,157,231,1) 0%,rgba(25,129,222,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e9de7', endColorstr='#1981de',GradientType=0 );
}
#header #logo {
    color: #fff;
    font-size: 30px;
    margin: 10px 0 0 20px;
    text-shadow: 0 2px 2px rgba(0,0,0,0.35);
}

#header #menu {
    height: 60px;
    background-image: url(../images/menu.png);
    background-repeat: no-repeat;
    background-position: right;
   padding-right: 60px;
    margin-right: 10px;
   padding-top: 20px;
}

#header #menu_username {
    color: #fff;
    font-size: 20px;
/*    font-weight: 700;*/
    text-align: right;
    height: 60px;
    padding-right: 20px;
    margin-right: 10px;
    padding-top: 20px;
}

#networksiteheader {
    text-align: center;
}
#networksiteheader img {
    margin-left: auto;
    margin-right: auto;
}
#networksiteheader #sitename {
    color: #000;
    font-size: 30px;
    margin: 10px 0 0 20px;
    text-shadow: 0 2px 2px rgba(0,0,0,0.35);
}





#userHeader {
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #f0faff 100%);
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f0faff 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f0faff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0faff',GradientType=0 );
/*    height: 75px; */
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

#userHeader .userBox {
    float: left;
    text-align: center;
    width: 33.3333%;
/*    height: 75px; */
    border-left: 1px solid gray;
    padding: 5px;
    display: table;
       
}

#userHeader .userBox .content {
    display: table-cell;
    vertical-align: middle;
}

#userHeader .userBoxLeft {
    float: left;
    text-align: left;
    width: 60%;
/*    height: 75px; */
    padding: 5px;
    display: table;
    border-bottom: 1px solid gray;
    background: #ffffff;
}
#userHeader .userBoxRight {
    float: right;
    text-align: right;
    width: 40%;
/*    height: 75px; */
    padding: 5px;
    display: table;
    border-bottom: 1px solid gray;
    background: #ffffff;

}

#userHeader .userImg {
    height: 50px;
    width: 50px;
    background-color: #9ea5b9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
    border-radius: 5px;
    margin-right: 10px;
}
#userHeader .userName span {
    font-size: 20px;
    font-weight: 700;
    color: #0277bd;
    line-height: 30px;
}

#senderHeader {
    position: relative;
    text-align: center;
    margin-top: 5px;
}

#senderHeader img{
    border-radius: 75px;
    height: 75px;
    width: 75px;
}

#senderHeader .senderName {
    display: inline-block;
}
#senderHeader .senderName span {
    font-size: 16px;
    font-weight: 700;
    color: #0277bd;
    line-height: 30px;
}

#senderHeader .subscribe_container {
    display: inline-block;
}

#userHeader button.logout {
    background-color: #e53935;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 15px 0;
    border-radius: 20px;
    width: auto;
}
#userHeader button.logout span {
    background-image: url(../images/logout_bg.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 24px;
    line-height: 16px;
}

#userHeader button.login {
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 15px 0;
    border-radius: 20px;
    width: auto;
}

#main {
    background-color: #e1ebf0;
    padding: 0px;    
}

.widget_label {
    background-color: #29b6f6;
    width: 100%;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 20px;
    border-radius: 0px;
    box-shadow: 0px 1px 1px rgba(0,0,0,0.2);
    margin: 10px 0 0px;
    text-shadow: none;
}

.widget_body {
    padding: 20px;
    text-align: left;
}

.queue_message {
    width: auto;
    background-color: #fff;
    border: none;
    padding: 10px;
    text-align: left;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.15);
    border-radius: 3px;
    text-shadow: none;
    color: #000;
}
.queue_message span {
    display: block;
    float: right;
    width: 320px;
}
.queue_message .qmImg img {
    border-radius: 70px;
    height: 70px;
    width: 70px;

}

.queue_message .qmImg {
    display: block;
    float: left;
    height: 70px;
    width: 70px;
    border-radius: 70px;
    background-color: #9ea5b9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70px 70px;
    margin-right: 10px;
}
.queue_message .qmTitle {
    font-size: 18px;
    font-weight: 700;
}
.queue_message .qmSubtitle {
    font-size: 15px;
    color: #747e84;
    margin-bottom: 5px;
    padding-bottom: 5px;
}
.queue_message .qmText {
}




.fullMess {
    width: auto;
    background-color: #fff;
    border: none;
//    padding: 20px;
    text-align: center;
    margin-bottom: 10px;
    box-shadow: 0px 1px 2px rgba(0,0,0,0.15);
    border-radius: 3px;
    position: relative;
}


.fullMess .userCover img {
 //   margin: -20px -20px 0 -20px;
    border-radius: 3px 3px 0 0;
    background-color: #c0c6d5;
display: block;
	 margin-right: auto;
	 margin-left: auto;

}
.fullMess .userImg {
width: 100%;
height: 100px;
	text-align: center;
}
.fullMess .userImg img {
    position: relative;
    width: 108px;
    height: 108px;
    background-color: #9ea5b9;
    border: 4px solid #fff;
    border-radius: 100px;
    margin-top: -20px;
display: block;
	 margin-right: auto;
	 margin-left: auto;
}
.fullMess .userName {
    margin-top: 10px;;
}
.fullMess .userName span {
    font-size: 20px;
    font-weight: 700;
    color: #0277bd;
    line-height: 30px;
}


.subscribe_container {
    margin-top: 0px;
    padding: 0px;
    float: right;
    background-color: #fff;
height: 80px;
}

button.subscribe  {
    background-color: #26c6da;
    border: none;
    padding: 3px;
    color: #fff;
    font-size: 15px;
    margin-top: 5px;
    border-radius: 20px;
    width: 200px; 
    height: 40px;	   
    float: right;
}

.subscribe_container .differential {
    font-size: 15px;
    color: #747e84;
    margin-bottom: 5px;
    padding-bottom: 5px;
    text-align: center;
    width: 200px;
}

.fullMess .messTitle {
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
}
.fullMess .messCat {
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    width: 100%;
}
.fullMess .message {
    font-size: 18px;
    padding: 20px;
}

.reply {
    text-align: center;
padding: 20px;
}
.reply textarea {
    width: 358px;
    border: 1px solid gray;
    background-color: #e1ebf0;
    border-radius: 3px;
    padding: 10px 20px;
    margin-bottom: 20px;
}
.reply button {
    /*
    float: left;
    width: 190px;
    height: 80px;
    */
    border: none;
    padding: 5px;
    background-color: #0288d1;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
    text-shadow: 0 1px 1px rgba(0,0,0,0.35);
    margin: 5px;
}
.reply button span {
    font-weight: 400;
}
.reply button.red {
    background-color: #e53935;
}
.reply button.white {
    background-color: #ffffff;
    color: #000000;
}
.reply button.green {
    background-color: #556B2F;
}
.reply button.profileSend {
    width: 100%;
    height: 40px;
}

.bidform {
    text-align:left;
    padding:20px;
}
.bidform_options {
    text-align:left;
    margin-top: 20px;
}


.imageList img {
    max-width: 200px;
    max-height: 100px;
}


#footer {
    margin-top: 10px;
    background-color: #384b59;
    padding: 30px 0;
    color: #fff;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35);
    text-align: center;
}
#footerMenu {
    border-bottom: 1px solid rgba(255,255,255,.25);
    width: 370px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}
#footerMenu li {
    list-style: none;
    float: left;
    padding: 10px 5px;
}
#footer a {
    color: #fff;
}


/*#############################################*/
/* id widget divs */

#login_step1 {
    text-align: center;
}



#dynamic_profile {
    padding: 5px; 
    text-align: left;
}

#dynamic_profile .questionanswer {
    margin: 0px 0px 20px 20px;;
}

.question_button {
width: 120px;
}

.question_text {
    font-size: 24px;
    font-family: Times,Times New Roman,Georgia,serif;
}

#dynamic_profile form {
    text-align: left;
}

#dynamic_profile button {
    width: 100px;
    margin-right: 10px;
}




.contact_container {
    display: block;
    float: left;
    background-color: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
    height: 105px;
}

.contact {
    display: block;
    float: left;
}

.contact_info {
    background-color: #fff;
    color: #000;
    text-align: left;
    text-shadow: none;
    margin-bottom: 10px;
    padding: 5px;
    width: 250px;
}
.contact_info img {
    display: block;
    float: left;
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background-color: #9ea5b9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50px 50px;
margin-right: 5px;
}

.contact_info .contactImage {
    float: left;
    height: 80px;
    width: 54px;
}

.contact_info .contactTitle {
    font-size: 16px;
    font-weight: 700;
}

.contact_info .contactName {
    font-size: 14px;
    font-weight: 700;
}

.contact_info .contactPrice {
    font-size: 15px;
    color: #747e84;
}
 
.contact_button {
}
.contact_button button {
    display: block;
    background-color: #556B2F;
    border: none;
    padding: 3px;
    color: #fff;
    font-size: 15px;
    margin-top: 0px;
    border-radius: 20px;
    width: 220px; 
    height: 40px;	   
    float: left;
}


.action {
    display: block;
    float: right;
    margin: 5px;
    height: 100px;
}

.action button {
    background-color: #26c6da;
    border: none;
    padding: 3px;
    color: #fff;
    font-size: 15px;
    margin-top: 5px;
    border-radius: 20px;
    width: 150px; 
}

button.wide_button {
    width:100%;
    height: 40px;
}

#search_input {

}

#search_button {
    width: 70px;
}

#pagination div {
    float: left;
    width: 33%;
}

#pagination .previous {
    text-align: left;
}

#pagination .pages {
    text-align: center;
}

#pagination .next {
    text-align: right;
}

.countdownclock {
width: 100%;
	text-align: center;
}
.countdownclock img {
border: 2px solid black;
margin: auto;
}
