Skip to main content
summaryrefslogtreecommitdiffstats
blob: 18377d867886dc6a3afe7fdea88501941dad3db1 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
@import url(../reindeer/styles.css);

/*********** Page Template Layout *****************/
.osee-main-container-layout {
	width: 100%;
	height: 100%;
}

.osee-header-section {
	margin: 0 auto; /* Centered inside outer div */
}

.osee-page-content-section {
	
}

.osee-footer-section {
	margin: 0 auto; /* Centered inside outer div */
	background: #000; url (bg-footer.jpg) repeat-x scroll left top;
	color: #AAA; /* Grey on black */
	padding: 10px 0;
}

/*********** End of Page Template Layout *****************/
.osee-logo {
	background: url(osee_32.png) center;
	width: 32px;
	height: 32px;
	padding: 5px;
	vertical-align: middle;
}

.osee-header-bar {
	height: 300px;
	background: black repeat-x;
	background-image: url(img/bg.png);
	color: #d1d3d6;
	text-shadow: rgba(0, 0, 0, .9) 0 1px 0;
	padding: 5px 10px;
}

.osee-header {
	/*	background: #FFFFFF url(osee_32.png) no-repeat scroll left top;*/
	border: 1px solid #D0D0D0;
}

/*.osee-logo-text {
	font-family: Verdana, serif;
	font-style: normal;
	font-weight: bold;
	font-size: 20px;
	color: #black;
	vertical-align: middle;
	padding-left: 8px;
	font-weight: bold
}
*/
.osee-footer {
	
}

.osee-footer-bar {
	height: 300px;
	background: #333333 repeat-x;
	background-image: url(img/bg.png);
	color: #d1d3d6;
	text-shadow: rgba(0, 0, 0, .9) 0 1px 0;
}

.osee-product-summary {
	padding-top: 15px;
	font-size: 9px;
	text-align: right;
}

.osee-expand-button {
	
}

.osee-search-header-component {
	background: blue;
}

.osee-title-large {
}

.osee-title-large-text {
	font-size: 100px;
}

.osee-title-medium-text a img {
	font-size: 70px;
	width: 70px;
	height: 70px;
}

.osee-search-textfield {
}

.osee-searchresult-artname {
	font-size: 20px;
	color: blue;
}

.osee-searchresult-arttype {
	font-size: 15px;
	color: black;
}

.osee-searchresult-match {
	font-size: 12px;
	color: green;
}

.osee-searchresult-match-many {
	font-size: 12px;
	font-weight: bold;
	color: black;
}

.osee-searchresults-manyresultsfield {
	width: 20px;
}

.osee-horizontal-line {
	background-image:url('linespacer.png');
	background-repeat:repeat-x;
}

.osee-attributelabel {
	text-align:right;
}

.osee-attributevalue {
	font-weight:bold;
	text-align:left;
}

.osee-attributestitlelabel {
	font-size: 14px;
	color: black;
	font-weight:bold;
}

.osee-attributesborder {
	border-style:solid;
	border-width:1px;
}

.osee-currentpagelabel {
	font-weight:bold;
	font-size: 14px;
}


Back to the top