/*  Copyright 2010,2011  Simon Goodchild  (info@wpsymposium.com)

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License, version 2, as 
    published by the Free Software Foundation.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/

/* ************************ DO NOT EDIT THIS FILE! ************************ 

   Every time you upgrade WP Symposium, this file will be upgraded and all
   changes you have made will be LOST!
   
   INSTEAD, use WP Symposium->Styles->CSS to enter your own styles that will
   replace styles here.

   Note that your theme CSS may over-ride plugin styles such as WP Symposium
   styles. If you want a CSS to not be changed, put !important after it.

   Search this document for !important to see an example.
   
   ************************************************************************ 
*/

/* ============================================================================================================== */
/* GLOBAL STYLES FOR QUICK CHANGE (search for these names elsewhere in the stylesheet for more granular changes)  */
/* ============================================================================================================== */

/* Wrapper around WP Symposium markup - effects everything within */
.symposium-wrapper
{
	overflow: auto;
	width: 100%;
	margin: 0 auto;
	padding: 0px;
	overflow-x: hidden;
	-ms-overflow-x: hidden;
}
.symposium-wrapper * {
	border-radius: 0px;
	-moz-border-radius: 0px;
}

/* Fonts */
.symposium-wrapper,
.symposium-wrapper .symposium-button, .symposium-button, 
.symposium-wrapper input, .symposium-wrapper textarea,
.symposium-wrapper p, .symposium-wrapper li, .symposium-wrapper td, .symposium-wrapper div,
#symposium-search, #symposium-activity-list, #symposium-fav-list {
	font-family: "Lucida Grande","Lucida Sans Unicode",Tahoma,Verdana,sans-serif;
	font-size: 14px;
	line-height: 22px;
	color: #000;
}

.symposium-wrapper a {
	text-shadow: 1px 1px 1px #fff; 
}
.symposium-wrapper a:link, .symposium-wrapper a:visited, .symposium-wrapper a:active {
	color: #000;
	text-decoration: none;
}
.symposium-wrapper a:hover {
	color: #666;
	text-decoration: underline;
}
.symposium-wrapper img 
{
	border: 0;
	margin: 0;
	padding: 0;
}

/* Buttons */
.symposium-wrapper .symposium-button, .symposium-button {
	background-color: #aaa;
	color: #000;
}
.symposium-wrapper .symposium-button:hover, .symposium-button:hover {
	background-color: #666;
	color: #fff;
}

/* Profile - optional included information */
.symposium-wrapper #profile_right_column {
	background-color: #fff;
}

/* Panel (was Notification bar), including chat */
#symposium-notification-bar, #symposium-logout-div {
	background-color: #000;
	color: #fff;
}
#symposium-chatboxes #symposium-who-online,
#symposium-chatboxes #symposium-chatroom, 
#symposium-chatboxes .chat_window, 
.symposium-wrapper .categories_background, 
.symposium-wrapper #mail_tabs .nav-tab-active, 
.symposium-wrapper #mail-main {
	background-color: #fff;
	color: #000;
}
#symposium-chatboxes #chatroom_textarea, 
#symposium-chatboxes .chat_message, 
.symposium-wrapper .wall_reply_div, 
.symposium-wrapper #mail_tabs .nav-tab-inactive {
	background-color:#efefef;
	color: #000;
}

/* "Table" layouts, eg: mail, forum ... */
.symposium-wrapper .table_header {
	background-color: #999;	
	color: #000;
}
.symposium-wrapper .row {
	background-color: #eee;
	color: #000;
}
.symposium-wrapper .row_odd {
	background-color: #ddd;
	color: #000;
}
.symposium-wrapper .row:hover, .symposium-wrapper .row_odd:hover
{
	background-color: #fff;
}

/* Forum */
.symposium-wrapper #new-topic, .symposium-wrapper #edit-topic-div {
	background-color: #fff;	
	color: #000;
}
.symposium-wrapper #starting-post, .symposium-wrapper #child-posts
{
	background-color: #ddd;
	color: #000;
}
.symposium-wrapper .forum_rank {
        color: #000;
        text-shadow: 1px 1px 1px #fff;
}

/* Other */
#symposium-fav-list, #symposium-activity-list, #symposium-search {
	background-color: #fff;	
	color: #000;
	-moz-box-shadow: 3px 3px 4px #000;
	-webkit-box-shadow: 3px 3px 4px #000;
	box-shadow: 3px 3px 4px #000;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}

