/* $Id: step1.css,v 1.9 2003/08/18 04:38:28 csnyder Exp $ */

/* 
Berylium Step1 stylesheet
This is probably a good minimum level of styling.

Based loosely on Right Menu from bluerobot.com's layout reservoir:
        http://bluerobot.com/web/layouts/default.asp

Helpful note: CSS definitions that apply to four sides of a box are declared clockwise-- top right bottom left.
*/

/* HTML ELEMENTS 
	Berylium tries to use plain HTML where possible so that stylesheets aren't strictly necessary.
*/

body {
	margin:0px;
	padding:0px;
	font-family: Verdana, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #444;
	border-width: 1px;
	border-color: #ccc;
	}
h1 {
	/* h1 is used for object and page titles */
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 28px;
	line-height: 28px;
	font-weight: 900;
	color: #aaa;
	margin: 0px 0px 15px 0px;
	}
h2 {
	/* h2 is used for subsections of pages. eg, folders, images, documents on an index */
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 24px;
	font-weight: 500;
	color: #888;
	margin: 10px 0px 10px 0px;
	}
h3 {
	/* h3 is used for group headings for groups of similar items. */
	font-size: 14px;
	line-height: 18px;
	color: #aaa;
	margin: 10px 0px 10px 0px;
	}
h4 {
	/* h4 is used for contents info (35 posts in 20 blogs) and item titles in indexes */
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 16px;
	color: #888;
	margin: 10px 0px 3px 0px;
	}
h4 img { 
	vertical-align: text-top;
	margin-right: 3px;
	}
h5 {
	/* h5 is currently unused*/
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 14px;
	font-weight: bold;
	color: #888;
	margin: 10px 0px 3px 0px;
	}
h6 {
	/* h6 is used for the most incidental of information */
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 13px;
	font-weight: normal;
	color: #aaa;
	margin: 0px 0px 0px 0px;
	}


blockquote {
	margin: 10px;
	}
p {
	margin: 0px;
	}
a {
	text-decoration: none;
	color: #09c;
	font-weight: 600;
	}
a:link { 

	}
a:visited { 
	color: #07a;
	}
a:hover { 
	background-color:#eee;
	}
b { 
	
	}
img {
	border-style: none;
	}
pre {
	font-family: Courier, fixed;
	}
hr {

	}

table {
	width: 100%;
	margin: 5px;
	border-color: #ccc;
	border-width: 1px;
	border-style: none;
	margin: 10px 5px 30px 5px;
	font-size: 12px;
	}
table td {
	border-color: #eee;
	border-width: 1px;
	border-style: none;
	padding: 5px;
	margin: 0px;
	}
table h4 {
	margin: 0px;
	}



/* GENERIC CONSTRUCTS -- referenced by class 
	These styles tend to be used in a number of different places on the page, and for different types of objects
*/

/* tableheaders and footers are used at the top and bottom of lists of objects */
.tableheader td {
	background-color: #336;
	color: white;
	font-weight: bold;
	padding: 5px;
	border-style: solid;
	border-color: #ccf #003 #003 #ccf;
	border-width: 1px;
	}
.tableheader .sortcolumn {
	background-color: #558;
	border-style: solid;
	border-color: #336 #99a #99a #336;
	border-width: 1px;
	}
.tablefooter td {
	padding: 10px 5px;
	}
.tablefooter td+td {
	border-top-width: 2px;
	border-top-color: #336;
	}

/* label is used in a lot of informational contexts -- label: value */
.label {
	font-weight: bold;
	}
	
/* this is a generic for any description or body field -- standard body text (as opposed to h1 - h4 (for titles) or p (for information) */
.bodytext {
	margin-right: 30px;
	}
.bodytext blockquote {
	margin: 10px 25px;
	font-style: italic;
	color: #777;
	}
/* objects are often grouped together in lists of items -- particularly on folder indexes.
 	group {  item { }  item { }  item { } }
 */
.group {
	margin-top: 12px;
	}
.item {
	margin: 0px 0px 20px 20px;
	}
.item h4 {
	text-indent: -20px;
	}
.item blockquote {
	margin: 10px 20px;
	font-style: italic;
	color: #777;
	}
.itemcontrols {
	margin: 5px 0px 20px 0px;
	}

/* message is used for messages to the user from the application */
.message {

	}

/* cookiecrumbs are navigational context -- named after crumbs you might drop to find your way back out of the forest... */
.cookiecrumbs {
	color: #aaa;
	}

/* linklist, a bunch of hyperlinks with only linebreaks <br /> between them */
.linklist {
	line-height: 18px;
	}
	
/* inline is used for images that are embedded in text, no left or right alignment */
.inline { vertical-align: middle; }

/* imageleft and imageright control padding for left- and right-aligned images */
.imageleft { margin: 2px 10px 0px 0px; }
.imageright { margin: 2px 0px 0px 12px; }

/* oddrow and evenrow can be used for alternating colors in lists */
.odd {
	background-color: #efe;
	}
.even {

	}


/* SPECIFIC CONSTRUCTS -- referenced by id 
	The page is broken into roughly three main sections: Header, Content, and Menu.
	Within those main sections are all of the subsections listed below them.
*/

