1/*
2 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
4 *
5 * == BEGIN LICENSE ==
6 *
7 * Licensed under the terms of any of the following licenses at your
8 * choice:
9 *
10 *  - GNU General Public License Version 2 or later (the "GPL")
11 *    http://www.gnu.org/licenses/gpl.html
12 *
13 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
14 *    http://www.gnu.org/licenses/lgpl.html
15 *
16 *  - Mozilla Public License Version 1.1 or later (the "MPL")
17 *    http://www.mozilla.org/MPL/MPL-1.1.html
18 *
19 * == END LICENSE ==
20 *
21 * Styles used by the dialog boxes.
22 */
23
24body
25{
26	margin: 0px;
27	padding: 10px;
28	background-color: #f7f8fd;
29}
30
31body, td, input, select, textarea
32{
33	font-size: 11px;
34	font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
35}
36
37body, .BackColor
38{
39	background-color: #f7f8fd;
40}
41
42.PopupBody
43{
44	margin: 0px;
45	padding: 0px;
46}
47
48.PopupTitle
49{
50	font-weight: bold;
51	font-size: 14pt;
52	color: #0e3460;
53	background-color: #8cb2fd;
54	padding: 3px 10px 3px 10px;
55}
56
57.PopupButtons
58{
59	border-top: #466ca6 1px solid;
60	background-color: #8cb2fd;
61	padding: 7px 10px 7px 10px;
62}
63
64.Button
65{
66	border: #1c3460 1px solid;
67	color: #000a28;
68	background-color: #7096d3;
69}
70
71#btnOk
72{
73	width: 100px;
74}
75
76.DarkBackground
77{
78	background-color: #d7d79f;
79}
80
81.LightBackground
82{
83	background-color: #ffffbe;
84}
85
86.PopupTitleBorder
87{
88	border-bottom: #d5d59d 1px solid;
89}
90
91.PopupTabArea
92{
93	color: #0e3460;
94	background-color: #8cb2fd;
95}
96
97.PopupTabEmptyArea
98{
99	padding-left: 10px ;
100	border-bottom: #466ca6 1px solid;
101}
102
103.PopupTab, .PopupTabSelected
104{
105	border-right: #466ca6 1px solid;
106	border-top: #466ca6 1px solid;
107	border-left: #466ca6 1px solid;
108	padding: 3px 5px 3px 5px;
109	color: #0e3460;
110}
111
112.PopupTab
113{
114	margin-top: 1px;
115	border-bottom: #466ca6 1px solid;
116	cursor: pointer;
117	cursor: hand;
118}
119
120.PopupTabSelected
121{
122	font-weight:bold;
123	cursor: default;
124	padding-top: 4px;
125	border-bottom: #f7f8fd 1px solid;
126	background-color: #f7f8fd;
127}
128
129.PopupSelectionBox
130{
131	border: #1e90ff 1px solid !important;
132	background-color: #add8e6 !important;
133	cursor: pointer;
134	cursor: hand;
135}
136
137#tdBrowse
138{
139	vertical-align: bottom;
140}