/* CSS Document */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
    text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
    font-family: Source Sans Pro;
    height: 100%;
}
body{
    background-color: #9C9F84;
    font-size: 20px;
    height: auto;
    font-family: "times new roman";
}
#move_top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#move_top:hover {
  background-color: #555;
}
.container{
    width: 1330px;
    height: 100%;
    margin: auto;
}

header{
    width: 100%;
    height: 50px;
    background-color: #5C755E;
    margin: 10px 0px 5px 0px;
}
#logo{
    height: 80%;
    margin: 0px;
    padding-top: 7px;
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 0px;
}
#search{
    padding-right: 20px;
    float: right;
    height: 50px;
    line-height: 50px;
}
.search-container {
  float: right;
  height: 50px;
}
#search_bar{
    height:30px;
    width: 200px;
    background: -webkit-gradient(linear, left top, right top, from(#E5E4D7), to(white));
    background: linear-gradient(to right, #E5E4D7, white);
    font-size:16px;
    border: none;
    padding-left: 10px;
    border-top-left-radius:5px;
    border-bottom-left-radius:5px;
    -webkit-transition: width 0.3s; /*Safari*/ 
    -webkit-transition-timing-function: linear; /*Safari*/ 
    transition: width 0.3s;
    transition-timing-function: linear;
}
#search_bar:hover{
    width: 300px;
    background: -webkit-gradient(linear, left top, right top, from(white) , to(#E5E4D7));
    background: linear-gradient(to right, white , #E5E4D7);
}
#search_btn{
    height:30px;
    background-color: #ccc;
    font-size:16px;
    margin-left: -5px;
    border: none;
    border-top-right-radius:5px;
    border-bottom-right-radius:5px;
    cursor: pointer;
}
nav{
    width: 100%;
    height: 40px;
    margin: 0px;
    padding: 0px;
    position: relative;
    background-color: #0F0F0F;
}

#menu{
    margin-left: 5px;
    height: 40px;
    float: left;
}
nav ul li{
    margin:0px;
    display: inline-block;
    
}
#menu_btn{float: right;margin-right: 5px;}
.nav-menu{
    background-color:#656565;
    padding:8px 5px;
    color:white;
    border-radius: 5px;
    border: none;
}
.dropbtn{
    padding:8px 10px;
    border: none;
    background-color: #000000;
    border-radius: 5px;
}
nav ul li a{
    padding: 8px 5px;
    font-size: 90%;
    border-radius: 5px;
    border-right: 1px solid white;
    line-height: 40px;
    color: #FFFFFF;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}
nav ul li a:hover {
    color: #3D3D3D;
    background: -webkit-gradient(linear, left top, right top, from(white) , to(#E5E4D7));
    background: linear-gradient(to right, white , #E5E4D7);
    border-radius: 5px;
}
#user_dropdown{
    float: right;
    position: relative;
}
.userNameDetails{
    color: white;
    cursor: pointer;
    line-height: 40px;
    margin-right: 10px;
    border: 1px solid gray;
    padding: 2px 10px;
}
#user_dropdown img{
    height: 38px;
    float: right;
    cursor: pointer;
    margin-top: 1px;
    margin-right: 10px;
    position: relative;
    border-radius: 19px;
}
#user_dropdown img:hover, .userNameDetails:hover{
    opacity: 0.7;
}
#profile_content{
    display: none;
    top: 40px;
    right: 0px;
    position: absolute;
    background-color: #0F0F0F;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(3, 3, 3, 0.37);
    box-shadow: 0px 8px 16px 0px rgba(3, 3, 3, 0.56);
    padding: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 1;
}
#profile_content a{
    width: 100px;
    float: right;
    text-align: right;
    color: #FFFFFF;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    -webkit-transition: hover .4s;
    transition: hover .4s;
}
#profile_content #logout{
    color: red;
}
#profile_content #logout:hover{
    color:darkorange;
}
#profile_content a:hover{
    color: #3D3D3D;
    background-color: #E5E4D7;
}
#user_dropdown:hover #profile_content{
    display: inline-block;
}
.active-cat{
    color: #3D3D3D;
    background-color: #E5E4D7;
    border-radius: 5px;
}
.dropdown-content {
    display: none;
    position: absolute;
    right: 0px;
	background-color: #0F0F0F;
    min-width: 160px;
    -webkit-box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
	border-bottom:1px solid black;
    border-left:1px solid black;
    border-right:1px solid black;
}
.dropdown-content a {
    color: white;
	margin: 6px 5px;
    padding: 0px 6px;
    text-decoration: none;
    display: block;
    border: none;
    text-align: center;
}
.show{display:block;}
aside{
    width: 22%;
    height: 100%;
    min-height: 760px;
    float: right;
    background-color: #CFCFCF;
    clear: right;
    margin: 5px 0px;
    padding: 15px;
}
#email_feeds{
    border:1px solid #ccc;
    padding:3px;
    text-align:center;
}
#email_tb{
    font-family: Source Sans Pro;
    margin: 5px 0px;
    width: 270px;
    height: 30px;
    border: 1px solid slategray;
    border-radius: 5px;
    color:darkgray;
    text-align: center;
    font-size: 16px;
    line-height: 30px;
    
}
#email_tb:hover{
    background-color: darkgray;
    color: black;
}
#feed_submit{
    margin: 0px 0px 5px 0px;
    padding: 5px 10px;
    font-size: 16px;
    color: white;
    background-color: #171717;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
