Welcome to mirror list, hosted at ThFree Co, Russian Federation.

style.css « css - github.com/FreeRDP/freerdp.github.io.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9e68bba35e93bc8c1fb04afc4871b5cae787724 (plain)
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
/*  
Theme Name: FreshServe - WordPress Edition
Theme URI: http://themeforest.net/user/two2twelve?ref=two2twelve
Description: Designed & Developed by <a href="http://themeforest.net/user/two2twelve?ref=two2twelve">Two2Twelve</a>.
Version: 1.2
Author: Eric Alli
Author URI: http://two2twelve.com

This file is part of a site template for sale on ThemeForest.net
See: http://themeforest.net/user/two2twelve/portfolio?ref=two2twelve
Copyright © 2011 Eric Alli <info@two2twelve.com>
*/

/*
	The CSS files for each color scheme are located in themes/_theme_name_.css (eg: themes/blue-green.css)
	This file is used for the overall site structure and elements.
*/
* { padding: 0; margin: 0; }
/*--------------------------------------------
Global Elements
---------------------------------------------*/
body {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	color: #707070;
	background: #ebebeb;
}
div.page {
	width: 960px;
	margin: 0 auto;
	position: relative;
}
div#header {
	background: url('../img/header_bg.gif') repeat-x top;
	height: 150px;
}
	div#header a.logo{ 
		float: left; 
		margin-top: 18px; 
	}
	div#header ul {
		list-style: none;
		float: right;
		margin-top: 48px;
	}
		div#header ul li {
			height: 60px;
			float: left;
			margin-left: 0px;
			padding: 0px 0px 0px 16px;
			line-height: 18px;
		}
			div#header ul li a {
				color: #555555;
				font-size: 13px;
				text-decoration: none;
				display: block;
				font-weight: bold;
				padding: 4px 10px 4px 10px;
			}
			div#header ul li a:hover { color: #333; }
			div#header li.current_page_item a,
			div#header li.current-page-ancestor a{ background: #dddddd; color: #000; }
div#page {
	width: 980px;
	margin: 0 auto;
	margin-top: -33px;
}
	div#page .header{ 
		background: url('../img/page_header.gif') repeat-x top;
		height: 60px;
	}
		div#page .header h1{ padding-left: 30px; padding-top: 5px; }
		div#page .header ul { list-style: none; float: right; margin-top: -30px; margin-right: 10px; line-height: 18px; }
			div#page .header ul li {
				float: left;
				margin-right: 20px;
				height: 30px;
				display: block;
			}
			div#page .header ul li.current_page_item {
				background: url('../img/sub_menu-left.png') no-repeat top left;
			}
				div#page .header ul li a {
					font-size: 14px;
					font-weight: bold;
					text-decoration: none;
					color: #8b8c8b;
					display: block;
					padding: 6px 20px 0px 20px;
					height: 30px;
				}
				div#page .header ul li.current_page_item a {
					color: #464646;
					background: url('../img/sub_menu-right.png') no-repeat top right;
				}
				div#page .header ul li a:hover {
					color: #555;
				}
	div#page .header_home{ 
		background: url('../img/home_header.gif') repeat-x bottom;
		height: 320px;
		position: relative;
	}	
		div#page .header .price_tag{ 
			width: 130px;
			height: 130px;
			position: absolute;
			top: -55px;
			right: -35px;
		}
		div#page .header_home img.main_screenshot{ 
			float: left;
			padding: 20px 0px 0px 35px;
		}
		div#page .header_home .info {
			width: 450px;
			float: right;
			margin: 25px 50px 0px 0px;
		}
			div#page .header_home .info h1 { padding: 0; margin-bottom: 15px; font-size: 30px; color: #363636; }
			div#page .header_home .info p{ font-size: 13px; color: #363636; margin-bottom: 30px; }
			div#page .header_home .info .trial { font-size: 11px; color: #7d7d7d; margin-left: 12px; }
	div#page .top {
		background: url('../img/page_top.gif') no-repeat top;
		height: 23px;
	}
	div#page .content {
		background: url('../img/page_middle.gif') repeat-y top;
	}
		div#page .content .padding {
			padding: 25px 45px 25px 45px;
		}
		div#page.right_sidebar .page_content {
			width: 600px;
			float: left;
		}
		div#page.right_sidebar .page_sidebar {
			width: 245px;
			float: right;
		}
		div#page.left_sidebar .page_content {
			width: 600px;
			float: right;
		}
		div#page.left_sidebar .page_sidebar {
			width: 245px;
			float: left;
		}
	div#page .bottom {
		background: url('../img/page_bottom.gif') no-repeat bottom;
		height: 23px;	
	}
	div#page .section_title {
		width: 240px;
		height: 56px;
		margin-left: -46px;
		margin-bottom: 10px;
		margin-top: 30px;
	}
	div#page .section_title.right {
		background-position: 0px -56px;
		margin-left: 695px;
	}
		div#page .section_title h3{
			font-size: 15px;
			color: #fff;
			padding: 5px 0px 0px 45px;
		}
		div#page .section_title h4{
			font-size: 12px;
			color: #fff;
			padding: 5px 0px 0px 45px;
		}