.symposium_search_highlight {
	background-color: #ff0;
}

.link_cursor {
	cursor: pointer;
}

/* ============================================================================================================== */
/* END OF GLOBAL STYLES SECTION                                                                                   */
/* ============================================================================================================== */



/* CORE CSS =============================================================== */

.symposium-wrapper .hidden {
	display:none;
}

/* Shadow */
.symposium-wrapper .shadow {
	-moz-box-shadow: 3px 3px 4px #000;
	-webkit-box-shadow: 3px 3px 4px #000;
	box-shadow: 3px 3px 4px #000;
	/* For IE 8 */
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000')";
	/* For IE 5.5 - 7 */
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#000000');
}

/* Warning */
.symposium-wrapper .warning {
	margin-left: 0px;
	margin-top: -8px;
	width: 95%;
	border: 1px solid #f00;
	background-color: #f99;
	padding: 6px;
	margin-bottom: 10px;
}

.symposium-wrapper .corners {
	border-radius: 0px;
	-moz-border-radius: 0px;
}

/* text input field */
.symposium-wrapper .new-topic-subject-input, .new-topic-subject-input
{
	width: 95%;
	height:40px;
	font-size: 24px !important;
	padding: 2px;
	border: 1px solid black;
	margin-left: 2px;
}

/* Powered by */
#powered_by_wps {
	width:100%;
	font-style:italic; 
	font-size: 12px;
	text-align:center;
	margin-bottom:35px;
}

/* Buttons */

.symposium-wrapper .symposium-button, .symposium-button
{
	text-align: center; 
	border: 0px;
	margin-right: 10px; 
	margin-bottom: 20px; 
	width: 125px; 
	height: 28px;
	cursor: pointer;
}

.symposium-wrapper .delete_forum_reply, .symposium-wrapper .edit_forum_reply, .symposium-wrapper .delete, .symposium-wrapper .delete_post, .symposium-wrapper .delete_topic,  .symposium-wrapper .delete_reply, .symposium-delete-fav, .symposium-wrapper .edit {
	display:none;
	float: right;
	font-size: 11px;
	color: #f00 !important;
	font-style: normal;
	text-decoration: none;
	margin-right: 5px;
}
.symposium-wrapper .delete_reply {
	padding-top:5px;
}
.symposium-wrapper .clear { clear: both; }

.symposium-wrapper .sep {
	clear:both;
	width:100%;
}


.symposium-wrapper .ui-autocomplete-loading, .ui-autocomplete-loading { 
	background: white url('images/ui-anim_basic_16x16.gif') right center no-repeat;
}

.symposium-wrapper #powered_by {
	clear:both;
	width: 95%;
	font-style:italic; 
	font-size: 10px;
	text-align:center;
}

#symposium_hide {
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=75)";
	filter: alpha(opacity=75);
	-moz-opacity: 0.75;
	-khtml-opacity: 0.75;
 	opacity: 0.75;
	z-index:999990;
}

/* LOGIN =============================================================== */

.symposium-wrapper #login_form {
	margin:0px; 
	width:400px;
}

.symposium-wrapper #symposium_forgotten {
}

/* REGISTER =============================================================== */

.symposium-wrapper #hdn {
	display:none
}

/* Registration form */
.symposium-wrapper #symposium_registration {
}

.symposium-wrapper #symposium_registration_inner {
	margin-left:0px;
}

/* WIDGETS - VOTE YES/NO =============================================================== */

#symposium_chartcontainer {
}

#symposium_vote_forum {
}

#symposium_vote_thankyou {
	display:none;
}

#symposium_vote_thankyou p {
	padding:6px; 
	text-align:center;
}

/* WIDGETS - NEW MEMBERS  ===============================================================*/

#symposium_new_members {
	overflow: auto; 
	margin-bottom: 15px
}

.symposium_new_members_row {
	clear:both; 
	margin-top:8px;
}

.symposium_new_members_row_avatar {
	float: left; 
	width:32px; 
	margin-right: 5px;
}

.symposium_new_members_row_member {
}

/* WIDGETS - RECENT MEMBER ACTIVITY =========================================================== */

#symposium_recent_activity {
	overflow: auto; 
	margin-bottom: 15px;
}

.symposium_recent_activity_row {
	clear:both; 
	margin-top:8px;
}

.symposium_recent_activity_row_avatar {
	float: left; 
	width:32px; 
	margin-right: 5px;
}

