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 106 107 108 109 110 111 112 113
|
#content {
background-color: white;
width: 80%;
margin: 25px auto;
padding: 10px;
border: 2px solid grey;
}
#mobilecontent {
background-color: white;
width: 90%;
margin: 25px auto;
border: 2px solid grey;
padding: 0;
padding-top: 10px;
padding-bottom: 10px;
}
#headpanel {
position: relative;
padding: 45px 2em 1em 20px;
}
#headlinks {
position:absolute;
right: 10px;
top: 10px;
}
#navipanel {
background-color: lightgrey;
border-top: 1px solid black;
border-bottom: 1px solid black;
padding-left: 20px;
height: 25px;
}
#navilinks {
display: inline;
list-style-type: none;
}
#navilinks li {
display: inline;
padding: 0;
margin: 0;
float: left;
}
#navilinks a, #navilinks b {
display: block;
padding: 0 5px;
font-size: 10pt;
font-weight: bold;
line-height: 25px;
width: auto;
}
#navilinks a {
border-left: 1px solid white;
border-right: 1px solid #eeeeee;
color: black;
text-decoration: none;
}
#navilinks b {
color: white;
background-color: #272727;
}
#contentpanel {
padding: 45px 2em 1em 20px;
}
#contentleft {
float:left;
width:40%;
border-right: 1px dotted grey;
margin-right: 5px;
}
#contentright {
margin-left:40%;
}
#footerpanel {
border-top: 5px solid #EFEFEF;
clear:both;
margin-top:10px;
padding-top: 5px;
}
#headpanel h2 {
font-family: "Times New Roman",Times,serif;
font-weight: normal;
color: #222222;
margin-bottom: 1em;
font-size: 14pt;
}
a {
text-decoration: none;
color: #4D87C7;
}
a:visited {
color: #003366;
}
a:focus, a:hover, a:active {
text-decoration: underline;
color: #182E7A;
}
|