<!--
	/*	
		styles/DARK.CSS
		Dark stylesheet by Alex Suzuki, created on January 14, 2001

		
		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: #777777 */;
	}

	/* Message style, fixed-width seems to be a good choice */
    .message {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 13px;
    	font-style: normal;
    	color: #000000;

    }

	/* Background color of message text */    
    td.message {
    	background-color: #F2F2F2;
    }    
    
    /* Background for titles */
    td.title {
    	background-color: #DDDDDD;
    }
        
    /* This is the background color for the surrounding <TD> tag */
    td.border {
    	background-color: #FFFFFF;
    }


	/* KLH Style of h2 tag, color = text color; background = background color */
	h2 {
		color: #000000;
	}
    


	/* Standard and alternative background colors for forum view */
	td.msgstd {
		background-color: #FFFFFF;
		height: 20px;
		color: #000000;
	}	
	td.msgalt {
		background-color: #CCCCFF;
		height: 20px;
		color: #000000;
	}
	td.norm {      /* KLH */
		background-color: none;
		//height: 100px;
		color: #000000;
		background: none;
	}

	/* 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: Arial, Helvetica, sans-serif; font-size: 12px; font-style: normal }
    .b { font-family: Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold }
    .redb { font-family: 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}
    .bigh { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 16px; font-style: normal; font-weight: bold; }
    .bigh2 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 30px; font-style: normal; font-weight: bold; background-color: #FFFFFF;}
    .s { font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-style: normal }


	/* Background color, link styles for controls */
	td.controls {
		background-color: #D0D0D0;
	} 
    a.controls {    	
    	color: #0000FF;
    }
    a.controls:hover {
    	color: #FF0000;
    }

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

	    
    /* Forum header styles, the line where it says "author, subject, date" etc. */
    td.forumheader {
    	font-weight: bold;
    	background-color: #929292
    }    
    /* The font which is used in .forumheader table cells (see above) */
    .fhead {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 12px;
    	font-style: normal;
    	color: #FFFFFF
    }
        
    /* standard = white */
    td.standard {
    	background-color: #FFFFFF;
    	color: #000000;
    }

	/* The panel where the users info is displayed (last post, total posts) */
	td.userinfo {
		background-color: #C6C6C6;
		color: #000000;
	}	
	
	/* 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: Arial, Helvetica, sans-serif;
		background-color: #CCCCCC;
		font-size: 12px;
	}	
	.button {
		font-family: 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;
	}
-->