div#footer {
	margin-top: 5px;
	padding-bottom: 30px;
}
	div#footer p { float: left; color: #888; }
	div#footer ul { list-style: none; float: right; }
	div#footer ul li { float: left; }
	div#footer ul li a {
		margin-left: 20px;
		color: #707070;
		text-decoration: none;
	}
		div#footer ul li a:hover { color: #333; }
/*--------------------------------------------
Sidebar
---------------------------------------------*/
div.widget {
	background: #e9eae9;
	padding: 15px 20px 10px 20px;
	margin-bottom: 20px;
}
	div.widget h3 { 
		font-size: 13px; 
		color: #444; 
		font-weight: bold; 
		margin-bottom: 5px;
	}
	div.widget p { 
		font-size: 12px; 
		color: #707070; 
		line-height: 18px; 
		margin-bottom: 0;
	}
	div.widget ul { list-style: circle; padding-left: 16px; margin-top: 10px; }
		div.widget ul li { margin-bottom: 5px; }
	div.widget a.rss { 
		background: url('../img/icons/rss.png') no-repeat top left;
		padding-left: 22px;
		text-decoration: none;
		color: #444;
		font-weight: bold;
		display: block;
		margin-bottom: 5px;
	}
	div.widget #s { width: 185px; padding: 8px; margin-bottom: 10px; }
	div.widget .screen-reader-text { display: none; }
	/* Custom Twitter Widget */
	div.widget #twitter_update_list {
		font-size: 13px;
		line-height: 19px;
		list-style: none;
		padding-left: 0px;
	}
		div.widget #twitter_update_list li {
			border-bottom: 1px solid #ccc;
			padding-bottom: 7px;
			margin-bottom: 9px;
			background: url('../img/icons/twitter.png') no-repeat 0px 5px;
			padding-left: 26px;
		}
	/* Custom Flickr Widget */
	div.freshserve_flickr_widget { padding-right: 0px; }
	div.widget div.flickr_wrap {
		margin-top: 10px;
	}
		div.widget div.flickr_wrap img {
			float: left;
			width: 56px;
			height: 56px;
			margin: 0px 7px 10px 0px;
			border: 4px solid #ccc;
			-moz-border-radius: 3px;
		}
	/* Calendar Widget */
	.widget_calendar h3 { text-align: center; }
	.widget_calendar #wp-calendar {
		color: #555;
		width: 100%;
		text-align: center;
	}
	.widget_calendar #wp-calendar caption,
	.widget_calendar #wp-calendar td,
	.widget_calendar #wp-calendar th {
		text-align: center;
	}
	.widget_calendar #wp-calendar caption {
		font-size: 11px;
		font-weight: 500;
		padding: 5px 0 3px 0;
		text-transform: uppercase;
	}
	.widget_calendar #wp-calendar th {
		background: #f4f4f4;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		font-weight: bold;
	}
	.widget_calendar #wp-calendar tfoot td {
		background: #f4f4f4;
		border-top: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
	}
/*--------------------------------------------
Home
---------------------------------------------*/
div#screenshots { position: relative; padding-bottom: 25px; }
div#screenshots .scrollable {
	position:relative;
	overflow:hidden;
	width: 900px;
	height:110px;
}
div#screenshots .scrollable .items {
	width:20000em;
	position:absolute;
}
div#screenshots a.controls {
	display: block;
	width: 17px;
	height: 31px;
	text-indent: -999999px;
	background: url('../img/slide-controls.gif') no-repeat top;
}
	div#screenshots a.prev {
		background-position: top left;
		position: absolute;
		top: 100px;
		left: -50px;
	}
	div#screenshots a.next {
		background-position: top right;
		position: absolute;
		top: 100px;
		right: -50px;
	}