.symposium_recent_activity_row_post {
}

/* WIDGETS - LATEST FORUM POSTS =============================================================== */

#symposium_latest_forum {
	overflow: auto; 
	margin-bottom: 15px;
}

.symposium_latest_forum_row {
	clear:both; 
	margin-top:8px;
}

.symposium_latest_forum_row_avatar {
	float: left; 
	width:32px; 
	margin-right: 5px;
}

.symposium_latest_forum_row_post {
}

/* NOTIFICATION BAR =============================================================== */


#symposium-notification-bar {
	position:fixed;
	right:0px;
	bottom:0px;
	padding: 4px;
	height: 20px;
	font-size: 10px;
	width: 135px;
	text-shadow: 0px 1px 1px #fff; 
	border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1.00;
	-khtml-opacity: 1.00;
 	opacity: 1.00;
}

#symposium-notification-bar #icons img {
	margin-right: 8px;		
	float: left;		
}

#symposium-logout-div {
	display:none;
	position:fixed;
	right:0px;
	width: 135px;
	bottom:28px;
	padding: 4px;
}

#symposium-chatboxes {
	position:fixed;
	bottom:0px;
	right:144px;
	pointer-events: none;
}

#symposium-chatboxes #symposium-who-online {
	float: right;
	margin-left: 1px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=90)";
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	-khtml-opacity: 0.90;
 	opacity: 0.90;
	width:180px;
	height:240px;
	padding:0px;
	border:1px solid #000;
}
#symposium-chatboxes * {
	pointer-events: auto;
	font-size: 12px;				
}
#symposium-chatboxes .display_name_link {
	text-decoration: none;
	color: #fff;
}

#symposium-who-online {
	display: none;
	padding: 2px;
}
#symposium-friends-online-list {
	height: 218px;
	max-height: 218px;
	overflow: auto;
	width: 100%;
}

#symposium-chatboxes #symposium-chatroom {
	float: right;
	margin-left: 2px;
	border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=90)";
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	-khtml-opacity: 0.90;
 	opacity: 0.90;
	width:360px;
	height:240px;
	padding:0px;
	border:1px solid #000;
	display: none;
}
#symposium-chatboxes #symposium-chatroom_header {
	width:352px;
	height:24px;
	padding:4px 4px 0px 4px;
	color:#fff;
}

#symposium-chatboxes #chatroom_messages {
	width:356px; 
	height:165px;
	overflow:auto;
	padding:2px;
	padding-bottom:7px;
}

#symposium-chatboxes #chatroom_typing_area {
	width:360px; 
	height:40px;
}
#symposium-chatboxes #chatroom_textarea {
	border:0px;
	width:356px;
	height:34px;
}

#symposium-chatboxes .chat_window {
	float: right;
	margin-left: 1px;
	border-radius: 0px;
	moz-border-radius: 0px;
	ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=90)";
	filter: alpha(opacity=90);
	-moz-opacity: 0.90;
	-khtml-opacity: 0.90;
	opacity: 0.90;
	width:360px;
	height:240px;
	padding:0px;
	border:1px solid #000;
}

#symposium-chatboxes .chat_messages {
	width:356px; 
	height:165px;
	overflow:auto;
	padding:2px;
	padding-bottom:7px;
}

#symposium-chatboxes .chat_header {
	width:352px;
	height:24px;
	padding:4px 4px 0px 4px;
	color:#fff;
}

#symposium-chatboxes .chat_message {
	border:0px;
	width:356px;
	height:34px;
}
.symposium_readChat {
	background-color: #000;
}
.symposium_unreadChat {
	background-color: #aaa;
}
 
.symposium_online_name {
	cursor:pointer;
}
.symposium_online_name:hover {
	text-decoration:underline;
}
.symposium_offline_name {
	text-decoration: none;
}
.symposium_offline_name:hover {
	text-decoration: underline;
}
					
#symposium-chatroom-box {
	border-radius: 0px;
	-moz-border-radius: 0px;
	float:right;
	color: #000;
	text-align:center;
	padding:0px;
	cursor: pointer;
	font-weight: bold;
	margin-right: 10px;
	width: 18px;
	height: 18px;
	pointer-events: auto;
}

#symposium-logout {
	border-radius: 0px;
	-moz-border-radius: 0px;
	float:right;
	cursor: pointer;
	margin-right:2px;
	width: 18px;
	height: 18px;
}

