body {
	font: 12px/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #10599b;
	margin: 0;
	padding: 0;
	color: #000;
}

div#preload { display: none; }

p {
	font-size: 12px;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
	font-size: 12px;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-size: 14px;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #488AC7;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #488AC7;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #488AC7;
}

.bgcontainer {
	width: 1088px;
	background-image:url(../images/bg-shadow-blue.jpg);
	border: 0px solid #000;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}


/* ~~this fixed width container surrounds the other divs~~ */
.container {
	width: 1020px;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
	border: 2px solid #CCC;
	background-color: #d3d8de;
}

/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
.header {
	background-color: #d3d8de;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the left instead of the right, simply float these columns the opposite direction (all left instead of all right) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: right;
	width: 355px;
	background: #EADCAE;
	padding: 0px 0px 10px 0px;
	background-color: #d3d8de;
	background-image:url(../images/news_box_btm.jpg);
	background-position:left bottom;
	background-repeat:no-repeat;
	margin: 10px 15px 0px 0px;
	
}

.sidebar1 h2 {
	width: 355px;
	padding:23px 2px 0px 0px;
	margin:0 0 0 -1px;	
	font-size: 14px;
	color: #488AC7;
	text-align: center;
	border: 0px solid #000;
	background: url(../images/news_box_top.jpg) top no-repeat;
}

.sidebar1 p {
	padding: 0px 19px 24px 16px;
	margin:0;
	font-size: 12px;
}

.sidebar1 label {
	padding: 0px 19px 24px 16px;
	margin:0;
	font-size: 12px;
}

.sidebar1 a {
	padding:9px 19px 24px 0px;
	margin:0;
	font-size: 12px;
	text-decoration: none;
	color: #488AC7;
}

.sidebar1 a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}

.sidebar2 {
	float: right;
	width: 350px;
	background: #EADCAE;
	padding: 0px 0px 10px 0px;
	background-color: #d3d8de;
	background-position:left bottom;
	background-repeat:no-repeat;
	margin: 10px 15px 0px 0px;
}

.sidebar2 h2 {
	width: 345px;
	padding:23px 2px 9px 0;
	margin:0 0 0 -1px;	
	font-size: 17px;
	color: #0066FF;
	text-align: center;
	border: 0px solid #000;
}

.sidebar2 p {
	padding:9px 19px 24px 16px;
	margin:0;
	font-size: 12px;
}

.sidebar2 a {
	padding:9px 19px 24px 0px;
	margin:0;
	font-size: 12px;
	text-decoration: none;
	color: #488AC7;
}

.sidebar2 a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
	color: #488AC7;
}

.mycybersoft-sidebar {
	float: right;
	width: 373px;
	background: #EADCAE;
	padding: 0px 0px 10px 0px;
	background-position:left bottom;
	background-repeat:no-repeat;
	margin: 10px 15px 0px 0px;
	background: url(../cybermy/images/bg-mycybersoft.png) top no-repeat;
}

.content {
	padding: 10px 0px 0px 10px;
	width: 620px;
	float: left;
	background-color: #d3d8de;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
	font-size: 13px;
}

.content p {
	font-size: 13px;
	padding: 0px 0px 0px 15px;
	margin: 0px 0px 15px 0px;
	line-height: 140%;
}

.content h1 {
	font-size: 18px;
	color: #0e5492;
	padding: 0px 0px 10px 5px;
	margin: 0px 0px 0px 0px;
	}

.content h2 {
	font-size: 16px;
	color: #488AC7;
	padding: 0px 0px 5px 15px;
	margin: 0px 0px 0px 0px;
}

.content h3 {
	font-size: 14px;
	color: #000;
	padding: 0px 0px 5px 15px;
	margin: 0px 0px 0px 0px;
}

#nav {
	text-align: right;
	font-size: 15px;
	background-image: url(../images/nav_bg.jpg);
	height: 35px;
	margin: 0px 0px 0px 0px;
	padding: 10px 10px 0px 0px;
	z-index: 111;
}

