/*
 * $Id: scisys.css 164 2008-06-23 13:12:36Z davies_fj $
 *
 * Copyright SciSys UK Limited
 *
 */

/* colour scheme:
 * orange   #fca136
 * green    #96fe31
 * greys    #000 to #fff
 * dimgray  #696969
 */

/* Navigation Menu */
@media screen {
    .nav
    {
	    width: 100%;
	    height: 2.5em;
	    position: relative;
	    font-weight: bold;
    }

    /* top level menu */
    .nav ul 
    {
        padding: 0;
        margin: 0;
        list-style-type: none;
    }

    .nav li 
    {
        float: left;
        position:relative;
    }

    /* top level menu items, blocked 'a' */
    .nav ul a:link, .nav ul a:visited 
    {
        text-decoration:none; 
        background: #191919;
	    border-top: solid 1px #191919;
	    border-bottom: solid 1px #191919;
	    display:block;
	    float: left;
	    line-height: 2em;
	    padding: 0 0.5em;
	    /* width: 12em;*/ /* don't force the top level menu to be any particular width */
	    font-size: 1em;
    }

    /* a hack so that IE5.5 faulty box model is corrected */
    /* * html .menu a, * html .menu a:visited {width:149px; w\idth:138px;}*/

    /* second level menu items */
    .nav ul ul a:link, .nav ul ul a:visited 
    {
        text-decoration:none; 
	    /* border: solid 1px #96fe31;*/
	    border: none;
	    display:block;
	    float: left;
	    line-height: 2em;
	    padding: 0 0.5em;
	    width: 12em;
    }

    /* hide the sub levels and give them an absolute positon so that they don't impose on anything else */
    .nav ul ul 
    {
        visibility: hidden;
        position: absolute;
        height:0;
        top:2em;
        left:0; 
        width:12em;
    }

    /* position the third level flyout menu */
    .nav ul ul ul
    {
        left:13em; /* make this width+1em if using borders, just width if not */
        top:0;
        width:12em;
    }

    /* style the top second and third level hover */
    .nav ul a:hover, .nav ul ul a:hover, .nav ul ul ul a:hover 
    {
        color: #fff;
        background: #696969;
    }

    /* make the second level visible when hover on first level list */
    /*.nav ul :hover ul {
        visibility: visible;
    }*/
    .nav li.over ul {
        visibility: visible;
        /*border: thin solid green; /* for testing */
    }

    /* keep the third level hidden when you hover on first level list OR link */
    .nav ul :hover ul ul
    {
        visibility: hidden;
    }
    /* make the third level visible when you hover over second level list OR link */
    .nav ul :hover ul :hover ul
    {
         visibility: visible;
    }

    .nav li.over {
        /*border: solid thin red !important; /* for testing */
    }
}


/* Sword Look */
* {
	margin: 0;
	padding: 0;
}

body {
	background: #111 ;
	color: #DDD;
	font-family: "Tiresias PCfont Z",Tahoma,Arial,Sans-Serif;
	font-weight:normal;
	font-size: 90%;
}

@media screen {
    body {
	    margin: 4px 2em 1em 2em;
    }
}

/* need separate border definitions for each area because transparent doesn't work in ie6 */
a {
    border-bottom: solid 1px #111;
    border-top: solid 1px #111;
}

a:hover {
    border-bottom: 1px dashed #eee;
    border-top: 1px dashed #eee;
}

a:link, a:visited {
    font-weight: bold;
    text-decoration: none;
    color: #eee;
    font-weight: bold;
    text-decoration: none;}

strong {
    color: #fff;
}

p,ul {
	font-size: 1em;
	padding-bottom: 1em;
}

blockquote 
{
    font: bold 1em sans-serif;
}

code {
	background: #444;
	display: block;
	/*font-size: 12px;*/
	/*margin: 0 0.8em 1em;*/
	/*overflow: auto;*/
	padding: 0.5em;
	/*white-space: pre;*/
}

.quote {
    display: block;
    background: #444;
    padding: 1em;
    margin-bottom: 1em;
}

img {
    border: none;
}

ul {
    margin-left: 2em;
}

h1 {
    font: normal 2em;
    /*color: #fca136;*/
    color: #fff;
}

h2 {
    font: bold 1.6em;
	padding-bottom: 4px;
	color: #fca136;
}

h3 {
    font: normal 1.6em;
    color: #fff;
} 	

h6 {
    font: normal 0.5em;
    color: #fff;
} 	

/* misc */
.clearer {
    display: block;
    clear: both;
}

.stripes {
	background: #333333;
	height: 6px;
}

.left {
    float: left;
}

.right {
    float: right;
    background: #2A2A2A none repeat scroll 0%;
}

/* need separate border definitions for each area because transparent doesn't work in ie6 */
.right a {
    border-bottom: solid 1px #2a2a2a;
    border-top: solid 1px #2a2a2a;
}

.subnav {
    border-color: #444444 rgb(30, 30, 30) rgb(30, 30, 30);
    border-style: solid;
    border-width: 1px;
    padding: 1em;

}

/* header */
.header {
	background: #000;
	border-bottom: 2px solid #333;
	font: normal 2em sans-serif;
	height: 90px;
}

.header a {
	color: #888;
	display: block;
	line-height: 80px;
	text-decoration: none;
	width: 100%;
	border: none;
}

#banner a, #banner a:link, #banner a:hover, #banner a:visited {
    border: none;
}

.header span {
    padding-left: 32px;
}

#userDetails 
{
    float:right;
    padding-top: 6px;
    font-size: smaller;
    margin-right: 1em;
}

