﻿/*Created with Adobe RoboHelp 10.*/
/* <script> */
/* This is the main Cubit Stylesheet 
   Date: 7/13/05
   Author: Nathan Kerr
   Email: nckerr@sandia.gov, nathankerr@gmail.com
   File name: trelisstyle.css
   
   All styles shall be commented with at least information on use.
   For tutorials: http://www.w3schools.com/
   For layout techniques: http://www.glish.com/css
   
     
*/
/* The header div defines the layout of the Cubit logo and nav arrows, deprecated */
div#header img {
	vertical-align: text-top;
	border-style: none;
	width: auto;
	height: auto;
	border-width: 0 0 0 0;
	margin: 0 0 0 0;
}
/* The footer div defines the layout of the nav arrows, deprecated */
div#footer img {
	vertical-align: text-top;
	border-style: none;
	width: auto;
	height: auto;
	border-width: 0 0 0 0;
}
/* The header navbar defines where on screen the navbar will be */
.hnavbar {
	text-align: right;
	position: absolute;
	top: 1em;
	left: 75%;
}
/* Same with the footer */
.fnavbar {
	text-align: right;
}
/* The background color is white */
body {
	background-color: #ffffff;
	font-family: Helvetica, sans-serif;
	font-size: 12px;
	position: absolute;
	top: 1em;
	left: 1em;
	width: 750px;
}
/* A link that hasn't been visited */
a:link {
	color: #0000ff;
}
/* Visited link */
a:visited {
	color: #551a8b;
}
/* An image with a middle text-alignment */
img.middle {
	vertical-align: middle;
	width: auto;
	height: auto;
}
/* A Gui Panel image */
.guipanel {
	text-align: center;
}
/* Title is fairly big */
.title {
	font-weight: bold;
}
.command {
	font-weight: bold;
	border-left-style: Solid;
	border-left-width: 1px;
	border-left-color: #000000;
	border-right-style: Solid;
	border-right-width: 1px;
	border-right-color: #000000;
	border-top-style: Solid;
	border-top-width: 1px;
	border-top-color: #000000;
	border-bottom-style: Solid;
	border-bottom-width: 1px;
	border-bottom-color: #000000;
        padding:10px;
	background-color: #E6E6E6;
}
/* Keyword is the actual command */
.keyword {
	color: #000000;
}
/* Noreq is command arguments that aren't required. In the documentation
   this is notified with square brackets ([]) */
.noreq {
	color: #0000ff;
}
/* Isreq are command arguments that are required. In the documentation
   this is notified with curly brackets ({}) */
.isreq {
	color: #ff0000;
}
/* Numarg are number parameters that go with a command arguement. In the 
   documentation this is notified with angle brackets (<>) */
.numarg {
	color: #800080;
}
/* We use unordered lists (<ul>) to display lists of links. We'll use CSS to 
   define how they look. Since we don't want this for all ul's, we'll use a
   selector. */
ul.links {
	list-style-image: url(page_icon.gif);
	list-style-type: square;
	list-style-position: outside;
	margin-left: 40px;
	line-height: 1cm;
	font-size: 12px;
}
/* These unordered lists need some spacing so the text doesn't wash together. */
ul.spaced {
	line-height: 1cm;
}
/* A caption for a picture */
.caption {
	font-weight: bold;
	text-align: center;
}
/* H2 is a first sub-heading. */
h2 {
	font-weight: normal;
}
/* H3 shouldn't be used too often, because it's third down. */
h3 {
	font-weight: normal;
}
/* H4 is after h3. */
h4 {
	font-weight: normal;
	font-style: italic;
}
/* P paragraph text */
p {
	font-size: 12px;
	font-family: "Lucida Sans", "Lucida Sans Unicode", Arial, Helvetica, sans-serif;
}
/* Make some text stand out. */
.highlight {
	background-color: #ffff00;
}
/* <script> */