#symposium-online-box {
	padding:0px 0px 2px 0px;
	width: 18px;
	height: 16px;	
	text-align:center;
	float: right;
	margin-right:10px;
	cursor: pointer;
}
							
.symposium-online-box {
	border-radius: 0px;
	-moz-border-radius: 0px;
	background-color: #0f0;
	color: #000;
	border: 0px solid #fff;
	font-weight: bold;
	text-shadow: 0px 0px 0px #000 !important; 
}
.symposium-online-box-none {
	border-radius: 0px;
	-moz-border-radius: 0px;
	color: #fff;
	border: 1px solid #fff;
	font-weight: normal;
	text-shadow: 0px 0px 0px #000 !important; 
}

#symposium-email-box {
	padding-top: 0px;
	height: 18px;
}

.symposium-email-box {
	border-radius: 0px;
	-moz-border-radius: 0px;
	float:right;
	color: #000;
	text-align:center;
	padding:0px;
	cursor: pointer;
	font-weight: bold;
	margin-right:10px;
	width: 18px;
	height: 18px;
}
.symposium-email-box-read {
}
.symposium-email-box-unread {
}

.symposium-friends-box {
	border-radius: 0px;
	-moz-border-radius: 0px;
	float:right;
	color: #000;
	text-align:center;
	padding:0px;
	cursor: pointer;
	font-weight: bold;
	margin-right:10px;
	width: 18px;
	height: 18px;
}
.symposium-friends-box-none {
}
.symposium-friends-box-new {
}

/* PROFILE =============================================================== */

.symposium-wrapper #profile_header_div {
	padding:0px;
	width:99%;
	overflow:auto;
}

.symposium-wrapper #profile_header_panel {
	float: left; 
	height: 200px; 
	width: 99%; 
	padding:0px;
}

.symposium-wrapper #profile_details {
	 margin-left: 215px;
}

.symposium-wrapper .symposium_settings_row {
	margin-bottom: 5px;
}

.symposium-wrapper .profile_textarea {
	height:100px;
	width:100%;
}
.symposium-wrapper #profile_name {
	letter-spacing:-1px;
	font-size: 28px;
	padding-top:3px;
	margin-bottom:15px;
	clear:none;
}

.symposium-wrapper #facebook_div {
	margin-top:10px;
}

.symposium-wrapper #symposium_status {
	width:280px; 
	margin: 0px;
}

.symposium-wrapper #symposium_add_update {
	margin:0px; 
	width:75px
}

.symposium-wrapper #profile_send_mail_button {
}

.symposium-wrapper #cancelfriendrequest {
	width:180px;
}

.symposium-wrapper #add_as_friend_title {
	font-weight: bold;
}

.symposium-wrapper #add_as_friend_message {
	overflow: auto; 
	width: 300px;
}

.symposium-wrapper #addfriend {
	margin:0px; 
	width:200px; 
	float: left;
}

.symposium-wrapper #addasfriend {
	margin:0px; 
	float: right; 
	width:75px; 
}

.symposium-wrapper #profile_photo {
	float:left;
	width:215px;
	margin-left:-100%; 
	margin-bottom:20px;
	padding-left:10px;
}

.symposium-wrapper #profile_wrapper {
	padding:0px; 
	padding-bottom:4px; 
	clear: both; 
	overflow: auto;
	margin-top:0px; 	
}

.symposium-wrapper #profile_body_wrapper {
	float: left; 
	overflow:visible; 
	width:100%;
	padding:0px;
	padding-bottom:4px;
}

.symposium-wrapper #profile_body {
	margin-left: 214px;
	overflow:visible;
	padding-right:6px;
}

.symposium-wrapper #profile_menu {
	padding:4px;
	float:left;
	width:204px;
	margin-left:-100%;
}

.symposium-wrapper #profile_right_column {
	overflow:auto;
	float:right;
	padding: 10px;
	width: 260px;
	margin: 0 0 15px 15px;
}

.symposium-wrapper .input-field {
	height:22px;
	font-size: 16px;
	padding: 2px;
	border: 1px solid #aaa;
	margin-left: 2px;
}


.symposium-wrapper .symposium_profile_menu {
	cursor:pointer;
	margin-bottom: 10px;
}

.symposium-wrapper #google_profile_map {
	float: right; 
	height: 230px; 
	width: 230px; 
	margin-left:10px;
	margin-bottom:40px;
}

.symposium-wrapper .add_wall_post_div {
	overflow: auto; 
	padding-top: 10px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 0px;
}