div#screenshots .items ul{ list-style: none; float: left; }
	div#screenshots .items div {
		float:left;
		background: url('../img/screenshot_bg.gif') no-repeat top left;
		width: 155px;
		height: 110px;
		margin-right: 25px;
	}		
		div#screenshots .items div a{
			width: 145px;
			height: 100px;
			overflow: hidden;
			display: block;
		}
		div#screenshots div img {
			padding: 10px 0px 0px 10px;
		}
div#features { }
	div#features p {
		float: left;
		width: 260px;
		font-size: 12px;
		color: #363636;
		margin-right: 50px;
	}
		div#features p.last { margin-right: 0; }
		div#features p b{
			display: block;
			font-size: 17px;
			font-weight: normal;
			margin-bottom: 12px;
		}
		div#features p img{
			float: left;
			margin-right: 15px;
			margin-top: -3px;
		}
		div#features .spacer{
			padding: 20px 0px 20px 0px;
		}
/*--------------------------------------------
About
---------------------------------------------*/
div#page div#about p { line-height: 24px; }
div.team {
	width: 415px;
	margin-bottom: 20px;
}
	div.team h3 { font-size: 18px; }
		div.team h3 span { color: #aaa; }
	div.member_left { float: left; }
	div.member_right { float: right; }
	div#page div.team p{ line-height: 21px; font-size: 12px; }
	div.team img{
		float: left;
		margin-right: 15px;
		margin-top: 5px;
	}
	div.team ul{ list-style: none; }
		div.team ul li {
			float: left;
			margin-right: 10px;
		}
			div.team ul li a {
				text-decoration: none;
				background: #ddd;
				padding: 3px 8px 3px 8px;
				font-size: 12px;
			}
				div.team ul li a:hover { background: #ccc; }
/*--------------------------------------------
Pricing
---------------------------------------------*/
div#row_names { float: left; margin: 83px 0px 0px 30px; }
	div#row_names ul {
		list-style: none;
		line-height: 44px;
	}
		div#row_names ul li {
			font-size: 14px;
			text-align: right;
			color: #111;
		}
div#price_table {
	margin-bottom: 30px;
	float: right;
}
	div#price_table table {
		border: 1px solid #d3d4d3;
		text-align: center;
		width: 704px;
	} 
		div#price_table table thead{
			background: #ededed url('../img/table_header.gif') repeat-x bottom;
		}
		div#price_table table thead td {
			padding: 15px 0px 15px 0px;
			border-right: 1px solid #d3d3d3;
		}
			div#price_table table thead td .popular {
				width: 79px;
				height: 68px;
				top: -19px;
				right: -4px;
				text-indent: -99999px;
				position: absolute;
			}
			div#price_table table td.last { border-right: none; }
			div#price_table table thead td h2 {
				color: #000000;
				font-size: 21px;
				margin-bottom: 12px;
				font-weight: bold;
			}
			div#price_table tbody td {
				font-size: 14px;
				color: #555555;
				padding: 12px 0px 12px 0px;
				border-right: 1px solid #d9d9d9;
				border-bottom: 1px solid #e6e6e6;
			}
			div#price_table tbody tr.color td { background: #eee; }
			div#price_table tbody tr.buttons td { padding: 30px 0px 30px 0px; border-bottom: none;}
div#faq {}
	div#faq h4{ font-size: 16px; margin-bottom: 15px; }
	div#faq .left {
		width: 410px;
		float: left;
		margin-bottom: 25px;
	}
	div#faq .right {
		width: 410px;
		float: right;
	}
/*--------------------------------------------
Signup
---------------------------------------------*/
div#signup { }
	div#signup h2 {
		font-size: 14px;
		font-weight: bold;
		background: url('../img/hr.gif') repeat-x 0px 10px;
		margin-bottom: 15px;
	}
		div#signup h2 span {
			background: #F8F9F8;
			padding-right: 12px;
			color: #333;
		}
	div#signup form label {
		display: block;
		float: left;
		width: 85px;
		padding-right: 30px;
		padding-top: 4px;
		text-align: right;
		font-size: 12px;
	}
		div#signup form label.error { 
			float: none; 
			display: inline;
			margin-left: 10px;
			color: #DD3030;
			position: relative;
			top: -2px;
		}
	div#signup form .text_field {
		padding: 6px;
	}
	div#signup form .card_type select{ float: left; }
	div#signup img.card_types { float: left; margin-left: 10px; margin-top: -3px; }
	div#signup .margin { padding: 15px 0px 15px 0px; }
