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}
29
30body, td, input, select, textarea
31{
32	font-size: 11px;
33	font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
34}
35
36body, .BackColor
37{
38	background-color: #f1f1e3;
39}
40
41.PopupBody
42{
43	margin: 0px;
44	padding: 0px;
45}
46
47.PopupTitle
48{
49	font-weight: bold;
50	font-size: 14pt;
51	color: #737357;
52	background-color: #e3e3c7;
53	padding: 3px 10px 3px 10px;
54}
55
56.PopupButtons
57{
58	border-top: #d5d59d 1px solid;
59	background-color: #e3e3c7;
60	padding: 7px 10px 7px 10px;
61}
62
63.Button
64{
65	border: #737357 1px solid;
66	color: #3b3b1f;
67	background-color: #c7c78f;
68}
69
70#btnOk
71{
72	width: 100px;
73}
74
75.DarkBackground
76{
77	background-color: #d7d79f;
78}
79
80.LightBackground
81{
82	background-color: #ffffbe;
83}
84
85.PopupTitleBorder
86{
87	border-bottom: #d5d59d 1px solid;
88}
89
90.PopupTabArea
91{
92	color: #737357;
93	background-color: #e3e3c7;
94}
95
96.PopupTabEmptyArea
97{
98	padding-left: 10px ;
99	border-bottom: #d5d59d 1px solid;
100}
101
102.PopupTab, .PopupTabSelected
103{
104	border-right: #d5d59d 1px solid;
105	border-top: #d5d59d 1px solid;
106	border-left: #d5d59d 1px solid;
107	padding: 3px 5px 3px 5px;
108	color: #737357;
109}
110
111.PopupTab
112{
113	margin-top: 1px;
114	border-bottom: #d5d59d 1px solid;
115	cursor: pointer;
116	cursor: hand;
117}
118
119.PopupTabSelected
120{
121	font-weight:bold;
122	cursor: default;
123	padding-top: 4px;
124	border-bottom: #f1f1e3 1px solid;
125	background-color: #f1f1e3;
126}
127
128.PopupSelectionBox
129{
130	border: #ff9933 1px solid !important;
131	background-color: #fffacd !important;
132	cursor: pointer;
133	cursor: hand;
134}
135
136#tdBrowse
137{
138	vertical-align: bottom;
139}