#feed_submit:hover{
    color: black;
    background-color:  slategray;
}
#social img{
    width: 295px;
    margin: 10px 0px;
}
.aside_p{
    color: #2A6678;
    background-color: #9C9F84;
    text-align: center;
    font-size: 20px;
    padding: 5px 0px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
#aside_post{
    text-align: left;
}
#aside_post p{
    margin: 0px !important;
    padding: 0px !important;
    text-align: left;
    word-wrap: break-word;
    word-break: keep-all;
}
#aside_post a{
    color: #800080;
    font-size: 19px;
    position: relative;
}
#aside_post a:hover{
    color: seagreen;
}
#aside_post img{
    margin: 5px 0px 5px 5px;
    width: 100px;
    float: right;
    clear: left;
    height: 66px;
    border:1px solid gray;
    -webkit-box-shadow: 3px 2px 5px 4px rgba(107,107,107,0.56);
    box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.10);
}
#aside_post img:hover{
    border: 1px solid green;
    opacity: 0.7;
}
#aside_post span{
    background-color: white;
    padding: 0px 7px;
    border-radius: 10px;
}
main{
    width: 72.5%;
    min-height: 760px;
    float: left;
    position: relative;
    background-color: #E5E4D7;
    clear: left;
    margin: 5px 0px;
    padding: 0px 20px 30px 20px;
    text-align: justify;
    color:#0F404F;
    font-size: 100%;
}
main h2{
    color: #800080;
    clear:left;
    font-size: 24px;
    padding: 10px 0px 0px 0px;
    margin:10px 0px 0px 0px;
}
main h2 a{
    color: #800080;
}
main a:hover{
    color: seagreen;
}
main span{
    color: rgba(84,84,85,0.53);
    clear:left;
    font-size: 90%;
    padding:0px;
    margin:0px;
}
main img{
    width:150px;
    height:100px;
    float:left;
    position: relative;
    margin:6px 20px 5px 0px;
    border:1px solid gray;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    -webkit-box-shadow: 3px 2px 5px 4px rgba(107,107,107,0.56);
    box-shadow: 2px 2px 3px 3px rgba(0,0,0,0.10);
}
main img:hover{
    border: 1px solid green;
    opacity: 0.7;
}
#post_content{
    color:#2A6678;
    padding-top:5px;
}
#post_img{
    width:400px;
    height:266px;
}
#post_img:hover{
    opacity: 1;
    border: 1px solid gray;
}
.line{
    clear:both;
    margin:20px 0px 0px 0px;
    width:100%;
    border:1px solid #9C9F84;
}
footer{
    width: 100%;
    height: 50px;
    line-height: 25px;
    margin: 0px 0px 5px 0px;
    background-color: #0F0F0F;
    clear: both;
    text-align: center;
}
footer a{
    color:burlywood;
    margin: 0px;
    padding: 2px 10px;
}
footer a:hover{
    color: #ddd;
    background-color: black;
    border-radius: 5px;
}
footer p{
    color: burlywood;
    text-align: center;
    /*line-height: 50px;*/
}

#insert_post h1{
     text-align: center;
    color: #077A06;
    background-color: #9C9F84;
    font-size: 120%;
}
#insert_post label{
    color: #2F2525;
}
#insert_post input {
    width: 100%;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    margin: 5px 0px;
    padding: 0px 10px;
    color: #2D022D;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    -webkit-box-shadow: 1px 1px 3px 5px #B7B9A5;
    box-shadow: 1px 1px 3px 2px #B7B9A5;
}

.insert_post {
    width: 800px;
    margin: 50px 256px;
    padding: 20px;
    background-color: #E5E4D7;
}

textarea {
    font-family: Source Sans Pro;
    resize: none;
    width: 100%;
    height: 300px;
    line-height: 30px;
    font-size: 18px;
    margin: 5px 0px;
    padding: 0px 10px;
    color: #2D022D;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-color: white;
    -webkit-box-shadow: 1px 1px 3px 5px #B7B9A5;
    box-shadow: 1px 1px 3px 2px #B7B9A5;
    overflow-y:scroll;
}
.sticky {
  position: fixed;
  top: 0;
  width: 98.6%;
  min-width: 1330px;
  z-index: 1;
}
.fsticky{
    position: fixed;
    min-width: 160px;
    top: 40px;
    right: 9px;
    z-index: 2;
}
.Page_number{
    color: white;
    margin:0px;
    padding:5px 15px;
    
}
.Page_number:hover{
    background-color: #ccc;
    color: black;
}
.green{
    background-color: darkgreen !important;
}
.green:hover{
    background-color: #ccc !important;
}

