ol, ul, li {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Sidebar */

.board_index {
    position: relative;
    padding-right: 280px;
    clear: left;
    position: relative;
}

.forums {
    width: 100%;
    float: left;
    position: relative;
}

.sidebar {
    width: 270px;
    margin-right: -280px;
    float: right;
}

#toggle_sidebar {
    position: absolute;
    right: -5px;
    top: -12px;
    z-index: 8000;
    background: #eee;
    padding: 3px 7px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #333;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
}

#toggle_sidebar:hover {
    opacity: 1 !important;
}

.sidebar:hover #toggle_sidebar, 
.board_index.no_sidebar #toggle_sidebar {
    opacity: 0.1;
}

.sidebar_border {
    background: #242424;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 10px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    width: 100%;
}

.sidebar_content {
	padding: 10px;
}

.sidebar_thead {
    margin: -10px -10px 10px -10px;
    color: #fff;
    text-shadow: rgba(0,0,0,0.5) 0px -1px 0px;
    background: #202020;
    padding: 10px;
    -webkit-border-top-left-radius: 3px;
    -webkit-border-top-right-radius: 3px;
    -moz-border-radius-topleft: 3px;
    -moz-border-radius-topright: 3px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 0 0 #B63628;
    transition: all .4s ease-in-out;
}

.sidebar_border:hover .sidebar_thead {
    box-shadow: inset 0 -3px 0 #B63628;
}

.register-note {
    font-size: 13px;
    color: #eee;
    margin-bottom: 7px;
}

#portal_thread {
    margin: -10px;
    background: #282828;
}

#portal_thread > li {
    overflow: hidden;
    margin: 10px 0;
    padding: 7px;
    box-shadow: inset 0px 0 0 rgba(0,0,0,0.12);
    transition: all .5s ease-in-out;
    border: 1px solid #2d2d2d;
}

#portal_thread > li:hover {
	box-shadow: inset -300px 0 0 rgba(0,0,0,0.12);
}

#portal_thread > li > .thread_content {
    line-height: 18px;
    word-wrap: break-word;
    margin-left: 0;
}

#portal_thread > li#timespt {
    transition: all 0.5s;
    border-bottom: 1px solid #242424;
}

#portal_thread > li#timespt:hover {
    cursor: pointer;
    background-color: #1e1e1e;
}

#portal_thread:first-child > li {
    margin-top: -10px;
    border-top: 0;
}

#portal_thread:last-child > li {
	margin-bottom: -10px;
    border-bottom: 0;
}	
		
		
		