.symposium-wrapper .add_wall_post {
	float: left; 
	overflow:auto; 
	width:100%;
	padding:0px;
}

.symposium-wrapper .add_wall_post_text {
	margin-left: 80px;
	overflow:auto;
}

.symposium-wrapper .add_wall_post_avatar {
	padding-left: 0px;
	float:left;
	width:80px;
	margin-left:-100%;
}

.symposium-wrapper .reply_div {
	padding:0px; 
	padding-bottom:4px; 
	clear: both; 
	overflow: auto;
	margin-top:0px; 
}

.symposium-wrapper .wall_reply_div {
	float: left; 
	overflow:visible; 
	width:100%;
	padding:0px;
	padding-bottom:4px;
}

.symposium-wrapper .wall_reply {
	margin-left: 49px;
	overflow:visible;
	padding-right:6px;
}

.symposium-wrapper .wall_reply_avatar {
	padding:4px;
	float:left;
	width:45px;
	margin-left:-100%;
}

.symposium-wrapper .no_wall_replies {
	padding:4px; 
	padding-bottom:0px; 
	clear: both; 
	overflow: visible; 
	margin-top:10px;
}

.symposium-wrapper .profile_panel_extended_row {
	clear: both; 
	margin-bottom:15px;
	overflow: auto;
}

.symposium-wrapper .profile_panel_extended_row_label {
	font-weight:bold;
}

.symposium-wrapper .profile_panel_friends_div {
	width:99%;padding:0px;overflow:auto
}

.symposium-wrapper .profile_panel_friends_div_title {
	font-weight: bold;
}

.symposium-wrapper .profile_panel_friends_div_row {
	clear:both; 
	width: 99%; 
	margin-bottom: 10px; 
	overflow: auto;
}

.symposium-wrapper .profile_panel_friends_div_avatar {
	float: left; 
	width:42px; 
	margin-right: 5px;
}

.symposium-wrapper #symposium_wall {
	overflow: auto; 
	padding:0px; 
	margin:0px; 
	padding-bottom:5px;
}

.symposium-wrapper .symposium_comment {
	width:300px;
}

.symposium-wrapper .symposium_add_comment {
	width:75px;
}

.symposium-wrapper .wall_post_div {
	overflow: auto; 
	padding-left: 80px;
}

.symposium-wrapper .wall_post_avatar {
	float:left;
	width:74px;
	margin-left: -80px;
}

.symposium-wrapper .wall_post .delete_post {
	margin-right:4px;
}

.symposium-wrapper #view_all_comments_div {
	padding:4px; 
	padding-bottom:0px; 
	clear: both; 
	overflow: visible; 
	margin-top:10px;
}

.symposium-wrapper .reply_field {
	width:200px;
}

/* FORUM =============================================================== */

.symposium-wrapper #symposium-forum-div {
        padding-bottom: 5px;
}

.symposium-wrapper #share_link {
	float: right;
	height: 22px;
	margin-bottom:6px;
}

.symposium-wrapper #share_link img:hover {
	margin-top:-2px;

}

.symposium-wrapper #forum_options {
	float: left;
	margin-bottom: 10px;
}

.symposium-wrapper #share_link div {
	margin-left: 5px;
}
.symposium-wrapper #fav_link {
	margin-left: 5px;
	margin-right: 3px;
}

.symposium-wrapper #new_topic_category {
	width: 200px;
}

.symposium-wrapper #symposium_table
{
	clear: both;
	border: 1px solid #999;
	width: 99%;
	padding: 0px;
	margin-top: 0px;
	overflow: visible;
}

.symposium-wrapper .table_header
{
	clear: both;
	padding: 0px;
	height:36px;
	min-height:36px;
	border-radius:0px;
	-moz-border-radius:0px;
}
.symposium-wrapper .table_topic, .symposium-wrapper .table_startedby, .symposium-wrapper .table_replies, .symposium-wrapper .table_views 
{
	clear: both;
	font-weight: bold;
	padding: 3px;
	color: #000;
	width: 100%;
}
.symposium-wrapper .row
{
	clear: both;
	overflow: auto;
	border-radius: 0px;
	width: 100%;
}
.symposium-wrapper .row_odd
{
	clear: both;
	overflow: auto;
	border-radius: 0px;
	width: 100%;
}

