1/* Clear Outer Styles */
2
3body {
4	margin-top: 32px !important;
5}
6#zp__admin_module * {
7	font-family: Helvetica, Arial, sans-serif !important;
8	font-size: 15px !important;
9	line-height: 15px !important;
10	font-weight: normal;
11}
12
13#zp__admin_module {
14	text-align: left;
15	position: fixed;
16	left: 0px;
17	top: 0px;
18	border: 0px solid rgba(0,0,0,0.15);
19	border-radius: 3px;
20	background: rgba(255,255,255,0.9);
21	height: 30px;
22	z-index: 100001;
23	box-shadow: 0 1px 0 rgba(0,0,0,0.1);
24	width: 100%;
25}
26
27#zp__admin_info {
28	position: absolute;
29	left: 0;
30	top: 0;
31	background: transparent;
32	display: block;
33}
34
35#zp__admin_info .zp_logo {
36	color: white !important;
37	float: left;
38	display: inline-block;
39	background:gray;
40	-moz-box-sizing: border-box;
41  -webkit-box-sizing: border-box;
42  -o-box-sizing: border-box;
43  -ms-box-sizing: border-box;
44  box-sizing: border-box;
45	padding: 8px 4px 8px 4px;
46	width: 30px !important;
47	height: 30px !important;
48	text-align: center;
49	font-size: 13px !important;
50}
51
52#zp__admin_info .zp_user {
53	float: left;
54	display: inline-block;
55	padding: 7px 0 0 6px;
56	font-size: 15px !important;
57	white-space: nowrap;
58	font-weight: normal;
59	color: slategrey;
60}
61
62#zp__admin_info .zp_sitestatus {
63 color: red;
64 font-weight: bold;
65}
66
67#zp__admin_link {
68	font-weight: bold;
69	color: #999;
70	font-size: 15px !important;
71	position: relative;
72	position: absolute;
73	right: 0;
74	top: 0;
75	padding: 4px 8px;
76	background: rgba(255,255,255,0.9);
77	border: 1px solid rgba(0,0,0,0.15);
78	display: block;
79	text-decoration: none;
80	white-space: nowrap;
81}
82
83#zp__admin_link:hover {
84	background-color: white;
85	border-color: rgba(0,0,0, 0.2);
86	cursor: pointer;
87}
88
89#zp__admin_link:hover {
90	color: #0CF !important;
91}
92
93#zp__admin_data {
94	z-index: 10000;
95	background: rgba(255,255,255,0.95);
96	line-height: 16px;
97	width: 260px !important;
98	padding-top: 30px;
99	float: right;
100}
101
102
103#zp__admin_data ul,
104#zp__admin_data li {
105	padding: 0;
106	margin: 0;
107	list-style: none;
108}
109
110#zp__admin_data li {
111 border-top: 1px solid lightgray;
112}
113
114#zp__admin_data li ul {
115	border-top: 1px solid lightgray;
116	border-bottom: 1px solid lightgray;
117}
118
119#zp__admin_data a {
120	text-decoration: none;
121	color: #09C;
122	display: block;
123	padding: 8px;
124}
125
126#zp__admin_data a:hover {
127	color: #0CF;
128	background-color: #E3E6E9;
129}
130
131/* Transitions */
132#zp__admin_link a {
133	transition: all 0.1s ease-out;
134	-moz-transition: all 0.1s ease-out;
135	-webkit-transition: all 0.1s ease-out;
136}
137
138@media only screen and (max-width: 767px) {
139	#zp__admin_data {
140
141	}
142}
143
144@media only screen and (max-width: 479px) {
145	#zp__admin_data {
146		width: 100% !important;
147	}
148}