Skip to main content
summaryrefslogtreecommitdiffstats
blob: ec750b6fe9f1fb954a6ff1fd855f6b21198d8e66 (plain) (blame)
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
body {
	background-image : url(../graphics/contentpage/overview_wtr.jpg);
}

/* show the "selected" image for this page */
#navigation-links a#overview img, #navigation-links a#overview:hover img { 
	background-image : url(../graphics/icons/ctool/overview48sel.gif); 
	}


iframe {
	position:relative;
	top:16px;
	width:100%;
	height:100%;
	padding-left:10px;
	}
	
/* mozilla scrollbar appearing off page fix */
#page-content > iframe {
	width: 98%;
	padding-left: 2%;
}	


/* 
 * Set up the Overview links to be displayed in two columns
 * that are centered in the middle of the page.
 */
 
 /*

#overview-links {
	text-align : left;
	width : 760px;
	/* To center in Moz (have to use text-align for IE) */
	margin : 0px auto;
}

#overview-links a { 
	width : 370px;
	text-align : left; 
	margin-left : 5px;
	margin-right : 5px;
	margin-top : 5px;
	margin-bottom : -20px;
	vertical-align : top;
}

#overview-links > a { vertical-align : middle; }

#overview-links a img {
	height : 57px;
	width : 57px;
	vertical-align : middle;
		
}	

#overview-links a .link-label {
	display : block;
	width : 300px;
	position : relative;
	top : -50px;
	left : 60px;
}

#overview-links a > .link-label { left: 65px; }

#overview-links a p .text {
	display : block;
	width : 300px;
	position : relative;
	top : -45px;
	left : 53px;
}

#overview-links a p > .text { left: 58px; }

*/

/* Special case for Mozilla, because the links are displayed
   in 1 vertical column instead of 2 centered columns */
   /*
#overview-links > a { 	width : 700px; }
#overview-links a > .link-label { width : 700px; }
#overview-links a p > .text { width : 700px; }

#overview-links a:hover { border-right : 5px; }
*/

Back to the top