#banner {
	height: 50px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background-image: url(bannerBG.jpg);
	background-repeat: repeat-x;
}



#bannerButton {
    background-image: url(bannerButton.jpg);
    background-position: right;
    background-repeat: no-repeat;
	float: right;
	height: 50px;
	width: 45px;
    cursor:pointer;
}


#sword_logo {
	float: left;
	margin: 6px 0 0 0;
	background-image: url(sword_logo.jpg);
	background-position: left;
	background-repeat: no-repeat;
	height: 35px;
	width: 94px;
	cursor:pointer;
}

.captionedpic {
	float:left;
	padding: 0.5em;
}

.right .captionedpic {
	/* IE hack - IE doesn't get the box right */
	width: 95%;
}

#casestudylogo {
float: right;
}


/* structure */
.container {
	border-top: none;
}

.main {
	background: #303030;
	border-left: 1px solid #444;
	border-top: 1px solid #444;
	clear: both;
}

.main .left {
    width: 64%;
}
.main .right {
    width: 36%;
}

.content {
	padding: 1em;
}

.content h1 {
	margin-bottom: 10px;
	padding: 6px 0 4px;
}
.content a {
    border-bottom: solid 1px #303030;
    border-top: solid 1px #303030;
	/*color: #eee;*/
	/*text-decoration: underline;*/
}
.content a:hover {
    /*color: #CCC;*/
    border-bottom: 1px dashed #eee;
    border-top: 1px dashed #eee;
}
.content .descr {
    margin-bottom: 5px;
}


.footer {
    background-image: url(scisys_white.gif);
    background-position: right bottom ;
    background-repeat: no-repeat;
	background-color: #191919;
	color: #ccc;
	padding: 1em 1em 0em 1em;
}

/* need separate border definitions for each area because transparent doesn't work in ie6 */
a {
    /*border-bottom: solid 1px #191919;
    border-top: solid 1px #191919;*/
}

.footer ul {
	border-top: 1px solid #262626;
	margin: 0;
}
.footer li {
	border-bottom: 1px solid #262626;
	list-style: none;
}
.footer li a {
	display: block;
	line-height: 2em;
	padding-left: 4%;
	width: 96%;
}
.footer a {
    color: #ddd;
}

.footer a:hover {
	color: #ddd;
	background: #222;
}

.col3,.col3center {
	float: left;
	width: 31%;
}

.col3center {
    margin: 0 3%;
}


.bottom {
	/*color: #666;*/
	clear: both;
}

.hide {
    display: none;
}

/* tables */
th {
    font-weight: bold;
    text-align: left;
    color: #fff;
    
}

th, td {
    vertical-align: top;
    font-size: 90%;
    padding-right: 1em;
    padding-bottom: 1em;
}

.runtimeheader th {
    padding: 0.1em 0.2em 0.1em 0.2em;
}

.runtimeselectedrow th, .runtimeselectedrow td {
    padding: 0.1em 0.2em 0.1em 0.2em;
    background-color: #eee;
    color: Black;
}

.runtimeselectedrow a {
    color: Black;
}

.runtimerow th, .runtimerow td {
    padding: 0.1em 0.2em 0.1em 0.2em;
}

.runtimealternatingrow th, .runtimealternatingrow td {
    padding: 0.1em 0.2em 0.1em 0.2em;
    background-color: #555;
}

.runtimepager th, .runtimepager td {
    padding: 0.1em 0.2em 0.1em 0.2em;
    text-align: center;
}

/* lists */
ul.nobullets {
    list-style: none;
}

.nobullets li {
    margin-bottom: 0.25em;
}

/* fieldsets */
fieldset {
    padding: 0.5em;
}

/* font definitions for Internet Explorer */
@font-face {
    font-family: "Tiresias PCfont Z";
    font-style:  normal;
    font-weight: 700;
    src: url(TIRESIA1.eot);
}
@font-face {
    font-family: "Tiresias PCfont Z";
    font-style:  normal;
    font-weight: normal;
    src: url(TIRESIA0.eot);
}

/* tweaks for LiveMaps */
/* tweaks for LiveMaps */
/* clean up the map */
#myMap a, .ero a {
   text-decoration: none;
   border: none;
   color: Black;
}

/* tweak the appearance of the map control - 
 * these must be !important so that the map's own stylesheet doesn't override them */
.MSVE_navAction_background {
    background-color: #777 !important;
}

/* a box for warning messages */
.warning {
    display: block;
    border: solid 2px #fca136;
    margin: 1em;
    padding: 1em;
}


/* nav menu colours */
.nav {
    color: #96fe31;
    background-color: #191919;
}

.nav a {
    color: #96fe31;
}

/* css definitions for printed content */
@media print {

    /* no margin */
    body {
        margin: 0;
    }

    /* no banner or menu */
    div .nav {
        display: none;
    }

    #banner {
        display: none;
    }

    /* no border on main or content */
    .main {
        border: none;
    }

    .content {
        border: none;
        padding: 0;
    }

    /* non-printing items */
    .noprint {
        display: none;
    }
    
} /* @media print */

div.separator {
    clear: both;
}

div.widget {
background:#191919 none repeat scroll 0 0;
/*border:1px solid #666;*/
margin-bottom:10px;
min-width:1px;
padding:10px 15px;
z-index:1;
}

.delete {
float: right;
border: thin solid #333;
text-decoration: none !important;
}

.postfooter {
padding-top: 0.5em;
}

.pubDate {
font-size: smaller ;
float: right;
}
.post {
border-top: thin solid #fca136;
margin-bottom: 1em;
}