/* Start of CMSMS style sheet 'bt_sssa1' */
/* Start of CMSMS style sheet 'bt_sssa1' */
/* Start of CMSMS style sheet 'bt_sssa1' */
/*****************
browsers interpret margin and padding a little differently,
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*
Set initial font styles
*/
body {
   text-align: left;
   font-family: Arial, Helvetica, Verdana, Geneva, sans-serif;
   font-size: 75.01%;
   line-height: 1em;
}

/*
set font size for all divs,
this overrides some body rules
*/
div {
   font-size: 1em;
}

/*
if img is inside "a" it would have 
borders, we don't want that
*/
img {
   border: 0;
}

/*
default link styles
*/
/* set all links to have underline and bluish color */
a,
a:link 
a:active {
   text-decoration: underline;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
   color: #18507C; 
}

a:visited {
   text-decoration: underline;
   background-color: inherit;
  color: #18507C;                /* a different color can be used for visited links */
}


/* remove underline on hover and change color */
a:hover {
   text-decoration: none;
   background-color: #C3D4DF;
   color: #385C72;
}

/*****************
basic layout 
*****************/
body {
   background-color: #999999;/* bds */
   color: #333;
   margin-top:0px; /* gives some air for the pagewrapper */   
   margin-left:10px; /* gives some air for the pagewrapper */
   margin:right:10px; /* gives some air for the pagewrapper */
   margin:bottom:10px; /* gives some air for the pagewrapper */
}

/* center wrapper, min max width */
div#pagewrapper {
   border: 1px solid #222222;
   margin: 0 auto;     /* this centers wrapper */
   max-width: 80em; /* IE wont understand these, so we will use javascript magick */
   min-width: 60em;
   width:950px;
   background-color: #ffffff;
   color: black;
   overflow:hidden;
}


/*** header ***
we will hide text and replace it with a image
we need to assign a height for it
*/

div#header {
   height: 310px; /* adjust according your image size */
   background-color: #000000;
   background:#000000 url(images/cms/hhh.jpg) no-repeat scroll 0px 60px;

}
div#header h1 {
   color:#ffffff;
   margin:0px;
   padding-top:.7em;
   padding-left:1em;
   padding-bottom:.1em;
}
div#header p {
   color:#dddddd;
   margin:0px;
   padding-top:.5em;
   padding-left:3em;
}


div#header h1 a {
/* you can set your own image here */
   background:#000000 url(images/cms/hhh.jpg) no-repeat scroll 0px 0px;
   display:block;
   height:255px; /* adjust according your image size */
   text-indent: -999em;  /* this hides the text */
   text-decoration:none; /* old firefox would have shown underline for the link, this explicitly hides it */
}

div#search {
   float: right;
   width: 27em;     /* enough width for the search input box */
   text-align: right;
   padding: 0.6em 0 0.2em 0;
   margin: 0 1em;
}

div.breadcrumbs {
   padding: 1em 0 1em .5em; /* CSS short hand rule first value is top then right, bottom and left */
   font-size: 90%;             /* its good to set fontsizes to be relative, this way viewer can change his/her fontsize */
   margin-bottom: 1em;
   border-bottom: 0px solid gray;/* bds */
   background-color:#eeeeee;
}

 div.breadcrumbs span.lastitem { 
   font-weight:bold; 
 }


div#content {
   margin: 0em auto 2em 0; /* some air above and under menu and content */
   
}

div#main {
   margin-left: 2%; /* this will give room for sidebar to be on the left side, make sure this space is bigger than sidebar width */
   /*margin-right: 39%;  and some air on the right */
   overflow:hidden;
   width:68%;
   border-right:1px solid black;
}

div#main table{
   border-left:1px solid gray;
   border-top:1px solid gray;
   margin-right:1.5em;
}
div#main td{
   border-right:1px solid gray;
   border-bottom:1px solid gray;
}

div#main img{
   margin:1em;
}

div#sidebar {
   float: right;  /* set sidebar on the left side. Change to right to float it right instead. */
   width: 24%;    /* sidebar width, if you change this please also change #main margins */
   display: inline;  /* FIX ie doublemargin bug */
   margin-top:20px;
   
}

/* if sidebar doesnt include menu but content add class="hascontent" */
div#sidebar.hascontent {
   padding: 0 0;
   /* make width smaller if there's padding, or it will get too wide for the floated divs in IE */
  border-right:solid white 20px;/* bds - controls right margin since IE was jumping around*/
}

div#footer {
   clear:both;       /* keep footer below content and menu */
   color: #fff;
   background-color: #800000; /* bds */
}
div#footer a:hover {
   background-color:#800000;  /* bds */
}

div#footer p {
   font-size: 0.8em;
   padding: 1.5em;      /* some air for footer */
   text-align: center; /* centered text */
   margin:0;
}

div#footer p a {
   color: #fff; /* needed becouse footer link would be same color as background otherwise */
}

/* as we hid all hr for accessibility we create new hr with extra div element */
div.hr {
   height: 1px;
   margin: 1em;
   padding-top:2em;
   border-bottom: 1px solid #800000;/* bds */
clear:both;
}

/* relational links under content */
div.left49 {
  float: left;
  width: 49%;  /* 50% for both left and right might lead to rounding error on some browser */
}

div.right49 {
  float: right;
  width: 49%;
  text-align: right;
}




/********************
CONTENT STYLING
*********************/
div#content {

}