/*--------------------------------------------
Blog
---------------------------------------------*/
div#blog {}
	div#blog .post {
		background: url('../img/hr.gif') repeat-x bottom;
		padding-bottom: 30px;
		margin-bottom: 30px;
	}
	span.meta {
		display: block;
		margin: 5px 0px 5px 0px;
		color: #999;
	}
	div.blog_img {
		width: 621px;
		height: 184px;
		background: url('../img/blog_img_bg.gif') no-repeat top;
		margin-left: -15px;
	}
		div.blog_img img{ padding: 17px 0px 0px 19px; }
	div#blog .content {
		margin-bottom: 25px;
		margin-top: 10px;
	}
	div#blog .read_more { float: right; margin-top: -10px; }
div#search_results {

}			
	div#search_results .post {
		margin-bottom: 30px;
		padding-bottom: 30px;
		border-bottom: 1px solid #ddd;
	}
	div#search_results .post .content {
		margin-bottom: 25px;
		margin-top: 10px;
	}
	div#search_results label {
		float: left;
		font-size: 18px;
		padding-top: 8px;
		margin-right: 8px;
	}
/*--------------------------------------------
Pagination
---------------------------------------------*/
.navigation {
	text-align: center;
}
/*--------------------------------------------
HTML Elements
---------------------------------------------*/
div#html_elements h1, h2, h3, h4, h5, h6 { margin-bottom: 5px; }
div#page div#html_elements p { margin-bottom: 25px; }
/*--------------------------------------------
Typography
---------------------------------------------*/
h1,
h1 a {
	font-size: 26px;
	font-weight: normal;
	color: #5f5f5f;
	letter-spacing: -0.02em;
	text-decoration: none;
}
	h1 a:hover { text-decoration: underline; }
