<!--

	/*	
	CYPHOR.CSS
		Global Stylesheet. This file will configure the look of Cyphor. You can always revert to the
		default settings by using the configuration in styles/default.css
	
	    Style of body tag, color = text color; background = background color 
	*/



	body {
		color: #000000; 
		background: #b2cf63;
		border-top-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-left-width: 0px
	}
 
 	/* Message style, fixed-width seems to be a good choice */
    .message {
    	font-family: Courier New, Courier, monospace;
    	font-size: 12px;
    	font-style: normal
    }

	/* Background color of message text */    
    td.message {
    	background-color: #FFFFFF;
    }    

    /* Background for titles */
    td.title {
    	background-color: #666633;
    }

    /* This is the background color for the surrounding <TD> tag */
    td.border {
    	background-color: #000000;
    }
    td.whiteborder {
    	background-color: #FFFFFF;
    }

	
	/* Standard and alternative background colors for forum view */
	td.msgstd {
		background-color: #FFFFFF;
		height: 20px;
	}	
	td.msgalt {
		background-color: #eaeaea;
		height: 20px;
	}

	/* These are the most frequently used styles.
		.t = standard (text) style
		.b = standard bold style
		.redb = red bold style (example: dates of new posts are highlighted with this)
		.i = standard italic style
		.h = standard header style
		.bigh = big header
		.s = standard small style */		
    .t { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal ; color: #ffffFF}    
    .b { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold ; color: FFFF33}
    .redb { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #FF0000; }
    .i { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-style: italic }
    .h { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-weight: bold; color: FFFF33}
    .bigh { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; font-weight: bold}
    .s { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal ; color: #FFFFFF}      
	.sbold { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal; font-weight: bold; }      
	
	/* Background color, link styles for controls */
	td.controls {
		background-color: #666633	} 
    a.controls {    	
    	color: #FFFF33;
    }
    a.controls:hover {
    	color: #99CCFF;
    }

    /* The link style for messages in forum view */
    a.msg {
    	color: #CC0000;
    }
    a.msg:visited {
    	color: #CC0000;
    }
    a.msg:hover {
    	color: #3333FF;
    }

    a.thread {
    	color: #3333FF;
    }
    a.thread:visited {
    	color: #3333FF;
    }
    a.thread:hover {
    	color: #CC0000;
    }
	
    /* The link style for location */
    a.nav {
    	color: #000000;
    }
    a.nav:visited {
    	color: #000000;
    }
    a.nav:hover {
    	color: #3333FF;
    }

    /* Forum header styles, the line where it says "author, subject, date" etc. */
    td.forumheader {
    	font-weight: bold;
    	background-color: #CC9966;
    }    

    /* The font which is used in .forumheader table cells (see above) */
    .fhead {
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	font-size: 12px;
    	font-style: normal;
    	color: #FFFF33    }

    /* standard = white */
    td.standard {
    	background-color: #B2CF63;
    }


	/* The panel where the users info is displayed (last post, total posts) */
	td.userinfo {
		background-color: #FFCC99
	}	

	/* Form styles, you don't really need them, but it looks nicer with them */	
	form {
		/* Internet Explorer uses annoyingly large margins */
		margin-top: 0px;
		margin-bottom: 0px;
	}
	.formbox {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		background-color: #FFFFFF;
		font-size: 12px;
	}	
	.button {
		font-family: Verdana, Arial, Helvetica, sans-serif;
		font-size: 12px;
	}	
	.textarea {
    	font-family: "Courier New", Courier, monospace;
    	font-size: 12px;
    	font-style: normal;
	}
	/* This is for the bullets, don't change it */
	ul {
		margin-bottom: 0px;
		margin-top: 0px;
	}
-->