/* CSS Document for Ubicom page centers */

#outside {
	margin: auto;
	width: 720px;
	position: relative;
}

/*
 * Main content of page
 *-------------------------------------------------------------------------------- 
 */

#main {
	margin: 1em 0;
}

/*
 * Main page content is one or more sections, each of which can contain one or more boxes.
 * A section is a container for all the content about one high-level aspect of configuration; 
 * for example: all WAN set-up; all wireless settings.
 * A section has a title, optional introductory text, and can contain one or more boxes.
 */
.section {
}

/* title of a section */
.section_head h2 {
	margin-left: 12px;
	font-family: "Arial Narrow";
	font-weight: bold;
	text-transform: uppercase;
}

/*
 * Optional explanatory text about the section. 
 */
.section_head p {
	margin-left: 14px;
}

/*
 * A box is a container for a group of related controls; for example: all DHCP server settings.
 * A box has an optional title, optional introductory text, optional help tips, 
 * and a main "fieldset" section which contains form controls.
*/

.box {
	margin-left: 14px;
}
/*
 * Clear the floating contents of <box> at bottom.
 * This is necessary to get proper bottom spacing in the presence of floats.
 * This hack forces FF to do what IE does erroneously.
 * IE does not see the hack, because it doesn't implement :after
 */
.box:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
/*
 * The title of a box 
 */ 
.box h3 {
	font-style: italic;
}

/*
 * Container for box content (primarily controls with their labels) 
 * Form fields must be in a fieldset. A box can contain only one fieldset.
 */
 
.box fieldset {
	border: none;
}
/*
 * Separate lines in a fieldset by enclosing in <p></p>
 */
.box fieldset p {
	clear: both;
	margin: 4px 0 4px 0;
	padding: 0;
}
.box fieldset br {
	clear: both;
}
/*
 * Clear the floating contents of <p> at bottom.
 * This is necessary to get proper bottom spacing when there are multiline floats.
 * This hack forces FF to do what IE does erroneously.
 * IE does not see the hack, because it doesn't implement :after
 */
.box fieldset p:after {
	content: "."; 
	display: block; 
	height: 0; 
	clear: both; 
	visibility: hidden;
}
/*
 * Use the duple class on labels of simple "label : input" pairs
 */
.box fieldset label.duple {
	display: block; 		/* Force to a block so width and word wrap work */
	float: left;		/* Keep to left of following control */
	margin: 1px 0 4px 0;
	width: 200px;
	padding: 0;
	border: 0;
	font-weight: bold;
}
.box fieldset input, .box fieldset select {
	margin: 0 4px 0 0;
}
/*
 * Use class="fblock" for some input controls followed by text.
 * Force to a block and float so that following text wraps correctly.
 */
.box fieldset .fblock, .box fieldset .fblock {
	display: block;
	float: left;
}
.box fieldset .output {
	position: relative;
	top: 1px;
	font-weight: bold;
}


/*
 * Help tips related to a box.
 *  -- not used in this style.
 */
.box_tips {
	display: none;
}
/*
 * Divider line (also called "rule") between boxes.
 */
.box_rule {
	margin-top: 20px;
	width: 534px;
	height: 8px;
	background: url(Images/img_line.gif);
}
.box_rule hr {
	display: none;
}

/*
 * Page Footer
 *-------------------------------------------------------------------------------- 
 * The footer contains the closing graphics and may contain form buttons 
 */

#footer {
	clear: both;
}

#form_buttons {
	position: absolute;
	bottom: 62px;
	right: 49px;
}

#form_buttons  input {
	margin: 0 4px; 
	background: none;
	background-color: #346d86;
	border: 3px;
	border-bottom-style: outset;
	font-family:  "Arial Narrow", Tahoma, Helvetica, Geneva, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #346d86;
	color: #fff;
}

/*
 * Emulate Linksys .ctrl_text_quarter style 
 */
 
.box fieldset input, .box fieldset select
{
	background-color: #000;
	border: 3px;
	border-color: #ffffff;
	border-style: outset;
	font-size: 12px;
	letter-spacing: 1px;
	color: #ffffff;
	/* text-align: center; */
}
/*
 * End of CSS stylesheet 
 */

