1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
|
body {
font: .7em verdana, arial, sans-serif;
margin-top: 10px;
margin-left:10px;
margin-right:10px;
/* border: 1px solid black; */
}
/* img { border: 1px; position: absolute; } */
* {margin:0; padding:0;}
div#mainwrapper {
/* min-width:760px; */
/* max-width:880px; */
margin-left:auto;
margin-right:auto;} /* centers layout when > max width */
div#header {
width:auto;
}
#threecolwrap {
float:left;
width:100%;
}
#twocolwrap {
float:left;
width:100%;
display:inline; /* stops IE doubling margin on float*/
margin-right:-170px; /* CWS - neg margin move */
}
#leftcol {
float:left;
width:175px;
display:inline; /* stops IE doubling margin on float*/
/* border: 1px solid black; */
}
#content {
width:600px;
margin-left:175px;
margin-top: 0px;
/* margin-right:170px; */
/* border: 1px solid black; */
}
#rightcol {
position: absolute;
width:175px;
margin-left: 775px;
/* width:170px; */
/* width: auto;*/
/* border: 1px solid black; */
}
#footer {
width:100%;
clear:both;
float:left;
text-align: right;
font-size: .6em;
/* border: 1px solid black; */
}
div#yldiv {
float:left;
width:250px;
display: none;
}
select {
/* float: right; */
width: 100%;
font-size: .9em;
border: 1px solid grey;
}
div#formcontent {
/*border: 1px solid black; */
}
div.clearfix {
/* border: 1px solid #CCC; */
margin-bottom: 10px;
}
label {
float: left;
font-size: .9em;
font-weight: bold;
width:100%
}
div#content h1,h2,h3 {
text-align: center
}
div#content p,ul {
margin: 2% 20% 2% 20%;
font-size: 1.2em;
}
div#content li {
margin-bottom: 3%;
}
div#showpdf {
margin-left: 20px;
}
div#copyright {
color: grey;
text-align: center;
font-size: .8em;
margin: 10% 20% 0px 20%;
}
div#bibliography {
margin-top: 10px;
font: .8em verdana, arial, sans-serif;
font-weight: bold;
}
|