/*
+++++++++++++++++++++++++++++++++++++
NAL COMET GROUP STYLESHEET

Created 30/03/2010
By Direct Design

- keiran@dda.co.uk
++++++++++++++++++++++++++++++++++++
*/

/*
CONTENTS:

1. Defaults
2. Shared styles (Initial)
3. Layout styles (in DOM order)
4. Shared styles (override)

*/

/*
++++++++++++++++++++++++++++++++++++
1.DEFAULTS
++++++++++++++++++++++++++++++++++++
*/
@charset "UTF-8";
*{
	margin:0;
	padding:0;
}
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
	background-color: #77B3D7;
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-x;
}
/*
1.1 LINKS
------------------------------*/
a{
	color:#29166F;
	font-weight:bold;
	text-decoration:none;
}
a:hover{
	text-decoration: underline;
}
/*
1.2 IMAGES
------------------------------*/
img,div{
	border:none;
}
/*
1.3 TEXT
------------------------------*/
h1,h2,h3,h4{
	color:#29166F;
}
h1{
	text-transform: uppercase;
}
h2,h3{
	border-bottom: #29166F solid 1px;
	padding-bottom:0.5em;
	margin-bottom:1em;
}
h2{
	font-size: 170%;
}
h3{
	font-size: 155%;
}
p{
	margin-bottom:1em;
}
/*
++++++++++++++++++++++++++++++++++++
2.SHARED STYLES - declared first so styles can be overridden if necessary 
++++++++++++++++++++++++++++++++++++
*/

/*
2.1 HELPER 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 */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

/*
2.2 FORM ELEMENTS
------------------------------*/
input, textarea{
	border: #29166F solid 1px;
	width: 90%;
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 80%;
}
select{
}
button{
	text-align:center;
	font-weight:bold;
	border:none;
	color: #fff;
	min-width:24px;
	width:24px;
	height:24px;
	background-color:#29166F;
}
.checkbox{
	width:auto;
}

/*
++++++++++++++++++++++++++++++++++++
3.LAYOUT - In DOM order
++++++++++++++++++++++++++++++++++++
*/

/*
3.0 WRAPPER
- holds everything
------------------------------*/
#wrapper { 
	width: 951px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	padding: 8px;
	padding-top:0;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
/*
3.1 HEADER CONTAINER
------------------------------*/
#header {
	padding: 18px 16px 0 34px;
	background-image: url(../images/header_bg.jpg);
	background-repeat: repeat-x;
	position:relative;
	height:46px;
} 
/*
3.1.1 MENU
- holds main site nav
------------------------------*/
.menu{
	text-align: right;
}
.menu ul{
	list-style:none;
	list-style-type:none;
	padding: 0;
	margin:0.6em;
	margin-right:16px;
	float:right;
}

.menu ul li{
	display:block;
	float:left;
	text-align:center;
	white-space:nowrap;
	position:relative;
	background-image: url(../images/bullet_nav.gif);
	background-repeat: no-repeat;
	background-position: left 0.3em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 1em;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 1.25em;
}

.menu ul li ul {
	position: absolute;
	top: 8px;
	left: 10px;
	background-color: #fff;
	padding-top: 6px;
	border-bottom: solid 1px #f90;
	width: 150px;
}

.menu ul li ul li {
	position: relative;
	background-image: none;
	padding: 4px 8px;
	margin: 0px 0px;
	width: 150px;
	white-space: normal;
	border: solid 1px #f90;
	border-bottom: none;
	text-align: left;
	background-color: #7fb0d9;
	background-image: url(/images/menu_fade.jpg);
	background-position: 0 0;
	background-repeat:repeat-x;
}

.menu ul li ul li a {
	font-weight: bold;
	color: #222;
}

/*
END MENU
------------------------------*/

/*
3.1.2 SITE SEARCH
- main search form styles
------------------------------*/

#siteSearchContainer{
	position:absolute;
	width:210px;
	height:24px;
	top:22px;
	right:16px;
}

.siteSearchBox{
	width:167px;
	height:22px;
	line-height:22px;
	position:absolute;
	top:0;
	left:0;
	background-color:#fff;
	border:#29166F solid 1px;
	outline:none;
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#29166F;
	padding-left:5px;
	padding-right:5px;
}

.siteSearchButton{
	text-align:center;
	font-weight:bold;
	border:none;
	color: #fff;
	width:24px;
	height:24px;
	position:absolute;
	top:0;
	right:0;
	background-color:#29166F;
}

.siteSearchButton span{display:none;}

/*
END SITE SEARCH
------------------------------*/
/*
3.2 CONTAINER
- holds most content
------------------------------*/
#container{
	background-image: url(../images/content_bg.jpg);
	background-repeat: repeat-x;
	background-position: center 290px;
	padding-bottom:3em;
}
#container.wide{
	background: none;
}
#breadcrumbs{
	margin:1.5em 0 1.75em 34px;
}
/*
3.2.1 SIDEBAR 1 (right sidebar)
------------------------------*/
#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 336px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	margin-right: 34px;
}
.news_item{
	border-bottom: dotted 1px #29166F;
	margin-bottom:1em;
}
.news_item.last{
	border-bottom: none;
}
.news_item h3{
	color:#000;
	font-size: 100%;
	border-bottom:none;
}
.news_item h3 a{
	color:#000;
}
/*
3.2.2 MAIN CONTENT
- body text goes here
------------------------------*/
#mainContent { 
	margin: 0 400px 0 34px;
	border-right: dotted 1px #29166F;
	padding: 0 30px 0 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent.wide{
	margin-right:30px;
	border-right:none;
	padding-right:0px;
}
#mainContent ul{
	list-style-type:square;
	padding-left:0.5em;
	margin-left:1em;
}
#mainContent li{
}
/*
END CONTAINER
------------------------------*/

/*
3.3 FOOTER
------------------------------*/

#footer { 
	border-top: #29166F 18px solid;
	padding:1em 0 0.5em;
} 
#footer p{
	margin-bottom:0;
}
/*
END FOOTER
------------------------------*/

/*
END WRAPPER
------------------------------*/
/*
++++++++++++++++++++++++++++++++++++
4.SHARED STYLES OVERRIDE - override styles here
++++++++++++++++++++++++++++++++++++
*/

.newsLine {
	padding-top: 20px;
	margin: 40px 0px 10px;
	border-top: solid 1px #352479;
	margin-bottom: 0;
}

.table_pad {
	border-collapse:collapse;
}

.table_pad td {
	padding: 5px;
	border: solid 1px #353479;
}

/*
++++++++++++++++++++++++++++++++++++
5.MODULE - Nal Coment
++++++++++++++++++++++++++++++++++++
*/

#search_containers {
	width: 200px;
	margin: 10px 0 30px;
}

#search_containers table p {
	margin: 0;
	width: 150px;
}

#search_containers input {
	margin: 0;
	width: 300px;
	padding: 3px 10px;
}

#content_load table.list {
	width: 100%;
}

#content_load table.list th {
	padding: 5px 10px;
	background: #353479;
	color: #ffffff;
}

#content_load table.list td {
	padding: 5px;
	background: #eeeeee;
}