.symposium-wrapper .row_topic, .symposium-wrapper .row_startedby, .symposium-wrapper .row_replies, .symposium-wrapper .row_views
{
	overflow: visible
	border-top: 0px;
	font-weight: normal;
	padding: 6px;
}
.symposium-wrapper .row_link_div
{
	margin-bottom: 5px;
}
.symposium-wrapper .row_link
{
	font-weight: bold;
	font-size: 20px;
}
.symposium-wrapper .row_link_topic
{
	font-weight: bold;
}
.symposium-wrapper .row_link:hover, .symposium-wrapper .row_link_topic:hover
{
	text-decoration: underline;
}
.symposium-wrapper .row_topic_text
{
	font-style: italic;
}

.symposium-wrapper .categories_color {
	color: #fff;
}
.symposium-wrapper .categories_background {
	padding: 6px;
	border-radius: 0;
}

.symposium-wrapper .symposium_subscribe_option
{
	clear: both;
	margin-top: 0px;
}

.symposium-wrapper .breadcrumbs
{
	font-weight: bold;
}

.symposium-wrapper #forum_breadcrumbs {
	clear: both;
	margin-top: 10px;
	margin-bottom: 10px;
}

.symposium-wrapper #topic_breadcrumbs {
	margin-bottom:15px;	
}

.symposium-wrapper #forum_breadcrumbs a, .symposium-wrapper #topic_breadcrumbs a {
	padding: 0px;
}

.symposium-wrapper .table_topic, .symposium-wrapper .row_topic
{
	border-radius: 0px;
}

.symposium-wrapper .table_topic
{
 	text-decoration:none;
 	float: left;
	font-weight: bold;
	font-size: 20px;
}

.symposium-wrapper .table_startedby, .symposium-wrapper .row_startedby
{
	float: right;
	margin-left: 15px;
	width: 40%;
	border-radius: 0px;
}

.symposium-wrapper .table_replies, .symposium-wrapper .row_replies
{
	float: right;
	width: 60px;
	border-radius: 0px;
	text-align: center;
}

.symposium-wrapper .table_views, .symposium-wrapper .row_views
{
	border-radius: 0px;
	float: right;
	width: 60px;
	text-align: center;
}

.symposium-wrapper .avatar_last_topic {
	margin-right:5px;
	margin-bottom:0px; 
	padding-bottom: 0px;
}

.symposium-wrapper .post_count {
	margin-top:4px;
	font-weight: bold;
	font-size: 24px;
}

.symposium-wrapper .post_count_label {
	margin-top:-4px;
	font-size:8px;
}

.symposium-wrapper #topic-links
{
	list-style-type:none;
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
	color: #000;
}

.symposium-wrapper #new-topic-button {
	width: 120px;
}

.symposium-wrapper #new-topic, .symposium-wrapper #edit-topic-div, #symposium-fav-list, #symposium-activity-list, #symposium-search
{
	width: 97%;
	overflow:visible;
	margin-top: 10px;
	margin-bottom: 15px;
	padding-left: 15px;
	padding-top: 10px;
	border: 1px solid #000;
	z-index: 99999999;
}

#forum_activity_all_new_topics {
	width: 33%;
	float: left;
}

#forum_activity_new_topics {
	width: 33%;
	float: left;
}

#forum_activity_replies {
	width: 33%;
	float: right;
}

#symposium-activity-list #forum_activity_title {
	font-weight:bold;
	margin-bottom:10px;
}

#symposium-activity-list .forum_activity_new_topic_subject, #symposium-fav-list .forum_activity_new_topic_subject {
	margin-top: 10px;
}

#symposium-activity-list .forum_activity_new_topic_subject a, #symposium-fav-list .forum_activity_new_topic_subject a {
	font-weight: bold;
	text-decoration: none;
}
#symposium-activity-list .forum_activity_new_topic_subject a:hover, #symposium-fav-list .forum_activity_new_topic_subject a:hover {
	text-decoration: underline;
}

.symposium_search_subject_row_div {
	margin-top:20px;
}
.symposium_search_subject {
	font-weight:bold;
}

.symposium-wrapper #edit-topic-div, #symposium-fav-list, #symposium-activity-list, #symposium-search
{
	display: none;
	width: 700px;
	height: 325px;
}
.symposium-wrapper .new-topic-subject-text, .symposium-wrapper .reply-topic-subject-text, .symposium-wrapper .reply-topic-text
{
	width: 95%;
	height: 120px;
	border: 1px solid black;
	padding: 4px;
	margin-bottom: 15px;
	z-index: 99999999;
}
.symposium-wrapper #reply-topic, .symposium-wrapper #reply-topic-bottom
{
	width: 80%;
	clear: both;
	overflow: visible;
	padding-top: 10px;
	margin-top: 20px;
}
.symposium-wrapper #reply-topic {
	margin-bottom: 10px;
	padding-left: 15px;
	border: 1px solid #000;
}