#nav a {
	color: #10599b;
	text-decoration: none;
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
#nav ul {
	list-style: none; /* this removes the list marker */
	border-top: 0px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
	margin-right: 10px;
}
#nav li {
	font-size: 13px;
	border: 1px solid #FFF; /* this creates the button separation */
	color: #FFF;
	display: inline;
	list-style-type: none;
	height: 30px;
	padding: 5px 5px 5px 5px;
	margin: 10px 0px 0px 0px;
	background-color: #ffcc00;
}

#nav li:hover {
	border: 1px solid #FFF; /* this creates the button separation */
	display: inline;
	list-style-type: none;
	height: 30px;
	padding: 5px 5px 5px 5px;
	margin: 10px 0px 0px 0px;
	background-color: #00aeef;
	color: #FFF;
}

#nav a:hover {
	color: #FFF;
}

#nav .hilite {
	border: 1px solid #FFF; /* this creates the button separation */
	display: inline;
	list-style-type: none;
	height: 30px;
	padding: 5px 5px 5px 5px;
	margin: 10px 0px 0px 0px;
	background-color: #488AC7;
}

#nav .hilite a {
	border: 0px solid #FFF; /* this creates the button separation */
	color: #FFF;
	display: inline;
	list-style-type: none;
	height: 30px;
	padding: 5px 5px 5px 5px;
	margin: 10px 0px 0px 0px;
	font-weight: bold;
}



#SecNav {
	color: #000;
	text-align: center;
	font-size: 13px;
	height: 35px;
	margin: 0px 0px 0px 0px;
	padding: 10px 0px 0px 0px;
}

#SecNav a {
	color: #000;
	text-decoration: underline;
}

/* ~~ The footer ~~ */
.footer {
	padding: 10px 0px 0px 0px;
	background: #5f95d8;
	background-image:url(../images/footer_bg.jpg);
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	font-size: 12px;
}

.footer ul {
	list-style-type: none;
}

.footer a {
	text-decoration: none;
	color: #FFF;
}

.footer a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}

.footer h3 {
	font-size: 14px;
	margin: 0px 0px 0px 0px;
	text-align: left;
	padding: 10px 25px 0px 0px;
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* Popup Styles */

#fade { /*--Transparent background layer--*/
	display: none; /*--hidden by default--*/
	background: #000;
	position: fixed; left: 0; top: 0;
	width: 100%; height: 100%;
	opacity: .80;
	z-index: 9999;
}
.popup_block{
	display: none; /*--hidden by default--*/
	background: #fff;
	padding: 20px;
	border: 20px solid #ddd;
	float: left;
	font-size: 1.2em;
	position: fixed;
	top: 50%; left: 50%;
	z-index: 99999;
	/*--CSS3 Box Shadows--*/
	-webkit-box-shadow: 0px 0px 20px #000;
	-moz-box-shadow: 0px 0px 20px #000;
	box-shadow: 0px 0px 20px #000;
	/*--CSS3 Rounded Corners--*/
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
img.btn_close {
	float: right;
	margin: -55px -55px 0 0;
}
/*--Making IE6 Understand Fixed Positioning--*/
*html #fade {
	position: absolute;
}
*html .popup_block {
	position: absolute;
}

.body2 {
	font-size: 13px;
}

.body {
	font: 12px/1.4 Verdana, Arial, Helvetica, sans-serif;
}

.form_submit
{
    background-image: url(../images/Submit_btn.png);
    width: 85px;
    height: 31px;
    border: 0px;
    margin-top:20px;
}   

/* rss feed */
.rss_box {
	padding: 0px 0px 0px 40px;
	width: 300px;
	background-image:url(../images/news_box_btm.jpg);
	background-position:left top;
	background-repeat:no-repeat;
	margin: 0px 15px 0px 0px;
}


