@keyframes flickerAnimation {
  0%   { background:#c30000; }
  50%  { background:#e40000; }
  100% { background:#c30000; }
}
@-o-keyframes flickerAnimation{
  0%   { background:#c30000; }
  50%  { background:#e40000; }
  100% { background:#c30000; }
}
@-moz-keyframes flickerAnimation{
  0%   { background:#c30000; }
  50%  { background:#e40000; }
  100% { background:#c30000; }
}
@-webkit-keyframes flickerAnimation{
  0%   { background:#c30000; }
  50%  { background:#e40000; }
  100% { background:#c30000; }
}
#wpadminbar #wp-admin-bar-maintenance {
   -webkit-animation: flickerAnimation 2s infinite;
   -moz-animation: flickerAnimation 2s infinite;
   -o-animation: flickerAnimation 2s infinite;
	animation: flickerAnimation 2s infinite;
}
.easymaintenance {
	width:60%;
}
.easymaintenance h1 span {
	font-size:14px;
	font-weight:bold;
	margin-left:5px;
	color:#9e9e9e;
}
.easymaintenance h1 span:before {
	content:"V";
}
.easymaintenance th p.description {
	text-transform: uppercase;
}
.easymaintenance div.clear {
	clear:both;
}
.easymaintenance form {
	background:#fff;
	padding:30px;
	padding-top:10px;
	margin-left:-25px;
	width:100%;
	margin-top:10px;
	-webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
    box-shadow: 0 1px 1px 0 rgba(0,0,0,.1);
}
.easymaintenance a.expand {
	display:inline-block;
	margin-top:10px;
	color:#555;
	text-decoration:none;
	margin-right:30px;
}
.easymaintenance a.expand:after {
	content:'»';
	margin-left:5px;
}
.easymaintenance.intro {
	width:50%;
}
.easymaintenance.intro ul {
	list-style-type: square;
	margin-left:20px;
}
.easymaintenance.intro .intro-button {
	margin-top:20px;
}
.easymaintenance.intro .intro-button .button-primary {
	margin-right:5px;
}

/* jQuery */
.ui-datepicker {
	background-color: #fff;
	border: 1px solid #66AFE9;
	border-radius: 4px;
	box-shadow: 0 0 8px rgba(102,175,233,.6);
	display: none;
	margin-top: 4px;
	padding: 10px;
	width: 240px;
}
.ui-datepicker a,
.ui-datepicker a:hover {
	text-decoration: none;
}
.ui-datepicker a:hover,
.ui-datepicker td:hover a {
	color: #2A6496;
	-webkit-transition: color 0.1s ease-in-out;
	   -moz-transition: color 0.1s ease-in-out;
	     -o-transition: color 0.1s ease-in-out;
	        transition: color 0.1s ease-in-out;
}
.ui-datepicker .ui-datepicker-header {
	margin-bottom: 4px;
	text-align: center;
	padding-bottom:10px;
	border-bottom:1px solid #eee;
}
.ui-datepicker .ui-datepicker-title {
	font-weight: 700;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	font-weight:bold;
	text-transform:uppercase;
	font-size:11px;
	cursor:pointer;
	height: 20px;
	line-height: 1;
	margin-top: 4px;
	width: 30px;
}
.ui-datepicker .ui-datepicker-prev {
	float: left;
	text-align: left;
}
.ui-datepicker .ui-datepicker-next {
	float: right;
	text-align: right;
}
.ui-datepicker .ui-datepicker-prev:before {
	content: "Prev";
}
.ui-datepicker .ui-datepicker-next:before {
	content: "Next";
}
.ui-datepicker .ui-datepicker-today {
	background-color: #fdffdb;
}
.ui-datepicker .ui-icon {
	display: none;
}
.ui-datepicker .ui-datepicker-calendar {
  table-layout: fixed;
	width: 100%;
}
.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td {
	text-align: center;
	padding: 4px 0;
}
.ui-datepicker .ui-datepicker-calendar td {
	border-radius: 4px;
	-webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
	   -moz-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
	     -o-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
	        transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}
.ui-datepicker .ui-datepicker-calendar td:hover {
	background-color: #eee;
	cursor: pointer;
}
.ui-datepicker .ui-datepicker-calendar td a {
	text-decoration: none;
}
.ui-datepicker .ui-datepicker-current-day {
	background-color: #4289cc;
}
.ui-datepicker .ui-datepicker-current-day a {
	color: #fff
}
.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
	background-color: #fff;
	cursor: default;
}