/*
Company:	Nautica X - ost.org
File:		main.css - This contains all the main styles for the website.

All the styles are separted into the following groups:
Global Browser Reset - they make sure that all browsers start with the same default settings
HTML, Body - for the html and body tags
Layout - any style that defines how the site is laid out (position and size of objects)
Nav - navigation bar
Headings - headings like h1, h2, etc
Text Styles - Styles for text
Lists - unordered and ordered lists
Forms - html forms
Links - links
Misc - anything that doesn't fit elsewhere
*/

/* @group Global Browser Reset */
* {
padding:0;
margin:0;
}





fieldset { 
	padding:30px 0px 10px 30px; 
	border: 1px solid #e2e4e5;
	font-size: 11px;
	font-weight: bold;
	margin: 45px 0px 15px 0px;	
	background-color: #efefef;
	width: 500px;
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:5px;

}

fieldset input {
	background-color: white;
	border: none;
	padding: 5px;
	margin-bottom: 5px;
	font-size: 11px;
	font-family: "helvetica neue", helvetica, arial, Verdana, sans-serif;	
	font-weight: bold;
}

img { border: 0px; }


/* @group Misc */
.clear {
	clear: both;
}
.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {display: inline-block;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* @end */



.clearer  {
   clear:both;
}