/* HEADINGS */
div#content h1 {
   font-size: 2em;  /* font size for h1 */
   line-height: 2em;
   margin:0;
}
div#content h2 {
   color: black; 
   font-size: 1.5em; 
   text-align: left; 
   padding-left: 0;
   padding-top: 1.5em;
   padding-bottom: 1px;
   border-bottom: 4px solid #800000;/* bds */
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h3 {
   color: #294B5F; 
   font-size: 1.3em;
   line-height: 1.3em;
   margin: 0 0 0.5em 0;
}
div#content h4 {
   color: #294B5F; 
   font-size: 1.2em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
div#content h5 {
   font-size: 1.1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
h6 {
   font-size: 1em;
   line-height: 1.3em;
   margin: 0 0 0.25em 0;
}
/* END HEADINGS */

/* TEXT */
p {
   font-size: 1em;
   margin: 0 1.5em 1.5em 1em;  /* some air around p elements */
   line-height:1.4em;
   padding: 0;
}
blockquote {
   border-left: 10px solid #ddd;
   margin-left: 10px;
}
pre {
   font-family: monospace;
   font-size: 1.0em;
}
strong, b {
/* explicit setting for these */
   font-weight: bold;
}
em, i {
/* explicit setting for these */
   font-style:italic;
}

/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
 white-space: pre-wrap;       /* css-3 */
 white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 white-space: -pre-wrap;      /* Opera 4-6 */
 white-space: -o-pre-wrap;    /* Opera 7 */
 word-wrap: break-word;       /* Internet Explorer 5.5+ */
 font-family: "Courier New", Courier, monospace;
 font-size: 1em;
}

pre {
   border: 1px solid #000;  /* black border for pre blocks */
   background-color: #ddd;
   margin: 0 1em 1em 1em;
   padding: 0.5em;
   line-height: 1.5em;
   font-size: 90%;   /* smaller font size, as these are usually not so important data */
}

/* END TEXT */

/* LISTS */
div#main ul,
div#main ol,
div#main dl {
  font-size: 1.0em;
   line-height:1.4em;
   margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
   margin: 0 3em 0.25em 3em;
}

div#dl dt {
   font-weight: bold;
   margin: 0 0 0.25em 3em;
}
div#dl dd {
   margin: 0 0 0 3em;
}
/* END LISTS */

marquee{
border:1px solid gray;
padding:1em;
height:120px;
}







.formDiv{
margin-bottom:5em;
width:900px;
}
.formDiv h2
{clear:left;
}
.leftForm{
width:340px;
float:left;
}
.rightForm{
width:340px;
float:left;
}
.formDiv input{
border:1px solid #aaa;
margin-left:1em;
margin:.2em;
background-color:#eef;
}

.formDiv select{
border:1px solid #aaa;
margin-left:1em;
margin:.2em;
background-color:#eef;
}

.formDiv form label{
text-align:right;
width:10em;
float:left;
margin:.2em;
}

.formDiv form label.wide{
width:20em;
}

.formDiv td label{
float:right;
}

div#main div.formDiv table,
div#main div.formDiv tr,
div#main div.formDiv td
{
border:none;
height:2em;
}

.formDiv .wide{
width:100%;
} 

.formDiv .wide label
{width:20em; 
}

p.wide select.twoLines
{margin-top:.75em;
margin-bottom:1em;
}

.formDiv button
{vertical-align:middle;
}

p.wide select.padTop
{margin-top:1.3em;
}


div#main table.receipt{
   border:1px solid gray;
   margin-left:auto;
   margin-right:auto;
   padding:2em;
   margin-top:2em;
}
div#main .receipt td{
   border:none;
   padding:.5em;
}

div#loginForm{
background:#eee;
margin:2em auto;
padding:2em;
width:40%;
}
div#loginForm p,div#loginForm input{
padding:0;
margin-left:.1em;
margin:.5em;
}

div#myFiles{
width:40%;
float:right;
display:inline;
background:#ddd;
padding:1em;
border:1px solid #aaa;
}
div#myFiles p{
padding-bottom:0;
margin:0;
font-size:90%;
width:auto;

}

div#myFiles h3{
border-bottom:4px solid #aaa;
}
div#myFiles h5{
border-top:4px solid #aaa;
padding-top:1em;
margin-top:1em;
}
div#myFiles form{
padding-bottom:0em;
margin:0;
border-bottom:1px solid gray;


}
div#myFiles input{
margin-left:0em;
font-size:80%;

}
div#myFiles input.submit{
margin-left:0em;
}
p.logoutForm{
width:95%;
border-bottom:2px solid #ddd;
}
p.logoutForm a{
margin:0;
margin-left:1em;
}

/* swpsa stuff */
#main div.proposal-form{
margin-left:100px;
margin-right:100px;
}

#main div.proposal-form table td, 
#main div.proposal-form table, 
#main div.proposal-form table tr
 {
border:none;
}

#main div.proposal-form .name {
  background-color: #cccccc;

}

#main div.proposal-form .student_type {
  background-color: #cccccc;
}

#main div.proposal-form .other_proposals {
  background-color: #cccccc;
}

#main div.proposal-form .projector {
  background-color: #cccccc;
}
/* End of 'bt_sssa1' */
/* End of 'bt_sssa1' */


/* End of 'bt_sssa1' */


/* End of 'bt_sssa1' */

