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: #f7f7f7;
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: #f7f7f7;
40}
41
42.PopupBody
43{
44	margin: 0px;
45	padding: 0px;
46}
47
48.PopupTitle
49{
50	padding-right: 10px;
51	padding-left: 10px;
52	font-weight: bold;
53	font-size: 14pt;
54	padding-bottom: 3px;
55	color: #504845;
56	padding-top: 3px;
57	background-color: #dedede;
58}
59
60.PopupButtons
61{
62	border-top: #cec6b5 1px solid;
63	background-color: #DEDEDE;
64	padding: 7px 10px 7px 10px;
65}
66
67.Button
68{
69	border: #7a7261 1px solid;
70	color: #504845;
71	background-color: #cec6b5;
72}
73
74#btnOk
75{
76	width: 100px;
77}
78
79.DarkBackground
80{
81	background-color: #d7d79f;
82}
83
84.LightBackground
85{
86	background-color: #ffffbe;
87}
88
89.PopupTitleBorder
90{
91	border-bottom: #cec6b5 1px solid;
92}
93
94.PopupTabArea
95{
96	color: #504845;
97	background-color: #DEDEDE;
98}
99
100.PopupTabEmptyArea
101{
102	padding-left: 10px ;
103	border-bottom: #cec6b5 1px solid;
104}
105
106.PopupTab, .PopupTabSelected
107{
108	border-right: #cec6b5 1px solid;
109	border-top: #cec6b5 1px solid;
110	border-left: #cec6b5 1px solid;
111	padding: 3px 5px 3px 5px;
112	color: #504845;
113}
114
115.PopupTab
116{
117	margin-top: 1px;
118	border-bottom: #cec6b5 1px solid;
119	cursor: pointer;
120	cursor: hand;
121}
122
123.PopupTabSelected
124{
125	font-weight:bold;
126	cursor: default;
127	padding-top: 4px;
128	border-bottom: #f1f1e3 1px solid;
129	background-color: #f7f7f7;
130}
131
132.PopupSelectionBox
133{
134	border: #a9a9a9 1px solid !important;
135	background-color: #dcdcdc !important;
136	cursor: pointer;
137	cursor: hand;
138}
139
140#tdBrowse
141{
142	vertical-align: bottom;
143}