.pagination {
    height: 35px;
    width: 100%;
    margin: 30px 0px -20px 0px;
    background-color: #353535;
    text-align: center;
    line-height: 35px;
    cursor: default;
    
}
#rmlink{
    float:right;
    padding:0px 5px;
    margin-top:5px;
    border-radius:5px;
    font-size:25px;
    color:white;
    background-color:#1B1B1B;
    clear:right;
}
#rmlink:hover{
    color: black;
    background-color: slategray;
}

.loginsection {
    width: 100%;
    padding: 20px;
}

#loginform {
    width: 400px;
    background-color: #3D3D3D;
    text-align: left;
    padding: 20px;
    margin: 30px 25%;
    color: white;
}
#loginform h1{
    margin: -10px 0 0 0;
    text-align: center;
    color: white;
}
#loginform input{
    width: 97%;
    height: 30px;
    line-height: 30px;
    font-size: 20px;
    padding-left: 10px;
}
#loginform p{
    float: right;
    margin: 20px 0 0;
}
#loginform a{
    display: block;
    width: 150px;
    color: #B38B00;
    text-align: right;
}
#loginform a:hover{
    color: white;
}
#login{
    color: white;
    background-color: #5C755E;
    width: 100px !important;
    height: 40px !important;
    margin: 10px 0px;
    cursor: pointer;
    border: none;
}
#login:hover{
    color: black;
    background-color: #9C9F84;
}
#comment_section{
    font-family: Source Sans Pro;
    background-color: #5C755E;
    width: 72.5%;
    height: 100%;
    float: left;
    clear: left;
    margin: 0px 0px 5px 0px;
    padding: 10px 20px 10px 20px;
}
#comment_form {
    color: white;
    margin: 10px 0px;
}
#comment_form h2{
    text-align: center;
    background-color: #121111;
    padding: 0px;
}
#comment_form input{
    padding-left: 10px;
    width: 300px;
    height: 25px;
    font-size: 16px;
    line-height: 25px;
    margin: 10px 0px;
}
#comment_form p{
    text-align: right;
    float: right;
    clear: right;
    margin: 20px 0px 0px;
}
#sub_comm_btn {
    width: 100px;
    height: 40px!important;
    color: white;
    background-color: #9C9F84;
    border: none;
    cursor: pointer;
}
#sub_comm_btn:hover{
    color: black;
    background-color: #E5E4D7;
}
#user_comment{
    font-family: Source Sans Pro;
    background-color: #5C755E;
    width: 72.5%;
    height: 100%;
    float: left;
    clear: left;
    color: white;
    margin: 0px 0px 5px 0px;
    padding: 10px 20px 10px 20px;
}
#user_comment h2{
    text-align: center;
    background-color: #121111;
    padding:0px;
    margin: 0px 0px 10px 0px;
}
#user_comment h4{
    color: white;
}
#user_comment span{
    font-size: 18px;
    color: rgba(203,202,202,0.70);
}
#user_comment p{
    color: #00d694;
    font-family: Source Sans Pro;
    font-style: italic;
}
 .com_count{
	 text-align:right;
	 display:inline-block;
	 color:black;
	 background-color:white;
	 margin-left:20px;
	 padding:2px 10px;
	 border-top-right-radius: 10px;
	 border-bottom-left-radius: 10px;
	 -webkit-box-shadow: 1px 1px 3px 5px #B7B9A5;
     box-shadow: 1px 1px 3px 2px #B7B9A5;
 }
#registrationform{
    width: 400px;
    background-color: #3D3D3D;
    text-align: left;
    padding: 20px;
    margin: 30px 25%;
    color: white;
}
#registrationform h1{
    margin: -10px 0 0 0;
    text-align: center;
    color: white;
}
#registrationform input{
    width: 97%;
    height: 30px;
    margin-bottom: 10px 0px;
    line-height: 30px;
    font-size: 20px;
    padding-left: 10px;
}
#registrationform select{
    width: 100%;
    height: 35px;
    line-height: 30px;
    font-size: 20px;
    padding-left: 5px;
    color:#6c6c6c;
}
#registrationform p{
    float: right;
    margin: 20px 0 0;
}
#registrationform a{
    margin-left: 83px;
    width: 150px;
    color: #B38B00;
    text-align: right;
}
#registrationform a:hover{
    color: white;
}
#registrationform span{
    display: inline;
    color: aliceblue;
    text-align: right;
}
#register{
    color: white;
    background-color: #5C755E;
    width: 100px !important;
    height: 40px !important;
    margin: 10px 0px;
    cursor: pointer;
    border: none;
}
#register:hover{
    color: black;
    background-color: #9C9F84;
}
#pass_check{
    margin: 0px 5px 0px 0px;
    width: 10px !important;
    height: 10px !important;
    
}
/*#show_pass{
    margin-top: -20px;
}*/
.hidden{
    display: none;
}
.enable{
    display: block;
}
#mediashare_count{
   text-align: right;
}