.symposium-wrapper .emailreplies 
{
	margin-bottom: 15px;
}

.symposium-wrapper .new-topic-category
{
}

.symposium-wrapper .trusted {
	background-color: #ccf;
}

.symposium-wrapper #showmore_forum {
	padding: 6px;
}

/* Post and Thread */

.symposium-wrapper #starting-post, .symposium-wrapper #child-posts
{
	border: 1px solid #aaa;
	padding-right: 5px;
	padding: 4px 10px 4px 10px;
	clear: both;
	margin-bottom:15px;
}
.symposium-wrapper .topic-post-post
{
	clear: both;
	margin-top:8px;
}
.symposium-wrapper .topic-post-header-with-fav
{
	overflow:auto;
	padding: 6px 10px 10px 0px;
}
.symposium-wrapper .topic-post-header
{
	text-shadow: 1px 1px 1px #fff; 
	font-size: 28px;
	line-height: 32px;
	margin-bottom: 0px;
	padding-top: 0px;
	float: left;
	width:100%;
}
.symposium-wrapper .topic-edit-icon, .symposium-wrapper .topic-delete-icon, .symposium-wrapper .topic-edit-delete-icon {
	float:right;
	width:16px;
	height:16px;
}
.symposium-wrapper .topic-edit-delete-icon {
	width:42px;
}
.symposium-wrapper .started-by
{
	font-size: 16px;
	color: #aaa;
	font-style: italic;
	margin-bottom: 6px;
}
.symposium-wrapper .floatright
{
	float: right;
	margin-bottom: 10px;
}
.symposium-wrapper .floatleft
{
	float: left;
	margin-bottom: 10px;
}
.symposium-wrapper .child-reply 
{
	clear: both;
	padding: 6px;
	overflow:visible;
	border-bottom: 1px dotted #000;
}
.symposium-wrapper .avatar 
{
	float: left;
	margin-right: 10px;
	margin-bottom: 3px;
}
.symposium-wrapper child-posts .child-reply .child-reply-post 
{
	margin-bottom: 115px;
}
.symposium-wrapper child-posts .child-reply .child-reply-post p
{
}

/* BB Codes */

.symposium-wrapper .child-reply-post pre {
	border:1px solid #000;
	background-color: #ffffdd;
	padding: 4px;
	font-family: courier;
	font-size: 6px;
}

/* AVATAR ============================================================== */

.symposium-wrapper #image_to_crop {
	float:left; 
	margin-bottom:25px
}

.symposium-wrapper #image_preview {
	clear: both; 
	float:left;
	width:100px;
	height:100px;
	overflow:hidden;
}

.symposium-wrapper #image_instructions {
	margin-left: 20px; 
	float: left;
	width: 250px;
}

/* MEMBERS ============================================================== */

.symposium-wrapper #members_go_button {
	float: left; 
	height:46px;
}

.symposium-wrapper .members_row {
	clear:both; 
	margin-top:8px; 
	overflow: auto; 
	width:95%; 
	margin-bottom: 0px;
	padding:6px;
}

.symposium-wrapper .members_info {
	width:100%; 
	padding-left: 75px; 
	margin-left:-75px;
}

.symposium-wrapper .members_location {
	float: right;
	font-style:italic;
	text-align:right;
}

.symposium-wrapper .members_avatar {
	float: left; 
	width:75px;
}

.symposium-wrapper .members_search_box {
	width:55%;
}

/* Small search bar */

#symposium_small_members {
	margin-top:3px; 
	margin-right:15px; 
	width:230px; 
	overflow:hidden;
}

#symposium_small_members_button {
	float:right; 
	margin-top:2px;
	color:#fff;
	padding:0px;
	cursor:pointer;
	font-size:8px;
	height:20px;
	text-align:center;
	width:20px;
	overflow:hidden;
}

#symposium_small_members_input {
	float:left;
	overflow:hidden;
}

#symposium_member_small {
	width:200px; 
	height:20px;
	font-size:10px;
	margin: 2px 0px;
	padding: 0px;
}