h2 {
	font-size: 23px;
	color: #707070;
	font-weight: normal;
}
h3 {
	font-size: 20px;
	color: #363636;
	font-weight: normal;
}
h4 {
	font-size: 19px;
	color: #252525;
	font-weight: normal;
}
h5 {
	font-size: 17px;
	color: #888;
	font-weight: normal;
	margin-bottom: 5px;
}
h6 {
	font-size: 15px;
	color: #999;
	font-weight: normal;
	margin-bottom: 5px;
}
b { color: #444; }
span.highlight_dark { color: #fff; background: #555; padding: 2px 6px; }
span.highlight_light { background: #ffffc8; padding: 2px 6px; }
div#page p {
	margin-bottom: 15px;
	line-height: 22px;
}
div.wrap_image_left,
div.wrap_image_right {
	background: url('../img/about_img_bg.gif') no-repeat top;
	width: 317px;
	height: 187px;
}
div.wrap_image_left {
	float: left;
	margin: 0px 15px 0px 0px;
}
div.wrap_image_right {
	float: right;
	margin: 0px 0px 0px 15px;
}
	div.wrap_image_left img,
	div.wrap_image_right img{
		padding: 12px 0px 0px 12px;
	}
ul, ol { padding-left: 15px; line-height: 22px; }
	ul.list { list-style: none; padding-left: 0px; }
	
	ul.small_circle li { padding-left: 22px; }
	ul.small_circle.blue li { background: url('../img/bullets/circle-blue-16.png') no-repeat left; }
	ul.small_circle.green li { background: url('../img/bullets/circle-green-16.png') no-repeat left; }
	ul.small_circle.orange li { background: url('../img/bullets/circle-orange-16.png') no-repeat left; }
	ul.small_circle.red li { background: url('../img/bullets/circle-red-16.png') no-repeat left; }
	ul.small_circle.yellow li { background: url('../img/bullets/circle-yellow-16.png') no-repeat left; }
	ul.small_circle.pink li { background: url('../img/bullets/circle-pink-16.png') no-repeat left; }
	
	ul.large_circle li { padding-left: 34px; line-height: 26px; }
	ul.large_circle.blue li { background: url('../img/bullets/circle-blue-32.png') no-repeat left; }
	ul.large_circle.green li { background: url('../img/bullets/circle-green-32.png') no-repeat left; }
	ul.large_circle.orange li { background: url('../img/bullets/circle-orange-32.png') no-repeat left; }
	ul.large_circle.red li { background: url('../img/bullets/circle-red-32.png') no-repeat left; }
	ul.large_circle.yellow li { background: url('../img/bullets/circle-yellow-32.png') no-repeat left; }
	ul.large_circle.pink li { background: url('../img/bullets/circle-pink-32.png') no-repeat left; }
	
	ul.arrow.green li { padding-left: 22px; background: url('../img/bullets/arrow-green.png') no-repeat left; }
	ul.arrow.black li { padding-left: 22px; background: url('../img/bullets/arrow-black.png') no-repeat left; }
	ul.arrow.grey li { padding-left: 22px; background: url('../img/bullets/arrow-grey.png') no-repeat left; }	
code,
pre {
    background: #FFFFFF;
    display: block;
    padding: 7px 10px;
		-moz-box-shadow: 0px 1px 10px #ddd;
		border: 1px solid #e9e9e9;
		-moz-border-radius: 8px;
}
blockquote {
    background: url("../img/quotes.png") no-repeat 0 -7px;
    margin: 20px 0;
    padding: 5px 5px 5px 50px;
}
/*--------------------------------------------
Forms
---------------------------------------------*/
form .text_field{
	padding: 10px;
	border: 1px solid #d6d6d6;
	background: #fff url('../img/tf_bg.gif') repeat-x top;
	font-size: 13px;
	font-style: italic;
	color: #999;
}
form .default_text_active {
	font-style: normal;
	color: #777;
}
form p {
	float: left;
	margin: 0;
	margin-right: 50px;
}
	form p.last { margin-right: 0; }
	form p.message { margin-top: 20px; float: none; }
	p.validation { font-weight: bold; }
	p.error { color: #DD3030; font-weight: bold; }
form label {
	display: block;
	color: #555555;
	font-size: 15px;
	margin-bottom: 5px;
}
form input.text_field,
form select { width: 248px; }
form textarea { width: 870px; height: 200px; font-size: 13px; }
form .send_form {
	float: right;
	margin-top: 20px;
	margin-bottom: 10px;
}
/*--------------------------------------------
Buttons
---------------------------------------------*/
a.button {
	padding: 8px 15px 10px 0px;
	font-size: 12px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	position: relative;
}
	a.button span{
		padding: 8px 5px 10px 20px;
	}	
	a.icon span{ padding-left: 40px; }
	a.button img{ position: absolute; top: 6px; left: 11px; }
/*--------------------------------------------
Utility
---------------------------------------------*/
.clear { clear:both; }
.relative { position: relative; }
img { border: none; }
a { outline: none; }
a:hover { text-decoration: none; }
hr {
	border: none;
	background: #ccc;
	color: #ccc;
	width: 100%;
	height: 1px;
	margin: 20px 0px 20px 0px;
}
/*--------------------------------------------
Homepage Slideshow
---------------------------------------------*/
div#slider {
	overflow: hidden;
	width: 460px;
	float: left;
}
/* container for slides */
.slides {
	position:relative;	
	height: 300px;
	width: 405px;
	float:left;	
}

/* single slide */
.slides div {
	display:none;
	position:absolute;
	top:0;
	left:0;		
	height:300px;
}
	.slides div.video {
		top: 30px;
		left: 35px;
	}
/* tabs (those little circles below slides) */
.slidetabs {
	width: 70px;
	position: relative;
	z-index: 3;
	margin: 0 auto;
	clear: both;
	top: -15px;
}

	/* single tab */
	.slidetabs a {
		width:8px;
		height:8px;
		float:left;
		margin:3px;
		background:url('../img/navigator.png') 0 0 no-repeat;
		display:block;
		font-size:1px;		
	}

	/* mouseover state */
	.slidetabs a:hover {
		background-position:0 -8px;      
	}

	/* active state (current page state) */
	.slidetabs a.current {
		background-position:0 -16px;     
	} 	

/* disabled navigational button. is not needed when tabs are configured with rotate: true */
.disabled {
	visibility:hidden !important;		
}
span.meta a{ color: #999; text-decoration: none; }
span.meta a:hover { color: #666; }