/* HEADER AREA
	Header is the site information at the top of the page, also "cookie crumbs"
*/
#Header {
	margin: 30px 0px 20px 0px;
	border-width: 1px 0px 1px 0px;
	border-style: solid;
	border-color: #aaa;
	background-color: #eee;
	padding: 15px 5px 1px 5%;
	}

/* Alternate for popup windows */
#PopupHeader {
	margin: 5px 0px 20px 0px;
	border-width: 1px 0px 1px 0px;
	border-style: solid;
	border-color: #aaa;
	background-color: #eee;
	padding: 15px 5px 1px 5%;
	}

/* To-bottom and to-top Linkage */
#ToBottom {
	/* at top of page */
	position: absolute;
	right: 10%;
	top: 46px;
	}
#ToTop {
	/* at bottom of page */
	margin: 10px 0px 20px 0px;
	}


/* CONTENT AREA 
	The main content area of the folder, document, etc. Most non-navigational info is in here. 
*/
#Content {
	position: relative;
	z-index: 10;
	width: 60%;
	margin: 0px 0px 0px 5%;
	border-width: 1px;
	border-color: #ccc;
	border-style: none;
	}

/* Alternate version for popup windows */
#PopupContent {
	position: relative;
	z-index: 10;
	width: 90%;
	margin: 0px 0px 0px 5%;
	}

/* flavor refers to the type of object-- memo, log entry, etc. */
#Flavor {
	font-size: 16px;
	line-height: 10px;
	color: #bbb;
	font-weight: bold;
	margin-left: 22px;
	}
	
/* attachment lists attached file(s) */
#Attachment {

	}

/* Author's signature, or byline */
#Signature {
	margin: 25px 0px 0px 25%;
	}

/* Non-editorial information about the object: source, copyright, etc */
#Information {
	margin: 0px 0px 40px 25%;
	font-size: 11px;
	line-height: 13px;
	color: #777;
	}

/* used for the links and info regarding comments */
#Commentlink {

	}

/* Also known as the optionDiv -- used for by the application for user-selectable object controls -- edit, pick-up, etc.  */
#Controls {
	margin: 5px 0px 20px 0px;
	}
#Controls img {
	/* 16x16 icons look better text-top */
	vertical-align: text-top;
	border-style: none;
	}
#Controls h4 {
	margin-top: 20px;
	border-top-style: solid;
	border-color: #ccc;
	border-width: 1px;
	font-size: 14px;
	padding-top: 5px;
	}
#Controls blockquote {
	margin: 5px 20px;
	font-size: 11px;
	line-height: 13px;
	color: #777;
	}
#Controls li {
	list-style-position: inside;
	list-style-type: none;
	margin-left: 15px;
	}
#Controls blockquote a {
	font-weight: normal;
	}

/* Navigation is the Up to parent folder link */
#Navigation {
	margin: 20px 0px 10px 0px;
	font-weight:  bold;
	}

/* Special for folder- and site-level copyright notices, traditionally centered at the bottom of content */
#FolderCopyright {
	text-align: center;
	}
#FolderCopyright img {
	/* specifically the Creative Commons icon */
	border-style: none;
	margin: 4px 0px 0px 0px;
	}

	
/* MENU AREA
	Menu is the main non-content section of the page: folder navigation, archive links, login/logout, server notes...
		- usually a left- or right-hand column
		- consists of groups of submenus
*/
#Menu {
	position: absolute;
	top: 80px;
	right: 3%;
	width: 25%;
	min-width: 150px;
	z-index: 5;
	}
#Menu h2 {
	display: none;
	}
.submenu {
	border-style: dashed;
	border-width: 1px;
	border-color: #aaa;
	padding: 10px;
	margin: 10px 10px 20px 10px;
	background-color: #eee;
	}

/* Menu>Submenu1: Either the body field from the containing folder, or a dynamic list of subfolders */
#FolderBody {

	}
#FolderBody .cookiecrumbs {
	text-indent: -10px;
	margin: 0px 0px 0px 10px;
	}
#FolderBody .linklist {
	margin-left: 10px;
	}

/* Menu>Submenu1: Links to folder archives */
#FolderTools {
	margin: 10px 0px;
	}

/* Menu>Submenu1: Login, logout, setting */
#MemberTools {
	margin: 10px 0px;
	}
	
/* Menu>Submenu1: Add document, add folder, etc */
#WriterTools {
	margin: 10px 0px;
	}

/* Menu>Submenu1: Render time, client IP address */
#ServerNotes {
	border-color: #ccc;
	border-top-width: 1px;
	border-top-style: solid;
	padding-top: 11px;
	margin: 10px 0px 5px 0px;
	font-size: 10px;
	line-height: 12px;
	color: #999;
	}

/* Menu>Submenu2: A list of objects the user has "picked up" */
#Inventory {

	}
#Inventory h2 {
	font-size: 14px;
	display: block;
	margin: 0px;
	font-weight: 600;
	}
#Inventory p {
	margin: 3px 0px 0px 10px;
	text-indent: -10px;
	}