/* MAIL ============================================================== */

.symposium-wrapper #search {
}

.symposium-wrapper #trays {
	float: left;
	margin-right: 10px;
	padding-top: 4px;
}

.symposium-wrapper #mailbox {
	width: 35%;
	float: left;
}

.symposium-wrapper #messagebox {
	width: 60%;
	float: right;
}

.symposium-wrapper #mail_sent_message {
	display: none;
	padding: 4px;
	text-align: center;
	width: 100%;
	border: #660;
	margin-bottom:15px;
}

.symposium-wrapper #message_header {
	padding-bottom:10px; 
	overflow:visible;
}

.symposium-wrapper #message_header_avatar {
	width:44px; 
	margin-right: 5px; 
	float:left;
}

.symposium-wrapper #message_header_delete {
	float: left;
}
.symposium-wrapper #message_header_reply {
	float: left;
}
.symposium-wrapper .message_delete,.symposium-wrapper .message_reply {
	width:75px; 
}

.symposium-wrapper .mailbox_message_from {
	font-weight:bold;
}

.symposium-wrapper .mailbox_message_subject {
	font-weight: bold;
}

.symposium-wrapper .mail_item_age {
	font-style:italic;
}

.symposium-wrapper .mailbox_message {
}


.symposium-wrapper .send_button {
	float:right; 
	margin-top:22px;
}

.symposium-wrapper .mail_item {
	cursor:pointer;
	width: 98%;
	border-bottom: 1px solid #aaa;
	padding-top:4px;
	padding-bottom:4px;
}

.symposium-wrapper #mail_send_button, .symposium-wrapper #mail_cancel_button {
	height: 48px;
}

.symposium-wrapper #compose_button {
	float:right;
	margin-right:0px;	
}

.symposium-wrapper #compose_subject {
	width: 97%;
}

.symposium-wrapper #compose_mail_message {
}

.symposium-wrapper #compose_text {
	height:300px;
	width: 97%;
}

.symposium-wrapper #message_mail_message {
	clear: both;
	padding-top:10px;	
}

.symposium-wrapper #mail_tabs {
	width: 100%;
	border-radius:0px;
	-moz-border-radius:0px;
	margin-left: 10px;
	overflow: visible;
	position: relative;
	top: 1px;
}

.symposium-wrapper .mail_tab {
	border: 1px solid #000;
	padding: 8px;
	border-radius:0px;
	-moz-border-radius:0px;
	width: 20%;
	text-align: center;
	float: left;
	margin-right: 10px;
}

.symposium-wrapper #mail_tabs .nav-tab-active {
	z-index: 3;
	border-bottom: 1px solid #fff;
}
.symposium-wrapper #mail_tabs .nav-tab-inactive {
	z-index: 1;
	border-bottom: 1px solid #000;
}

.symposium-wrapper #mail_tabs .nav-tab-active-link {
	text-decoration: none;
	color: #000;
	font-size: 18px;
}

.symposium-wrapper #mail_tabs .nav-tab-inactive-link {
	text-decoration: none;
	color: #999;
	font-size: 18px;
}

.symposium-wrapper #mail-main {
	clear: both;
	z-index: 2;
	overflow: hidden;
	width: 95%;
	border: 1px solid #000;
	padding: 10px;
	margin-bottom: 15px;
}
.symposium-wrapper .mail_item {
	padding: 4px;
}

.symposium-wrapper #mail-main #inbox *, .symposium-wrapper #mail-main #sentbox * {
	border-radius:0px;
	-moz-border-radius:0px;
}
	
.symposium_notice, .symposium_pleasewait {
	position: absolute;
	padding: 10px 20px 10px 20px;
	border: 2px solid #000;	
	background-color: #fff;
	display: none;
	font-size: 14px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-moz-box-shadow: 3px 3px 4px #999;
	-webkit-box-shadow: 3px 3px 4px #999;
	box-shadow: 3px 3px 4px #999;
	-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999')";
	filter: progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=135, Color='#999999');
}

/* OTHER ============================================================== */

.ui-autocomplete {
	max-height: 300px;
	overflow-y: auto;
	/* prevent horizontal scrollbar */
	overflow-x: hidden;
	/* add padding to account for vertical scrollbar */
	padding-right: 20px;
}
/* IE 6 doesn't support max-height
 * we use height instead, but this forces the menu to always be this tall
 */
* html .ui-autocomplete {
	height: 150px;
}