#Inventory a {
	font-weight: normal;
	}
#Inventory li {
	list-style-type: none;
	list-style-position: inside;
	text-indent: -20px;
	margin: 5px 0px 5px 40px;
	}
#Inventory img {
	vertical-align: text-top;
	margin-right: 3px;
	}


/* CREATE / EDIT FORM STYLES ( table of class edit ) 
	These styles determine the look of forms within Berylium, and should remain unchanged unless you really know what you're doing.
*/
.edit { border-style: none; }
.edit .label { text-align: right; padding: 5px; vertical-align: top; border-width: 1px; border-color: #ccc; border-right-style: dotted; }
.edit td { text-align: left; padding: 5px; vertical-align: top;  border-style: none; }
.edit input { border-style: solid; border-color: #646464 #ccc #ccc #646464; border-width: 1px; padding: 2px; }
.edit .textarea { margin: 0px 0px 15px 10%; }
.edit textarea { border-style: solid; border-color: #646464 #ccc #ccc #646464; border-width: 1px; padding: 2px; }
.edit .textarea p { margin: 0px; }
.edit .button {
	border-style: solid;
	border-color: #ccc #646464 #646464 #ccc;
	border-width: 1px;
	padding: 0px;
/* IE5 Hack */
	voice-family: "\"}\"";
	voice-family:inherit;
	padding: 1px;
	}
/* BntO5r */
body>.edit>.button { padding: 0px; }

.edit .nonbutton {
	border-color: #ccc;
	}
.edit .checkbox {
	border-style: none;
	padding: 0px;
	}
.edit p { margin: 10px 5px 20px 0px; }
.edit img { vertical-align: text-top; border-style: none; margin-right: 3px; }
.edit .divider td { padding: 0px; font-size: 1px; height: 8px; line-height: 1px; border-color: #aaa; border-width: 1px 0px 0px 0px; border-style: solid; }

/* SEARCH FORM STYLES */
.search input { margin-top: 4px; border-style: solid; border-color: #646464 #ccc #ccc #646464; border-width: 1px; padding: 1px; font-size: 10px; }
.search .button {
	border-style: solid;
	border-color: #ccc;
	border-width: 1px;
	padding: 0px;
	}

/* CONTEXT - SPECIFIC STYLES
	These are stylesheets for various special contexts that needed extra attention
*/

/* Comment List (Popup) Specific! */
#CommentList {
	border-color: #ccc;
	border-style: solid;
	border-width: 0px 0px 1px 0px;
	margin: 30px 20px 0px 10px;
	width: 350px;
	padding-bottom: 15px;
	}
#CommentList .comment {
	border-color: #ccc;
	border-style: solid;
	border-width: 1px 0px 0px 0px;
	margin: 20px 0px 10px 0px;
	}
#CommentList h4 {
	margin: 10px 0px 10px 0px;
	font-size:14px;
	line-height: 18px;
	}
#CommentList blockquote {
	margin: 0px;
	padding: 0px;
	font:12px/18px verdana, arial, helvetica, sans-serif;
	}
#CommentList .signature {
	font:12px/18px verdana, arial, helvetica, sans-serif;
	text-align: left;
	margin: 10px 10px 10px 20%;
	}


/* Message Boards Specific! */
.messagelink { }
#MessageList { }
#MessageList .message { }
#MessageList h4 { }
#MessageList blockquote { }
#MessageList .signature { }
#MessageList .listnav { }

/* Spellcheck Specific! */
#Spellcheck { }

/* RSS Newsfeed Channel */
.rss_ch { 
	border-width: 1px;
	border-color: #ccc;
	border-style: dashed;
	width: 80%;
	margin-left: 5%;
	padding: 10px;
	}
.rss_chTitle { 
	font-size: 14px;
	margin: 0px;
	}
.rss_chDescription { }
.rss_chInfo {
	color: #aaa;
	font-size: 10px;
	}
.rss_ch img { float: left; margin: 2px 5px 0px 0px; }

/* RSS Newsfeed Items */
.rss_it { margin: 15px 0px 10px 0px; }
.rss_itTitle {
	margin: 0px;
	font-size: 12px;
	}
.rss_it blockquote {
	padding: 0px;
	margin: 0px 10px;
	font-style: normal;
	}
.rss_it>blockquote>blockquote { font-style: italic; margin: 5px 20px; }

/* RSS Newsfeed Textinput */
.rss_ti { }
.rss_tiTitle { margin: 10px 0px 0px 0px; }
.rss_tiDescription { margin: 0px; }
.rss_tiInput input { border-style: solid; border-color: #646464 #ccc #ccc #646464; border-width: 1px; padding: 2px; }
.rss_tiInput .button {
	border-style: solid;
	border-color: #ccc #646464 #646464 #ccc;
	border-width: 1px;
	padding: 0px;
/* IE5 Hack */
	voice-family: "\"}\"";
	voice-family:inherit;
	padding: 1px;
	}
/* BntO5r */
body>.rss_tiInput>.button { padding: 0px; }

/* Debug notices are rendered after all other content, and normally never seen by a user */
#Debug { }
