diff --git a/wp-admin/css/less/mixins.less b/wp-admin/css/less/mixins.less
new file mode 100644
index 0000000..3f523cb
--- /dev/null
+++ b/wp-admin/css/less/mixins.less
@@ -0,0 +1,117 @@
+.linear-gradient(@start, @start_opacity, @end, @end_opacity) {
+	background: @end;
+	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(@start_opacity, @start), color-stop(@end_opacity, @end));
+	background-image: -webkit-linear-gradient(bottom, @start @start_opacity, @end @end_opacity);
+	background-image:    -moz-linear-gradient(bottom, @start @start_opacity, @end @end_opacity);
+	background-image:      -o-linear-gradient(bottom, @start @start_opacity, @end @end_opacity);
+	background-image: linear-gradient(to top, @start @start_opacity, @end);
+}
+
+.linear-gradient(@start, @end) {
+	background: @end;
+	background-image: -webkit-gradient(linear, left bottom, left top, from(@start), to(@end));
+	background-image: -webkit-linear-gradient(bottom, @start, @end);
+	background-image:    -moz-linear-gradient(bottom, @start, @end);
+	background-image:      -o-linear-gradient(bottom, @start, @end);
+	background-image: linear-gradient(to top, @start, @end);
+}
+
+.rounded(@radius: 3px) {
+    border-radius: @radius;
+    -moz-border-radius: @radius;
+    -webkit-border-radius: @radius;
+}
+
+.rounded-bottom(@radius: 3px) {
+	border-bottom-left-radius: @radius;
+	border-bottom-right-radius: @radius;
+    -moz-border-bottom-left-radius: @radius;
+	-moz-border-bottom-right-radius: @radius;    
+	-webkit-border-bottom-left-radius: @radius;
+	-webkit-border-bottom-right-radius: @radius;
+}
+
+.rounded-top(@radius: 3px) {
+	border-top-left-radius: @radius;
+	border-top-right-radius: @radius;
+    -moz-border-top-left-radius: @radius;
+	-moz-border-top-right-radius: @radius;    
+	-webkit-border-top-left-radius: @radius;
+	-webkit-border-top-right-radius: @radius;
+}
+
+.rounded-left(@radius: 3px) {
+	border-top-left-radius: @radius;
+	border-bottom-left-radius: @radius;
+    -moz-border-top-left-radius: @radius;
+	-moz-border-bottom-left-radius: @radius;    
+	-webkit-border-top-left-radius: @radius;
+	-webkit-border-bottom-left-radius: @radius;
+}
+
+.rounded-right(@radius: 3px) {
+	border-top-right-radius: @radius;
+	border-bottom-right-radius: @radius;
+    -moz-border-top-right-radius: @radius;
+	-moz-border-bottom-right-radius: @radius;    
+	-webkit-border-top-right-radius: @radius;
+	-webkit-border-bottom-right-radius: @radius;
+}
+
+.border-box() {
+	-moz-box-sizing: border-box;
+	-webkit-box-sizing: border-box;
+	-ms-box-sizing: border-box;
+	box-sizing: border-box;
+}
+
+.transitions(@duration: 0.2s) {
+	-webkit-transition-property: left, right, top, bottom, width, margin;
+	-moz-transition-property:    left, right, top, bottom, width, margin;
+	-ms-transition-property:     left, right, top, bottom, width, margin;
+	-o-transition-property:      left, right, top, bottom, width, margin;
+	transition-property:         left, right, top, bottom, width, margin;
+
+	-webkit-transition-duration: @duration;
+	-moz-transition-duration:    @duration;
+	-ms-transition-duration:     @duration;
+	-o-transition-duration:      @duration;
+	transition-duration:         @duration;
+}
+
+.no-box-shadows() {
+	-moz-box-shadow:	none;	
+	-webkit-box-shadow: none;
+	box-shadow:			none;
+}
+
+.no-user-select() {
+	-webkit-user-select: none;
+	-moz-user-select: none;
+	user-select: none;
+}
+
+.serif-font() {
+	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+}
+
+.sans-serif-font() {
+	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
+}
+
+.normal-font(@size: 12px, @height: 1) {
+	font-size: @size;
+	font-weight: normal;
+	line-height: @height;
+}
+
+.bold-font(@size: 12px, @height: normal) {
+	font-size: @size;
+	font-weight: bold;
+	line-height: @height;
+}
+
+.about-font (@size: 20px) {
+	.sans-serif-font();
+	.normal-font(@size, 1.6em);
+} 
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/about.less b/wp-admin/css/less/modules/about.less
new file mode 100644
index 0000000..95f94de
--- /dev/null
+++ b/wp-admin/css/less/modules/about.less
@@ -0,0 +1,356 @@
+/*------------------------------------------------------------------------------
+  22.0 - About Pages
+------------------------------------------------------------------------------*/
+
+/* WordPress Version Badge */
+
+.wp-badge {
+	padding-top: 142px;
+	height: 50px;
+	width: 173px;
+	.bold-font(14px);
+	text-align: center;
+	margin: 0 -5px;
+	background: url('../images/wp-badge.png?ver=20111120') no-repeat;
+}
+
+.about-wrap {
+	position: relative;
+	margin: 25px 40px 0 20px;
+	max-width: 1050px; /* readability */
+	font-size: 15px;
+
+	div.updated,
+	div.error {
+		display: none !important;
+	}
+
+	/* Typography */
+	p {
+		line-height: 1.6em;
+	}
+
+	h1 {
+		margin: 0.2em 200px 0 0;
+		line-height: 1.2em;
+		font-size: 2.8em;
+		font-weight: 200;
+	}
+
+	h3 {
+		font-size: 24px;
+		margin-bottom: 1em;
+		padding-top: 20px;
+	}
+
+	code {
+		font-size: 14px;
+	}
+
+	li.wp-person a.web {
+		.about-font;
+	}
+
+	/* Point Releases */
+
+	.point-releases {
+		margin-top: 5px;
+	}
+
+	.changelog.point-releases h3 {
+		padding-top: 35px;
+		
+		&:first-child {
+			padding-top: 7px;
+		}
+	}
+
+	.wp-badge {
+		position: absolute;
+		top: 0;
+		right: 0;
+	}
+
+	/* Tabs */
+
+	h2 {
+		&.nav-tab-wrapper {
+			padding-left: 6px;
+		}
+
+		& .nav-tab {
+			padding: 4px 10px 6px;
+			margin: 0 3px -1px 0;
+			font-size: 18px;
+			vertical-align: top;
+		}
+
+		& .nav-tab-active {
+			font-weight: bold;
+			padding-top: 3px;
+		}	
+	}
+
+	/* Changelog / Update screen */
+
+	.feature-section {
+		padding-bottom: 20px;
+		h4 {
+			margin-bottom: 0.6em;
+		}
+
+		p {
+			margin-top: 0.6em;
+		}
+
+		img,
+		.video {
+			border: none;
+			margin: 0 1.94% 10px 0;
+			.rounded(3px);
+		}
+
+		.video video {
+			max-width: 100%;
+		}
+
+		&.three-col img {
+			margin: 0.5em 0 0.5em 5px;
+			max-width: 100%;
+			float: none;
+		}
+
+		&.images-stagger-right img,
+		&.images-stagger-right .video {
+			float: right;
+			margin: 0 5px 12px 2em;
+		}
+
+		&.images-stagger-left img {
+			float: left;
+			margin: 0 2em 12px 5px;
+		}
+
+		.image-100 {
+			margin: 0 0 2em 0;
+			width: 100%;
+		}
+
+		.image-66 {
+			width: 65%;
+			&.video {
+				max-width: 600px;
+			}			
+		}
+
+		.image-50 {
+			max-width: 50%;
+		}
+
+		img.image-30 {
+			max-width: 31.2381%;
+		}
+
+		&.col {
+			margin-bottom: 0;
+			h4 {
+				margin:  0 0 0.6em 0;
+			}
+
+			.last-feature {
+				margin-right: 0;
+			}
+		}
+
+		&.two-col div, &.three-col div {
+			margin-right: 4.999999999%;
+			float: left;
+		}
+
+		&.two-col div {
+			width: 47%;
+		}
+
+		&.three-col div {
+			width: 30%;
+		}
+	}
+
+	.ie8 & .feature-section {
+		&.three-col img {
+			margin-left: 0;
+		}
+
+		img {
+			border-width: 1px;
+			border-style: solid;
+		}
+	} 
+
+	.images-stagger-right img.image-30:nth-child(2) {
+		margin-left: 1em;
+	}
+
+	.three-col-images {
+		text-align: center;
+		img {
+			margin: 0 0 10px;
+		}
+		.last-feature {
+			float: right;
+		}
+
+		.first-feature {
+			float: left;
+		}	
+	}
+
+	.changelog {
+		.feature-section {
+			overflow: hidden;
+		}
+
+		li {
+			list-style-type: disc;
+			margin-left: 3em;
+		}
+	}
+
+	/* Return to Dashboard Home link */
+
+	.return-to-dashboard {
+		margin: 30px 0 0 -5px;
+		.bold-font(14px);
+		a {
+			text-decoration: none;
+			padding: 0 5px;
+		}
+	}
+
+	/* Credits */
+
+	h4.wp-people-group {
+		margin-top: 2.6em;
+		font-size: 16px;
+	}
+
+	ul.wp-people-group {
+		overflow: hidden;
+		padding: 0 5px;
+		margin: 0 -15px 0 -5px;
+	}
+
+	li.wp-person {
+		float: left;
+		margin-right: 10px;
+	
+		img.gravatar {
+			float: left;
+			margin: 0 10px 10px 0;
+			padding: 2px;
+			width: 60px;
+			height: 60px;
+		}
+	}
+
+	ul.compact {
+		margin-bottom: 0;
+
+		li.wp-person img.gravatar {
+			width: 30px;
+			height: 30px;
+		}	
+	}
+
+	li.wp-person {
+		height: 70px;
+		width: 280px;
+		padding-bottom: 15px;
+
+		ul.compact & {
+			height: auto;
+			width: 180px;
+			padding-bottom: 0;
+			margin-bottom: 0;
+		}	
+
+		a.web {
+			display: block;
+			margin: 6px 0 2px;
+			font-size: 16px;
+			text-decoration: none;
+		}
+	}
+
+	#wp-people-group-validators + p.wp-credits-list {
+		margin-top: 0;
+	}
+
+	p.wp-credits-list a {
+		white-space: nowrap;
+	}
+
+	/* Freedoms */
+
+	.freedoms-php & {
+		ol {
+			margin: 40px 60px;
+			li {
+				list-style-type: decimal;
+				font-weight: bold;
+			}
+			p {
+				font-weight: normal;
+				margin: 0.6em 0;
+			}		
+		}
+	}
+}
+
+.about-description {
+	.about-font;
+	margin-top: 1.4em;
+}
+
+.about-text {
+	.about-font(24px);
+	margin: 1em 200px 1.4em 0;
+	min-height: 60px;
+}
+
+@media only screen and (max-width: 900px) {
+	.about-wrap .feature-section {
+		.images-stagger-left img,
+		.images-stagger-right img,
+		.images-stagger-right .video {
+			clear: both;
+		}
+
+		.video.image-66 {
+			float: none;
+			width: 98%;
+			max-width: 98%;
+		}
+
+		&.images-stagger-right .video.image-66 {
+			margin-left: 3px;
+		}
+	}
+}
+
+@media only screen and (max-width: 768px) {
+	.about-wrap .feature-section {
+		.image-66 {
+			float: none;
+			width: 98%;
+			max-width: 98%;
+		}
+		&.images-stagger-right .image-66 {
+			margin-left: 3px;
+		}
+
+		&.images-stagger-left .image-66 {
+			margin-right: 3px;
+		}
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/accordion.less b/wp-admin/css/less/modules/accordion.less
new file mode 100644
index 0000000..6625a64
--- /dev/null
+++ b/wp-admin/css/less/modules/accordion.less
@@ -0,0 +1,102 @@
+/* Accordion */
+
+.accordion-section {
+	border-top: 1px solid #fff;
+	border-bottom: 1px solid @border-color;
+	margin: 0;
+
+	&:first-child {
+		border-top: 1px solid @border-color;
+	}
+
+	&:last-child {
+		box-shadow: 0 1px 0 0px #fff;
+	}	
+
+	&.open .accordion-section-content,
+	.no-js & .accordion-section-content {
+		display: block;
+	}
+
+	&.open:hover {
+		border-bottom-color: @border-color;
+	}
+}
+
+.accordion-section-content {
+	display: none;
+	padding: 10px 20px 15px;
+	overflow: hidden;
+	background: #fdfdfd;
+	border-left: 1px solid @border-color;
+	border-right: 1px solid @border-color;
+}
+
+.accordion-section-title {
+	margin: 0;
+	padding: 15px 20px;
+	position: relative;
+	border-left: 1px solid @border-color;
+	border-right: 1px solid @border-color;
+
+	.no-user-select();
+
+	.js & {
+		cursor: pointer;
+	}
+
+	.js &:after {
+		content: '';
+		width: 0;
+		height: 0;
+		border-color: #ccc transparent;
+		border-style: solid;
+		border-width: 6px 6px 0;
+		position: absolute;
+		top: 25px;
+		right: 20px;
+		z-index: 1;
+	}
+
+	&:focus {
+		outline: none;
+	}
+
+	&:hover:after,
+	&:focus:after {
+		border-color: #aaa transparent;
+	}
+
+	.cannot-expand & {
+		cursor: auto;
+	}
+
+	.cannot-expand &:after {
+		display: none;
+	}
+
+	.control-section & {
+		padding: 10px 20px;
+		color: #464646;
+		.serif-font();
+		.normal-font(15px);
+		text-shadow: 0 1px 0 #fff;
+		.linear-gradient(#eee, #f5f5f5);
+	}
+
+	.control-section &:after {
+		top: 15px;
+	}
+
+	.js .control-section:hover &,
+	.js .control-section &:hover,
+	.js .control-section.open &,
+	.js .control-section &:focus {
+		color: black;
+		.linear-gradient(#ececec, #f9f9f9);
+	}
+
+	.control-section.open & {
+		border-bottom: 1px solid @border-color;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/actions.less b/wp-admin/css/less/modules/actions.less
new file mode 100644
index 0000000..4d8dfe1
--- /dev/null
+++ b/wp-admin/css/less/modules/actions.less
@@ -0,0 +1,105 @@
+/*------------------------------------------------------------------------------
+  3.0 - Actions
+------------------------------------------------------------------------------*/
+
+#major-publishing-actions {
+	padding: 10px 10px 8px;
+	clear: both;
+	border-top: 1px solid #f5f5f5;
+	margin-top: -2px;
+}
+
+#delete-action {
+	line-height: 25px;
+	vertical-align: middle;
+	text-align: left;
+	float: left;
+}
+
+#publishing-action {
+	text-align: right;
+	float: right;
+	line-height: 23px;
+
+	.spinner {
+		float: left;
+	}
+}
+
+#misc-publishing-actions {
+	padding: 6px 0 0;
+}
+
+.misc-pub-section {
+	padding: 6px 10px 8px;
+	border-width: 1px 0;
+	border-style: solid;
+
+	&:first-child {
+		border-top-width: 0;
+	}
+}
+
+.misc-pub-section-last {
+	border-bottom-width: 0;
+}
+
+#minor-publishing-actions {
+	padding: 10px 10px 2px 8px;
+	text-align: right;
+}
+
+#minor-publishing {
+	border-bottom-width: 1px;
+	border-bottom-style: solid;
+	-webkit-box-shadow: 0 1px 0 #fff;
+	box-shadow: 0 1px 0 #fff;
+}
+
+#save-post {
+	float: left;
+}
+
+.preview {
+	float: right;
+}
+
+#sticky-span {
+	margin-left: 18px;
+}
+
+.side-info {
+	margin: 0;
+	padding: 4px;
+	font-size: 11px;
+
+	h5 {
+		padding-bottom: 7px;
+		font-size: 14px;
+		margin: 12px 2px 5px;
+		border-bottom-width: 1px;
+		border-bottom-style: solid;
+	}
+
+	ul {
+		margin: 0;
+		padding-left: 18px;
+		list-style: square;
+	}
+}
+
+.approve,
+.unapproved .unapprove {
+	display: none;
+}
+
+.unapproved .approve,
+.spam .approve,
+.trash .approve {
+	display: inline;
+}
+
+td.action-links,
+th.action-links {
+	text-align: right;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/categories.less b/wp-admin/css/less/modules/categories.less
new file mode 100644
index 0000000..6bbfabb
--- /dev/null
+++ b/wp-admin/css/less/modules/categories.less
@@ -0,0 +1,134 @@
+/*------------------------------------------------------------------------------
+  12.0 - Categories
+------------------------------------------------------------------------------*/
+
+.category-adder {
+	margin-left: 120px;
+	padding: 4px 0;
+
+	h4 {
+		margin: 0 0 8px;
+	}
+
+	#side-sortables & {
+		margin: 0;
+	}
+}
+
+#post-body ul.add-menu-item-tabs {
+	float: left;
+	width: 120px;
+	text-align: right;
+	/* Negative margin for the sake of those without JS: all tabs display */
+	margin: 0 -120px 0 5px;
+	padding: 0;
+
+	li {
+		padding: 8px;
+
+		&.tabs {
+			.rounded-left();
+		}
+	}
+}
+
+.wp-tab-panel,
+.categorydiv div.tabs-panel,
+.customlinkdiv div.tabs-panel,
+.posttypediv div.tabs-panel,
+.taxonomydiv div.tabs-panel {
+	min-height: 42px;
+	max-height: 200px;
+	overflow: auto;
+	padding: 0 0.9em;
+	border-style: solid;
+	border-width: 1px;
+}
+
+div.tabs-panel-active {
+	display: block;
+}
+
+div.tabs-panel-inactive {
+	display: none;
+}
+
+#front-page-warning,
+#front-static-pages ul,
+ul.export-filters,
+.inline-editor ul.cat-checklist ul,
+.categorydiv ul.categorychecklist ul,
+.customlinkdiv ul.categorychecklist ul,
+.posttypediv ul.categorychecklist ul,
+.taxonomydiv ul.categorychecklist ul {
+	margin-left: 18px;
+}
+
+ul.categorychecklist li {
+	margin: 0;
+	padding: 0;
+	line-height: 19px;
+	word-wrap: break-word;
+}
+
+.categorydiv .tabs-panel,
+.customlinkdiv .tabs-panel,
+.posttypediv .tabs-panel,
+.taxonomydiv .tabs-panel {
+	border-width: 3px;
+	border-style: solid;
+}
+
+.form-wrap {
+	p,
+	label {
+		font-size: 11px;
+	}
+
+	label {
+		display: block;
+		padding: 2px;
+		font-size: 12px;
+	}
+
+	.form-field {
+		margin: 0 0 10px;
+		padding: 8px 0;
+
+		#parent {
+			max-width: 100%;
+		}	
+	}
+}
+
+.form-field input,
+.form-field textarea {
+	border-style: solid;
+	border-width: 1px;
+	width: 95%;
+}
+
+p.description,
+.form-wrap p {
+	margin: 2px 0 5px;
+}
+
+p.help,
+p.description,
+span.description,
+.form-wrap p {
+	font-size: 12px;
+	font-style: italic;
+	font-family: sans-serif;
+}
+
+.col-wrap {
+	h3 {
+		margin: 12px 0;
+		font-size: 1.1em;
+	}
+
+	p.submit {
+		margin-top: -10px;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/comments.less b/wp-admin/css/less/modules/comments.less
new file mode 100644
index 0000000..260d5dc
--- /dev/null
+++ b/wp-admin/css/less/modules/comments.less
@@ -0,0 +1,202 @@
+/*------------------------------------------------------------------------------
+  15.0 - Comments Screen
+------------------------------------------------------------------------------*/
+
+.form-table {
+	border-collapse: collapse;
+	margin-top: 0.5em;
+	width: 100%;
+	margin-bottom: -8px;
+	clear: both;
+
+	td {
+		margin-bottom: 9px;
+		padding: 8px 10px;
+		line-height: 20px;
+		font-size: 12px;
+
+		p {
+			margin-top: 4px;
+		}
+
+		.color-palette & {
+			border-width: 1px 1px 0;
+			border-style: solid solid none;
+			height: 10px;
+			line-height: 20px;
+			width: 10px;
+		}
+	}
+
+	th {
+		vertical-align: top;
+		text-align: left;
+		padding: 10px;
+		width: 200px;
+
+		&.th-full {
+			width: auto;
+		}
+	}
+
+	div.color-option {
+		display: block;
+		clear: both;
+		margin-top: 12px;
+	}
+
+	input.tog {
+		margin-top: 2px;
+		margin-right: 2px;
+		float: left;
+	}
+
+	table.color-palette {
+		vertical-align: bottom;
+		float: left;
+		margin: -12px 3px 11px;
+	}
+}
+
+.form-table th,
+.form-wrap label {
+	font-weight: normal;
+	text-shadow: #fff 0 1px 0;
+}
+
+.commentlist {
+	li {
+		padding: 1em 1em .2em;
+		margin: 0;
+		border-bottom-width: 1px;
+		border-bottom-style: solid;
+	
+		li {
+			border-bottom: 0;
+			padding: 0;
+		}
+	}
+
+	p {
+		padding: 0;
+		margin: 0 0 .8em;
+	}
+
+	.avatar {
+		vertical-align: text-top;
+	}
+}
+
+/* reply to comments */
+#replyrow {
+	input {
+		border-width: 1px;
+		border-style: solid;
+	}
+
+	td {
+		padding: 2px;
+	}
+
+	h5 {
+		margin: .2em 0 0;
+		padding: 0 5px;
+		line-height: 1.4em;
+		font-size: 1em;
+	}
+}
+
+#replysubmit {
+	margin: 0;
+	padding: 0 5px 3px;
+	text-align: center;
+
+	.spinner {
+		padding: 2px 0 0;
+		vertical-align: top;
+		float: right;
+	}
+
+	.button {
+		margin-right: 5px;
+	}
+
+	.error {
+		color: red;
+		line-height: 21px;
+		text-align: center;
+	}
+}
+
+#edithead {
+	.inside {
+		float: left;
+		padding: 3px 0 2px 5px;
+		margin: 0;
+		text-align: center;
+
+		input {
+			width: 180px;
+		}
+	}
+
+	label {
+		padding: 2px 0;
+	}
+}
+
+#replycontainer {
+	padding: 5px;
+}
+
+#replycontent {
+	height: 120px;
+	.no-box-shadows();
+}
+
+.comment-php .wp-editor-area {
+	height: 200px;
+}
+
+.comment-ays {
+	margin-bottom: 0;
+	border-style: solid;
+	border-width: 1px;
+
+	th {
+		border-right-style: solid;
+		border-right-width: 1px;
+	}
+}
+
+.trash-undo-inside,
+.spam-undo-inside {
+	margin: 1px 8px 1px 0;
+	line-height: 16px;
+
+	.avatar {
+		height: 20px;
+		width: 20px;
+		margin-right: 8px;
+		vertical-align: middle;
+	}
+}
+
+.stuffbox .editcomment {
+	clear: none;
+}
+
+#comment-status-radio {
+	p {
+		margin: 3px 0 5px;
+	}
+
+	input {
+		margin: 2px 3px 5px 0;
+		vertical-align: middle;
+	}
+
+	label {
+		padding: 5px 0;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/customize.less b/wp-admin/css/less/modules/customize.less
new file mode 100644
index 0000000..ec31a42
--- /dev/null
+++ b/wp-admin/css/less/modules/customize.less
@@ -0,0 +1,123 @@
+/*------------------------------------------------------------------------------
+  24.0 - Customize Loader
+------------------------------------------------------------------------------*/
+
+.hide-if-customize {
+	.customize-support &,
+	.customize-support.wp-core-ui &,
+	.customize-support .wp-core-ui & {
+		display: none;
+	}
+}
+
+.hide-if-no-customize {
+	.no-customize-support &,
+	.no-customize-support.wp-core-ui &,
+	.no-customize-support .wp-core-ui &{
+		display: none;
+	}
+}
+
+#customize-container {
+	display: none;
+	background: #fff;
+	z-index: 500000;
+	position: fixed;
+	overflow: visible;
+	top: 0;
+	bottom: 0;
+	left: 0;
+	right: 0;
+	height: 100%;
+
+	.customize-active & {
+		display: block;
+	}
+
+	.customize-loading & {
+		background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center;
+		background-size: 16px 16px;
+	}
+
+	.customize-loading & iframe {
+		opacity: 0;
+	}
+
+	.collapse-sidebar {
+		bottom: 16px;
+	}
+}
+
+#customize-container iframe,
+#theme-installer iframe {
+	height: 100%;
+	width: 100%;
+	z-index: 20;
+
+	-webkit-transition: opacity 0.3s;
+	-moz-transition:    opacity 0.3s;
+	-ms-transition:     opacity 0.3s;
+	-o-transition:      opacity 0.3s;
+	transition:         opacity 0.3s;
+}
+
+#theme-installer {
+	display: none;
+
+	&.single-theme {
+		display: block;
+	}
+}
+
+.install-theme-info {
+
+	display: none;
+	padding: 10px 20px 20px;
+
+	.single-theme & {
+		padding-top: 15px;
+	}
+
+	#theme-installer & {
+		display: block;
+	}
+
+	.theme-install {
+		float: right;
+		margin-top: 18px;
+	}
+
+	.theme-name {
+		font-size: 16px;
+		line-height: 24px;
+		margin-bottom: 0;
+	}
+
+	.theme-screenshot {
+		margin-top: 15px;
+		width: 258px;
+		border: 1px solid #ccc;
+	}
+
+	.theme-details {
+		overflow: hidden;
+	}
+}
+
+.theme-details {
+	.theme-version {
+		margin: 15px 0;
+		float: left;
+	}
+
+	.star-holder {
+		margin: 14px 0;
+		float: right;
+	}
+
+	.theme-description {
+		float: left;
+		color: #777;
+		line-height: 20px;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/dashboard.less b/wp-admin/css/less/modules/dashboard.less
new file mode 100644
index 0000000..054f1ef
--- /dev/null
+++ b/wp-admin/css/less/modules/dashboard.less
@@ -0,0 +1,674 @@
+/*------------------------------------------------------------------------------
+  9.0 - Dashboard
+------------------------------------------------------------------------------*/
+
+#dashboard-widgets-wrap {
+	margin: 0 -8px;
+}
+
+#wpbody-content .metabox-holder {
+	padding-top: 10px;
+}
+
+#dashboard-widgets .meta-box-sortables {
+	margin: 0 8px;
+}
+
+#dashboard_recent_comments div.undo {
+	border-top-style: solid;
+	border-top-width: 1px;
+	margin: 0 -10px;
+	padding: 3px 8px;
+	font-size: 11px;
+}
+
+/* Welcome Panel */
+.welcome-panel {
+	position: relative;
+	overflow: auto;
+	margin: 20px 0;
+	padding: 23px 10px 12px;
+	border-width: 1px;
+	border-style: solid;
+	.rounded(3px);
+	font-size: 13px;
+	line-height: 2.1em;
+
+	h3 {
+		margin: 0;
+		.sans-serif-font();
+		.normal-font(21px, 1.2);
+	}
+	h4 {
+		margin: 1.33em 0 0;
+		font-size: 13px;
+	}
+
+	.about-description {
+		font-size: 16px;
+		margin: 0;
+	}
+
+	.welcome-panel-close {
+		position: absolute;
+		top: 5px;
+		right: 10px;
+		padding: 8px 3px;
+		font-size: 13px;
+		text-decoration: none;
+		line-height: 1;
+	
+		&:before {
+			content: ' ';
+			position: absolute;
+			left: -12px;
+			width: 10px;
+			height: 100%;
+			background: url('../images/xit.gif') 0 17% no-repeat;
+		}
+	
+		&:hover:before {
+			background-position: 100% 17%;
+		}
+	}
+
+	.wp-core-ui & .button.button-hero {
+		margin: 15px 0 3px;
+	}
+
+	.welcome-panel-column-container {
+		clear: both;
+		overflow: hidden;
+		position: relative;
+	}
+
+	.welcome-panel-column {
+		width: 32%;
+		min-width: 200px;
+		float: left;
+	
+		&:first-child {
+			width: 36%;
+		}
+
+		ul {
+			margin: 0.8em 1em 1em 0;
+		}
+
+		li {
+			line-height: 16px;
+			list-style-type: none;
+		}
+	}
+
+	.ie8 & .welcome-panel-column {
+		min-width: 230px;
+	}
+
+	.welcome-icon {
+		display: block;
+		padding: 2px 0 8px 32px;
+		background-image: url('../images/welcome-icons.png');
+		background-repeat: no-repeat;
+		background-size: 16px;
+	}
+
+	.welcome-add-page {
+		background-position: 0 2px;
+	}
+
+	.welcome-edit-page {
+		background-position: 0 -90px;
+	}
+
+	.welcome-learn-more {
+		background-position: 0 -136px;
+	}
+
+	.welcome-comments {
+		background-position: 0 -182px;
+	}
+
+	.welcome-view-site {
+		background-position: 0 -274px;
+	}
+
+	.welcome-widgets-menus {
+		background-position: 1px -229px;
+		line-height: 14px;
+	}
+
+	.welcome-write-blog {
+		background-position: 0 -44px;
+	}
+}
+
+.welcome-panel-content {
+	margin-left: 13px;
+	max-width: 1500px;
+
+	p {
+		margin-top: 7px;
+	}
+}
+
+@media screen and (max-width: 870px) {
+	.welcome-panel {
+		.welcome-panel-column,
+		.welcome-panel-column:first-child {
+			display: block;
+			float: none;
+			width: 100%;
+		}
+
+		.welcome-panel-column li {
+			display: inline-block;
+			margin-right: 13px;
+		}
+
+		.welcome-panel-column ul {
+			margin: 0.4em 0 0;
+		}
+
+		.welcome-icon {
+			padding-left: 25px;
+		}
+	}
+}
+
+/* dashboard */
+.edit-box {
+	display: none;
+
+	h3:hover & {
+		display: inline;
+	}
+}
+
+#dashboard-widgets {
+	form .input-text-wrap input {
+		width: 100%;
+	}
+
+	form .textarea-wrap textarea {
+		width: 100%;
+	}
+
+	.postbox form .submit {
+		float: none;
+		margin: .5em 0 0;
+		padding: 0;
+		border: none;
+	}
+
+	#dashboard-widgets-wrap & .postbox form .submit #publish {
+		min-width: 0;
+	}
+
+	a {
+		text-decoration: none;
+	}
+
+	h3 a {
+		text-decoration: underline;
+	}
+
+	h3 .postbox-title-action {
+		position: absolute;
+		right: 10px;
+		padding: 0;
+		top: 5px;
+	}
+
+	.js & h3 .postbox-title-action {
+		right: 30px;
+	}
+
+	h4 {
+		.normal-font(13px);
+		margin: 0 0 .2em;
+		padding: 0;
+	}
+}
+
+/* Right Now */
+#dashboard_right_now {
+	p.sub,
+	.table, .versions {
+		margin: -12px;
+	}
+
+	.inside {
+		font-size: 12px;
+		padding-top: 20px;
+	}
+
+	p.sub {
+		padding: 5px 0 15px;
+		color: #8f8f8f;
+		font-size: 14px;
+		position: absolute;
+		top: -17px;
+		left: 15px;
+	}
+
+	.table {
+		margin: 0;
+		padding: 0;
+		position: relative;
+	}
+
+	.table_content {
+		float: left;
+		border-top-width: 1px;
+		border-top-style: solid;
+		width: 45%;
+	}
+
+	.table_discussion {
+		float: right;
+		border-top-width: 1px;
+		border-top-style: solid;
+		width: 45%;
+	}
+
+	table td {
+		padding: 3px 0;
+		white-space: nowrap;
+	}
+
+	table tr.first td {
+		border-top: none;
+	}
+
+	td.b {
+		padding-right: 6px;
+		text-align: right;
+		font-size: 14px;
+		width: 1%;
+	}
+
+	td.b a {
+		font-size: 18px;
+	}
+
+	td.b a:hover {
+		color: #d54e21;
+	}
+
+	.t {
+		font-size: 12px;
+		padding-right: 12px;
+		padding-top: 6px;
+		color: #777;
+	}
+
+	.t a {
+		white-space: nowrap;
+	}
+
+	.spam {
+		color: red;
+	}
+
+	.waiting {
+		color: #e66f00;
+	}
+
+	.approved {
+		color: green;
+	}
+
+	.versions {
+		padding: 6px 10px 12px;
+		clear: both;
+	}
+
+	a.button {
+		float: right;
+		clear: right;
+		position: relative;
+		top: -5px;
+	}
+}
+
+/* Recent Comments */
+#dashboard_recent_comments {
+	h3 {
+		margin-bottom: 0;
+	}
+
+	.inside {
+		margin-top: 0;
+	}
+
+	.comment-meta .approve {
+		font-style: italic;
+		font-family: sans-serif;
+		font-size: 10px;
+	}
+
+	.subsubsub {
+		float: none;
+		white-space: normal;
+	}
+}
+
+#the-comment-list {
+	position: relative;
+
+	p.comment-author img {
+		float: left;
+		margin-right: 8px;
+	}
+
+	p.comment-author strong a {
+		border: none;
+	}
+
+	td {
+		vertical-align: top;
+	
+		&.comment {
+			word-wrap: break-word;
+
+			p.comment-author {
+				margin-top: 0;
+				margin-left: 0;
+			}
+		}
+	}
+
+	.comment-item {
+		padding: 1em 10px;
+		border-top: 1px solid;
+
+		.avatar {
+			float: left;
+			margin: 0 10px 5px 0;
+		}
+
+		h4 {
+			line-height: 1.7em;
+			margin-top: -0.4em;
+			color: #777;
+
+			cite {
+				font-style: normal;
+				font-weight: normal;
+			}		
+		}
+
+		&:first-child {
+			border-top: none;
+		}
+
+		blockquote,
+		blockquote p {
+			margin: 0;
+			padding: 0;
+			display: inline;
+		}
+
+		p.row-actions {
+			margin: 3px 0 0;
+			padding: 0;
+			font-size: 12px;
+		}
+	}
+
+	.pingback {
+		padding-left: 9px !important;
+	}
+
+	.comment-item,
+	#replyrow {
+		margin: 0 -10px;
+	}
+
+	#dashboard_recent_comments & .trackback blockquote,
+	#dashboard_recent_comments & .pingback blockquote {
+		display: block;
+	}
+}
+
+/* QuickPress */
+#title-wrap label,
+#tags-input-wrap label {
+	cursor: text;
+}
+
+#title-wrap {
+	#title {
+		padding: 2px 6px;
+		font-size: 1.3em;
+		line-height: 100%;
+		outline: none;
+	}
+
+	#title-prompt-text {
+		font-size: 1.3em;
+		padding: 5px 8px;
+	}
+}
+
+#tags-input-wrap {
+	#tags-input {
+		outline: none;
+	}
+
+	#tags-input-prompt-text {
+		font-size: 1em;
+		padding: 4px 8px;
+	}
+}
+
+#dashboard_quick_press {
+	.no-js & {
+		display: none;
+	}
+
+	.easy-blogging {
+		padding: 0 8px;
+		text-align: left;
+	}
+
+	.input-text-wrap {
+		position: relative;
+	}
+
+	.prompt {
+		color: #bbb;
+		position: absolute;
+	}
+
+	div.updated  {
+		padding: 0 5px;
+	}
+
+	.input-text-wrap,
+	.textarea-wrap {
+		margin: 0 0 1em 0;
+	}
+
+	.wp-media-buttons {
+		margin: 0 0 .2em 1px;
+		padding: 0;
+	
+		a {
+			color: #777;
+		}
+	}
+
+	#dashboard-widgets & form p.submit {
+		input {
+			float: left;
+		}
+
+		#save-post {
+			margin: 0 0.7em 0 1px;
+		}
+
+		#publish {
+			float: right;
+		}
+
+		.spinner {
+			vertical-align: middle;
+			margin: 4px 6px 0 0;
+		}
+	}
+}
+
+/* Recent Drafts */
+#dashboard_recent_drafts {
+	ul,
+	p {
+		margin: 0;
+		padding: 0;
+		word-wrap: break-word;
+	}
+
+	ul {
+		list-style: none;
+		li {
+			margin-bottom: 1em;
+		}
+	}
+
+	h4 {
+		line-height: 1.7em;
+		word-wrap: break-word;
+	
+		abbr {
+			font-weight: normal;
+			font-family: sans-serif;
+			font-size: 12px;
+			color: #999;
+			margin-left: 3px;
+		}
+	}
+}
+
+/* Feeds */
+.rss-widget {
+	ul {
+		margin: 0;
+		padding: 0;
+		list-style: none;
+	
+		li {
+			line-height: 1.5em;
+			margin-bottom: 12px;
+		}
+	}
+
+	span.rss-date {
+		color: #999;
+		font-size: 12px;
+		margin-left: 3px;
+	}
+
+	cite {
+		display: block;
+		text-align: right;
+		margin: 0 0 1em;
+		padding: 0;
+
+		&:before {
+			content: '\2014';
+		}
+	}
+}
+
+a.rsswidget {
+	font-size: 13px;
+	line-height: 1.7em;
+}
+
+/* Plugins */
+#dashboard_plugins {
+	h4 {
+		line-height: 1.7em;
+	}
+
+	h5 {
+		.normal-font(13px, 1.4em);
+		margin: 0;
+		display: inline;
+	
+		a {
+			line-height: 1.4em;
+		}
+	}
+
+	.inside span {
+		font-size: 12px;
+		padding-left: 5px;
+	}
+
+	p {
+		margin: 0.3em 0 1.4em;
+		line-height: 1.4em;
+	}
+}
+
+.dashboard-comment-wrap {
+	overflow: hidden;
+	word-wrap: break-word;
+}
+
+/* Browser Nag */
+#dashboard_browser_nag {
+	a {
+		color: white;
+		text-decoration: underline;
+		&.update-browser-link {
+			.bold-font(1.2em);
+		}
+
+		&.browse-happy-link,
+		&.update-browser-link {
+			text-shadow: #d29a04 0 1px 0;
+		}
+	}
+
+	p.browser-update-nag.has-browser-icon {
+		padding-right: 125px;
+	}
+
+	.browser-icon {
+		margin-top: -35px;
+	}
+
+	&.postbox {
+		background-color: #e29808;
+		background-image: none;
+		border-color: #edc048;
+		color: white;
+		.no-box-shadows();
+	
+		h3 {
+			border-bottom-color: #f6e2ac;
+			text-shadow: none;
+			background: transparent none;
+			color: white;
+			.no-box-shadows();
+		}
+
+		&.browser-insecure {
+			background-color: #ac1b1b;
+			border-color: #ac1b1b;
+		
+			h3 {
+				border-bottom-color: #cd5a5a;
+				color: white;
+			}
+		}
+	}
+
+	&.browser-insecure a.browse-happy-link,
+	&.browser-insecure a.update-browser-link {
+		text-shadow: #871b15 0 1px 0;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/edit-post.less b/wp-admin/css/less/modules/edit-post.less
new file mode 100644
index 0000000..688d8c7
--- /dev/null
+++ b/wp-admin/css/less/modules/edit-post.less
@@ -0,0 +1,1052 @@
+/*------------------------------------------------------------------------------
+  11.0 - Write/Edit Post Screen
+------------------------------------------------------------------------------*/
+
+#show-comments {
+	overflow: hidden;
+}
+
+#save-action .spinner,
+#show-comments a,
+#show-comments .spinner {
+	float: left;
+}
+
+#lost-connection-notice .spinner {
+	display: block;
+	float: left;
+	margin: 0 5px 0 0;
+}
+
+.rtl #lost-connection-notice .spinner {
+	float: right;
+	margin: 0 0 0 5px;
+}
+
+#titlediv {
+	position: relative;
+	margin-bottom: 5px;
+
+	label {
+		cursor: text;
+	}
+
+	div.inside {
+		margin: 0;
+	}
+
+	#title {
+		padding: 3px 8px;
+		font-size: 1.7em;
+		line-height: 100%;
+		height: 1.7em;
+		width: 100%;
+		outline: none;
+		margin: 1px 0;
+	}
+}
+
+#poststuff #titlewrap {
+	border: 0;
+	padding: 0;
+}
+
+#titlediv #title-prompt-text,
+#wp-fullscreen-title-prompt-text {
+	color: #bbb;
+	position: absolute;
+	font-size: 1.7em;
+	padding: 11px 10px;
+}
+
+#wp-fullscreen-save .fs-saved {
+	color: #999;
+	float: right;
+	margin-top: 4px;
+}
+
+#wp-fullscreen-title-prompt-text {
+	padding: 11px;
+}
+
+#poststuff .inside-submitbox,
+#side-sortables .inside-submitbox {
+	margin: 0 3px;
+	font-size: 11px;
+}
+
+input#link_description,
+input#link_url {
+	width: 98%;
+}
+
+#pending {
+	background: 0 none;
+	border: 0 none;
+	padding: 0;
+	font-size: 11px;
+	margin-top: -1px;
+}
+
+#edit-slug-box {
+	line-height: 24px;
+	min-height: 25px; /* Yes, line-height + 1 */
+	margin-top: 5px;
+	padding-right: 6px;
+
+	.cancel {
+		margin-right: 10px;
+		font-size: 11px;
+	}
+}
+
+#editable-post-name-full {
+	display: none;
+}
+
+#editable-post-name input {
+	width: 16em;
+}
+
+.postarea h3 label {
+	float: left;
+}
+
+.submitbox {
+	.submit {
+		text-align: left;
+		padding: 12px 10px 10px;
+		font-size: 11px;
+	}
+
+	.submitdelete {
+		text-decoration: none;
+		padding: 1px 2px;
+	}
+
+	.submitdelete,
+	.submit a:hover {
+		border-bottom-width: 1px;
+		border-bottom-style: solid;
+	}
+
+	.submit input {
+		margin-bottom: 8px;
+		margin-right: 4px;
+		padding: 6px;
+	}
+}
+
+.inside-submitbox #post_status {
+	margin: 2px 0 2px -2px;
+}
+
+#post-status-select {
+	line-height: 2.5em;
+	margin-top: 3px;
+}
+
+/* Post Screen */
+#post-body #normal-sortables {
+	min-height: 50px;
+}
+
+.postbox {
+	position: relative;
+	min-width: 255px;
+}
+
+#trackback_url {
+	width: 99%;
+}
+
+#normal-sortables .postbox .submit {
+	background: transparent none;
+	border: 0 none;
+	float: right;
+	padding: 0 12px;
+	margin:0;
+}
+
+.category-add input[type="text"],
+.category-add select {
+	width: 100%;
+	max-width: 260px;
+}
+
+.press-this #side-sortables .category-tabs li,
+ul.category-tabs li,
+#side-sortables .add-menu-item-tabs li,
+.wp-tab-bar li {
+	display: inline;
+	line-height: 1.35em;
+}
+
+.no-js .category-tabs li.hide-if-no-js {
+ 	display: none;
+}
+
+.category-tabs a,
+#side-sortables .add-menu-item-tabs a,
+.wp-tab-bar a {
+	text-decoration: none;
+}
+
+.category-tabs {
+	margin: 8px 0 3px;
+}
+
+#category-adder h4 {
+	margin: 10px 0;
+}
+
+#side-sortables .add-menu-item-tabs,
+.wp-tab-bar {
+	margin-bottom: 3px;
+}
+
+#normal-sortables .postbox #replyrow .submit {
+	float: none;
+	margin: 0;
+	padding: 0 7px 5px;
+}
+
+#side-sortables .submitbox .submit input,
+#side-sortables .submitbox .submit .preview,
+#side-sortables .submitbox .submit a.preview:hover {
+	border: 0 none;
+}
+
+#side-sortables .inside-submitbox .insidebox,
+.stuffbox .insidebox {
+	margin: 11px 0;
+}
+
+ul.category-tabs,
+ul.add-menu-item-tabs,
+ul.wp-tab-bar {
+	margin-top: 12px;
+}
+
+ul.category-tabs li {
+	border-style: solid;
+	border-width: 1px;
+	position: relative;
+}
+
+ul.add-menu-item-tabs li.tabs,
+.wp-tab-active {
+	border-style: solid solid none;
+	border-width: 1px 1px 0;
+}
+
+#post-body .add-menu-item-tabs li.tabs {
+	border-style: solid none solid solid;
+	border-width: 1px 0 1px 1px;
+	margin-right: -1px;
+}
+
+ul.category-tabs li,
+ul.add-menu-item-tabs li,
+ul.wp-tab-bar li {
+	padding: 3px 5px 5px;
+	.rounded-top(3px);
+}
+
+/* positioning etc. */
+form#tags-filter {
+	position: relative;
+}
+
+/* Edit posts */
+td.post-title strong,
+td.plugin-title strong {
+	display: block;
+	margin-bottom: .2em;
+}
+
+td.post-title p,
+td.plugin-title p {
+	margin: 6px 0;
+}
+
+/* Global classes */
+.wp-hidden-children .wp-hidden-child,
+.ui-tabs-hide {
+	display: none;
+}
+
+.commentlist .avatar {
+	vertical-align: text-top;
+}
+
+#post-body .tagsdiv #newtag {
+	margin-right: 5px;
+	width: 16em;
+}
+
+#side-sortables input#post_password {
+	width: 94%;
+}
+
+#side-sortables .tagsdiv #newtag {
+	width: 68%;
+}
+
+#post-status-info {
+	border-width: 0 1px 1px;
+	border-style: none solid solid;
+	width: 100%;
+	.rounded-bottom(3px);
+}
+
+#post-status-info td {
+	font-size: 12px;
+}
+
+.autosave-info {
+	padding: 2px 15px;
+	text-align: right;
+}
+
+#editorcontent #post-status-info {
+	border: none;
+}
+
+#post-body .wp_themeSkin .mceStatusbar a.mceResize {
+	display: block;
+	background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
+	width: 12px;
+	cursor: se-resize;
+	margin: 0 1px;
+	position: relative;
+	top: -2px;
+}
+
+#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
+	top: 20px;
+}
+
+#content-resize-handle {
+	background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
+	width: 12px;
+	cursor: se-resize;
+	position: absolute;
+	right: 2px;
+	height: 19px;
+
+	.press-this & {
+		bottom: 2px;
+	}
+
+	.tmce-active & {
+		display: none;
+	}
+}
+
+#wp-word-count {
+	display: block;
+	padding: 2px 10px;
+}
+
+#timestampdiv select {
+	height: 20px;
+	line-height: 14px;
+	padding: 0;
+	vertical-align: top;
+}
+
+#aa, #jj, #hh, #mn {
+	padding: 1px;
+	font-size: 12px;
+}
+
+#jj, #hh, #mn {
+	width: 2em;
+}
+
+#aa {
+	width: 3.4em;
+}
+
+.curtime #timestamp {
+	background-repeat: no-repeat;
+	background-position: left center;
+	padding: 2px 0 1px 20px;
+}
+
+#timestampdiv {
+	padding-top: 5px;
+	line-height: 23px;
+
+	p {
+		margin: 8px 0 6px;
+	}
+
+	input {
+		border-width: 1px;
+		border-style: solid;
+	}
+}
+
+.notification-dialog {
+	position: fixed;
+	top: 30%;
+	left: 50%;
+	width: 450px;
+	margin-left: -225px;
+	background: #fff;
+	line-height: 1.5;
+	z-index: 1000005;
+}
+
+.notification-dialog-background {
+	position: fixed;
+	top: 0;
+	left: 0;
+	right: 0;
+	bottom: 0;
+	background: #000;
+	opacity: 0.5;
+	filter: alpha(opacity=50);
+	z-index: 1000000;
+}
+
+#post-lock-dialog {
+	.post-locked-message,
+	.post-taken-over {
+		margin: 25px;
+	}
+
+	.post-locked-message a.button {
+		margin-right: 10px;
+	}
+
+	.post-locked-avatar {
+		float: left;
+		margin: 0 20px 20px 0;
+	}
+
+	.wp-tab-first {
+		outline: 0;
+	}
+
+	.locked-saving img {
+		float: left;
+		margin-right: 3px;
+	}
+
+	&.saving .locked-saving,
+	&.saved .locked-saved {
+		display: inline;
+	}
+}
+
+/*------------------------------------------------------------------------------
+  11.1 - Custom Fields
+------------------------------------------------------------------------------*/
+
+#postcustomstuff {
+	thead th {
+		padding: 5px 8px 8px;
+	}
+
+	#postcustom & .submit {
+		border: 0 none;
+		float: none;
+		padding: 0 8px 8px;
+	}
+
+	#side-sortables #postcustom & {
+		.submit {
+			margin: 0;
+			padding: 0;
+		}
+
+		#the-list textarea {
+			height: 85px;
+		}
+
+		td.left input,
+		td.left select {
+			margin: 3px 3px 0;
+		}
+	}
+
+	#side-sortables & #newmetaleft a {
+		margin: 3px 3px 0;
+	}
+
+	table {
+		margin: 0;
+		width: 100%;
+		border-width: 1px;
+		border-style: solid;
+		border-spacing: 0;
+	}
+
+	tr {
+		vertical-align: top;
+	}
+
+	table input,
+	table select,
+	table textarea {
+		width: 96%;
+		margin: 8px;
+	}
+
+	#side-sortables & table input,
+	#side-sortables & table select,
+	#side-sortables & table textarea {
+		margin: 3px;
+	}
+
+	th.left,
+	td.left {
+		width: 38%;
+	}
+
+	.submit input {
+		margin: 0;
+		width: auto;
+	}
+
+	#newmetaleft a {
+		display: inline-block;
+		margin: 0 8px 8px;
+		text-decoration: none;
+	}
+
+	.no-js & #enternew {
+		display: none;
+	}
+}
+
+#post-body-content .compat-attachment-fields {
+	margin-bottom: 20px;
+}
+
+.compat-attachment-fields th {
+	padding-top: 5px;
+	padding-right: 10px;
+}
+
+/*------------------------------------------------------------------------------
+  11.2 - Post Revisions
+------------------------------------------------------------------------------*/
+.revisions-control-frame,
+.revisions-diff-frame {
+	position: relative;
+}
+
+.revisions-controls {
+	padding-top: 40px;
+	height: 100px;
+	z-index: 1;
+
+	input[type="checkbox"] {
+		position: relative;
+		top: -1px;
+		vertical-align: text-bottom;
+	}
+
+	.revisions.pinned & {
+		position: fixed;
+		top: 0;
+		padding-bottom: 10px;
+	}
+
+	.author-card {
+		.date {
+			color: #777;
+		}
+
+		.avatar,
+		.author-info {
+			float: left;
+			margin-left: 6px;
+			margin-right: 6px;
+		}
+
+		&.autosave {
+			color: #d54e21;
+		}
+
+		.author-name {
+			font-weight: bold;
+		}
+
+		.byline {
+			display: block;
+			font-size: 12px;
+		}
+
+		.avatar {
+			vertical-align: middle;
+		}
+	}
+
+	.wp-slider {
+		max-width: 70%;
+		margin: 0 auto;
+		top: -3px;
+	}
+
+}
+
+.revisions-tickmarks {
+	position: relative;
+	margin: 0 auto;
+	height: 0.8em;
+	top: 7px;
+	max-width: 70%;
+	.border-box();
+
+	& > div {
+		position: absolute;
+		height: 100%;
+		border-style: solid;
+		border-width: 0 1px 0 0;
+		.border-box();
+
+		&:first-child {
+			border-width: 0;
+		}
+	}
+}
+
+.comparing-two-revisions .revisions-controls {
+	height: 140px;
+}
+
+.revisions .diff-error {
+	position: absolute;
+	text-align: center;
+	margin: 0 auto;
+	width: 100%;
+	display: none;
+}
+
+.revisions.diff-error .diff-error {
+	display: block;
+}
+
+.revisions {
+
+	.loading-indicator {
+		position: fixed;
+		vertical-align: middle;
+		opacity: 0;
+		width: 100%;
+		top: 50%;
+		margin-left: -90px;
+		-webkit-transition: opacity 0.5s;
+		-moz-transition:    opacity 0.5s;
+		-ms-transition:     opacity 0.5s;
+		-o-transition:      opacity 0.5s;
+		transition:         opacity 0.5s;
+		filter: alpha(opacity=0); /* ie8 and earlier */
+	}
+
+	body.folded & .loading-indicator {
+		margin-left: -32px;
+	}
+
+	.loading-indicator span.spinner {
+		display: block;
+		margin: 0 auto;
+		float: none;
+	}
+
+	&.loading .loading-indicator {
+		opacity: 1;
+		filter: alpha(opacity=100); /* ie8 and earlier */
+	}
+
+	.diff {
+		-webkit-transition: opacity 0.5s;
+		-moz-transition:    opacity 0.5s;
+		-ms-transition:     opacity 0.5s;
+		-o-transition:      opacity 0.5s;
+		transition:         opacity 0.5s;
+	}
+
+	&.loading .diff {
+		opacity: 0.5;
+		filter: alpha(opacity=50); /* ie8 and earlier */
+	}
+
+	&.diff-error .diff {
+		visibility: hidden;
+	}
+}
+
+.revisions-meta {
+	margin-top: 15px;
+}
+
+.revision-toggle-compare-mode {
+	position: absolute;
+	top: 0;
+	right: 0;
+}
+
+.comparing-two-revisions .revisions-previous,
+.comparing-two-revisions .revisions-next,
+.revisions-meta .diff-meta-to strong {
+	display: none;
+}
+
+.comparing-two-revisions .diff-meta-to strong {
+	display: block;
+}
+
+.revisions-previous,
+.revisions-next {
+	position: relative;
+	z-index: 1;
+}
+
+.revisions-previous {
+	float: left;
+}
+
+.revisions-next {
+	float: right;
+}
+
+/* Revision meta box */
+.post-revisions li img,
+#revisions-meta-restored img {
+	vertical-align: middle;
+}
+
+table.diff {
+	table-layout: fixed;
+	width: 100%;
+	white-space: pre-wrap;
+	word-wrap: break-word;
+
+	col.content {
+		width: auto;
+	
+		&.diffsplit {
+			width: 48%;
+		}
+
+		&.middle {
+			width: auto;
+		}
+	}
+
+	col.ltype {
+		width: 30px;
+	}
+
+	tr {
+		background-color: transparent;
+	}
+
+	td,
+	th {
+		padding: .5em;
+		font-family: Consolas, Monaco, monospace;
+	}
+
+	.diff-deletedline del,
+	.diff-addedline ins {
+		text-decoration: none;
+	}
+}
+
+.diff-meta {
+	.rounded(3px);
+	padding: 5px;
+	clear: both;
+	min-height: 32px;
+
+	input.restore-revision {
+		float: right;
+		margin-left: 6px;
+		margin-right: 6px;
+		margin-top: 4px;
+	}
+}
+
+.diff-title strong {
+	line-height: 32px;
+	min-width: 60px;
+	text-align: right;
+	float: left;
+	margin-right: 5px;
+}
+
+.diff-meta-from {
+	display: none;
+
+	.comparing-two-revisions & {
+		display: block;
+	}
+}
+
+.revisions-tooltip {
+	position: absolute;
+	bottom: 105px;
+	margin-right: 0;
+	margin-left: -69px;
+	z-index: 0;
+	max-width: 350px;
+	min-width: 130px;
+	padding: 8px 4px;
+	display: none;
+	opacity: 0;
+
+	&.flipped {
+		margin-left: 0;
+		margin-right: -70px;
+
+		.revisions-tooltip-arrow {
+			margin-left: 0;
+			margin-right: 35px;
+			left: auto;
+			right: 0;
+		}
+
+		.ie8 & .revisions-tooltip-arrow > span {
+			right: 25px;
+		}
+	}
+
+	.revisions.pinned & {
+		display: none !important;
+	}
+
+	.comparing-two-revisions & {
+		bottom: 145px;
+	}
+}
+
+.revisions-tooltip-arrow {
+	width: 70px;
+	height: 15px;
+	overflow: hidden;
+	position: absolute;
+	left: 0;
+	margin-left: 35px;
+	bottom: -15px;
+
+	& > span {
+		content: "";
+		position: absolute;
+		left: 20px;
+		top: -20px;
+		width: 25px;
+		height: 25px;
+		-webkit-transform: rotate(45deg);
+		-moz-transform: rotate(45deg);
+		-ms-transform: rotate(45deg);
+		-o-transform: rotate(45deg);
+		tranform: rotate(45deg);
+
+		.revisions-tooltip.flipped & {
+			left: auto;
+			right: 20px;
+		}
+	}
+
+	.ie8 & > span {
+		left: 15px;
+		top: -25px;
+		-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
+	}
+}
+
+.revisions-tooltip,
+.revisions-tooltip-arrow > span {
+	border-width: 1px;
+	border-style: solid;
+}
+
+div.revisions-controls > .wp-slider > .ui-slider-handle {
+	margin-left: -10px;
+}
+
+ /* jQuery UI Slider */
+.wp-slider {
+	&.ui-slider {
+		position: relative;
+		border-width: 1px;
+		border-style: solid;
+		.rounded(3px);
+		text-align: left;
+		cursor: pointer;
+	}
+
+	.ui-slider-handle {
+		position: absolute;
+		z-index: 2;
+		margin-top: -3px;
+		width: 19px;
+		height: 19px;
+		border-width: 1px;
+		border-style: solid;
+		.rounded(50%);
+
+		&:before {
+			content: "";
+			position: absolute;
+			top: 6px;
+			left: 3px;
+			height: 8px;
+			width: 13px;
+			background: url(../images/arrows-pr.png) no-repeat -2px -47px;
+		}
+
+		&.from-handle:before,
+		&.to-handle:before {
+			height: 8px;
+			width: 7px;
+		}
+
+		&.from-handle:before {
+			background-position: -5px -84px;
+			left: 7px;
+		}
+
+		&.to-handle:before {
+			background-position: -4px -65px;
+			left: 5px;
+		}
+	}
+
+	.ui-slider-range {
+		position: absolute;
+		font-size: .7em;
+		display: block;
+		border: 0;
+		background-color: transparent;
+		background-image: none;
+	}
+
+	&.ui-slider-horizontal {
+		height: .8em;
+
+		.ui-slider-handle {
+			top: -.25em;
+			margin-left: -.6em;
+		}
+
+		.ui-slider-range {
+			top: 0;
+			height: 100%;
+		}
+
+		.ui-slider-range-min {
+			left: 0;
+		}
+
+		.ui-slider-range-max {
+			right: 0;
+		}	
+	}
+}
+
+
+/*------------------------------------------------------------------------------
+  11.3 - Featured Images
+------------------------------------------------------------------------------*/
+
+#select-featured-image {
+	padding: 4px 0;
+	overflow: hidden;
+
+	img {
+		max-width: 100%;
+		height: auto;
+		margin-bottom: 10px;
+	}
+
+	a {
+		float: left;
+		clear: both;
+	}
+
+	.remove {
+		display: none;
+		margin-top: 10px;
+	}
+
+	.js &.has-featured-image .remove {
+		display: inline-block;
+	}
+
+	.no-js & .choose {
+		display: none;
+	}
+}
+
+/*------------------------------------------------------------------------------
+  11.4 - Post formats
+------------------------------------------------------------------------------*/
+
+a.post-state-format {
+	overflow: hidden;
+	display: inline-block;
+	vertical-align: middle;
+	height: 16px;
+	width: 16px;
+	margin-right: 5px;
+	background-repeat: no-repeat;
+	text-indent: -999em;
+}
+
+#post-formats-select {
+	line-height: 2em;
+}
+
+.post-format-icon {
+	margin-left: 5px;
+	padding: 2px 0 2px 21px;
+	line-height: 2em;
+
+	&.post-format-standard  {
+		background-position: 0 0;
+	}
+
+	&.post-format-image  {
+		background-position: 0 -32px;
+	}
+
+	&.post-format-gallery {
+		background-position: 0 -64px;
+	}
+
+	&.post-format-audio {
+		background-position: 0 -96px;
+	}
+
+	&.post-format-video {
+		background-position: 0 -128px;
+	}
+
+	&.post-format-chat {
+		background-position: 0 -160px;
+	}
+
+	&.post-format-status {
+		background-position: 0 -192px;
+	}
+
+	&.post-format-aside {
+		background-position: 0 -224px;
+	}
+
+	&.post-format-quote {
+		background-position: 0 -256px;
+	}
+
+	&.post-format-link {
+		background-position: 0 -288px;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/footer.less b/wp-admin/css/less/modules/footer.less
new file mode 100644
index 0000000..886238e
--- /dev/null
+++ b/wp-admin/css/less/modules/footer.less
@@ -0,0 +1,27 @@
+/*------------------------------------------------------------------------------
+  21.0 - Admin Footer
+------------------------------------------------------------------------------*/
+
+#wpfooter {
+	position: absolute;
+	bottom: 0;
+	left: 0;
+	right: 0;
+	padding: 10px 0;
+	margin-right: 20px;
+	border-top-width: 1px;
+	border-top-style: solid;
+
+	p {
+		margin: 0;
+		line-height: 20px;
+	}
+
+	a {
+		text-decoration: none;
+
+		&:hover {
+			text-decoration: underline;
+		}
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/forms.less b/wp-admin/css/less/modules/forms.less
new file mode 100644
index 0000000..a42d086
--- /dev/null
+++ b/wp-admin/css/less/modules/forms.less
@@ -0,0 +1,161 @@
+/*------------------------------------------------------------------------------
+  2.0 - Forms
+------------------------------------------------------------------------------*/
+
+
+.wp-admin select {
+	padding: 2px;
+	height: 2em;
+
+	&[multiple] {
+		height: auto;
+	}
+}
+
+.submit {
+	padding: 1.5em 0;
+	margin: 5px 0;
+	.rounded-bottom(3px);
+}
+
+form p.submit a.cancel:hover {
+	text-decoration: none;
+}
+
+#minor-publishing-actions input,
+#major-publishing-actions input,
+#minor-publishing-actions .preview {
+	text-align: center;
+}
+
+textarea.all-options,
+input.all-options {
+	width: 250px;
+}
+
+input.large-text,
+textarea.large-text {
+	width: 99%;
+}
+
+input.regular-text,
+#adduser .form-field input {
+	width: 25em;
+}
+
+input.small-text {
+	width: 50px;
+
+	&[type="number"] {
+		width: 60px;
+	}
+}
+
+#doaction,
+#doaction2,
+#post-query-submit {
+	margin: 1px 8px 0 0;
+}
+
+.tablenav {
+	#changeit,
+	#delete_all,
+	#clear-recent-list {
+		margin-top: 1px;
+	}
+
+	.actions select {
+		float: left;
+		margin-right: 6px;
+		max-width: 200px;
+	}
+
+	.ie8 & .actions select {
+		width: 155px;
+	
+		&#cat {
+			width: 200px;
+		}
+	}
+}
+
+#timezone_string option {
+	margin-left: 1em;
+}
+
+label,
+#your-profile label + a {
+	vertical-align: middle;
+}
+
+#misc-publishing-actions label {
+	vertical-align: baseline;
+}
+
+#pass-strength-result {
+	border-style: solid;
+	border-width: 1px;
+	float: left;
+	margin: 13px 5px 5px 1px;
+	padding: 3px 5px;
+	text-align: center;
+	width: 200px;
+	display: none;
+}
+.indicator-hint {
+	padding-top: 8px;
+}
+
+p.search-box {
+	float: right;
+	margin: 0;
+}
+
+.search-box input[name="s"],
+#search-plugins input[name="s"],
+.tagsdiv .newtag {
+	float: left;
+	height: 2em;
+	margin: 0 4px 0 0;
+}
+
+input[type="text"].ui-autocomplete-loading {
+	background: transparent url('../images/loading.gif') no-repeat right center;
+	visibility: visible;
+}
+
+ul#add-to-blog-users {
+	margin: 0 0 0 14px;
+}
+
+.ui-autocomplete-input.open {
+	border-bottom-right-radius: 0;
+	border-bottom-left-radius: 0;
+}
+
+.ui-autocomplete {
+	padding: 0;
+	margin: 0;
+	list-style: none;
+	position: absolute;
+	z-index: 10000;
+	border-bottom-right-radius: 3px;
+	border-bottom-left-radius: 3px;
+	border-width: 1px;
+	border-style: solid;
+
+	li {
+		margin-bottom: 0;
+		white-space: nowrap;
+		text-align: left;
+		a {
+			display: block;
+			height: 100%;
+			padding: 4px 10px;
+		
+			&.ui-state-focus {
+				cursor: pointer;
+			}
+		}	
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/full-overlay.less b/wp-admin/css/less/modules/full-overlay.less
new file mode 100644
index 0000000..95b35b3
--- /dev/null
+++ b/wp-admin/css/less/modules/full-overlay.less
@@ -0,0 +1,170 @@
+/*------------------------------------------------------------------------------
+  23.0 - Full Overlay w/ Sidebar
+------------------------------------------------------------------------------*/
+
+body.full-overlay-active {
+	overflow: hidden;
+}
+
+.wp-full-overlay {
+	background: #fff;
+	z-index: 500000;
+	position: fixed;
+	overflow: visible;
+	top: 0;
+	bottom: 0;
+	left: 0;
+	right: 0;
+	height: 100%;
+	min-width: 0;
+
+	&.expanded {
+		margin-left: 300px;
+	}
+
+	/* Close Link */
+	.close-full-overlay {
+		text-decoration: none;
+	}
+
+	/* Collapse Button */
+	a.collapse-sidebar {
+		position: absolute;
+		bottom: 12px;
+		left: 0;
+		z-index: 50;
+		display: block;
+		width: 19px;
+		height: 19px;
+		margin-left: 15px;
+		padding: 0;
+		.rounded(50%);
+		text-decoration: none;
+	}
+
+	.collapse-sidebar-arrow {
+		position: absolute;
+		margin-top: 2px;
+		margin-left: 2px;
+		display: block;
+		width: 15px;
+		height: 15px;
+		background: transparent url('../images/arrows.png') no-repeat -1px -73px;
+	}
+
+	.collapse-sidebar-label {
+		position: absolute;
+		left: 100%;
+		color: #808080;
+		line-height: 20px;
+		margin-left: 10px;
+	}
+
+	&.collapsed {
+		.collapse-sidebar {
+			position: absolute;
+			left: 100%;
+		}
+
+		.collapse-sidebar-arrow {
+			background-position: -1px -109px;
+		}
+
+		.collapse-sidebar-label {
+			display: none;
+		}
+	}
+
+	.collapse-sidebar:hover .collapse-sidebar-label {
+		color: #666;
+	}
+}
+
+.wp-full-overlay-sidebar {
+	.border-box();
+	position: fixed;
+	width: 300px;
+	height: 100%;
+	top: 0;
+	bottom: 0;
+	left: 0;
+	padding: 0;
+	margin: 0;
+	z-index: 10;
+	overflow: auto;
+	background: #f5f5f5;
+	border-right: 1px solid rgba( 0, 0, 0, 0.2 );
+
+	.wp-full-overlay.collapsed & {
+		overflow: visible;
+		margin-left: -300px;
+	}
+
+	&:after {
+		content: '';
+		display: block;
+		position: absolute;
+		top: 0;
+		bottom: 0;
+		right: 0;
+		width: 3px;
+		box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
+		z-index: 1000;
+	}
+
+	.wp-full-overlay-header {
+		position: absolute;
+		left: 0;
+		right: 0;
+		height: 45px;
+		padding: 0 20px;
+		line-height: 45px;
+		z-index: 10;
+		margin: 0;
+		border-top: 0;
+		border-bottom: 1px solid #fff;
+		box-shadow: inset 0 -1px 0 0px @border-color;
+	}
+
+	.wp-full-overlay-footer {
+		bottom: 0;
+		border-bottom: 0;
+		border-top: 1px solid @border-color;
+		box-shadow: inset 0 1px 0 0px #fff;
+	}
+
+	.wp-full-overlay-sidebar-content {
+		position: absolute;
+		top: 45px;
+		bottom: 45px;
+		left: 0;
+		right: 0;
+		overflow: auto;
+
+		.accordion-section:first-child {
+			border-top: 1px solid #fff;
+		}
+	}
+}
+
+.wp-full-overlay.collapsed,
+.wp-full-overlay.expanded .wp-full-overlay-sidebar {
+	margin-left: 0 !important;
+}
+
+.wp-full-overlay-main {
+	position: absolute;
+	left: 0;
+	right: 0;
+	top: 0;
+	bottom: 0;
+	height: 100%;
+}
+
+/* Animations */
+.wp-full-overlay,
+.wp-full-overlay-sidebar,
+.wp-full-overlay .collapse-sidebar,
+.wp-full-overlay-main {
+	.transitions();
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/global.less b/wp-admin/css/less/modules/global.less
new file mode 100644
index 0000000..f903535
--- /dev/null
+++ b/wp-admin/css/less/modules/global.less
@@ -0,0 +1,732 @@
+/* 2 column liquid layout */
+#wpwrap {
+	height: auto;
+	min-height: 100%;
+	width: 100%;
+	position: relative;
+}
+
+#wpcontent {
+	height: 100%;
+}
+
+#wpcontent,
+#wpfooter {
+	margin-left: 165px;
+}
+
+.folded #wpcontent,
+.folded #wpfooter {
+	margin-left: 52px;
+}
+
+#wpbody-content {
+	padding-bottom: 65px;
+	float: left;
+	width: 100%;
+}
+
+#adminmenuback,
+#adminmenuwrap,
+#adminmenu,
+#adminmenu .wp-submenu {
+	width: 145px;
+}
+
+#adminmenuback {
+	position: absolute;
+	top: 0;
+	bottom: 0;
+	z-index: -1;
+}
+
+#adminmenu {
+	clear: left;
+	margin: 0;
+	padding: 0;
+	list-style: none;
+}
+
+.folded #adminmenuback,
+.folded #adminmenuwrap,
+.folded #adminmenu,
+.folded #adminmenu li.menu-top {
+	width: 32px;
+}
+
+/* inner 2 column liquid layout */
+
+.inner-sidebar {
+	float: right;
+	clear: right;
+	display: none;
+	width: 281px;
+	position: relative;
+
+	.columns-2 & {
+		margin-right: auto;
+		width: 286px;
+		display: block;
+	}
+
+	#side-sortables,
+	.columns-2 & #side-sortables {
+		min-height: 300px;
+		width: 280px;
+		padding: 0;
+	}
+
+	.has-right-sidebar & {
+		display: block;
+	}
+}
+
+.has-right-sidebar {
+	#post-body {
+		float: left;
+		clear: left;
+		width: 100%;
+		margin-right: -2000px;
+	}
+
+	#post-body-content {
+		margin-right: 300px;
+		float: none;
+		width: auto;
+	}
+}
+
+/* 2 columns main area */
+
+#col-container,
+#col-left,
+#col-right {
+	overflow: hidden;
+	padding: 0;
+	margin: 0;
+}
+
+#col-left {
+	width: 35%;
+}
+
+#col-right {
+	float: right;
+	clear: right;
+	width: 65%;
+}
+
+.col-wrap {
+	padding: 0 7px;
+}
+
+/* utility classes */
+.alignleft {
+	float: left;
+}
+
+.alignright {
+	float: right;
+}
+
+.textleft {
+	text-align: left;
+}
+
+.textright {
+	text-align: right;
+}
+
+.clear {
+	clear: both;
+}
+
+/* Hide visually but not from screen readers */
+.screen-reader-text,
+.screen-reader-text span,
+.ui-helper-hidden-accessible {
+	position: absolute;
+	left: -1000em;
+	top: -1000em;
+	height: 1px;
+	width: 1px;
+	overflow: hidden;
+}
+
+.screen-reader-shortcut {
+	position: absolute;
+	top: -1000em;
+
+	&:focus {
+		left: 6px;
+		top: -21px;
+		height: auto;
+		width: auto;
+		display: block;
+		.bold-font(14px);
+		padding: 15px 23px 14px;
+		background: #f1f1f1;
+		color: #21759b;
+		.rounded(3px);
+		z-index: 100000;
+		-webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
+		box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
+		text-decoration: none;
+	}
+}
+
+.hidden,
+.js .closed .inside,
+.js .hide-if-js,
+.no-js .hide-if-no-js,
+.js.wp-core-ui .hide-if-js,
+.js .wp-core-ui .hide-if-js,
+.no-js.wp-core-ui .hide-if-no-js,
+.no-js .wp-core-ui .hide-if-no-js {
+	display: none;
+}
+
+/* include margin and padding in the width calculation of input and textarea */
+input[type="text"],
+input[type="password"],
+input[type="number"],
+input[type="search"],
+input[type="email"],
+input[type="url"],
+textarea {
+	.border-box();
+}
+
+input[type="checkbox"],
+input[type="radio"] {
+	vertical-align: text-top;
+	padding: 0;
+	margin: 1px 0 0;
+}
+
+input[type="search"] {
+	-webkit-appearance: textfield;
+}
+
+input[type="search"]::-webkit-search-decoration {
+	display: none;
+}
+
+/* general */
+html,
+body {
+	height: 100%;
+	margin: 0;
+	padding: 0;
+}
+
+body {
+	font-family: sans-serif;
+	font-size: 12px;
+	line-height: 1.4em;
+	min-width: 600px;
+
+	&.iframe {
+		min-width: 0;
+		padding-top: 1px;
+	}
+
+	&.login {
+		background: #fbfbfb;
+		min-width: 0;
+	}
+}
+
+iframe,
+img {
+	border: 0;
+}
+
+td,
+textarea,
+input,
+select,
+button {
+	font-family: inherit;
+	font-size: inherit;
+	font-weight: inherit;
+}
+
+td,
+textarea {
+	line-height: inherit;
+}
+
+input,
+select {
+	line-height: 15px;
+}
+
+a,
+input[type="text"],
+input[type="password"],
+input[type="number"],
+input[type="search"],
+input[type="email"],
+input[type="url"],
+select,
+textarea,
+div {
+	outline: 0;
+}
+
+a:focus,
+a:active {
+	outline: thin dotted;
+}
+
+#adminmenu a:focus,
+#adminmenu a:active,
+.screen-reader-text:focus {
+	outline: none;
+}
+
+blockquote,
+q {
+	quotes: none;
+}
+
+blockquote:before,
+blockquote:after,
+q:before,
+q:after {
+	content: '';
+	content: none;
+}
+
+p {
+	margin: 1em 0;
+}
+
+blockquote {
+	margin: 1em;
+}
+
+label {
+	cursor: pointer;
+}
+
+li,
+dd {
+	margin-bottom: 6px;
+}
+
+textarea,
+input,
+select {
+	margin: 1px;
+	padding: 3px;
+}
+
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+	display: block;
+	font-weight: bold;
+}
+
+h1 {
+	font-size: 2em;
+	margin: .67em 0;
+}
+
+h2 {
+	font-size: 1.5em;
+	margin: .83em 0;
+}
+
+h3 {
+	font-size: 1.17em;
+	margin: 1em 0;
+}
+
+h4 {
+	font-size: 1em;
+	margin: 1.33em 0;
+}
+
+h5 {
+	font-size: 0.83em;
+	margin: 1.67em 0;
+}
+
+h6 {
+	font-size: 0.67em;
+	margin: 2.33em 0;
+}
+
+ul,
+ol {
+	padding: 0;
+}
+
+ul {
+	list-style: none;
+}
+
+ol {
+	list-style-type: decimal;
+	margin-left: 2em;
+}
+
+ul.ul-disc {
+	list-style: disc outside;
+}
+
+ul.ul-square {
+	list-style: square outside;
+}
+
+ol.ol-decimal {
+	list-style: decimal outside;
+}
+
+ul.ul-disc,
+ul.ul-square,
+ol.ol-decimal {
+	margin-left: 1.8em;
+}
+
+ul.ul-disc > li,
+ul.ul-square > li,
+ol.ol-decimal > li {
+	margin: 0 0 0.5em;
+}
+
+.code,
+code {
+	font-family: Consolas, Monaco, monospace;
+}
+
+kbd,
+code {
+	padding: 1px 3px;
+	margin: 0 1px;
+	font-size: 11px;
+}
+
+.subsubsub {
+	list-style: none;
+	margin: 8px 0 5px;
+	padding: 0;
+	font-size: 12px;
+	float: left;
+
+	a {
+		line-height: 2;
+		padding: .2em;
+		text-decoration: none;
+	}
+
+	a .count,
+	a.current .count {
+		color: #999;
+		font-weight: normal;
+	}
+
+	a.current {
+		font-weight: bold;
+		border: none;
+	}
+
+	li {
+		display: inline-block;
+		margin: 0;
+		padding: 0;
+		white-space: nowrap;
+	}
+}
+
+.widefat,
+div.updated,
+div.error,
+.wrap .add-new-h2,
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="file"],
+input[type="email"],
+input[type="number"],
+input[type="search"],
+input[type="tel"],
+input[type="url"],
+select,
+.tablenav .tablenav-pages a,
+.tablenav-pages span.current,
+#titlediv #title,
+.postbox,
+#postcustomstuff table,
+#postcustomstuff input,
+#postcustomstuff textarea,
+.imgedit-menu div,
+.plugin-update-tr .update-message,
+#poststuff .inside .the-tagcloud,
+.login form,
+#login_error,
+.login .message,
+#menu-management .menu-edit,
+.nav-menus-php .list-container,
+.menu-item-handle,
+.link-to-original,
+.nav-menus-php .major-publishing-actions .form-invalid,
+.press-this #message,
+#TB_window,
+.tbtitle,
+.highlight,
+.feature-filter,
+#widget-list .widget-top,
+.editwidget .widget-inside {
+	.rounded(3px);
+	border-width: 1px;
+	border-style: solid;
+}
+
+/* .widefat - main style for tables */
+.widefat {
+	border-spacing: 0;
+	width: 100%;
+	clear: both;
+	margin: 0;
+
+	* {
+		word-wrap: break-word;
+	}
+
+	a {
+		text-decoration: none;
+	}
+
+	thead th:first-of-type {
+		-moz-border-top-left-radius: 3px;
+		-webkit-border-top-left-radius: 3px;
+		border-top-left-radius: 3px;
+	}
+	thead th:last-of-type {
+		-moz-border-top-right-radius: 3px;
+		-webkit-border-top-right-radius: 3px;
+		border-top-right-radius: 3px;
+	}
+	tfoot th:first-of-type {
+		-moz-border-bottom-left-radius: 3px;
+		-webkit-border-bottom-left-radius: 3px;
+		border-bottom-left-radius: 3px;
+	}
+	tfoot th:last-of-type {
+		-moz-border-bottom-right-radius: 3px;
+		-webkit-border-bottom-right-radius: 3px;
+		border-bottom-right-radius: 3px;
+	}
+
+	td,
+	th {
+		border-width: 1px 0;
+		border-style: solid;
+	}
+	tfoot th {
+		border-bottom: none;
+	}
+
+	.no-items td {
+		border-bottom-width: 0;
+	}
+
+	td {
+		font-size: 12px;
+		padding: 4px 7px 2px;
+		vertical-align: top;
+	}
+
+	td p,
+	td ol,
+	td ul {
+		font-size: 12px;
+	}
+
+	th {
+		padding: 7px 7px 8px;
+		text-align: left;
+		line-height: 1.3em;
+		font-size: 14px;
+	}
+
+	th input {
+		margin: 0 0 0 8px;
+		padding: 0;
+		vertical-align: text-top;
+	}
+
+	.check-column {
+		width: 2.2em;
+		padding: 6px 0 25px;
+		vertical-align: top;
+	}
+
+	tbody th.check-column {
+		padding: 9px 0 22px;
+	}
+
+	&.media .check-column {
+		padding-top: 8px;
+	}
+
+	thead .check-column,
+	tfoot .check-column {
+		padding: 10px 0 0;
+	}
+
+	.no-js & thead .check-column input,
+	.no-js & tfoot .check-column input {
+		display: none;
+	}
+}
+
+.widefat .num,
+.column-comments,
+.column-links,
+.column-posts {
+	text-align: center;
+}
+
+.widefat th#comments {
+	vertical-align: middle;
+}
+
+.wrap {
+	margin: 4px 15px 0 0;
+}
+
+div.updated,
+div.error {
+	padding: 0 0.6em;
+	margin: 5px 15px 2px;
+}
+
+div.updated p,
+div.error p {
+	margin: 0.5em 0;
+	padding: 2px;
+}
+
+.wrap div.updated,
+.wrap div.error,
+.media-upload-form div.error {
+	margin: 5px 0 15px;
+}
+
+.wrap h2,
+.subtitle {
+	font-weight: normal;
+	margin: 0;
+	text-shadow: #fff 0 1px 0;
+}
+
+.wrap h2 {
+	font-size: 23px;
+	padding: 9px 15px 4px 0;
+	line-height: 29px;
+}
+
+.subtitle {
+	font-size: 14px;
+	padding-left: 25px;
+}
+
+.wrap .add-new-h2 {
+	font-family: sans-serif;
+	margin-left: 4px;
+	padding: 3px 8px;
+	position: relative;
+	top: -3px;
+	text-decoration: none;
+	font-size: 12px;
+	border: 0 none;
+}
+
+.wrap h2.long-header {
+	padding-right: 0;
+}
+
+html,
+.wp-dialog {
+	background-color: white;
+}
+
+textarea,
+input[type="text"],
+input[type="password"],
+input[type="file"],
+input[type="email"],
+input[type="number"],
+input[type="search"],
+input[type="tel"],
+input[type="url"],
+select {
+	background-color: white;
+	color: #333;
+}
+
+select {
+	color: black;
+}
+
+select[disabled] {
+	color: #7f7f7f;
+}
+
+select:focus {
+	border-color: #aaa;
+}
+
+textarea:focus,
+input[type="text"]:focus,
+input[type="password"]:focus,
+input[type="file"]:focus,
+input[type="email"]:focus,
+input[type="number"]:focus,
+input[type="search"]:focus,
+input[type="tel"]:focus,
+input[type="url"]:focus,
+select:focus {
+	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
+	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
+}
+
+input[readonly] {
+	background-color: #eee;
+}
+
+:-moz-placeholder,
+.wp-core-ui :-moz-placeholder {
+   color: #a9a9a9;
+}
+
+.postbox .spinner {
+	display: none;
+	vertical-align: middle;
+}
+
+.button-controls {
+	clear:both;
+	margin: 10px 0;
+}
+
+.show-all,
+.hide-all {
+	cursor: pointer;
+}
+
+.hide-all {
+	display: none;
+}
+
+img {
+	border: none;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/header.less b/wp-admin/css/less/modules/header.less
new file mode 100644
index 0000000..fd7b7e6
--- /dev/null
+++ b/wp-admin/css/less/modules/header.less
@@ -0,0 +1,217 @@
+/*------------------------------------------------------------------------------
+  6.0 - Admin Header
+------------------------------------------------------------------------------*/
+#adminmenu a,
+#sidemenu a,
+#taglist a,
+#catlist a {
+	text-decoration: none;
+}
+
+/*------------------------------------------------------------------------------
+  6.1 - Screen Options Tabs
+------------------------------------------------------------------------------*/
+
+#screen-options-wrap,
+#contextual-help-wrap {
+	margin: 0;
+	padding: 8px 20px 12px;
+	position: relative;
+}
+
+#contextual-help-wrap {
+	overflow: auto;
+}
+
+#screen-meta-links {
+	margin: 0 24px 0 0;
+
+	a:focus {
+		-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
+		box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
+		outline: none;
+	}
+
+	.screen-meta-toggle {
+		position: relative;
+		top: -1px;
+	}
+
+	a.show-settings {
+		text-decoration: none;
+		z-index: 1;
+		padding: 1px 16px 0 6px;
+		height: 22px;
+		line-height: 22px;
+		font-size: 12px;
+		display: block;
+		text-shadow: rgba(255,255,255,0.7) 0 1px 0;
+
+		&:hover {
+			text-decoration: none;
+		}
+	}
+}
+
+/* screen options and help tabs revert */
+#screen-meta {
+	display: none;
+	position: relative;
+	margin: 0 15px 0 5px;
+	border-width: 0 1px 1px;
+	border-style: none solid solid;
+
+	.screen-reader-text {
+		visibility: hidden;
+	}
+}
+
+#screen-options-link-wrap,
+#contextual-help-link-wrap {
+	float: right;
+	height: 23px;
+	padding: 0;
+	margin: 0 0 0 6px;
+	font-family: sans-serif;
+}
+
+#screen-options-link-wrap,
+#contextual-help-link-wrap,
+#screen-meta {
+	.rounded-bottom();
+}
+
+/* end screen options and help tabs */
+
+.toggle-arrow {
+	background-repeat: no-repeat;
+	background-position: top left;
+	background-color: transparent;
+	height: 22px;
+	line-height: 22px;
+	display: block;
+}
+
+.toggle-arrow-active {
+	background-position: bottom left;
+}
+
+#screen-options-wrap h5,
+#contextual-help-wrap h5 {
+	margin: 8px 0;
+	font-size: 13px;
+}
+
+.metabox-prefs {
+	label {
+		display: inline-block;
+		padding-right: 15px;
+		white-space: nowrap;
+		line-height: 30px;
+
+		input {
+			margin: 0 5px 0 2px;
+		}
+	
+		a {
+			display: none;
+		}	
+	}
+
+	.columns-prefs label input {
+		margin: 0 2px;
+	}
+}
+
+
+
+/*------------------------------------------------------------------------------
+  6.2 - Help Menu
+------------------------------------------------------------------------------*/
+
+#contextual-help-wrap {
+	padding: 0;
+	margin-left: -4px;
+}
+
+#contextual-help-columns {
+	position: relative;
+}
+
+#contextual-help-back {
+	position: absolute;
+	top: 0;
+	bottom: 0;
+	left: 150px;
+	right: 170px;
+	border-width: 0 1px;
+	border-style: solid;
+
+	#contextual-help-wrap.no-sidebar & {
+		right: 0;
+
+		border-right-width: 0;
+		-moz-border-bottom-right-radius: 2px;
+		-webkit-border-bottom-right-radius: 2px;
+		border-bottom-right-radius: 2px;
+	}
+}
+
+.contextual-help-tabs {
+	float: left;
+	width: 150px;
+	margin: 0;
+
+	ul {
+		margin: 1em 0;
+	}
+
+	li {
+		margin-bottom: 0;
+		list-style-type: none;
+		border-style: solid;
+		border-width: 1px 0;
+		border-color: transparent;
+	}
+
+	a {
+		display: block;
+		padding: 5px 5px 5px 12px;
+		line-height: 18px;
+		text-decoration: none;
+	}
+
+	.active {
+		padding: 0;
+		margin: 0 -1px 0 0;
+		border-width: 1px 0 1px 1px;
+		border-style: solid;
+	}
+}
+
+.contextual-help-tabs-wrap {
+	padding: 0 20px;
+	overflow: auto;
+}
+
+.help-tab-content {
+	display: none;
+	margin: 0 22px 12px 0;
+	line-height: 1.6em;
+
+	&.active {
+		display: block;
+	}
+
+	ul li {
+		list-style-type: disc;
+		margin-left: 18px;
+	}
+}
+
+.contextual-help-sidebar {
+	width: 150px;
+	float: right;
+	padding: 0 8px 0 12px;
+	overflow: auto;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/hidpi.less b/wp-admin/css/less/modules/hidpi.less
new file mode 100644
index 0000000..7d3e3ea
--- /dev/null
+++ b/wp-admin/css/less/modules/hidpi.less
@@ -0,0 +1,112 @@
+/**
+ * HiDPI Displays
+ */
+@media print,
+  (-o-min-device-pixel-ratio: 5/4),
+  (-webkit-min-device-pixel-ratio: 1.25),
+  (min-resolution: 120dpi) {
+
+	.press-this .tagchecklist span a {
+	 	background-image: url('../images/xit-2x.gif');
+	 	background-size: 20px auto;
+	 }
+
+	.js .postbox:hover .handlediv,
+	.js .stuffbox:hover .handlediv,
+	.widget-top a.widget-action {
+	 	background-image: url('../images/arrows-2x.png');
+	 	background-size: 15px 123px;
+	 }
+
+	.widget-top a.widget-action:hover {
+	 	background-image: url('../images/arrows-dark-2x.png');
+	 	background-size: 15px 123px;
+	}
+
+	.post-com-count {
+		background-image: url('../images/bubble_bg-2x.gif');
+		background-size: 18px 100px;
+	}
+
+	tr.wp-locked .locked-indicator  {
+		background-image: url('../images/lock-2x.png');
+		background-size: 16px 16px;
+	}
+
+	th .comment-grey-bubble {
+		background-image: url('../images/comment-grey-bubble-2x.png');
+		background-size: 12px 12px;
+	}
+
+	.sorting-indicator {
+		background-image: url('../images/sort-2x.gif?ver=20130102');
+		background-size: 14px 4px;
+	}
+
+	#content-resize-handle,
+	#post-body .wp_themeSkin .mceStatusbar a.mceResize {
+		background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
+		background-size: 11px 11px;
+	}
+
+	div.star-holder {
+		background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
+		background-size: 21px 37px;
+	}
+
+	div.star-holder .star-rating {
+		background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
+		background-size: 21px 37px;
+	}
+
+	.welcome-panel .welcome-panel-close:before {
+		background-image: url('../images/xit-2x.gif');
+		background-size: 20px auto;
+	}
+
+	.welcome-panel .welcome-icon {
+		background-image: url('../images/welcome-icons-2x.png');
+	}
+
+	.login h1 a {
+		background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
+		background-size: 274px 63px;
+	}
+
+	.wp-badge {
+		background-image: url('../images/wp-badge-2x.png?ver=20120516');
+		background-size: 173px 194px;
+	}
+
+	.wp-full-overlay .collapse-sidebar-arrow {
+	 	background-image: url('../images/arrows-2x.png');
+	 	background-size: 15px 123px;
+	 }
+
+	.pressthis a span {
+		background-image: url(../images/press-this-2x.png?v=20121105);
+	}
+
+	.imgedit-crop,
+	.imgedit-rleft,
+	.imgedit-rright,
+	.imgedit-flipv,
+	.imgedit-fliph,
+	.imgedit-undo,
+	.imgedit-redo {
+		background-image: url('../images/imgedit-icons-2x.png');
+		background-size: 260px 64px;
+	}
+
+	.spinner,
+	.imgedit-wait,
+	.customize-loading #customize-container {
+		background-image: url(../images/wpspin_light-2x.gif);
+	}
+
+	.wp-slider .ui-slider-handle:before {
+		background-image: url(../images/arrows-pr-2x.png);
+		background-size: 16px 102px;
+	}
+
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/layout-blocks.less b/wp-admin/css/less/modules/layout-blocks.less
new file mode 100644
index 0000000..65da352
--- /dev/null
+++ b/wp-admin/css/less/modules/layout-blocks.less
@@ -0,0 +1,297 @@
+/*------------------------------------------------------------------------------
+  8.0 - Layout Blocks
+------------------------------------------------------------------------------*/
+
+html.wp-toolbar {
+	padding-top: 28px;
+	.border-box();
+}
+
+.narrow {
+	width: 70%;
+	margin-bottom: 40px;
+
+	p {
+		line-height: 150%;
+	}
+}
+
+.widefat {
+	th,
+	td {
+		overflow: hidden;
+	}
+
+	th {
+		font-weight: normal;
+	}
+
+	td p {
+		margin: 2px 0 0.8em;
+	}
+
+	.column-comment p {
+		margin: 0.6em 0;
+	}
+}
+
+/* Screens with postboxes */
+.postbox-container {
+	float: left;
+}
+
+#dashboard-widgets {
+	&.columns-1 .postbox-container {
+		width: 100%;
+	}
+
+	&.columns-2 {
+		.postbox-container {
+			width: 49.5%;
+		}
+
+		#postbox-container-2,
+		#postbox-container-3,
+		#postbox-container-4 {
+			float: right;
+			width: 50.5%;
+		}
+	}
+
+	&.columns-3  {
+		.postbox-container {
+			width: 33.5%;
+		}
+
+		#postbox-container-1 {
+			width: 33%;
+		}
+
+		#postbox-container-3,
+		#postbox-container-4 {
+			float: right;
+		}
+	} 
+
+	&.columns-4 .postbox-container {
+		width: 25%;
+	}
+}
+
+.postbox-container .meta-box-sortables {
+	.border-box();
+}
+
+.metabox-holder .postbox-container .empty-container {
+	border: 3px dashed #ccc;
+	height: 250px;
+}
+
+.metabox-holder.columns-1 .postbox-container .empty-container,
+.columns-2 #postbox-container-3 .empty-container,
+.columns-2 #postbox-container-4 .empty-container,
+.columns-3 #postbox-container-4 .empty-container {
+	border: 0 none;
+	height: 0;
+	min-height: 0;
+}
+
+#poststuff {
+	padding-top: 10px;
+
+	#post-body {
+		padding: 0;
+	}
+
+	.postbox-container {
+		width: 100%;
+	}
+
+	#post-body.columns-2 {
+		margin-right: 300px;
+	}
+}
+
+#post-body-content {
+	width: 100%;
+	float: left;
+}
+
+#post-body.columns-2 #postbox-container-1 {
+	float: right;
+	margin-right: -300px;
+	width: 280px;
+}
+
+#post-body.columns-2 #side-sortables {
+	min-height: 250px;
+}
+
+/* one column on the dash */
+@media only screen and (max-width: 799px) {
+	#wpbody-content #dashboard-widgets .postbox-container {
+		width: 100%;
+	}
+
+	#wpbody-content .metabox-holder .postbox-container .empty-container {
+		border: 0 none;
+		height: 0;
+		min-height: 0;
+	}
+}
+
+/* two columns on the dash, but keep the setting if one is selected */
+@media only screen and (min-width: 800px) and (max-width: 1200px) {
+	#wpbody-content #dashboard-widgets .postbox-container {
+		width: 49.5%;
+	}
+
+	#wpbody-content #dashboard-widgets #postbox-container-2,
+	#wpbody-content #dashboard-widgets #postbox-container-3,
+	#wpbody-content #dashboard-widgets #postbox-container-4 {
+		float: right;
+		width: 50.5%;
+	}
+
+	#dashboard-widgets #postbox-container-3 .empty-container,
+	#dashboard-widgets #postbox-container-4 .empty-container {
+		border: 0 none;
+		height: 0;
+		min-height: 0;
+	}
+
+	#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
+		width: 100%;
+	}
+
+	#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
+		border: 0 none;
+		height: 0;
+		min-height: 0;
+	}
+
+	/* show the radio buttons for column prefs only for one or two columns */
+	.index-php .screen-layout,
+	.index-php .columns-prefs {
+		display: block;
+	}
+
+	.columns-prefs .columns-prefs-3,
+	.columns-prefs .columns-prefs-4 {
+		display: none;
+	}
+}
+
+/* one column on the post write/edit screen */
+@media only screen and (max-width: 850px) {
+	#wpbody-content #poststuff #post-body {
+		margin: 0;
+	}
+
+	#wpbody-content #post-body.columns-2 #postbox-container-1 {
+		margin-right: 0;
+		width: 100%;
+	}
+
+	#poststuff #postbox-container-1 .empty-container,
+	#poststuff #postbox-container-1 #side-sortables:empty {
+		border: 0 none;
+		height: 0;
+		min-height: 0;
+	}
+
+	#poststuff #post-body.columns-2 #side-sortables {
+		min-height: 0;
+	}
+
+	/* hide the radio buttons for column prefs */
+	.screen-layout,
+	.columns-prefs {
+		display: none;
+	}
+}
+
+.postbox .hndle {
+	.rounded-top();
+}
+
+.js .postbox .hndle {
+	cursor: move;
+}
+
+.postbox.closed .hndle {
+	.rounded(3px);
+}
+
+.hndle a {
+	font-size: 11px;
+	font-weight: normal;
+}
+
+.postbox .handlediv {
+	float: right;
+	width: 27px;
+	height: 30px;
+}
+
+.js .postbox .handlediv {
+	cursor: pointer;
+}
+
+.sortable-placeholder {
+	border-width: 1px;
+	border-style: dashed;
+	margin-bottom: 20px;
+}
+
+.widget,
+.postbox,
+.stuffbox {
+	margin-bottom: 20px;
+	padding: 0;
+	border-width: 1px;
+	border-style: solid;
+	line-height: 1;
+}
+
+.widget .widget-top,
+.postbox h3,
+.stuffbox h3 {
+	margin-top: 1px;
+	border-bottom-width: 1px;
+	border-bottom-style: solid;
+	.no-user-select();
+}
+
+.js .widget .widget-top,
+.js .postbox h3 {
+	cursor: move;
+}
+
+.postbox .inside,
+.stuffbox .inside {
+	padding: 0 12px 0 10px;
+	line-height: 1.4em;
+}
+
+.postbox .inside {
+	margin: 10px 0;
+	position: relative;
+}
+
+.postbox.closed h3 {
+	border: none;
+	.no-box-shadows();
+}
+
+.postbox table.form-table {
+	margin-bottom: 0;
+}
+
+.temp-border {
+	border: 1px dotted #ccc;
+}
+
+.columns-prefs label {
+	padding: 0 5px;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/list-posts.less b/wp-admin/css/less/modules/list-posts.less
new file mode 100644
index 0000000..99a92d5
--- /dev/null
+++ b/wp-admin/css/less/modules/list-posts.less
@@ -0,0 +1,575 @@
+/*------------------------------------------------------------------------------
+  10.0 - List Posts (/Pages/etc)
+------------------------------------------------------------------------------*/
+
+table.fixed {
+	table-layout: fixed;
+}
+
+.fixed {
+	.column-rating,
+	.column-visible {
+		width: 8%;
+	}
+
+	.column-posts,
+	.column-date,
+	.column-parent,
+	.column-links,
+	.column-author,
+	.column-format {
+		width: 10%;
+	}
+
+	.column-response,
+	.column-categories,
+	.column-tags,
+	.column-rel,
+	.column-role {
+		width: 15%;
+	}
+
+	.column-slug {
+		width: 25%;
+	}
+
+	.column-locations {
+		width: 35%;
+	}
+
+	.column-comments {
+		width: 4em;
+		padding: 8px 0;
+		text-align: left;
+
+		.vers {
+			padding-left: 3px;
+		}
+
+		a {
+			float: left;
+		}
+	}
+
+	.column-icon {
+		width: 80px;
+	}
+
+	#comments-form & .column-author {
+		width: 20%;
+	}
+}
+
+#commentsdiv {
+	&.postbox .inside {
+		margin: 0;
+		padding: 0;
+	}
+
+	.inside .row-actions {
+		line-height:18px;
+	}
+
+	.inside .column-author {
+		width: 25%;
+	}
+
+	.column-comment p {
+		margin: 0.6em 0;
+		padding: 0;
+	}
+
+	#replyrow td {
+		padding: 0;
+	}
+
+	p {
+		padding: 8px 10px;
+		margin: 0;
+	}
+
+	#add-new-comment {
+		border-width: 0 0 1px;
+		border-style: none none solid;
+	}
+
+	.comments-box {
+		border: 0 none;
+
+		thead th {
+			background: transparent;
+			padding: 0 7px 4px;
+			font-style: italic;
+		}
+
+		tr:last-child td {
+			border-bottom: 0 none;
+		}
+	}
+
+	.spinner {
+		padding-left: 5px;
+	}
+}
+
+.sorting-indicator {
+	display: none;
+	width: 7px;
+	height: 4px;
+	margin-top: 8px;
+	margin-left: 7px;
+	background-image: url('../images/sort.gif');
+	background-repeat: no-repeat;
+}
+
+tr.wp-locked .locked-indicator {
+	background: url('../images/lock.png') no-repeat;
+	margin: -2px 0 0 6px;
+	height: 20px;
+	width: 16px;
+}
+
+tr.wp-locked .check-column label,
+tr.wp-locked .check-column input[type="checkbox"],
+tr.wp-locked .row-actions .inline,
+tr.wp-locked .row-actions .trash {
+	display: none;
+}
+
+tr .locked-info {
+	height: 0;
+	opacity: 0;
+}
+
+tr.wp-locked .locked-info {
+	height: auto;
+	opacity: 1;
+}
+
+tr.locked-info, tr.wp-locked .locked-info {
+	-webkit-transition: height 1s, opacity 500ms;
+	-moz-transition:    height 1s, opacity 500ms;
+	-ms-transition:     height 1s, opacity 500ms;
+	-o-transition:      height 1s, opacity 500ms;
+	transition:         height 1s, opacity 500ms;
+}
+
+.fixed .column-comments .sorting-indicator {
+	margin-top: 3px;
+}
+
+#menu-locations-wrap .widefat {
+	width: 60%;
+}
+
+.widefat th.sortable,
+.widefat th.sorted {
+	padding: 0;
+}
+
+th.sortable a,
+th.sorted a {
+	display: block;
+	overflow: hidden;
+	padding: 7px 7px 8px;
+}
+
+.fixed .column-comments.sortable a,
+.fixed .column-comments.sorted a {
+	padding: 8px 0;
+}
+
+th.sortable a span,
+th.sorted a span {
+	float: left;
+	cursor: pointer;
+}
+
+th.sorted.asc .sorting-indicator,
+th.desc:hover span.sorting-indicator {
+	display: block;
+	background-position: 0 0;
+}
+
+th.sorted.desc .sorting-indicator,
+th.asc:hover span.sorting-indicator {
+	display: block;
+	background-position: -7px 0;
+}
+
+/* Bulk Actions */
+.tablenav-pages a {
+	border-bottom-style: solid;
+	border-bottom-width: 2px;
+	font-weight: bold;
+	margin-right: 1px;
+	padding: 0 2px;
+}
+.tablenav-pages .current-page {
+	text-align: center;
+}
+.tablenav-pages .next-page {
+	margin-left: 2px;
+}
+
+.tablenav {
+	clear: both;
+	height: 30px;
+	margin: 6px 0 4px;
+	vertical-align: middle;
+
+
+	&.themes {
+		max-width: 98%;
+	}
+
+	a.button-secondary {
+		display: block;
+		margin: 3px 8px 0 0;
+	}
+
+	.tablenav-pages {
+		float: right;
+		display: block;
+		cursor: default;
+		height: 30px;
+		line-height: 30px;
+		font-size: 12px;
+
+		a.disabled:hover ,
+		a.disabled:active {
+			cursor: default;
+		}
+	}
+
+	.no-pages,
+	.one-page .pagination-links {
+		display: none;
+	}
+
+	.displaying-num {
+		margin-right: 10px;
+		font-size: 12px;
+		font-style: italic;
+	}
+
+	.actions {
+		overflow: hidden;
+		padding: 2px 8px 0 0;
+	}
+
+	.delete {
+		margin-right: 20px;
+	}
+}
+
+.tablenav .tablenav-pages a,
+.tablenav-pages span.current  {
+	text-decoration: none;
+	padding: 3px 6px;
+}
+
+.view-switch {
+	float: right;
+	margin: 6px 8px 0;
+
+	a {
+		text-decoration: none;
+	}
+}
+
+.filter {
+	float: left;
+	margin: -5px 0 0 10px;
+
+	.subsubsub {
+		margin-left: -10px;
+		margin-top: 13px;
+	}
+}
+
+.screen-per-page {
+	width: 4em;
+}
+
+#posts-filter fieldset {
+	float: left;
+	margin: 0 1.5ex 1em 0;
+	padding: 0;
+}
+
+#posts-filter fieldset legend {
+	padding: 0 0 .2em 1px;
+}
+
+
+/*------------------------------------------------------------------------------
+  10.1 - Inline Editing
+------------------------------------------------------------------------------*/
+
+/*
+.quick-edit* is for Quick Edit
+.bulk-edit* is for Bulk Edit
+.inline-edit* is for everything
+*/
+
+/*	Layout */
+
+#wpbody-content {
+	.inline-edit-row fieldset {
+		font-size: 12px;
+		float: left;
+		margin: 0;
+		padding: 0;
+		width: 100%;
+	}
+
+	.quick-edit-row-post {
+		.inline-edit-col-left {
+			width: 40%;
+		}
+
+		.inline-edit-col-right {
+			width: 39%;
+		}
+	}
+
+	.quick-edit-row-page {
+		fieldset.inline-edit-col-right .inline-edit-col {
+			border-width: 0 0 0 1px;
+			border-style: none none none solid;
+		}
+
+		.inline-edit-col-left {
+			width: 50%;
+		}
+	}
+
+	.inline-edit-row-post .inline-edit-col-center {
+		width: 20%;
+	}
+
+	.quick-edit-row-page .inline-edit-col-right,
+	.bulk-edit-row-post .inline-edit-col-right {
+		width: 49%;
+	}
+
+	.bulk-edit-row .inline-edit-col-left {
+		width: 30%;
+	}
+
+	.bulk-edit-row-page .inline-edit-col-right {
+		width: 69%;
+	}
+
+	.bulk-edit-row .inline-edit-col-bottom {
+		float: right;
+		width: 69%;
+	}
+
+	.inline-edit-row-page .inline-edit-col-right {
+		margin-top: 27px;
+	}
+}
+
+tr.inline-edit-row td,
+#wpbody-content .inline-edit-row fieldset .inline-edit-col {
+	padding: 0 0.5em;
+}
+
+.inline-edit-row {
+	fieldset .inline-edit-group {
+		clear: both;
+
+		&:after {
+			content: ".";
+			display: block;
+			height: 0;
+			clear: both;
+			visibility: hidden;
+		}	
+	}
+
+	p.submit {
+		clear: both;
+		padding: 0.5em;
+		margin: 0.5em 0 0;
+	}
+
+	span.error {
+		line-height: 22px;
+		margin: 0 15px;
+		padding: 3px 5px;
+	}
+
+	/*	Positioning */
+	h4 {
+		margin: .2em 0;
+		padding: 0;
+		line-height: 23px;
+		text-transform: uppercase;
+	}
+
+	fieldset {
+		span.title,
+		span.checkbox-title {
+			margin: 0;
+			padding: 0;
+			line-height: 27px;
+			font-style: italic;
+			line-height: 1.8em;
+		}
+
+		label,
+		span.inline-edit-categories-label {
+			display: block;
+			margin: .2em 0;
+		}
+
+		label.inline-edit-tags {
+			margin-top: 0;
+		}
+
+		label.inline-edit-tags span.title {
+			margin: .2em 0;
+			width: auto;
+		}
+
+		label span.title {
+			display: block;
+			float: left;
+			width: 5em;
+		}
+
+		label span.input-text-wrap {
+			display: block;
+			margin-left: 5em;
+		}
+
+		label input[type=checkbox] {
+			vertical-align: text-bottom;
+		}
+
+		label textarea {
+			width: 100%;
+			height: 4em;
+		}
+
+		/*	Specific Elements */
+		input[type="text"],
+		textarea {
+			border-style: solid;
+			border-width: 1px;
+		}
+
+		.inline-edit-date {
+			float: left;
+		}
+
+		input[name=jj],
+		input[name=hh],
+		input[name=mn] {
+			font-size: 12px;
+			width: 2.1em;
+		}
+
+		input[name=aa] {
+			font-size: 12px;
+			width: 3.5em;
+		}
+
+		label input.inline-edit-password-input {
+			width: 8em;
+		}
+
+		ul.cat-checklist li,
+		ul.cat-checklist input {
+			margin: 0;
+		}
+	
+		label input.inline-edit-menu-order-input {
+			width: 3em;
+		}
+
+		label input.inline-edit-slug-input {
+			width: 75%;
+		}
+	}
+
+	.input-text-wrap input[type=text] {
+		width: 100%;
+	}
+
+	fieldset ul.cat-checklist label,
+	#bulk-titles div {
+		font-family: sans-serif;
+		font-style: normal;
+		font-size: 11px;
+	}
+}
+
+.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
+	width: auto;
+	padding-right: 0.5em;
+}
+
+#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
+	max-width: 50%;
+}
+
+#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
+	margin-right: 0.5em;
+}
+
+.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
+	width: 6em;
+}
+
+.inline-edit-save .spinner {
+	padding: 4px 10px 0;
+	vertical-align: top;
+	float: right;
+}
+
+ul.cat-checklist {
+	height: 12em;
+	border-style: solid;
+	border-width: 1px;
+	overflow-y: scroll;
+	padding: 0 5px;
+	margin: 0;
+}
+
+#bulk-titles {
+	display: block;
+	height: 12em;
+	border-style: solid;
+	border-width: 1px;
+	overflow-y: scroll;
+	padding: 0 5px;
+	margin: 0 0 5px;
+}
+
+.quick-edit-row-post fieldset label.inline-edit-status {
+	float: left;
+}
+
+#bulk-titles {
+	line-height: 140%;
+
+	div {
+		margin: 0.2em 0.3em;
+
+		a {
+			cursor: pointer;
+			display: block;
+			float: left;
+			height: 10px;
+			margin: 3px 3px 0 -2px;
+			overflow: hidden;
+			position: relative;
+			text-indent: -9999px;
+			width: 10px;
+		}
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/localized.less b/wp-admin/css/less/modules/localized.less
new file mode 100644
index 0000000..d5abc10
--- /dev/null
+++ b/wp-admin/css/less/modules/localized.less
@@ -0,0 +1,61 @@
+/* =Localized CSS
+-------------------------------------------------------------- */
+
+/* zh_CN: Remove italic properties. */
+.locale-zh-cn .howto,
+.locale-zh-cn .tablenav .displaying-num,
+.locale-zh-cn .js .input-with-default-title,
+.locale-zh-cn .link-to-original,
+.locale-zh-cn .inline-edit-row fieldset span.title,
+.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,
+.locale-zh-cn #utc-time,
+.locale-zh-cn #local-time,
+.locale-zh-cn p.install-help,
+.locale-zh-cn p.help,
+.locale-zh-cn p.description,
+.locale-zh-cn span.description,
+.locale-zh-cn .form-wrap p {
+	font-style: normal;
+}
+
+/* zh_CN: Enlarge dashboard widget 'Configure' link */
+.locale-zh-cn .hdnle a { font-size: 12px; }
+
+/* zn_CH: Enlarge font size, set font-size: normal */
+.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
+
+/* Zn_CH: Distraction free writing.
+ *  More beautiful font for "Just write."
+ *  Larger text for HTML/Visual mode.
+ */
+.locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
+.locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
+
+/* zh_CN: Enlarge font-size. */
+.locale-zh-cn #sort-buttons { font-size: 1em !important; }
+
+/* ru_RU: Text needs more room to breathe. */
+.locale-ru-ru .inline-edit-row fieldset label span.title {
+	width: auto; /* default 5em */
+	min-width: 5em;
+}
+.locale-ru-ru.press-this .posting {
+	margin-right: 257px; /* default 212px + 45px */
+}
+.locale-ru-ru.press-this #photo-add-url-div input[type="text"]  {
+	width: 255px; /* default 300px - 45px */
+}
+.locale-ru-ru.press-this #side-sortables {
+	width: 245px; /* default 200px + 45px */
+}
+.locale-ru-ru #customize-header-actions .button {
+	padding: 0 8px 1px; /* default 0 10px 1px; */
+}
+
+/* lt_LT: QuickEdit */
+.locale-lt-lt .inline-edit-row fieldset label span.title {
+	width: 8em;
+}
+.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
+	margin-left: 8em;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/login.less b/wp-admin/css/less/modules/login.less
new file mode 100644
index 0000000..2a772ac
--- /dev/null
+++ b/wp-admin/css/less/modules/login.less
@@ -0,0 +1,152 @@
+/* login */
+
+.login { 
+	* {
+		margin: 0;
+		padding: 0;
+	}
+
+	h1 a {
+		background-image: url('../images/wordpress-logo.png?ver=20120216');
+		background-size: 274px 63px;
+		background-position: top center;
+		background-repeat: no-repeat;
+		width: 326px;
+		height: 67px;
+		text-indent: -9999px;
+		outline: none;
+		overflow: hidden;
+		padding-bottom: 15px;
+		display: block;
+	}
+
+	form {
+		margin-left: 8px;
+		padding: 26px 24px 46px;
+		font-weight: normal;
+		background: #fff;
+		border: 1px solid #e5e5e5;
+		-webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
+		box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
+
+		.forgetmenot {
+			float: left;
+			margin-bottom: 0;
+
+			label {
+				.normal-font(12px, 19px);
+			}
+		}
+	}
+
+	.button-primary {
+		float: right;
+	}
+
+	label {
+		color: #777;
+		font-size: 14px;
+	}
+
+	#nav,
+	#backtoblog {
+		text-shadow: #fff 0 1px 0;
+		margin: 0 0 0 16px;
+		padding: 16px 16px 0;
+	}
+
+	form .input,
+	input[type="text"] {
+		color: #555;
+		font-weight: 200;
+		font-size: 24px;
+		line-height: 1;
+		width: 100%;
+		padding: 3px;
+		margin-top: 2px;
+		margin-right: 6px;
+		margin-bottom: 16px;
+		border: 1px solid #e5e5e5;
+		background: #fbfbfb;
+		outline: none;
+		-webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
+		box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
+	}
+
+	#pass-strength-result {
+		width: 250px;
+		font-weight: bold;
+		border-style: solid;
+		border-width: 1px;
+		margin: 12px 0 6px;
+		padding: 6px 5px;
+		text-align: center;
+	}
+}
+
+#login {
+	width: 320px;
+	padding: 114px 0 0;
+	margin: auto;
+
+	form p {
+		margin-bottom: 0;
+
+		&.submit {
+			padding: 0;
+		}
+	}
+}
+
+#login_error,
+.login .message {
+	margin: 0 0 16px 8px;
+	padding: 12px;
+}
+
+#backtoblog {
+	padding: 12px 16px 0;
+}
+
+.mobile #login {
+	padding: 20px 0;
+
+	#nav,
+	#backtoblog {
+		margin-left: 8px;
+	}
+
+	h1 a {
+		width: auto;
+	}
+}
+
+.mobile #login form,
+.mobile #login .message,
+.mobile #login_error {
+	margin-left: 0;
+}
+
+body.interim-login {
+	height: auto;
+}
+
+.interim-login {
+	#login {
+		padding: 0;
+		margin: 5px auto 20px;
+	}
+
+	&.login h1 a {
+		width: auto;
+	}
+
+	#login_error,
+	&.login .message {
+		margin: 0 0 16px;
+	}
+
+	&.login form {
+		margin: 0;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/media-queries.less b/wp-admin/css/less/modules/media-queries.less
new file mode 100644
index 0000000..0b7eac2
--- /dev/null
+++ b/wp-admin/css/less/modules/media-queries.less
@@ -0,0 +1,74 @@
+/* =Media Queries
+-------------------------------------------------------------- */
+
+@media only screen and (max-width: 768px) {
+	/* categories */
+	#col-left {
+		width: 100%;
+	}
+
+	#col-right {
+		width: 100%;
+	}
+}
+
+@media only screen and (min-width: 769px) {
+	/* categories */
+	#col-left {
+		width: 35%;
+	}
+
+	#col-right {
+		width: 65%;
+	}
+}
+
+@media only screen and (max-width: 860px) {
+
+	/* categories */
+	#col-left {
+		width: 35%;
+	}
+
+	#col-right {
+		width: 65%;
+	}
+}
+
+@media only screen and (min-width: 980px) {
+
+	/* categories */
+	#col-left {
+		width: 35%;
+	}
+
+	#col-right {
+		width: 65%;
+	}
+}
+
+@media only screen and (max-width: 768px) {
+	/* categories */
+	#col-left {
+		width: 100%;
+	}
+
+	#col-right {
+		width: 100%;
+	}
+
+	.form-field input,
+	.form-field textarea {
+		width: 99%;
+	}
+
+	.form-wrap .form-field {
+		padding:0;
+	}
+
+	/* users */
+	#profile-page .form-table textarea {
+		max-width: 400px;
+		width: auto;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/media.less b/wp-admin/css/less/modules/media.less
new file mode 100644
index 0000000..092755c
--- /dev/null
+++ b/wp-admin/css/less/modules/media.less
@@ -0,0 +1,648 @@
+/*------------------------------------------------------------------------------
+  14.0 - Media Screen
+------------------------------------------------------------------------------*/
+
+.media-item {
+	.describe {
+		border-collapse: collapse;
+		width: 100%;
+		border-top-style: solid;
+		border-top-width: 1px;
+		clear: both;
+		cursor: default;
+
+		td {
+			padding: 0 8px 8px 0;
+			vertical-align: top;
+		}
+
+		th {
+			vertical-align: top;
+			text-align: left;
+			padding: 5px 10px 10px;
+			width: 140px;
+
+			.align & {
+				padding-top: 0;
+			}
+		}
+	
+		input[type="text"],
+		textarea {
+			width: 460px;
+		}
+
+		p.help {
+			margin: 0;
+			padding: 0 0 0 5px;
+		}		
+	}
+
+	&.media-blank .describe {
+		border: 0;
+	}
+
+	.media-item-info tr {
+		background-color: transparent;
+	}
+
+	thead.media-item-info td {
+		padding: 4px 10px 0;
+	}
+
+	.media-item-info .A1B1 {
+		padding: 0 0 0 10px;
+	}
+
+	td.savesend {
+		padding-bottom: 15px;
+	}
+
+	.thumbnail {
+		max-height: 128px;
+		max-width: 128px;
+	}
+
+	.filename {
+		line-height: 36px;
+		overflow: hidden;
+		padding: 0 10px;
+	}
+
+	.error-div {
+		padding-left: 10px;
+	}
+
+	.pinkynail {
+		float: left;
+		margin: 2px 2px 0;
+		max-width: 40px;
+		max-height: 32px;
+	}
+
+	.startopen,
+	.startclosed {
+		display: none;
+	}
+
+	.original {
+		position: relative;
+		height: 34px;
+	}
+
+	.progress {
+		float: right;
+		height: 22px;
+		margin: 6px 10px 0 0;
+		width: 200px;
+		line-height: 2em;
+		padding: 0;
+		overflow: hidden;
+		margin-bottom: 2px;
+		border: 1px solid #d1d1d1;
+		.linear-gradient(#fff, #f7f7f7);
+		.rounded(3px);
+		-moz-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
+		-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
+		box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
+	}
+
+	.bar {
+		z-index: 9;
+		width: 0;
+		height: 100%;
+		margin-top: -24px;
+		.linear-gradient(#72a7cf, #8cc1e9);
+		.rounded(3px);
+		-moz-box-shadow: 0 0 3px rgba(0,0,0,0.3);
+		-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
+		box-shadow: 0 0 3px rgba(0,0,0,0.3);
+	}
+
+	.progress .percent {
+		z-index: 10;
+		position: relative;
+		width: 200px;
+		padding: 0 8px;
+		text-shadow: 0 1px 0 rgba(255,255,255,0.4);
+		color: rgba(0,0,0,0.6);
+	}
+}
+
+#wpbody-content #async-upload-wrap a {
+	display: none;
+}
+
+.media-upload-form {
+	margin-top: 20px;
+
+	td label {
+		margin-right: 6px;
+		margin-left: 2px;
+	}
+
+	.align .field label {
+		display: inline;
+		padding: 0 0 0 23px;
+		margin: 0 1em 0 3px;
+		font-weight: bold;
+	}
+
+	tr.image-size label {
+		margin: 0 0 0 5px;
+		font-weight: bold;
+	}
+
+	th.label label {
+		.bold-font(13px);
+		margin: 0.5em;
+	
+		span {
+			padding: 0 5px;
+		}
+	}
+}
+
+abbr.required {
+	border: medium none;
+	text-decoration: none;
+}
+
+.media-item .edit-attachment,
+.describe-toggle-on,
+.describe-toggle-off {
+	display: block;
+	line-height: 36px;
+	float: right;
+	margin-right: 15px;
+}
+
+.media-item .describe-toggle-off,
+.media-item.open .describe-toggle-on {
+	display: none;
+}
+
+.media-item.open .describe-toggle-off {
+	display: block;
+}
+
+#media-items .media-item {
+	border-style: solid;
+	border-width: 1px;
+	min-height: 36px;
+	position: relative;
+	margin-top: -1px;
+	width: 100%;
+}
+
+#media-items {
+	width: 623px;
+}
+
+.media-new-php #media-items {
+	margin: 1em 0;
+}
+
+#media-items:empty {
+	border: 0 none;
+}
+
+.upload-php .fixed .column-parent {
+	width: 15%;
+}
+
+.js .html-uploader #plupload-upload-ui {
+	display: none;
+}
+
+.js .html-uploader #html-upload-ui {
+	display: block;
+}
+
+.media-upload-form .media-item.error {
+	margin: 0;
+	padding: 0;
+}
+
+.media-upload-form .media-item.error p,
+.media-item .error-div {
+	line-height: 16px;
+	margin: 5px 10px;
+	padding: 0;
+}
+
+.media-item .error-div a.dismiss {
+	display: block;
+	float: right;
+	margin: 5px 4px 0 15px;
+}
+
+/*------------------------------------------------------------------------------
+  14.1 - Media Library
+------------------------------------------------------------------------------*/
+
+.find-box {
+	width: 600px;
+	height: 300px;
+	overflow: hidden;
+	padding: 33px 0 51px;
+	position: absolute;
+	z-index: 1000;
+}
+
+.find-box-head {
+	cursor: move;
+	font-weight: bold;
+	height: 2em;
+	line-height: 2em;
+	padding: 1px 12px;
+	position: absolute;
+	top: 5px;
+	width: 100%;
+}
+
+.find-box-inside {
+	overflow: auto;
+	padding: 6px;
+	height: 100%;
+}
+
+.find-box-search {
+	overflow: hidden;
+	padding: 9px;
+	position: relative;
+
+	.spinner {
+		float: none;
+		left: 125px;
+		position: absolute;
+		top: 9px;
+	}
+}
+
+#find-posts-input {
+	float: left;
+	width: 140px;
+	height: 24px;
+}
+
+#find-posts-search {
+	float: left;
+	margin: 1px 4px 0 3px;
+}
+
+#find-posts-response {
+	margin: 8px 0;
+	padding: 0 1px 6px;
+}
+
+#find-posts-response table {
+	width: 100%;
+}
+
+#find-posts-response .found-radio {
+	padding: 3px 0 0 8px;
+	width: 15px;
+}
+
+.find-box-buttons {
+	padding: 8px;
+	overflow: hidden;
+}
+
+.find-box #resize-se {
+	position: absolute;
+	right: 1px;
+	bottom: 1px;
+}
+
+.ui-find-overlay {
+	position: absolute;
+	top: 0;
+	left: 0;
+	background-color: black;
+	opacity: 0.6;
+	filter: alpha(opacity=60);
+}
+
+ul#dismissed-updates {
+	display: none;
+}
+
+form.upgrade {
+	margin-top: 8px;
+}
+
+form.upgrade .hint {
+	font-style: italic;
+	font-size: 85%;
+	margin: -0.5em 0 2em 0;
+}
+
+#poststuff .inside .the-tagcloud {
+	margin: 5px 0 10px;
+	padding: 8px;
+	border-width: 1px;
+	border-style: solid;
+	line-height: 1.8em;
+	word-spacing: 3px;
+	.rounded(6px);
+}
+
+.drag-drop #drag-drop-area {
+	border: 4px dashed #DDDDDD;
+	height: 200px;
+}
+
+.drag-drop .drag-drop-inside {
+	margin: 70px auto 0;
+	width: 250px;
+}
+
+.drag-drop-inside p {
+	color: #aaa;
+	font-size: 14px;
+	margin: 5px 0;
+	display: none;
+}
+
+.drag-drop .drag-drop-inside p {
+	text-align: center;
+}
+
+.drag-drop-inside p.drag-drop-info {
+	font-size: 20px;
+}
+
+.drag-drop .drag-drop-inside p,
+.drag-drop-inside p.drag-drop-buttons {
+	display: block;
+}
+
+/*
+#drag-drop-area:-moz-drag-over {
+	border-color: #83b4d8;
+}
+borger color while dragging a file over the uploader drop area */
+.drag-drop.drag-over #drag-drop-area {
+	border-color: #83b4d8;
+}
+
+#plupload-upload-ui {
+	position: relative;
+}
+
+
+/*------------------------------------------------------------------------------
+  14.2 - Image Editor
+------------------------------------------------------------------------------*/
+
+.describe .image-editor {
+	vertical-align: top;
+}
+
+.imgedit-wrap {
+	position: relative;
+}
+
+.imgedit-settings p {
+	margin: 8px 0;
+}
+
+.post-php .imgedit-wrap table {
+	width: 100%;
+}
+
+.describe .imgedit-wrap table td,
+.wp_attachment_holder .imgedit-wrap table td {
+	vertical-align: top;
+	padding-top: 0;
+}
+
+.describe .imgedit-wrap table td.imgedit-settings {
+	padding: 0 5px;
+}
+
+.wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
+	width: 250px;
+}
+
+td.imgedit-settings input {
+	margin-top: 0;
+	vertical-align: middle;
+}
+
+.imgedit-wait {
+	position: absolute;
+	top: 0;
+	background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
+	background-size: 16px 16px;
+	opacity: 0.7;
+	filter: alpha(opacity=70);
+	width: 100%;
+	height: 500px;
+	display: none;
+}
+
+.spinner {
+	background: url(../images/wpspin_light.gif) no-repeat;
+	background-size: 16px 16px;
+	display: none;
+	float: right;
+	opacity: 0.7;
+	filter: alpha(opacity=70);
+	width: 16px;
+	height: 16px;
+	margin: 5px 5px 0;
+}
+
+.no-float {
+	float: none;
+}
+
+.media-disabled,
+.imgedit-settings .disabled  {
+	color: grey;
+}
+
+.wp_attachment_image,
+.A1B1 {
+	overflow: hidden;
+}
+
+.wp_attachment_image .button,
+.A1B1 .button {
+	float: left;
+}
+
+.no-js .wp_attachment_image .button {
+	display: none;
+}
+
+.wp_attachment_image .spinner,
+.A1B1 .spinner {
+	float: left;
+	padding: 0 4px 4px;
+	vertical-align: bottom;
+}
+
+.imgedit-menu {
+	margin: 0 0 12px;
+	min-width: 300px;
+
+	div {
+		float: left;
+		width: 32px;
+		height: 32px;
+	}
+}
+
+.imgedit-crop-wrap {
+	position: relative;
+}
+
+.imgedit-crop {
+	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;
+	margin: 0 8px 0 0;
+
+	&.disabled:hover {
+		background-position: -9px -31px;
+	}
+
+	&:hover {
+		background-position: -9px -1px;
+	}
+}
+
+.imgedit-rleft {
+	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;
+	margin: 0 3px;
+
+	&.disabled:hover {
+		background-position: -46px -31px;
+	}
+
+	&:hover {
+		background-position: -46px -1px;
+	}
+}
+
+.imgedit-rright {
+	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;
+	margin: 0 8px 0 3px;
+
+	&.disabled:hover {
+		background-position: -77px -31px;
+	}
+
+	&:hover {
+		background-position: -77px -1px;
+	}
+}
+
+.imgedit-flipv {
+	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
+	margin: 0 3px;
+
+	&.disabled:hover {
+		background-position: -115px -31px;
+	}
+
+	&:hover {
+		background-position: -115px -1px;
+	}
+}
+
+.imgedit-fliph {
+	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
+	margin: 0 8px 0 3px;
+
+	&.disabled:hover {
+		background-position: -147px -31px;
+	}
+
+	&:hover {
+		background-position: -147px -1px;
+	}
+}
+
+.imgedit-undo {
+	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
+	margin: 0 3px;
+
+	&.disabled:hover {
+		background-position: -184px -31px;
+	}
+
+	&:hover {
+		background-position: -184px -1px;
+	}
+}
+
+.imgedit-redo {
+	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
+	margin: 0 8px 0 3px;
+
+	&.disabled:hover {
+		background-position: -215px -31px;
+	}
+
+	&:hover {
+		background-position: -215px -1px;
+	}
+}
+
+.imgedit-applyto img {
+	margin: 0 8px 0 0;
+}
+
+.imgedit-group-top {
+	margin: 5px 0;
+}
+
+.imgedit-applyto .imgedit-label {
+	padding: 2px 0 0;
+	display: block;
+}
+
+.imgedit-help {
+	display: none;
+	font-style: italic;
+	margin-bottom: 8px;
+}
+
+a.imgedit-help-toggle {
+	text-decoration: none;
+}
+
+.form-table td.imgedit-response {
+	padding: 0;
+}
+
+.imgedit-submit {
+	margin: 8px 0;
+}
+
+.imgedit-submit-btn {
+	margin-left: 20px;
+}
+
+.imgedit-wrap .nowrap {
+	white-space: nowrap;
+}
+
+span.imgedit-scale-warn {
+	color: red;
+	font-size: 20px;
+	font-style: normal;
+	visibility: hidden;
+	vertical-align: middle;
+}
+
+.imgedit-group {
+	border-width: 1px;
+	border-style: solid;
+	.rounded(3px);
+	margin-bottom: 8px;
+	padding: 2px 10px;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/misc.less b/wp-admin/css/less/modules/misc.less
new file mode 100644
index 0000000..9798ccc
--- /dev/null
+++ b/wp-admin/css/less/modules/misc.less
@@ -0,0 +1,780 @@
+/*------------------------------------------------------------------------------
+  25.0 - Misc
+------------------------------------------------------------------------------*/
+
+#excerpt,
+.attachmentlinks {
+	margin: 0;
+	height: 4em;
+	width: 98%;
+}
+
+#template div {
+	margin-right: 190px;
+}
+
+p.pagenav {
+	margin: 0;
+	display: inline;
+}
+
+.pagenav span {
+	font-weight: bold;
+	margin: 0 6px;
+}
+
+.row-title {
+	font-size: 13px !important;
+	font-weight: bold;
+}
+
+.column-author img, .column-username img {
+	float: left;
+	margin-right: 10px;
+	margin-top: 1px;
+}
+
+.row-actions {
+	visibility: hidden;
+	padding: 2px 0 0;
+}
+
+.mobile .row-actions {
+	visibility: visible;
+}
+
+tr:hover .row-actions,
+div.comment-item:hover .row-actions {
+	visibility: visible;
+}
+
+.row-actions-visible {
+	padding: 2px 0 0;
+}
+
+.form-table .pre {
+	padding: 8px;
+	margin: 0;
+}
+
+table.form-table td .updated {
+	font-size: 13px;
+}
+
+.tagchecklist {
+	margin-left: 14px;
+	font-size: 12px;
+	overflow: auto;
+
+	strong {
+		margin-left: -8px;
+		position: absolute;
+	}
+	span {
+		margin-right: 25px;
+		display: block;
+		float: left;
+		font-size: 11px;
+		line-height: 1.8em;
+		white-space: nowrap;
+		cursor: default;
+
+		a {
+			margin: 6px 0pt 0pt -9px;
+			cursor: pointer;
+			width: 10px;
+			height: 10px;
+			display: block;
+			float: left;
+			text-indent: -9999px;
+			overflow: hidden;
+			position: absolute;
+		}
+	}
+}
+
+#poststuff h2 {
+	margin-top: 20px;
+	font-size: 1.5em;
+	margin-bottom: 15px;
+	padding: 0 0 3px;
+	clear: left;
+}
+
+#poststuff h3,
+.metabox-holder h3 {
+	.normal-font(12px);
+	padding: 7px 10px;
+	margin: 0;
+}
+
+#poststuff .inside {
+	margin: 6px 0 8px;
+}
+
+#poststuff .inside #parent_id,
+#poststuff .inside #page_template {
+	max-width: 100%;
+}
+
+.inline-edit-row #post_parent,
+.inline-edit-row select[name="page_template"] {
+	max-width: 80%;
+}
+
+.ie8 #poststuff .inside #parent_id,
+.ie8 #poststuff .inside #page_template,
+.ie8 .inline-edit-row #post_parent,
+.ie8 .inline-edit-row select[name="page_template"] {
+	width: 250px;
+}
+
+#post-visibility-select {
+	line-height: 1.5em;
+	margin-top: 3px;
+}
+
+#poststuff #submitdiv .inside {
+	margin: 0;
+	padding: 0;
+}
+
+.edit-form-section {
+	margin-bottom: 20px;
+}
+
+#templateside ul li a {
+	text-decoration: none;
+}
+
+.tool-box .title {
+	margin: 8px 0;
+	.normal-font(18px, 24px);
+}
+
+#sidemenu {
+	margin: -30px 15px 0 315px;
+	list-style: none;
+	position: relative;
+	float: right;
+	padding-left: 10px;
+	font-size: 12px;
+
+	a {
+		padding: 0 7px;
+		display: block;
+		float: left;
+		line-height: 28px;
+		border-top-width: 1px;
+		border-top-style: solid;
+		border-bottom-width: 1px;
+		border-bottom-style: solid;
+
+		&.current {
+			font-weight: normal;
+			padding-left: 6px;
+			padding-right: 6px;
+			.rounded-top(3px);
+			border-width: 1px;
+			border-style: solid;
+		}	
+	}
+
+	li {
+		display: inline;
+		line-height: 200%;
+		list-style: none;
+		text-align: center;
+		white-space: nowrap;
+		margin: 0;
+		padding: 0;
+
+		a .count-0 {
+			display: none;
+		}	
+	}
+}
+
+.plugin-install #description,
+.plugin-install-network #description {
+	width: 60%;
+}
+
+table .vers,
+table .column-visible,
+table .column-rating {
+	text-align: left;
+}
+
+.error-message {
+	color: red;
+	font-weight: bold;
+}
+
+/* Scrollbar fix for bulk upgrade iframe */
+body.iframe {
+	height: 98%;
+}
+
+
+/* - Only used once or twice in all of WP - deprecate for global style
+------------------------------------------------------------------------------*/
+td.media-icon {
+	text-align: center;
+	width: 80px;
+	padding-top: 8px;
+	padding-bottom: 8px;
+
+	img {
+		max-width: 80px;
+		max-height: 60px;
+	}
+}
+
+#howto {
+	font-size: 11px;
+	margin: 0 5px;
+	display: block;
+}
+
+.importers {
+	font-size: 16px;
+	width: auto;
+	td {
+		padding-right: 14px;
+	}
+}
+
+#namediv {
+	table {
+		width: 100%;
+	}
+
+	td.first {
+		width: 10px;
+		white-space: nowrap;
+	}
+
+	input {
+		width: 98%;
+	}
+
+	p {
+		margin: 10px 0;
+	}
+}
+
+#submitdiv h3 {
+	margin-bottom: 0 !important;
+}
+
+/* - Used - but could/should be deprecated with a CSS reset
+------------------------------------------------------------------------------*/
+.zerosize {
+	height: 0;
+	width: 0;
+	margin: 0;
+	border: 0;
+	padding: 0;
+	overflow: hidden;
+	position: absolute;
+}
+
+br.clear {
+	height: 2px;
+	line-height: 2px;
+}
+
+.checkbox {
+	border: none;
+	margin: 0;
+	padding: 0;
+}
+
+fieldset {
+	border: 0;
+	padding: 0;
+	margin: 0;
+}
+
+.post-categories {
+	display: inline;
+	margin: 0;
+	padding: 0;
+}
+
+.post-categories li {
+	display: inline;
+}
+
+
+/*-----------------------------------------------------------------------------
+ MERGED
+-------------------------------------------------------------------------------*/
+
+
+/* ms */
+/* Dashboard: MS Specific Data */
+
+#dashboard_right_now {
+	p.musub {
+		margin-top: 12px;
+		border-top: 1px solid #ececec;
+		padding-left: 16px;
+		position: static;
+	}
+
+	.rtl & p.musub {
+		padding-left: 0;
+		padding-right: 16px;
+	}
+
+	td.b a.musublink {
+		font-size: 16px;
+	}
+
+	div.musubtable {
+		border-top: none;
+	}
+
+	div.musubtable .t {
+		white-space: normal;
+	}
+}
+
+/* Background Color for Site Status */
+.wp-list-table .site-deleted {
+	background: #ff8573;
+}
+.wp-list-table .site-spammed {
+	background: #faafaa;
+}
+.wp-list-table .site-archived {
+	background: #ffebe8;
+}
+.wp-list-table .site-mature {
+	background: #fecac2;
+}
+
+/* Star ratings */
+div.star-holder {
+	position: relative;
+	height: 17px;
+	width: 100px;
+	background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
+
+	.star-rating {
+		background: url('../images/stars.png?ver=20121108') repeat-x top left;
+		height: 17px;
+		float: left;
+	}
+}
+
+div.action-links {
+	font-weight: normal;
+	margin: 6px 0 0;
+}
+
+/* Header on thickbox */
+#plugin-information-header {
+	margin: 0;
+	padding: 0 5px;
+	font-weight: bold;
+	position: relative;
+	border-bottom-width: 1px;
+	border-bottom-style: solid;
+	height: 2.5em;
+}
+
+#plugin-information {
+	ul#sidemenu {
+		font-weight: normal;
+		margin: 0 5px;
+		position: absolute;
+		left: 0;
+		bottom: -1px;
+	}
+
+	/* Install sidemenu */
+	p.action-button {
+		width: 100%;
+		padding-bottom: 0;
+		margin-bottom: 0;
+		margin-top: 10px;
+		.rounded-left(3px);
+	}
+
+	.action-button a {
+		text-align: center;
+		font-weight: bold;
+		text-decoration: none;
+		display: block;
+		line-height: 2em;
+	}
+
+	h2 {
+		clear: none !important;
+		margin-right: 200px;
+	}
+
+	.fyi {
+		margin: 0 10px 50px;
+		width: 210px;
+	
+		h2 {
+			font-size: 0.9em;
+			margin-bottom: 0;
+			margin-right: 0;
+		}
+
+		h2.mainheader {
+			padding: 5px;
+			-moz-border-top-left-radius: 3px;
+			-webkit-border-top-left-radius: 3px;
+			border-top-left-radius: 3px;
+		}
+
+		ul {
+			padding: 10px 5px 10px 7px;
+			margin: 0;
+			list-style: none;
+			-moz-border-bottom-left-radius: 3px;
+			-webkit-border-bottom-left-radius: 3px;
+			border-bottom-left-radius: 3px;
+		}
+
+		li {
+			margin-right: 0;
+		}
+	}
+
+	#section-holder {
+		padding: 10px;
+	}
+
+	.section ul,
+	.section ol {
+		margin-left: 16px;
+		list-style-type: square;
+		list-style-image: none;
+	}
+
+	#section-screenshots ol {
+		list-style: none;
+		margin: 0;
+	}
+
+	#section-screenshots li img {
+		vertical-align: text-top;
+		max-width: 100%;
+		width: auto;
+		height: auto;
+	}
+
+	#section-screenshots li p {
+		font-style: italic;
+		padding-left: 20px;
+		padding-bottom: 2em;
+	}
+
+	#section-screenshots ol,
+	.updated,
+	pre {
+		margin-right: 215px;
+	}
+
+	pre {
+		padding: 7px;
+		overflow: auto;
+	}
+}
+
+#poststuff #editor-toolbar {
+	height: 30px;
+}
+
+div.zerosize {
+	border: 0 none;
+	height: 0;
+	margin: 0;
+	overflow: hidden;
+	padding: 0;
+	width: 0;
+}
+
+.posting {
+	margin-right: 212px;
+	position: relative;
+}
+
+
+
+h3.tb {
+	text-shadow: 0 1px 0 #fff;
+	.bold-font();
+	margin-left: 5px;
+}
+
+#TB_window {
+	border: 1px solid #333;
+}
+
+.js .postbox:hover .handlediv,
+.js .stuffbox:hover .handlediv {
+	background: transparent url(../images/arrows.png) no-repeat 6px 7px;
+}
+
+.press-this #submitdiv:hover .handlediv {
+	background: none;
+}
+
+.tbtitle {
+	font-size: 1.7em;
+	outline: none;
+	padding: 3px 4px;
+	border-color: @border-color;
+}
+
+#extra-fields .button {
+	margin-right: 5px;
+}
+
+/* Photo Styles */
+#photo_saving {
+	margin: 0 8px 8px;
+	vertical-align: middle;
+}
+
+#img_container_container {
+	overflow: auto;
+}
+
+#extra-fields {
+	margin-top: 10px;
+	position: relative;
+
+	h2 {
+		margin: 12px;
+	}
+}
+
+#waiting {
+	margin-top: 10px;
+	overflow: hidden;
+
+	span {
+		float: right;
+		margin: 0 0 0 5px;
+	}
+
+	.spinner {
+		display: block;
+	}
+}
+
+#extra-fields .postbox {
+	margin-bottom: 5px;
+}
+
+#extra-fields .titlewrap {
+	padding: 0;
+	overflow: auto;
+	height: 100px;
+}
+
+#img_container {
+	a {
+		display: block;
+		float: left;
+		overflow: hidden;
+	}
+
+	img,
+	a {
+		width: 68px;
+		height: 68px;
+	}
+
+	img {
+		border: none;
+		background-color: #f4f4f4;
+		cursor: pointer;
+	}
+
+	a,
+	a:link,
+	a:visited {
+		border: 1px solid #ccc;
+		display: block;
+		position: relative;
+	}
+
+	a:hover,
+	a:active {
+		border-color: black;
+		z-index: 1000;
+		border-width: 2px;
+		margin: -1px;
+	}
+}
+
+
+/* Video */
+#embed-code {
+	width: 100%;
+	height: 98px;
+}
+
+#TB_ajaxContent #options {
+	position: absolute;
+	top: 20px;
+	right: 25px;
+	padding: 5px;
+}
+
+#TB_ajaxContent h3 {
+	margin-bottom: .25em;
+}
+
+.error a {
+	text-decoration: underline;
+}
+
+.updated a {
+	text-decoration: none;
+	padding-bottom: 2px;
+}
+
+/* tag hints */
+.taghint {
+	color: #aaa;
+	margin: -17px 0 0 7px;
+	visibility: hidden;
+}
+
+input.newtag ~ div.taghint {
+	visibility: visible;
+}
+
+input.newtag:focus ~ div.taghint {
+	visibility: hidden;
+}
+
+/* TinyMCE */
+#mce_fullscreen_container {
+	background: #fff;
+}
+
+#photo-add-url-div input[type="text"] {
+	width: 300px;
+}
+
+/* theme-editor */
+.alignleft h3 {
+	margin: 0;
+}
+
+h3 span {
+	font-weight: normal;
+}
+
+#template textarea {
+	font-family: Consolas, Monaco, monospace;
+	font-size: 12px;
+	width: 97%;
+	background: #f9f9f9;
+	outline: none;
+}
+
+#template p {
+	width: 97%;
+}
+
+#templateside {
+	float: right;
+	width: 190px;
+	word-wrap: break-word;
+}
+
+#templateside h3,
+#postcustomstuff p.submit {
+	margin: 0;
+}
+
+#templateside h4 {
+	margin: 1em 0 0;
+}
+
+#templateside ol,
+#templateside ul {
+	margin: .5em;
+	padding: 0;
+}
+
+#templateside li {
+	margin: 4px 0;
+}
+
+#templateside ul li a span.highlight {
+	display:block;
+}
+
+.nonessential {
+	font-size: 11px;
+	font-style: italic;
+	padding-left: 12px;
+}
+
+.highlight {
+	padding: 3px 3px 3px 12px;
+	margin-left: -12px;
+	font-weight: bold;
+	border: 0 none;
+}
+
+#documentation {
+	margin-top: 10px;
+}
+#documentation label {
+	line-height: 22px;
+	vertical-align: top;
+	font-weight: bold;
+}
+
+.fileedit-sub {
+	padding: 10px 0 8px;
+	line-height: 180%;
+}
+
+#filter-box {
+	clear: both;
+}
+
+.feature-filter {
+	padding: 8px 12px 0;
+}
+
+.feature-filter .feature-group {
+	float: left;
+	margin: 5px 10px 10px;
+}
+
+.feature-filter .feature-group li {
+	display: inline-block;
+	vertical-align: top;
+	list-style-type: none;
+	padding-right: 25px;
+	width: 150px;
+}
+
+.feature-container {
+	width: 100%;
+	overflow: auto;
+	margin-bottom: 10px;
+}
+
+/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
+.ui-sortable,
+.ui-draggable {
+	-ms-touch-action: none;
+}
diff --git a/wp-admin/css/less/modules/nav-menus.less b/wp-admin/css/less/modules/nav-menus.less
new file mode 100644
index 0000000..e75ab6b
--- /dev/null
+++ b/wp-admin/css/less/modules/nav-menus.less
@@ -0,0 +1,730 @@
+/* nav-menu */
+
+.no-js #message {
+	display: block;
+}
+
+#nav-menu-meta ul.outer-border {
+	.rounded(3px);
+}
+
+.accordion-section ul.category-tabs,
+.accordion-section ul.add-menu-item-tabs,
+.accordion-section ul.wp-tab-bar {
+	margin: 0;
+}
+
+.accordion-section .categorychecklist {
+	margin: 13px 0;
+}
+
+#nav-menu-meta .accordion-section-content {
+	padding: 18px 13px;
+}
+
+#nav-menu-meta .button-controls {
+	margin-bottom: 0;
+}
+
+#nav-menus-frame {
+	margin-left: 300px;
+	margin-top: 23px;
+}
+
+#wpbody-content #menu-settings-column {
+	display: inline;
+	width:281px;
+	margin-left: -300px;
+	clear: both;
+	float: left;
+	padding-top: 0;
+}
+
+#menu-settings-column .inside {
+	clear: both;
+	margin: 10px 0 0;
+}
+
+.metabox-holder-disabled .postbox,
+.metabox-holder-disabled .accordion-section-content  {
+	opacity: 0.5;
+	filter: alpha(opacity=50);
+}
+
+.metabox-holder-disabled .button-controls .select-all {
+	display: none;
+}
+
+#wpbody {
+	position: relative;
+}
+
+.blank-slate .menu-name {
+	height: 2em;
+}
+
+.blank-slate .menu-settings {
+	border: none;
+	margin-top: 0;
+	padding-top: 0;
+	overflow: hidden;
+}
+
+.is-submenu {
+	font-style: italic;
+	font-weight: normal;
+	margin-left: 4px;
+}
+
+.manage-menus {
+	margin-top: 23px;
+	padding: 10px;
+	overflow: hidden;
+	.rounded(3px);
+
+	select {
+		float: left;
+		margin-right: 6px;
+	}
+
+	.selected-menu {
+		float: left;
+		margin: 5px 6px 0 0;
+	}
+
+	.submit-btn {
+		float: left;
+		margin-top: 1px;
+	}
+}
+
+.menu-edit {
+	p {
+		margin: .3em 0 .6em;
+	}
+
+	#post-body-content h3 {
+		margin: 0 0 10px;
+	}
+
+	.checkbox-input {
+		margin-top: 4px;
+	}
+}
+
+.menu-settings {
+	margin-top: 2em;
+	overflow: hidden;
+
+	dl {
+		margin: 0 0 10px;
+		overflow: hidden;
+		position: relative;
+	}
+
+	dd {
+		float: left;
+		margin: 0;
+		width: 60%;
+	}
+}
+
+.theme-location-set {
+	font-size: 11px;
+}
+
+/* Menu Container */
+#menu-management-liquid {
+	float: left;
+	min-width: 100%;
+	margin-top: 3px;
+}
+
+#menu-management {
+	position: relative;
+	margin-right: 20px;
+	margin-top: -3px;
+	width: 100%;
+
+	.menu-edit {
+		margin-bottom: 20px;
+	}
+}
+
+.nav-menus-php #post-body {
+	padding: 0 10px 10px;
+	border-width: 1px 0;
+	border-style: solid;
+}
+
+#nav-menu-header,
+#nav-menu-footer {
+	padding: 0 10px;
+}
+
+#nav-menu-header {
+	border-bottom: 1px solid;
+	margin-bottom: 13px;
+	.menu-name-label {
+		margin-top: 2px;
+	}
+}
+
+#nav-menu-footer {
+	border-top: 1px solid;
+}
+
+.nav-menus-php #post-body div.updated,
+.nav-menus-php #post-body div.error {
+	margin: 0;
+}
+
+.nav-menus-php #post-body-content {
+	position: relative;
+	float: none;
+}
+
+#menu-management .menu-add-new abbr {
+	font-weight: bold;
+}
+
+#select-nav-menu-container {
+	text-align: right;
+	padding: 0 10px 3px 10px;
+	margin-bottom: 5px;
+}
+
+#select-nav-menu {
+	width: 100px;
+	display: inline;
+}
+
+#menu-name-label {
+	margin-top: -2px;
+}
+
+.widefat td.menu-location-menus {
+	padding-bottom: 5px;
+}
+
+.menu-location-menus select {
+	float: left;
+}
+
+#locations-nav-menu-wrapper {
+	padding: 5px 0;
+}
+
+.locations-nav-menu-select select {
+	float: left;
+	width: 160px;
+	margin-right: 5px;
+}
+
+.locations-row-links {
+	float: left;
+	margin: 6px 0 0 6px;
+}
+
+.locations-edit-menu-link,
+.locations-add-menu-link {
+	margin: 0 3px;
+}
+
+.locations-edit-menu-link {
+	padding-right: 3px;
+	border-right: 1px solid #ccc;
+}
+
+#wpbody .open-label {
+	display: block;
+	float:left;
+}
+
+#wpbody .open-label span {
+	padding-right: 10px;
+}
+
+.js .input-with-default-title {
+	font-style: italic;
+}
+
+#menu-management .inside {
+	padding: 0 10px;
+}
+
+/* Add Menu Item Boxes */
+.postbox .howto input,
+.accordion-container .howto input {
+	width: 180px;
+	float: right;
+}
+
+.accordion-container .outer-border {
+	margin: 0;
+}
+
+#nav-menu-meta .accordion-container {
+	.top {
+		border-top: 1px solid @border-color;
+	}
+
+	.accordion-section:first-child,
+	.accordion-section:first-child h3,
+	.top,
+	.top h3 {
+		.rounded-top();
+	}
+
+	.accordion-section:last-child,
+	.accordion-section:last-child .accordion-section-content,
+	.bottom,
+	.bottom:not(.open) h3 {
+		.rounded-bottom();
+	}
+}
+
+.customlinkdiv .howto input {
+	width: 180px;
+}
+
+.customlinkdiv p {
+	margin-top: 0;
+}
+
+#nav-menu-theme-locations {
+	.howto select {
+		width: 100%;
+	}
+
+	.button-controls {
+		text-align: right;
+	}
+}
+
+.add-menu-item-view-all {
+	height: 400px;
+}
+
+/* Button Primary Actions */
+#menu-container .submit {
+	margin: 0 0 10px;
+	padding: 0;
+}
+
+.nav-menus-php {
+	.add-new-menu-action {
+		float: left;
+		margin: 6px 0 0 6px;
+		line-height: 15px;
+	}
+
+	.meta-sep,
+	.submitdelete,
+	.submitcancel {
+		display: block;
+		float: left;
+		margin: 4px 0;
+		line-height: 15px;
+	}
+}
+
+.meta-sep {
+	padding: 0 2px;
+}
+
+#cancel-save {
+	text-decoration: underline;
+	font-size: 12px;
+	margin-left: 20px;
+	margin-top: 5px;
+}
+
+.button.right, .button-secondary.right, .button-primary.right {
+	float: right;
+}
+
+/* Button Secondary Actions */
+.list-controls {
+	float: left;
+	margin-top: 5px;
+}
+
+.add-to-menu {
+	float: right;
+}
+
+/* Create Menu */
+#menu-name {
+	width: 270px;
+}
+
+#manage-menu .inside {
+	padding: 0px 0px;
+}
+
+/* Custom Links */
+#available-links dt {
+	display: block;
+}
+
+#add-custom-link .howto {
+	font-size: 12px;
+}
+
+#add-custom-link label span {
+	display: block;
+	float: left;
+	margin-top: 5px;
+	padding-right: 5px;
+}
+
+.menu-item-textbox {
+	width: 180px;
+}
+
+.nav-menus-php .howto span {
+	margin-top: 4px;
+	display: block;
+	float: left;
+}
+
+/* Menu item types */
+.quick-search {
+	width: 190px;
+}
+
+.nav-menus-php {
+	.list-wrap {
+		display: none;
+		clear: both;
+		margin-bottom: 10px;
+	}
+
+	.list-container {
+		max-height: 200px;
+		overflow-y: auto;
+		padding: 10px 10px 5px;
+	}
+
+	.postbox p.submit {
+		margin-bottom: 0;
+	}
+}
+
+/* Listings */
+.nav-menus-php .list li {
+	display: none;
+	margin: 0;
+	margin-bottom: 5px;
+
+	.menu-item-title {
+		cursor: pointer;
+		display: block;
+	}
+
+	.menu-item-title input {
+		margin-right: 3px;
+		margin-top: -3px;
+	}
+}
+
+/* Nav Menu */
+#menu-container .inside {
+	padding-bottom: 10px;
+}
+
+.menu {
+	padding-top:1em;
+
+	ul {
+		width: 100%;
+	}
+
+	li {
+		margin-bottom: 0;
+		position: relative;
+	}
+}
+
+#menu-to-edit {
+	margin: 0;
+	padding: 0.1em 0;
+}
+
+
+.menu-item-bar {
+	clear:both;
+	line-height:1.5em;
+	position:relative;
+	margin: 9px 0 0;
+}
+
+.menu-item-handle {
+	border: 1px solid @border-color;
+	position: relative;
+	padding-left: 10px;
+	height: auto;
+	width: 400px;
+	line-height: 35px;
+	text-shadow: 0 1px 0 #FFFFFF;
+	overflow: hidden;
+	word-wrap: break-word;
+}
+
+#menu-to-edit .menu-item-invalid .menu-item-handle {
+	.linear-gradient(#f6c9cc, #fdf8ff);
+}
+
+.menu-item-edit-active .menu-item-handle {
+	.rounded-bottom(0);
+}
+
+.no-js .menu-item-edit-active .item-edit {
+	display: none;
+}
+
+.js .menu-item-handle {
+	cursor: move;
+}
+
+.menu li.deleting .menu-item-handle {
+	background-image: none;
+	text-shadow: 0 0 0;
+}
+
+.menu-item-handle .item-title {
+	font-size: 12px;
+	font-weight: bold;
+	padding: 7px 0;
+	line-height: 20px;
+	display: block;
+	margin-right:13em;
+}
+
+/* Sortables */
+li.menu-item.ui-sortable-helper dl {
+	margin-top: 0;
+}
+
+li.menu-item.ui-sortable-helper .menu-item-transport dl {
+	margin-top: 13px;
+}
+
+.menu .sortable-placeholder {
+	height: 35px;
+	width: 410px;
+	margin-top: 13px;
+}
+
+/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
+.menu-item-depth-0 { margin-left: 0px; }
+.menu-item-depth-1 { margin-left: 30px; }
+.menu-item-depth-2 { margin-left: 60px; }
+.menu-item-depth-3 { margin-left: 90px; }
+.menu-item-depth-4 { margin-left: 120px; }
+.menu-item-depth-5 { margin-left: 150px; }
+.menu-item-depth-6 { margin-left: 180px; }
+.menu-item-depth-7 { margin-left: 210px; }
+.menu-item-depth-8 { margin-left: 240px; }
+.menu-item-depth-9 { margin-left: 270px; }
+.menu-item-depth-10 { margin-left: 300px; }
+.menu-item-depth-11 { margin-left: 330px; }
+
+.menu-item-depth-0 .menu-item-transport { margin-left: 0px; }
+.menu-item-depth-1 .menu-item-transport { margin-left: -30px; }
+.menu-item-depth-2 .menu-item-transport { margin-left: -60px; }
+.menu-item-depth-3 .menu-item-transport { margin-left: -90px; }
+.menu-item-depth-4 .menu-item-transport { margin-left: -120px; }
+.menu-item-depth-5 .menu-item-transport { margin-left: -150px; }
+.menu-item-depth-6 .menu-item-transport { margin-left: -180px; }
+.menu-item-depth-7 .menu-item-transport { margin-left: -210px; }
+.menu-item-depth-8 .menu-item-transport { margin-left: -240px; }
+.menu-item-depth-9 .menu-item-transport { margin-left: -270px; }
+.menu-item-depth-10 .menu-item-transport { margin-left: -300px; }
+.menu-item-depth-11 .menu-item-transport { margin-left: -330px; }
+
+body.menu-max-depth-0 { min-width: 950px !important; }
+body.menu-max-depth-1 { min-width: 980px !important; }
+body.menu-max-depth-2 { min-width: 1010px !important; }
+body.menu-max-depth-3 { min-width: 1040px !important; }
+body.menu-max-depth-4 { min-width: 1070px !important; }
+body.menu-max-depth-5 { min-width: 1100px !important; }
+body.menu-max-depth-6 { min-width: 1130px !important; }
+body.menu-max-depth-7 { min-width: 1160px !important; }
+body.menu-max-depth-8 { min-width: 1190px !important; }
+body.menu-max-depth-9 { min-width: 1220px !important; }
+body.menu-max-depth-10 { min-width: 1250px !important; }
+body.menu-max-depth-11 { min-width: 1280px !important; }
+
+/* Menu item controls */
+.item-type {
+	font-size: 12px;
+	padding-right: 10px;
+}
+
+.item-controls {
+	font-size: 12px;
+	position: absolute;
+	right: 20px;
+	top: -1px;
+
+	a {
+		text-decoration: none;
+		&:hover {
+			cursor: pointer;
+		}
+	}
+
+	.item-order {
+		padding-right: 10px;
+	}
+}
+
+.nav-menus-php .item-edit {
+	position: absolute;
+	right: -20px;
+	top: 0;
+	display: block;
+	width: 30px;
+	height: 36px;
+	overflow: hidden;
+	text-indent:-999em;
+	border-bottom: 1px solid;
+	-moz-border-bottom-left-radius: 3px;
+	-webkit-border-bottom-left-radius: 3px;
+	border-bottom-left-radius: 3px;
+}
+
+/* Menu editing */
+.menu-instructions-inactive {
+	display: none;
+}
+
+.menu-item-settings {
+	display: block;
+	width: 400px;
+	padding: 10px 0 10px 10px;
+	border: solid;
+	border-width: 0 1px 1px 1px;
+	.rounded-bottom();
+
+	.field-move a {
+		display: none;
+		margin: 0 2px;
+	}
+
+	.menu-item-edit-active & {
+		display: block;
+	}
+
+	.menu-item-edit-inactive & {
+		display: none;
+	}
+
+	.description-thin,
+	.description-wide {
+		margin-right: 10px;
+		float: left;
+	}
+}
+
+.add-menu-item-pagelinks {
+	margin: .5em auto;
+	text-align: center;
+}
+
+.link-to-original {
+	display: block;
+	margin: 0 0 10px;
+	padding: 3px 5px 5px;
+	font-size: 12px;
+	font-style: italic;
+
+	a {
+		padding-left: 4px;
+		font-style: normal;
+	}
+}
+
+.hidden-field {
+	display: none;
+}
+
+.description-thin {
+	width: 190px;
+	height: 40px;
+}
+
+.description-wide {
+	width: 390px;
+}
+
+.menu-item-actions {
+	padding-top: 15px;
+}
+
+#cancel-save {
+	cursor: pointer;
+}
+
+/* Major/minor publishing actions (classes) */
+.nav-menus-php {
+	.major-publishing-actions {
+		clear: both;
+		padding: 3px 0 5px;
+
+		.publishing-action {
+			text-align: right;
+			float: right;
+			line-height: 23px;
+			margin: 2px 0 1px;
+		}	
+
+		.form-invalid {
+			padding-left: 4px;
+			margin-left: -4px;
+			border: 0 none;
+		}
+	}
+
+	.blank-slate .menu-settings {
+		display: none;
+	}
+
+	.delete-action {
+		float: left;
+		margin-top: 2px;
+	}
+
+	.submitbox .submitcancel {
+		border-bottom: 1px solid;
+		padding: 1px 2px;
+		text-decoration: none;
+	}
+}
+
+
+/* Clearfix */
+#menu-item-name-wrap:after,
+#menu-item-url-wrap:after,
+#menu-name-label:after,
+#menu-settings-column .inside:after,
+#nav-menus-frame:after,
+.nav-menus-php #post-body-content:after,
+.nav-menus-php .button-controls:after,
+.nav-menus-php .major-publishing-actions:after,
+.nav-menus-php .menu-item-settings:after {
+	clear: both;
+	content: ".";
+	display: block;
+	height: 0;
+	visibility: hidden;
+}
+
+#nav-menus-frame,
+.button-controls,
+#menu-item-url-wrap,
+#menu-item-name-wrap {
+	display: block;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/navigation.less b/wp-admin/css/less/modules/navigation.less
new file mode 100644
index 0000000..00e4e10
--- /dev/null
+++ b/wp-admin/css/less/modules/navigation.less
@@ -0,0 +1,517 @@
+/*------------------------------------------------------------------------------
+  7.0 - Main Navigation (Left Menu)
+------------------------------------------------------------------------------*/
+
+#adminmenuback,
+#adminmenuwrap {
+	border-width: 0 1px 0 0;
+	border-style: solid;
+}
+
+#adminmenuwrap {
+	position: relative;
+	float: left;
+}
+
+#adminmenushadow {
+	position: absolute;
+	top: 0;
+	right: 0;
+	bottom: 0;
+	width: 6px;
+	z-index: 20;
+}
+
+/* side admin menu */
+#adminmenu {
+
+	* {
+		.no-user-select();
+	}
+
+	li {
+		margin: 0;
+		padding: 0;
+		cursor: pointer;
+	}
+
+	a {
+		display: block;
+		line-height: 18px;
+		padding: 2px 5px;
+	}
+
+	li.menu-top {
+		min-height: 28px;
+		position: relative;
+	}
+
+	.wp-submenu {
+		list-style: none;
+		padding: 4px 0;
+		margin: 0;
+		position: absolute;
+		top: -1000em;
+		left: 146px;
+		z-index: 1000;
+		overflow: visible;
+		border-width: 1px;
+		border-style: solid;
+		.rounded-right();
+	}
+
+	.js & .sub-open,
+	.js & .opensub .wp-submenu,
+	a.menu-top:focus + .wp-submenu,
+	.no-js & li.wp-has-submenu:hover .wp-submenu {
+		top: -1px;
+	}
+
+	.wp-has-current-submenu .wp-submenu,
+	.no-js & li.wp-has-current-submenu:hover .wp-submenu,
+	a.wp-has-current-submenu:focus + .wp-submenu,
+	.wp-has-current-submenu .wp-submenu.sub-open,
+	.wp-has-current-submenu.opensub .wp-submenu {
+		position: relative;
+		z-index: 3;
+		top: auto;
+		left: auto;
+		right: auto;
+		bottom: auto;
+		border: 0 none;
+
+		.no-box-shadows();
+	}
+
+	.folded & .wp-submenu.sub-open,
+	.folded & .opensub .wp-submenu,
+	.folded & .wp-has-current-submenu .wp-submenu.sub-open,
+	.folded & .wp-has-current-submenu.opensub .wp-submenu,
+	.folded & a.menu-top:focus + .wp-submenu,
+	.folded & .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
+	.no-js.folded & .wp-has-submenu:hover .wp-submenu  {
+		top: -1px;
+		left: 32px;
+	}
+
+	.folded & a.wp-has-current-submenu:focus + .wp-submenu,
+	.folded & .wp-has-current-submenu .wp-submenu {
+		border-width: 1px;
+		border-style: solid;
+		position: absolute;
+		top: -1000em;
+	}
+
+	.wp-submenu a {
+		font-size: 12px;
+		line-height: 18px;
+		margin: 0;
+		padding-left: 12px;
+	}
+
+	.wp-not-current-submenu li > a {
+		padding-left: 16px;
+	}
+
+	.wp-has-current-submenu ul > li > a,
+	.folded & li.menu-top .wp-submenu > li > a {
+		padding-left: 12px;
+	}
+
+	a.menu-top,
+	.wp-submenu-head {
+		.bold-font(13px, 18px);
+		padding: 0;
+	}
+
+	.wp-submenu-head,
+	.folded & .wp-menu-name {
+		display: none;
+	}
+
+	.folded & .wp-submenu-head {
+		display: block;
+	}
+
+	.wp-submenu li {
+		padding: 0;
+		margin: 0;
+		overflow: hidden;
+	}
+
+	a.menu-top {
+		border-width: 1px 0;
+		border-style: solid none;
+	}
+
+	.wp-menu-image img {
+		padding: 7px 0 0 7px;
+		opacity: 0.6;
+		filter: alpha(opacity=60);
+	}
+
+	div.wp-menu-name {
+		padding: 5px;
+	}
+
+	div.wp-menu-image {
+		float: left;
+		width: 28px;
+		height: 28px;
+	}
+
+	.folded & div.wp-menu-image {
+		width: 32px;
+		position: absolute;
+		z-index: 25;
+	}
+
+	.folded & a.menu-top {
+		height: 28px;
+	}
+
+	.wp-menu-arrow div {
+		display: none;
+		position: absolute;
+		top: 7px;
+		left: -1px;
+		width: 14px;
+		height: 15px;
+
+		-moz-transform:    matrix( -0.6, 1, 0.6, 1, 0, 0 );
+		-webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
+		-o-transform:      matrix( -0.6, 1, 0.6, 1, 0, 0 );
+		-ms-transform:     matrix( -0.6, 1, 0.6, 1, 0, 0 );
+		transform:         matrix( -0.6, 1, 0.6, 1, 0, 0 );
+	}
+
+	li.wp-not-current-submenu .wp-menu-arrow {
+		-moz-transform:    translate( 145px );
+		-webkit-transform: translate( 145px );
+		-o-transform:      translate( 145px );
+		-ms-transform:     translate( 145px );
+		transform:         translate( 145px );
+		height: 28px;
+		border-width: 1px 0;
+		border-style: solid;
+		top: 0;
+	}
+
+	.folded & li .wp-menu-arrow {
+		-moz-transform:    translate( 32px );
+		-webkit-transform: translate( 32px );
+		-o-transform:      translate( 32px );
+		-ms-transform:     translate( 32px );
+		transform:         translate( 32px );
+	}
+
+	li.current .wp-menu-arrow,
+	li.wp-has-current-submenu .wp-menu-arrow,
+	li.wp-has-current-submenu .wp-menu-arrow div,
+	li.wp-has-submenu .wp-menu-arrow div,
+	li.current .wp-menu-arrow div,
+	.no-js & li.wp-has-submenu:hover .wp-menu-arrow,
+	li.wp-has-submenu.opensub .wp-menu-arrow,
+	a.wp-has-submenu:focus .wp-menu-arrow,
+	a:hover .wp-menu-arrow {
+		display: block;
+	}
+
+	li.current .wp-menu-arrow,
+	li.wp-menu-open .wp-menu-arrow {
+		top: 0;
+	}
+
+	.no-js & li.wp-has-submenu:hover .wp-menu-arrow,
+	li.wp-has-submenu.opensub .wp-menu-arrow,
+	a.wp-has-submenu:focus .wp-menu-arrow {
+		z-index: 1001;
+	}
+
+	.ie8 & li.menu-top:hover .wp-menu-arrow {
+		display: none;
+	}
+
+	.wp-not-current-submenu .wp-menu-arrow div {
+		width: 15px;
+		top: 6px;
+		border-width: 0 0 1px 1px;
+		border-style: solid;
+	}
+
+	.wp-menu-arrow,
+	.folded & li .wp-menu-arrow div,
+	.no-js & li.wp-not-current-submenu:hover .wp-menu-arrow {
+		display: none;
+	}
+
+	.folded & li.current .wp-menu-arrow,
+	.folded & li.current .wp-menu-arrow div,
+	.folded & li.wp-has-current-submenu .wp-menu-arrow div,
+	.folded & li.wp-menu-open .wp-menu-arrow,
+	.folded & li a:focus .wp-menu-arrow {
+		display: block;
+	}
+
+	li.menu-top:hover .wp-menu-image img,
+	li.wp-has-current-submenu .wp-menu-image img {
+		opacity: 1;
+		filter: alpha(opacity=100);
+	}
+
+	li.wp-menu-separator {
+		height: 3px;
+		padding: 0;
+		margin: 0;
+		border-width: 1px 0;
+		border-style: solid;
+		cursor: inherit;
+	}
+
+	div.separator {
+		height: 1px;
+		padding: 0;
+		border-width: 1px 0 0 0;
+		border-style: solid;
+	}
+
+	.wp-submenu .wp-submenu-head {
+		padding: 5px 4px 5px 10px;
+		margin: -4px -1px 4px;
+		border-width: 1px 0;
+		border-style: solid;
+		-moz-border-top-right-radius: 3px;
+		-webkit-border-top-right-radius: 3px;
+		border-top-right-radius: 3px;
+	}
+
+	li.wp-menu-open {
+		border-width: 0 0 1px;
+		border-style: solid;
+	}
+
+	li.current,
+	.folded & li.wp-menu-open {
+		border: 0 none;
+	}
+
+	.folded & li.wp-has-current-submenu {
+		margin-bottom: 1px;
+	}
+
+	.folded & .wp-has-current-submenu.menu-top-last {
+		margin-bottom: 0;
+	}
+}
+
+.wp-menu-arrow {
+	z-index: 25;
+	position: absolute;
+	right: 100%;
+	margin: 0;
+	height: 30px;
+	width: 6px;
+
+	-moz-transform:    translate( 146px );
+	-webkit-transform: translate( 146px );
+	-o-transform:      translate( 146px );
+	-ms-transform:     translate( 146px );
+	transform:         translate( 146px );
+}
+
+#adminmenu .awaiting-mod,
+#adminmenu span.update-plugins,
+#sidemenu li a span.update-plugins {
+	position: absolute;
+	font-family: sans-serif;
+	.bold-font(9px, 17px);
+	margin-top: 1px;
+	margin-left: 7px;
+	.rounded(10px);
+	z-index: 26;
+}
+
+#adminmenu li .awaiting-mod span,
+#adminmenu li span.update-plugins span,
+#sidemenu li a span.update-plugins span {
+	display: block;
+	padding: 0 6px;
+}
+
+#adminmenu li span.count-0,
+#sidemenu li a .count-0 {
+	display: none;
+}
+
+#collapse-menu {
+	font-size: 12px;
+	line-height: 34px;
+	border-width: 1px 0 0;
+	border-style: solid;
+}
+
+.folded #collapse-menu span {
+	display: none;
+}
+
+#collapse-button,
+#collapse-button div {
+	width: 15px;
+	height: 15px;
+}
+
+#collapse-button {
+	float: left;
+	margin: 8px 6px;
+	border-width: 1px;
+	border-style: solid;
+	.rounded(10px);
+}
+
+/* Auto-folding of the admin menu */
+@media only screen and (max-width: 900px) {
+	.auto-fold #wpcontent,
+	.auto-fold #wpfooter {
+		margin-left: 52px;
+	}
+
+	.auto-fold #adminmenuback,
+	.auto-fold #adminmenuwrap,
+	.auto-fold #adminmenu,
+	.auto-fold #adminmenu li.menu-top {
+		width: 32px;
+	}
+
+	.auto-fold #adminmenu .wp-submenu.sub-open,
+	.auto-fold #adminmenu .opensub .wp-submenu,
+	.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+	.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
+	.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
+	.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu  {
+		top: -1px;
+		left: 32px;
+	}
+
+	.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+	.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
+		border-width: 1px;
+		border-style: solid;
+		position: absolute;
+		top: -1000em;
+	}
+
+	.auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
+		padding-left: 12px;
+	}
+
+	.auto-fold #adminmenu .wp-menu-name {
+		display: none;
+	}
+
+	.auto-fold #adminmenu .wp-submenu-head {
+		display: block;
+	}
+
+	.auto-fold #adminmenu div.wp-menu-image {
+		width: 32px;
+		position: absolute;
+		z-index: 25;
+	}
+
+	.auto-fold #adminmenu a.menu-top {
+		height: 28px;
+	}
+
+	.auto-fold #adminmenu li .wp-menu-arrow {
+		-moz-transform:    translate( 32px );
+		-webkit-transform: translate( 32px );
+		-o-transform:      translate( 32px );
+		-ms-transform:     translate( 32px );
+		transform:         translate( 32px );
+	}
+
+	.auto-fold #adminmenu li .wp-menu-arrow div {
+		display: none;
+	}
+
+	.auto-fold #adminmenu li.current .wp-menu-arrow,
+	.auto-fold #adminmenu li.current .wp-menu-arrow div,
+	.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
+	.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,
+	.auto-fold #adminmenu li a:focus .wp-menu-arrow {
+		display: block;
+	}
+
+	.auto-fold #adminmenu li.wp-menu-open {
+		border: 0 none;
+	}
+
+	.auto-fold #adminmenu li.wp-has-current-submenu {
+		margin-bottom: 1px;
+	}
+
+	.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
+		margin-bottom: 0;
+	}
+
+	.auto-fold #collapse-menu span {
+		display: none;
+	}
+
+}
+
+/* List table styles */
+.post-com-count-wrapper {
+	min-width: 22px;
+	font-family: sans-serif;
+}
+
+.post-com-count {
+	background-image: url('../images/bubble_bg.gif');
+	height: 1.3em;
+	line-height: 1.1em;
+	display: block;
+	text-decoration: none;
+	padding: 0 0 6px;
+	cursor: pointer;
+	background-position: center -80px;
+	background-repeat: no-repeat;
+
+	span {
+		.bold-font(11px, 1.4em);
+		height: 1.4em;
+		min-width: 0.7em;
+		padding: 0 6px;
+		display: inline-block;
+		.rounded(5px);
+	}
+
+	strong & {
+		background-position: center -55px;
+	}
+
+	&:hover {
+		background-position: center -3px;
+	}
+
+	.column-response & {
+		float: left;
+		margin-right: 5px;
+		text-align: center;
+	}
+}
+
+.response-links {
+	float: left;
+}
+
+#the-comment-list .attachment-80x60 {
+	padding: 4px 8px;
+}
+
+th .comment-grey-bubble {
+	background-image: url('../images/comment-grey-bubble.png');
+	background-repeat: no-repeat;
+	height: 12px;
+	width: 12px;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/notifications.less b/wp-admin/css/less/modules/notifications.less
new file mode 100644
index 0000000..485a792
--- /dev/null
+++ b/wp-admin/css/less/modules/notifications.less
@@ -0,0 +1,55 @@
+/*------------------------------------------------------------------------------
+  4.0 - Notifications
+------------------------------------------------------------------------------*/
+
+#update-nag,
+.update-nag {
+	line-height: 19px;
+	padding: 5px 0;
+	font-size: 12px;
+	text-align: center;
+	margin: -1px 15px 0 5px;
+	border-width: 1px;
+	border-style: solid;
+	.rounded-bottom();
+}
+
+.plugins .plugin-update {
+	padding: 0;
+}
+
+.plugin-update .update-message {
+	margin: 0 10px 8px 31px;
+	font-weight: bold;
+}
+
+ul#dismissed-updates {
+	display: none;
+}
+
+form.upgrade {
+	margin-top: 8px;
+}
+
+form.upgrade .hint {
+	font-style: italic;
+	font-size: 85%;
+	margin: -0.5em 0 2em 0;
+}
+
+.update-php .spinner {
+	float: none;
+	margin: -4px 0;
+}
+
+#ajax-loading,
+.ajax-loading,
+.ajax-feedback,
+.imgedit-wait-spin,
+.list-ajax-loading { /* deprecated */
+	visibility: hidden;
+}
+
+#ajax-response.alignleft {
+	margin-left: 2em;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/plugins.less b/wp-admin/css/less/modules/plugins.less
new file mode 100644
index 0000000..e7b826d
--- /dev/null
+++ b/wp-admin/css/less/modules/plugins.less
@@ -0,0 +1,100 @@
+/*------------------------------------------------------------------------------
+  17.0 - Plugins
+------------------------------------------------------------------------------*/
+
+#dashboard_right_now .versions .b,
+#post-status-display,
+#post-visibility-display,
+#adminmenu .wp-submenu li.current,
+#adminmenu .wp-submenu li.current a,
+#adminmenu .wp-submenu li.current a:hover,
+.media-item .percent,
+.plugins .name,
+#pass-strength-result.strong,
+#pass-strength-result.short,
+#ed_reply_toolbar #ed_reply_strong,
+.item-controls .item-order a,
+.feature-filter .feature-name {
+	font-weight: bold;
+}
+
+.plugins {
+	p {
+		margin: 0 4px;
+		padding: 0;
+
+		.desc & {
+			margin: 0 0 8px;
+		}
+	}
+
+	td.desc {
+		line-height: 1.5em;
+	}
+
+	.desc ul,
+	.desc ol {
+		margin: 0 0 0 2em;
+	}
+
+	.desc ul {
+		list-style-type: disc;
+	}
+
+	.row-actions-visible {
+		padding: 0;
+	}
+
+	tbody th.check-column {
+		padding: 7px 0;
+	}
+
+	.inactive td,
+	.inactive th,
+	.active td,
+	.active th {
+		border-top-style: solid;
+		border-top-width: 1px;
+		padding: 5px 7px 0;
+	}
+
+	.update th,
+	.update td {
+		border-bottom: 0;
+	}
+
+	#wpbody-content & .plugin-title,
+	#wpbody-content & .theme-title {
+		padding-right: 12px;
+		white-space: nowrap;
+	}
+
+	.second,
+	.row-actions-visible {
+		padding: 0 0 5px;
+	}
+
+	.update .second,
+	.update .row-actions-visible {
+		padding-bottom: 0;
+	}
+}
+
+.plugin-update-tr td {
+	border-top: 0;
+}
+
+.plugins-php .widefat tfoot th,
+.plugins-php .widefat tfoot td {
+	border-top-style: solid;
+	border-top-width: 1px;
+}
+
+.plugin-update-tr .update-message {
+	margin: 5px;
+	padding: 3px 5px;
+}
+
+.plugin-install-php h4 {
+	margin: 2.5em 0 8px;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/press-this.less b/wp-admin/css/less/modules/press-this.less
new file mode 100644
index 0000000..b105735
--- /dev/null
+++ b/wp-admin/css/less/modules/press-this.less
@@ -0,0 +1,227 @@
+.pressthis {
+	margin: 20px 0;
+
+	a,
+	a:hover,
+	a:focus,
+	a:active {
+		display: inline-block;
+		position: relative;
+		cursor: move;
+		color: #333;
+		.linear-gradient(#e6e6e6, 7%, #d8d8d8, 77%);
+		.rounded(5px);
+		border: 1px solid #b4b4b4;
+		font-style: normal;
+		line-height: 16px;
+		font-size: 14px;
+		text-decoration: none;
+		text-shadow: 0 1px 0px #fff;
+	}
+
+	a:active {
+		outline: none;
+	}
+
+	a:hover:after {
+		-webkit-transform: skew(20deg) rotate(9deg);
+		-moz-transform: skew(20deg) rotate(9deg);
+		transform: skew(20deg) rotate(9deg);
+		-moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+		-webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+		box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+	}
+
+	a span {
+		background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;
+		background-size: 24px 20px;
+		padding: 8px 11px 8px 27px;
+		margin: 0 5px;
+		display: inline-block;
+	}
+
+	a:after {
+		content: '';
+		width: 70%;
+		height: 55%;
+		z-index: -1;
+		position: absolute;
+		right: 10px;
+		bottom: 9px;
+		background: transparent;
+
+		-webkit-transform: skew(20deg) rotate(6deg);
+		-moz-transform: skew(20deg) rotate(6deg);
+		transform: skew(20deg) rotate(6deg);
+		-webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+		box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+	}
+
+	/* Header */
+	#wphead {
+		height: 32px;
+		margin-left: 0;
+		margin-right: 0;
+		margin-bottom: 5px;
+
+		h1 {
+			.normal-font(16px, 32px);
+			margin: 0;
+			float: left;
+		
+			a {
+				text-decoration: none;
+
+				&:hover {
+					text-decoration: underline;
+				}
+			}
+		}
+	}
+
+	#header-logo {
+		float: left;
+		margin: 7px 7px 0;
+		.no-user-select();
+	}
+
+	#message {
+		margin: 10px 0;
+	}
+
+	#title {
+		margin-left: 0;
+		margin-right: 0;
+		.border-box();
+	}
+
+	.tagchecklist span a {
+		background: transparent url(../images/xit.gif) no-repeat 0 0;
+	}
+
+	#titlediv {
+		margin: 0;
+	}
+
+	.wp-media-buttons {
+		cursor: default;
+		padding: 8px 8px 0;
+	}
+
+	.howto {
+		margin-top: 2px;
+		margin-bottom: 3px;
+		font-size: 12px;
+		font-style: italic;
+		display: block;
+	}
+
+	/* Editor/Main Column */
+	#poststuff {
+		margin: 0 10px 10px;
+		padding: 0;
+	}
+
+	#photo-add-url-div input[type="text"] {
+		width: 220px;
+	}
+
+	.inner-sidebar {
+		width: 200px;
+	
+		.sleeve {
+			padding-top: 5px;
+		}
+	}
+
+	#submitdiv p {
+		margin: 0;
+		padding: 6px;
+	}
+
+	#submitdiv #publishing-actions {
+		border-bottom: 1px solid @border-color;
+	}
+
+	#publish {
+		float: right;
+	}
+
+	#poststuff h2,
+	#poststuff h3 {
+		font-size: 14px;
+		line-height: 1;
+	}
+
+	#tagsdiv-post_tag h3,
+	#categorydiv h3 {
+		cursor: pointer;
+	}
+
+	#submitdiv h3 {
+		cursor: default;
+	}
+
+	.postbox,
+	.stuffbox {
+		margin-bottom: 10px;
+		min-width: 0;
+	}
+
+	.actions {
+		float: right;
+		margin: -19px 0 0;
+	
+		#extra-fields & {
+			margin: -32px -7px 0 0;
+		}
+	
+		li {
+			float: left;
+			list-style: none;
+			margin-right: 10px;
+		}
+	}
+
+	/* Categories */
+	.categorydiv div.tabs-panel {
+		height: 100px;
+	}
+
+	/* Tags */
+	.tagsdiv .newtag {
+		width: 120px;
+	}
+
+	#content {
+		margin: 5px 0;
+		padding: 0 5px;
+		border: 0 none;
+		height: 345px;
+		font-family: Consolas, Monaco, monospace;
+		font-size: 13px;
+		line-height: 19px;
+		background: transparent;
+	}
+
+	/* Submit */
+	#publishing-actions .spinner {
+		display: inline;
+		vertical-align: middle;
+	}
+}
+
+/* press-this */
+body.press-this {
+	color: #333;
+	margin: 0;
+	padding: 0;
+	min-width: 675px;
+	min-height: 400px;
+}
+
+.press-this-sidebar {
+	float: right;
+	width: 200px;
+	padding-top: 10px;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/settings.less b/wp-admin/css/less/modules/settings.less
new file mode 100644
index 0000000..61893d7
--- /dev/null
+++ b/wp-admin/css/less/modules/settings.less
@@ -0,0 +1,19 @@
+/*------------------------------------------------------------------------------
+  20.0 - Settings
+------------------------------------------------------------------------------*/
+
+#utc-time, #local-time {
+	padding-left: 25px;
+	font-style: italic;
+	font-family: sans-serif;
+}
+
+.defaultavatarpicker .avatar {
+	margin: 2px 0;
+	vertical-align: middle;
+}
+
+.options-general-php .spinner {
+	float: none;
+	margin: -3px 3px;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/tags.less b/wp-admin/css/less/modules/tags.less
new file mode 100644
index 0000000..1f9407c
--- /dev/null
+++ b/wp-admin/css/less/modules/tags.less
@@ -0,0 +1,120 @@
+/*------------------------------------------------------------------------------
+  13.0 - Tags
+------------------------------------------------------------------------------*/
+
+#poststuff .taghint {
+	color: #aaa;
+	margin: 15px 0 -24px 12px;
+}
+
+
+.ajaxtag .newtag {
+	position: relative;
+}
+
+.tagsdiv {
+	.newtag {
+		width: 180px;
+	}
+
+	.the-tags {
+		display: block;
+		height: 60px;
+		margin: 0 auto;
+		overflow: auto;
+		width: 260px;
+
+		#post-body-content & {
+			margin: 0 5px;
+		}
+	}
+
+	#poststuff & .howto {
+		margin: 0 0 6px 8px;
+	}
+}
+
+p.popular-tags {
+	.rounded(8px);
+	border-width: 1px;
+	border-style: solid;
+	line-height: 2em;
+	max-width: 1000px;
+	padding: 8px 12px 12px;
+	text-align: justify;
+
+	a {
+		padding: 0 3px;
+	}
+}
+
+.tagcloud {
+	width: 97%;
+	margin: 0 0 40px;
+	text-align: justify;
+
+	h3 {
+		margin: 2px 0 12px;
+	}
+}
+
+.ac_results {
+	padding: 0;
+	margin: 0;
+	list-style: none;
+	position: absolute;
+	z-index: 10000;
+	display: none;
+	border-width: 1px;
+	border-style: solid;
+
+	li {
+		padding: 2px 5px;
+		white-space: nowrap;
+		text-align: left;
+	}
+}
+
+.ac_over {
+	cursor: pointer;
+}
+
+.ac_match {
+	text-decoration: underline;
+}
+
+/* links tables */
+table.links-table {
+	width: 100%;
+}
+
+.links-table {
+	th {
+		font-weight: normal;
+		text-align: left;
+		vertical-align: top;
+		min-width: 80px;
+		width: 20%;
+		word-wrap: break-word;
+	}
+
+	th,
+	td {
+		padding: 5px 0;
+	}
+
+	td {
+		label {
+			margin-right: 8px;
+		}
+
+		input[type="text"],
+		textarea {
+			width: 100%;
+		}
+	}
+
+	#link_rel {
+		max-width: 280px;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/text.less b/wp-admin/css/less/modules/text.less
new file mode 100644
index 0000000..6182848
--- /dev/null
+++ b/wp-admin/css/less/modules/text.less
@@ -0,0 +1,71 @@
+div.sidebar-name h3,
+#menu-management .nav-tab,
+#dashboard_plugins h5,
+a.rsswidget,
+#dashboard_right_now td.b,
+#dashboard-widgets h4,
+.tool-box .title,
+#poststuff h3,
+.metabox-holder h3,
+.pressthis a,
+#your-profile legend,
+.inline-edit-row fieldset span.title,
+.inline-edit-row fieldset span.checkbox-title,
+.tablenav .displaying-num,
+.widefat th,
+.quicktags,
+.search {
+	.serif-font();
+}
+
+h2 .nav-tab,
+.wrap h2,
+.subtitle,
+.login form .input {
+	.sans-serif-font();
+}
+
+.quicktags,
+.search {
+	font-size: 12px;
+}
+
+.icon32 {
+	float: left;
+	height: 34px;
+	margin: 7px 8px 0 0;
+	width: 36px;
+}
+
+.icon16 {
+	height: 18px;
+	width: 18px;
+	padding: 6px 6px;
+	margin: -6px 0 0 -8px;
+	float: left;
+}
+
+.key-labels label {
+	line-height: 24px;
+}
+
+.pre {
+	/* https://developer.mozilla.org/en-US/docs/CSS/white-space */
+	white-space: pre-wrap; /* css-3 */
+	word-wrap: break-word; /* IE 5.5 - 7 */
+}
+
+.howto {
+	font-style: italic;
+	display: block;
+	font-family: sans-serif;
+}
+
+p.install-help {
+	margin: 8px 0;
+	font-style: italic;
+}
+
+.no-break {
+	white-space: nowrap;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/themes.less b/wp-admin/css/less/modules/themes.less
new file mode 100644
index 0000000..5206de1
--- /dev/null
+++ b/wp-admin/css/less/modules/themes.less
@@ -0,0 +1,375 @@
+/*------------------------------------------------------------------------------
+  16.0 - Themes
+------------------------------------------------------------------------------*/
+
+.theme-install-php {
+	.tablenav {
+		height: auto;
+	}
+
+	.spinner {
+		margin-top: 9px;
+	}
+}
+
+h3.available-themes {
+	margin: 0.3em 0 1em;
+	float: left;
+}
+
+.available-theme {
+	display: inline-block;
+	margin-right: 10px;
+	overflow: hidden;
+	padding: 20px 20px 20px 0;
+	vertical-align: top;
+	width: 300px;
+
+	.screenshot {
+		width: 300px;
+		height: 225px;
+		display: block;
+		border-width: 1px;
+		border-style: solid;
+		margin-bottom: 10px;
+		overflow: hidden;
+	}
+
+	img {
+		width: 300px;
+	}
+
+	h3 {
+		margin: 15px 0 0;
+	}
+
+	.theme-author {
+		line-height: 18px;
+	}
+
+	.action-links {
+		margin-top: 10px;
+		overflow: hidden;
+	}
+
+	a.screenshot:focus {
+		border-color: #777;
+	}
+}
+
+#current-theme .theme-info li,
+.theme-options li,
+.available-theme .action-links li {
+	float: left;
+	padding-right: 10px;
+	margin-right: 10px;
+	border-right: 1px solid @border-color;
+
+	&:last-child {
+		padding-right: 0;
+		margin-right: 0;
+		border-right: 0;
+	}
+}
+
+.available-theme .action-links {
+	li {
+		padding-right: 8px;
+		margin-right: 8px;
+
+		.ie8 & {
+			padding-right: 7px;
+			margin-right: 7px;
+		}
+	}
+
+	.delete-theme {
+		float: right;
+		margin-left: 8px;
+		margin-right: 0;
+
+		a {
+			color: red;
+			padding: 2px;
+
+			&:hover {
+				background: red;
+				color: white;
+				text-decoration: none;
+			}
+		}
+	}
+
+	p {
+		float: left;
+	}
+}
+
+#current-theme {
+	margin: 20px 0 10px;
+	padding: 0 0 20px;
+	border-bottom-width: 1px;
+	border-bottom-style: solid;
+	overflow: hidden;
+
+	&.has-screenshot {
+		padding-left: 330px;
+	}
+
+	h3 {
+		margin: 0;
+		font-size: 12px;
+		font-weight: normal;
+		color: #999;
+	}
+
+	h4 {
+		margin: 3px 0 16px;
+		font-size: 20px;
+	}
+
+	h4 span {
+		margin-left: 20px;
+		font-size: 12px;
+		font-weight: normal;
+	}
+
+	a {
+		border-bottom: none;
+	}
+
+	.theme-info {
+		margin: 1em 0;
+		overflow: hidden;
+	}
+
+	.theme-description {
+		margin-top: 5px;
+		max-width: 600px;
+		line-height: 1.6em;
+	}
+
+	img {
+		float: left;
+		width: 300px;
+		margin-left: -330px;
+
+		border-width: 1px;
+		border-style: solid;
+	}
+}
+
+.theme-options {
+	overflow: hidden;
+	font-size: 14px;
+	padding-bottom: 10px;
+
+	.load-customize {
+		margin-right: 30px;
+		float: left;
+	}
+
+	span {
+		float: left;
+		margin-right: 10px;
+		text-transform: uppercase;
+		font-size: 11px;
+		line-height: 18px;
+		color: #999;
+	}
+
+	ul {
+		float: left;
+		margin: 0;
+	}
+}
+
+/* Allow for three-up in small windows when sidebar is collapsed */
+@media only screen and (max-width: 1200px) {
+	.folded {
+		.available-theme,
+		.available-theme .screenshot {
+			width: 300px;
+		}
+
+		.available-theme .screenshot {
+			height: 225px;
+		}
+
+		#current-theme {
+			img {
+				width: 300px;
+				margin-left: -330px;
+			}
+
+			&.has-screenshot {
+				padding-left: 330px;
+			}
+		}
+	}
+}
+
+/* Adjust three-up display in smaller windows when sidebar is collapsed */
+@media only screen and (max-width: 1079px) {
+	.folded {
+		.available-theme,
+		.available-theme .screenshot {
+			width: 270px;
+		}
+
+		.available-theme .screenshot {
+			height: 203px;
+		}
+
+		#current-theme {
+			img {
+				width: 270px;
+				margin-left: -300px;
+			}
+
+			&.has-screenshot {
+				padding-left: 300px;
+			}
+		}
+	}
+}
+
+/* Allow for three-up on 1024px wide screens, e.g. tablets */
+@media only screen and (max-width: 1200px) {
+	.available-theme,
+	.available-theme .screenshot,
+	#current-theme img {
+		width: 240px;
+	}
+
+	.available-theme {
+		.screenshot {
+			height: 180px;
+		}
+
+		img {
+			width: 100%;
+		}
+	}
+
+	#current-theme {
+		&.has-screenshot {
+			padding-left: 270px;
+		}
+
+		img {
+			margin-left: -270px;
+		}
+	}
+}
+
+#post-body ul.add-menu-item-tabs li.tabs a,
+#TB_window #TB_title a.tb-theme-preview-link,
+#TB_window #TB_title a.tb-theme-preview-link:visited {
+	font-weight: bold;
+	text-decoration: none;
+}
+
+#TB_window #TB_title {
+	background-color: #222;
+	color: #cfcfcf;
+}
+
+#broken-themes {
+	text-align: left;
+	width: 50%;
+	border-spacing: 3px;
+	padding: 3px;
+}
+
+.theme-install-php h4 {
+	margin: 2.5em 0 8px;
+}
+
+/*------------------------------------------------------------------------------
+  16.1 - Custom Header Screen
+------------------------------------------------------------------------------*/
+
+.appearance_page_custom-header {
+	#headimg {
+		border: 1px solid @border-color;
+		overflow: hidden;
+		width: 100%;
+	}
+
+	#upload-form p label {
+		font-size: 12px;
+	}
+
+	.available-headers .default-header {
+		float: left;
+		margin: 0 20px 20px 0;
+	}
+
+	.random-header {
+		clear: both;
+		margin: 0 20px 20px 0;
+		vertical-align: middle;
+	}
+
+	.available-headers label input,
+	.random-header label input {
+		margin-right: 10px;
+	}
+
+	.available-headers label img {
+		vertical-align: middle;
+	}
+}
+
+
+/*------------------------------------------------------------------------------
+  16.2 - Custom Background Screen
+------------------------------------------------------------------------------*/
+
+div#custom-background-image {
+	min-height: 100px;
+	border: 1px solid @border-color;
+
+	img {
+		max-width: 400px;
+		max-height: 300px;
+	}
+}
+
+
+/*------------------------------------------------------------------------------
+  16.3 - Tabbed Admin Screen Interface (Experimental)
+------------------------------------------------------------------------------*/
+
+.nav-tab {
+	border-style: solid;
+	border-width: 1px 1px 0;
+	color: #aaa;
+	text-shadow: #fff 0 1px 0;
+	font-size: 12px;
+	line-height: 16px;
+	display: inline-block;
+	padding: 4px 14px 6px;
+	text-decoration: none;
+	margin: 0 6px -1px 0;
+	.rounded-top();
+
+	h2 & {
+		padding: 4px 10px 6px;
+		font-weight: 200;
+		font-size: 20px;
+		line-height: 24px;
+	}
+}
+
+.nav-tab-active {
+	border-width: 1px;
+	color: #464646;
+}
+
+h2.nav-tab-wrapper, h3.nav-tab-wrapper {
+	border-bottom-width: 1px;
+	border-bottom-style: solid;
+	padding-bottom: 0;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/users.less b/wp-admin/css/less/modules/users.less
new file mode 100644
index 0000000..08a960d
--- /dev/null
+++ b/wp-admin/css/less/modules/users.less
@@ -0,0 +1,34 @@
+/*------------------------------------------------------------------------------
+  18.0 - Users
+------------------------------------------------------------------------------*/
+
+#profile-page {
+	.form-table {
+		textarea {
+			width: 500px;
+			margin-bottom: 6px;
+		}
+
+		#rich_editing {
+			margin-right: 5px;
+		}
+	}
+}
+
+#your-profile {
+	legend {
+		font-size: 22px;
+	}
+
+	#rich_editing {
+		border: none;
+	}
+}
+
+#display_name {
+	width: 15em;
+}
+
+#createuser .form-field input {
+	width: 25em;
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/modules/widgets.less b/wp-admin/css/less/modules/widgets.less
new file mode 100644
index 0000000..83cd534
--- /dev/null
+++ b/wp-admin/css/less/modules/widgets.less
@@ -0,0 +1,336 @@
+/* widgets */
+
+/* 2 column liquid layout */
+div.widget-liquid-left {
+	float: left;
+	clear: left;
+	width: 100%;
+	margin-right: -325px;
+}
+
+div#widgets-left {
+	margin-left: 5px;
+	margin-right: 325px;
+}
+
+div#widgets-right {
+	width: 285px;
+	margin: 0 auto;
+}
+
+div.widget-liquid-right {
+	float: right;
+	clear: right;
+	width: 300px;
+}
+
+.widget-liquid-right .widget,
+.inactive-sidebar .widget,
+.widget-liquid-right .sidebar-description {
+	width: 250px;
+	margin: 0 auto 20px;
+	overflow: hidden;
+}
+
+.widget-liquid-right .sidebar-description {
+	margin-bottom: 10px;
+}
+
+.inactive-sidebar .widget {
+	margin: 0 10px 20px;
+	display: inline-block;
+}
+
+div.sidebar-name {
+	font-size: 13px;
+	border-width: 1px;
+	border-style: solid;
+	.rounded-top();
+
+	h3 {
+		font-weight: normal;
+		font-size: 15px;
+		margin: 0;
+		padding: 8px 10px;
+		overflow: hidden;
+		white-space: nowrap;
+	}
+}
+
+.js .sidebar-name {
+	cursor: pointer;
+}
+
+.js .closed .sidebar-name {
+	.rounded-bottom();
+}
+
+.widget-liquid-right .widgets-sortables,
+#widgets-left .widget-holder {
+	border-width: 0 1px 1px;
+	border-style: none solid solid;
+	.rounded-bottom();
+}
+
+.js .closed .widgets-sortables,
+.js .closed .widget-holder {
+	display: none;
+}
+
+.widget-liquid-right .widgets-sortables {
+	padding: 15px 0 0;
+}
+
+#available-widgets .widget-holder {
+	padding: 7px 5px 0;
+}
+
+#available-widgets .widget {
+	.no-box-shadows();
+}
+
+.inactive-sidebar {
+	padding: 5px 5px 0;
+}
+
+#widget-list .widget {
+	width: 250px;
+	margin: 0 10px 15px;
+	border: 0 none;
+	background: transparent;
+	display: inline-block;
+	vertical-align: top;
+}
+
+#widget-list .widget-description {
+	padding: 5px 8px;
+}
+
+.widget-placeholder {
+	border-width: 1px;
+	border-style: dashed;
+	margin: 0 auto 20px;
+	height: 27px;
+	width: 250px;
+
+	.inactive-sidebar & {
+		margin: 0 10px 20px;
+		float: left;
+	}
+}
+
+div.widgets-holder-wrap {
+	padding: 0;
+	margin: 10px 0 20px;
+}
+
+#widgets-left #available-widgets {
+	background-color: transparent;
+	border: 0 none;
+}
+
+ul#widget-list {
+	list-style: none;
+	margin: 0;
+	padding: 0;
+	min-height: 100px;
+}
+
+.widget .widget-top {
+	margin-bottom: -1px;
+	.bold-font(12px, 26px);
+	overflow: hidden;
+}
+
+a.widget-action {
+	display: block;
+	width: 24px;
+	height: 26px;
+}
+
+#available-widgets a.widget-action {
+	display: none;
+}
+
+.widget-top {
+	.widget-title {
+		padding: 7px 9px;
+	}
+
+	.widget-title-action {
+		float: right;
+	}
+
+	a.widget-action {
+		background: transparent url(../images/arrows.png) no-repeat 4px 6px;
+	
+		&:hover {
+			background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px;
+		}
+	}
+}
+
+.widget .widget-inside,
+.widget .widget-description {
+	padding: 12px 12px 10px;
+	font-size: 12px;
+	line-height: 16px;
+}
+
+.widget-inside,
+.widget-description {
+	display: none;
+}
+
+#available-widgets .widget-description {
+	display: block;
+}
+
+.widget .widget-inside p {
+	margin: 0 0 1em;
+	padding: 0;
+}
+
+.widget-title h4 {
+	margin: 0;
+	padding-bottom: 0.2em;
+	line-height: 1;
+	overflow: hidden;
+	white-space: nowrap;
+}
+
+.widgets-sortables {
+	min-height: 90px;
+}
+
+.widget-control-actions {
+	margin-top: 8px;
+
+	a {
+		text-decoration: none;
+	}
+
+	a:hover {
+		text-decoration: underline;
+	}
+
+	div.alignleft {
+		margin-top: 6px;
+	}
+}
+
+div#sidebar-info {
+	padding: 0 1em;
+	margin-bottom: 1em;
+	font-size: 12px;
+}
+
+.widget-title a,
+.widget-title a:hover {
+	text-decoration: none;
+	border-bottom: none;
+}
+
+.widget-control-edit {
+	display: block;
+	.normal-font(12px, 26px);
+	padding: 0 8px 0 0;
+
+	.add,
+	.edit {
+		display: none;
+	}
+}
+
+a.widget-control-edit {
+	text-decoration: none;
+}
+
+#available-widgets .widget-control-edit .add,
+#widgets-right .widget-control-edit .edit,
+.inactive-sidebar .widget-control-edit .edit {
+	display: inline;
+}
+
+.editwidget {
+	margin: 0 auto 15px;
+
+	.widget-inside {
+		display: block;
+		padding: 10px;
+	}
+}
+
+.inactive p.description {
+	margin: 5px 15px 10px;
+}
+
+#available-widgets p.description {
+	margin: 0 12px 12px;
+}
+
+.widget-position {
+	margin-top: 8px;
+}
+
+.inactive {
+	padding-top: 2px;
+}
+
+.sidebar-name .spinner {
+	float: none;
+	margin: 0 3px -3px;
+}
+
+.sidebar-name-arrow {
+	float: right;
+	height: 29px;
+	width: 26px;
+}
+
+.widget-title .in-widget-title {
+	font-size: 12px;
+	white-space: nowrap;
+}
+
+#removing-widget {
+	display: none;
+	padding-left: 15px;
+	.normal-font(12px);
+}
+
+.widget-control-noform,
+#access-off,
+.widgets_access .widget-action,
+.widgets_access .sidebar-name-arrow,
+.widgets_access #access-on,
+.widgets_access .widget-holder .description {
+	display: none;
+}
+
+.widgets_access {
+	.widget-holder,
+	#widget-list {
+		padding-top: 10px;
+	}
+
+	#access-off {
+		display: inline;
+	}
+
+	#wpbody-content .widget-title-action,
+	#wpbody-content .widget-control-edit,
+	.closed .widgets-sortables,
+	.closed .widget-holder {
+		display: block;
+	}
+
+	.closed .sidebar-name {
+		.rounded-bottom(0);
+	}
+
+	.sidebar-name,
+	.widget .widget-top {
+		cursor: default;
+	}
+}
\ No newline at end of file
diff --git a/wp-admin/css/less/variables.less b/wp-admin/css/less/variables.less
new file mode 100644
index 0000000..2e1ee5e
--- /dev/null
+++ b/wp-admin/css/less/variables.less
@@ -0,0 +1 @@
+@border-color: #dfdfdf;
diff --git a/wp-admin/css/less/wp-admin.less b/wp-admin/css/less/wp-admin.less
new file mode 100644
index 0000000..78ce4f1
--- /dev/null
+++ b/wp-admin/css/less/wp-admin.less
@@ -0,0 +1,80 @@
+@import "variables.less";
+@import "mixins.less";
+
+/*
+Hello, this is the main WordPress admin CSS file.
+All the important stuff is in here.
+
+TABLE OF CONTENTS:
+------------------
+ 1.0 - Text Elements
+ 2.0 - Forms
+ 3.0 - Actions
+ 4.0 - Notifications
+ 5.0 - TinyMCE
+ 6.0 - Admin Header
+	6.1 - Screen Options Tabs
+	6.2 - Help Menu
+ 7.0 - Main Navigation
+ 8.0 - Layout Blocks
+ 9.0 - Dashboard
+10.0 - List Posts
+	10.1 - Inline Editing
+11.0 - Write/Edit Post Screen
+	11.1 - Custom Fields
+	11.2 - Post Revisions
+	11.3 - Featured Images
+	11.4 - Post Format Selection
+12.0 - Categories
+13.0 - Tags
+14.0 - Media Screen
+	14.1 - Media Library
+	14.2 - Image Editor
+15.0 - Comments Screen
+16.0 - Themes
+	16.1 - Custom Header
+	16.2 - Custom Background
+	16.3 - Tabbed Admin Screen Interface
+17.0 - Plugins
+18.0 - Users
+19.0 - Tools (deprecated)
+20.0 - Settings
+21.0 - Admin Footer
+22.0 - About Pages
+23.0 - Full Overlay w/ Sidebar
+24.0 - Customize Loader
+25.0 - Misc
+*/
+
+@import "modules/global.less";
+@import "modules/text.less";
+@import "modules/forms.less";
+@import "modules/actions.less";
+@import "modules/notifications.less";
+@import "modules/header.less";
+@import "modules/navigation.less";
+@import "modules/layout-blocks.less";
+@import "modules/dashboard.less";
+@import "modules/list-posts.less";
+@import "modules/edit-post.less";
+@import "modules/categories.less";
+@import "modules/tags.less";
+@import "modules/media.less";
+@import "modules/comments.less";
+@import "modules/themes.less";
+@import "modules/plugins.less";
+@import "modules/users.less";
+@import "modules/settings.less";
+@import "modules/footer.less";
+@import "modules/about.less";
+@import "modules/full-overlay.less";
+@import "modules/customize.less";
+@import "modules/misc.less";
+@import "modules/login.less";
+@import "modules/press-this.less";
+@import "modules/nav-menus.less";
+@import "modules/widgets.less";
+@import "modules/accordion.less";
+@import "modules/media-queries.less";
+@import "modules/hidpi.less";
+@import "modules/localized.less";
\ No newline at end of file
diff --git a/wp-admin/css/wp-admin.css b/wp-admin/css/wp-admin.css
index 95c0482..94bab99 100644
--- a/wp-admin/css/wp-admin.css
+++ b/wp-admin/css/wp-admin.css
@@ -1,10 +1,7 @@
-/*------------------------------------------------------------------------------
-
-
+/*
 Hello, this is the main WordPress admin CSS file.
 All the important stuff is in here.
 
-
 TABLE OF CONTENTS:
 ------------------
  1.0 - Text Elements
@@ -37,193 +34,164 @@ TABLE OF CONTENTS:
 	16.3 - Tabbed Admin Screen Interface
 17.0 - Plugins
 18.0 - Users
-19.0 - Tools
+19.0 - Tools (deprecated)
 20.0 - Settings
 21.0 - Admin Footer
 22.0 - About Pages
 23.0 - Full Overlay w/ Sidebar
 24.0 - Customize Loader
 25.0 - Misc
-
-------------------------------------------------------------------------*/
-
+*/
 /* 2 column liquid layout */
 #wpwrap {
-	height: auto;
-	min-height: 100%;
-	width: 100%;
-	position: relative;
+  height: auto;
+  min-height: 100%;
+  width: 100%;
+  position: relative;
 }
-
 #wpcontent {
-	height: 100%;
+  height: 100%;
 }
-
 #wpcontent,
 #wpfooter {
-	margin-left: 165px;
+  margin-left: 165px;
 }
-
 .folded #wpcontent,
 .folded #wpfooter {
-	margin-left: 52px;
+  margin-left: 52px;
 }
-
 #wpbody-content {
-	padding-bottom: 65px;
-	float: left;
-	width: 100%;
+  padding-bottom: 65px;
+  float: left;
+  width: 100%;
 }
-
 #adminmenuback,
 #adminmenuwrap,
 #adminmenu,
 #adminmenu .wp-submenu {
-	width: 145px;
+  width: 145px;
 }
-
 #adminmenuback {
-	position: absolute;
-	top: 0;
-	bottom: 0;
-	z-index: -1;
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  z-index: -1;
 }
-
 #adminmenu {
-	clear: left;
-	margin: 0;
-	padding: 0;
-	list-style: none;
+  clear: left;
+  margin: 0;
+  padding: 0;
+  list-style: none;
 }
-
 .folded #adminmenuback,
 .folded #adminmenuwrap,
 .folded #adminmenu,
 .folded #adminmenu li.menu-top {
-	width: 32px;
+  width: 32px;
 }
-
 /* inner 2 column liquid layout */
-
 .inner-sidebar {
-	float: right;
-	clear: right;
-	display: none;
-	width: 281px;
-	position: relative;
+  float: right;
+  clear: right;
+  display: none;
+  width: 281px;
+  position: relative;
 }
-
 .columns-2 .inner-sidebar {
-	margin-right: auto;
-	width: 286px;
-	display: block;
+  margin-right: auto;
+  width: 286px;
+  display: block;
 }
-
 .inner-sidebar #side-sortables,
 .columns-2 .inner-sidebar #side-sortables {
-	min-height: 300px;
-	width: 280px;
-	padding: 0;
+  min-height: 300px;
+  width: 280px;
+  padding: 0;
 }
-
 .has-right-sidebar .inner-sidebar {
-	display: block;
+  display: block;
 }
-
 .has-right-sidebar #post-body {
-	float: left;
-	clear: left;
-	width: 100%;
-	margin-right: -2000px;
+  float: left;
+  clear: left;
+  width: 100%;
+  margin-right: -2000px;
 }
-
 .has-right-sidebar #post-body-content {
-	margin-right: 300px;
-	float: none;
-	width: auto;
+  margin-right: 300px;
+  float: none;
+  width: auto;
 }
-
 /* 2 columns main area */
-
 #col-container,
 #col-left,
 #col-right {
-	overflow: hidden;
-	padding: 0;
-	margin: 0;
+  overflow: hidden;
+  padding: 0;
+  margin: 0;
 }
-
 #col-left {
-	width: 35%;
+  width: 35%;
 }
-
 #col-right {
-	float: right;
-	clear: right;
-	width: 65%;
+  float: right;
+  clear: right;
+  width: 65%;
 }
-
 .col-wrap {
-	padding: 0 7px;
+  padding: 0 7px;
 }
-
 /* utility classes */
 .alignleft {
-	float: left;
+  float: left;
 }
-
 .alignright {
-	float: right;
+  float: right;
 }
-
 .textleft {
-	text-align: left;
+  text-align: left;
 }
-
 .textright {
-	text-align: right;
+  text-align: right;
 }
-
 .clear {
-	clear: both;
+  clear: both;
 }
-
 /* Hide visually but not from screen readers */
 .screen-reader-text,
 .screen-reader-text span,
 .ui-helper-hidden-accessible {
-	position: absolute;
-	left: -1000em;
-	top: -1000em;
-	height: 1px;
-	width: 1px;
-	overflow: hidden;
+  position: absolute;
+  left: -1000em;
+  top: -1000em;
+  height: 1px;
+  width: 1px;
+  overflow: hidden;
 }
-
 .screen-reader-shortcut {
-	position: absolute;
-	top: -1000em;
+  position: absolute;
+  top: -1000em;
 }
-
 .screen-reader-shortcut:focus {
-	left: 6px;
-	top: -21px;
-	height: auto;
-	width: auto;
-	display: block;
-	font-size: 14px;
-	font-weight: bold;
-	padding: 15px 23px 14px;
-	background: #f1f1f1;
-	color: #21759b;
-	border-radius: 3px;
-	z-index: 100000;
-	line-height: normal;
-	-webkit-box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
-	box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
-	text-decoration: none;
+  left: 6px;
+  top: -21px;
+  height: auto;
+  width: auto;
+  display: block;
+  font-size: 14px;
+  font-weight: bold;
+  line-height: normal;
+  padding: 15px 23px 14px;
+  background: #f1f1f1;
+  color: #21759b;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  z-index: 100000;
+  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
+  text-decoration: none;
 }
-
 .hidden,
 .js .closed .inside,
 .js .hide-if-js,
@@ -232,9 +200,8 @@ TABLE OF CONTENTS:
 .js .wp-core-ui .hide-if-js,
 .no-js.wp-core-ui .hide-if-no-js,
 .no-js .wp-core-ui .hide-if-no-js {
-	display: none;
+  display: none;
 }
-
 /* include margin and padding in the width calculation of input and textarea */
 input[type="text"],
 input[type="password"],
@@ -243,77 +210,65 @@ input[type="search"],
 input[type="email"],
 input[type="url"],
 textarea {
-	-moz-box-sizing: border-box;
-	-webkit-box-sizing: border-box;
-	-ms-box-sizing: border-box; /* ie8 only */
-	box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  -ms-box-sizing: border-box;
+  box-sizing: border-box;
 }
-
 input[type="checkbox"],
 input[type="radio"] {
-	vertical-align: text-top;
-	padding: 0;
-	margin: 1px 0 0;
+  vertical-align: text-top;
+  padding: 0;
+  margin: 1px 0 0;
 }
-
 input[type="search"] {
-	-webkit-appearance: textfield;
+  -webkit-appearance: textfield;
 }
-
 input[type="search"]::-webkit-search-decoration {
-	display: none;
+  display: none;
 }
-
 /* general */
 html,
 body {
-	height: 100%;
-	margin: 0;
-	padding: 0;
+  height: 100%;
+  margin: 0;
+  padding: 0;
 }
-
 body {
-	font-family: sans-serif;
-	font-size: 12px;
-	line-height: 1.4em;
-	min-width: 600px;
+  font-family: sans-serif;
+  font-size: 12px;
+  line-height: 1.4em;
+  min-width: 600px;
 }
-
 body.iframe {
-	min-width: 0;
-	padding-top: 1px;
+  min-width: 0;
+  padding-top: 1px;
 }
-
 body.login {
-	background: #fbfbfb;
-	min-width: 0;
+  background: #fbfbfb;
+  min-width: 0;
 }
-
 iframe,
 img {
-	border: 0;
+  border: 0;
 }
-
 td,
 textarea,
 input,
 select,
 button {
-	font-family: inherit;
-	font-size: inherit;
-	font-weight: inherit;
+  font-family: inherit;
+  font-size: inherit;
+  font-weight: inherit;
 }
-
 td,
 textarea {
-	line-height: inherit;
+  line-height: inherit;
 }
-
 input,
 select {
-	line-height: 15px;
+  line-height: 15px;
 }
-
 a,
 input[type="text"],
 input[type="password"],
@@ -324,179 +279,147 @@ input[type="url"],
 select,
 textarea,
 div {
-	outline: 0;
+  outline: 0;
 }
-
 a:focus,
 a:active {
-	outline: thin dotted;
+  outline: thin dotted;
 }
-
 #adminmenu a:focus,
 #adminmenu a:active,
 .screen-reader-text:focus {
-	outline: none;
+  outline: none;
 }
-
 blockquote,
 q {
-	quotes: none;
+  quotes: none;
 }
-
 blockquote:before,
 blockquote:after,
 q:before,
 q:after {
-	content: '';
-	content: none;
+  content: '';
+  content: none;
 }
-
 p {
-	margin: 1em 0;
+  margin: 1em 0;
 }
-
 blockquote {
-	margin: 1em;
+  margin: 1em;
 }
-
 label {
-	cursor: pointer;
+  cursor: pointer;
 }
-
 li,
 dd {
-	margin-bottom: 6px;
+  margin-bottom: 6px;
 }
-
 textarea,
 input,
 select {
-	margin: 1px;
-	padding: 3px;
+  margin: 1px;
+  padding: 3px;
 }
-
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
-	display: block;
-	font-weight: bold;
+  display: block;
+  font-weight: bold;
 }
-
 h1 {
-	font-size: 2em;
-	margin: .67em 0;
+  font-size: 2em;
+  margin: .67em 0;
 }
-
 h2 {
-	font-size: 1.5em;
-	margin: .83em 0;
+  font-size: 1.5em;
+  margin: .83em 0;
 }
-
 h3 {
-	font-size: 1.17em;
-	margin: 1em 0;
+  font-size: 1.17em;
+  margin: 1em 0;
 }
-
 h4 {
-	font-size: 1em;
-	margin: 1.33em 0;
+  font-size: 1em;
+  margin: 1.33em 0;
 }
-
 h5 {
-	font-size: 0.83em;
-	margin: 1.67em 0;
+  font-size: 0.83em;
+  margin: 1.67em 0;
 }
-
 h6 {
-	font-size: 0.67em;
-	margin: 2.33em 0;
+  font-size: 0.67em;
+  margin: 2.33em 0;
 }
-
 ul,
 ol {
-	padding: 0;
+  padding: 0;
 }
-
 ul {
-	list-style: none;
+  list-style: none;
 }
-
 ol {
-	list-style-type: decimal;
-	margin-left: 2em;
+  list-style-type: decimal;
+  margin-left: 2em;
 }
-
 ul.ul-disc {
-	list-style: disc outside;
+  list-style: disc outside;
 }
-
 ul.ul-square {
-	list-style: square outside;
+  list-style: square outside;
 }
-
 ol.ol-decimal {
-	list-style: decimal outside;
+  list-style: decimal outside;
 }
-
 ul.ul-disc,
 ul.ul-square,
 ol.ol-decimal {
-	margin-left: 1.8em;
+  margin-left: 1.8em;
 }
-
 ul.ul-disc > li,
 ul.ul-square > li,
 ol.ol-decimal > li {
-	margin: 0 0 0.5em;
+  margin: 0 0 0.5em;
 }
-
 .code,
 code {
-	font-family: Consolas, Monaco, monospace;
+  font-family: Consolas, Monaco, monospace;
 }
-
 kbd,
 code {
-	padding: 1px 3px;
-	margin: 0 1px;
-	font-size: 11px;
+  padding: 1px 3px;
+  margin: 0 1px;
+  font-size: 11px;
 }
-
 .subsubsub {
-	list-style: none;
-	margin: 8px 0 5px;
-	padding: 0;
-	font-size: 12px;
-	float: left;
+  list-style: none;
+  margin: 8px 0 5px;
+  padding: 0;
+  font-size: 12px;
+  float: left;
 }
-
 .subsubsub a {
-	line-height: 2;
-	padding: .2em;
-	text-decoration: none;
+  line-height: 2;
+  padding: .2em;
+  text-decoration: none;
 }
-
 .subsubsub a .count,
 .subsubsub a.current .count {
-	color: #999;
-	font-weight: normal;
+  color: #999;
+  font-weight: normal;
 }
-
 .subsubsub a.current {
-	font-weight: bold;
-	border: none;
+  font-weight: bold;
+  border: none;
 }
-
 .subsubsub li {
-	display: inline-block;
-	margin: 0;
-	padding: 0;
-	white-space: nowrap;
+  display: inline-block;
+  margin: 0;
+  padding: 0;
+  white-space: nowrap;
 }
-
 .widefat,
 div.updated,
 div.error,
@@ -536,178 +459,155 @@ select,
 .feature-filter,
 #widget-list .widget-top,
 .editwidget .widget-inside {
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
-	border-width: 1px;
-	border-style: solid;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  border-width: 1px;
+  border-style: solid;
 }
-
 /* .widefat - main style for tables */
 .widefat {
-	border-spacing: 0;
-	width: 100%;
-	clear: both;
-	margin: 0;
+  border-spacing: 0;
+  width: 100%;
+  clear: both;
+  margin: 0;
 }
-
 .widefat * {
-	word-wrap: break-word;
+  word-wrap: break-word;
 }
-
 .widefat a {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 .widefat thead th:first-of-type {
-	-webkit-border-top-left-radius: 3px;
-	border-top-left-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  border-top-left-radius: 3px;
 }
 .widefat thead th:last-of-type {
-	-webkit-border-top-right-radius: 3px;
-	border-top-right-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
+  border-top-right-radius: 3px;
 }
 .widefat tfoot th:first-of-type {
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-left-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  border-bottom-left-radius: 3px;
 }
 .widefat tfoot th:last-of-type {
-	-webkit-border-bottom-right-radius: 3px;
-	border-bottom-right-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
+  border-bottom-right-radius: 3px;
 }
-
 .widefat td,
 .widefat th {
-	border-width: 1px 0;
-	border-style: solid;
+  border-width: 1px 0;
+  border-style: solid;
 }
 .widefat tfoot th {
-	border-bottom: none;
+  border-bottom: none;
 }
-
 .widefat .no-items td {
-	border-bottom-width: 0;
+  border-bottom-width: 0;
 }
-
 .widefat td {
-	font-size: 12px;
-	padding: 4px 7px 2px;
-	vertical-align: top;
+  font-size: 12px;
+  padding: 4px 7px 2px;
+  vertical-align: top;
 }
-
 .widefat td p,
 .widefat td ol,
 .widefat td ul {
-	font-size: 12px;
+  font-size: 12px;
 }
-
 .widefat th {
-	padding: 7px 7px 8px;
-	text-align: left;
-	line-height: 1.3em;
-	font-size: 14px;
+  padding: 7px 7px 8px;
+  text-align: left;
+  line-height: 1.3em;
+  font-size: 14px;
 }
-
 .widefat th input {
-	margin: 0 0 0 8px;
-	padding: 0;
-	vertical-align: text-top;
+  margin: 0 0 0 8px;
+  padding: 0;
+  vertical-align: text-top;
 }
-
 .widefat .check-column {
-	width: 2.2em;
-	padding: 6px 0 25px;
-	vertical-align: top;
+  width: 2.2em;
+  padding: 6px 0 25px;
+  vertical-align: top;
 }
-
 .widefat tbody th.check-column {
-	padding: 9px 0 22px;
+  padding: 9px 0 22px;
 }
-
 .widefat.media .check-column {
-	padding-top: 8px;
+  padding-top: 8px;
 }
-
 .widefat thead .check-column,
 .widefat tfoot .check-column {
-	padding: 10px 0 0;
+  padding: 10px 0 0;
 }
-
 .no-js .widefat thead .check-column input,
 .no-js .widefat tfoot .check-column input {
-	display: none;
+  display: none;
 }
-
 .widefat .num,
 .column-comments,
 .column-links,
 .column-posts {
-	text-align: center;
+  text-align: center;
 }
-
 .widefat th#comments {
-	vertical-align: middle;
+  vertical-align: middle;
 }
-
 .wrap {
-	margin: 4px 15px 0 0;
+  margin: 4px 15px 0 0;
 }
-
 div.updated,
 div.error {
-	padding: 0 0.6em;
-	margin: 5px 15px 2px;
+  padding: 0 0.6em;
+  margin: 5px 15px 2px;
 }
-
 div.updated p,
 div.error p {
-	margin: 0.5em 0;
-	padding: 2px;
+  margin: 0.5em 0;
+  padding: 2px;
 }
-
 .wrap div.updated,
 .wrap div.error,
 .media-upload-form div.error {
-	margin: 5px 0 15px;
+  margin: 5px 0 15px;
 }
-
 .wrap h2,
 .subtitle {
-	font-weight: normal;
-	margin: 0;
-	text-shadow: #fff 0 1px 0;
+  font-weight: normal;
+  margin: 0;
+  text-shadow: #fff 0 1px 0;
 }
-
 .wrap h2 {
-	font-size: 23px;
-	padding: 9px 15px 4px 0;
-	line-height: 29px;
+  font-size: 23px;
+  padding: 9px 15px 4px 0;
+  line-height: 29px;
 }
-
 .subtitle {
-	font-size: 14px;
-	padding-left: 25px;
+  font-size: 14px;
+  padding-left: 25px;
 }
-
 .wrap .add-new-h2 {
-	font-family: sans-serif;
-	margin-left: 4px;
-	padding: 3px 8px;
-	position: relative;
-	top: -3px;
-	text-decoration: none;
-	font-size: 12px;
-	border: 0 none;
+  font-family: sans-serif;
+  margin-left: 4px;
+  padding: 3px 8px;
+  position: relative;
+  top: -3px;
+  text-decoration: none;
+  font-size: 12px;
+  border: 0 none;
 }
-
 .wrap h2.long-header {
-	padding-right: 0;
+  padding-right: 0;
 }
-
 html,
 .wp-dialog {
-	background-color: #fff;
+  background-color: white;
 }
-
 textarea,
 input[type="text"],
 input[type="password"],
@@ -718,22 +618,18 @@ input[type="search"],
 input[type="tel"],
 input[type="url"],
 select {
-	background-color: #fff;
-	color: #333;
+  background-color: white;
+  color: #333;
 }
-
 select {
-	color: #000;
+  color: black;
 }
-
 select[disabled] {
-	color: #7f7f7f;
+  color: #7f7f7f;
 }
-
 select:focus {
-	border-color: #aaa;
+  border-color: #aaa;
 }
-
 textarea:focus,
 input[type="text"]:focus,
 input[type="password"]:focus,
@@ -744,23 +640,34 @@ input[type="search"]:focus,
 input[type="tel"]:focus,
 input[type="url"]:focus,
 select:focus {
-	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
-	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
+  -webkit-box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
+  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
 }
-
 input[readonly] {
-	background-color: #eee;
+  background-color: #eee;
 }
-
 :-moz-placeholder,
 .wp-core-ui :-moz-placeholder {
-   color: #a9a9a9;
+  color: #a9a9a9;
+}
+.postbox .spinner {
+  display: none;
+  vertical-align: middle;
+}
+.button-controls {
+  clear: both;
+  margin: 10px 0;
+}
+.show-all,
+.hide-all {
+  cursor: pointer;
+}
+.hide-all {
+  display: none;
+}
+img {
+  border: none;
 }
-
-/*------------------------------------------------------------------------------
-  1.0 - Text Styles
-------------------------------------------------------------------------------*/
-
 div.sidebar-name h3,
 #menu-management .nav-tab,
 #dashboard_plugins h5,
@@ -778,392 +685,331 @@ a.rsswidget,
 .widefat th,
 .quicktags,
 .search {
-	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+  font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
 }
-
 h2 .nav-tab,
 .wrap h2,
 .subtitle,
 .login form .input {
-	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
+  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
 }
-
 .quicktags,
 .search {
-	font-size: 12px;
+  font-size: 12px;
 }
-
 .icon32 {
-	float: left;
-	height: 34px;
-	margin: 7px 8px 0 0;
-	width: 36px;
+  float: left;
+  height: 34px;
+  margin: 7px 8px 0 0;
+  width: 36px;
 }
-
 .icon16 {
-	height: 18px;
-	width: 18px;
-	padding: 6px 6px;
-	margin: -6px 0 0 -8px;
-	float: left;
+  height: 18px;
+  width: 18px;
+  padding: 6px 6px;
+  margin: -6px 0 0 -8px;
+  float: left;
 }
-
 .key-labels label {
-	line-height: 24px;
+  line-height: 24px;
 }
-
 .pre {
-	/* https://developer.mozilla.org/en-US/docs/CSS/white-space */
-	white-space: pre-wrap; /* css-3 */
-	word-wrap: break-word; /* IE 5.5 - 7 */
-}
+  /* https://developer.mozilla.org/en-US/docs/CSS/white-space */
+
+  white-space: pre-wrap;
+  /* css-3 */
+
+  word-wrap: break-word;
+  /* IE 5.5 - 7 */
 
+}
 .howto {
-	font-style: italic;
-	display: block;
-	font-family: sans-serif;
+  font-style: italic;
+  display: block;
+  font-family: sans-serif;
 }
-
 p.install-help {
-	margin: 8px 0;
-	font-style: italic;
+  margin: 8px 0;
+  font-style: italic;
 }
-
 .no-break {
-	white-space: nowrap;
+  white-space: nowrap;
 }
-
 /*------------------------------------------------------------------------------
   2.0 - Forms
 ------------------------------------------------------------------------------*/
-
-
 .wp-admin select {
-	padding: 2px;
-	height: 2em;
+  padding: 2px;
+  height: 2em;
 }
-
 .wp-admin select[multiple] {
-	height: auto;
+  height: auto;
 }
-
 .submit {
-	padding: 1.5em 0;
-	margin: 5px 0;
-	-webkit-border-bottom-left-radius: 3px;
-	-webkit-border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
+  padding: 1.5em 0;
+  margin: 5px 0;
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
 form p.submit a.cancel:hover {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 #minor-publishing-actions input,
 #major-publishing-actions input,
 #minor-publishing-actions .preview {
-	text-align: center;
+  text-align: center;
 }
-
 textarea.all-options,
 input.all-options {
-	width: 250px;
+  width: 250px;
 }
-
 input.large-text,
 textarea.large-text {
-	width: 99%;
+  width: 99%;
 }
-
 input.regular-text,
 #adduser .form-field input {
-	width: 25em;
+  width: 25em;
 }
-
 input.small-text {
-	width: 50px;
+  width: 50px;
 }
-
-input[type="number"].small-text {
-	width: 60px;
+input.small-text[type="number"] {
+  width: 60px;
 }
-
 #doaction,
 #doaction2,
 #post-query-submit {
-	margin: 1px 8px 0 0;
+  margin: 1px 8px 0 0;
 }
-
 .tablenav #changeit,
 .tablenav #delete_all,
 .tablenav #clear-recent-list {
-	margin-top: 1px;
+  margin-top: 1px;
 }
-
 .tablenav .actions select {
-	float: left;
-	margin-right: 6px;
-	max-width: 200px;
+  float: left;
+  margin-right: 6px;
+  max-width: 200px;
 }
-
 .ie8 .tablenav .actions select {
-	width: 155px;
+  width: 155px;
 }
-
 .ie8 .tablenav .actions select#cat {
-	width: 200px;
+  width: 200px;
 }
-
 #timezone_string option {
-	margin-left: 1em;
+  margin-left: 1em;
 }
-
 label,
 #your-profile label + a {
-	vertical-align: middle;
+  vertical-align: middle;
 }
-
 #misc-publishing-actions label {
-	vertical-align: baseline;
+  vertical-align: baseline;
 }
-
 #pass-strength-result {
-	border-style: solid;
-	border-width: 1px;
-	float: left;
-	margin: 13px 5px 5px 1px;
-	padding: 3px 5px;
-	text-align: center;
-	width: 200px;
-	display: none;
+  border-style: solid;
+  border-width: 1px;
+  float: left;
+  margin: 13px 5px 5px 1px;
+  padding: 3px 5px;
+  text-align: center;
+  width: 200px;
+  display: none;
 }
 .indicator-hint {
-	padding-top: 8px;
+  padding-top: 8px;
 }
-
 p.search-box {
-	float: right;
-	margin: 0;
+  float: right;
+  margin: 0;
 }
-
 .search-box input[name="s"],
 #search-plugins input[name="s"],
 .tagsdiv .newtag {
-	float: left;
-	height: 2em;
-	margin: 0 4px 0 0;
+  float: left;
+  height: 2em;
+  margin: 0 4px 0 0;
 }
-
 input[type="text"].ui-autocomplete-loading {
-	background: transparent url('../images/loading.gif') no-repeat right center;
-	visibility: visible;
+  background: transparent url('../images/loading.gif') no-repeat right center;
+  visibility: visible;
 }
-
 ul#add-to-blog-users {
-	margin: 0 0 0 14px;
+  margin: 0 0 0 14px;
 }
-
 .ui-autocomplete-input.open {
-	border-bottom-right-radius: 0;
-	border-bottom-left-radius: 0;
+  border-bottom-right-radius: 0;
+  border-bottom-left-radius: 0;
 }
-
 .ui-autocomplete {
-	padding: 0;
-	margin: 0;
-	list-style: none;
-	position: absolute;
-	z-index: 10000;
-	border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
-	border-width: 1px;
-	border-style: solid;
+  padding: 0;
+  margin: 0;
+  list-style: none;
+  position: absolute;
+  z-index: 10000;
+  border-bottom-right-radius: 3px;
+  border-bottom-left-radius: 3px;
+  border-width: 1px;
+  border-style: solid;
 }
-
 .ui-autocomplete li {
-	margin-bottom: 0;
-	white-space: nowrap;
-	text-align: left;
+  margin-bottom: 0;
+  white-space: nowrap;
+  text-align: left;
 }
-
 .ui-autocomplete li a {
-	display: block;
-	height: 100%;
-	padding: 4px 10px;
+  display: block;
+  height: 100%;
+  padding: 4px 10px;
 }
-
 .ui-autocomplete li a.ui-state-focus {
-	cursor: pointer;
+  cursor: pointer;
 }
-
 /*------------------------------------------------------------------------------
   3.0 - Actions
 ------------------------------------------------------------------------------*/
-
 #major-publishing-actions {
-	padding: 10px 10px 8px;
-	clear: both;
-	border-top: 1px solid #f5f5f5;
-	margin-top: -2px;
+  padding: 10px 10px 8px;
+  clear: both;
+  border-top: 1px solid #f5f5f5;
+  margin-top: -2px;
 }
-
 #delete-action {
-	line-height: 25px;
-	vertical-align: middle;
-	text-align: left;
-	float: left;
+  line-height: 25px;
+  vertical-align: middle;
+  text-align: left;
+  float: left;
 }
-
 #publishing-action {
-	text-align: right;
-	float: right;
-	line-height: 23px;
+  text-align: right;
+  float: right;
+  line-height: 23px;
 }
-
 #publishing-action .spinner {
-	float: left;
+  float: left;
 }
-
 #misc-publishing-actions {
-	padding: 6px 0 0;
+  padding: 6px 0 0;
 }
-
 .misc-pub-section {
-	padding: 6px 10px 8px;
-	border-width: 1px 0;
-	border-style: solid;
+  padding: 6px 10px 8px;
+  border-width: 1px 0;
+  border-style: solid;
 }
-
 .misc-pub-section:first-child {
-	border-top-width: 0;
+  border-top-width: 0;
 }
-
 .misc-pub-section-last {
-	border-bottom-width: 0;
+  border-bottom-width: 0;
 }
-
 #minor-publishing-actions {
-	padding: 10px 10px 2px 8px;
-	text-align: right;
+  padding: 10px 10px 2px 8px;
+  text-align: right;
 }
-
 #minor-publishing {
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
-	-webkit-box-shadow: 0 1px 0 #fff;
-	box-shadow: 0 1px 0 #fff;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
+  -webkit-box-shadow: 0 1px 0 #fff;
+  box-shadow: 0 1px 0 #fff;
 }
-
 #save-post {
-	float: left;
+  float: left;
 }
-
 .preview {
-	float: right;
+  float: right;
 }
-
 #sticky-span {
-	margin-left: 18px;
+  margin-left: 18px;
 }
-
 .side-info {
-	margin: 0;
-	padding: 4px;
-	font-size: 11px;
+  margin: 0;
+  padding: 4px;
+  font-size: 11px;
 }
-
 .side-info h5 {
-	padding-bottom: 7px;
-	font-size: 14px;
-	margin: 12px 2px 5px;
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
+  padding-bottom: 7px;
+  font-size: 14px;
+  margin: 12px 2px 5px;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
 }
-
 .side-info ul {
-	margin: 0;
-	padding-left: 18px;
-	list-style: square;
+  margin: 0;
+  padding-left: 18px;
+  list-style: square;
 }
-
 .approve,
 .unapproved .unapprove {
-	display: none;
+  display: none;
 }
-
 .unapproved .approve,
 .spam .approve,
 .trash .approve {
-	display: inline;
+  display: inline;
 }
-
 td.action-links,
 th.action-links {
-	text-align: right;
+  text-align: right;
 }
-
-
 /*------------------------------------------------------------------------------
   4.0 - Notifications
 ------------------------------------------------------------------------------*/
-
 #update-nag,
 .update-nag {
-	line-height: 19px;
-	padding: 5px 0;
-	font-size: 12px;
-	text-align: center;
-	margin: -1px 15px 0 5px;
-	border-width: 1px;
-	border-style: solid;
-	-webkit-border-bottom-right-radius: 3px;
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
+  line-height: 19px;
+  padding: 5px 0;
+  font-size: 12px;
+  text-align: center;
+  margin: -1px 15px 0 5px;
+  border-width: 1px;
+  border-style: solid;
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
 .plugins .plugin-update {
-	padding: 0;
+  padding: 0;
 }
-
 .plugin-update .update-message {
-	margin: 0 10px 8px 31px;
-	font-weight: bold;
+  margin: 0 10px 8px 31px;
+  font-weight: bold;
 }
-
 ul#dismissed-updates {
-	display: none;
+  display: none;
 }
-
 form.upgrade {
-	margin-top: 8px;
+  margin-top: 8px;
 }
-
 form.upgrade .hint {
-	font-style: italic;
-	font-size: 85%;
-	margin: -0.5em 0 2em 0;
+  font-style: italic;
+  font-size: 85%;
+  margin: -0.5em 0 2em 0;
 }
-
 .update-php .spinner {
-	float: none;
-	margin: -4px 0;
+  float: none;
+  margin: -4px 0;
 }
-
 #ajax-loading,
 .ajax-loading,
 .ajax-feedback,
 .imgedit-wait-spin,
-.list-ajax-loading { /* deprecated */
-	visibility: hidden;
-}
+.list-ajax-loading {
+  /* deprecated */
 
+  visibility: hidden;
+}
 #ajax-response.alignleft {
-	margin-left: 2em;
+  margin-left: 2em;
 }
-
-
 /*------------------------------------------------------------------------------
   6.0 - Admin Header
 ------------------------------------------------------------------------------*/
@@ -1171,443 +1017,366 @@ form.upgrade .hint {
 #sidemenu a,
 #taglist a,
 #catlist a {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 /*------------------------------------------------------------------------------
   6.1 - Screen Options Tabs
 ------------------------------------------------------------------------------*/
-
 #screen-options-wrap,
 #contextual-help-wrap {
-	margin: 0;
-	padding: 8px 20px 12px;
-	position: relative;
+  margin: 0;
+  padding: 8px 20px 12px;
+  position: relative;
 }
-
 #contextual-help-wrap {
-	overflow: auto;
-}
-
-#screen-meta .screen-reader-text {
-	visibility: hidden;
+  overflow: auto;
 }
-
 #screen-meta-links {
-	margin: 0 24px 0 0;
+  margin: 0 24px 0 0;
 }
-
 #screen-meta-links a:focus {
-	-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
-	box-shadow: 1px 1px 1px rgba(0,0,0,0.4);
-	outline: none;
+  -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
+  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
+  outline: none;
+}
+#screen-meta-links .screen-meta-toggle {
+  position: relative;
+  top: -1px;
+}
+#screen-meta-links a.show-settings {
+  text-decoration: none;
+  z-index: 1;
+  padding: 1px 16px 0 6px;
+  height: 22px;
+  line-height: 22px;
+  font-size: 12px;
+  display: block;
+  text-shadow: rgba(255, 255, 255, 0.7) 0 1px 0;
+}
+#screen-meta-links a.show-settings:hover {
+  text-decoration: none;
 }
-
 /* screen options and help tabs revert */
 #screen-meta {
-	display: none;
-	position: relative;
-	margin: 0 15px 0 5px;
-	border-width: 0 1px 1px;
-	border-style: none solid solid;
+  display: none;
+  position: relative;
+  margin: 0 15px 0 5px;
+  border-width: 0 1px 1px;
+  border-style: none solid solid;
+}
+#screen-meta .screen-reader-text {
+  visibility: hidden;
 }
-
 #screen-options-link-wrap,
 #contextual-help-link-wrap {
-	float: right;
-	height: 23px;
-	padding: 0;
-	margin: 0 0 0 6px;
-	font-family: sans-serif;
+  float: right;
+  height: 23px;
+  padding: 0;
+  margin: 0 0 0 6px;
+  font-family: sans-serif;
 }
-
 #screen-options-link-wrap,
 #contextual-help-link-wrap,
 #screen-meta {
-	-webkit-border-bottom-left-radius: 3px;
-	-webkit-border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
-}
-
-#screen-meta-links .screen-meta-toggle {
-	position: relative;
-	top: -1px;
-}
-
-#screen-meta-links a.show-settings {
-	text-decoration: none;
-	z-index: 1;
-	padding: 1px 16px 0 6px;
-	height: 22px;
-	line-height: 22px;
-	font-size: 12px;
-	display: block;
-	text-shadow: rgba(255,255,255,0.7) 0 1px 0;
-}
-
-#screen-meta-links a.show-settings:hover {
-	text-decoration: none;
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
 /* end screen options and help tabs */
-
 .toggle-arrow {
-	background-repeat: no-repeat;
-	background-position: top left;
-	background-color: transparent;
-	height: 22px;
-	line-height: 22px;
-	display: block;
+  background-repeat: no-repeat;
+  background-position: top left;
+  background-color: transparent;
+  height: 22px;
+  line-height: 22px;
+  display: block;
 }
-
 .toggle-arrow-active {
-	background-position: bottom left;
+  background-position: bottom left;
 }
-
 #screen-options-wrap h5,
 #contextual-help-wrap h5 {
-	margin: 8px 0;
-	font-size: 13px;
+  margin: 8px 0;
+  font-size: 13px;
 }
-
 .metabox-prefs label {
-	display: inline-block;
-	padding-right: 15px;
-	white-space: nowrap;
-	line-height: 30px;
+  display: inline-block;
+  padding-right: 15px;
+  white-space: nowrap;
+  line-height: 30px;
 }
-
 .metabox-prefs label input {
-	margin: 0 5px 0 2px;
+  margin: 0 5px 0 2px;
 }
-
-.metabox-prefs .columns-prefs label input {
-	margin: 0 2px;
-}
-
 .metabox-prefs label a {
-	display: none;
+  display: none;
+}
+.metabox-prefs .columns-prefs label input {
+  margin: 0 2px;
 }
-
 /*------------------------------------------------------------------------------
   6.2 - Help Menu
 ------------------------------------------------------------------------------*/
-
 #contextual-help-wrap {
-	padding: 0;
-	margin-left: -4px;
+  padding: 0;
+  margin-left: -4px;
 }
-
 #contextual-help-columns {
-	position: relative;
+  position: relative;
 }
-
 #contextual-help-back {
-	position: absolute;
-	top: 0;
-	bottom: 0;
-	left: 150px;
-	right: 170px;
-	border-width: 0 1px;
-	border-style: solid;
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  left: 150px;
+  right: 170px;
+  border-width: 0 1px;
+  border-style: solid;
 }
-
 #contextual-help-wrap.no-sidebar #contextual-help-back {
-	right: 0;
-
-	border-right-width: 0;
-	-webkit-border-bottom-right-radius: 2px;
-	border-bottom-right-radius: 2px;
+  right: 0;
+  border-right-width: 0;
+  -moz-border-bottom-right-radius: 2px;
+  -webkit-border-bottom-right-radius: 2px;
+  border-bottom-right-radius: 2px;
 }
-
 .contextual-help-tabs {
-	float: left;
-	width: 150px;
-	margin: 0;
+  float: left;
+  width: 150px;
+  margin: 0;
 }
-
 .contextual-help-tabs ul {
-	margin: 1em 0;
+  margin: 1em 0;
 }
-
 .contextual-help-tabs li {
-	margin-bottom: 0;
-	list-style-type: none;
-	border-style: solid;
-	border-width: 1px 0;
-	border-color: transparent;
+  margin-bottom: 0;
+  list-style-type: none;
+  border-style: solid;
+  border-width: 1px 0;
+  border-color: transparent;
 }
-
 .contextual-help-tabs a {
-	display: block;
-	padding: 5px 5px 5px 12px;
-	line-height: 18px;
-	text-decoration: none;
+  display: block;
+  padding: 5px 5px 5px 12px;
+  line-height: 18px;
+  text-decoration: none;
 }
-
 .contextual-help-tabs .active {
-	padding: 0;
-	margin: 0 -1px 0 0;
-	border-width: 1px 0 1px 1px;
-	border-style: solid;
+  padding: 0;
+  margin: 0 -1px 0 0;
+  border-width: 1px 0 1px 1px;
+  border-style: solid;
 }
-
 .contextual-help-tabs-wrap {
-	padding: 0 20px;
-	overflow: auto;
+  padding: 0 20px;
+  overflow: auto;
 }
-
 .help-tab-content {
-	display: none;
-	margin: 0 22px 12px 0;
-	line-height: 1.6em;
+  display: none;
+  margin: 0 22px 12px 0;
+  line-height: 1.6em;
 }
-
 .help-tab-content.active {
-	display: block;
+  display: block;
 }
-
 .help-tab-content ul li {
-	list-style-type: disc;
-	margin-left: 18px;
+  list-style-type: disc;
+  margin-left: 18px;
 }
-
 .contextual-help-sidebar {
-	width: 150px;
-	float: right;
-	padding: 0 8px 0 12px;
-	overflow: auto;
+  width: 150px;
+  float: right;
+  padding: 0 8px 0 12px;
+  overflow: auto;
 }
-
-
 /*------------------------------------------------------------------------------
   7.0 - Main Navigation (Left Menu)
 ------------------------------------------------------------------------------*/
-
 #adminmenuback,
 #adminmenuwrap {
-	border-width: 0 1px 0 0;
-	border-style: solid;
+  border-width: 0 1px 0 0;
+  border-style: solid;
 }
-
 #adminmenuwrap {
-	position: relative;
-	float: left;
+  position: relative;
+  float: left;
 }
-
 #adminmenushadow {
-	position: absolute;
-	top: 0;
-	right: 0;
-	bottom: 0;
-	width: 6px;
-	z-index: 20;
+  position: absolute;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  width: 6px;
+  z-index: 20;
 }
-
 /* side admin menu */
 #adminmenu * {
-	-webkit-user-select: none;
-	-moz-user-select: none;
-	user-select: none;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none;
 }
-
 #adminmenu li {
-	margin: 0;
-	padding: 0;
-	cursor: pointer;
+  margin: 0;
+  padding: 0;
+  cursor: pointer;
 }
-
 #adminmenu a {
-	display: block;
-	line-height: 18px;
-	padding: 2px 5px;
+  display: block;
+  line-height: 18px;
+  padding: 2px 5px;
 }
-
 #adminmenu li.menu-top {
-	min-height: 28px;
-	position: relative;
+  min-height: 28px;
+  position: relative;
 }
-
 #adminmenu .wp-submenu {
-	list-style: none;
-	padding: 4px 0;
-	margin: 0;
-	position: absolute;
-	top: -1000em;
-	left: 146px;
-	z-index: 1000;
-	overflow: visible;
-	border-width: 1px;
-	border-style: solid;
-	-webkit-border-bottom-right-radius: 3px;
-	-webkit-border-top-right-radius: 3px;
-	border-bottom-right-radius: 3px;
-	border-top-right-radius: 3px;
+  list-style: none;
+  padding: 4px 0;
+  margin: 0;
+  position: absolute;
+  top: -1000em;
+  left: 146px;
+  z-index: 1000;
+  overflow: visible;
+  border-width: 1px;
+  border-style: solid;
+  border-top-right-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
 .js #adminmenu .sub-open,
 .js #adminmenu .opensub .wp-submenu,
 #adminmenu a.menu-top:focus + .wp-submenu,
-.no-js li.wp-has-submenu:hover .wp-submenu {
-	top: -1px;
+.no-js #adminmenu li.wp-has-submenu:hover .wp-submenu {
+  top: -1px;
 }
-
 #adminmenu .wp-has-current-submenu .wp-submenu,
-.no-js li.wp-has-current-submenu:hover .wp-submenu,
+.no-js #adminmenu li.wp-has-current-submenu:hover .wp-submenu,
 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
 #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
 #adminmenu .wp-has-current-submenu.opensub .wp-submenu {
-	position: relative;
-	z-index: 3;
-	top: auto;
-	left: auto;
-	right: auto;
-	bottom: auto;
-	border: 0 none;
-
-	-webkit-box-shadow: none;
-	box-shadow: none;
+  position: relative;
+  z-index: 3;
+  top: auto;
+  left: auto;
+  right: auto;
+  bottom: auto;
+  border: 0 none;
+  -moz-box-shadow: none;
+  -webkit-box-shadow: none;
+  box-shadow: none;
 }
-
 .folded #adminmenu .wp-submenu.sub-open,
 .folded #adminmenu .opensub .wp-submenu,
 .folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
 .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
 .folded #adminmenu a.menu-top:focus + .wp-submenu,
 .folded #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu,
-.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu  {
-	top: -1px;
-	left: 32px;
+.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu {
+  top: -1px;
+  left: 32px;
 }
-
 .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
 .folded #adminmenu .wp-has-current-submenu .wp-submenu {
-	border-width: 1px;
-	border-style: solid;
-	position: absolute;
-	top: -1000em;
+  border-width: 1px;
+  border-style: solid;
+  position: absolute;
+  top: -1000em;
 }
-
 #adminmenu .wp-submenu a {
-	font-size: 12px;
-	line-height: 18px;
-	margin: 0;
-	padding-left: 12px;
+  font-size: 12px;
+  line-height: 18px;
+  margin: 0;
+  padding-left: 12px;
 }
-
 #adminmenu .wp-not-current-submenu li > a {
-	padding-left: 16px;
+  padding-left: 16px;
 }
-
 #adminmenu .wp-has-current-submenu ul > li > a,
 .folded #adminmenu li.menu-top .wp-submenu > li > a {
-	padding-left: 12px;
+  padding-left: 12px;
 }
-
 #adminmenu a.menu-top,
 #adminmenu .wp-submenu-head {
-	font-size: 13px;
-	font-weight: bold;
-	line-height: 18px;
-	padding: 0;
+  font-size: 13px;
+  font-weight: bold;
+  line-height: 18px;
+  padding: 0;
 }
-
 #adminmenu .wp-submenu-head,
 .folded #adminmenu .wp-menu-name {
-	display: none;
+  display: none;
 }
-
 .folded #adminmenu .wp-submenu-head {
-	display: block;
+  display: block;
 }
-
 #adminmenu .wp-submenu li {
-	padding: 0;
-	margin: 0;
-	overflow: hidden;
+  padding: 0;
+  margin: 0;
+  overflow: hidden;
 }
-
 #adminmenu a.menu-top {
-	border-width: 1px 0;
-	border-style: solid none;
+  border-width: 1px 0;
+  border-style: solid none;
 }
-
 #adminmenu .wp-menu-image img {
-	padding: 7px 0 0 7px;
-	opacity: 0.6;
-	filter: alpha(opacity=60);
+  padding: 7px 0 0 7px;
+  opacity: 0.6;
+  filter: alpha(opacity=60);
 }
-
 #adminmenu div.wp-menu-name {
-	padding: 5px;
+  padding: 5px;
 }
-
 #adminmenu div.wp-menu-image {
-	float: left;
-	width: 28px;
-	height: 28px;
+  float: left;
+  width: 28px;
+  height: 28px;
 }
-
 .folded #adminmenu div.wp-menu-image {
-	width: 32px;
-	position: absolute;
-	z-index: 25;
+  width: 32px;
+  position: absolute;
+  z-index: 25;
 }
-
 .folded #adminmenu a.menu-top {
-	height: 28px;
-}
-
-.wp-menu-arrow {
-	z-index: 25;
-	position: absolute;
-	right: 100%;
-	margin: 0;
-	height: 30px;
-	width: 6px;
-
-	-moz-transform:    translate( 146px );
-	-webkit-transform: translate( 146px );
-	-o-transform:      translate( 146px );
-	-ms-transform:     translate( 146px );
-	transform:         translate( 146px );
+  height: 28px;
 }
-
 #adminmenu .wp-menu-arrow div {
-	display: none;
-	position: absolute;
-	top: 7px;
-	left: -1px;
-	width: 14px;
-	height: 15px;
-
-	-moz-transform:    matrix( -0.6, 1, 0.6, 1, 0, 0 );
-	-webkit-transform: matrix( -0.6, 1, 0.6, 1, 0, 0 );
-	-o-transform:      matrix( -0.6, 1, 0.6, 1, 0, 0 );
-	-ms-transform:     matrix( -0.6, 1, 0.6, 1, 0, 0 );
-	transform:         matrix( -0.6, 1, 0.6, 1, 0, 0 );
+  display: none;
+  position: absolute;
+  top: 7px;
+  left: -1px;
+  width: 14px;
+  height: 15px;
+  -moz-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
+  -webkit-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
+  -o-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
+  -ms-transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
+  transform: matrix(-0.6, 1, 0.6, 1, 0, 0);
 }
-
 #adminmenu li.wp-not-current-submenu .wp-menu-arrow {
-	-moz-transform:    translate( 145px );
-	-webkit-transform: translate( 145px );
-	-o-transform:      translate( 145px );
-	-ms-transform:     translate( 145px );
-	transform:         translate( 145px );
-	height: 28px;
-	border-width: 1px 0;
-	border-style: solid;
-	top: 0;
+  -moz-transform: translate(145px);
+  -webkit-transform: translate(145px);
+  -o-transform: translate(145px);
+  -ms-transform: translate(145px);
+  transform: translate(145px);
+  height: 28px;
+  border-width: 1px 0;
+  border-style: solid;
+  top: 0;
 }
-
 .folded #adminmenu li .wp-menu-arrow {
-	-moz-transform:    translate( 32px );
-	-webkit-transform: translate( 32px );
-	-o-transform:      translate( 32px );
-	-ms-transform:     translate( 32px );
-	transform:         translate( 32px );
+  -moz-transform: translate(32px);
+  -webkit-transform: translate(32px);
+  -o-transform: translate(32px);
+  -ms-transform: translate(32px);
+  transform: translate(32px);
 }
-
 #adminmenu li.current .wp-menu-arrow,
 #adminmenu li.wp-has-current-submenu .wp-menu-arrow,
 #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
@@ -1617,2471 +1386,2459 @@ form.upgrade .hint {
 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow,
 #adminmenu a:hover .wp-menu-arrow {
-	display: block;
+  display: block;
 }
-
 #adminmenu li.current .wp-menu-arrow,
 #adminmenu li.wp-menu-open .wp-menu-arrow {
-	top: 0;
+  top: 0;
 }
-
 .no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,
 #adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,
 #adminmenu a.wp-has-submenu:focus .wp-menu-arrow {
-	z-index: 1001;
+  z-index: 1001;
 }
-
 .ie8 #adminmenu li.menu-top:hover .wp-menu-arrow {
-	display: none;
+  display: none;
 }
-
 #adminmenu .wp-not-current-submenu .wp-menu-arrow div {
-	width: 15px;
-	top: 6px;
-	border-width: 0 0 1px 1px;
-	border-style: solid;
+  width: 15px;
+  top: 6px;
+  border-width: 0 0 1px 1px;
+  border-style: solid;
 }
-
-.wp-menu-arrow,
+#adminmenu .wp-menu-arrow,
 .folded #adminmenu li .wp-menu-arrow div,
 .no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow {
-	display: none;
+  display: none;
 }
-
 .folded #adminmenu li.current .wp-menu-arrow,
 .folded #adminmenu li.current .wp-menu-arrow div,
 .folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
 .folded #adminmenu li.wp-menu-open .wp-menu-arrow,
 .folded #adminmenu li a:focus .wp-menu-arrow {
-	display: block;
+  display: block;
 }
-
 #adminmenu li.menu-top:hover .wp-menu-image img,
 #adminmenu li.wp-has-current-submenu .wp-menu-image img {
-	opacity: 1;
-	filter: alpha(opacity=100);
+  opacity: 1;
+  filter: alpha(opacity=100);
 }
-
 #adminmenu li.wp-menu-separator {
-	height: 3px;
-	padding: 0;
-	margin: 0;
-	border-width: 1px 0;
-	border-style: solid;
-	cursor: inherit;
+  height: 3px;
+  padding: 0;
+  margin: 0;
+  border-width: 1px 0;
+  border-style: solid;
+  cursor: inherit;
 }
-
 #adminmenu div.separator {
-	height: 1px;
-	padding: 0;
-	border-width: 1px 0 0 0;
-	border-style: solid;
+  height: 1px;
+  padding: 0;
+  border-width: 1px 0 0 0;
+  border-style: solid;
 }
-
 #adminmenu .wp-submenu .wp-submenu-head {
-	padding: 5px 4px 5px 10px;
-	margin: -4px -1px 4px;
-	border-width: 1px 0;
-	border-style: solid;
-	-webkit-border-top-right-radius: 3px;
-	border-top-right-radius: 3px;
+  padding: 5px 4px 5px 10px;
+  margin: -4px -1px 4px;
+  border-width: 1px 0;
+  border-style: solid;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
+  border-top-right-radius: 3px;
 }
-
 #adminmenu li.wp-menu-open {
-	border-width: 0 0 1px;
-	border-style: solid;
+  border-width: 0 0 1px;
+  border-style: solid;
 }
-
 #adminmenu li.current,
 .folded #adminmenu li.wp-menu-open {
-	border: 0 none;
+  border: 0 none;
 }
-
 .folded #adminmenu li.wp-has-current-submenu {
-	margin-bottom: 1px;
+  margin-bottom: 1px;
 }
-
 .folded #adminmenu .wp-has-current-submenu.menu-top-last {
-	margin-bottom: 0;
+  margin-bottom: 0;
+}
+.wp-menu-arrow {
+  z-index: 25;
+  position: absolute;
+  right: 100%;
+  margin: 0;
+  height: 30px;
+  width: 6px;
+  -moz-transform: translate(146px);
+  -webkit-transform: translate(146px);
+  -o-transform: translate(146px);
+  -ms-transform: translate(146px);
+  transform: translate(146px);
 }
-
 #adminmenu .awaiting-mod,
 #adminmenu span.update-plugins,
 #sidemenu li a span.update-plugins {
-	position: absolute;
-	font-family: sans-serif;
-	font-size: 9px;
-	line-height: 17px;
-	font-weight: bold;
-	margin-top: 1px;
-	margin-left: 7px;
-	-webkit-border-radius: 10px;
-	border-radius: 10px;
-	z-index: 26;
+  position: absolute;
+  font-family: sans-serif;
+  font-size: 9px;
+  font-weight: bold;
+  line-height: 17px;
+  margin-top: 1px;
+  margin-left: 7px;
+  border-radius: 10px;
+  -moz-border-radius: 10px;
+  -webkit-border-radius: 10px;
+  z-index: 26;
 }
-
 #adminmenu li .awaiting-mod span,
 #adminmenu li span.update-plugins span,
 #sidemenu li a span.update-plugins span {
-	display: block;
-	padding: 0 6px;
+  display: block;
+  padding: 0 6px;
 }
-
 #adminmenu li span.count-0,
 #sidemenu li a .count-0 {
-	display: none;
+  display: none;
 }
-
 #collapse-menu {
-	font-size: 12px;
-	line-height: 34px;
-	border-width: 1px 0 0;
-	border-style: solid;
+  font-size: 12px;
+  line-height: 34px;
+  border-width: 1px 0 0;
+  border-style: solid;
 }
-
 .folded #collapse-menu span {
-	display: none;
+  display: none;
 }
-
 #collapse-button,
 #collapse-button div {
-	width: 15px;
-	height: 15px;
+  width: 15px;
+  height: 15px;
 }
-
 #collapse-button {
-	float: left;
-	margin: 8px 6px;
-	border-width: 1px;
-	border-style: solid;
-	-webkit-border-radius: 10px;
-	border-radius: 10px;
+  float: left;
+  margin: 8px 6px;
+  border-width: 1px;
+  border-style: solid;
+  border-radius: 10px;
+  -moz-border-radius: 10px;
+  -webkit-border-radius: 10px;
 }
-
 /* Auto-folding of the admin menu */
 @media only screen and (max-width: 900px) {
-	.auto-fold #wpcontent,
-	.auto-fold #wpfooter {
-		margin-left: 52px;
-	}
-
-	.auto-fold #adminmenuback,
-	.auto-fold #adminmenuwrap,
-	.auto-fold #adminmenu,
-	.auto-fold #adminmenu li.menu-top {
-		width: 32px;
-	}
-
-	.auto-fold #adminmenu .wp-submenu.sub-open,
-	.auto-fold #adminmenu .opensub .wp-submenu,
-	.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
-	.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
-	.auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
-	.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu  {
-		top: -1px;
-		left: 32px;
-	}
-
-	.auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
-	.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
-		border-width: 1px;
-		border-style: solid;
-		position: absolute;
-		top: -1000em;
-	}
-
-	.auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
-		padding-left: 12px;
-	}
-
-	.auto-fold #adminmenu .wp-menu-name {
-		display: none;
-	}
-
-	.auto-fold #adminmenu .wp-submenu-head {
-		display: block;
-	}
-
-	.auto-fold #adminmenu div.wp-menu-image {
-		width: 32px;
-		position: absolute;
-		z-index: 25;
-	}
-
-	.auto-fold #adminmenu a.menu-top {
-		height: 28px;
-	}
-
-	.auto-fold #adminmenu li .wp-menu-arrow {
-		-moz-transform:    translate( 32px );
-		-webkit-transform: translate( 32px );
-		-o-transform:      translate( 32px );
-		-ms-transform:     translate( 32px );
-		transform:         translate( 32px );
-	}
-
-	.auto-fold #adminmenu li .wp-menu-arrow div {
-		display: none;
-	}
-
-	.auto-fold #adminmenu li.current .wp-menu-arrow,
-	.auto-fold #adminmenu li.current .wp-menu-arrow div,
-	.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
-	.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,
-	.auto-fold #adminmenu li a:focus .wp-menu-arrow {
-		display: block;
-	}
-
-	.auto-fold #adminmenu li.wp-menu-open {
-		border: 0 none;
-	}
-
-	.auto-fold #adminmenu li.wp-has-current-submenu {
-		margin-bottom: 1px;
-	}
-
-	.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
-		margin-bottom: 0;
-	}
-
-	.auto-fold #collapse-menu span {
-		display: none;
-	}
-
+  .auto-fold #wpcontent,
+  .auto-fold #wpfooter {
+    margin-left: 52px;
+  }
+  .auto-fold #adminmenuback,
+  .auto-fold #adminmenuwrap,
+  .auto-fold #adminmenu,
+  .auto-fold #adminmenu li.menu-top {
+    width: 32px;
+  }
+  .auto-fold #adminmenu .wp-submenu.sub-open,
+  .auto-fold #adminmenu .opensub .wp-submenu,
+  .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,
+  .auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,
+  .auto-fold #adminmenu a.menu-top:focus + .wp-submenu,
+  .auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus + .wp-submenu {
+    top: -1px;
+    left: 32px;
+  }
+  .auto-fold #adminmenu a.wp-has-current-submenu:focus + .wp-submenu,
+  .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu {
+    border-width: 1px;
+    border-style: solid;
+    position: absolute;
+    top: -1000em;
+  }
+  .auto-fold #adminmenu li.menu-top .wp-submenu > li > a {
+    padding-left: 12px;
+  }
+  .auto-fold #adminmenu .wp-menu-name {
+    display: none;
+  }
+  .auto-fold #adminmenu .wp-submenu-head {
+    display: block;
+  }
+  .auto-fold #adminmenu div.wp-menu-image {
+    width: 32px;
+    position: absolute;
+    z-index: 25;
+  }
+  .auto-fold #adminmenu a.menu-top {
+    height: 28px;
+  }
+  .auto-fold #adminmenu li .wp-menu-arrow {
+    -moz-transform: translate(32px);
+    -webkit-transform: translate(32px);
+    -o-transform: translate(32px);
+    -ms-transform: translate(32px);
+    transform: translate(32px);
+  }
+  .auto-fold #adminmenu li .wp-menu-arrow div {
+    display: none;
+  }
+  .auto-fold #adminmenu li.current .wp-menu-arrow,
+  .auto-fold #adminmenu li.current .wp-menu-arrow div,
+  .auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,
+  .auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,
+  .auto-fold #adminmenu li a:focus .wp-menu-arrow {
+    display: block;
+  }
+  .auto-fold #adminmenu li.wp-menu-open {
+    border: 0 none;
+  }
+  .auto-fold #adminmenu li.wp-has-current-submenu {
+    margin-bottom: 1px;
+  }
+  .auto-fold #adminmenu .wp-has-current-submenu.menu-top-last {
+    margin-bottom: 0;
+  }
+  .auto-fold #collapse-menu span {
+    display: none;
+  }
 }
-
 /* List table styles */
 .post-com-count-wrapper {
-	min-width: 22px;
-	font-family: sans-serif;
+  min-width: 22px;
+  font-family: sans-serif;
 }
-
 .post-com-count {
-	background-image: url('../images/bubble_bg.gif');
-	height: 1.3em;
-	line-height: 1.1em;
-	display: block;
-	text-decoration: none;
-	padding: 0 0 6px;
-	cursor: pointer;
-	background-position: center -80px;
-	background-repeat: no-repeat;
+  background-image: url('../images/bubble_bg.gif');
+  height: 1.3em;
+  line-height: 1.1em;
+  display: block;
+  text-decoration: none;
+  padding: 0 0 6px;
+  cursor: pointer;
+  background-position: center -80px;
+  background-repeat: no-repeat;
 }
-
 .post-com-count span {
-	font-size: 11px;
-	font-weight: bold;
-	height: 1.4em;
-	line-height: 1.4em;
-	min-width: 0.7em;
-	padding: 0 6px;
-	display: inline-block;
-	-webkit-border-radius: 5px;
-	border-radius: 5px;
+  font-size: 11px;
+  font-weight: bold;
+  line-height: 1.4em;
+  height: 1.4em;
+  min-width: 0.7em;
+  padding: 0 6px;
+  display: inline-block;
+  border-radius: 5px;
+  -moz-border-radius: 5px;
+  -webkit-border-radius: 5px;
 }
-
 strong .post-com-count {
-	background-position: center -55px;
+  background-position: center -55px;
 }
-
 .post-com-count:hover {
-	background-position: center -3px;
+  background-position: center -3px;
 }
-
 .column-response .post-com-count {
-	float: left;
-	margin-right: 5px;
-	text-align: center;
+  float: left;
+  margin-right: 5px;
+  text-align: center;
 }
-
 .response-links {
-	float: left;
+  float: left;
 }
-
 #the-comment-list .attachment-80x60 {
-	padding: 4px 8px;
+  padding: 4px 8px;
 }
-
 th .comment-grey-bubble {
-	background-image: url('../images/comment-grey-bubble.png');
-	background-repeat: no-repeat;
-	height: 12px;
-	width: 12px;
+  background-image: url('../images/comment-grey-bubble.png');
+  background-repeat: no-repeat;
+  height: 12px;
+  width: 12px;
 }
-
 /*------------------------------------------------------------------------------
   8.0 - Layout Blocks
 ------------------------------------------------------------------------------*/
-
 html.wp-toolbar {
-	padding-top: 28px;
-	-webkit-box-sizing: border-box;
-	-moz-box-sizing: border-box;
-	box-sizing: border-box;
+  padding-top: 28px;
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  -ms-box-sizing: border-box;
+  box-sizing: border-box;
 }
-
 .narrow {
-	width: 70%;
-	margin-bottom: 40px;
+  width: 70%;
+  margin-bottom: 40px;
 }
-
 .narrow p {
-	line-height: 150%;
+  line-height: 150%;
 }
-
 .widefat th,
 .widefat td {
-	overflow: hidden;
+  overflow: hidden;
 }
-
 .widefat th {
-	font-weight: normal;
+  font-weight: normal;
 }
-
 .widefat td p {
-	margin: 2px 0 0.8em;
+  margin: 2px 0 0.8em;
 }
-
 .widefat .column-comment p {
-	margin: 0.6em 0;
+  margin: 0.6em 0;
 }
-
 /* Screens with postboxes */
 .postbox-container {
-	float: left;
+  float: left;
 }
-
 #dashboard-widgets.columns-1 .postbox-container {
-	width: 100%;
+  width: 100%;
 }
-
 #dashboard-widgets.columns-2 .postbox-container {
-	width: 49.5%;
+  width: 49.5%;
 }
-
 #dashboard-widgets.columns-2 #postbox-container-2,
 #dashboard-widgets.columns-2 #postbox-container-3,
 #dashboard-widgets.columns-2 #postbox-container-4 {
-	float: right;
-	width: 50.5%;
+  float: right;
+  width: 50.5%;
 }
-
 #dashboard-widgets.columns-3 .postbox-container {
-	width: 33.5%;
+  width: 33.5%;
 }
-
 #dashboard-widgets.columns-3 #postbox-container-1 {
-	width: 33%;
+  width: 33%;
 }
-
 #dashboard-widgets.columns-3 #postbox-container-3,
 #dashboard-widgets.columns-3 #postbox-container-4 {
-	float: right;
+  float: right;
 }
-
 #dashboard-widgets.columns-4 .postbox-container {
-	width: 25%;
+  width: 25%;
 }
-
 .postbox-container .meta-box-sortables {
-	-moz-box-sizing: border-box;
-	-webkit-box-sizing: border-box;
-	-ms-box-sizing: border-box;
-	box-sizing: border-box;
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  -ms-box-sizing: border-box;
+  box-sizing: border-box;
 }
-
 .metabox-holder .postbox-container .empty-container {
-	border: 3px dashed #CCCCCC;
-	height: 250px;
+  border: 3px dashed #ccc;
+  height: 250px;
 }
-
 .metabox-holder.columns-1 .postbox-container .empty-container,
 .columns-2 #postbox-container-3 .empty-container,
 .columns-2 #postbox-container-4 .empty-container,
 .columns-3 #postbox-container-4 .empty-container {
-	border: 0 none;
-	height: 0;
-	min-height: 0;
+  border: 0 none;
+  height: 0;
+  min-height: 0;
 }
-
 #poststuff {
-	padding-top: 10px;
+  padding-top: 10px;
 }
-
 #poststuff #post-body {
-	padding: 0;
-}
-
-#post-body-content {
-	width: 100%;
-	float: left;
+  padding: 0;
 }
-
 #poststuff .postbox-container {
-	width: 100%;
+  width: 100%;
 }
-
 #poststuff #post-body.columns-2 {
-	margin-right: 300px;
+  margin-right: 300px;
+}
+#post-body-content {
+  width: 100%;
+  float: left;
 }
-
 #post-body.columns-2 #postbox-container-1 {
-	float: right;
-	margin-right: -300px;
-	width: 280px;
+  float: right;
+  margin-right: -300px;
+  width: 280px;
 }
-
 #post-body.columns-2 #side-sortables {
-	min-height: 250px;
+  min-height: 250px;
 }
-
 /* one column on the dash */
 @media only screen and (max-width: 799px) {
-	#wpbody-content #dashboard-widgets .postbox-container {
-		width: 100%;
-	}
-
-	#wpbody-content .metabox-holder .postbox-container .empty-container {
-		border: 0 none;
-		height: 0;
-		min-height: 0;
-	}
+  #wpbody-content #dashboard-widgets .postbox-container {
+    width: 100%;
+  }
+  #wpbody-content .metabox-holder .postbox-container .empty-container {
+    border: 0 none;
+    height: 0;
+    min-height: 0;
+  }
 }
-
 /* two columns on the dash, but keep the setting if one is selected */
 @media only screen and (min-width: 800px) and (max-width: 1200px) {
-	#wpbody-content #dashboard-widgets .postbox-container {
-		width: 49.5%;
-	}
-
-	#wpbody-content #dashboard-widgets #postbox-container-2,
-	#wpbody-content #dashboard-widgets #postbox-container-3,
-	#wpbody-content #dashboard-widgets #postbox-container-4 {
-		float: right;
-		width: 50.5%;
-	}
-
-	#dashboard-widgets #postbox-container-3 .empty-container,
-	#dashboard-widgets #postbox-container-4 .empty-container {
-		border: 0 none;
-		height: 0;
-		min-height: 0;
-	}
-
-	#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
-		width: 100%;
-	}
-
-	#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
-		border: 0 none;
-		height: 0;
-		min-height: 0;
-	}
-
-	/* show the radio buttons for column prefs only for one or two columns */
-	.index-php .screen-layout,
-	.index-php .columns-prefs {
-		display: block;
-	}
-
-	.columns-prefs .columns-prefs-3,
-	.columns-prefs .columns-prefs-4 {
-		display: none;
-	}
+  #wpbody-content #dashboard-widgets .postbox-container {
+    width: 49.5%;
+  }
+  #wpbody-content #dashboard-widgets #postbox-container-2,
+  #wpbody-content #dashboard-widgets #postbox-container-3,
+  #wpbody-content #dashboard-widgets #postbox-container-4 {
+    float: right;
+    width: 50.5%;
+  }
+  #dashboard-widgets #postbox-container-3 .empty-container,
+  #dashboard-widgets #postbox-container-4 .empty-container {
+    border: 0 none;
+    height: 0;
+    min-height: 0;
+  }
+  #wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container {
+    width: 100%;
+  }
+  #wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container {
+    border: 0 none;
+    height: 0;
+    min-height: 0;
+  }
+  /* show the radio buttons for column prefs only for one or two columns */
+  .index-php .screen-layout,
+  .index-php .columns-prefs {
+    display: block;
+  }
+  .columns-prefs .columns-prefs-3,
+  .columns-prefs .columns-prefs-4 {
+    display: none;
+  }
 }
-
 /* one column on the post write/edit screen */
 @media only screen and (max-width: 850px) {
-	#wpbody-content #poststuff #post-body {
-		margin: 0;
-	}
-
-	#wpbody-content #post-body.columns-2 #postbox-container-1 {
-		margin-right: 0;
-		width: 100%;
-	}
-
-	#poststuff #postbox-container-1 .empty-container,
-	#poststuff #postbox-container-1 #side-sortables:empty {
-		border: 0 none;
-		height: 0;
-		min-height: 0;
-	}
-
-	#poststuff #post-body.columns-2 #side-sortables {
-		min-height: 0;
-	}
-
-	/* hide the radio buttons for column prefs */
-	.screen-layout,
-	.columns-prefs {
-		display: none;
-	}
+  #wpbody-content #poststuff #post-body {
+    margin: 0;
+  }
+  #wpbody-content #post-body.columns-2 #postbox-container-1 {
+    margin-right: 0;
+    width: 100%;
+  }
+  #poststuff #postbox-container-1 .empty-container,
+  #poststuff #postbox-container-1 #side-sortables:empty {
+    border: 0 none;
+    height: 0;
+    min-height: 0;
+  }
+  #poststuff #post-body.columns-2 #side-sortables {
+    min-height: 0;
+  }
+  /* hide the radio buttons for column prefs */
+  .screen-layout,
+  .columns-prefs {
+    display: none;
+  }
 }
-
 .postbox .hndle {
-	-webkit-border-top-left-radius: 3px;
-	-webkit-border-top-right-radius: 3px;
-	border-top-left-radius: 3px;
-	border-top-right-radius: 3px;
+  border-top-left-radius: 3px;
+  border-top-right-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
 }
-
 .js .postbox .hndle {
-	cursor: move;
+  cursor: move;
 }
-
 .postbox.closed .hndle {
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
 }
-
 .hndle a {
-	font-size: 11px;
-	font-weight: normal;
+  font-size: 11px;
+  font-weight: normal;
 }
-
 .postbox .handlediv {
-	float: right;
-	width: 27px;
-	height: 30px;
+  float: right;
+  width: 27px;
+  height: 30px;
 }
-
 .js .postbox .handlediv {
-	cursor: pointer;
+  cursor: pointer;
 }
-
 .sortable-placeholder {
-	border-width: 1px;
-	border-style: dashed;
-	margin-bottom: 20px;
+  border-width: 1px;
+  border-style: dashed;
+  margin-bottom: 20px;
 }
-
 .widget,
 .postbox,
 .stuffbox {
-	margin-bottom: 20px;
-	padding: 0;
-	border-width: 1px;
-	border-style: solid;
-	line-height: 1;
+  margin-bottom: 20px;
+  padding: 0;
+  border-width: 1px;
+  border-style: solid;
+  line-height: 1;
 }
-
 .widget .widget-top,
 .postbox h3,
 .stuffbox h3 {
-	margin-top: 1px;
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
-	-webkit-user-select: none;
-	-moz-user-select: none;
-	user-select: none;
+  margin-top: 1px;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none;
 }
-
 .js .widget .widget-top,
 .js .postbox h3 {
-	cursor: move;
+  cursor: move;
 }
-
 .postbox .inside,
 .stuffbox .inside {
-	padding: 0 12px 0 10px;
-	line-height: 1.4em;
+  padding: 0 12px 0 10px;
+  line-height: 1.4em;
 }
-
 .postbox .inside {
-	margin: 10px 0;
-	position: relative;
+  margin: 10px 0;
+  position: relative;
 }
-
 .postbox.closed h3 {
-	border: none;
-	-webkit-box-shadow: none;
-	box-shadow: none;
+  border: none;
+  -moz-box-shadow: none;
+  -webkit-box-shadow: none;
+  box-shadow: none;
 }
-
 .postbox table.form-table {
-	margin-bottom: 0;
+  margin-bottom: 0;
 }
-
 .temp-border {
-	border: 1px dotted #ccc;
+  border: 1px dotted #ccc;
 }
-
 .columns-prefs label {
-	padding: 0 5px;
+  padding: 0 5px;
 }
-
-
 /*------------------------------------------------------------------------------
   9.0 - Dashboard
 ------------------------------------------------------------------------------*/
-
 #dashboard-widgets-wrap {
-	margin: 0 -8px;
+  margin: 0 -8px;
 }
-
 #wpbody-content .metabox-holder {
-	padding-top: 10px;
+  padding-top: 10px;
 }
-
 #dashboard-widgets .meta-box-sortables {
-	margin: 0 8px;
+  margin: 0 8px;
 }
-
 #dashboard_recent_comments div.undo {
-	border-top-style: solid;
-	border-top-width: 1px;
-	margin: 0 -10px;
-	padding: 3px 8px;
-	font-size: 11px;
-}
-
-#the-comment-list td.comment p.comment-author {
-	margin-top: 0;
-	margin-left: 0;
-}
-
-#the-comment-list p.comment-author img {
-	float: left;
-	margin-right: 8px;
-}
-
-#the-comment-list p.comment-author strong a {
-	border: none;
-}
-
-#the-comment-list td {
-	vertical-align: top;
-}
-
-#the-comment-list td.comment {
-	word-wrap: break-word;
+  border-top-style: solid;
+  border-top-width: 1px;
+  margin: 0 -10px;
+  padding: 3px 8px;
+  font-size: 11px;
 }
-
 /* Welcome Panel */
 .welcome-panel {
-	position: relative;
-	overflow: auto;
-	margin: 20px 0;
-	padding: 23px 10px 12px;
-	border-width: 1px;
-	border-style: solid;
-	border-radius: 3px;
-	font-size: 13px;
-	line-height: 2.1em;
+  position: relative;
+  overflow: auto;
+  margin: 20px 0;
+  padding: 23px 10px 12px;
+  border-width: 1px;
+  border-style: solid;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  font-size: 13px;
+  line-height: 2.1em;
 }
-
 .welcome-panel h3 {
-	margin: 0;
-	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
-	font-size: 21px;
-	font-weight: normal;
-	line-height: 1.2;
+  margin: 0;
+  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
+  font-size: 21px;
+  font-weight: normal;
+  line-height: 1.2;
 }
 .welcome-panel h4 {
-	margin: 1.33em 0 0;
-	font-size: 13px;
+  margin: 1.33em 0 0;
+  font-size: 13px;
 }
-
 .welcome-panel .about-description {
-	font-size: 16px;
-	margin: 0;
+  font-size: 16px;
+  margin: 0;
 }
-
 .welcome-panel .welcome-panel-close {
-	position: absolute;
-	top: 5px;
-	right: 10px;
-	padding: 8px 3px;
-	font-size: 13px;
-	text-decoration: none;
-	line-height: 1;
+  position: absolute;
+  top: 5px;
+  right: 10px;
+  padding: 8px 3px;
+  font-size: 13px;
+  text-decoration: none;
+  line-height: 1;
 }
-
 .welcome-panel .welcome-panel-close:before {
-	content: ' ';
-	position: absolute;
-	left: -12px;
-	width: 10px;
-	height: 100%;
-	background: url('../images/xit.gif') 0 17% no-repeat;
+  content: ' ';
+  position: absolute;
+  left: -12px;
+  width: 10px;
+  height: 100%;
+  background: url('../images/xit.gif') 0 17% no-repeat;
 }
-
 .welcome-panel .welcome-panel-close:hover:before {
-	background-position: 100% 17%;
+  background-position: 100% 17%;
 }
-
 .wp-core-ui .welcome-panel .button.button-hero {
-    margin: 15px 0 3px;
+  margin: 15px 0 3px;
 }
-
-.welcome-panel-content {
-	margin-left: 13px;
-	max-width: 1500px;
-}
-
 .welcome-panel .welcome-panel-column-container {
-	clear: both;
-	overflow: hidden;
-	position: relative;
+  clear: both;
+  overflow: hidden;
+  position: relative;
 }
-
 .welcome-panel .welcome-panel-column {
-	width: 32%;
-	min-width: 200px;
-	float: left;
-}
-
-.ie8 .welcome-panel .welcome-panel-column {
-	min-width: 230px;
+  width: 32%;
+  min-width: 200px;
+  float: left;
 }
-
 .welcome-panel .welcome-panel-column:first-child {
-	width: 36%;
+  width: 36%;
 }
-
-.welcome-panel-column p {
-	margin-top: 7px;
+.welcome-panel .welcome-panel-column ul {
+  margin: 0.8em 1em 1em 0;
+}
+.welcome-panel .welcome-panel-column li {
+  line-height: 16px;
+  list-style-type: none;
+}
+.ie8 .welcome-panel .welcome-panel-column {
+  min-width: 230px;
 }
-
 .welcome-panel .welcome-icon {
-	display: block;
-	padding: 2px 0 8px 32px;
-	background-image: url('../images/welcome-icons.png');
-	background-repeat: no-repeat;
-	background-size: 16px;
+  display: block;
+  padding: 2px 0 8px 32px;
+  background-image: url('../images/welcome-icons.png');
+  background-repeat: no-repeat;
+  background-size: 16px;
 }
-
 .welcome-panel .welcome-add-page {
-	background-position: 0 2px;
+  background-position: 0 2px;
 }
-
 .welcome-panel .welcome-edit-page {
-	background-position: 0 -90px;
+  background-position: 0 -90px;
 }
-
 .welcome-panel .welcome-learn-more {
-	background-position: 0 -136px;
+  background-position: 0 -136px;
 }
-
 .welcome-panel .welcome-comments {
-	background-position: 0 -182px;
+  background-position: 0 -182px;
 }
-
 .welcome-panel .welcome-view-site {
-	background-position: 0 -274px;
+  background-position: 0 -274px;
 }
-
 .welcome-panel .welcome-widgets-menus {
-	background-position: 1px -229px;
-	line-height: 14px;
+  background-position: 1px -229px;
+  line-height: 14px;
 }
-
 .welcome-panel .welcome-write-blog {
- 	background-position: 0 -44px;
+  background-position: 0 -44px;
 }
-
-.welcome-panel .welcome-panel-column ul {
-	margin: 0.8em 1em 1em 0;
+.welcome-panel-content {
+  margin-left: 13px;
+  max-width: 1500px;
 }
-
-.welcome-panel .welcome-panel-column li {
-    line-height: 16px;
-    list-style-type: none;
+.welcome-panel-content p {
+  margin-top: 7px;
 }
-
 @media screen and (max-width: 870px) {
-	.welcome-panel .welcome-panel-column,
-	.welcome-panel .welcome-panel-column:first-child {
-		display: block;
-		float: none;
-		width: 100%;
-	}
-
-	.welcome-panel .welcome-panel-column li {
-		display: inline-block;
-		margin-right: 13px;
-	}
-
-	.welcome-panel .welcome-panel-column ul {
-		margin: 0.4em 0 0;
-	}
-
-	.welcome-panel .welcome-icon {
-		padding-left: 25px;
-	}
+  .welcome-panel .welcome-panel-column,
+  .welcome-panel .welcome-panel-column:first-child {
+    display: block;
+    float: none;
+    width: 100%;
+  }
+  .welcome-panel .welcome-panel-column li {
+    display: inline-block;
+    margin-right: 13px;
+  }
+  .welcome-panel .welcome-panel-column ul {
+    margin: 0.4em 0 0;
+  }
+  .welcome-panel .welcome-icon {
+    padding-left: 25px;
+  }
 }
-
-/*------------------------------------------------------------------------------
-  10.0 - List Posts (/Pages/etc)
-------------------------------------------------------------------------------*/
-
-table.fixed {
-	table-layout: fixed;
+/* dashboard */
+.edit-box {
+  display: none;
 }
-
-.fixed .column-rating,
-.fixed .column-visible {
-	width: 8%;
+h3:hover .edit-box {
+  display: inline;
 }
-
-.fixed .column-posts,
-.fixed .column-date,
-.fixed .column-parent,
-.fixed .column-links,
-.fixed .column-author,
-.fixed .column-format {
-	width: 10%;
+#dashboard-widgets form .input-text-wrap input {
+  width: 100%;
 }
-
-.fixed .column-response,
-.fixed .column-categories,
-.fixed .column-tags,
-.fixed .column-rel,
-.fixed .column-role {
-	width: 15%;
+#dashboard-widgets form .textarea-wrap textarea {
+  width: 100%;
 }
-
-.fixed .column-slug {
-	width: 25%;
+#dashboard-widgets .postbox form .submit {
+  float: none;
+  margin: .5em 0 0;
+  padding: 0;
+  border: none;
 }
-
-.fixed .column-locations {
-	width: 35%;
+#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
+  min-width: 0;
 }
-
-.fixed .column-comments {
-	width: 4em;
-	padding: 8px 0;
-	text-align: left;
+#dashboard-widgets a {
+  text-decoration: none;
 }
-
-.fixed .column-comments .vers {
-	padding-left: 3px;
+#dashboard-widgets h3 a {
+  text-decoration: underline;
 }
-
-.fixed .column-comments a {
-	float: left;
+#dashboard-widgets h3 .postbox-title-action {
+  position: absolute;
+  right: 10px;
+  padding: 0;
+  top: 5px;
 }
-
-.fixed .column-icon {
-	width: 80px;
+.js #dashboard-widgets h3 .postbox-title-action {
+  right: 30px;
+}
+#dashboard-widgets h4 {
+  font-size: 13px;
+  font-weight: normal;
+  line-height: 1;
+  margin: 0 0 .2em;
+  padding: 0;
+}
+/* Right Now */
+#dashboard_right_now p.sub,
+#dashboard_right_now .table,
+#dashboard_right_now .versions {
+  margin: -12px;
+}
+#dashboard_right_now .inside {
+  font-size: 12px;
+  padding-top: 20px;
+}
+#dashboard_right_now p.sub {
+  padding: 5px 0 15px;
+  color: #8f8f8f;
+  font-size: 14px;
+  position: absolute;
+  top: -17px;
+  left: 15px;
+}
+#dashboard_right_now .table {
+  margin: 0;
+  padding: 0;
+  position: relative;
+}
+#dashboard_right_now .table_content {
+  float: left;
+  border-top-width: 1px;
+  border-top-style: solid;
+  width: 45%;
+}
+#dashboard_right_now .table_discussion {
+  float: right;
+  border-top-width: 1px;
+  border-top-style: solid;
+  width: 45%;
+}
+#dashboard_right_now table td {
+  padding: 3px 0;
+  white-space: nowrap;
+}
+#dashboard_right_now table tr.first td {
+  border-top: none;
+}
+#dashboard_right_now td.b {
+  padding-right: 6px;
+  text-align: right;
+  font-size: 14px;
+  width: 1%;
+}
+#dashboard_right_now td.b a {
+  font-size: 18px;
+}
+#dashboard_right_now td.b a:hover {
+  color: #d54e21;
+}
+#dashboard_right_now .t {
+  font-size: 12px;
+  padding-right: 12px;
+  padding-top: 6px;
+  color: #777;
+}
+#dashboard_right_now .t a {
+  white-space: nowrap;
+}
+#dashboard_right_now .spam {
+  color: red;
+}
+#dashboard_right_now .waiting {
+  color: #e66f00;
+}
+#dashboard_right_now .approved {
+  color: green;
+}
+#dashboard_right_now .versions {
+  padding: 6px 10px 12px;
+  clear: both;
+}
+#dashboard_right_now a.button {
+  float: right;
+  clear: right;
+  position: relative;
+  top: -5px;
+}
+/* Recent Comments */
+#dashboard_recent_comments h3 {
+  margin-bottom: 0;
+}
+#dashboard_recent_comments .inside {
+  margin-top: 0;
+}
+#dashboard_recent_comments .comment-meta .approve {
+  font-style: italic;
+  font-family: sans-serif;
+  font-size: 10px;
+}
+#dashboard_recent_comments .subsubsub {
+  float: none;
+  white-space: normal;
+}
+#the-comment-list {
+  position: relative;
+}
+#the-comment-list p.comment-author img {
+  float: left;
+  margin-right: 8px;
+}
+#the-comment-list p.comment-author strong a {
+  border: none;
+}
+#the-comment-list td {
+  vertical-align: top;
+}
+#the-comment-list td.comment {
+  word-wrap: break-word;
+}
+#the-comment-list td.comment p.comment-author {
+  margin-top: 0;
+  margin-left: 0;
+}
+#the-comment-list .comment-item {
+  padding: 1em 10px;
+  border-top: 1px solid;
+}
+#the-comment-list .comment-item .avatar {
+  float: left;
+  margin: 0 10px 5px 0;
+}
+#the-comment-list .comment-item h4 {
+  line-height: 1.7em;
+  margin-top: -0.4em;
+  color: #777;
+}
+#the-comment-list .comment-item h4 cite {
+  font-style: normal;
+  font-weight: normal;
+}
+#the-comment-list .comment-item:first-child {
+  border-top: none;
+}
+#the-comment-list .comment-item blockquote,
+#the-comment-list .comment-item blockquote p {
+  margin: 0;
+  padding: 0;
+  display: inline;
+}
+#the-comment-list .comment-item p.row-actions {
+  margin: 3px 0 0;
+  padding: 0;
+  font-size: 12px;
+}
+#the-comment-list .pingback {
+  padding-left: 9px !important;
+}
+#the-comment-list .comment-item,
+#the-comment-list #replyrow {
+  margin: 0 -10px;
+}
+#dashboard_recent_comments #the-comment-list .trackback blockquote,
+#dashboard_recent_comments #the-comment-list .pingback blockquote {
+  display: block;
+}
+/* QuickPress */
+#title-wrap label,
+#tags-input-wrap label {
+  cursor: text;
+}
+#title-wrap #title {
+  padding: 2px 6px;
+  font-size: 1.3em;
+  line-height: 100%;
+  outline: none;
+}
+#title-wrap #title-prompt-text {
+  font-size: 1.3em;
+  padding: 5px 8px;
+}
+#tags-input-wrap #tags-input {
+  outline: none;
+}
+#tags-input-wrap #tags-input-prompt-text {
+  font-size: 1em;
+  padding: 4px 8px;
+}
+.no-js #dashboard_quick_press {
+  display: none;
+}
+#dashboard_quick_press .easy-blogging {
+  padding: 0 8px;
+  text-align: left;
+}
+#dashboard_quick_press .input-text-wrap {
+  position: relative;
+}
+#dashboard_quick_press .prompt {
+  color: #bbb;
+  position: absolute;
+}
+#dashboard_quick_press div.updated {
+  padding: 0 5px;
+}
+#dashboard_quick_press .input-text-wrap,
+#dashboard_quick_press .textarea-wrap {
+  margin: 0 0 1em 0;
+}
+#dashboard_quick_press .wp-media-buttons {
+  margin: 0 0 .2em 1px;
+  padding: 0;
+}
+#dashboard_quick_press .wp-media-buttons a {
+  color: #777;
+}
+#dashboard-widgets #dashboard_quick_press form p.submit input {
+  float: left;
+}
+#dashboard-widgets #dashboard_quick_press form p.submit #save-post {
+  margin: 0 0.7em 0 1px;
+}
+#dashboard-widgets #dashboard_quick_press form p.submit #publish {
+  float: right;
+}
+#dashboard-widgets #dashboard_quick_press form p.submit .spinner {
+  vertical-align: middle;
+  margin: 4px 6px 0 0;
+}
+/* Recent Drafts */
+#dashboard_recent_drafts ul,
+#dashboard_recent_drafts p {
+  margin: 0;
+  padding: 0;
+  word-wrap: break-word;
+}
+#dashboard_recent_drafts ul {
+  list-style: none;
+}
+#dashboard_recent_drafts ul li {
+  margin-bottom: 1em;
+}
+#dashboard_recent_drafts h4 {
+  line-height: 1.7em;
+  word-wrap: break-word;
+}
+#dashboard_recent_drafts h4 abbr {
+  font-weight: normal;
+  font-family: sans-serif;
+  font-size: 12px;
+  color: #999;
+  margin-left: 3px;
+}
+/* Feeds */
+.rss-widget ul {
+  margin: 0;
+  padding: 0;
+  list-style: none;
+}
+.rss-widget ul li {
+  line-height: 1.5em;
+  margin-bottom: 12px;
+}
+.rss-widget span.rss-date {
+  color: #999;
+  font-size: 12px;
+  margin-left: 3px;
+}
+.rss-widget cite {
+  display: block;
+  text-align: right;
+  margin: 0 0 1em;
+  padding: 0;
+}
+.rss-widget cite:before {
+  content: '\2014';
+}
+a.rsswidget {
+  font-size: 13px;
+  line-height: 1.7em;
+}
+/* Plugins */
+#dashboard_plugins h4 {
+  line-height: 1.7em;
+}
+#dashboard_plugins h5 {
+  font-size: 13px;
+  font-weight: normal;
+  line-height: 1.4em;
+  margin: 0;
+  display: inline;
+}
+#dashboard_plugins h5 a {
+  line-height: 1.4em;
+}
+#dashboard_plugins .inside span {
+  font-size: 12px;
+  padding-left: 5px;
+}
+#dashboard_plugins p {
+  margin: 0.3em 0 1.4em;
+  line-height: 1.4em;
+}
+.dashboard-comment-wrap {
+  overflow: hidden;
+  word-wrap: break-word;
+}
+/* Browser Nag */
+#dashboard_browser_nag a {
+  color: white;
+  text-decoration: underline;
+}
+#dashboard_browser_nag a.update-browser-link {
+  font-size: 1.2em;
+  font-weight: bold;
+  line-height: normal;
+}
+#dashboard_browser_nag a.browse-happy-link,
+#dashboard_browser_nag a.update-browser-link {
+  text-shadow: #d29a04 0 1px 0;
+}
+#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
+  padding-right: 125px;
+}
+#dashboard_browser_nag .browser-icon {
+  margin-top: -35px;
+}
+#dashboard_browser_nag.postbox {
+  background-color: #e29808;
+  background-image: none;
+  border-color: #edc048;
+  color: white;
+  -moz-box-shadow: none;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+#dashboard_browser_nag.postbox h3 {
+  border-bottom-color: #f6e2ac;
+  text-shadow: none;
+  background: transparent none;
+  color: white;
+  -moz-box-shadow: none;
+  -webkit-box-shadow: none;
+  box-shadow: none;
+}
+#dashboard_browser_nag.postbox.browser-insecure {
+  background-color: #ac1b1b;
+  border-color: #ac1b1b;
+}
+#dashboard_browser_nag.postbox.browser-insecure h3 {
+  border-bottom-color: #cd5a5a;
+  color: white;
+}
+#dashboard_browser_nag.browser-insecure a.browse-happy-link,
+#dashboard_browser_nag.browser-insecure a.update-browser-link {
+  text-shadow: #871b15 0 1px 0;
+}
+/*------------------------------------------------------------------------------
+  10.0 - List Posts (/Pages/etc)
+------------------------------------------------------------------------------*/
+table.fixed {
+  table-layout: fixed;
+}
+.fixed .column-rating,
+.fixed .column-visible {
+  width: 8%;
+}
+.fixed .column-posts,
+.fixed .column-date,
+.fixed .column-parent,
+.fixed .column-links,
+.fixed .column-author,
+.fixed .column-format {
+  width: 10%;
+}
+.fixed .column-response,
+.fixed .column-categories,
+.fixed .column-tags,
+.fixed .column-rel,
+.fixed .column-role {
+  width: 15%;
+}
+.fixed .column-slug {
+  width: 25%;
+}
+.fixed .column-locations {
+  width: 35%;
+}
+.fixed .column-comments {
+  width: 4em;
+  padding: 8px 0;
+  text-align: left;
+}
+.fixed .column-comments .vers {
+  padding-left: 3px;
+}
+.fixed .column-comments a {
+  float: left;
+}
+.fixed .column-icon {
+  width: 80px;
 }
-
 #comments-form .fixed .column-author {
-	width: 20%;
+  width: 20%;
 }
-
 #commentsdiv.postbox .inside {
-	margin: 0;
-	padding: 0;
+  margin: 0;
+  padding: 0;
 }
-
 #commentsdiv .inside .row-actions {
-	line-height:18px;
+  line-height: 18px;
 }
-
 #commentsdiv .inside .column-author {
-	width: 25%;
+  width: 25%;
 }
-
 #commentsdiv .column-comment p {
-	margin: 0.6em 0;
-	padding: 0;
+  margin: 0.6em 0;
+  padding: 0;
 }
-
 #commentsdiv #replyrow td {
-	padding: 0;
+  padding: 0;
 }
-
 #commentsdiv p {
-	padding: 8px 10px;
-	margin: 0;
+  padding: 8px 10px;
+  margin: 0;
 }
-
 #commentsdiv #add-new-comment {
-	border-width: 0 0 1px;
-	border-style: none none solid;
+  border-width: 0 0 1px;
+  border-style: none none solid;
 }
-
 #commentsdiv .comments-box {
-	border: 0 none;
+  border: 0 none;
 }
-
 #commentsdiv .comments-box thead th {
-	background: transparent;
-	padding: 0 7px 4px;
-	font-style: italic;
+  background: transparent;
+  padding: 0 7px 4px;
+  font-style: italic;
 }
-
 #commentsdiv .comments-box tr:last-child td {
-	border-bottom: 0 none;
+  border-bottom: 0 none;
 }
-
 #commentsdiv .spinner {
-	padding-left: 5px;
+  padding-left: 5px;
 }
-
 .sorting-indicator {
-	display: none;
-	width: 7px;
-	height: 4px;
-	margin-top: 8px;
-	margin-left: 7px;
-	background-image: url('../images/sort.gif');
-	background-repeat: no-repeat;
+  display: none;
+  width: 7px;
+  height: 4px;
+  margin-top: 8px;
+  margin-left: 7px;
+  background-image: url('../images/sort.gif');
+  background-repeat: no-repeat;
 }
-
 tr.wp-locked .locked-indicator {
-	background: url('../images/lock.png') no-repeat;
-	margin: -2px 0 0 6px;
-	height: 20px;
-	width: 16px;
+  background: url('../images/lock.png') no-repeat;
+  margin: -2px 0 0 6px;
+  height: 20px;
+  width: 16px;
 }
-
 tr.wp-locked .check-column label,
 tr.wp-locked .check-column input[type="checkbox"],
 tr.wp-locked .row-actions .inline,
 tr.wp-locked .row-actions .trash {
-	display: none;
+  display: none;
 }
-
 tr .locked-info {
-	height: 0;
-	opacity: 0;
+  height: 0;
+  opacity: 0;
 }
-
 tr.wp-locked .locked-info {
-	height: auto;
-	opacity: 1;
+  height: auto;
+  opacity: 1;
 }
-
-tr.locked-info, tr.wp-locked .locked-info {
-	-webkit-transition: height 1s, opacity 500ms;
-	-moz-transition:    height 1s, opacity 500ms;
-	-ms-transition:     height 1s, opacity 500ms;
-	-o-transition:      height 1s, opacity 500ms;
-	transition:         height 1s, opacity 500ms;
+tr.locked-info,
+tr.wp-locked .locked-info {
+  -webkit-transition: height 1s, opacity 500ms;
+  -moz-transition: height 1s, opacity 500ms;
+  -ms-transition: height 1s, opacity 500ms;
+  -o-transition: height 1s, opacity 500ms;
+  transition: height 1s, opacity 500ms;
 }
-
 .fixed .column-comments .sorting-indicator {
-	margin-top: 3px;
+  margin-top: 3px;
 }
-
 #menu-locations-wrap .widefat {
-	width: 60%;
+  width: 60%;
 }
-
 .widefat th.sortable,
 .widefat th.sorted {
-	padding: 0;
+  padding: 0;
 }
-
 th.sortable a,
 th.sorted a {
-	display: block;
-	overflow: hidden;
-	padding: 7px 7px 8px;
+  display: block;
+  overflow: hidden;
+  padding: 7px 7px 8px;
 }
-
 .fixed .column-comments.sortable a,
 .fixed .column-comments.sorted a {
-	padding: 8px 0;
+  padding: 8px 0;
 }
-
 th.sortable a span,
 th.sorted a span {
-	float: left;
-	cursor: pointer;
+  float: left;
+  cursor: pointer;
 }
-
 th.sorted.asc .sorting-indicator,
 th.desc:hover span.sorting-indicator {
-	display: block;
-	background-position: 0 0;
+  display: block;
+  background-position: 0 0;
 }
-
 th.sorted.desc .sorting-indicator,
 th.asc:hover span.sorting-indicator {
-	display: block;
-	background-position: -7px 0;
+  display: block;
+  background-position: -7px 0;
 }
-
 /* Bulk Actions */
 .tablenav-pages a {
-	border-bottom-style: solid;
-	border-bottom-width: 2px;
-	font-weight: bold;
-	margin-right: 1px;
-	padding: 0 2px;
+  border-bottom-style: solid;
+  border-bottom-width: 2px;
+  font-weight: bold;
+  margin-right: 1px;
+  padding: 0 2px;
 }
 .tablenav-pages .current-page {
-	text-align: center;
+  text-align: center;
 }
 .tablenav-pages .next-page {
-	margin-left: 2px;
-}
-
-.tablenav a.button-secondary {
-	display: block;
-	margin: 3px 8px 0 0;
+  margin-left: 2px;
 }
-
 .tablenav {
-	clear: both;
-	height: 30px;
-	margin: 6px 0 4px;
-	vertical-align: middle;
+  clear: both;
+  height: 30px;
+  margin: 6px 0 4px;
+  vertical-align: middle;
 }
-
 .tablenav.themes {
-	max-width: 98%;
+  max-width: 98%;
+}
+.tablenav a.button-secondary {
+  display: block;
+  margin: 3px 8px 0 0;
 }
-
 .tablenav .tablenav-pages {
-	float: right;
-	display: block;
-	cursor: default;
-	height: 30px;
-	line-height: 30px;
-	font-size: 12px;
+  float: right;
+  display: block;
+  cursor: default;
+  height: 30px;
+  line-height: 30px;
+  font-size: 12px;
+}
+.tablenav .tablenav-pages a.disabled:hover,
+.tablenav .tablenav-pages a.disabled:active {
+  cursor: default;
 }
-
 .tablenav .no-pages,
 .tablenav .one-page .pagination-links {
-	display: none;
+  display: none;
 }
-
-.tablenav .tablenav-pages a,
-.tablenav-pages span.current  {
-	text-decoration: none;
-	padding: 3px 6px;
+.tablenav .displaying-num {
+  margin-right: 10px;
+  font-size: 12px;
+  font-style: italic;
 }
-
-.tablenav .tablenav-pages a.disabled:hover ,
-.tablenav .tablenav-pages a.disabled:active {
-	cursor: default;
-}
-
-.tablenav .displaying-num {
-	margin-right: 10px;
-	font-size: 12px;
-	font-style: italic;
-}
-
 .tablenav .actions {
-	overflow: hidden;
-	padding: 2px 8px 0 0;
+  overflow: hidden;
+  padding: 2px 8px 0 0;
 }
-
 .tablenav .delete {
-	margin-right: 20px;
+  margin-right: 20px;
+}
+.tablenav .tablenav-pages a,
+.tablenav-pages span.current {
+  text-decoration: none;
+  padding: 3px 6px;
 }
-
 .view-switch {
-	float: right;
-	margin: 6px 8px 0;
+  float: right;
+  margin: 6px 8px 0;
 }
-
 .view-switch a {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 .filter {
-	float: left;
-	margin: -5px 0 0 10px;
+  float: left;
+  margin: -5px 0 0 10px;
 }
-
 .filter .subsubsub {
-	margin-left: -10px;
-	margin-top: 13px;
+  margin-left: -10px;
+  margin-top: 13px;
 }
 .screen-per-page {
-	width: 4em;
+  width: 4em;
 }
-
 #posts-filter fieldset {
-	float: left;
-	margin: 0 1.5ex 1em 0;
-	padding: 0;
+  float: left;
+  margin: 0 1.5ex 1em 0;
+  padding: 0;
 }
-
 #posts-filter fieldset legend {
-	padding: 0 0 .2em 1px;
+  padding: 0 0 .2em 1px;
 }
-
-
 /*------------------------------------------------------------------------------
   10.1 - Inline Editing
 ------------------------------------------------------------------------------*/
-
 /*
 .quick-edit* is for Quick Edit
 .bulk-edit* is for Bulk Edit
 .inline-edit* is for everything
 */
-
 /*	Layout */
-
 #wpbody-content .inline-edit-row fieldset {
-	font-size: 12px;
-	float: left;
-	margin: 0;
-	padding: 0;
-	width: 100%;
-}
-
-tr.inline-edit-row td,
-#wpbody-content .inline-edit-row fieldset .inline-edit-col {
-	padding: 0 0.5em;
-}
-
-#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
-	border-width: 0 0 0 1px;
-	border-style: none none none solid;
+  font-size: 12px;
+  float: left;
+  margin: 0;
+  padding: 0;
+  width: 100%;
 }
-
 #wpbody-content .quick-edit-row-post .inline-edit-col-left {
-	width: 40%;
+  width: 40%;
 }
-
 #wpbody-content .quick-edit-row-post .inline-edit-col-right {
-	width: 39%;
+  width: 39%;
 }
-
-#wpbody-content .inline-edit-row-post .inline-edit-col-center {
-	width: 20%;
+#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col {
+  border-width: 0 0 0 1px;
+  border-style: none none none solid;
 }
-
 #wpbody-content .quick-edit-row-page .inline-edit-col-left {
-	width: 50%;
+  width: 50%;
+}
+#wpbody-content .inline-edit-row-post .inline-edit-col-center {
+  width: 20%;
 }
-
 #wpbody-content .quick-edit-row-page .inline-edit-col-right,
 #wpbody-content .bulk-edit-row-post .inline-edit-col-right {
-	width: 49%;
+  width: 49%;
 }
-
 #wpbody-content .bulk-edit-row .inline-edit-col-left {
-	width: 30%;
+  width: 30%;
 }
-
 #wpbody-content .bulk-edit-row-page .inline-edit-col-right {
-	width: 69%;
+  width: 69%;
 }
-
 #wpbody-content .bulk-edit-row .inline-edit-col-bottom {
-	float: right;
-	width: 69%;
+  float: right;
+  width: 69%;
 }
-
 #wpbody-content .inline-edit-row-page .inline-edit-col-right {
-	margin-top: 27px;
+  margin-top: 27px;
+}
+tr.inline-edit-row td,
+#wpbody-content .inline-edit-row fieldset .inline-edit-col {
+  padding: 0 0.5em;
 }
+.inline-edit-row {
+  /*	Positioning */
 
+}
 .inline-edit-row fieldset .inline-edit-group {
-	clear: both;
+  clear: both;
 }
-
 .inline-edit-row fieldset .inline-edit-group:after {
-	content: ".";
-	display: block;
-	height: 0;
-	clear: both;
-	visibility: hidden;
+  content: ".";
+  display: block;
+  height: 0;
+  clear: both;
+  visibility: hidden;
 }
-
 .inline-edit-row p.submit {
-	clear: both;
-	padding: 0.5em;
-	margin: 0.5em 0 0;
+  clear: both;
+  padding: 0.5em;
+  margin: 0.5em 0 0;
 }
-
 .inline-edit-row span.error {
-	line-height: 22px;
-	margin: 0 15px;
-	padding: 3px 5px;
+  line-height: 22px;
+  margin: 0 15px;
+  padding: 3px 5px;
 }
-
-/*	Positioning */
 .inline-edit-row h4 {
-	margin: .2em 0;
-	padding: 0;
-	line-height: 23px;
+  margin: .2em 0;
+  padding: 0;
+  line-height: 23px;
+  text-transform: uppercase;
+}
+.inline-edit-row fieldset {
+  /*	Specific Elements */
+
 }
 .inline-edit-row fieldset span.title,
 .inline-edit-row fieldset span.checkbox-title {
-	margin: 0;
-	padding: 0;
-	line-height: 27px;
+  margin: 0;
+  padding: 0;
+  line-height: 27px;
+  font-style: italic;
+  line-height: 1.8em;
 }
-
 .inline-edit-row fieldset label,
 .inline-edit-row fieldset span.inline-edit-categories-label {
-	display: block;
-	margin: .2em 0;
+  display: block;
+  margin: .2em 0;
 }
-
 .inline-edit-row fieldset label.inline-edit-tags {
-	margin-top: 0;
+  margin-top: 0;
 }
-
 .inline-edit-row fieldset label.inline-edit-tags span.title {
-	margin: .2em 0;
-	width: auto;
+  margin: .2em 0;
+  width: auto;
 }
-
 .inline-edit-row fieldset label span.title {
-	display: block;
-	float: left;
-	width: 5em;
+  display: block;
+  float: left;
+  width: 5em;
 }
-
 .inline-edit-row fieldset label span.input-text-wrap {
-	display: block;
-	margin-left: 5em;
+  display: block;
+  margin-left: 5em;
 }
-
-.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
-	width: auto;
-	padding-right: 0.5em;
-}
-
-.inline-edit-row .input-text-wrap input[type=text] {
-	width: 100%;
-}
-
 .inline-edit-row fieldset label input[type=checkbox] {
-	vertical-align: text-bottom;
+  vertical-align: text-bottom;
 }
-
 .inline-edit-row fieldset label textarea {
-	width: 100%;
-	height: 4em;
+  width: 100%;
+  height: 4em;
 }
-
-#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
-	max-width: 50%;
-}
-
-#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
-	margin-right: 0.5em
-}
-
-.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
-	width: 6em;
-}
-
-.inline-edit-save .spinner {
-	padding: 4px 10px 0;
-	vertical-align: top;
-	float: right;
-}
-
-/*	Styling */
-.inline-edit-row h4 {
-	text-transform: uppercase;
-}
-
-.inline-edit-row fieldset span.title,
-.inline-edit-row fieldset span.checkbox-title {
-	font-style: italic;
-	line-height: 1.8em;
-}
-
-/*	Specific Elements */
 .inline-edit-row fieldset input[type="text"],
 .inline-edit-row fieldset textarea {
-	border-style: solid;
-	border-width: 1px;
+  border-style: solid;
+  border-width: 1px;
 }
-
 .inline-edit-row fieldset .inline-edit-date {
-	float: left;
+  float: left;
 }
-
 .inline-edit-row fieldset input[name=jj],
 .inline-edit-row fieldset input[name=hh],
 .inline-edit-row fieldset input[name=mn] {
-	font-size: 12px;
-	width: 2.1em;
+  font-size: 12px;
+  width: 2.1em;
 }
-
 .inline-edit-row fieldset input[name=aa] {
-	font-size: 12px;
-	width: 3.5em;
+  font-size: 12px;
+  width: 3.5em;
 }
-
 .inline-edit-row fieldset label input.inline-edit-password-input {
-	width: 8em;
+  width: 8em;
 }
-
-ul.cat-checklist {
-	height: 12em;
-	border-style: solid;
-	border-width: 1px;
-	overflow-y: scroll;
-	padding: 0 5px;
-	margin: 0;
-}
-
-#bulk-titles {
-	display: block;
-	height: 12em;
-	border-style: solid;
-	border-width: 1px;
-	overflow-y: scroll;
-	padding: 0 5px;
-	margin: 0 0 5px;
-}
-
 .inline-edit-row fieldset ul.cat-checklist li,
 .inline-edit-row fieldset ul.cat-checklist input {
-	margin: 0;
+  margin: 0;
+}
+.inline-edit-row fieldset label input.inline-edit-menu-order-input {
+  width: 3em;
+}
+.inline-edit-row fieldset label input.inline-edit-slug-input {
+  width: 75%;
+}
+.inline-edit-row .input-text-wrap input[type=text] {
+  width: 100%;
 }
-
 .inline-edit-row fieldset ul.cat-checklist label,
 .inline-edit-row #bulk-titles div {
-	font-family: sans-serif;
-	font-style: normal;
-	font-size: 11px;
+  font-family: sans-serif;
+  font-style: normal;
+  font-size: 11px;
 }
-
-.inline-edit-row fieldset label input.inline-edit-menu-order-input {
-	width: 3em;
+.quick-edit-row-post fieldset.inline-edit-col-right label span.title {
+  width: auto;
+  padding-right: 0.5em;
 }
-
-.inline-edit-row fieldset label input.inline-edit-slug-input {
-	width: 75%;
+#wpbody-content .bulk-edit-row fieldset .inline-edit-group label {
+  max-width: 50%;
+}
+#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child {
+  margin-right: 0.5em;
+}
+.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input {
+  width: 6em;
+}
+.inline-edit-save .spinner {
+  padding: 4px 10px 0;
+  vertical-align: top;
+  float: right;
+}
+ul.cat-checklist {
+  height: 12em;
+  border-style: solid;
+  border-width: 1px;
+  overflow-y: scroll;
+  padding: 0 5px;
+  margin: 0;
+}
+#bulk-titles {
+  display: block;
+  height: 12em;
+  border-style: solid;
+  border-width: 1px;
+  overflow-y: scroll;
+  padding: 0 5px;
+  margin: 0 0 5px;
 }
-
 .quick-edit-row-post fieldset label.inline-edit-status {
-	float: left;
+  float: left;
 }
-
 #bulk-titles {
-	line-height: 140%;
+  line-height: 140%;
 }
 #bulk-titles div {
-	margin: 0.2em 0.3em;
+  margin: 0.2em 0.3em;
 }
-
 #bulk-titles div a {
-	cursor: pointer;
-	display: block;
-	float: left;
-	height: 10px;
-	margin: 3px 3px 0 -2px;
-	overflow: hidden;
-	position: relative;
-	text-indent: -9999px;
-	width: 10px;
+  cursor: pointer;
+  display: block;
+  float: left;
+  height: 10px;
+  margin: 3px 3px 0 -2px;
+  overflow: hidden;
+  position: relative;
+  text-indent: -9999px;
+  width: 10px;
 }
-
-
 /*------------------------------------------------------------------------------
   11.0 - Write/Edit Post Screen
 ------------------------------------------------------------------------------*/
-
 #show-comments {
-	overflow: hidden;
+  overflow: hidden;
 }
-
 #save-action .spinner,
 #show-comments a,
 #show-comments .spinner {
-	float: left;
+  float: left;
 }
-
 #lost-connection-notice .spinner {
-	display: block;
-	float: left;
-	margin: 0 5px 0 0;
+  display: block;
+  float: left;
+  margin: 0 5px 0 0;
 }
-
 .rtl #lost-connection-notice .spinner {
-	float: right;
-	margin: 0 0 0 5px;
+  float: right;
+  margin: 0 0 0 5px;
 }
-
 #titlediv {
-	position: relative;
-	margin-bottom: 5px;
+  position: relative;
+  margin-bottom: 5px;
 }
-
 #titlediv label {
-	cursor: text;
+  cursor: text;
 }
-
 #titlediv div.inside {
-	margin: 0;
-}
-
-#poststuff #titlewrap {
-	border: 0;
-	padding: 0;
+  margin: 0;
 }
-
 #titlediv #title {
-	padding: 3px 8px;
-	font-size: 1.7em;
-	line-height: 100%;
-	height: 1.7em;
-	width: 100%;
-	outline: none;
-	margin: 1px 0;
+  padding: 3px 8px;
+  font-size: 1.7em;
+  line-height: 100%;
+  height: 1.7em;
+  width: 100%;
+  outline: none;
+  margin: 1px 0;
+}
+#poststuff #titlewrap {
+  border: 0;
+  padding: 0;
 }
-
 #titlediv #title-prompt-text,
 #wp-fullscreen-title-prompt-text {
-	color: #bbb;
-	position: absolute;
-	font-size: 1.7em;
-	padding: 11px 10px;
+  color: #bbb;
+  position: absolute;
+  font-size: 1.7em;
+  padding: 11px 10px;
 }
-
 #wp-fullscreen-save .fs-saved {
-	color: #999;
-	float: right;
-	margin-top: 4px;
+  color: #999;
+  float: right;
+  margin-top: 4px;
 }
-
 #wp-fullscreen-title-prompt-text {
-	padding: 11px;
+  padding: 11px;
 }
-
 #poststuff .inside-submitbox,
 #side-sortables .inside-submitbox {
-	margin: 0 3px;
-	font-size: 11px;
+  margin: 0 3px;
+  font-size: 11px;
 }
-
 input#link_description,
 input#link_url {
-	width: 98%;
+  width: 98%;
 }
-
 #pending {
-	background: 0 none;
-	border: 0 none;
-	padding: 0;
-	font-size: 11px;
-	margin-top: -1px;
+  background: 0 none;
+  border: 0 none;
+  padding: 0;
+  font-size: 11px;
+  margin-top: -1px;
 }
-
 #edit-slug-box {
-	line-height: 24px;
-	min-height: 25px; /* Yes, line-height + 1 */
-	margin-top: 5px;
-	padding-right: 6px;
-}
+  line-height: 24px;
+  min-height: 25px;
+  /* Yes, line-height + 1 */
 
+  margin-top: 5px;
+  padding-right: 6px;
+}
 #edit-slug-box .cancel {
-	margin-right: 10px;
-	font-size: 11px;
+  margin-right: 10px;
+  font-size: 11px;
 }
-
 #editable-post-name-full {
-	display: none;
+  display: none;
 }
-
 #editable-post-name input {
-	width: 16em;
+  width: 16em;
 }
-
 .postarea h3 label {
-	float: left;
+  float: left;
 }
-
 .submitbox .submit {
-	text-align: left;
-	padding: 12px 10px 10px;
-	font-size: 11px;
+  text-align: left;
+  padding: 12px 10px 10px;
+  font-size: 11px;
 }
-
 .submitbox .submitdelete {
-	text-decoration: none;
-	padding: 1px 2px;
+  text-decoration: none;
+  padding: 1px 2px;
 }
-
 .submitbox .submitdelete,
 .submitbox .submit a:hover {
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
 }
-
 .submitbox .submit input {
-	margin-bottom: 8px;
-	margin-right: 4px;
-	padding: 6px;
+  margin-bottom: 8px;
+  margin-right: 4px;
+  padding: 6px;
 }
-
 .inside-submitbox #post_status {
-	margin: 2px 0 2px -2px;
+  margin: 2px 0 2px -2px;
 }
-
 #post-status-select {
-	line-height: 2.5em;
-	margin-top: 3px;
+  line-height: 2.5em;
+  margin-top: 3px;
 }
-
 /* Post Screen */
 #post-body #normal-sortables {
-	min-height: 50px;
+  min-height: 50px;
 }
-
 .postbox {
-	position: relative;
-	min-width: 255px;
+  position: relative;
+  min-width: 255px;
 }
-
 #trackback_url {
-	width: 99%;
+  width: 99%;
 }
-
 #normal-sortables .postbox .submit {
-	background: transparent none;
-	border: 0 none;
-	float: right;
-	padding: 0 12px;
-	margin:0;
+  background: transparent none;
+  border: 0 none;
+  float: right;
+  padding: 0 12px;
+  margin: 0;
 }
-
 .category-add input[type="text"],
 .category-add select {
-	width: 100%;
-	max-width: 260px;
+  width: 100%;
+  max-width: 260px;
 }
-
 .press-this #side-sortables .category-tabs li,
 ul.category-tabs li,
 #side-sortables .add-menu-item-tabs li,
 .wp-tab-bar li {
-	display: inline;
-	line-height: 1.35em;
+  display: inline;
+  line-height: 1.35em;
 }
-
 .no-js .category-tabs li.hide-if-no-js {
- 	display: none;
+  display: none;
 }
-
 .category-tabs a,
 #side-sortables .add-menu-item-tabs a,
 .wp-tab-bar a {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 .category-tabs {
-	margin: 8px 0 3px;
+  margin: 8px 0 3px;
 }
-
 #category-adder h4 {
-	margin: 10px 0;
+  margin: 10px 0;
 }
-
 #side-sortables .add-menu-item-tabs,
 .wp-tab-bar {
-	margin-bottom: 3px;
+  margin-bottom: 3px;
 }
-
 #normal-sortables .postbox #replyrow .submit {
-	float: none;
-	margin: 0;
-	padding: 0 7px 5px;
+  float: none;
+  margin: 0;
+  padding: 0 7px 5px;
 }
-
 #side-sortables .submitbox .submit input,
 #side-sortables .submitbox .submit .preview,
 #side-sortables .submitbox .submit a.preview:hover {
-	border: 0 none;
+  border: 0 none;
 }
-
 #side-sortables .inside-submitbox .insidebox,
 .stuffbox .insidebox {
-	margin: 11px 0;
+  margin: 11px 0;
 }
-
 ul.category-tabs,
 ul.add-menu-item-tabs,
 ul.wp-tab-bar {
-	margin-top: 12px;
+  margin-top: 12px;
 }
-
 ul.category-tabs li {
-	border-style: solid;
-	border-width: 1px;
-	position: relative;
+  border-style: solid;
+  border-width: 1px;
+  position: relative;
 }
-
 ul.add-menu-item-tabs li.tabs,
 .wp-tab-active {
-	border-style: solid solid none;
-	border-width: 1px 1px 0;
+  border-style: solid solid none;
+  border-width: 1px 1px 0;
 }
-
 #post-body .add-menu-item-tabs li.tabs {
-	border-style: solid none solid solid;
-	border-width: 1px 0 1px 1px;
-	margin-right: -1px;
+  border-style: solid none solid solid;
+  border-width: 1px 0 1px 1px;
+  margin-right: -1px;
 }
-
 ul.category-tabs li,
 ul.add-menu-item-tabs li,
 ul.wp-tab-bar li {
-	padding: 3px 5px 5px;
-	-webkit-border-top-left-radius: 3px;
-	-webkit-border-top-right-radius: 3px;
-	border-top-left-radius: 3px;
-	border-top-right-radius: 3px;
+  padding: 3px 5px 5px;
+  border-top-left-radius: 3px;
+  border-top-right-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
 }
-
 /* positioning etc. */
 form#tags-filter {
-	position: relative;
+  position: relative;
 }
-
 /* Edit posts */
 td.post-title strong,
 td.plugin-title strong {
-	display: block;
-	margin-bottom: .2em;
+  display: block;
+  margin-bottom: .2em;
 }
-
 td.post-title p,
 td.plugin-title p {
-	margin: 6px 0;
+  margin: 6px 0;
 }
-
 /* Global classes */
 .wp-hidden-children .wp-hidden-child,
 .ui-tabs-hide {
-	display: none;
+  display: none;
 }
-
 .commentlist .avatar {
-	vertical-align: text-top;
+  vertical-align: text-top;
 }
-
 #post-body .tagsdiv #newtag {
-	margin-right: 5px;
-	width: 16em;
+  margin-right: 5px;
+  width: 16em;
 }
-
 #side-sortables input#post_password {
-	width: 94%
+  width: 94%;
 }
-
 #side-sortables .tagsdiv #newtag {
-	width: 68%;
+  width: 68%;
 }
-
 #post-status-info {
-	border-width: 0 1px 1px;
-	border-style: none solid solid;
-	width: 100%;
-	-webkit-border-bottom-left-radius: 3px;
-	-webkit-border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
+  border-width: 0 1px 1px;
+  border-style: none solid solid;
+  width: 100%;
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
 #post-status-info td {
-	font-size: 12px;
+  font-size: 12px;
 }
-
 .autosave-info {
-	padding: 2px 15px;
-	text-align: right;
+  padding: 2px 15px;
+  text-align: right;
 }
-
 #editorcontent #post-status-info {
-	border: none;
+  border: none;
 }
-
 #post-body .wp_themeSkin .mceStatusbar a.mceResize {
-	display: block;
-	background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
-	width: 12px;
-	cursor: se-resize;
-	margin: 0 1px;
-	position: relative;
-	top: -2px;
+  display: block;
+  background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
+  width: 12px;
+  cursor: se-resize;
+  margin: 0 1px;
+  position: relative;
+  top: -2px;
 }
-
 #post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize {
-	top: 20px;
+  top: 20px;
 }
-
 #content-resize-handle {
-	background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
-	width: 12px;
-	cursor: se-resize;
-	position: absolute;
-	right: 2px;
-	height: 19px;
+  background: transparent url('../images/resize.gif') no-repeat scroll right bottom;
+  width: 12px;
+  cursor: se-resize;
+  position: absolute;
+  right: 2px;
+  height: 19px;
 }
-
 .press-this #content-resize-handle {
-	bottom: 2px;
+  bottom: 2px;
 }
-
 .tmce-active #content-resize-handle {
-	display: none;
+  display: none;
 }
-
 #wp-word-count {
-	display: block;
-	padding: 2px 10px;
+  display: block;
+  padding: 2px 10px;
 }
-
 #timestampdiv select {
-	height: 20px;
-	line-height: 14px;
-	padding: 0;
-	vertical-align: top;
+  height: 20px;
+  line-height: 14px;
+  padding: 0;
+  vertical-align: top;
+}
+#aa,
+#jj,
+#hh,
+#mn {
+  padding: 1px;
+  font-size: 12px;
+}
+#jj,
+#hh,
+#mn {
+  width: 2em;
 }
-
-#aa, #jj, #hh, #mn {
-	padding: 1px;
-	font-size: 12px;
-}
-
-#jj, #hh, #mn {
-	width: 2em;
-}
-
 #aa {
-	width: 3.4em;
+  width: 3.4em;
 }
-
 .curtime #timestamp {
-	background-repeat: no-repeat;
-	background-position: left center;
-	padding: 2px 0 1px 20px;
+  background-repeat: no-repeat;
+  background-position: left center;
+  padding: 2px 0 1px 20px;
 }
-
 #timestampdiv {
-	padding-top: 5px;
-	line-height: 23px;
+  padding-top: 5px;
+  line-height: 23px;
 }
-
 #timestampdiv p {
-	margin: 8px 0 6px;
+  margin: 8px 0 6px;
 }
-
 #timestampdiv input {
-	border-width: 1px;
-	border-style: solid;
+  border-width: 1px;
+  border-style: solid;
 }
-
 .notification-dialog {
-	position: fixed;
-	top: 30%;
-	left: 50%;
-	width: 450px;
-	margin-left: -225px;
-	background: #fff;
-	line-height: 1.5;
-	z-index: 1000005;
+  position: fixed;
+  top: 30%;
+  left: 50%;
+  width: 450px;
+  margin-left: -225px;
+  background: #fff;
+  line-height: 1.5;
+  z-index: 1000005;
 }
-
 .notification-dialog-background {
-	position: fixed;
-	top: 0;
-	left: 0;
-	right: 0;
-	bottom: 0;
-	background: #000;
-	opacity: 0.5;
-	filter: alpha(opacity=50);
-	z-index: 1000000;
+  position: fixed;
+  top: 0;
+  left: 0;
+  right: 0;
+  bottom: 0;
+  background: #000;
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+  z-index: 1000000;
 }
-
 #post-lock-dialog .post-locked-message,
 #post-lock-dialog .post-taken-over {
-	margin: 25px;
+  margin: 25px;
 }
-
 #post-lock-dialog .post-locked-message a.button {
-	margin-right: 10px;
+  margin-right: 10px;
 }
-
 #post-lock-dialog .post-locked-avatar {
-	float: left;
-	margin: 0 20px 20px 0;
+  float: left;
+  margin: 0 20px 20px 0;
 }
-
 #post-lock-dialog .wp-tab-first {
-	outline: 0;
+  outline: 0;
 }
-
 #post-lock-dialog .locked-saving img {
-	float: left;
-	margin-right: 3px;
+  float: left;
+  margin-right: 3px;
 }
-
 #post-lock-dialog.saving .locked-saving,
 #post-lock-dialog.saved .locked-saved {
-	display: inline;
+  display: inline;
 }
-
 /*------------------------------------------------------------------------------
   11.1 - Custom Fields
 ------------------------------------------------------------------------------*/
-
 #postcustomstuff thead th {
-	padding: 5px 8px 8px;
+  padding: 5px 8px 8px;
 }
-
 #postcustom #postcustomstuff .submit {
-	border: 0 none;
-	float: none;
-	padding: 0 8px 8px;
+  border: 0 none;
+  float: none;
+  padding: 0 8px 8px;
 }
-
 #side-sortables #postcustom #postcustomstuff .submit {
-	margin: 0;
-	padding: 0;
+  margin: 0;
+  padding: 0;
 }
-
 #side-sortables #postcustom #postcustomstuff #the-list textarea {
-	height: 85px;
+  height: 85px;
 }
-
 #side-sortables #postcustom #postcustomstuff td.left input,
-#side-sortables #postcustom #postcustomstuff td.left select,
+#side-sortables #postcustom #postcustomstuff td.left select {
+  margin: 3px 3px 0;
+}
 #side-sortables #postcustomstuff #newmetaleft a {
-	margin: 3px 3px 0;
+  margin: 3px 3px 0;
 }
-
 #postcustomstuff table {
-	margin: 0;
-	width: 100%;
-	border-width: 1px;
-	border-style: solid;
-	border-spacing: 0;
+  margin: 0;
+  width: 100%;
+  border-width: 1px;
+  border-style: solid;
+  border-spacing: 0;
 }
-
 #postcustomstuff tr {
-	vertical-align: top;
+  vertical-align: top;
 }
-
 #postcustomstuff table input,
 #postcustomstuff table select,
 #postcustomstuff table textarea {
-	width: 96%;
-	margin: 8px;
+  width: 96%;
+  margin: 8px;
 }
-
 #side-sortables #postcustomstuff table input,
 #side-sortables #postcustomstuff table select,
 #side-sortables #postcustomstuff table textarea {
-	margin: 3px;
+  margin: 3px;
 }
-
 #postcustomstuff th.left,
 #postcustomstuff td.left {
-	width: 38%;
+  width: 38%;
 }
-
 #postcustomstuff .submit input {
-	margin: 0;
-	width: auto;
+  margin: 0;
+  width: auto;
 }
-
 #postcustomstuff #newmetaleft a {
-	display: inline-block;
-	margin: 0 8px 8px;
-	text-decoration: none;
+  display: inline-block;
+  margin: 0 8px 8px;
+  text-decoration: none;
 }
-
 .no-js #postcustomstuff #enternew {
-	display: none;
+  display: none;
 }
-
 #post-body-content .compat-attachment-fields {
-	margin-bottom: 20px;
+  margin-bottom: 20px;
 }
-
 .compat-attachment-fields th {
-	padding-top: 5px;
-	padding-right: 10px;
+  padding-top: 5px;
+  padding-right: 10px;
 }
-
 /*------------------------------------------------------------------------------
   11.2 - Post Revisions
 ------------------------------------------------------------------------------*/
 .revisions-control-frame,
 .revisions-diff-frame {
-	position: relative;
+  position: relative;
 }
-
 .revisions-controls {
-	padding-top: 40px;
-	height: 100px;
-	z-index: 1;
+  padding-top: 40px;
+  height: 100px;
+  z-index: 1;
 }
-
 .revisions-controls input[type="checkbox"] {
-	position: relative;
-	top: -1px;
-	vertical-align: text-bottom;
+  position: relative;
+  top: -1px;
+  vertical-align: text-bottom;
 }
-
 .revisions.pinned .revisions-controls {
-	position: fixed;
-	top: 0;
-	padding-bottom: 10px;
+  position: fixed;
+  top: 0;
+  padding-bottom: 10px;
+}
+.revisions-controls .author-card .date {
+  color: #777;
+}
+.revisions-controls .author-card .avatar,
+.revisions-controls .author-card .author-info {
+  float: left;
+  margin-left: 6px;
+  margin-right: 6px;
+}
+.revisions-controls .author-card.autosave {
+  color: #d54e21;
+}
+.revisions-controls .author-card .author-name {
+  font-weight: bold;
+}
+.revisions-controls .author-card .byline {
+  display: block;
+  font-size: 12px;
+}
+.revisions-controls .author-card .avatar {
+  vertical-align: middle;
+}
+.revisions-controls .wp-slider {
+  max-width: 70%;
+  margin: 0 auto;
+  top: -3px;
 }
-
 .revisions-tickmarks {
-	position: relative;
-	margin: 0 auto;
-	height: 0.8em;
-	top: 7px;
-	max-width: 70%;
-	-moz-box-sizing: border-box;
-	-webkit-box-sizing: border-box;
-	box-sizing: border-box;
+  position: relative;
+  margin: 0 auto;
+  height: 0.8em;
+  top: 7px;
+  max-width: 70%;
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  -ms-box-sizing: border-box;
+  box-sizing: border-box;
 }
-
 .revisions-tickmarks > div {
-	position: absolute;
-	height: 100%;
-	border-style: solid;
-	border-width: 0 1px 0 0;
-	-moz-box-sizing: border-box;
-	-webkit-box-sizing: border-box;
-	box-sizing: border-box;
+  position: absolute;
+  height: 100%;
+  border-style: solid;
+  border-width: 0 1px 0 0;
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  -ms-box-sizing: border-box;
+  box-sizing: border-box;
 }
-
 .revisions-tickmarks > div:first-child {
-	border-width: 0;
+  border-width: 0;
 }
-
 .comparing-two-revisions .revisions-controls {
-	height: 140px;
+  height: 140px;
 }
-
 .revisions .diff-error {
-	position: absolute;
-	text-align: center;
-	margin: 0 auto;
-	width: 100%;
-	display: none;
+  position: absolute;
+  text-align: center;
+  margin: 0 auto;
+  width: 100%;
+  display: none;
 }
-
 .revisions.diff-error .diff-error {
-	display: block;
+  display: block;
 }
-
 .revisions .loading-indicator {
-	position: fixed;
-	vertical-align: middle;
-	opacity: 0;
-	width: 100%;
-	top: 50%;
-	margin-left: -90px;
-	-webkit-transition: opacity 0.5s;
-	-moz-transition:    opacity 0.5s;
-	-ms-transition:     opacity 0.5s;
-	-o-transition:      opacity 0.5s;
-	transition:         opacity 0.5s;
-	filter: alpha(opacity=0); /* ie8 and earlier */
-}
+  position: fixed;
+  vertical-align: middle;
+  opacity: 0;
+  width: 100%;
+  top: 50%;
+  margin-left: -90px;
+  -webkit-transition: opacity 0.5s;
+  -moz-transition: opacity 0.5s;
+  -ms-transition: opacity 0.5s;
+  -o-transition: opacity 0.5s;
+  transition: opacity 0.5s;
+  filter: alpha(opacity=0);
+  /* ie8 and earlier */
 
+}
 body.folded .revisions .loading-indicator {
-	margin-left: -32px;
+  margin-left: -32px;
 }
-
 .revisions .loading-indicator span.spinner {
-	display: block;
-	margin: 0 auto;
-	float: none;
+  display: block;
+  margin: 0 auto;
+  float: none;
 }
-
 .revisions.loading .loading-indicator {
-	opacity: 1;
-	filter: alpha(opacity=100); /* ie8 and earlier */
-}
+  opacity: 1;
+  filter: alpha(opacity=100);
+  /* ie8 and earlier */
 
+}
 .revisions .diff {
-	-webkit-transition: opacity 0.5s;
-	-moz-transition:    opacity 0.5s;
-	-ms-transition:     opacity 0.5s;
-	-o-transition:      opacity 0.5s;
-	transition:         opacity 0.5s;
+  -webkit-transition: opacity 0.5s;
+  -moz-transition: opacity 0.5s;
+  -ms-transition: opacity 0.5s;
+  -o-transition: opacity 0.5s;
+  transition: opacity 0.5s;
 }
-
 .revisions.loading .diff {
-	opacity: 0.5;
-	filter: alpha(opacity=50); /* ie8 and earlier */
-}
+  opacity: 0.5;
+  filter: alpha(opacity=50);
+  /* ie8 and earlier */
 
+}
 .revisions.diff-error .diff {
-	visibility: hidden;
+  visibility: hidden;
 }
-
 .revisions-meta {
-	margin-top: 15px;
+  margin-top: 15px;
 }
-
 .revision-toggle-compare-mode {
-	position: absolute;
-	top: 0;
-	right: 0;
+  position: absolute;
+  top: 0;
+  right: 0;
 }
-
 .comparing-two-revisions .revisions-previous,
 .comparing-two-revisions .revisions-next,
 .revisions-meta .diff-meta-to strong {
-	display: none;
-}
-
-.revisions-controls .author-card .date {
-	color: #777;
-}
-
-.revisions-controls .author-card.autosave {
-	color: #d54e21;
-}
-
-.revisions-controls .author-card .author-name {
-	font-weight: bold;
+  display: none;
 }
-
 .comparing-two-revisions .diff-meta-to strong {
-	display: block;
+  display: block;
 }
-
 .revisions-previous,
 .revisions-next {
-	position: relative;
-	z-index: 1;
+  position: relative;
+  z-index: 1;
 }
-
 .revisions-previous {
-	float: left;
+  float: left;
 }
-
 .revisions-next {
-	float: right;
-}
-
-.revisions-controls .wp-slider {
-	max-width: 70%;
-	margin: 0 auto;
-	top: -3px;
+  float: right;
 }
-
 /* Revision meta box */
 .post-revisions li img,
 #revisions-meta-restored img {
-	vertical-align: middle;
+  vertical-align: middle;
 }
-
 table.diff {
-	table-layout: fixed;
-	width: 100%;
-	white-space: pre-wrap;
-	word-wrap: break-word;
+  table-layout: fixed;
+  width: 100%;
+  white-space: pre-wrap;
+  word-wrap: break-word;
 }
-
 table.diff col.content {
-	width: auto;
+  width: auto;
 }
-
 table.diff col.content.diffsplit {
-	width: 48%;
+  width: 48%;
 }
-
-table.diff col.diffsplit.middle {
-	width: auto;
+table.diff col.content.middle {
+  width: auto;
 }
-
 table.diff col.ltype {
-	width: 30px;
+  width: 30px;
 }
-
 table.diff tr {
-	background-color: transparent;
+  background-color: transparent;
 }
-
 table.diff td,
 table.diff th {
-	padding: .5em;
-	font-family: Consolas, Monaco, monospace;
+  padding: .5em;
+  font-family: Consolas, Monaco, monospace;
 }
-
 table.diff .diff-deletedline del,
 table.diff .diff-addedline ins {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 .diff-meta {
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
-	padding: 5px;
-	clear: both;
-	min-height: 32px;
-}
-
-.diff-title strong {
-	line-height: 32px;
-	min-width: 60px;
-	text-align: right;
-	float: left;
-	margin-right: 5px;
-}
-
-.revisions-controls .author-card .avatar,
-.revisions-controls .author-card .author-info {
-	float: left;
-	margin-left: 6px;
-	margin-right: 6px;
-}
-
-.revisions-controls .author-card .byline {
-	display: block;
-	font-size: 12px;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  padding: 5px;
+  clear: both;
+  min-height: 32px;
 }
-
-.revisions-controls .author-card .avatar {
-	vertical-align: middle;
-}
-
 .diff-meta input.restore-revision {
-	float: right;
-	margin-left: 6px;
-	margin-right: 6px;
-	margin-top: 4px;
+  float: right;
+  margin-left: 6px;
+  margin-right: 6px;
+  margin-top: 4px;
+}
+.diff-title strong {
+  line-height: 32px;
+  min-width: 60px;
+  text-align: right;
+  float: left;
+  margin-right: 5px;
 }
-
 .diff-meta-from {
-	display: none;
+  display: none;
 }
-
 .comparing-two-revisions .diff-meta-from {
-	display: block;
+  display: block;
 }
-
 .revisions-tooltip {
-	position: absolute;
-	bottom: 105px;
-	margin-right: 0;
-	margin-left: -69px;
-	z-index: 0;
-	max-width: 350px;
-	min-width: 130px;
-	padding: 8px 4px;
-	display: none;
-	opacity: 0;
+  position: absolute;
+  bottom: 105px;
+  margin-right: 0;
+  margin-left: -69px;
+  z-index: 0;
+  max-width: 350px;
+  min-width: 130px;
+  padding: 8px 4px;
+  display: none;
+  opacity: 0;
 }
-
 .revisions-tooltip.flipped {
-	margin-left: 0;
-	margin-right: -70px;
+  margin-left: 0;
+  margin-right: -70px;
+}
+.revisions-tooltip.flipped .revisions-tooltip-arrow {
+  margin-left: 0;
+  margin-right: 35px;
+  left: auto;
+  right: 0;
+}
+.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
+  right: 25px;
 }
-
 .revisions.pinned .revisions-tooltip {
-	display: none !important;
+  display: none !important;
 }
-
 .comparing-two-revisions .revisions-tooltip {
-	bottom: 145px;
+  bottom: 145px;
 }
-
 .revisions-tooltip-arrow {
-	width: 70px;
-	height: 15px;
-	overflow: hidden;
-	position: absolute;
-	left: 0;
-	margin-left: 35px;
-	bottom: -15px;
-}
-
-.revisions-tooltip.flipped .revisions-tooltip-arrow {
-	margin-left: 0;
-	margin-right: 35px;
-	left: auto;
-	right: 0;
+  width: 70px;
+  height: 15px;
+  overflow: hidden;
+  position: absolute;
+  left: 0;
+  margin-left: 35px;
+  bottom: -15px;
 }
-
 .revisions-tooltip-arrow > span {
-	content: "";
-	position: absolute;
-	left: 20px;
-	top: -20px;
-	width: 25px;
-	height: 25px;
-	-webkit-transform: rotate(45deg);
-	-moz-transform: rotate(45deg);
-	-ms-transform: rotate(45deg);
-	-o-transform: rotate(45deg);
-	tranform: rotate(45deg);
+  content: "";
+  position: absolute;
+  left: 20px;
+  top: -20px;
+  width: 25px;
+  height: 25px;
+  -webkit-transform: rotate(45deg);
+  -moz-transform: rotate(45deg);
+  -ms-transform: rotate(45deg);
+  -o-transform: rotate(45deg);
+  tranform: rotate(45deg);
 }
-
 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
-	left: auto;
-	right: 20px;
+  left: auto;
+  right: 20px;
 }
-
 .ie8 .revisions-tooltip-arrow > span {
-	left: 15px;
-	top: -25px;
-	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
-}
-
-.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow > span {
-	right: 25px;
+  left: 15px;
+  top: -25px;
+  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)";
 }
-
 .revisions-tooltip,
 .revisions-tooltip-arrow > span {
-	border-width: 1px;
-	border-style: solid;
+  border-width: 1px;
+  border-style: solid;
 }
-
 div.revisions-controls > .wp-slider > .ui-slider-handle {
-	margin-left: -10px;
+  margin-left: -10px;
 }
-
- /* jQuery UI Slider */
+/* jQuery UI Slider */
 .wp-slider.ui-slider {
-	position: relative;
-	border-width: 1px;
-	border-style: solid;
-	border-radius: 3px;
-	text-align: left;
-	cursor: pointer;
+  position: relative;
+  border-width: 1px;
+  border-style: solid;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  text-align: left;
+  cursor: pointer;
 }
-
 .wp-slider .ui-slider-handle {
-	position: absolute;
-	z-index: 2;
-	margin-top: -3px;
-	width: 19px;
-	height: 19px;
-	border-width: 1px;
-	border-style: solid;
-	border-radius: 50%;
+  position: absolute;
+  z-index: 2;
+  margin-top: -3px;
+  width: 19px;
+  height: 19px;
+  border-width: 1px;
+  border-style: solid;
+  border-radius: 50%;
+  -moz-border-radius: 50%;
+  -webkit-border-radius: 50%;
 }
-
 .wp-slider .ui-slider-handle:before {
-	content: "";
-	position: absolute;
-	top: 6px;
-	left: 3px;
-	height: 8px;
-	width: 13px;
-	background: url(../images/arrows-pr.png) no-repeat -2px -47px;
+  content: "";
+  position: absolute;
+  top: 6px;
+  left: 3px;
+  height: 8px;
+  width: 13px;
+  background: url(../images/arrows-pr.png) no-repeat -2px -47px;
 }
-
 .wp-slider .ui-slider-handle.from-handle:before,
 .wp-slider .ui-slider-handle.to-handle:before {
-	height: 8px;
-	width: 7px;
+  height: 8px;
+  width: 7px;
 }
-
 .wp-slider .ui-slider-handle.from-handle:before {
-	background-position: -5px -84px;
-	left: 7px;
+  background-position: -5px -84px;
+  left: 7px;
 }
-
 .wp-slider .ui-slider-handle.to-handle:before {
-	background-position: -4px -65px;
-	left: 5px;
+  background-position: -4px -65px;
+  left: 5px;
 }
-
 .wp-slider .ui-slider-range {
-	position: absolute;
-	font-size: .7em;
-	display: block;
-	border: 0;
-	background-color: transparent;
-	background-image: none;
+  position: absolute;
+  font-size: .7em;
+  display: block;
+  border: 0;
+  background-color: transparent;
+  background-image: none;
 }
-
 .wp-slider.ui-slider-horizontal {
-	height: .8em;
+  height: .8em;
 }
-
 .wp-slider.ui-slider-horizontal .ui-slider-handle {
-	top: -.25em;
-	margin-left: -.6em;
+  top: -0.25em;
+  margin-left: -0.6em;
 }
-
 .wp-slider.ui-slider-horizontal .ui-slider-range {
-	top: 0;
-	height: 100%;
+  top: 0;
+  height: 100%;
 }
-
 .wp-slider.ui-slider-horizontal .ui-slider-range-min {
-	left: 0;
+  left: 0;
 }
-
 .wp-slider.ui-slider-horizontal .ui-slider-range-max {
-	right: 0;
+  right: 0;
 }
-
-
 /*------------------------------------------------------------------------------
   11.3 - Featured Images
 ------------------------------------------------------------------------------*/
-
 #select-featured-image {
-	padding: 4px 0;
-	overflow: hidden;
+  padding: 4px 0;
+  overflow: hidden;
 }
-
 #select-featured-image img {
-	max-width: 100%;
-	height: auto;
-	margin-bottom: 10px;
+  max-width: 100%;
+  height: auto;
+  margin-bottom: 10px;
 }
-
 #select-featured-image a {
-	float: left;
-	clear: both;
+  float: left;
+  clear: both;
 }
-
 #select-featured-image .remove {
-	display: none;
-	margin-top: 10px;
+  display: none;
+  margin-top: 10px;
 }
-
 .js #select-featured-image.has-featured-image .remove {
-	display: inline-block;
+  display: inline-block;
 }
-
 .no-js #select-featured-image .choose {
-	display: none;
+  display: none;
 }
-
 /*------------------------------------------------------------------------------
   11.4 - Post formats
 ------------------------------------------------------------------------------*/
-
 a.post-state-format {
-	overflow: hidden;
-	display: inline-block;
-	vertical-align: middle;
-	height: 16px;
-	width: 16px;
-	margin-right: 5px;
-	background-repeat: no-repeat;
-	text-indent: -999em;
+  overflow: hidden;
+  display: inline-block;
+  vertical-align: middle;
+  height: 16px;
+  width: 16px;
+  margin-right: 5px;
+  background-repeat: no-repeat;
+  text-indent: -999em;
 }
-
 #post-formats-select {
-	line-height: 2em;
+  line-height: 2em;
 }
-
-label.post-format-icon {
-	margin-left: 5px;
-	padding: 2px 0 2px 21px;
+.post-format-icon {
+  margin-left: 5px;
+  padding: 2px 0 2px 21px;
+  line-height: 2em;
 }
-
-.post-format-icon.post-format-standard  {
-	background-position: 0 0;
+.post-format-icon.post-format-standard {
+  background-position: 0 0;
 }
-
-.post-format-icon.post-format-image  {
-	background-position: 0 -32px;
+.post-format-icon.post-format-image {
+  background-position: 0 -32px;
 }
-
 .post-format-icon.post-format-gallery {
-	background-position: 0 -64px;
+  background-position: 0 -64px;
 }
-
 .post-format-icon.post-format-audio {
-	background-position: 0 -96px;
+  background-position: 0 -96px;
 }
-
 .post-format-icon.post-format-video {
-	background-position: 0 -128px;
+  background-position: 0 -128px;
 }
-
 .post-format-icon.post-format-chat {
-	background-position: 0 -160px;
+  background-position: 0 -160px;
 }
-
 .post-format-icon.post-format-status {
-	background-position: 0 -192px;
+  background-position: 0 -192px;
 }
-
 .post-format-icon.post-format-aside {
-	background-position: 0 -224px;
+  background-position: 0 -224px;
 }
-
 .post-format-icon.post-format-quote {
-	background-position: 0 -256px;
+  background-position: 0 -256px;
 }
-
 .post-format-icon.post-format-link {
-	background-position: 0 -288px;
+  background-position: 0 -288px;
 }
-
-
 /*------------------------------------------------------------------------------
   12.0 - Categories
 ------------------------------------------------------------------------------*/
-
 .category-adder {
-	margin-left: 120px;
-	padding: 4px 0;
+  margin-left: 120px;
+  padding: 4px 0;
 }
-
 .category-adder h4 {
-	margin: 0 0 8px;
+  margin: 0 0 8px;
 }
-
 #side-sortables .category-adder {
-	margin: 0;
+  margin: 0;
 }
-
 #post-body ul.add-menu-item-tabs {
-	float: left;
-	width: 120px;
-	text-align: right;
-	/* Negative margin for the sake of those without JS: all tabs display */
-	margin: 0 -120px 0 5px;
-	padding: 0;
-}
+  float: left;
+  width: 120px;
+  text-align: right;
+  /* Negative margin for the sake of those without JS: all tabs display */
 
+  margin: 0 -120px 0 5px;
+  padding: 0;
+}
 #post-body ul.add-menu-item-tabs li {
-	padding: 8px;
+  padding: 8px;
 }
-
 #post-body ul.add-menu-item-tabs li.tabs {
-	-webkit-border-top-left-radius: 3px;
-	-webkit-border-bottom-left-radius: 3px;
-	border-top-left-radius: 3px;
-	border-bottom-left-radius: 3px;
+  border-top-left-radius: 3px;
+  border-bottom-left-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
 }
-
 .wp-tab-panel,
 .categorydiv div.tabs-panel,
 .customlinkdiv div.tabs-panel,
 .posttypediv div.tabs-panel,
 .taxonomydiv div.tabs-panel {
-	min-height: 42px;
-	max-height: 200px;
-	overflow: auto;
-	padding: 0 0.9em;
-	border-style: solid;
-	border-width: 1px;
+  min-height: 42px;
+  max-height: 200px;
+  overflow: auto;
+  padding: 0 0.9em;
+  border-style: solid;
+  border-width: 1px;
 }
-
 div.tabs-panel-active {
-	display:block;
+  display: block;
 }
-
 div.tabs-panel-inactive {
-	display:none;
+  display: none;
 }
-
 #front-page-warning,
 #front-static-pages ul,
 ul.export-filters,
@@ -4090,1424 +3847,1167 @@ ul.export-filters,
 .customlinkdiv ul.categorychecklist ul,
 .posttypediv ul.categorychecklist ul,
 .taxonomydiv ul.categorychecklist ul {
-	margin-left: 18px;
+  margin-left: 18px;
 }
-
 ul.categorychecklist li {
-	margin: 0;
-	padding: 0;
-	line-height: 19px;
-	word-wrap: break-word;
+  margin: 0;
+  padding: 0;
+  line-height: 19px;
+  word-wrap: break-word;
 }
-
 .categorydiv .tabs-panel,
 .customlinkdiv .tabs-panel,
 .posttypediv .tabs-panel,
 .taxonomydiv .tabs-panel {
-	border-width: 3px;
-	border-style: solid;
+  border-width: 3px;
+  border-style: solid;
 }
-
 .form-wrap p,
 .form-wrap label {
-	font-size: 11px;
+  font-size: 11px;
 }
-
 .form-wrap label {
-	display: block;
-	padding: 2px;
-	font-size: 12px;
+  display: block;
+  padding: 2px;
+  font-size: 12px;
+}
+.form-wrap .form-field {
+  margin: 0 0 10px;
+  padding: 8px 0;
+}
+.form-wrap .form-field #parent {
+  max-width: 100%;
 }
-
 .form-field input,
 .form-field textarea {
-	border-style: solid;
-	border-width: 1px;
-	width: 95%;
+  border-style: solid;
+  border-width: 1px;
+  width: 95%;
 }
-
 p.description,
 .form-wrap p {
-	margin: 2px 0 5px;
+  margin: 2px 0 5px;
 }
-
 p.help,
 p.description,
 span.description,
 .form-wrap p {
-	font-size: 12px;
-	font-style: italic;
-	font-family: sans-serif;
-}
-
-.form-wrap .form-field {
-	margin: 0 0 10px;
-	padding: 8px 0;
-}
-
-.form-wrap .form-field #parent {
-	max-width: 100%;
+  font-size: 12px;
+  font-style: italic;
+  font-family: sans-serif;
 }
-
 .col-wrap h3 {
-	margin: 12px 0;
-	font-size: 1.1em;
+  margin: 12px 0;
+  font-size: 1.1em;
 }
-
 .col-wrap p.submit {
-	margin-top: -10px;
+  margin-top: -10px;
 }
-
-
 /*------------------------------------------------------------------------------
   13.0 - Tags
 ------------------------------------------------------------------------------*/
-
 #poststuff .taghint {
-	color: #aaa;
-	margin: 15px 0 -24px 12px;
-}
-
-#poststuff .tagsdiv .howto {
-	margin: 0 0 6px 8px;
+  color: #aaa;
+  margin: 15px 0 -24px 12px;
 }
-
 .ajaxtag .newtag {
-	position: relative;
+  position: relative;
 }
-
 .tagsdiv .newtag {
-	width: 180px;
+  width: 180px;
 }
-
 .tagsdiv .the-tags {
-	display: block;
-	height: 60px;
-	margin: 0 auto;
-	overflow: auto;
-	width: 260px;
+  display: block;
+  height: 60px;
+  margin: 0 auto;
+  overflow: auto;
+  width: 260px;
 }
-
 #post-body-content .tagsdiv .the-tags {
-	margin: 0 5px;
+  margin: 0 5px;
+}
+#poststuff .tagsdiv .howto {
+  margin: 0 0 6px 8px;
 }
-
 p.popular-tags {
-	-webkit-border-radius: 8px;
-	border-radius: 8px;
-	border-width: 1px;
-	border-style: solid;
-	line-height: 2em;
-	max-width: 1000px;
-	padding: 8px 12px 12px;
-	text-align: justify;
+  border-radius: 8px;
+  -moz-border-radius: 8px;
+  -webkit-border-radius: 8px;
+  border-width: 1px;
+  border-style: solid;
+  line-height: 2em;
+  max-width: 1000px;
+  padding: 8px 12px 12px;
+  text-align: justify;
 }
-
 p.popular-tags a {
-	padding: 0 3px;
+  padding: 0 3px;
 }
-
 .tagcloud {
-	width: 97%;
-	margin: 0 0 40px;
-	text-align: justify;
+  width: 97%;
+  margin: 0 0 40px;
+  text-align: justify;
 }
-
 .tagcloud h3 {
-	margin: 2px 0 12px;
+  margin: 2px 0 12px;
 }
-
 .ac_results {
-	padding: 0;
-	margin: 0;
-	list-style: none;
-	position: absolute;
-	z-index: 10000;
-	display: none;
-	border-width: 1px;
-	border-style: solid;
+  padding: 0;
+  margin: 0;
+  list-style: none;
+  position: absolute;
+  z-index: 10000;
+  display: none;
+  border-width: 1px;
+  border-style: solid;
 }
-
 .ac_results li {
-	padding: 2px 5px;
-	white-space: nowrap;
-	text-align: left;
+  padding: 2px 5px;
+  white-space: nowrap;
+  text-align: left;
 }
-
 .ac_over {
-	cursor: pointer;
+  cursor: pointer;
 }
-
 .ac_match {
-	text-decoration: underline;
+  text-decoration: underline;
 }
-
 /* links tables */
 table.links-table {
-	width: 100%;
+  width: 100%;
 }
-
 .links-table th {
-	font-weight: normal;
-	text-align: left;
-	vertical-align: top;
-	min-width: 80px;
-	width: 20%;
-	word-wrap: break-word;
+  font-weight: normal;
+  text-align: left;
+  vertical-align: top;
+  min-width: 80px;
+  width: 20%;
+  word-wrap: break-word;
 }
-
 .links-table th,
 .links-table td {
-	padding: 5px 0;
+  padding: 5px 0;
 }
-
 .links-table td label {
-	margin-right: 8px;
+  margin-right: 8px;
 }
-
 .links-table td input[type="text"],
 .links-table td textarea {
-	width: 100%;
+  width: 100%;
 }
-
 .links-table #link_rel {
-	max-width: 280px;
+  max-width: 280px;
 }
-
 /*------------------------------------------------------------------------------
   14.0 - Media Screen
 ------------------------------------------------------------------------------*/
-
 .media-item .describe {
-	border-collapse: collapse;
-	width: 100%;
-	border-top-style: solid;
-	border-top-width: 1px;
-	clear: both;
-	cursor: default;
+  border-collapse: collapse;
+  width: 100%;
+  border-top-style: solid;
+  border-top-width: 1px;
+  clear: both;
+  cursor: default;
 }
-
-.media-item.media-blank .describe {
-	border: 0;
+.media-item .describe td {
+  padding: 0 8px 8px 0;
+  vertical-align: top;
 }
-
 .media-item .describe th {
-	vertical-align: top;
-	text-align: left;
-	padding: 5px 10px 10px;
-	width: 140px;
+  vertical-align: top;
+  text-align: left;
+  padding: 5px 10px 10px;
+  width: 140px;
 }
-
-.media-item .describe .align th {
-	padding-top: 0;
+.align .media-item .describe th {
+  padding-top: 0;
 }
-
-.media-item .media-item-info tr {
-	background-color: transparent;
+.media-item .describe input[type="text"],
+.media-item .describe textarea {
+  width: 460px;
 }
-
-.media-item .describe td {
-	padding: 0 8px 8px 0;
-	vertical-align: top;
+.media-item .describe p.help {
+  margin: 0;
+  padding: 0 0 0 5px;
+}
+.media-item.media-blank .describe {
+  border: 0;
+}
+.media-item .media-item-info tr {
+  background-color: transparent;
 }
-
 .media-item thead.media-item-info td {
-	padding: 4px 10px 0;
+  padding: 4px 10px 0;
 }
-
 .media-item .media-item-info .A1B1 {
-	padding: 0 0 0 10px;
+  padding: 0 0 0 10px;
 }
-
 .media-item td.savesend {
-	padding-bottom: 15px;
+  padding-bottom: 15px;
 }
-
 .media-item .thumbnail {
-	max-height: 128px;
-	max-width: 128px;
+  max-height: 128px;
+  max-width: 128px;
+}
+.media-item .filename {
+  line-height: 36px;
+  overflow: hidden;
+  padding: 0 10px;
+}
+.media-item .error-div {
+  padding-left: 10px;
+}
+.media-item .pinkynail {
+  float: left;
+  margin: 2px 2px 0;
+  max-width: 40px;
+  max-height: 32px;
+}
+.media-item .startopen,
+.media-item .startclosed {
+  display: none;
+}
+.media-item .original {
+  position: relative;
+  height: 34px;
+}
+.media-item .progress {
+  float: right;
+  height: 22px;
+  margin: 6px 10px 0 0;
+  width: 200px;
+  line-height: 2em;
+  padding: 0;
+  overflow: hidden;
+  margin-bottom: 2px;
+  border: 1px solid #d1d1d1;
+  background: #f7f7f7;
+  background-image: -webkit-gradient(linear, left bottom, left top, from(#ffffff), to(#f7f7f7));
+  background-image: -webkit-linear-gradient(bottom, #ffffff, #f7f7f7);
+  background-image: -moz-linear-gradient(bottom, #ffffff, #f7f7f7);
+  background-image: -o-linear-gradient(bottom, #ffffff, #f7f7f7);
+  background-image: linear-gradient(to top, #ffffff, #f7f7f7);
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
+  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
+  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);
+}
+.media-item .bar {
+  z-index: 9;
+  width: 0;
+  height: 100%;
+  margin-top: -24px;
+  background: #8cc1e9;
+  background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
+  background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
+  background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
+  background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
+  background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
+  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
+  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
+}
+.media-item .progress .percent {
+  z-index: 10;
+  position: relative;
+  width: 200px;
+  padding: 0 8px;
+  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
+  color: rgba(0, 0, 0, 0.6);
 }
-
 #wpbody-content #async-upload-wrap a {
-	display: none;
+  display: none;
 }
-
 .media-upload-form {
-	margin-top: 20px;
+  margin-top: 20px;
 }
-
 .media-upload-form td label {
-	margin-right: 6px;
-	margin-left: 2px;
+  margin-right: 6px;
+  margin-left: 2px;
 }
-
 .media-upload-form .align .field label {
-	display: inline;
-	padding: 0 0 0 23px;
-	margin: 0 1em 0 3px;
-	font-weight: bold;
+  display: inline;
+  padding: 0 0 0 23px;
+  margin: 0 1em 0 3px;
+  font-weight: bold;
 }
-
 .media-upload-form tr.image-size label {
-	margin: 0 0 0 5px;
-	font-weight: bold;
+  margin: 0 0 0 5px;
+  font-weight: bold;
 }
-
 .media-upload-form th.label label {
-	font-weight: bold;
-	margin: 0.5em;
-	font-size: 13px;
+  font-size: 13px;
+  font-weight: bold;
+  line-height: normal;
+  margin: 0.5em;
 }
-
 .media-upload-form th.label label span {
-	padding: 0 5px;
+  padding: 0 5px;
 }
-
 abbr.required {
-	border: medium none;
-	text-decoration: none;
-}
-
-.media-item .describe input[type="text"],
-.media-item .describe textarea {
-	width: 460px;
-}
-
-.media-item .describe p.help {
-	margin: 0;
-	padding: 0 0 0 5px;
+  border: medium none;
+  text-decoration: none;
 }
-
 .media-item .edit-attachment,
 .describe-toggle-on,
 .describe-toggle-off {
-	display: block;
-	line-height: 36px;
-	float: right;
-	margin-right: 15px;
+  display: block;
+  line-height: 36px;
+  float: right;
+  margin-right: 15px;
 }
-
 .media-item .describe-toggle-off,
 .media-item.open .describe-toggle-on {
-	display: none;
+  display: none;
 }
-
 .media-item.open .describe-toggle-off {
-	display: block;
+  display: block;
 }
-
 #media-items .media-item {
-	border-style: solid;
-	border-width: 1px;
-	min-height: 36px;
-	position: relative;
-	margin-top: -1px;
-	width: 100%;
+  border-style: solid;
+  border-width: 1px;
+  min-height: 36px;
+  position: relative;
+  margin-top: -1px;
+  width: 100%;
 }
-
 #media-items {
-	width: 623px;
+  width: 623px;
 }
-
 .media-new-php #media-items {
-	margin: 1em 0;
+  margin: 1em 0;
 }
-
 #media-items:empty {
-	border: 0 none;
-}
-
-.media-item .filename {
-	line-height: 36px;
-	overflow: hidden;
-	padding: 0 10px;
-}
-
-.media-item .error-div {
-	padding-left: 10px;
-}
-
-.media-item .pinkynail {
-	float: left;
-	margin: 2px 2px 0;
-	max-width: 40px;
-	max-height: 32px;
-}
-
-.media-item .startopen,
-.media-item .startclosed {
-	display: none;
-}
-
-.media-item .original {
-	position: relative;
-	height: 34px;
-}
-
-.media-item .progress {
-	float: right;
-	height: 22px;
-	margin: 6px 10px 0 0;
-	width: 200px;
-	line-height: 2em;
-	padding: 0;
-	overflow: hidden;
-	margin-bottom: 2px;
-	border: 1px solid #d1d1d1;
-	background: #f7f7f7;
-	background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
-	background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
-	background-image:    -moz-linear-gradient(bottom, #fff, #f7f7f7);
-	background-image:      -o-linear-gradient(bottom, #fff, #f7f7f7);
-	background-image: linear-gradient(to top, #fff, #f7f7f7);
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
-	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
-	box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
-}
-
-.media-item .bar {
-	z-index: 9;
-	width: 0;
-	height: 100%;
-	margin-top: -24px;
-	background-color: #8cc1e9;
-	background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
-	background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
-	background-image:    -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
-	background-image:      -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
-	background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
-	-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
-	box-shadow: 0 0 3px rgba(0,0,0,0.3);
-}
-
-.media-item .progress .percent {
-	z-index: 10;
-	position: relative;
-	width: 200px;
-	padding: 0 8px;
-	text-shadow: 0 1px 0 rgba(255,255,255,0.4);
-	color: rgba(0,0,0,0.6);
+  border: 0 none;
 }
-
 .upload-php .fixed .column-parent {
-	width: 15%;
+  width: 15%;
 }
-
 .js .html-uploader #plupload-upload-ui {
-	display: none;
+  display: none;
 }
-
 .js .html-uploader #html-upload-ui {
-	display: block;
+  display: block;
 }
-
 .media-upload-form .media-item.error {
-	margin: 0;
-	padding: 0;
+  margin: 0;
+  padding: 0;
 }
-
 .media-upload-form .media-item.error p,
 .media-item .error-div {
-	line-height: 16px;
-	margin: 5px 10px;
-	padding: 0;
+  line-height: 16px;
+  margin: 5px 10px;
+  padding: 0;
 }
-
 .media-item .error-div a.dismiss {
-	display: block;
-	float: right;
-	margin: 5px 4px 0 15px;
+  display: block;
+  float: right;
+  margin: 5px 4px 0 15px;
 }
-
 /*------------------------------------------------------------------------------
   14.1 - Media Library
 ------------------------------------------------------------------------------*/
-
 .find-box {
-	width: 600px;
-	height: 300px;
-	overflow: hidden;
-	padding: 33px 0 51px;
-	position: absolute;
-	z-index: 1000;
+  width: 600px;
+  height: 300px;
+  overflow: hidden;
+  padding: 33px 0 51px;
+  position: absolute;
+  z-index: 1000;
 }
-
 .find-box-head {
-	cursor: move;
-	font-weight: bold;
-	height: 2em;
-	line-height: 2em;
-	padding: 1px 12px;
-	position: absolute;
-	top: 5px;
-	width: 100%;
+  cursor: move;
+  font-weight: bold;
+  height: 2em;
+  line-height: 2em;
+  padding: 1px 12px;
+  position: absolute;
+  top: 5px;
+  width: 100%;
 }
-
 .find-box-inside {
-	overflow: auto;
-	padding: 6px;
-	height: 100%;
+  overflow: auto;
+  padding: 6px;
+  height: 100%;
 }
-
 .find-box-search {
-	overflow: hidden;
-	padding: 9px;
-	position: relative;
+  overflow: hidden;
+  padding: 9px;
+  position: relative;
 }
-
 .find-box-search .spinner {
-	float: none;
-	left: 125px;
-	position: absolute;
-	top: 9px;
+  float: none;
+  left: 125px;
+  position: absolute;
+  top: 9px;
 }
-
 #find-posts-input {
-	float: left;
-	width: 140px;
-	height: 24px;
+  float: left;
+  width: 140px;
+  height: 24px;
 }
-
 #find-posts-search {
-	float: left;
-	margin: 1px 4px 0 3px;
+  float: left;
+  margin: 1px 4px 0 3px;
 }
-
 #find-posts-response {
-	margin: 8px 0;
-	padding: 0 1px 6px;
+  margin: 8px 0;
+  padding: 0 1px 6px;
 }
-
 #find-posts-response table {
-	width: 100%;
+  width: 100%;
 }
-
 #find-posts-response .found-radio {
-	padding: 3px 0 0 8px;
-	width: 15px;
+  padding: 3px 0 0 8px;
+  width: 15px;
 }
-
 .find-box-buttons {
-	padding: 8px;
-	overflow: hidden;
+  padding: 8px;
+  overflow: hidden;
 }
-
 .find-box #resize-se {
-	position: absolute;
-	right: 1px;
-	bottom: 1px;
+  position: absolute;
+  right: 1px;
+  bottom: 1px;
 }
-
 .ui-find-overlay {
-	position: absolute;
-	top: 0;
-	left: 0;
-	background-color: #000;
-	opacity: 0.6;
-	filter: alpha(opacity=60);
+  position: absolute;
+  top: 0;
+  left: 0;
+  background-color: black;
+  opacity: 0.6;
+  filter: alpha(opacity=60);
 }
-
 ul#dismissed-updates {
-	display: none;
+  display: none;
 }
-
 form.upgrade {
-	margin-top: 8px;
+  margin-top: 8px;
 }
-
 form.upgrade .hint {
-	font-style: italic;
-	font-size: 85%;
-	margin: -0.5em 0 2em 0;
+  font-style: italic;
+  font-size: 85%;
+  margin: -0.5em 0 2em 0;
 }
-
 #poststuff .inside .the-tagcloud {
-	margin: 5px 0 10px;
-	padding: 8px;
-	border-width: 1px;
-	border-style: solid;
-	line-height: 1.8em;
-	word-spacing: 3px;
-	-webkit-border-radius: 6px;
-	border-radius: 6px;
+  margin: 5px 0 10px;
+  padding: 8px;
+  border-width: 1px;
+  border-style: solid;
+  line-height: 1.8em;
+  word-spacing: 3px;
+  border-radius: 6px;
+  -moz-border-radius: 6px;
+  -webkit-border-radius: 6px;
 }
-
 .drag-drop #drag-drop-area {
-	border: 4px dashed #DDDDDD;
-	height: 200px;
+  border: 4px dashed #DDDDDD;
+  height: 200px;
 }
-
 .drag-drop .drag-drop-inside {
-	margin: 70px auto 0;
-	width: 250px;
+  margin: 70px auto 0;
+  width: 250px;
 }
-
 .drag-drop-inside p {
-	color: #aaa;
-	font-size: 14px;
-	margin: 5px 0;
-	display: none;
+  color: #aaa;
+  font-size: 14px;
+  margin: 5px 0;
+  display: none;
 }
-
 .drag-drop .drag-drop-inside p {
-	text-align: center;
+  text-align: center;
 }
-
 .drag-drop-inside p.drag-drop-info {
-	font-size: 20px;
+  font-size: 20px;
 }
-
 .drag-drop .drag-drop-inside p,
 .drag-drop-inside p.drag-drop-buttons {
-	display: block;
+  display: block;
 }
-
 /*
 #drag-drop-area:-moz-drag-over {
 	border-color: #83b4d8;
 }
 borger color while dragging a file over the uploader drop area */
 .drag-drop.drag-over #drag-drop-area {
-	border-color: #83b4d8;
+  border-color: #83b4d8;
 }
-
 #plupload-upload-ui {
-	position: relative;
+  position: relative;
 }
-
-
 /*------------------------------------------------------------------------------
   14.2 - Image Editor
 ------------------------------------------------------------------------------*/
-
 .describe .image-editor {
-	vertical-align: top;
+  vertical-align: top;
 }
-
 .imgedit-wrap {
-	position: relative;
+  position: relative;
 }
-
 .imgedit-settings p {
-	margin: 8px 0;
+  margin: 8px 0;
 }
-
 .post-php .imgedit-wrap table {
-	width: 100%;
+  width: 100%;
 }
-
 .describe .imgedit-wrap table td,
 .wp_attachment_holder .imgedit-wrap table td {
-	vertical-align: top;
-	padding-top: 0;
+  vertical-align: top;
+  padding-top: 0;
 }
-
 .describe .imgedit-wrap table td.imgedit-settings {
-	padding: 0 5px;
+  padding: 0 5px;
 }
-
 .wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
-	width: 250px;
+  width: 250px;
 }
-
 td.imgedit-settings input {
-	margin-top: 0;
-	vertical-align: middle;
+  margin-top: 0;
+  vertical-align: middle;
 }
-
 .imgedit-wait {
-	position: absolute;
-	top: 0;
-	background: #fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
-	background-size: 16px 16px;
-	opacity: 0.7;
-	filter: alpha(opacity=70);
-	width: 100%;
-	height: 500px;
-	display: none;
+  position: absolute;
+  top: 0;
+  background: #ffffff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;
+  background-size: 16px 16px;
+  opacity: 0.7;
+  filter: alpha(opacity=70);
+  width: 100%;
+  height: 500px;
+  display: none;
 }
-
 .spinner {
-	background: url(../images/wpspin_light.gif) no-repeat;
-	background-size: 16px 16px;
-	display: none;
-	float: right;
-	opacity: 0.7;
-	filter: alpha(opacity=70);
-	width: 16px;
-	height: 16px;
-	margin: 5px 5px 0;
+  background: url(../images/wpspin_light.gif) no-repeat;
+  background-size: 16px 16px;
+  display: none;
+  float: right;
+  opacity: 0.7;
+  filter: alpha(opacity=70);
+  width: 16px;
+  height: 16px;
+  margin: 5px 5px 0;
 }
-
 .no-float {
-	float: none;
+  float: none;
 }
-
 .media-disabled,
-.imgedit-settings .disabled  {
-	color: grey;
+.imgedit-settings .disabled {
+  color: grey;
 }
-
 .wp_attachment_image,
 .A1B1 {
-	overflow: hidden;
+  overflow: hidden;
 }
-
 .wp_attachment_image .button,
 .A1B1 .button {
-	float: left;
+  float: left;
 }
-
 .no-js .wp_attachment_image .button {
-	display: none;
+  display: none;
 }
-
 .wp_attachment_image .spinner,
 .A1B1 .spinner {
-	float: left;
-	padding: 0 4px 4px;
-	vertical-align: bottom;
+  float: left;
+  padding: 0 4px 4px;
+  vertical-align: bottom;
 }
-
 .imgedit-menu {
-	margin: 0 0 12px;
-	min-width: 300px;
+  margin: 0 0 12px;
+  min-width: 300px;
 }
-
 .imgedit-menu div {
-	float: left;
-	width: 32px;
-	height: 32px;
+  float: left;
+  width: 32px;
+  height: 32px;
 }
-
 .imgedit-crop-wrap {
-	position: relative;
+  position: relative;
 }
-
 .imgedit-crop {
-	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;
-	margin: 0 8px 0 0;
+  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;
+  margin: 0 8px 0 0;
 }
-
 .imgedit-crop.disabled:hover {
-	background-position: -9px -31px;
+  background-position: -9px -31px;
 }
-
 .imgedit-crop:hover {
-	background-position: -9px -1px;
+  background-position: -9px -1px;
 }
-
 .imgedit-rleft {
-	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;
-	margin: 0 3px;
+  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;
+  margin: 0 3px;
 }
-
 .imgedit-rleft.disabled:hover {
-	background-position: -46px -31px;
+  background-position: -46px -31px;
 }
-
 .imgedit-rleft:hover {
-	background-position: -46px -1px;
+  background-position: -46px -1px;
 }
-
 .imgedit-rright {
-	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;
-	margin: 0 8px 0 3px;
+  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;
+  margin: 0 8px 0 3px;
 }
-
 .imgedit-rright.disabled:hover {
-	background-position: -77px -31px;
+  background-position: -77px -31px;
 }
-
 .imgedit-rright:hover {
-	background-position: -77px -1px;
+  background-position: -77px -1px;
 }
-
 .imgedit-flipv {
-	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
-	margin: 0 3px;
+  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;
+  margin: 0 3px;
 }
-
 .imgedit-flipv.disabled:hover {
-	background-position: -115px -31px;
+  background-position: -115px -31px;
 }
-
 .imgedit-flipv:hover {
-	background-position: -115px -1px;
+  background-position: -115px -1px;
 }
-
 .imgedit-fliph {
-	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
-	margin: 0 8px 0 3px;
+  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;
+  margin: 0 8px 0 3px;
 }
-
 .imgedit-fliph.disabled:hover {
-	background-position: -147px -31px;
+  background-position: -147px -31px;
 }
-
 .imgedit-fliph:hover {
-	background-position: -147px -1px;
+  background-position: -147px -1px;
 }
-
 .imgedit-undo {
-	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
-	margin: 0 3px;
+  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;
+  margin: 0 3px;
 }
-
 .imgedit-undo.disabled:hover {
-	background-position: -184px -31px;
+  background-position: -184px -31px;
 }
-
 .imgedit-undo:hover {
-	background-position: -184px -1px;
+  background-position: -184px -1px;
 }
-
 .imgedit-redo {
-	background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
-	margin: 0 8px 0 3px;
+  background: transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;
+  margin: 0 8px 0 3px;
 }
-
 .imgedit-redo.disabled:hover {
-	background-position: -215px -31px;
+  background-position: -215px -31px;
 }
-
 .imgedit-redo:hover {
-	background-position: -215px -1px;
+  background-position: -215px -1px;
 }
-
 .imgedit-applyto img {
-	margin: 0 8px 0 0;
+  margin: 0 8px 0 0;
 }
-
 .imgedit-group-top {
-	margin: 5px 0;
+  margin: 5px 0;
 }
-
 .imgedit-applyto .imgedit-label {
-	padding: 2px 0 0;
-	display: block;
+  padding: 2px 0 0;
+  display: block;
 }
-
 .imgedit-help {
-	display: none;
-	font-style: italic;
-	margin-bottom: 8px;
+  display: none;
+  font-style: italic;
+  margin-bottom: 8px;
 }
-
 a.imgedit-help-toggle {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 .form-table td.imgedit-response {
-	padding: 0;
+  padding: 0;
 }
-
 .imgedit-submit {
-	margin: 8px 0;
+  margin: 8px 0;
 }
-
 .imgedit-submit-btn {
-	margin-left: 20px;
+  margin-left: 20px;
 }
-
 .imgedit-wrap .nowrap {
-	white-space: nowrap;
+  white-space: nowrap;
 }
-
 span.imgedit-scale-warn {
-	color: red;
-	font-size: 20px;
-	font-style: normal;
-	visibility: hidden;
-	vertical-align: middle;
+  color: red;
+  font-size: 20px;
+  font-style: normal;
+  visibility: hidden;
+  vertical-align: middle;
 }
-
 .imgedit-group {
-	border-width: 1px;
-	border-style: solid;
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
-	margin-bottom: 8px;
-	padding: 2px 10px;
+  border-width: 1px;
+  border-style: solid;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
+  margin-bottom: 8px;
+  padding: 2px 10px;
 }
-
 /*------------------------------------------------------------------------------
   15.0 - Comments Screen
 ------------------------------------------------------------------------------*/
-
 .form-table {
-	border-collapse: collapse;
-	margin-top: 0.5em;
-	width: 100%;
-	margin-bottom: -8px;
-	clear: both;
+  border-collapse: collapse;
+  margin-top: 0.5em;
+  width: 100%;
+  margin-bottom: -8px;
+  clear: both;
 }
-
 .form-table td {
-	margin-bottom: 9px;
-	padding: 8px 10px;
-	line-height: 20px;
-	font-size: 12px;
+  margin-bottom: 9px;
+  padding: 8px 10px;
+  line-height: 20px;
+  font-size: 12px;
 }
-
-.form-table th,
-.form-wrap label {
-	font-weight: normal;
-	text-shadow: #fff 0 1px 0;
+.form-table td p {
+  margin-top: 4px;
+}
+.color-palette .form-table td {
+  border-width: 1px 1px 0;
+  border-style: solid solid none;
+  height: 10px;
+  line-height: 20px;
+  width: 10px;
 }
-
 .form-table th {
-	vertical-align: top;
-	text-align: left;
-	padding: 10px;
-	width: 200px;
+  vertical-align: top;
+  text-align: left;
+  padding: 10px;
+  width: 200px;
 }
-
 .form-table th.th-full {
-	width: auto;
+  width: auto;
 }
-
 .form-table div.color-option {
-	display: block;
-	clear: both;
-	margin-top: 12px;
+  display: block;
+  clear: both;
+  margin-top: 12px;
 }
-
 .form-table input.tog {
-	margin-top: 2px;
-	margin-right: 2px;
-	float: left;
+  margin-top: 2px;
+  margin-right: 2px;
+  float: left;
 }
-
-.form-table td p {
-	margin-top: 4px;
-}
-
 .form-table table.color-palette {
-	vertical-align: bottom;
-	float: left;
-	margin: -12px 3px 11px;
+  vertical-align: bottom;
+  float: left;
+  margin: -12px 3px 11px;
 }
-
-.form-table .color-palette td {
-	border-width: 1px 1px 0;
-	border-style: solid solid none;
-	height: 10px;
-	line-height: 20px;
-	width: 10px;
+.form-table th,
+.form-wrap label {
+  font-weight: normal;
+  text-shadow: #fff 0 1px 0;
 }
-
 .commentlist li {
-	padding: 1em 1em .2em;
-	margin: 0;
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
+  padding: 1em 1em .2em;
+  margin: 0;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
 }
-
 .commentlist li li {
-	border-bottom: 0;
-	padding: 0;
+  border-bottom: 0;
+  padding: 0;
 }
-
 .commentlist p {
-	padding: 0;
-	margin: 0 0 .8em;
+  padding: 0;
+  margin: 0 0 .8em;
+}
+.commentlist .avatar {
+  vertical-align: text-top;
 }
-
 /* reply to comments */
 #replyrow input {
-	border-width: 1px;
-	border-style: solid;
+  border-width: 1px;
+  border-style: solid;
 }
-
 #replyrow td {
-	padding: 2px;
+  padding: 2px;
+}
+#replyrow h5 {
+  margin: .2em 0 0;
+  padding: 0 5px;
+  line-height: 1.4em;
+  font-size: 1em;
 }
-
 #replysubmit {
-	margin: 0;
-	padding: 0 5px 3px;
-	text-align: center;
+  margin: 0;
+  padding: 0 5px 3px;
+  text-align: center;
 }
-
 #replysubmit .spinner {
-	padding: 2px 0 0;
-	vertical-align: top;
-	float: right;
+  padding: 2px 0 0;
+  vertical-align: top;
+  float: right;
 }
-
 #replysubmit .button {
-	margin-right: 5px;
+  margin-right: 5px;
 }
-
 #replysubmit .error {
-	color: red;
-	line-height: 21px;
-	text-align: center;
+  color: red;
+  line-height: 21px;
+  text-align: center;
 }
-
-#replyrow h5 {
-	margin: .2em 0 0;
-	padding: 0 5px;
-	line-height: 1.4em;
-	font-size: 1em;
-}
-
 #edithead .inside {
-	float: left;
-	padding: 3px 0 2px 5px;
-	margin: 0;
-	text-align: center;
+  float: left;
+  padding: 3px 0 2px 5px;
+  margin: 0;
+  text-align: center;
 }
-
 #edithead .inside input {
-	width: 180px;
+  width: 180px;
 }
-
 #edithead label {
-	padding: 2px 0;
+  padding: 2px 0;
 }
-
 #replycontainer {
-	padding: 5px;
+  padding: 5px;
 }
-
 #replycontent {
-	height: 120px;
-	-webkit-box-shadow: none;
-	box-shadow: none;
+  height: 120px;
+  -moz-box-shadow: none;
+  -webkit-box-shadow: none;
+  box-shadow: none;
 }
-
 .comment-php .wp-editor-area {
-	height: 200px;
+  height: 200px;
 }
-
 .comment-ays {
-	margin-bottom: 0;
-	border-style: solid;
-	border-width: 1px;
+  margin-bottom: 0;
+  border-style: solid;
+  border-width: 1px;
 }
-
 .comment-ays th {
-	border-right-style: solid;
-	border-right-width: 1px;
+  border-right-style: solid;
+  border-right-width: 1px;
 }
-
 .trash-undo-inside,
 .spam-undo-inside {
-	margin: 1px 8px 1px 0;
-	line-height: 16px;
+  margin: 1px 8px 1px 0;
+  line-height: 16px;
 }
-
-.spam-undo-inside .avatar,
-.trash-undo-inside .avatar {
-	height: 20px;
-	width: 20px;
-	margin-right: 8px;
-	vertical-align: middle;
+.trash-undo-inside .avatar,
+.spam-undo-inside .avatar {
+  height: 20px;
+  width: 20px;
+  margin-right: 8px;
+  vertical-align: middle;
 }
-
 .stuffbox .editcomment {
-	clear: none;
+  clear: none;
 }
-
 #comment-status-radio p {
-	margin: 3px 0 5px;
+  margin: 3px 0 5px;
 }
-
 #comment-status-radio input {
-	margin: 2px 3px 5px 0;
-	vertical-align: middle;
+  margin: 2px 3px 5px 0;
+  vertical-align: middle;
 }
-
 #comment-status-radio label {
-	padding: 5px 0;
-}
-
-.commentlist .avatar {
-	vertical-align: text-top;
+  padding: 5px 0;
 }
-
-
 /*------------------------------------------------------------------------------
   16.0 - Themes
 ------------------------------------------------------------------------------*/
-
 .theme-install-php .tablenav {
-	height: auto;
+  height: auto;
 }
-
 .theme-install-php .spinner {
-	margin-top: 9px;
+  margin-top: 9px;
 }
-
 h3.available-themes {
-	margin: 0.3em 0 1em;
-	float: left;
+  margin: 0.3em 0 1em;
+  float: left;
 }
-
 .available-theme {
-	display: inline-block;
-	margin-right: 10px;
-	overflow: hidden;
-	padding: 20px 20px 20px 0;
-	vertical-align: top;
-	width: 300px;
+  display: inline-block;
+  margin-right: 10px;
+  overflow: hidden;
+  padding: 20px 20px 20px 0;
+  vertical-align: top;
+  width: 300px;
 }
-
 .available-theme .screenshot {
-	width: 300px;
-	height: 225px;
-	display: block;
-	border-width: 1px;
-	border-style: solid;
-	margin-bottom: 10px;
-	overflow: hidden;
+  width: 300px;
+  height: 225px;
+  display: block;
+  border-width: 1px;
+  border-style: solid;
+  margin-bottom: 10px;
+  overflow: hidden;
 }
-
 .available-theme img {
-	width: 300px;
+  width: 300px;
 }
-
 .available-theme h3 {
-	margin: 15px 0 0;
+  margin: 15px 0 0;
 }
-
 .available-theme .theme-author {
-	line-height: 18px;
+  line-height: 18px;
 }
-
 .available-theme .action-links {
-	margin-top: 10px;
-	overflow: hidden;
+  margin-top: 10px;
+  overflow: hidden;
 }
-
 .available-theme a.screenshot:focus {
-	border-color: #777;
+  border-color: #777;
 }
-
 #current-theme .theme-info li,
 .theme-options li,
 .available-theme .action-links li {
-	float: left;
-	padding-right: 10px;
-	margin-right: 10px;
-	border-right: 1px solid #dfdfdf;
-}
-
-.available-theme .action-links li {
-	padding-right: 8px;
-	margin-right: 8px;
+  float: left;
+  padding-right: 10px;
+  margin-right: 10px;
+  border-right: 1px solid #dfdfdf;
 }
-
-.ie8 .available-theme .action-links li {
-	padding-right: 7px;
-	margin-right: 7px;
-}
-
 #current-theme .theme-info li:last-child,
 .theme-options li:last-child,
 .available-theme .action-links li:last-child {
-	padding-right: 0;
-	margin-right: 0;
-	border-right: 0;
+  padding-right: 0;
+  margin-right: 0;
+  border-right: 0;
+}
+.available-theme .action-links li {
+  padding-right: 8px;
+  margin-right: 8px;
+}
+.ie8 .available-theme .action-links li {
+  padding-right: 7px;
+  margin-right: 7px;
 }
-
 .available-theme .action-links .delete-theme {
-	float: right;
-	margin-left: 8px;
-	margin-right: 0;
+  float: right;
+  margin-left: 8px;
+  margin-right: 0;
 }
-
 .available-theme .action-links .delete-theme a {
-	color: red;
-	padding: 2px;
+  color: red;
+  padding: 2px;
 }
-
 .available-theme .action-links .delete-theme a:hover {
-	background: red;
-	color: #fff;
-	text-decoration: none;
+  background: red;
+  color: white;
+  text-decoration: none;
 }
-
 .available-theme .action-links p {
-	float: left;
+  float: left;
 }
-
 #current-theme {
-	margin: 20px 0 10px;
-	padding: 0 0 20px;
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
-	overflow: hidden;
+  margin: 20px 0 10px;
+  padding: 0 0 20px;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
+  overflow: hidden;
 }
-
 #current-theme.has-screenshot {
-	padding-left: 330px;
+  padding-left: 330px;
 }
-
 #current-theme h3 {
-	margin: 0;
-	font-size: 12px;
-	font-weight: normal;
-	color: #999;
+  margin: 0;
+  font-size: 12px;
+  font-weight: normal;
+  color: #999;
 }
-
 #current-theme h4 {
-	margin: 3px 0 16px;
-	font-size: 20px;
+  margin: 3px 0 16px;
+  font-size: 20px;
 }
-
 #current-theme h4 span {
-	margin-left: 20px;
-	font-size: 12px;
-	font-weight: normal;
+  margin-left: 20px;
+  font-size: 12px;
+  font-weight: normal;
 }
-
 #current-theme a {
-	border-bottom: none;
+  border-bottom: none;
 }
-
 #current-theme .theme-info {
-	margin: 1em 0;
-	overflow: hidden;
+  margin: 1em 0;
+  overflow: hidden;
 }
-
 #current-theme .theme-description {
-	margin-top: 5px;
-	max-width: 600px;
-	line-height: 1.6em;
+  margin-top: 5px;
+  max-width: 600px;
+  line-height: 1.6em;
 }
-
 #current-theme img {
-	float: left;
-	width: 300px;
-	margin-left: -330px;
-
-	border-width: 1px;
-	border-style: solid;
+  float: left;
+  width: 300px;
+  margin-left: -330px;
+  border-width: 1px;
+  border-style: solid;
 }
-
 .theme-options {
-	overflow: hidden;
-	font-size: 14px;
-	padding-bottom: 10px;
+  overflow: hidden;
+  font-size: 14px;
+  padding-bottom: 10px;
 }
-
 .theme-options .load-customize {
-	margin-right: 30px;
-	float: left;
+  margin-right: 30px;
+  float: left;
 }
-
 .theme-options span {
-	float: left;
-	margin-right: 10px;
-	text-transform: uppercase;
-	font-size: 11px;
-	line-height: 18px;
-	color: #999;
+  float: left;
+  margin-right: 10px;
+  text-transform: uppercase;
+  font-size: 11px;
+  line-height: 18px;
+  color: #999;
 }
-
 .theme-options ul {
-	float: left;
-	margin: 0;
+  float: left;
+  margin: 0;
 }
-
 /* Allow for three-up in small windows when sidebar is collapsed */
 @media only screen and (max-width: 1200px) {
-	.folded .available-theme,
-	.folded .available-theme .screenshot {
-		width: 300px;
-	}
-
-	.folded .available-theme .screenshot {
-		height: 225px;
-	}
-
-	.folded #current-theme img {
-		width: 300px;
-	}
-
-	.folded #current-theme.has-screenshot {
-		padding-left: 330px;
-	}
-
-	.folded #current-theme img {
-		margin-left: -330px;
-	}
+  .folded .available-theme,
+  .folded .available-theme .screenshot {
+    width: 300px;
+  }
+  .folded .available-theme .screenshot {
+    height: 225px;
+  }
+  .folded #current-theme img {
+    width: 300px;
+    margin-left: -330px;
+  }
+  .folded #current-theme.has-screenshot {
+    padding-left: 330px;
+  }
 }
-
 /* Adjust three-up display in smaller windows when sidebar is collapsed */
 @media only screen and (max-width: 1079px) {
-	.folded .available-theme,
-	.folded .available-theme .screenshot {
-		width: 270px;
-	}
-
-	.folded .available-theme .screenshot {
-		height: 203px;
-	}
-
-	.folded #current-theme img {
-		width: 270px;
-	}
-
-	.folded #current-theme.has-screenshot {
-		padding-left: 300px;
-	}
-
-	.folded #current-theme img {
-		margin-left: -300px;
-	}
+  .folded .available-theme,
+  .folded .available-theme .screenshot {
+    width: 270px;
+  }
+  .folded .available-theme .screenshot {
+    height: 203px;
+  }
+  .folded #current-theme img {
+    width: 270px;
+    margin-left: -300px;
+  }
+  .folded #current-theme.has-screenshot {
+    padding-left: 300px;
+  }
 }
-
 /* Allow for three-up on 1024px wide screens, e.g. tablets */
 @media only screen and (max-width: 1200px) {
-	.available-theme,
-	.available-theme .screenshot,
-	#current-theme img {
-		width: 240px;
-	}
-
-	.available-theme .screenshot {
-		height: 180px;
-	}
-
-	.available-theme img {
-		width: 100%;
-	}
-
-	#current-theme.has-screenshot {
-		padding-left: 270px;
-	}
-
-	#current-theme img {
-		margin-left: -270px;
-	}
+  .available-theme,
+  .available-theme .screenshot,
+  #current-theme img {
+    width: 240px;
+  }
+  .available-theme .screenshot {
+    height: 180px;
+  }
+  .available-theme img {
+    width: 100%;
+  }
+  #current-theme.has-screenshot {
+    padding-left: 270px;
+  }
+  #current-theme img {
+    margin-left: -270px;
+  }
 }
-
 #post-body ul.add-menu-item-tabs li.tabs a,
 #TB_window #TB_title a.tb-theme-preview-link,
 #TB_window #TB_title a.tb-theme-preview-link:visited {
-	font-weight: bold;
-	text-decoration: none;
+  font-weight: bold;
+  text-decoration: none;
 }
-
 #TB_window #TB_title {
-	background-color: #222;
-	color: #cfcfcf;
+  background-color: #222;
+  color: #cfcfcf;
 }
-
 #broken-themes {
-	text-align: left;
-	width: 50%;
-	border-spacing: 3px;
-	padding: 3px;
+  text-align: left;
+  width: 50%;
+  border-spacing: 3px;
+  padding: 3px;
 }
-
 .theme-install-php h4 {
-	margin: 2.5em 0 8px;
+  margin: 2.5em 0 8px;
 }
-
-
 /*------------------------------------------------------------------------------
   16.1 - Custom Header Screen
 ------------------------------------------------------------------------------*/
-
 .appearance_page_custom-header #headimg {
-	border: 1px solid #DFDFDF;
-	overflow: hidden;
-	width: 100%;
+  border: 1px solid #dfdfdf;
+  overflow: hidden;
+  width: 100%;
 }
-
 .appearance_page_custom-header #upload-form p label {
-	font-size: 12px;
+  font-size: 12px;
 }
-
 .appearance_page_custom-header .available-headers .default-header {
-	float: left;
-	margin: 0 20px 20px 0;
+  float: left;
+  margin: 0 20px 20px 0;
 }
-
 .appearance_page_custom-header .random-header {
-	clear: both;
-	margin: 0 20px 20px 0;
-	vertical-align: middle;
+  clear: both;
+  margin: 0 20px 20px 0;
+  vertical-align: middle;
 }
-
 .appearance_page_custom-header .available-headers label input,
 .appearance_page_custom-header .random-header label input {
-	margin-right: 10px;
+  margin-right: 10px;
 }
-
 .appearance_page_custom-header .available-headers label img {
-	vertical-align: middle;
+  vertical-align: middle;
 }
-
-
 /*------------------------------------------------------------------------------
   16.2 - Custom Background Screen
 ------------------------------------------------------------------------------*/
-
 div#custom-background-image {
-	min-height: 100px;
-	border: 1px solid #dfdfdf;
+  min-height: 100px;
+  border: 1px solid #dfdfdf;
 }
-
 div#custom-background-image img {
-	max-width: 400px;
-	max-height: 300px;
+  max-width: 400px;
+  max-height: 300px;
 }
-
-
 /*------------------------------------------------------------------------------
   16.3 - Tabbed Admin Screen Interface (Experimental)
 ------------------------------------------------------------------------------*/
-
 .nav-tab {
-	border-style: solid;
-	border-width: 1px 1px 0;
-	color: #aaa;
-	text-shadow: #fff 0 1px 0;
-	font-size: 12px;
-	line-height: 16px;
-	display: inline-block;
-	padding: 4px 14px 6px;
-	text-decoration: none;
-	margin: 0 6px -1px 0;
-	-webkit-border-top-left-radius: 3px;
-	-webkit-border-top-right-radius: 3px;
-	border-top-left-radius: 3px;
-	border-top-right-radius: 3px;
+  border-style: solid;
+  border-width: 1px 1px 0;
+  color: #aaa;
+  text-shadow: #fff 0 1px 0;
+  font-size: 12px;
+  line-height: 16px;
+  display: inline-block;
+  padding: 4px 14px 6px;
+  text-decoration: none;
+  margin: 0 6px -1px 0;
+  border-top-left-radius: 3px;
+  border-top-right-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
 }
-
-.nav-tab-active {
-	border-width: 1px;
-	color: #464646;
+h2 .nav-tab {
+  padding: 4px 10px 6px;
+  font-weight: 200;
+  font-size: 20px;
+  line-height: 24px;
 }
-
-h2.nav-tab-wrapper, h3.nav-tab-wrapper {
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
-	padding-bottom: 0;
+.nav-tab-active {
+  border-width: 1px;
+  color: #464646;
 }
-
-h2 .nav-tab {
-	padding: 4px 10px 6px;
-	font-weight: 200;
-	font-size: 20px;
-	line-height: 24px;
-
+h2.nav-tab-wrapper,
+h3.nav-tab-wrapper {
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
+  padding-bottom: 0;
 }
-
-
 /*------------------------------------------------------------------------------
   17.0 - Plugins
 ------------------------------------------------------------------------------*/
-
 #dashboard_right_now .versions .b,
 #post-status-display,
 #post-visibility-display,
@@ -5521,3884 +5021,2921 @@ h2 .nav-tab {
 #ed_reply_toolbar #ed_reply_strong,
 .item-controls .item-order a,
 .feature-filter .feature-name {
-	font-weight: bold;
+  font-weight: bold;
 }
-
 .plugins p {
-	margin: 0 4px;
-	padding: 0;
+  margin: 0 4px;
+  padding: 0;
 }
-
-.plugins .desc p {
-	margin: 0 0 8px;
+.desc .plugins p {
+  margin: 0 0 8px;
 }
-
 .plugins td.desc {
-	line-height: 1.5em;
+  line-height: 1.5em;
 }
-
 .plugins .desc ul,
 .plugins .desc ol {
-	margin: 0 0 0 2em;
+  margin: 0 0 0 2em;
 }
-
 .plugins .desc ul {
-	list-style-type: disc;
+  list-style-type: disc;
 }
-
 .plugins .row-actions-visible {
-	padding: 0;
+  padding: 0;
 }
-
 .plugins tbody th.check-column {
-	padding: 7px 0;
+  padding: 7px 0;
 }
-
 .plugins .inactive td,
 .plugins .inactive th,
 .plugins .active td,
 .plugins .active th {
-	border-top-style: solid;
-	border-top-width: 1px;
-	padding: 5px 7px 0;
+  border-top-style: solid;
+  border-top-width: 1px;
+  padding: 5px 7px 0;
 }
-
 .plugins .update th,
 .plugins .update td {
-	border-bottom: 0;
+  border-bottom: 0;
 }
-.plugin-update-tr td {
-	border-top: 0;
-}
-
 #wpbody-content .plugins .plugin-title,
 #wpbody-content .plugins .theme-title {
-	padding-right: 12px;
-	white-space:nowrap;
+  padding-right: 12px;
+  white-space: nowrap;
 }
-
 .plugins .second,
 .plugins .row-actions-visible {
-	padding: 0 0 5px;
+  padding: 0 0 5px;
 }
-
 .plugins .update .second,
 .plugins .update .row-actions-visible {
-	padding-bottom: 0;
+  padding-bottom: 0;
+}
+.plugin-update-tr td {
+  border-top: 0;
 }
-
 .plugins-php .widefat tfoot th,
 .plugins-php .widefat tfoot td {
-	border-top-style: solid;
-	border-top-width: 1px;
+  border-top-style: solid;
+  border-top-width: 1px;
 }
-
 .plugin-update-tr .update-message {
-	margin: 5px;
-	padding: 3px 5px;
+  margin: 5px;
+  padding: 3px 5px;
 }
-
 .plugin-install-php h4 {
-	margin: 2.5em 0 8px;
+  margin: 2.5em 0 8px;
 }
-
-
 /*------------------------------------------------------------------------------
   18.0 - Users
 ------------------------------------------------------------------------------*/
-
 #profile-page .form-table textarea {
-	width: 500px;
-	margin-bottom: 6px;
+  width: 500px;
+  margin-bottom: 6px;
 }
-
 #profile-page .form-table #rich_editing {
-	margin-right: 5px
+  margin-right: 5px;
 }
-
 #your-profile legend {
-	font-size: 22px;
+  font-size: 22px;
 }
-
 #your-profile #rich_editing {
-	border: none;
+  border: none;
 }
-
 #display_name {
-	width: 15em;
+  width: 15em;
 }
-
 #createuser .form-field input {
-	width: 25em;
+  width: 25em;
 }
-
 /*------------------------------------------------------------------------------
-  19.0 - Tools
+  20.0 - Settings
 ------------------------------------------------------------------------------*/
-
-.pressthis {
-	margin: 20px 0;
+#utc-time,
+#local-time {
+  padding-left: 25px;
+  font-style: italic;
+  font-family: sans-serif;
 }
-
-.pressthis a,
-.pressthis a:hover,
-.pressthis a:focus,
-.pressthis a:active {
-	display: inline-block;
-	position: relative;
-	cursor: move;
-	color: #333;
-	background: #e6e6e6;
-	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));
-	background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
-	background-image:    -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
-	background-image:      -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
-	background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8 77%);
-	-webkit-border-radius: 5px;
-	border-radius: 5px;
-	border: 1px solid #b4b4b4;
-	font-style: normal;
-	line-height: 16px;
-	font-size: 14px;
-	text-decoration: none;
-	text-shadow: 0 1px 0px #fff;
+.defaultavatarpicker .avatar {
+  margin: 2px 0;
+  vertical-align: middle;
 }
-
-.pressthis a:active {
-	outline: none;
-}
-
-.pressthis a:hover:after {
-	-webkit-transform: skew(20deg) rotate(9deg);
-	-moz-transform: skew(20deg) rotate(9deg);
-	transform: skew(20deg) rotate(9deg);
-	-webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
-	box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
-}
-
-.pressthis a span {
-	background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;
-	background-size: 24px 20px;
-	padding: 8px 11px 8px 27px;
-	margin: 0 5px;
-	display: inline-block;
-}
-
-.pressthis a:after {
-	content: '';
-	width: 70%;
-	height: 55%;
-	z-index: -1;
-	position: absolute;
-	right: 10px;
-	bottom: 9px;
-	background: transparent;
-
-	-webkit-transform: skew(20deg) rotate(6deg);
-	-moz-transform: skew(20deg) rotate(6deg);
-	transform: skew(20deg) rotate(6deg);
-	-webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
-	box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
-}
-
-/*------------------------------------------------------------------------------
-  20.0 - Settings
-------------------------------------------------------------------------------*/
-
-#utc-time, #local-time {
-	padding-left: 25px;
-	font-style: italic;
-	font-family: sans-serif;
-}
-
-.defaultavatarpicker .avatar {
-	margin: 2px 0;
-	vertical-align: middle;
-}
-
 .options-general-php .spinner {
-	float: none;
-	margin: -3px 3px;
+  float: none;
+  margin: -3px 3px;
 }
-
 /*------------------------------------------------------------------------------
   21.0 - Admin Footer
 ------------------------------------------------------------------------------*/
-
 #wpfooter {
-	position: absolute;
-	bottom: 0;
-	left: 0;
-	right: 0;
-	padding: 10px 0;
-	margin-right: 20px;
-	border-top-width: 1px;
-	border-top-style: solid;
+  position: absolute;
+  bottom: 0;
+  left: 0;
+  right: 0;
+  padding: 10px 0;
+  margin-right: 20px;
+  border-top-width: 1px;
+  border-top-style: solid;
 }
-
 #wpfooter p {
-	margin: 0;
-	line-height: 20px;
+  margin: 0;
+  line-height: 20px;
 }
-
 #wpfooter a {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 #wpfooter a:hover {
-	text-decoration: underline;
+  text-decoration: underline;
 }
-
 /*------------------------------------------------------------------------------
   22.0 - About Pages
 ------------------------------------------------------------------------------*/
-
+/* WordPress Version Badge */
+.wp-badge {
+  padding-top: 142px;
+  height: 50px;
+  width: 173px;
+  font-size: 14px;
+  font-weight: bold;
+  line-height: normal;
+  text-align: center;
+  margin: 0 -5px;
+  background: url('../images/wp-badge.png?ver=20111120') no-repeat;
+}
 .about-wrap {
-	position: relative;
-	margin: 25px 40px 0 20px;
-	max-width: 1050px; /* readability */
+  position: relative;
+  margin: 25px 40px 0 20px;
+  max-width: 1050px;
+  /* readability */
 
-	font-size: 15px;
-}
+  font-size: 15px;
+  /* Typography */
 
-.about-wrap div.updated,
-.about-wrap div.error {
-	display: none !important;
-}
+  /* Point Releases */
 
-/* Typography */
+  /* Tabs */
 
-.about-wrap p {
-	line-height: 1.6em;
-}
+  /* Changelog / Update screen */
 
-.about-wrap h1 {
-	margin: 0.2em 200px 0 0;
-	line-height: 1.2em;
-	font-size: 2.8em;
-	font-weight: 200;
-}
+  /* Return to Dashboard Home link */
 
-.about-text,
-.about-description,
-.about-wrap li.wp-person a.web {
-	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
-	font-weight: normal;
-	line-height: 1.6em;
-	font-size: 20px;
-}
+  /* Credits */
 
-.about-description {
-	margin-top: 1.4em;
-}
+  /* Freedoms */
 
-.about-text {
-	margin: 1em 200px 1.4em 0;
-	min-height: 60px;
-	font-size: 24px;
 }
-
-.about-wrap h3 {
-	font-size: 24px;
-	margin-bottom: 1em;
-	padding-top: 20px;
+.about-wrap div.updated,
+.about-wrap div.error {
+  display: none !important;
 }
-
-.about-wrap .feature-section {
-	padding-bottom: 20px;
+.about-wrap p {
+  line-height: 1.6em;
 }
-
-.about-wrap .feature-section h4 {
-	margin-bottom: 0.6em;
+.about-wrap h1 {
+  margin: 0.2em 200px 0 0;
+  line-height: 1.2em;
+  font-size: 2.8em;
+  font-weight: 200;
 }
-
-.about-wrap .feature-section p {
-	margin-top: 0.6em;
+.about-wrap h3 {
+  font-size: 24px;
+  margin-bottom: 1em;
+  padding-top: 20px;
 }
-
 .about-wrap code {
-	font-size: 14px;
+  font-size: 14px;
+}
+.about-wrap li.wp-person a.web {
+  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
+  font-size: 20px;
+  font-weight: normal;
+  line-height: 1.6em;
 }
-
-/* Point Releases */
-
 .about-wrap .point-releases {
-	margin-top: 5px;
+  margin-top: 5px;
 }
-
 .about-wrap .changelog.point-releases h3 {
-	padding-top: 35px;
+  padding-top: 35px;
 }
-
 .about-wrap .changelog.point-releases h3:first-child {
-	padding-top: 7px;
-}
-
-/* WordPress Version Badge */
-
-.wp-badge {
-	padding-top: 142px;
-	height: 50px;
-	width: 173px;
-	font-weight: bold;
-	font-size: 14px;
-	text-align: center;
-	margin: 0 -5px;
-	background: url('../images/wp-badge.png?ver=20111120') no-repeat;
+  padding-top: 7px;
 }
-
 .about-wrap .wp-badge {
-	position: absolute;
-	top: 0;
-	right: 0;
+  position: absolute;
+  top: 0;
+  right: 0;
 }
-
-/* Tabs */
-
 .about-wrap h2.nav-tab-wrapper {
-	padding-left: 6px;
+  padding-left: 6px;
 }
-
 .about-wrap h2 .nav-tab {
-	padding: 4px 10px 6px;
-	margin: 0 3px -1px 0;
-	font-size: 18px;
-	vertical-align: top;
+  padding: 4px 10px 6px;
+  margin: 0 3px -1px 0;
+  font-size: 18px;
+  vertical-align: top;
 }
-
 .about-wrap h2 .nav-tab-active {
-	font-weight: bold;
-	padding-top: 3px;
+  font-weight: bold;
+  padding-top: 3px;
+}
+.about-wrap .feature-section {
+  padding-bottom: 20px;
+}
+.about-wrap .feature-section h4 {
+  margin-bottom: 0.6em;
+}
+.about-wrap .feature-section p {
+  margin-top: 0.6em;
 }
-
-/* Changelog / Update screen */
-
 .about-wrap .feature-section img,
 .about-wrap .feature-section .video {
-	border: none;
-	margin: 0 1.94% 10px 0;
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
+  border: none;
+  margin: 0 1.94% 10px 0;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
 }
-
 .about-wrap .feature-section .video video {
-	max-width: 100%;
+  max-width: 100%;
 }
-
 .about-wrap .feature-section.three-col img {
-	margin: 0.5em 0 0.5em 5px;
-	max-width: 100%;
-	float: none;
-}
-
-.ie8 .about-wrap .feature-section.three-col img {
-	margin-left: 0;
+  margin: 0.5em 0 0.5em 5px;
+  max-width: 100%;
+  float: none;
 }
-
 .about-wrap .feature-section.images-stagger-right img,
 .about-wrap .feature-section.images-stagger-right .video {
-	float: right;
-	margin: 0 5px 12px 2em;
+  float: right;
+  margin: 0 5px 12px 2em;
 }
-
 .about-wrap .feature-section.images-stagger-left img {
-	float: left;
-	margin: 0 2em 12px 5px;
+  float: left;
+  margin: 0 2em 12px 5px;
 }
-
 .about-wrap .feature-section .image-100 {
-	margin: 0 0 2em 0;
-	width: 100%;
+  margin: 0 0 2em 0;
+  width: 100%;
 }
-
 .about-wrap .feature-section .image-66 {
-	width: 65%;
+  width: 65%;
 }
-
 .about-wrap .feature-section .image-66.video {
-	max-width: 600px;
+  max-width: 600px;
 }
-
 .about-wrap .feature-section .image-50 {
-	max-width: 50%;
+  max-width: 50%;
 }
-
 .about-wrap .feature-section img.image-30 {
-	max-width: 31.2381%;
+  max-width: 31.2381%;
 }
-
-.ie8 .about-wrap .feature-section img {
-	border-width: 1px;
-	border-style: solid;
-}
-
-.about-wrap .images-stagger-right img.image-30:nth-child(2) {
-	margin-left: 1em;
-}
-
 .about-wrap .feature-section.col {
-	margin-bottom: 0;
+  margin-bottom: 0;
 }
-
 .about-wrap .feature-section.col h4 {
-	margin:  0 0 0.6em 0;
+  margin: 0 0 0.6em 0;
 }
-
 .about-wrap .feature-section.col .last-feature {
-	margin-right: 0;
+  margin-right: 0;
+}
+.about-wrap .feature-section.two-col div,
+.about-wrap .feature-section.three-col div {
+  margin-right: 4.999999999%;
+  float: left;
 }
-
 .about-wrap .feature-section.two-col div {
-	width: 47%;
-	margin-right: 4.999999999%;
-	float: left;
+  width: 47%;
 }
-
 .about-wrap .feature-section.three-col div {
-	width: 30%;
-	margin-right: 4.999999999%;
-	float: left;
+  width: 30%;
+}
+.ie8 .about-wrap .feature-section.three-col img {
+  margin-left: 0;
+}
+.ie8 .about-wrap .feature-section img {
+  border-width: 1px;
+  border-style: solid;
+}
+.about-wrap .images-stagger-right img.image-30:nth-child(2) {
+  margin-left: 1em;
 }
-
 .about-wrap .three-col-images {
-	text-align: center;
+  text-align: center;
 }
-
 .about-wrap .three-col-images img {
-	margin: 0 0 10px;
+  margin: 0 0 10px;
 }
-
 .about-wrap .three-col-images .last-feature {
-	float: right;
+  float: right;
 }
-
 .about-wrap .three-col-images .first-feature {
-	float: left;
+  float: left;
 }
-
 .about-wrap .changelog .feature-section {
-	overflow: hidden;
+  overflow: hidden;
 }
-
 .about-wrap .changelog li {
-	list-style-type: disc;
-	margin-left: 3em;
-}
-
-@media only screen and (max-width: 900px) {
-	.about-wrap .feature-section.images-stagger-left img,
-	.about-wrap .feature-section.images-stagger-right img,
-	.about-wrap .feature-section.images-stagger-right .video {
-		clear: both;
-	}
-
-	.about-wrap .feature-section .video.image-66 {
-		float: none;
-		width: 98%;
-		max-width: 98%;
-	}
-
-	.about-wrap .feature-section.images-stagger-right .video.image-66 {
-		margin-left: 3px;
-	}
-}
-
-@media only screen and (max-width: 768px) {
-	.about-wrap .feature-section .image-66 {
-		float: none;
-		width: 98%;
-		max-width: 98%;
-	}
-
-	.about-wrap .feature-section.images-stagger-right .image-66 {
-		margin-left: 3px;
-	}
-
-	.about-wrap .feature-section.images-stagger-left .image-66 {
-		margin-right: 3px;
-	}
+  list-style-type: disc;
+  margin-left: 3em;
 }
-
-/* Return to Dashboard Home link */
-
 .about-wrap .return-to-dashboard {
-	margin: 30px 0 0 -5px;
-	font-size: 14px;
-	font-weight: bold;
+  margin: 30px 0 0 -5px;
+  font-size: 14px;
+  font-weight: bold;
+  line-height: normal;
 }
-
 .about-wrap .return-to-dashboard a {
-	text-decoration: none;
-	padding: 0 5px;
+  text-decoration: none;
+  padding: 0 5px;
 }
-
-/* Credits */
-
 .about-wrap h4.wp-people-group {
-	margin-top: 2.6em;
-	font-size: 16px;
+  margin-top: 2.6em;
+  font-size: 16px;
 }
-
 .about-wrap ul.wp-people-group {
-	overflow: hidden;
-	padding: 0 5px;
-	margin: 0 -15px 0 -5px;
-}
-
-.about-wrap ul.compact {
-	margin-bottom: 0
+  overflow: hidden;
+  padding: 0 5px;
+  margin: 0 -15px 0 -5px;
 }
-
 .about-wrap li.wp-person {
-	float: left;
-	margin-right: 10px;
+  float: left;
+  margin-right: 10px;
 }
-
 .about-wrap li.wp-person img.gravatar {
-	float: left;
-	margin: 0 10px 10px 0;
-	padding: 2px;
-	width: 60px;
-	height: 60px;
+  float: left;
+  margin: 0 10px 10px 0;
+  padding: 2px;
+  width: 60px;
+  height: 60px;
+}
+.about-wrap ul.compact {
+  margin-bottom: 0;
 }
-
 .about-wrap ul.compact li.wp-person img.gravatar {
-	width: 30px;
-	height: 30px;
+  width: 30px;
+  height: 30px;
 }
-
 .about-wrap li.wp-person {
-	height: 70px;
-	width: 280px;
-	padding-bottom: 15px;
-}
-
-.about-wrap ul.compact li.wp-person {
-	height: auto;
-	width: 180px;
-	padding-bottom: 0;
-	margin-bottom: 0;
+  height: 70px;
+  width: 280px;
+  padding-bottom: 15px;
 }
-
-.about-wrap #wp-people-group-validators + p.wp-credits-list {
-	margin-top: 0;
+ul.compact .about-wrap li.wp-person {
+  height: auto;
+  width: 180px;
+  padding-bottom: 0;
+  margin-bottom: 0;
 }
-
 .about-wrap li.wp-person a.web {
-	display: block;
-	margin: 6px 0 2px;
-	font-size: 16px;
-	text-decoration: none;
+  display: block;
+  margin: 6px 0 2px;
+  font-size: 16px;
+  text-decoration: none;
+}
+.about-wrap #wp-people-group-validators + p.wp-credits-list {
+  margin-top: 0;
 }
-
 .about-wrap p.wp-credits-list a {
-	white-space: nowrap;
+  white-space: nowrap;
 }
-
-/* Freedoms */
-
 .freedoms-php .about-wrap ol {
-	margin: 40px 60px;
+  margin: 40px 60px;
 }
-
 .freedoms-php .about-wrap ol li {
-	list-style-type: decimal;
-	font-weight: bold;
+  list-style-type: decimal;
+  font-weight: bold;
 }
-
 .freedoms-php .about-wrap ol p {
-	font-weight: normal;
-	margin: 0.6em 0;
+  font-weight: normal;
+  margin: 0.6em 0;
+}
+.about-description {
+  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
+  font-size: 20px;
+  font-weight: normal;
+  line-height: 1.6em;
+  margin-top: 1.4em;
+}
+.about-text {
+  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
+  font-size: 24px;
+  font-weight: normal;
+  line-height: 1.6em;
+  margin: 1em 200px 1.4em 0;
+  min-height: 60px;
+}
+@media only screen and (max-width: 900px) {
+  .about-wrap .feature-section .images-stagger-left img,
+  .about-wrap .feature-section .images-stagger-right img,
+  .about-wrap .feature-section .images-stagger-right .video {
+    clear: both;
+  }
+  .about-wrap .feature-section .video.image-66 {
+    float: none;
+    width: 98%;
+    max-width: 98%;
+  }
+  .about-wrap .feature-section.images-stagger-right .video.image-66 {
+    margin-left: 3px;
+  }
+}
+@media only screen and (max-width: 768px) {
+  .about-wrap .feature-section .image-66 {
+    float: none;
+    width: 98%;
+    max-width: 98%;
+  }
+  .about-wrap .feature-section.images-stagger-right .image-66 {
+    margin-left: 3px;
+  }
+  .about-wrap .feature-section.images-stagger-left .image-66 {
+    margin-right: 3px;
+  }
 }
-
 /*------------------------------------------------------------------------------
   23.0 - Full Overlay w/ Sidebar
 ------------------------------------------------------------------------------*/
-
 body.full-overlay-active {
-	overflow: hidden;
+  overflow: hidden;
 }
-
 .wp-full-overlay {
-	background: #fff;
-	z-index: 500000;
-	position: fixed;
-	overflow: visible;
-	top: 0;
-	bottom: 0;
-	left: 0;
-	right: 0;
-	height: 100%;
-	min-width: 0;
-}
-
-.wp-full-overlay-sidebar {
-	-webkit-box-sizing: border-box;
-	-moz-box-sizing:    border-box;
-	box-sizing:         border-box;
+  background: #fff;
+  z-index: 500000;
+  position: fixed;
+  overflow: visible;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  right: 0;
+  height: 100%;
+  min-width: 0;
+  /* Close Link */
 
-	position: fixed;
-	width: 300px;
-	height: 100%;
-	top: 0;
-	bottom: 0;
-	left: 0;
-	padding: 0;
-	margin: 0;
-	z-index: 10;
-	overflow: auto;
-	background: #f5f5f5;
-	border-right: 1px solid rgba( 0, 0, 0, 0.2 );
-}
-
-.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
-	overflow: visible;
-}
+  /* Collapse Button */
 
-.wp-full-overlay.collapsed,
-.wp-full-overlay.expanded .wp-full-overlay-sidebar {
-	margin-left: 0 !important;
 }
-
 .wp-full-overlay.expanded {
-	margin-left: 300px;
+  margin-left: 300px;
 }
-
-.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
-	margin-left: -300px;
+.wp-full-overlay .close-full-overlay {
+  text-decoration: none;
 }
-
-.wp-full-overlay-sidebar:after {
-	content: '';
-	display: block;
-	position: absolute;
-	top: 0;
-	bottom: 0;
-	right: 0;
-	width: 3px;
-	box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
-	z-index: 1000;
+.wp-full-overlay a.collapse-sidebar {
+  position: absolute;
+  bottom: 12px;
+  left: 0;
+  z-index: 50;
+  display: block;
+  width: 19px;
+  height: 19px;
+  margin-left: 15px;
+  padding: 0;
+  border-radius: 50%;
+  -moz-border-radius: 50%;
+  -webkit-border-radius: 50%;
+  text-decoration: none;
 }
-
-.wp-full-overlay-main {
-	position: absolute;
-	left: 0;
-	right: 0;
-	top: 0;
-	bottom: 0;
-	height: 100%;
+.wp-full-overlay .collapse-sidebar-arrow {
+  position: absolute;
+  margin-top: 2px;
+  margin-left: 2px;
+  display: block;
+  width: 15px;
+  height: 15px;
+  background: transparent url('../images/arrows.png') no-repeat -1px -73px;
 }
-
-.wp-full-overlay-sidebar .wp-full-overlay-header {
-	position: absolute;
-	left: 0;
-	right: 0;
-	height: 45px;
-	padding: 0 20px;
-	line-height: 45px;
-	z-index: 10;
-	margin: 0;
+.wp-full-overlay .collapse-sidebar-label {
+  position: absolute;
+  left: 100%;
+  color: #808080;
+  line-height: 20px;
+  margin-left: 10px;
 }
-
-.wp-full-overlay-sidebar .wp-full-overlay-header {
-	border-top: 0;
-	border-bottom: 1px solid #fff;
-	box-shadow: inset 0 -1px 0 0px #dfdfdf;
+.wp-full-overlay.collapsed .collapse-sidebar {
+  position: absolute;
+  left: 100%;
 }
-
-.wp-full-overlay-sidebar .wp-full-overlay-footer {
-	bottom: 0;
-	border-bottom: 0;
-	border-top: 1px solid #dfdfdf;
-	box-shadow: inset 0 1px 0 0px #fff;
+.wp-full-overlay.collapsed .collapse-sidebar-arrow {
+  background-position: -1px -109px;
 }
-
-.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
-	position: absolute;
-	top: 45px;
-	bottom: 45px;
-	left: 0;
-	right: 0;
-	overflow: auto;
+.wp-full-overlay.collapsed .collapse-sidebar-label {
+  display: none;
 }
-
-.wp-full-overlay-sidebar-content .accordion-section:first-child {
-	border-top: 1px solid #fff;
+.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {
+  color: #666;
 }
-
-/* Close Link */
-.wp-full-overlay .close-full-overlay {
-	text-decoration: none;
+.wp-full-overlay-sidebar {
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  -ms-box-sizing: border-box;
+  box-sizing: border-box;
+  position: fixed;
+  width: 300px;
+  height: 100%;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  padding: 0;
+  margin: 0;
+  z-index: 10;
+  overflow: auto;
+  background: #f5f5f5;
+  border-right: 1px solid rgba(0, 0, 0, 0.2);
 }
-
-/* Collapse Button */
-.wp-full-overlay a.collapse-sidebar {
-	position: absolute;
-	bottom: 12px;
-	left: 0;
-	z-index: 50;
-	display: block;
-	width: 19px;
-	height: 19px;
-	margin-left: 15px;
-	padding: 0;
-	border-radius: 50%;
-	text-decoration: none;
+.wp-full-overlay.collapsed .wp-full-overlay-sidebar {
+  overflow: visible;
+  margin-left: -300px;
 }
-
-.wp-full-overlay.collapsed .collapse-sidebar {
-	position: absolute;
-	left: 100%;
+.wp-full-overlay-sidebar:after {
+  content: '';
+  display: block;
+  position: absolute;
+  top: 0;
+  bottom: 0;
+  right: 0;
+  width: 3px;
+  box-shadow: -5px 0 4px -4px rgba(0, 0, 0, 0.1) inset;
+  z-index: 1000;
 }
-
-.wp-full-overlay .collapse-sidebar-arrow {
-	position: absolute;
-	margin-top: 2px;
-	margin-left: 2px;
-	display: block;
-	width: 15px;
-	height: 15px;
-	background: transparent url('../images/arrows.png') no-repeat -1px -73px;
+.wp-full-overlay-sidebar .wp-full-overlay-header {
+  position: absolute;
+  left: 0;
+  right: 0;
+  height: 45px;
+  padding: 0 20px;
+  line-height: 45px;
+  z-index: 10;
+  margin: 0;
+  border-top: 0;
+  border-bottom: 1px solid #fff;
+  box-shadow: inset 0 -1px 0 0px #dfdfdf;
 }
-
-.wp-full-overlay.collapsed .collapse-sidebar-arrow {
-	background-position: -1px -109px;
+.wp-full-overlay-sidebar .wp-full-overlay-footer {
+  bottom: 0;
+  border-bottom: 0;
+  border-top: 1px solid #dfdfdf;
+  box-shadow: inset 0 1px 0 0px #fff;
 }
-
-.wp-full-overlay .collapse-sidebar-label {
-	position: absolute;
-	left: 100%;
-	color: #808080;
-	line-height: 20px;
-	margin-left: 10px;
+.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
+  position: absolute;
+  top: 45px;
+  bottom: 45px;
+  left: 0;
+  right: 0;
+  overflow: auto;
 }
-
-.wp-full-overlay.collapsed .collapse-sidebar-label {
-	display: none;
+.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .accordion-section:first-child {
+  border-top: 1px solid #fff;
 }
-
-.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label {
-	color: #666;
+.wp-full-overlay.collapsed,
+.wp-full-overlay.expanded .wp-full-overlay-sidebar {
+  margin-left: 0 !important;
+}
+.wp-full-overlay-main {
+  position: absolute;
+  left: 0;
+  right: 0;
+  top: 0;
+  bottom: 0;
+  height: 100%;
 }
-
 /* Animations */
 .wp-full-overlay,
 .wp-full-overlay-sidebar,
 .wp-full-overlay .collapse-sidebar,
 .wp-full-overlay-main {
-	-webkit-transition-property: left, right, top, bottom, width, margin;
-	-moz-transition-property:    left, right, top, bottom, width, margin;
-	-ms-transition-property:     left, right, top, bottom, width, margin;
-	-o-transition-property:      left, right, top, bottom, width, margin;
-	transition-property:         left, right, top, bottom, width, margin;
-
-	-webkit-transition-duration: 0.2s;
-	-moz-transition-duration:    0.2s;
-	-ms-transition-duration:     0.2s;
-	-o-transition-duration:      0.2s;
-	transition-duration:         0.2s;
+  -webkit-transition-property: left, right, top, bottom, width, margin;
+  -moz-transition-property: left, right, top, bottom, width, margin;
+  -ms-transition-property: left, right, top, bottom, width, margin;
+  -o-transition-property: left, right, top, bottom, width, margin;
+  transition-property: left, right, top, bottom, width, margin;
+  -webkit-transition-duration: 0.2s;
+  -moz-transition-duration: 0.2s;
+  -ms-transition-duration: 0.2s;
+  -o-transition-duration: 0.2s;
+  transition-duration: 0.2s;
 }
-
-
 /*------------------------------------------------------------------------------
   24.0 - Customize Loader
 ------------------------------------------------------------------------------*/
-
-.no-customize-support .hide-if-no-customize,
 .customize-support .hide-if-customize,
-.no-customize-support.wp-core-ui .hide-if-no-customize,
-.no-customize-support .wp-core-ui .hide-if-no-customize,
 .customize-support.wp-core-ui .hide-if-customize,
 .customize-support .wp-core-ui .hide-if-customize {
-	display: none;
+  display: none;
+}
+.no-customize-support .hide-if-no-customize,
+.no-customize-support.wp-core-ui .hide-if-no-customize,
+.no-customize-support .wp-core-ui .hide-if-no-customize {
+  display: none;
 }
-
 #customize-container {
-	display: none;
-	background: #fff;
-	z-index: 500000;
-	position: fixed;
-	overflow: visible;
-	top: 0;
-	bottom: 0;
-	left: 0;
-	right: 0;
-	height: 100%;
+  display: none;
+  background: #fff;
+  z-index: 500000;
+  position: fixed;
+  overflow: visible;
+  top: 0;
+  bottom: 0;
+  left: 0;
+  right: 0;
+  height: 100%;
 }
-
 .customize-active #customize-container {
-	display: block;
+  display: block;
+}
+.customize-loading #customize-container {
+  background: #ffffff url("../images/wpspin_light.gif") no-repeat fixed center center;
+  background-size: 16px 16px;
 }
-
 .customize-loading #customize-container iframe {
-	opacity: 0;
+  opacity: 0;
 }
-
-.customize-loading #customize-container {
-	background: #fff url("../images/wpspin_light.gif") no-repeat fixed center center;
-	background-size: 16px 16px;
+#customize-container .collapse-sidebar {
+  bottom: 16px;
 }
-
 #customize-container iframe,
 #theme-installer iframe {
-	height: 100%;
-	width: 100%;
-	z-index: 20;
-
-	-webkit-transition: opacity 0.3s;
-	-moz-transition:    opacity 0.3s;
-	-ms-transition:     opacity 0.3s;
-	-o-transition:      opacity 0.3s;
-	transition:         opacity 0.3s;
+  height: 100%;
+  width: 100%;
+  z-index: 20;
+  -webkit-transition: opacity 0.3s;
+  -moz-transition: opacity 0.3s;
+  -ms-transition: opacity 0.3s;
+  -o-transition: opacity 0.3s;
+  transition: opacity 0.3s;
 }
-
-#customize-container .collapse-sidebar {
-	bottom: 16px;
-}
-
 #theme-installer {
-	display: none;
+  display: none;
 }
-
 #theme-installer.single-theme {
-	display: block;
+  display: block;
 }
-
 .install-theme-info {
-	display: none;
-	padding: 10px 20px 20px;
+  display: none;
+  padding: 10px 20px 20px;
 }
-
 .single-theme .install-theme-info {
-	padding-top: 15px;
+  padding-top: 15px;
 }
-
 #theme-installer .install-theme-info {
-	display: block;
+  display: block;
 }
-
 .install-theme-info .theme-install {
-	float: right;
-	margin-top: 18px;
+  float: right;
+  margin-top: 18px;
 }
-
 .install-theme-info .theme-name {
-	font-size: 16px;
-	line-height: 24px;
-	margin-bottom: 0;
+  font-size: 16px;
+  line-height: 24px;
+  margin-bottom: 0;
 }
-
 .install-theme-info .theme-screenshot {
-	margin-top: 15px;
-	width: 258px;
-	border: 1px solid #ccc;
+  margin-top: 15px;
+  width: 258px;
+  border: 1px solid #ccc;
 }
-
 .install-theme-info .theme-details {
-	overflow: hidden;
+  overflow: hidden;
 }
-
 .theme-details .theme-version {
-	margin: 15px 0;
-	float: left;
+  margin: 15px 0;
+  float: left;
 }
-
 .theme-details .star-holder {
-	margin: 14px 0;
-	float: right;
+  margin: 14px 0;
+  float: right;
 }
-
 .theme-details .theme-description {
-	float: left;
-	color: #777;
-	line-height: 20px;
+  float: left;
+  color: #777;
+  line-height: 20px;
 }
-
 /*------------------------------------------------------------------------------
   25.0 - Misc
 ------------------------------------------------------------------------------*/
-
 #excerpt,
 .attachmentlinks {
-	margin: 0;
-	height: 4em;
-	width: 98%;
+  margin: 0;
+  height: 4em;
+  width: 98%;
 }
-
 #template div {
-	margin-right: 190px;
+  margin-right: 190px;
 }
-
 p.pagenav {
-	margin: 0;
-	display: inline;
+  margin: 0;
+  display: inline;
 }
-
 .pagenav span {
-	font-weight: bold;
-	margin: 0 6px;
+  font-weight: bold;
+  margin: 0 6px;
 }
-
 .row-title {
-	font-size: 13px !important;
-	font-weight: bold;
+  font-size: 13px !important;
+  font-weight: bold;
 }
-
-.column-author img, .column-username img {
-	float: left;
-	margin-right: 10px;
-	margin-top: 1px;
+.column-author img,
+.column-username img {
+  float: left;
+  margin-right: 10px;
+  margin-top: 1px;
 }
-
 .row-actions {
-	visibility: hidden;
-	padding: 2px 0 0;
+  visibility: hidden;
+  padding: 2px 0 0;
 }
-
 .mobile .row-actions {
-	visibility: visible;
+  visibility: visible;
 }
-
 tr:hover .row-actions,
 div.comment-item:hover .row-actions {
-	visibility: visible;
+  visibility: visible;
 }
-
 .row-actions-visible {
-	padding: 2px 0 0;
+  padding: 2px 0 0;
 }
-
 .form-table .pre {
-	padding: 8px;
-	margin: 0;
+  padding: 8px;
+  margin: 0;
 }
-
 table.form-table td .updated {
-	font-size: 13px;
+  font-size: 13px;
 }
-
 .tagchecklist {
-	margin-left: 14px;
-	font-size: 12px;
-	overflow: auto;
+  margin-left: 14px;
+  font-size: 12px;
+  overflow: auto;
 }
 .tagchecklist strong {
-	margin-left: -8px;
-	position: absolute;
+  margin-left: -8px;
+  position: absolute;
 }
 .tagchecklist span {
-	margin-right: 25px;
-	display: block;
-	float: left;
-	font-size: 11px;
-	line-height: 1.8em;
-	white-space: nowrap;
-	cursor: default;
+  margin-right: 25px;
+  display: block;
+  float: left;
+  font-size: 11px;
+  line-height: 1.8em;
+  white-space: nowrap;
+  cursor: default;
 }
 .tagchecklist span a {
-	margin: 6px 0pt 0pt -9px;
-	cursor: pointer;
-	width: 10px;
-	height: 10px;
-	display: block;
-	float: left;
-	text-indent: -9999px;
-	overflow: hidden;
-	position: absolute;
+  margin: 6px 0pt 0pt -9px;
+  cursor: pointer;
+  width: 10px;
+  height: 10px;
+  display: block;
+  float: left;
+  text-indent: -9999px;
+  overflow: hidden;
+  position: absolute;
 }
-
 #poststuff h2 {
-	margin-top: 20px;
-	font-size: 1.5em;
-	margin-bottom: 15px;
-	padding: 0 0 3px;
-	clear: left;
+  margin-top: 20px;
+  font-size: 1.5em;
+  margin-bottom: 15px;
+  padding: 0 0 3px;
+  clear: left;
 }
-
 #poststuff h3,
 .metabox-holder h3 {
-	font-size: 15px;
-	font-weight: normal;
-	padding: 7px 10px;
-	margin: 0;
-	line-height: 1;
+  font-size: 12px;
+  font-weight: normal;
+  line-height: 1;
+  padding: 7px 10px;
+  margin: 0;
 }
-
 #poststuff .inside {
-	margin: 6px 0 8px;
+  margin: 6px 0 8px;
 }
-
 #poststuff .inside #parent_id,
 #poststuff .inside #page_template {
-	max-width: 100%;
+  max-width: 100%;
 }
-
 .inline-edit-row #post_parent,
 .inline-edit-row select[name="page_template"] {
-	max-width: 80%;
+  max-width: 80%;
 }
-
 .ie8 #poststuff .inside #parent_id,
 .ie8 #poststuff .inside #page_template,
 .ie8 .inline-edit-row #post_parent,
 .ie8 .inline-edit-row select[name="page_template"] {
-	width: 250px;
+  width: 250px;
 }
-
 #post-visibility-select {
-	line-height: 1.5em;
-	margin-top: 3px;
+  line-height: 1.5em;
+  margin-top: 3px;
 }
-
 #poststuff #submitdiv .inside {
-	margin: 0;
-	padding: 0;
+  margin: 0;
+  padding: 0;
 }
-
 .edit-form-section {
-	margin-bottom: 20px;
+  margin-bottom: 20px;
 }
-
 #templateside ul li a {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 .tool-box .title {
-	margin: 8px 0;
-	font-size: 18px;
-	font-weight: normal;
-	line-height: 24px;
+  margin: 8px 0;
+  font-size: 18px;
+  font-weight: normal;
+  line-height: 24px;
 }
-
 #sidemenu {
-	margin: -30px 15px 0 315px;
-	list-style: none;
-	position: relative;
-	float: right;
-	padding-left: 10px;
-	font-size: 12px;
+  margin: -30px 15px 0 315px;
+  list-style: none;
+  position: relative;
+  float: right;
+  padding-left: 10px;
+  font-size: 12px;
 }
-
 #sidemenu a {
-	padding: 0 7px;
-	display: block;
-	float: left;
-	line-height: 28px;
-	border-top-width: 1px;
-	border-top-style: solid;
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
-}
-
-#sidemenu li {
-	display: inline;
-	line-height: 200%;
-	list-style: none;
-	text-align: center;
-	white-space: nowrap;
-	margin: 0;
-	padding: 0;
+  padding: 0 7px;
+  display: block;
+  float: left;
+  line-height: 28px;
+  border-top-width: 1px;
+  border-top-style: solid;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
 }
-
 #sidemenu a.current {
-	font-weight: normal;
-	padding-left: 6px;
-	padding-right: 6px;
-	-webkit-border-top-left-radius: 3px;
-	-webkit-border-top-right-radius: 3px;
-	border-top-left-radius: 3px;
-	border-top-right-radius: 3px;
-	border-width: 1px;
-	border-style: solid;
+  font-weight: normal;
+  padding-left: 6px;
+  padding-right: 6px;
+  border-top-left-radius: 3px;
+  border-top-right-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
+  border-width: 1px;
+  border-style: solid;
+}
+#sidemenu li {
+  display: inline;
+  line-height: 200%;
+  list-style: none;
+  text-align: center;
+  white-space: nowrap;
+  margin: 0;
+  padding: 0;
 }
-
 #sidemenu li a .count-0 {
-	display: none;
+  display: none;
 }
-
 .plugin-install #description,
 .plugin-install-network #description {
-	width: 60%;
+  width: 60%;
 }
-
 table .vers,
 table .column-visible,
 table .column-rating {
-	text-align: left;
+  text-align: left;
 }
-
 .error-message {
-	color: red;
-	font-weight: bold;
+  color: red;
+  font-weight: bold;
 }
-
 /* Scrollbar fix for bulk upgrade iframe */
 body.iframe {
-	height: 98%;
+  height: 98%;
 }
-
-
 /* - Only used once or twice in all of WP - deprecate for global style
 ------------------------------------------------------------------------------*/
 td.media-icon {
-	text-align: center;
-	width: 80px;
-	padding-top: 8px;
-	padding-bottom: 8px;
+  text-align: center;
+  width: 80px;
+  padding-top: 8px;
+  padding-bottom: 8px;
 }
-
 td.media-icon img {
-	max-width: 80px;
-	max-height: 60px;
+  max-width: 80px;
+  max-height: 60px;
 }
-
 #howto {
-	font-size: 11px;
-	margin: 0 5px;
-	display: block;
-}
-
-.importers td {
-	padding-right: 14px;
+  font-size: 11px;
+  margin: 0 5px;
+  display: block;
 }
-
 .importers {
-	font-size: 16px;
-	width: auto;
+  font-size: 16px;
+  width: auto;
+}
+.importers td {
+  padding-right: 14px;
 }
-
 #namediv table {
-	width: 100%;
+  width: 100%;
 }
-
 #namediv td.first {
-	width: 10px;
-	white-space: nowrap;
+  width: 10px;
+  white-space: nowrap;
 }
-
 #namediv input {
-	width: 98%;
+  width: 98%;
 }
-
 #namediv p {
-	margin: 10px 0;
+  margin: 10px 0;
 }
-
 #submitdiv h3 {
-	margin-bottom: 0 !important;
+  margin-bottom: 0 !important;
 }
-
 /* - Used - but could/should be deprecated with a CSS reset
 ------------------------------------------------------------------------------*/
 .zerosize {
-	height: 0;
-	width: 0;
-	margin: 0;
-	border: 0;
-	padding: 0;
-	overflow: hidden;
-	position: absolute;
+  height: 0;
+  width: 0;
+  margin: 0;
+  border: 0;
+  padding: 0;
+  overflow: hidden;
+  position: absolute;
 }
-
 br.clear {
-	height: 2px;
-	line-height: 2px;
+  height: 2px;
+  line-height: 2px;
 }
-
 .checkbox {
-	border: none;
-	margin: 0;
-	padding: 0;
+  border: none;
+  margin: 0;
+  padding: 0;
 }
-
 fieldset {
-	border: 0;
-	padding: 0;
-	margin: 0;
+  border: 0;
+  padding: 0;
+  margin: 0;
 }
-
 .post-categories {
-	display: inline;
-	margin: 0;
-	padding: 0;
+  display: inline;
+  margin: 0;
+  padding: 0;
 }
-
 .post-categories li {
-	display: inline;
+  display: inline;
 }
-
-
 /*-----------------------------------------------------------------------------
  MERGED
 -------------------------------------------------------------------------------*/
-
-/* dashboard */
-.edit-box {
-	display: none;
+/* ms */
+/* Dashboard: MS Specific Data */
+#dashboard_right_now p.musub {
+  margin-top: 12px;
+  border-top: 1px solid #ececec;
+  padding-left: 16px;
+  position: static;
 }
-
-h3:hover .edit-box {
-	display: inline;
+.rtl #dashboard_right_now p.musub {
+  padding-left: 0;
+  padding-right: 16px;
 }
-
-#dashboard-widgets form .input-text-wrap input {
-	width: 100%;
+#dashboard_right_now td.b a.musublink {
+  font-size: 16px;
 }
-
-#dashboard-widgets form .textarea-wrap textarea {
-	width: 100%;
+#dashboard_right_now div.musubtable {
+  border-top: none;
 }
-
-#dashboard-widgets .postbox form .submit {
-	float: none;
-	margin: .5em 0 0;
-	padding: 0;
-	border: none;
+#dashboard_right_now div.musubtable .t {
+  white-space: normal;
 }
-
-#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish {
-	min-width: 0;
+/* Background Color for Site Status */
+.wp-list-table .site-deleted {
+  background: #ff8573;
 }
-
-#dashboard-widgets a {
-	text-decoration: none;
+.wp-list-table .site-spammed {
+  background: #faafaa;
 }
-
-#dashboard-widgets h3 a {
-	text-decoration: underline;
+.wp-list-table .site-archived {
+  background: #ffebe8;
 }
-
-#dashboard-widgets h3 .postbox-title-action {
-	position: absolute;
-	right: 10px;
-	padding: 0;
-	top: 5px;
+.wp-list-table .site-mature {
+  background: #fecac2;
 }
-
-.js #dashboard-widgets h3 .postbox-title-action {
-	right: 30px;
+/* Star ratings */
+div.star-holder {
+  position: relative;
+  height: 17px;
+  width: 100px;
+  background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
 }
-
-#dashboard-widgets h4 {
-	font-weight: normal;
-	font-size: 13px;
-	margin: 0 0 .2em;
-	padding: 0;
+div.star-holder .star-rating {
+  background: url('../images/stars.png?ver=20121108') repeat-x top left;
+  height: 17px;
+  float: left;
 }
-
-/* Right Now */
-#dashboard_right_now p.sub,
-#dashboard_right_now .table, #dashboard_right_now .versions {
-	margin: -12px;
+div.action-links {
+  font-weight: normal;
+  margin: 6px 0 0;
 }
-
-#dashboard_right_now .inside {
-	font-size: 12px;
-	padding-top: 20px;
+/* Header on thickbox */
+#plugin-information-header {
+  margin: 0;
+  padding: 0 5px;
+  font-weight: bold;
+  position: relative;
+  border-bottom-width: 1px;
+  border-bottom-style: solid;
+  height: 2.5em;
 }
+#plugin-information {
+  /* Install sidemenu */
 
-#dashboard_right_now p.sub {
-	padding: 5px 0 15px;
-	color: #8f8f8f;
-	font-size: 14px;
-	position: absolute;
-	top: -17px;
-	left: 15px;
 }
-
-#dashboard_right_now .table {
-	margin: 0;
-	padding: 0;
-	position: relative;
+#plugin-information ul#sidemenu {
+  font-weight: normal;
+  margin: 0 5px;
+  position: absolute;
+  left: 0;
+  bottom: -1px;
 }
-
-#dashboard_right_now .table_content {
-	float: left;
-	border-top-width: 1px;
-	border-top-style: solid;
-	width: 45%;
+#plugin-information p.action-button {
+  width: 100%;
+  padding-bottom: 0;
+  margin-bottom: 0;
+  margin-top: 10px;
+  border-top-left-radius: 3px;
+  border-bottom-left-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
 }
-
-#dashboard_right_now .table_discussion {
-	float: right;
-	border-top-width: 1px;
-	border-top-style: solid;
-	width: 45%;
+#plugin-information .action-button a {
+  text-align: center;
+  font-weight: bold;
+  text-decoration: none;
+  display: block;
+  line-height: 2em;
 }
-
-#dashboard_right_now table td {
-	padding: 3px 0;
-	white-space: nowrap;
+#plugin-information h2 {
+  clear: none !important;
+  margin-right: 200px;
 }
-
-#dashboard_right_now table tr.first td {
-	border-top: none;
+#plugin-information .fyi {
+  margin: 0 10px 50px;
+  width: 210px;
 }
-
-#dashboard_right_now td.b {
-	padding-right: 6px;
-	text-align: right;
-	font-size: 14px;
-	width: 1%;
+#plugin-information .fyi h2 {
+  font-size: 0.9em;
+  margin-bottom: 0;
+  margin-right: 0;
 }
-
-#dashboard_right_now td.b a {
-	font-size: 18px;
+#plugin-information .fyi h2.mainheader {
+  padding: 5px;
+  -moz-border-top-left-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  border-top-left-radius: 3px;
 }
-
-#dashboard_right_now td.b a:hover {
-	color: #d54e21;
+#plugin-information .fyi ul {
+  padding: 10px 5px 10px 7px;
+  margin: 0;
+  list-style: none;
+  -moz-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  border-bottom-left-radius: 3px;
 }
-
-#dashboard_right_now .t {
-	font-size: 12px;
-	padding-right: 12px;
-	padding-top: 6px;
-	color: #777;
+#plugin-information .fyi li {
+  margin-right: 0;
 }
-
-#dashboard_right_now .t a {
-	white-space: nowrap;
+#plugin-information #section-holder {
+  padding: 10px;
 }
-
-#dashboard_right_now .spam {
-	color: red;
+#plugin-information .section ul,
+#plugin-information .section ol {
+  margin-left: 16px;
+  list-style-type: square;
+  list-style-image: none;
 }
-
-#dashboard_right_now .waiting {
-	color: #e66f00;
+#plugin-information #section-screenshots ol {
+  list-style: none;
+  margin: 0;
 }
-
-#dashboard_right_now .approved {
-	color: green;
+#plugin-information #section-screenshots li img {
+  vertical-align: text-top;
+  max-width: 100%;
+  width: auto;
+  height: auto;
 }
-
-#dashboard_right_now .versions {
-	padding: 6px 10px 12px;
-	clear: both;
+#plugin-information #section-screenshots li p {
+  font-style: italic;
+  padding-left: 20px;
+  padding-bottom: 2em;
 }
-
-#dashboard_right_now a.button {
-	float: right;
-	clear: right;
-	position: relative;
-	top: -5px;
+#plugin-information #section-screenshots ol,
+#plugin-information .updated,
+#plugin-information pre {
+  margin-right: 215px;
 }
-
-/* Recent Comments */
-#dashboard_recent_comments h3 {
-	margin-bottom: 0;
+#plugin-information pre {
+  padding: 7px;
+  overflow: auto;
 }
-
-#dashboard_recent_comments .inside {
-	margin-top: 0;
+#poststuff #editor-toolbar {
+  height: 30px;
 }
-
-#dashboard_recent_comments .comment-meta .approve {
-	font-style: italic;
-	font-family: sans-serif;
-	font-size: 10px;
+div.zerosize {
+  border: 0 none;
+  height: 0;
+  margin: 0;
+  overflow: hidden;
+  padding: 0;
+  width: 0;
 }
-
-#dashboard_recent_comments .subsubsub {
-	float: none;
-	white-space: normal;
+.posting {
+  margin-right: 212px;
+  position: relative;
 }
-
-#the-comment-list {
-	position: relative;
+h3.tb {
+  text-shadow: 0 1px 0 #fff;
+  font-size: 12px;
+  font-weight: bold;
+  line-height: normal;
+  margin-left: 5px;
 }
-
-#the-comment-list .comment-item {
-	padding: 1em 10px;
-	border-top: 1px solid;
+#TB_window {
+  border: 1px solid #333;
 }
-
-#the-comment-list .pingback {
-	padding-left: 9px !important;
+.js .postbox:hover .handlediv,
+.js .stuffbox:hover .handlediv {
+  background: transparent url(../images/arrows.png) no-repeat 6px 7px;
 }
-
-#the-comment-list .comment-item,
-#the-comment-list #replyrow {
-	margin: 0 -10px;
+.press-this #submitdiv:hover .handlediv {
+  background: none;
 }
-
-#the-comment-list .comment-item:first-child {
-	border-top: none;
+.tbtitle {
+  font-size: 1.7em;
+  outline: none;
+  padding: 3px 4px;
+  border-color: #dfdfdf;
 }
-
-#the-comment-list .comment-item .avatar {
-	float: left;
-	margin: 0 10px 5px 0;
+#extra-fields .button {
+  margin-right: 5px;
 }
-
-#the-comment-list .comment-item h4 {
-	line-height: 1.7em;
-	margin-top: -0.4em;
-	color: #777;
+/* Photo Styles */
+#photo_saving {
+  margin: 0 8px 8px;
+  vertical-align: middle;
 }
-
-#the-comment-list .comment-item h4 cite {
-	font-style: normal;
-	font-weight: normal;
+#img_container_container {
+  overflow: auto;
 }
-
-#the-comment-list .comment-item blockquote,
-#the-comment-list .comment-item blockquote p {
-	margin: 0;
-	padding: 0;
-	display: inline;
+#extra-fields {
+  margin-top: 10px;
+  position: relative;
 }
-
-#dashboard_recent_comments #the-comment-list .trackback blockquote,
-#dashboard_recent_comments #the-comment-list .pingback blockquote {
-	display: block;
+#extra-fields h2 {
+  margin: 12px;
 }
-
-#the-comment-list .comment-item p.row-actions {
-	margin: 3px 0 0;
-	padding: 0;
-	font-size: 12px;
+#waiting {
+  margin-top: 10px;
+  overflow: hidden;
 }
-
-/* QuickPress */
-.no-js #dashboard_quick_press {
-	display: none;
+#waiting span {
+  float: right;
+  margin: 0 0 0 5px;
 }
-
-#dashboard_quick_press .easy-blogging {
-	padding: 0 8px;
-	text-align: left;
+#waiting .spinner {
+  display: block;
 }
-
-#dashboard_quick_press .input-text-wrap {
-	position: relative;
+#extra-fields .postbox {
+  margin-bottom: 5px;
 }
-
-#dashboard_quick_press .prompt {
-	color: #bbb;
-	position: absolute;
+#extra-fields .titlewrap {
+  padding: 0;
+  overflow: auto;
+  height: 100px;
 }
-
-#dashboard_quick_press div.updated  {
-	padding: 0 5px;
+#img_container a {
+  display: block;
+  float: left;
+  overflow: hidden;
 }
-
-#title-wrap label,
-#tags-input-wrap label {
-	cursor: text;
+#img_container img,
+#img_container a {
+  width: 68px;
+  height: 68px;
 }
-
-#title-wrap #title {
-	padding: 2px 6px;
-	font-size: 1.3em;
-	line-height: 100%;
-	outline: none;
+#img_container img {
+  border: none;
+  background-color: #f4f4f4;
+  cursor: pointer;
 }
-
-#tags-input-wrap #tags-input {
-	outline: none;
+#img_container a,
+#img_container a:link,
+#img_container a:visited {
+  border: 1px solid #ccc;
+  display: block;
+  position: relative;
 }
-
-#title-wrap #title-prompt-text {
-	font-size: 1.3em;
-	padding: 5px 8px;
+#img_container a:hover,
+#img_container a:active {
+  border-color: black;
+  z-index: 1000;
+  border-width: 2px;
+  margin: -1px;
 }
-
-#tags-input-wrap #tags-input-prompt-text {
-	font-size: 1em;
-	padding: 4px 8px;
+/* Video */
+#embed-code {
+  width: 100%;
+  height: 98px;
 }
-
-#dashboard_quick_press .input-text-wrap,
-#dashboard_quick_press .textarea-wrap {
-	margin: 0 0 1em 0;
+#TB_ajaxContent #options {
+  position: absolute;
+  top: 20px;
+  right: 25px;
+  padding: 5px;
 }
-
-#dashboard_quick_press .wp-media-buttons {
-	margin: 0 0 .2em 1px;
-	padding: 0;
-}
-
-#dashboard_quick_press .wp-media-buttons a {
-	color: #777;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit input {
-	float: left;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit #save-post {
-	margin: 0 0.7em 0 1px;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit #publish {
-	float: right;
-}
-
-#dashboard-widgets #dashboard_quick_press form p.submit .spinner {
-	vertical-align: middle;
-	margin: 4px 6px 0 0;
+#TB_ajaxContent h3 {
+  margin-bottom: .25em;
 }
-
-/* Recent Drafts */
-#dashboard_recent_drafts ul,
-#dashboard_recent_drafts p {
-	margin: 0;
-	padding: 0;
-	word-wrap: break-word;
+.error a {
+  text-decoration: underline;
 }
-
-#dashboard_recent_drafts ul {
-	list-style: none;
+.updated a {
+  text-decoration: none;
+  padding-bottom: 2px;
 }
-
-#dashboard_recent_drafts ul li {
-	margin-bottom: 1em;
+/* tag hints */
+.taghint {
+  color: #aaa;
+  margin: -17px 0 0 7px;
+  visibility: hidden;
 }
-
-#dashboard_recent_drafts h4 {
-	line-height: 1.7em;
-	word-wrap: break-word;
+input.newtag ~ div.taghint {
+  visibility: visible;
 }
-
-#dashboard_recent_drafts h4 abbr {
-	font-weight: normal;
-	font-family: sans-serif;
-	font-size: 12px;
-	color: #999;
-	margin-left: 3px;
+input.newtag:focus ~ div.taghint {
+  visibility: hidden;
 }
-
-/* Feeds */
-.rss-widget ul {
-	margin: 0;
-	padding: 0;
-	list-style: none;
+/* TinyMCE */
+#mce_fullscreen_container {
+  background: #fff;
 }
-
-a.rsswidget {
-	font-size: 13px;
-	line-height: 1.7em;
+#photo-add-url-div input[type="text"] {
+  width: 300px;
 }
-
-.rss-widget ul li {
-	line-height: 1.5em;
-	margin-bottom: 12px;
+/* theme-editor */
+.alignleft h3 {
+  margin: 0;
 }
-
-.rss-widget span.rss-date {
-	color: #999;
-	font-size: 12px;
-	margin-left: 3px;
+h3 span {
+  font-weight: normal;
 }
-
-.rss-widget cite {
-	display: block;
-	text-align: right;
-	margin: 0 0 1em;
-	padding: 0;
+#template textarea {
+  font-family: Consolas, Monaco, monospace;
+  font-size: 12px;
+  width: 97%;
+  background: #f9f9f9;
+  outline: none;
 }
-
-.rss-widget cite:before {
-	content: '\2014';
+#template p {
+  width: 97%;
 }
-
-/* Plugins */
-#dashboard_plugins h4 {
-	line-height: 1.7em;
+#templateside {
+  float: right;
+  width: 190px;
+  word-wrap: break-word;
 }
-
-#dashboard_plugins h5 {
-	font-weight: normal;
-	font-size: 13px;
-	margin: 0;
-	display: inline;
-	line-height: 1.4em;
+#templateside h3,
+#postcustomstuff p.submit {
+  margin: 0;
 }
-
-#dashboard_plugins h5 a {
-	line-height: 1.4em;
+#templateside h4 {
+  margin: 1em 0 0;
 }
-
-#dashboard_plugins .inside span {
-	font-size: 12px;
-	padding-left: 5px;
+#templateside ol,
+#templateside ul {
+  margin: .5em;
+  padding: 0;
 }
-
-#dashboard_plugins p {
-	margin: 0.3em 0 1.4em;
-	line-height: 1.4em;
+#templateside li {
+  margin: 4px 0;
 }
-
-.dashboard-comment-wrap {
-	overflow: hidden;
-	word-wrap: break-word;
+#templateside ul li a span.highlight {
+  display: block;
 }
-
-/* Browser Nag */
-#dashboard_browser_nag a.update-browser-link {
-	font-size: 1.2em;
-	font-weight: bold;
+.nonessential {
+  font-size: 11px;
+  font-style: italic;
+  padding-left: 12px;
 }
-
-#dashboard_browser_nag a {
-	text-decoration: underline;
+.highlight {
+  padding: 3px 3px 3px 12px;
+  margin-left: -12px;
+  font-weight: bold;
+  border: 0 none;
 }
-
-#dashboard_browser_nag p.browser-update-nag.has-browser-icon {
-	padding-right: 125px;
+#documentation {
+  margin-top: 10px;
 }
-
-#dashboard_browser_nag .browser-icon {
-	margin-top: -35px;
+#documentation label {
+  line-height: 22px;
+  vertical-align: top;
+  font-weight: bold;
 }
-
-#dashboard_browser_nag.postbox.browser-insecure {
-	background-color: #ac1b1b;
-	border-color: #ac1b1b;
+.fileedit-sub {
+  padding: 10px 0 8px;
+  line-height: 180%;
 }
-
-#dashboard_browser_nag.postbox {
-	background-color: #e29808;
-	background-image: none;
-	border-color: #edc048;
-	color: #fff;
-	-webkit-box-shadow: none;
-	box-shadow: none;
+#filter-box {
+  clear: both;
 }
-
-#dashboard_browser_nag.postbox.browser-insecure h3 {
-	border-bottom-color: #cd5a5a;
-	color: #fff;
+.feature-filter {
+  padding: 8px 12px 0;
 }
-
-#dashboard_browser_nag.postbox h3 {
-	border-bottom-color: #f6e2ac;
-	text-shadow: none;
-	background: transparent none;
-	color: #fff;
-	-webkit-box-shadow: none;
-	box-shadow: none;
+.feature-filter .feature-group {
+  float: left;
+  margin: 5px 10px 10px;
 }
-
-#dashboard_browser_nag a {
-	color: #fff;
+.feature-filter .feature-group li {
+  display: inline-block;
+  vertical-align: top;
+  list-style-type: none;
+  padding-right: 25px;
+  width: 150px;
 }
-
-#dashboard_browser_nag.browser-insecure a.browse-happy-link,
-#dashboard_browser_nag.browser-insecure a.update-browser-link {
-	text-shadow: #871b15 0 1px 0;
+.feature-container {
+  width: 100%;
+  overflow: auto;
+  margin-bottom: 10px;
 }
-
-#dashboard_browser_nag a.browse-happy-link,
-#dashboard_browser_nag a.update-browser-link {
-	text-shadow: #d29a04 0 1px 0;
+/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
+.ui-sortable,
+.ui-draggable {
+  -ms-touch-action: none;
 }
-
-
 /* login */
-
 .login * {
-	margin: 0;
-	padding: 0;
+  margin: 0;
+  padding: 0;
+}
+.login h1 a {
+  background-image: url('../images/wordpress-logo.png?ver=20120216');
+  background-size: 274px 63px;
+  background-position: top center;
+  background-repeat: no-repeat;
+  width: 326px;
+  height: 67px;
+  text-indent: -9999px;
+  outline: none;
+  overflow: hidden;
+  padding-bottom: 15px;
+  display: block;
 }
-
 .login form {
-	margin-left: 8px;
-	padding: 26px 24px 46px;
-	font-weight: normal;
-	background: #fff;
-	border: 1px solid #e5e5e5;
-	-webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
-	box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
+  margin-left: 8px;
+  padding: 26px 24px 46px;
+  font-weight: normal;
+  background: #fff;
+  border: 1px solid #e5e5e5;
+  -webkit-box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
+  box-shadow: rgba(200, 200, 200, 0.7) 0px 4px 10px -1px;
 }
-
 .login form .forgetmenot {
-	font-weight: normal;
-	float: left;
-	margin-bottom: 0;
-}
-
-.login .button-primary {
-	float: right;
+  float: left;
+  margin-bottom: 0;
 }
-
-#login form p {
-	margin-bottom: 0;
+.login form .forgetmenot label {
+  font-size: 12px;
+  font-weight: normal;
+  line-height: 19px;
 }
-
-#login form p.submit {
-	padding: 0;
+.login .button-primary {
+  float: right;
 }
-
 .login label {
-	color: #777;
-	font-size: 14px;
+  color: #777;
+  font-size: 14px;
 }
-
-.login form .forgetmenot label {
-	font-size: 12px;
-	line-height: 19px;
+.login #nav,
+.login #backtoblog {
+  text-shadow: #fff 0 1px 0;
+  margin: 0 0 0 16px;
+  padding: 16px 16px 0;
 }
-
-.login h1 a {
-	background-image: url('../images/wordpress-logo.png?ver=20120216');
-	background-size: 274px 63px;
-	background-position: top center;
-	background-repeat: no-repeat;
-	width: 326px;
-	height: 67px;
-	text-indent: -9999px;
-	outline: none;
-	overflow: hidden;
-	padding-bottom: 15px;
-	display: block;
+.login form .input,
+.login input[type="text"] {
+  color: #555;
+  font-weight: 200;
+  font-size: 24px;
+  line-height: 1;
+  width: 100%;
+  padding: 3px;
+  margin-top: 2px;
+  margin-right: 6px;
+  margin-bottom: 16px;
+  border: 1px solid #e5e5e5;
+  background: #fbfbfb;
+  outline: none;
+  -webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
+  box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
+}
+.login #pass-strength-result {
+  width: 250px;
+  font-weight: bold;
+  border-style: solid;
+  border-width: 1px;
+  margin: 12px 0 6px;
+  padding: 6px 5px;
+  text-align: center;
 }
-
 #login {
-	width: 320px;
-	padding: 114px 0 0;
-	margin: auto;
+  width: 320px;
+  padding: 114px 0 0;
+  margin: auto;
+}
+#login form p {
+  margin-bottom: 0;
+}
+#login form p.submit {
+  padding: 0;
 }
-
 #login_error,
 .login .message {
-	margin: 0 0 16px 8px;
-	padding: 12px;
-}
-
-.login #nav,
-.login #backtoblog {
-	text-shadow: #fff 0 1px 0;
-	margin: 0 0 0 16px;
-	padding: 16px 16px 0;
+  margin: 0 0 16px 8px;
+  padding: 12px;
 }
-
 #backtoblog {
-	padding: 12px 16px 0;
-}
-
-.login form .input,
-.login input[type="text"] {
-	color: #555;
-	font-weight: 200;
-	font-size: 24px;
-	line-height: 1;
-	width: 100%;
-	padding: 3px;
-	margin-top: 2px;
-	margin-right: 6px;
-	margin-bottom: 16px;
-	border: 1px solid #e5e5e5;
-	background: #fbfbfb;
-	outline: none;
-	-webkit-box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
-	box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
-}
-
-.login #pass-strength-result {
-	width: 250px;
-	font-weight: bold;
-	border-style: solid;
-	border-width: 1px;
-	margin: 12px 0 6px;
-	padding: 6px 5px;
-	text-align: center;
+  padding: 12px 16px 0;
 }
-
 .mobile #login {
-	padding: 20px 0;
-}
-
-.mobile #login form,
-.mobile #login .message,
-.mobile #login_error {
-	margin-left: 0;
+  padding: 20px 0;
 }
-
 .mobile #login #nav,
 .mobile #login #backtoblog {
-	margin-left: 8px;
+  margin-left: 8px;
 }
-
 .mobile #login h1 a {
-	width: auto;
+  width: auto;
+}
+.mobile #login form,
+.mobile #login .message,
+.mobile #login_error {
+  margin-left: 0;
 }
-
 body.interim-login {
-	height: auto;
+  height: auto;
 }
-
 .interim-login #login {
-	padding: 0;
-	margin: 5px auto 20px;
+  padding: 0;
+  margin: 5px auto 20px;
 }
-
 .interim-login.login h1 a {
-	width: auto;
+  width: auto;
 }
-
 .interim-login #login_error,
 .interim-login.login .message {
-	margin: 0 0 16px;
+  margin: 0 0 16px;
 }
-
 .interim-login.login form {
-	margin: 0;
+  margin: 0;
 }
+.pressthis {
+  margin: 20px 0;
+  /* Header */
 
-/* ms */
-/* Dashboard: MS Specific Data */
-#dashboard_right_now p.musub {
-	margin-top: 12px;
-	border-top: 1px solid #ececec;
-	padding-left: 16px;
-	position: static;
-}
+  /* Editor/Main Column */
 
-.rtl #dashboard_right_now p.musub {
-	padding-left: 0;
-	padding-right: 16px;
-}
+  /* Categories */
 
-#dashboard_right_now td.b a.musublink {
-	font-size: 16px;
-}
+  /* Tags */
 
-#dashboard_right_now div.musubtable {
-	border-top: none;
-}
+  /* Submit */
 
-#dashboard_right_now div.musubtable .t {
-	white-space: normal;
 }
-
-/* Background Color for Site Status */
-.wp-list-table .site-deleted {
-	background: #ff8573;
+.pressthis a,
+.pressthis a:hover,
+.pressthis a:focus,
+.pressthis a:active {
+  display: inline-block;
+  position: relative;
+  cursor: move;
+  color: #333;
+  background: #d8d8d8;
+  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(7%, #e6e6e6), color-stop(77%, #d8d8d8));
+  background-image: -webkit-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
+  background-image: -moz-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
+  background-image: -o-linear-gradient(bottom, #e6e6e6 7%, #d8d8d8 77%);
+  background-image: linear-gradient(to top, #e6e6e6 7%, #d8d8d8);
+  border-radius: 5px;
+  -moz-border-radius: 5px;
+  -webkit-border-radius: 5px;
+  border: 1px solid #b4b4b4;
+  font-style: normal;
+  line-height: 16px;
+  font-size: 14px;
+  text-decoration: none;
+  text-shadow: 0 1px 0px #fff;
 }
-.wp-list-table .site-spammed {
-	background: #faafaa;
+.pressthis a:active {
+  outline: none;
 }
-.wp-list-table .site-archived {
-	background: #ffebe8;
+.pressthis a:hover:after {
+  -webkit-transform: skew(20deg) rotate(9deg);
+  -moz-transform: skew(20deg) rotate(9deg);
+  transform: skew(20deg) rotate(9deg);
+  -moz-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+  -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
+  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.7);
 }
-.wp-list-table .site-mature {
-	background: #fecac2;
+.pressthis a span {
+  background: url(../images/press-this.png?v=20120502) no-repeat 0px 5px;
+  background-size: 24px 20px;
+  padding: 8px 11px 8px 27px;
+  margin: 0 5px;
+  display: inline-block;
+}
+.pressthis a:after {
+  content: '';
+  width: 70%;
+  height: 55%;
+  z-index: -1;
+  position: absolute;
+  right: 10px;
+  bottom: 9px;
+  background: transparent;
+  -webkit-transform: skew(20deg) rotate(6deg);
+  -moz-transform: skew(20deg) rotate(6deg);
+  transform: skew(20deg) rotate(6deg);
+  -webkit-box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+  box-shadow: 0 10px 8px rgba(0, 0, 0, 0.6);
+}
+.pressthis #wphead {
+  height: 32px;
+  margin-left: 0;
+  margin-right: 0;
+  margin-bottom: 5px;
+}
+.pressthis #wphead h1 {
+  font-size: 16px;
+  font-weight: normal;
+  line-height: 32px;
+  margin: 0;
+  float: left;
+}
+.pressthis #wphead h1 a {
+  text-decoration: none;
+}
+.pressthis #wphead h1 a:hover {
+  text-decoration: underline;
+}
+.pressthis #header-logo {
+  float: left;
+  margin: 7px 7px 0;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none;
+}
+.pressthis #message {
+  margin: 10px 0;
+}
+.pressthis #title {
+  margin-left: 0;
+  margin-right: 0;
+  -moz-box-sizing: border-box;
+  -webkit-box-sizing: border-box;
+  -ms-box-sizing: border-box;
+  box-sizing: border-box;
+}
+.pressthis .tagchecklist span a {
+  background: transparent url(../images/xit.gif) no-repeat 0 0;
+}
+.pressthis #titlediv {
+  margin: 0;
+}
+.pressthis .wp-media-buttons {
+  cursor: default;
+  padding: 8px 8px 0;
+}
+.pressthis .howto {
+  margin-top: 2px;
+  margin-bottom: 3px;
+  font-size: 12px;
+  font-style: italic;
+  display: block;
+}
+.pressthis #poststuff {
+  margin: 0 10px 10px;
+  padding: 0;
+}
+.pressthis #photo-add-url-div input[type="text"] {
+  width: 220px;
+}
+.pressthis .inner-sidebar {
+  width: 200px;
+}
+.pressthis .inner-sidebar .sleeve {
+  padding-top: 5px;
+}
+.pressthis #submitdiv p {
+  margin: 0;
+  padding: 6px;
+}
+.pressthis #submitdiv #publishing-actions {
+  border-bottom: 1px solid #dfdfdf;
+}
+.pressthis #publish {
+  float: right;
+}
+.pressthis #poststuff h2,
+.pressthis #poststuff h3 {
+  font-size: 14px;
+  line-height: 1;
+}
+.pressthis #tagsdiv-post_tag h3,
+.pressthis #categorydiv h3 {
+  cursor: pointer;
+}
+.pressthis #submitdiv h3 {
+  cursor: default;
+}
+.pressthis .postbox,
+.pressthis .stuffbox {
+  margin-bottom: 10px;
+  min-width: 0;
+}
+.pressthis .actions {
+  float: right;
+  margin: -19px 0 0;
+}
+#extra-fields .pressthis .actions {
+  margin: -32px -7px 0 0;
+}
+.pressthis .actions li {
+  float: left;
+  list-style: none;
+  margin-right: 10px;
+}
+.pressthis .categorydiv div.tabs-panel {
+  height: 100px;
+}
+.pressthis .tagsdiv .newtag {
+  width: 120px;
+}
+.pressthis #content {
+  margin: 5px 0;
+  padding: 0 5px;
+  border: 0 none;
+  height: 345px;
+  font-family: Consolas, Monaco, monospace;
+  font-size: 13px;
+  line-height: 19px;
+  background: transparent;
+}
+.pressthis #publishing-actions .spinner {
+  display: inline;
+  vertical-align: middle;
+}
+/* press-this */
+body.press-this {
+  color: #333;
+  margin: 0;
+  padding: 0;
+  min-width: 675px;
+  min-height: 400px;
+}
+.press-this-sidebar {
+  float: right;
+  width: 200px;
+  padding-top: 10px;
 }
-
 /* nav-menu */
-
 .no-js #message {
-	display: block;
+  display: block;
 }
-
 #nav-menu-meta ul.outer-border {
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
 }
-
 .accordion-section ul.category-tabs,
 .accordion-section ul.add-menu-item-tabs,
 .accordion-section ul.wp-tab-bar {
-	margin: 0;
+  margin: 0;
 }
-
 .accordion-section .categorychecklist {
-	margin: 13px 0;
+  margin: 13px 0;
 }
-
 #nav-menu-meta .accordion-section-content {
-	padding: 18px 13px;
+  padding: 18px 13px;
 }
-
 #nav-menu-meta .button-controls {
-	margin-bottom: 0;
+  margin-bottom: 0;
 }
-
 #nav-menus-frame {
-	margin-left: 300px;
-	margin-top: 23px;
+  margin-left: 300px;
+  margin-top: 23px;
 }
-
 #wpbody-content #menu-settings-column {
-	display:inline;
-	width:281px;
-	margin-left: -300px;
-	clear: both;
-	float: left;
-	padding-top: 0;
+  display: inline;
+  width: 281px;
+  margin-left: -300px;
+  clear: both;
+  float: left;
+  padding-top: 0;
 }
-
 #menu-settings-column .inside {
-	clear: both;
-	margin: 10px 0 0;
+  clear: both;
+  margin: 10px 0 0;
 }
-
 .metabox-holder-disabled .postbox,
-.metabox-holder-disabled .accordion-section-content  {
-	opacity: 0.5;
-	filter: alpha(opacity=50);
+.metabox-holder-disabled .accordion-section-content {
+  opacity: 0.5;
+  filter: alpha(opacity=50);
 }
-
 .metabox-holder-disabled .button-controls .select-all {
-	display: none;
+  display: none;
 }
-
 #wpbody {
-	position: relative;
+  position: relative;
 }
-
 .blank-slate .menu-name {
-	height: 2em;
+  height: 2em;
 }
-
 .blank-slate .menu-settings {
-	border: none;
-	margin-top: 0;
-	padding-top: 0;
-	overflow: hidden;
+  border: none;
+  margin-top: 0;
+  padding-top: 0;
+  overflow: hidden;
 }
-
 .is-submenu {
-	font-style: italic;
-	font-weight: normal;
-	margin-left: 4px;
+  font-style: italic;
+  font-weight: normal;
+  margin-left: 4px;
 }
-
 .manage-menus {
-	margin-top: 23px;
-	padding: 10px;
-	overflow: hidden;
-	-webkit-border-radius: 3px;
-	border-radius: 3px;
+  margin-top: 23px;
+  padding: 10px;
+  overflow: hidden;
+  border-radius: 3px;
+  -moz-border-radius: 3px;
+  -webkit-border-radius: 3px;
 }
-
 .manage-menus select {
-	float: left;
-	margin-right: 6px;
+  float: left;
+  margin-right: 6px;
 }
-
 .manage-menus .selected-menu {
-	float: left;
-	margin: 5px 6px 0 0;
+  float: left;
+  margin: 5px 6px 0 0;
 }
-
 .manage-menus .submit-btn {
-	float: left;
-	margin-top: 1px;
+  float: left;
+  margin-top: 1px;
 }
-
 .menu-edit p {
-	margin: .3em 0 .6em;
+  margin: .3em 0 .6em;
 }
-
 .menu-edit #post-body-content h3 {
-	margin: 0 0 10px;
+  margin: 0 0 10px;
+}
+.menu-edit .checkbox-input {
+  margin-top: 4px;
 }
-
 .menu-settings {
-	margin-top: 2em;
-	overflow: hidden;
+  margin-top: 2em;
+  overflow: hidden;
 }
-
 .menu-settings dl {
-	margin: 0 0 10px;
-	overflow: hidden;
-	position: relative;
+  margin: 0 0 10px;
+  overflow: hidden;
+  position: relative;
 }
-
 .menu-settings dd {
-	float: left;
-	margin: 0;
-	width: 60%;
-}
-
-.menu-edit .checkbox-input {
-	margin-top: 4px;
+  float: left;
+  margin: 0;
+  width: 60%;
 }
-
 .theme-location-set {
-	font-size: 11px;
+  font-size: 11px;
 }
-
 /* Menu Container */
 #menu-management-liquid {
-	float: left;
-	min-width: 100%;
-	margin-top: 3px;
+  float: left;
+  min-width: 100%;
+  margin-top: 3px;
 }
-
 #menu-management {
-	position: relative;
-	margin-right: 20px;
-	margin-top: -3px;
-	width: 100%;
+  position: relative;
+  margin-right: 20px;
+  margin-top: -3px;
+  width: 100%;
 }
-
 #menu-management .menu-edit {
-	margin-bottom: 20px;
+  margin-bottom: 20px;
 }
-
 .nav-menus-php #post-body {
-	padding: 0 10px 10px;
-	border-width: 1px 0;
-	border-style: solid;
+  padding: 0 10px 10px;
+  border-width: 1px 0;
+  border-style: solid;
 }
-
 #nav-menu-header,
 #nav-menu-footer {
-	padding: 0 10px;
+  padding: 0 10px;
 }
-
 #nav-menu-header {
-	border-bottom: 1px solid;
-	margin-bottom: 13px;
+  border-bottom: 1px solid;
+  margin-bottom: 13px;
 }
-
 #nav-menu-header .menu-name-label {
-	margin-top: 2px;
+  margin-top: 2px;
 }
-
 #nav-menu-footer {
-	border-top: 1px solid;
+  border-top: 1px solid;
 }
-
 .nav-menus-php #post-body div.updated,
 .nav-menus-php #post-body div.error {
-	margin: 0;
+  margin: 0;
 }
-
 .nav-menus-php #post-body-content {
-	position: relative;
-	float: none;
+  position: relative;
+  float: none;
 }
-
 #menu-management .menu-add-new abbr {
-	font-weight:bold;
+  font-weight: bold;
 }
-
 #select-nav-menu-container {
-	text-align: right;
-	padding: 0 10px 3px 10px;
-	margin-bottom: 5px;
+  text-align: right;
+  padding: 0 10px 3px 10px;
+  margin-bottom: 5px;
 }
-
 #select-nav-menu {
-	width: 100px;
-	display: inline;
+  width: 100px;
+  display: inline;
 }
-
 #menu-name-label {
-	margin-top: -2px;
+  margin-top: -2px;
 }
-
 .widefat td.menu-location-menus {
-	padding-bottom: 5px;
+  padding-bottom: 5px;
 }
-
 .menu-location-menus select {
-	float: left;
+  float: left;
 }
-
 #locations-nav-menu-wrapper {
-	padding: 5px 0;
+  padding: 5px 0;
 }
-
 .locations-nav-menu-select select {
-	float: left;
-	width: 160px;
-	margin-right: 5px;
-}
-
-.locations-row-links {
-	float: left;
-	margin: 6px 0 0 6px;
-}
-
-.locations-edit-menu-link,
-.locations-add-menu-link {
-	margin: 0 3px;
-}
-
-.locations-edit-menu-link {
-	padding-right: 3px;
-	border-right: 1px solid #ccc;
-}
-
-#wpbody .open-label {
-	display: block;
-	float:left;
-}
-
-#wpbody .open-label span {
-	padding-right: 10px;
-}
-
-.js .input-with-default-title {
-	font-style: italic;
-}
-
-#menu-management .inside {
-	padding: 0 10px;
-}
-
-/* Add Menu Item Boxes */
-.postbox .howto input,
-.accordion-container .howto input {
-	width: 180px;
-	float: right;
-}
-
-.accordion-container .outer-border {
-	margin: 0;
-}
-
-#nav-menu-meta .accordion-container .top {
-	border-top: 1px solid #dfdfdf;
-}
-
-#nav-menu-meta .accordion-container .accordion-section:first-child,
-#nav-menu-meta .accordion-container .accordion-section:first-child h3,
-#nav-menu-meta .accordion-container .top,
-#nav-menu-meta .accordion-container .top h3 {
-	-webkit-border-top-right-radius: 3px;
-	-webkit-border-top-left-radius: 3px;
-	border-top-right-radius: 3px;
-	border-top-left-radius: 3px;
-}
-
-#nav-menu-meta .accordion-container .accordion-section:last-child,
-#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,
-#nav-menu-meta .accordion-container .bottom,
-#nav-menu-meta .accordion-container .bottom:not(.open) h3 {
-	-webkit-border-bottom-right-radius: 3px;
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
-}
-
-.customlinkdiv .howto input {
-	width: 180px;
-}
-
-.customlinkdiv p {
-	margin-top: 0
-}
-
-#nav-menu-theme-locations .howto select {
-	width: 100%;
-}
-
-#nav-menu-theme-locations .button-controls {
-	text-align: right;
-}
-
-.add-menu-item-view-all {
-	height: 400px;
-}
-
-/* Button Primary Actions */
-#menu-container .submit {
-	margin: 0 0 10px;
-	padding: 0;
-}
-
-.nav-menus-php .add-new-menu-action {
-	float: left;
-	margin: 6px 0 0 6px;
-	line-height: 15px;
-}
-
-.nav-menus-php .meta-sep,
-.nav-menus-php .submitdelete,
-.nav-menus-php .submitcancel {
-	display: block;
-	float: left;
-	margin: 4px 0;
-	line-height: 15px;
-}
-
-.meta-sep {
-	padding: 0 2px;
-}
-
-#cancel-save {
-	text-decoration: underline;
-	font-size: 12px;
-	margin-left: 20px;
-	margin-top: 5px;
-}
-
-.button.right, .button-secondary.right, .button-primary.right {
-	float: right;
-}
-
-/* Button Secondary Actions */
-.list-controls {
-	float: left;
-	margin-top: 5px;
-}
-
-.add-to-menu {
-	float: right;
-}
-
-.postbox .spinner {
-	display: none;
-	vertical-align: middle;
-}
-
-.button-controls {
-	clear:both;
-	margin: 10px 0;
-}
-
-.show-all,
-.hide-all {
-	cursor: pointer;
-}
-
-.hide-all {
-	display: none;
-}
-
-/* Create Menu */
-#menu-name {
-	width: 270px;
-}
-
-#manage-menu .inside {
-	padding: 0px 0px;
-}
-
-/* Custom Links */
-#available-links dt {
-	display: block;
-}
-
-#add-custom-link .howto {
-	font-size: 12px;
-}
-
-#add-custom-link label span {
-	display: block;
-	float: left;
-	margin-top: 5px;
-	padding-right: 5px;
-}
-
-.menu-item-textbox {
-	width: 180px;
-}
-
-.nav-menus-php .howto span {
-	margin-top: 4px;
-	display: block;
-	float: left;
+  float: left;
+  width: 160px;
+  margin-right: 5px;
 }
-
-/* Menu item types */
-.quick-search {
-	width: 190px;
-}
-
-.nav-menus-php .list-wrap {
-	display: none;
-	clear: both;
-	margin-bottom: 10px;
-}
-
-.nav-menus-php .list-container {
-	max-height: 200px;
-	overflow-y: auto;
-	padding: 10px 10px 5px;
-}
-
-.nav-menus-php .postbox p.submit {
-	margin-bottom: 0;
-}
-
-/* Listings */
-.nav-menus-php .list li {
-	display: none;
-	margin: 0;
-	margin-bottom: 5px;
-}
-
-.nav-menus-php .list li .menu-item-title {
-	cursor: pointer;
-	display: block;
-}
-
-.nav-menus-php .list li .menu-item-title input {
-	margin-right: 3px;
-	margin-top: -3px;
-}
-
-/* Nav Menu */
-#menu-container .inside {
-	padding-bottom: 10px;
-}
-
-.menu {
-	padding-top:1em;
-}
-
-#menu-to-edit {
-	margin: 0;
-	padding: 0.1em 0;
-}
-
-.menu ul {
-	width: 100%;
-}
-
-.menu li {
-	margin-bottom: 0;
-	position:relative;
-}
-
-.menu-item-bar {
-	clear:both;
-	line-height:1.5em;
-	position:relative;
-	margin: 9px 0 0;
-}
-
-.menu-item-handle {
-	border: 1px solid #dfdfdf;
-	position: relative;
-	padding-left: 10px;
-	height: auto;
-	width: 400px;
-	line-height: 35px;
-	text-shadow: 0 1px 0 #FFFFFF;
-	overflow: hidden;
-	word-wrap: break-word;
-}
-
-#menu-to-edit .menu-item-invalid .menu-item-handle {
-	background: #f6c9cc;
-	background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
-	background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
-	background-image:    -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
-	background-image:      -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
-	background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
-}
-
-.menu-item-edit-active .menu-item-handle {
-	-webkit-border-bottom-right-radius: 0;
-	-webkit-border-bottom-left-radius: 0;
-	border-bottom-right-radius: 0;
-	border-bottom-left-radius: 0;
-}
-
-.no-js .menu-item-edit-active .item-edit {
-	display: none;
-}
-
-.js .menu-item-handle {
-	cursor: move;
-}
-
-.menu li.deleting .menu-item-handle {
-	background-image: none;
-	text-shadow: 0 0 0;
-}
-
-.menu-item-handle .item-title {
-	font-size: 12px;
-	font-weight: bold;
-	padding: 7px 0;
-	line-height: 20px;
-	display:block;
-	margin-right:13em;
-}
-
-/* Sortables */
-li.menu-item.ui-sortable-helper dl {
-	margin-top: 0;
-}
-
-li.menu-item.ui-sortable-helper .menu-item-transport dl {
-	margin-top: 13px;
-}
-
-.menu .sortable-placeholder {
-	height: 35px;
-	width: 410px;
-	margin-top: 13px;
-}
-
-/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
-.menu-item-depth-0 { margin-left: 0px; }
-.menu-item-depth-1 { margin-left: 30px; }
-.menu-item-depth-2 { margin-left: 60px; }
-.menu-item-depth-3 { margin-left: 90px; }
-.menu-item-depth-4 { margin-left: 120px; }
-.menu-item-depth-5 { margin-left: 150px; }
-.menu-item-depth-6 { margin-left: 180px; }
-.menu-item-depth-7 { margin-left: 210px; }
-.menu-item-depth-8 { margin-left: 240px; }
-.menu-item-depth-9 { margin-left: 270px; }
-.menu-item-depth-10 { margin-left: 300px; }
-.menu-item-depth-11 { margin-left: 330px; }
-
-.menu-item-depth-0 .menu-item-transport { margin-left: 0px; }
-.menu-item-depth-1 .menu-item-transport { margin-left: -30px; }
-.menu-item-depth-2 .menu-item-transport { margin-left: -60px; }
-.menu-item-depth-3 .menu-item-transport { margin-left: -90px; }
-.menu-item-depth-4 .menu-item-transport { margin-left: -120px; }
-.menu-item-depth-5 .menu-item-transport { margin-left: -150px; }
-.menu-item-depth-6 .menu-item-transport { margin-left: -180px; }
-.menu-item-depth-7 .menu-item-transport { margin-left: -210px; }
-.menu-item-depth-8 .menu-item-transport { margin-left: -240px; }
-.menu-item-depth-9 .menu-item-transport { margin-left: -270px; }
-.menu-item-depth-10 .menu-item-transport { margin-left: -300px; }
-.menu-item-depth-11 .menu-item-transport { margin-left: -330px; }
-
-body.menu-max-depth-0 { min-width: 950px !important; }
-body.menu-max-depth-1 { min-width: 980px !important; }
-body.menu-max-depth-2 { min-width: 1010px !important; }
-body.menu-max-depth-3 { min-width: 1040px !important; }
-body.menu-max-depth-4 { min-width: 1070px !important; }
-body.menu-max-depth-5 { min-width: 1100px !important; }
-body.menu-max-depth-6 { min-width: 1130px !important; }
-body.menu-max-depth-7 { min-width: 1160px !important; }
-body.menu-max-depth-8 { min-width: 1190px !important; }
-body.menu-max-depth-9 { min-width: 1220px !important; }
-body.menu-max-depth-10 { min-width: 1250px !important; }
-body.menu-max-depth-11 { min-width: 1280px !important; }
-
-/* Menu item controls */
-.item-type {
-	font-size: 12px;
-	padding-right: 10px;
-}
-
-.item-controls {
-	font-size: 12px;
-	position: absolute;
-	right: 20px;
-	top: -1px;
-}
-
-.item-controls a {
-	text-decoration: none;
-}
-
-.item-controls a:hover {
-	cursor: pointer;
-}
-
-.item-controls .item-order {
-	padding-right: 10px;
-}
-
-.nav-menus-php .item-edit {
-	position: absolute;
-	right: -20px;
-	top: 0;
-	display: block;
-	width: 30px;
-	height: 36px;
-	overflow: hidden;
-	text-indent:-999em;
-	border-bottom: 1px solid;
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-left-radius: 3px;
-}
-
-/* Menu editing */
-.menu-instructions-inactive {
-	display: none;
-}
-
-.menu-item-settings {
-	display: block;
-	width: 400px;
-	padding: 10px 0 10px 10px;
-	border: solid;
-	border-width: 0 1px 1px 1px;
-	-webkit-border-bottom-right-radius: 3px;
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
-}
-
-.menu-item-settings .field-move a {
-	display: none;
-	margin: 0 2px;
-}
-
-.menu-item-edit-active .menu-item-settings {
-	display: block;
-}
-
-.menu-item-edit-inactive .menu-item-settings {
-	display: none;
-}
-
-.add-menu-item-pagelinks {
-	margin: .5em auto;
-	text-align: center;
-}
-
-.link-to-original {
-	display: block;
-	margin: 0 0 10px;
-	padding: 3px 5px 5px;
-	font-size: 12px;
-	font-style: italic;
-}
-
-.link-to-original a {
-	padding-left: 4px;
-	font-style: normal;
-}
-
-.hidden-field {
-	display: none;
-}
-
-.menu-item-settings .description-thin,
-.menu-item-settings .description-wide {
-	margin-right: 10px;
-	float: left;
+.locations-row-links {
+  float: left;
+  margin: 6px 0 0 6px;
 }
-
-.description-thin {
-	width: 190px;
-	height: 40px;
+.locations-edit-menu-link,
+.locations-add-menu-link {
+  margin: 0 3px;
 }
-
-.description-wide {
-	width: 390px;
+.locations-edit-menu-link {
+  padding-right: 3px;
+  border-right: 1px solid #ccc;
 }
-
-.menu-item-actions {
-	padding-top: 15px;
+#wpbody .open-label {
+  display: block;
+  float: left;
 }
-
-#cancel-save {
-	cursor: pointer;
+#wpbody .open-label span {
+  padding-right: 10px;
 }
-
-/* Major/minor publishing actions (classes) */
-.nav-menus-php .major-publishing-actions {
-	clear: both;
-	padding: 3px 0 5px;
+.js .input-with-default-title {
+  font-style: italic;
 }
-
-.nav-menus-php .major-publishing-actions .publishing-action {
-	text-align: right;
-	float: right;
-	line-height: 23px;
-	margin: 2px 0 1px;
+#menu-management .inside {
+  padding: 0 10px;
 }
-
-.nav-menus-php .blank-slate .menu-settings {
-	display: none;
+/* Add Menu Item Boxes */
+.postbox .howto input,
+.accordion-container .howto input {
+  width: 180px;
+  float: right;
 }
-
-.nav-menus-php .delete-action {
-	float: left;
-	margin-top: 2px;
+.accordion-container .outer-border {
+  margin: 0;
 }
-
-.nav-menus-php .submitbox .submitcancel {
-	border-bottom: 1px solid;
-	padding: 1px 2px;
-	text-decoration: none;
+#nav-menu-meta .accordion-container .top {
+  border-top: 1px solid #dfdfdf;
 }
-
-.nav-menus-php .major-publishing-actions .form-invalid {
-	padding-left: 4px;
-	margin-left: -4px;
-	border: 0 none;
+#nav-menu-meta .accordion-container .accordion-section:first-child,
+#nav-menu-meta .accordion-container .accordion-section:first-child h3,
+#nav-menu-meta .accordion-container .top,
+#nav-menu-meta .accordion-container .top h3 {
+  border-top-left-radius: 3px;
+  border-top-right-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
 }
-
-/* Clearfix */
-#menu-item-name-wrap:after,
-#menu-item-url-wrap:after,
-#menu-name-label:after,
-#menu-settings-column .inside:after,
-#nav-menus-frame:after,
-.nav-menus-php #post-body-content:after,
-.nav-menus-php .button-controls:after,
-.nav-menus-php .major-publishing-actions:after,
-.nav-menus-php .menu-item-settings:after {
-	clear: both;
-	content: ".";
-	display: block;
-	height: 0;
-	visibility: hidden;
+#nav-menu-meta .accordion-container .accordion-section:last-child,
+#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,
+#nav-menu-meta .accordion-container .bottom,
+#nav-menu-meta .accordion-container .bottom:not(.open) h3 {
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
-#nav-menus-frame,
-.button-controls,
-#menu-item-url-wrap,
-#menu-item-name-wrap {
-	display: block;
+.customlinkdiv .howto input {
+  width: 180px;
 }
-
-/* Star ratings */
-div.star-holder {
-	position: relative;
-	height: 17px;
-	width: 100px;
-	background: url('../images/stars.png?ver=20121108') repeat-x bottom left;
+.customlinkdiv p {
+  margin-top: 0;
 }
-
-div.star-holder .star-rating {
-	background: url('../images/stars.png?ver=20121108') repeat-x top left;
-	height: 17px;
-	float: left;
+#nav-menu-theme-locations .howto select {
+  width: 100%;
 }
-
-div.action-links {
-	font-weight: normal;
-	margin: 6px 0 0;
+#nav-menu-theme-locations .button-controls {
+  text-align: right;
 }
-
-/* Header on thickbox */
-#plugin-information-header {
-	margin: 0;
-	padding: 0 5px;
-	font-weight: bold;
-	position: relative;
-	border-bottom-width: 1px;
-	border-bottom-style: solid;
-	height: 2.5em;
+.add-menu-item-view-all {
+  height: 400px;
 }
-#plugin-information ul#sidemenu {
-	font-weight: normal;
-	margin: 0 5px;
-	position: absolute;
-	left: 0;
-	bottom: -1px;
+/* Button Primary Actions */
+#menu-container .submit {
+  margin: 0 0 10px;
+  padding: 0;
 }
-
-/* Install sidemenu */
-#plugin-information p.action-button {
-	width: 100%;
-	padding-bottom: 0;
-	margin-bottom: 0;
-	margin-top: 10px;
-	-webkit-border-top-left-radius: 3px;
-	-webkit-border-bottom-left-radius: 3px;
-	border-top-left-radius: 3px;
-	border-bottom-left-radius: 3px;
+.nav-menus-php .add-new-menu-action {
+  float: left;
+  margin: 6px 0 0 6px;
+  line-height: 15px;
 }
-
-#plugin-information .action-button a {
-	text-align: center;
-	font-weight: bold;
-	text-decoration: none;
-	display: block;
-	line-height: 2em;
+.nav-menus-php .meta-sep,
+.nav-menus-php .submitdelete,
+.nav-menus-php .submitcancel {
+  display: block;
+  float: left;
+  margin: 4px 0;
+  line-height: 15px;
 }
-
-#plugin-information h2 {
-	clear: none !important;
-	margin-right: 200px;
+.meta-sep {
+  padding: 0 2px;
 }
-
-#plugin-information .fyi {
-	margin: 0 10px 50px;
-	width: 210px;
+#cancel-save {
+  text-decoration: underline;
+  font-size: 12px;
+  margin-left: 20px;
+  margin-top: 5px;
 }
-
-#plugin-information .fyi h2 {
-	font-size: 0.9em;
-	margin-bottom: 0;
-	margin-right: 0;
+.button.right,
+.button-secondary.right,
+.button-primary.right {
+  float: right;
 }
-
-#plugin-information .fyi h2.mainheader {
-	padding: 5px;
-	-webkit-border-top-left-radius: 3px;
-	border-top-left-radius: 3px;
+/* Button Secondary Actions */
+.list-controls {
+  float: left;
+  margin-top: 5px;
 }
-
-#plugin-information .fyi ul {
-	padding: 10px 5px 10px 7px;
-	margin: 0;
-	list-style: none;
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-left-radius: 3px;
+.add-to-menu {
+  float: right;
 }
-
-#plugin-information .fyi li {
-	margin-right: 0;
+/* Create Menu */
+#menu-name {
+  width: 270px;
 }
-
-#plugin-information #section-holder {
-	padding: 10px;
+#manage-menu .inside {
+  padding: 0px 0px;
 }
-
-#plugin-information .section ul,
-#plugin-information .section ol {
-	margin-left: 16px;
-	list-style-type: square;
-	list-style-image: none;
+/* Custom Links */
+#available-links dt {
+  display: block;
 }
-
-#plugin-information #section-screenshots ol {
-	list-style: none;
-	margin: 0;
+#add-custom-link .howto {
+  font-size: 12px;
 }
-
-#plugin-information #section-screenshots li img {
-	vertical-align: text-top;
-	max-width: 100%;
-	width: auto;
-	height: auto;
+#add-custom-link label span {
+  display: block;
+  float: left;
+  margin-top: 5px;
+  padding-right: 5px;
 }
-
-#plugin-information #section-screenshots li p {
-	font-style: italic;
-	padding-left: 20px;
-	padding-bottom: 2em;
+.menu-item-textbox {
+  width: 180px;
 }
-
-#plugin-information #section-screenshots ol,
-#plugin-information .updated,
-#plugin-information pre {
-	margin-right: 215px;
+.nav-menus-php .howto span {
+  margin-top: 4px;
+  display: block;
+  float: left;
 }
-
-#plugin-information pre {
-	padding: 7px;
-	overflow: auto;
+/* Menu item types */
+.quick-search {
+  width: 190px;
 }
-
-/* press-this */
-body.press-this {
-	color: #333;
-	margin: 0;
-	padding: 0;
-	min-width: 675px;
-	min-height: 400px;
+.nav-menus-php .list-wrap {
+  display: none;
+  clear: both;
+  margin-bottom: 10px;
 }
-
-img {
-	border: none;
+.nav-menus-php .list-container {
+  max-height: 200px;
+  overflow-y: auto;
+  padding: 10px 10px 5px;
 }
-
-/* Header */
-.press-this #wphead {
-	height: 32px;
-	margin-left: 0;
-	margin-right: 0;
-	margin-bottom: 5px;
+.nav-menus-php .postbox p.submit {
+  margin-bottom: 0;
 }
-
-.press-this #header-logo {
-	float: left;
-	margin: 7px 7px 0;
-	-webkit-user-select: none;
-	-moz-user-select: none;
-	user-select: none;
+/* Listings */
+.nav-menus-php .list li {
+  display: none;
+  margin: 0;
+  margin-bottom: 5px;
 }
-
-.press-this #wphead h1 {
-	font-weight: normal;
-	font-size: 16px;
-	line-height: 32px;
-	margin: 0;
-	float: left;
+.nav-menus-php .list li .menu-item-title {
+  cursor: pointer;
+  display: block;
 }
-
-.press-this #wphead h1 a {
-	text-decoration: none;
+.nav-menus-php .list li .menu-item-title input {
+  margin-right: 3px;
+  margin-top: -3px;
 }
-
-.press-this #wphead h1 a:hover {
-	text-decoration: underline;
+/* Nav Menu */
+#menu-container .inside {
+  padding-bottom: 10px;
 }
-
-.press-this #message {
-	margin: 10px 0;
+.menu {
+  padding-top: 1em;
 }
-
-.press-this-sidebar {
-	float: right;
-	width: 200px;
-	padding-top: 10px;
+.menu ul {
+  width: 100%;
 }
-
-.press-this #title {
-	margin-left: 0;
-	margin-right: 0;
-	-moz-box-sizing: border-box;
-	-webkit-box-sizing: border-box;
-	-ms-box-sizing: border-box;
-	box-sizing: border-box;
+.menu li {
+  margin-bottom: 0;
+  position: relative;
 }
-
-.press-this .tagchecklist span a {
-	background: transparent url(../images/xit.gif) no-repeat 0 0;
+#menu-to-edit {
+  margin: 0;
+  padding: 0.1em 0;
 }
-
-.press-this #titlediv {
-	margin: 0;
+.menu-item-bar {
+  clear: both;
+  line-height: 1.5em;
+  position: relative;
+  margin: 9px 0 0;
 }
-
-.press-this .wp-media-buttons {
-	cursor: default;
-	padding: 8px 8px 0;
+.menu-item-handle {
+  border: 1px solid #dfdfdf;
+  position: relative;
+  padding-left: 10px;
+  height: auto;
+  width: 400px;
+  line-height: 35px;
+  text-shadow: 0 1px 0 #FFFFFF;
+  overflow: hidden;
+  word-wrap: break-word;
 }
-
-.press-this .howto {
-	margin-top: 2px;
-	margin-bottom: 3px;
-	font-size: 12px;
-	font-style: italic;
-	display: block;
+#menu-to-edit .menu-item-invalid .menu-item-handle {
+  background: #fdf8ff;
+  background-image: -webkit-gradient(linear, left bottom, left top, from(#f6c9cc), to(#fdf8ff));
+  background-image: -webkit-linear-gradient(bottom, #f6c9cc, #fdf8ff);
+  background-image: -moz-linear-gradient(bottom, #f6c9cc, #fdf8ff);
+  background-image: -o-linear-gradient(bottom, #f6c9cc, #fdf8ff);
+  background-image: linear-gradient(to top, #f6c9cc, #fdf8ff);
 }
-
-/* Editor/Main Column */
-.press-this #poststuff {
-	margin: 0 10px 10px;
-	padding: 0;
+.menu-item-edit-active .menu-item-handle {
+  border-bottom-left-radius: 0;
+  border-bottom-right-radius: 0;
+  -moz-border-bottom-left-radius: 0;
+  -moz-border-bottom-right-radius: 0;
+  -webkit-border-bottom-left-radius: 0;
+  -webkit-border-bottom-right-radius: 0;
 }
-
-.press-this #photo-add-url-div input[type="text"] {
-	width: 220px;
+.no-js .menu-item-edit-active .item-edit {
+  display: none;
 }
-
-#poststuff #editor-toolbar {
-	height: 30px;
+.js .menu-item-handle {
+  cursor: move;
 }
-
-div.zerosize {
-	border: 0 none;
-	height: 0;
-	margin: 0;
-	overflow: hidden;
-	padding: 0;
-	width: 0;
+.menu li.deleting .menu-item-handle {
+  background-image: none;
+  text-shadow: 0 0 0;
 }
-
-.posting {
-	margin-right: 212px;
-	position: relative;
+.menu-item-handle .item-title {
+  font-size: 12px;
+  font-weight: bold;
+  padding: 7px 0;
+  line-height: 20px;
+  display: block;
+  margin-right: 13em;
 }
-
-.press-this .inner-sidebar {
-	width: 200px;
+/* Sortables */
+li.menu-item.ui-sortable-helper dl {
+  margin-top: 0;
 }
-
-.press-this .inner-sidebar .sleeve {
-	padding-top: 5px;
+li.menu-item.ui-sortable-helper .menu-item-transport dl {
+  margin-top: 13px;
 }
-
-.press-this #submitdiv p {
-	margin: 0;
-	padding: 6px;
+.menu .sortable-placeholder {
+  height: 35px;
+  width: 410px;
+  margin-top: 13px;
 }
-
-.press-this #submitdiv #publishing-actions {
-	border-bottom: 1px solid #dfdfdf;
+/* WARNING: The factor of 30px is hardcoded into the nav-menus javascript. */
+.menu-item-depth-0 {
+  margin-left: 0px;
 }
-
-.press-this #publish {
-	float: right;
+.menu-item-depth-1 {
+  margin-left: 30px;
 }
-
-.press-this #poststuff h2,
-.press-this #poststuff h3 {
-	font-size: 14px;
-	line-height: 1;
+.menu-item-depth-2 {
+  margin-left: 60px;
 }
-
-.press-this #tagsdiv-post_tag h3,
-.press-this #categorydiv h3 {
-	cursor: pointer;
+.menu-item-depth-3 {
+  margin-left: 90px;
 }
-
-.press-this #submitdiv h3 {
-	cursor: default;
+.menu-item-depth-4 {
+  margin-left: 120px;
 }
-
-h3.tb {
-	text-shadow: 0 1px 0 #fff;
-	font-weight: bold;
-	font-size: 12px;
-	margin-left: 5px;
+.menu-item-depth-5 {
+  margin-left: 150px;
 }
-
-#TB_window {
-	border: 1px solid #333;
+.menu-item-depth-6 {
+  margin-left: 180px;
 }
-
-.press-this .postbox,
-.press-this .stuffbox {
-	margin-bottom: 10px;
-	min-width: 0;
+.menu-item-depth-7 {
+  margin-left: 210px;
 }
-
-.js .postbox:hover .handlediv,
-.js .stuffbox:hover .handlediv {
-	background: transparent url(../images/arrows.png) no-repeat 6px 7px;
+.menu-item-depth-8 {
+  margin-left: 240px;
 }
-
-.press-this #submitdiv:hover .handlediv {
-	background: none;
+.menu-item-depth-9 {
+  margin-left: 270px;
 }
-
-.tbtitle {
-	font-size: 1.7em;
-	outline: none;
-	padding: 3px 4px;
-	border-color: #dfdfdf;
+.menu-item-depth-10 {
+  margin-left: 300px;
 }
-
-.press-this .actions {
-	float: right;
-	margin: -19px 0 0;
+.menu-item-depth-11 {
+  margin-left: 330px;
 }
-
-.press-this #extra-fields .actions {
-	margin: -32px -7px 0 0;
+.menu-item-depth-0 .menu-item-transport {
+  margin-left: 0px;
 }
-
-.press-this .actions li {
-	float: left;
-	list-style: none;
-	margin-right: 10px;
+.menu-item-depth-1 .menu-item-transport {
+  margin-left: -30px;
 }
-
-#extra-fields .button {
-	margin-right: 5px;
+.menu-item-depth-2 .menu-item-transport {
+  margin-left: -60px;
 }
-
-/* Photo Styles */
-#photo_saving {
-	margin: 0 8px 8px;
-	vertical-align: middle;
+.menu-item-depth-3 .menu-item-transport {
+  margin-left: -90px;
 }
-
-#img_container_container {
-	overflow: auto;
+.menu-item-depth-4 .menu-item-transport {
+  margin-left: -120px;
 }
-
-#extra-fields {
-	margin-top: 10px;
-	position: relative;
+.menu-item-depth-5 .menu-item-transport {
+  margin-left: -150px;
 }
-
-#extra-fields h2 {
-	margin: 12px;
+.menu-item-depth-6 .menu-item-transport {
+  margin-left: -180px;
 }
-
-#waiting {
-	margin-top: 10px;
-	overflow: hidden;
+.menu-item-depth-7 .menu-item-transport {
+  margin-left: -210px;
 }
-
-#waiting span {
-	float: right;
-	margin: 0 0 0 5px;
+.menu-item-depth-8 .menu-item-transport {
+  margin-left: -240px;
 }
-
-#waiting .spinner {
-	display: block;
+.menu-item-depth-9 .menu-item-transport {
+  margin-left: -270px;
 }
-
-#extra-fields .postbox {
-	margin-bottom: 5px;
+.menu-item-depth-10 .menu-item-transport {
+  margin-left: -300px;
 }
-
-#extra-fields .titlewrap {
-	padding: 0;
-	overflow: auto;
-	height: 100px;
+.menu-item-depth-11 .menu-item-transport {
+  margin-left: -330px;
 }
-
-#img_container a {
-	display: block;
-	float: left;
-	overflow: hidden;
+body.menu-max-depth-0 {
+  min-width: 950px !important;
 }
-
-#img_container img,
-#img_container a {
-	width: 68px;
-	height: 68px;
+body.menu-max-depth-1 {
+  min-width: 980px !important;
 }
-
-#img_container img {
-	border: none;
-	background-color: #f4f4f4;
-	cursor: pointer;
+body.menu-max-depth-2 {
+  min-width: 1010px !important;
 }
-
-#img_container a,
-#img_container a:link,
-#img_container a:visited {
-	border: 1px solid #ccc;
-	display: block;
-	position: relative;
+body.menu-max-depth-3 {
+  min-width: 1040px !important;
 }
-
-#img_container a:hover,
-#img_container a:active {
-	border-color: #000;
-	z-index: 1000;
-	border-width: 2px;
-	margin: -1px;
+body.menu-max-depth-4 {
+  min-width: 1070px !important;
 }
-
-/* Video */
-#embed-code {
-	width: 100%;
-	height: 98px;
+body.menu-max-depth-5 {
+  min-width: 1100px !important;
 }
-
-/* Categories */
-.press-this .categorydiv div.tabs-panel {
-	height: 100px;
+body.menu-max-depth-6 {
+  min-width: 1130px !important;
 }
-
-/* Tags */
-.press-this .tagsdiv .newtag {
-	width: 120px;
+body.menu-max-depth-7 {
+  min-width: 1160px !important;
 }
-
-.press-this #content {
-	margin: 5px 0;
-	padding: 0 5px;
-	border: 0 none;
-	height: 345px;
-	font-family: Consolas, Monaco, monospace;
-	font-size: 13px;
-	line-height: 19px;
-	background: transparent;
+body.menu-max-depth-8 {
+  min-width: 1190px !important;
 }
-
-/* Submit */
-.press-this #publishing-actions .spinner {
-	display: inline;
-	vertical-align: middle;
+body.menu-max-depth-9 {
+  min-width: 1220px !important;
 }
-
-#TB_ajaxContent #options {
-	position: absolute;
-	top: 20px;
-	right: 25px;
-	padding: 5px;
+body.menu-max-depth-10 {
+  min-width: 1250px !important;
 }
-
-#TB_ajaxContent h3 {
-	margin-bottom: .25em;
+body.menu-max-depth-11 {
+  min-width: 1280px !important;
 }
-
-.error a {
-	text-decoration: underline;
+/* Menu item controls */
+.item-type {
+  font-size: 12px;
+  padding-right: 10px;
+}
+.item-controls {
+  font-size: 12px;
+  position: absolute;
+  right: 20px;
+  top: -1px;
 }
-
-.updated a {
-	text-decoration: none;
-	padding-bottom: 2px;
+.item-controls a {
+  text-decoration: none;
 }
-
-/* tag hints */
-.taghint {
-	color: #aaa;
-	margin: -17px 0 0 7px;
-	visibility: hidden;
+.item-controls a:hover {
+  cursor: pointer;
 }
-
-input.newtag ~ div.taghint {
-	visibility: visible;
+.item-controls .item-order {
+  padding-right: 10px;
 }
-
-input.newtag:focus ~ div.taghint {
-	visibility: hidden;
+.nav-menus-php .item-edit {
+  position: absolute;
+  right: -20px;
+  top: 0;
+  display: block;
+  width: 30px;
+  height: 36px;
+  overflow: hidden;
+  text-indent: -999em;
+  border-bottom: 1px solid;
+  -moz-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  border-bottom-left-radius: 3px;
 }
-
-/* TinyMCE */
-#mce_fullscreen_container {
-	background: #fff;
+/* Menu editing */
+.menu-instructions-inactive {
+  display: none;
 }
-
-#photo-add-url-div input[type="text"] {
-	width: 300px;
+.menu-item-settings {
+  display: block;
+  width: 400px;
+  padding: 10px 0 10px 10px;
+  border: solid;
+  border-width: 0 1px 1px 1px;
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
-/* theme-editor */
-.alignleft h3 {
-	margin: 0;
+.menu-item-settings .field-move a {
+  display: none;
+  margin: 0 2px;
 }
-
-h3 span {
-	font-weight: normal;
+.menu-item-edit-active .menu-item-settings {
+  display: block;
 }
-
-#template textarea {
-	font-family: Consolas, Monaco, monospace;
-	font-size: 12px;
-	width: 97%;
-	background: #f9f9f9;
-	outline: none;
+.menu-item-edit-inactive .menu-item-settings {
+  display: none;
 }
-
-#template p {
-	width: 97%;
+.menu-item-settings .description-thin,
+.menu-item-settings .description-wide {
+  margin-right: 10px;
+  float: left;
 }
-
-#templateside {
-	float: right;
-	width: 190px;
-	word-wrap: break-word;
+.add-menu-item-pagelinks {
+  margin: .5em auto;
+  text-align: center;
 }
-
-#templateside h3,
-#postcustomstuff p.submit {
-	margin: 0;
+.link-to-original {
+  display: block;
+  margin: 0 0 10px;
+  padding: 3px 5px 5px;
+  font-size: 12px;
+  font-style: italic;
 }
-
-#templateside h4 {
-	margin: 1em 0 0;
+.link-to-original a {
+  padding-left: 4px;
+  font-style: normal;
 }
-
-#templateside ol,
-#templateside ul {
-	margin: .5em;
-	padding: 0;
+.hidden-field {
+  display: none;
 }
-
-#templateside li {
-	margin: 4px 0;
+.description-thin {
+  width: 190px;
+  height: 40px;
 }
-
-#templateside ul li a span.highlight {
-	display:block;
+.description-wide {
+  width: 390px;
 }
-
-.nonessential {
-	font-size: 11px;
-	font-style: italic;
-	padding-left: 12px;
+.menu-item-actions {
+  padding-top: 15px;
 }
-
-.highlight {
-	padding: 3px 3px 3px 12px;
-	margin-left: -12px;
-	font-weight: bold;
-	border: 0 none;
+#cancel-save {
+  cursor: pointer;
 }
-
-#documentation {
-	margin-top: 10px;
+/* Major/minor publishing actions (classes) */
+.nav-menus-php .major-publishing-actions {
+  clear: both;
+  padding: 3px 0 5px;
 }
-#documentation label {
-	line-height: 22px;
-	vertical-align: top;
-	font-weight: bold;
+.nav-menus-php .major-publishing-actions .publishing-action {
+  text-align: right;
+  float: right;
+  line-height: 23px;
+  margin: 2px 0 1px;
 }
-
-.fileedit-sub {
-	padding: 10px 0 8px;
-	line-height: 180%;
+.nav-menus-php .major-publishing-actions .form-invalid {
+  padding-left: 4px;
+  margin-left: -4px;
+  border: 0 none;
 }
-
-#filter-box {
-	clear: both;
+.nav-menus-php .blank-slate .menu-settings {
+  display: none;
 }
-
-.feature-filter {
-	padding: 8px 12px 0;
+.nav-menus-php .delete-action {
+  float: left;
+  margin-top: 2px;
 }
-
-.feature-filter .feature-group {
-	float: left;
-	margin: 5px 10px 10px;
+.nav-menus-php .submitbox .submitcancel {
+  border-bottom: 1px solid;
+  padding: 1px 2px;
+  text-decoration: none;
 }
-
-.feature-filter .feature-group li {
-	display: inline-block;
-	vertical-align: top;
-	list-style-type: none;
-	padding-right: 25px;
-	width: 150px;
+/* Clearfix */
+#menu-item-name-wrap:after,
+#menu-item-url-wrap:after,
+#menu-name-label:after,
+#menu-settings-column .inside:after,
+#nav-menus-frame:after,
+.nav-menus-php #post-body-content:after,
+.nav-menus-php .button-controls:after,
+.nav-menus-php .major-publishing-actions:after,
+.nav-menus-php .menu-item-settings:after {
+  clear: both;
+  content: ".";
+  display: block;
+  height: 0;
+  visibility: hidden;
 }
-
-.feature-container {
-	width: 100%;
-	overflow: auto;
-	margin-bottom: 10px;
+#nav-menus-frame,
+.button-controls,
+#menu-item-url-wrap,
+#menu-item-name-wrap {
+  display: block;
 }
-
 /* widgets */
-
 /* 2 column liquid layout */
 div.widget-liquid-left {
-	float: left;
-	clear: left;
-	width: 100%;
-	margin-right: -325px;
+  float: left;
+  clear: left;
+  width: 100%;
+  margin-right: -325px;
 }
-
 div#widgets-left {
-	margin-left: 5px;
-	margin-right: 325px;
+  margin-left: 5px;
+  margin-right: 325px;
 }
-
 div#widgets-right {
-	width: 285px;
-	margin: 0 auto;
+  width: 285px;
+  margin: 0 auto;
 }
-
 div.widget-liquid-right {
-	float: right;
-	clear: right;
-	width: 300px;
+  float: right;
+  clear: right;
+  width: 300px;
 }
-
 .widget-liquid-right .widget,
 .inactive-sidebar .widget,
 .widget-liquid-right .sidebar-description {
-	width: 250px;
-	margin: 0 auto 20px;
-	overflow: hidden;
+  width: 250px;
+  margin: 0 auto 20px;
+  overflow: hidden;
 }
-
 .widget-liquid-right .sidebar-description {
-	margin-bottom: 10px;
+  margin-bottom: 10px;
 }
-
 .inactive-sidebar .widget {
-	margin: 0 10px 20px;
-	display: inline-block;
-}
-
-div.sidebar-name h3 {
-	font-weight: normal;
-	font-size: 15px;
-	margin: 0;
-	padding: 8px 10px;
-	overflow: hidden;
-	white-space: nowrap;
+  margin: 0 10px 20px;
+  display: inline-block;
 }
-
 div.sidebar-name {
-	font-size: 13px;
-	border-width: 1px;
-	border-style: solid;
-	-webkit-border-top-right-radius: 3px;
-	-webkit-border-top-left-radius: 3px;
-	border-top-right-radius: 3px;
-	border-top-left-radius: 3px;
+  font-size: 13px;
+  border-width: 1px;
+  border-style: solid;
+  border-top-left-radius: 3px;
+  border-top-right-radius: 3px;
+  -moz-border-top-left-radius: 3px;
+  -moz-border-top-right-radius: 3px;
+  -webkit-border-top-left-radius: 3px;
+  -webkit-border-top-right-radius: 3px;
+}
+div.sidebar-name h3 {
+  font-weight: normal;
+  font-size: 15px;
+  margin: 0;
+  padding: 8px 10px;
+  overflow: hidden;
+  white-space: nowrap;
 }
-
 .js .sidebar-name {
-	cursor: pointer;
+  cursor: pointer;
 }
-
 .js .closed .sidebar-name {
-	-webkit-border-bottom-right-radius: 3px;
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
 .widget-liquid-right .widgets-sortables,
 #widgets-left .widget-holder {
-	border-width: 0 1px 1px;
-	border-style: none solid solid;
-	-webkit-border-bottom-right-radius: 3px;
-	-webkit-border-bottom-left-radius: 3px;
-	border-bottom-right-radius: 3px;
-	border-bottom-left-radius: 3px;
+  border-width: 0 1px 1px;
+  border-style: none solid solid;
+  border-bottom-left-radius: 3px;
+  border-bottom-right-radius: 3px;
+  -moz-border-bottom-left-radius: 3px;
+  -moz-border-bottom-right-radius: 3px;
+  -webkit-border-bottom-left-radius: 3px;
+  -webkit-border-bottom-right-radius: 3px;
 }
-
 .js .closed .widgets-sortables,
 .js .closed .widget-holder {
-	display: none;
+  display: none;
 }
-
 .widget-liquid-right .widgets-sortables {
-	padding: 15px 0 0;
+  padding: 15px 0 0;
 }
-
 #available-widgets .widget-holder {
-	padding: 7px 5px 0;
+  padding: 7px 5px 0;
 }
-
 #available-widgets .widget {
-	-webkit-box-shadow: none;
-	box-shadow: none;
+  -moz-box-shadow: none;
+  -webkit-box-shadow: none;
+  box-shadow: none;
 }
-
 .inactive-sidebar {
-	padding: 5px 5px 0;
+  padding: 5px 5px 0;
 }
-
 #widget-list .widget {
-	width: 250px;
-	margin: 0 10px 15px;
-	border: 0 none;
-	background: transparent;
-	display: inline-block;
-	vertical-align: top;
+  width: 250px;
+  margin: 0 10px 15px;
+  border: 0 none;
+  background: transparent;
+  display: inline-block;
+  vertical-align: top;
 }
-
 #widget-list .widget-description {
-	padding: 5px 8px;
+  padding: 5px 8px;
 }
-
 .widget-placeholder {
-	border-width: 1px;
-	border-style: dashed;
-	margin: 0 auto 20px;
-	height: 27px;
-	width: 250px;
+  border-width: 1px;
+  border-style: dashed;
+  margin: 0 auto 20px;
+  height: 27px;
+  width: 250px;
 }
-
 .inactive-sidebar .widget-placeholder {
-	margin: 0 10px 20px;
-	float: left;
+  margin: 0 10px 20px;
+  float: left;
 }
-
 div.widgets-holder-wrap {
-	padding: 0;
-	margin: 10px 0 20px;
+  padding: 0;
+  margin: 10px 0 20px;
 }
-
 #widgets-left #available-widgets {
-	background-color: transparent;
-	border: 0 none;
+  background-color: transparent;
+  border: 0 none;
 }
-
 ul#widget-list {
-	list-style: none;
-	margin: 0;
-	padding: 0;
-	min-height: 100px;
+  list-style: none;
+  margin: 0;
+  padding: 0;
+  min-height: 100px;
 }
-
 .widget .widget-top {
-	margin-bottom: -1px;
-	font-size: 12px;
-	font-weight: bold;
-	height: 26px;
-	overflow: hidden;
-}
-
-.widget-top .widget-title {
-	padding: 7px 9px;
-}
-
-.widget-top .widget-title-action {
-	float: right;
+  margin-bottom: -1px;
+  font-size: 12px;
+  font-weight: bold;
+  line-height: 26px;
+  overflow: hidden;
 }
-
 a.widget-action {
-	display: block;
-	width: 24px;
-	height: 26px;
+  display: block;
+  width: 24px;
+  height: 26px;
 }
-
 #available-widgets a.widget-action {
-	display: none;
+  display: none;
+}
+.widget-top .widget-title {
+  padding: 7px 9px;
+}
+.widget-top .widget-title-action {
+  float: right;
 }
-
 .widget-top a.widget-action {
-	background: transparent url(../images/arrows.png) no-repeat 4px 6px;
+  background: transparent url(../images/arrows.png) no-repeat 4px 6px;
 }
-
 .widget-top a.widget-action:hover {
-	background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px;
+  background: transparent url(../images/arrows-dark.png) no-repeat 4px 6px;
 }
-
 .widget .widget-inside,
 .widget .widget-description {
-	padding: 12px 12px 10px;
-	font-size: 12px;
-	line-height: 16px;
+  padding: 12px 12px 10px;
+  font-size: 12px;
+  line-height: 16px;
 }
-
 .widget-inside,
 .widget-description {
-	display: none;
+  display: none;
 }
-
 #available-widgets .widget-description {
-	display: block;
+  display: block;
 }
-
 .widget .widget-inside p {
-	margin: 0 0 1em;
-	padding: 0;
+  margin: 0 0 1em;
+  padding: 0;
 }
-
 .widget-title h4 {
-	margin: 0;
-	padding-bottom: 0.2em;
-	line-height: 1;
-	overflow: hidden;
-	white-space: nowrap;
+  margin: 0;
+  padding-bottom: 0.2em;
+  line-height: 1;
+  overflow: hidden;
+  white-space: nowrap;
 }
-
 .widgets-sortables {
-	min-height: 90px;
+  min-height: 90px;
 }
-
 .widget-control-actions {
-	margin-top: 8px;
+  margin-top: 8px;
 }
-
 .widget-control-actions a {
-	text-decoration: none;
+  text-decoration: none;
 }
-
 .widget-control-actions a:hover {
-	text-decoration: underline;
+  text-decoration: underline;
 }
-
 .widget-control-actions div.alignleft {
-	margin-top: 6px;
+  margin-top: 6px;
 }
-
 div#sidebar-info {
-	padding: 0 1em;
-	margin-bottom: 1em;
-	font-size: 12px;
+  padding: 0 1em;
+  margin-bottom: 1em;
+  font-size: 12px;
 }
-
 .widget-title a,
 .widget-title a:hover {
-	text-decoration: none;
-	border-bottom: none;
+  text-decoration: none;
+  border-bottom: none;
 }
-
 .widget-control-edit {
-	display: block;
-	font-size: 12px;
-	font-weight: normal;
-	line-height: 26px;
-	padding: 0 8px 0 0;
-}
-
-a.widget-control-edit {
-	text-decoration: none;
+  display: block;
+  font-size: 12px;
+  font-weight: normal;
+  line-height: 26px;
+  padding: 0 8px 0 0;
 }
-
 .widget-control-edit .add,
 .widget-control-edit .edit {
-	display: none;
+  display: none;
+}
+a.widget-control-edit {
+  text-decoration: none;
 }
-
 #available-widgets .widget-control-edit .add,
 #widgets-right .widget-control-edit .edit,
 .inactive-sidebar .widget-control-edit .edit {
-	display: inline;
+  display: inline;
 }
-
 .editwidget {
-	margin: 0 auto 15px;
+  margin: 0 auto 15px;
 }
-
 .editwidget .widget-inside {
-	display: block;
-	padding: 10px;
+  display: block;
+  padding: 10px;
 }
-
 .inactive p.description {
-	margin: 5px 15px 10px;
+  margin: 5px 15px 10px;
 }
-
 #available-widgets p.description {
-	margin: 0 12px 12px;
+  margin: 0 12px 12px;
 }
-
 .widget-position {
-	margin-top: 8px;
+  margin-top: 8px;
 }
-
 .inactive {
-	padding-top: 2px;
+  padding-top: 2px;
 }
-
 .sidebar-name .spinner {
-	float: none;
-	margin: 0 3px -3px;
+  float: none;
+  margin: 0 3px -3px;
 }
-
 .sidebar-name-arrow {
-	float: right;
-	height: 29px;
-	width: 26px;
+  float: right;
+  height: 29px;
+  width: 26px;
 }
-
 .widget-title .in-widget-title {
-	font-size: 12px;
-	white-space: nowrap;
+  font-size: 12px;
+  white-space: nowrap;
 }
-
 #removing-widget {
-	display: none;
-	font-weight: normal;
-	padding-left: 15px;
-	font-size: 12px;
-	line-height: 1;
+  display: none;
+  padding-left: 15px;
+  font-size: 12px;
+  font-weight: normal;
+  line-height: 1;
 }
-
 .widget-control-noform,
 #access-off,
 .widgets_access .widget-action,
 .widgets_access .sidebar-name-arrow,
 .widgets_access #access-on,
 .widgets_access .widget-holder .description {
-	display: none;
+  display: none;
 }
-
 .widgets_access .widget-holder,
 .widgets_access #widget-list {
-	padding-top: 10px;
+  padding-top: 10px;
 }
-
 .widgets_access #access-off {
-	display: inline;
+  display: inline;
 }
-
 .widgets_access #wpbody-content .widget-title-action,
 .widgets_access #wpbody-content .widget-control-edit,
 .widgets_access .closed .widgets-sortables,
 .widgets_access .closed .widget-holder {
-	display: block;
+  display: block;
 }
-
 .widgets_access .closed .sidebar-name {
-	-webkit-border-bottom-right-radius: 0;
-	-webkit-border-bottom-left-radius: 0;
-	border-bottom-right-radius: 0;
-	border-bottom-left-radius: 0;
+  border-bottom-left-radius: 0;
+  border-bottom-right-radius: 0;
+  -moz-border-bottom-left-radius: 0;
+  -moz-border-bottom-right-radius: 0;
+  -webkit-border-bottom-left-radius: 0;
+  -webkit-border-bottom-right-radius: 0;
 }
-
 .widgets_access .sidebar-name,
 .widgets_access .widget .widget-top {
-	cursor: default;
-}
-
-/* Enable draggable on IE10 touch events until it's rolled into jQuery UI core */
-.ui-sortable,
-.ui-draggable {
-	-ms-touch-action: none;
+  cursor: default;
 }
-
 /* Accordion */
-
 .accordion-section {
-	border-top: 1px solid #fff;
-	border-bottom: 1px solid #dfdfdf;
-	margin: 0;
+  border-top: 1px solid #fff;
+  border-bottom: 1px solid #dfdfdf;
+  margin: 0;
 }
-
 .accordion-section:first-child {
-	border-top: 1px solid #dfdfdf;
+  border-top: 1px solid #dfdfdf;
 }
-
 .accordion-section:last-child {
-	box-shadow: 0 1px 0 0px #fff;
+  box-shadow: 0 1px 0 0px #fff;
 }
-
 .accordion-section.open .accordion-section-content,
 .no-js .accordion-section .accordion-section-content {
-	display: block;
+  display: block;
 }
-
 .accordion-section.open:hover {
-	border-bottom-color: #dfdfdf;
+  border-bottom-color: #dfdfdf;
 }
-
 .accordion-section-content {
-	display: none;
-	padding: 10px 20px 15px;
-	overflow: hidden;
-	background: #fdfdfd;
-	border-left: 1px solid #dfdfdf;
-	border-right: 1px solid #dfdfdf;
+  display: none;
+  padding: 10px 20px 15px;
+  overflow: hidden;
+  background: #fdfdfd;
+  border-left: 1px solid #dfdfdf;
+  border-right: 1px solid #dfdfdf;
 }
-
 .accordion-section-title {
-	margin: 0;
-	padding: 15px 20px;
-	position: relative;
-	border-left: 1px solid #dfdfdf;
-	border-right: 1px solid #dfdfdf;
-
-	-webkit-user-select: none;
-	-moz-user-select: none;
-	user-select: none;
+  margin: 0;
+  padding: 15px 20px;
+  position: relative;
+  border-left: 1px solid #dfdfdf;
+  border-right: 1px solid #dfdfdf;
+  -webkit-user-select: none;
+  -moz-user-select: none;
+  user-select: none;
 }
-
 .js .accordion-section-title {
-	cursor: pointer;
+  cursor: pointer;
 }
-
 .js .accordion-section-title:after {
-	content: '';
-	width: 0;
-	height: 0;
-	border-color: #ccc transparent;
-	border-style: solid;
-	border-width: 6px 6px 0;
-	position: absolute;
-	top: 25px;
-	right: 20px;
-	z-index: 1;
+  content: '';
+  width: 0;
+  height: 0;
+  border-color: #ccc transparent;
+  border-style: solid;
+  border-width: 6px 6px 0;
+  position: absolute;
+  top: 25px;
+  right: 20px;
+  z-index: 1;
 }
-
 .accordion-section-title:focus {
-	outline: none;
+  outline: none;
 }
-
 .accordion-section-title:hover:after,
 .accordion-section-title:focus:after {
-	border-color: #aaa transparent;
+  border-color: #aaa transparent;
 }
-
 .cannot-expand .accordion-section-title {
-	cursor: auto;
+  cursor: auto;
 }
-
 .cannot-expand .accordion-section-title:after {
-	display: none;
+  display: none;
 }
-
 .control-section .accordion-section-title {
-	padding: 10px 20px;
-	color: #464646;
-	font-size: 15px;
-	font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
-	font-weight: normal;
-	text-shadow: 0 1px 0 #fff;
-	background: #f5f5f5;
-	background-image: -webkit-gradient(linear, left bottom, left top, from(#eee), to(#f5f5f5));
-	background-image: -webkit-linear-gradient(bottom, #eee, #f5f5f5);
-	background-image:    -moz-linear-gradient(bottom, #eee, #f5f5f5);
-	background-image:      -o-linear-gradient(bottom, #eee, #f5f5f5);
-	background-image: linear-gradient(to top, #eee, #f5f5f5);
+  padding: 10px 20px;
+  color: #464646;
+  font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
+  font-size: 15px;
+  font-weight: normal;
+  line-height: 1;
+  text-shadow: 0 1px 0 #fff;
+  background: #f5f5f5;
+  background-image: -webkit-gradient(linear, left bottom, left top, from(#eeeeee), to(#f5f5f5));
+  background-image: -webkit-linear-gradient(bottom, #eeeeee, #f5f5f5);
+  background-image: -moz-linear-gradient(bottom, #eeeeee, #f5f5f5);
+  background-image: -o-linear-gradient(bottom, #eeeeee, #f5f5f5);
+  background-image: linear-gradient(to top, #eeeeee, #f5f5f5);
 }
-
 .control-section .accordion-section-title:after {
-	top: 15px;
+  top: 15px;
 }
-
 .js .control-section:hover .accordion-section-title,
 .js .control-section .accordion-section-title:hover,
 .js .control-section.open .accordion-section-title,
 .js .control-section .accordion-section-title:focus {
-	color: #000;
-	background: #f9f9f9;
-	background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
-	background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
-	background-image:    -moz-linear-gradient(bottom, #ececec, #f9f9f9);
-	background-image:      -o-linear-gradient(bottom, #ececec, #f9f9f9);
-	background-image: linear-gradient(to top, #ececec, #f9f9f9);
+  color: black;
+  background: #f9f9f9;
+  background-image: -webkit-gradient(linear, left bottom, left top, from(#ececec), to(#f9f9f9));
+  background-image: -webkit-linear-gradient(bottom, #ececec, #f9f9f9);
+  background-image: -moz-linear-gradient(bottom, #ececec, #f9f9f9);
+  background-image: -o-linear-gradient(bottom, #ececec, #f9f9f9);
+  background-image: linear-gradient(to top, #ececec, #f9f9f9);
 }
-
 .control-section.open .accordion-section-title {
-	border-bottom: 1px solid #dfdfdf;
+  border-bottom: 1px solid #dfdfdf;
 }
-
 /* =Media Queries
 -------------------------------------------------------------- */
-
 @media only screen and (max-width: 768px) {
-	/* categories */
-	#col-left {
-		width: 100%;
-	}
-
-	#col-right {
-		width: 100%;
-	}
+  /* categories */
+  #col-left {
+    width: 100%;
+  }
+  #col-right {
+    width: 100%;
+  }
 }
-
 @media only screen and (min-width: 769px) {
-	/* categories */
-	#col-left {
-		width: 35%;
-	}
-
-	#col-right {
-		width: 65%;
-	}
+  /* categories */
+  #col-left {
+    width: 35%;
+  }
+  #col-right {
+    width: 65%;
+  }
 }
-
 @media only screen and (max-width: 860px) {
-
-	/* categories */
-	#col-left {
-		width: 35%;
-	}
-
-	#col-right {
-		width: 65%;
-	}
+  /* categories */
+  #col-left {
+    width: 35%;
+  }
+  #col-right {
+    width: 65%;
+  }
 }
-
 @media only screen and (min-width: 980px) {
-
-	/* categories */
-	#col-left {
-		width: 35%;
-	}
-
-	#col-right {
-		width: 65%;
-	}
+  /* categories */
+  #col-left {
+    width: 35%;
+  }
+  #col-right {
+    width: 65%;
+  }
 }
-
 @media only screen and (max-width: 768px) {
-	/* categories */
-	#col-left {
-		width: 100%;
-	}
-
-	#col-right {
-		width: 100%;
-	}
-
-	.form-field input,
-	.form-field textarea {
-		width: 99%;
-	}
-
-	.form-wrap .form-field {
-		padding:0;
-	}
-
-	/* users */
-	#profile-page .form-table textarea {
-		max-width: 400px;
-		width: auto;
-	}
+  /* categories */
+  #col-left {
+    width: 100%;
+  }
+  #col-right {
+    width: 100%;
+  }
+  .form-field input,
+  .form-field textarea {
+    width: 99%;
+  }
+  .form-wrap .form-field {
+    padding: 0;
+  }
+  /* users */
+  #profile-page .form-table textarea {
+    max-width: 400px;
+    width: auto;
+  }
 }
-
 /**
  * HiDPI Displays
  */
-@media print,
-  (-o-min-device-pixel-ratio: 5/4),
-  (-webkit-min-device-pixel-ratio: 1.25),
-  (min-resolution: 120dpi) {
-
-	.press-this .tagchecklist span a {
-	 	background-image: url('../images/xit-2x.gif');
-	 	background-size: 20px auto;
-	 }
-
-	.js .postbox:hover .handlediv,
-	.js .stuffbox:hover .handlediv,
-	.widget-top a.widget-action {
-	 	background-image: url('../images/arrows-2x.png');
-	 	background-size: 15px 123px;
-	 }
-
-	.widget-top a.widget-action:hover {
-	 	background-image: url('../images/arrows-dark-2x.png');
-	 	background-size: 15px 123px;
-	}
-
-	.post-com-count {
-		background-image: url('../images/bubble_bg-2x.gif');
-		background-size: 18px 100px;
-	}
-
-	tr.wp-locked .locked-indicator  {
-		background-image: url('../images/lock-2x.png');
-		background-size: 16px 16px;
-	}
-
-	th .comment-grey-bubble {
-		background-image: url('../images/comment-grey-bubble-2x.png');
-		background-size: 12px 12px;
-	}
-
-	.sorting-indicator {
-		background-image: url('../images/sort-2x.gif?ver=20130102');
-		background-size: 14px 4px;
-	}
-
-	#content-resize-handle,
-	#post-body .wp_themeSkin .mceStatusbar a.mceResize {
-		background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
-		background-size: 11px 11px;
-	}
-
-	div.star-holder {
-		background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
-		background-size: 21px 37px;
-	}
-
-	div.star-holder .star-rating {
-		background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
-		background-size: 21px 37px;
-	}
-
-	.welcome-panel .welcome-panel-close:before {
-		background-image: url('../images/xit-2x.gif');
-		background-size: 20px auto;
-	}
-
-	.welcome-panel .welcome-icon {
-		background-image: url('../images/welcome-icons-2x.png');
-	}
-
-	.login h1 a {
-		background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
-		background-size: 274px 63px;
-	}
-
-	.wp-badge {
-		background-image: url('../images/wp-badge-2x.png?ver=20120516');
-		background-size: 173px 194px;
-	}
-
-	.wp-full-overlay .collapse-sidebar-arrow {
-	 	background-image: url('../images/arrows-2x.png');
-	 	background-size: 15px 123px;
-	 }
-
-	.pressthis a span {
-		background-image: url(../images/press-this-2x.png?v=20121105);
-	}
-
-	.imgedit-crop,
-	.imgedit-rleft,
-	.imgedit-rright,
-	.imgedit-flipv,
-	.imgedit-fliph,
-	.imgedit-undo,
-	.imgedit-redo {
-		background-image: url('../images/imgedit-icons-2x.png');
-		background-size: 260px 64px;
-	}
-
-	.spinner,
-	.imgedit-wait,
-	.customize-loading #customize-container {
-		background-image: url(../images/wpspin_light-2x.gif);
-	}
-
-	.wp-slider .ui-slider-handle:before {
-		background-image: url(../images/arrows-pr-2x.png);
-		background-size: 16px 102px;
-	}
-
+@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
+  .press-this .tagchecklist span a {
+    background-image: url('../images/xit-2x.gif');
+    background-size: 20px auto;
+  }
+  .js .postbox:hover .handlediv,
+  .js .stuffbox:hover .handlediv,
+  .widget-top a.widget-action {
+    background-image: url('../images/arrows-2x.png');
+    background-size: 15px 123px;
+  }
+  .widget-top a.widget-action:hover {
+    background-image: url('../images/arrows-dark-2x.png');
+    background-size: 15px 123px;
+  }
+  .post-com-count {
+    background-image: url('../images/bubble_bg-2x.gif');
+    background-size: 18px 100px;
+  }
+  tr.wp-locked .locked-indicator {
+    background-image: url('../images/lock-2x.png');
+    background-size: 16px 16px;
+  }
+  th .comment-grey-bubble {
+    background-image: url('../images/comment-grey-bubble-2x.png');
+    background-size: 12px 12px;
+  }
+  .sorting-indicator {
+    background-image: url('../images/sort-2x.gif?ver=20130102');
+    background-size: 14px 4px;
+  }
+  #content-resize-handle,
+  #post-body .wp_themeSkin .mceStatusbar a.mceResize {
+    background: transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;
+    background-size: 11px 11px;
+  }
+  div.star-holder {
+    background: url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;
+    background-size: 21px 37px;
+  }
+  div.star-holder .star-rating {
+    background: url('../images/stars-2x.png?ver=20121108') repeat-x top left;
+    background-size: 21px 37px;
+  }
+  .welcome-panel .welcome-panel-close:before {
+    background-image: url('../images/xit-2x.gif');
+    background-size: 20px auto;
+  }
+  .welcome-panel .welcome-icon {
+    background-image: url('../images/welcome-icons-2x.png');
+  }
+  .login h1 a {
+    background-image: url('../images/wordpress-logo-2x.png?ver=20120412');
+    background-size: 274px 63px;
+  }
+  .wp-badge {
+    background-image: url('../images/wp-badge-2x.png?ver=20120516');
+    background-size: 173px 194px;
+  }
+  .wp-full-overlay .collapse-sidebar-arrow {
+    background-image: url('../images/arrows-2x.png');
+    background-size: 15px 123px;
+  }
+  .pressthis a span {
+    background-image: url(../images/press-this-2x.png?v=20121105);
+  }
+  .imgedit-crop,
+  .imgedit-rleft,
+  .imgedit-rright,
+  .imgedit-flipv,
+  .imgedit-fliph,
+  .imgedit-undo,
+  .imgedit-redo {
+    background-image: url('../images/imgedit-icons-2x.png');
+    background-size: 260px 64px;
+  }
+  .spinner,
+  .imgedit-wait,
+  .customize-loading #customize-container {
+    background-image: url(../images/wpspin_light-2x.gif);
+  }
+  .wp-slider .ui-slider-handle:before {
+    background-image: url(../images/arrows-pr-2x.png);
+    background-size: 16px 102px;
+  }
 }
-
 /* =Localized CSS
 -------------------------------------------------------------- */
-
 /* zh_CN: Remove italic properties. */
 .locale-zh-cn .howto,
 .locale-zh-cn .tablenav .displaying-num,
@@ -9413,47 +7950,62 @@ a.widget-control-edit {
 .locale-zh-cn p.description,
 .locale-zh-cn span.description,
 .locale-zh-cn .form-wrap p {
-	font-style: normal;
+  font-style: normal;
 }
-
 /* zh_CN: Enlarge dashboard widget 'Configure' link */
-.locale-zh-cn .hdnle a { font-size: 12px; }
-
+.locale-zh-cn .hdnle a {
+  font-size: 12px;
+}
 /* zn_CH: Enlarge font size, set font-size: normal */
-.locale-zh-cn form.upgrade .hint { font-style: normal; font-size: 100%; }
-
+.locale-zh-cn form.upgrade .hint {
+  font-style: normal;
+  font-size: 100%;
+}
 /* Zn_CH: Distraction free writing.
  *  More beautiful font for "Just write."
  *  Larger text for HTML/Visual mode.
  */
-.locale-zh-cn #wp-fullscreen-tagline { font-family: KaiTi, "楷体", sans-serif; }
-.locale-zh-cn #wp-fullscreen-modes a { font-size: 12px; }
-
+.locale-zh-cn #wp-fullscreen-tagline {
+  font-family: KaiTi, "楷体", sans-serif;
+}
+.locale-zh-cn #wp-fullscreen-modes a {
+  font-size: 12px;
+}
 /* zh_CN: Enlarge font-size. */
-.locale-zh-cn #sort-buttons { font-size: 1em !important; }
-
+.locale-zh-cn #sort-buttons {
+  font-size: 1em !important;
+}
 /* ru_RU: Text needs more room to breathe. */
 .locale-ru-ru .inline-edit-row fieldset label span.title {
-	width: auto; /* default 5em */
-	min-width: 5em;
+  width: auto;
+  /* default 5em */
+
+  min-width: 5em;
 }
 .locale-ru-ru.press-this .posting {
-	margin-right: 257px; /* default 212px + 45px */
+  margin-right: 257px;
+  /* default 212px + 45px */
+
 }
-.locale-ru-ru.press-this #photo-add-url-div input[type="text"]  {
-	width: 255px; /* default 300px - 45px */
+.locale-ru-ru.press-this #photo-add-url-div input[type="text"] {
+  width: 255px;
+  /* default 300px - 45px */
+
 }
 .locale-ru-ru.press-this #side-sortables {
-	width: 245px; /* default 200px + 45px */
+  width: 245px;
+  /* default 200px + 45px */
+
 }
 .locale-ru-ru #customize-header-actions .button {
-	padding: 0 8px 1px; /* default 0 10px 1px; */
-}
+  padding: 0 8px 1px;
+  /* default 0 10px 1px; */
 
+}
 /* lt_LT: QuickEdit */
 .locale-lt-lt .inline-edit-row fieldset label span.title {
-	width: 8em;
+  width: 8em;
 }
 .locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap {
-	margin-left: 8em;
+  margin-left: 8em;
 }
diff --git a/wp-admin/css/wp-admin.min.css b/wp-admin/css/wp-admin.min.css
index 81dcd97..da41cc2 100644
--- a/wp-admin/css/wp-admin.min.css
+++ b/wp-admin/css/wp-admin.min.css
@@ -1 +1 @@
-#wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:165px}.folded #wpcontent,.folded #wpfooter{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-21px;height:auto;width:auto;display:block;font-size:14px;font-weight:bold;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;border-radius:3px;z-index:100000;line-height:normal;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);text-decoration:none}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js,.js.wp-core-ui .hide-if-js,.js .wp-core-ui .hide-if-js,.no-js.wp-core-ui .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select,button{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],select,textarea,div{outline:0}a:focus,a:active{outline:thin dotted}#adminmenu a:focus,#adminmenu a:active,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{-webkit-border-radius:3px;border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat.media .check-column{padding-top:8px}.widefat thead .check-column,.widefat tfoot .check-column{padding:10px 0 0}.no-js .widefat thead .check-column input,.no-js .widefat tfoot .check-column input{display:none}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}html,.wp-dialog{background-color:#fff}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{background-color:#fff;color:#333}select{color:#000}select[disabled]{color:#7f7f7f}select:focus{border-color:#aaa}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);box-shadow:1px 1px 2px rgba(0,0,0,0.1)}input[readonly]{background-color:#eee}:-moz-placeholder,.wp-core-ui :-moz-placeholder{color:#a9a9a9}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input[type="number"].small-text{width:60px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #delete_all,.tablenav #clear-recent-list{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:left;height:2em;margin:0 4px 0 0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-focus{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-loading,.ajax-feedback,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto}#screen-meta .screen-reader-text{visibility:hidden}#screen-meta-links{margin:0 24px 0 0}#screen-meta-links a:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.4);box-shadow:1px 1px 1px rgba(0,0,0,0.4);outline:0}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs .columns-prefs label input{margin:0 2px}.metabox-prefs label a{display:none}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:28px;position:relative}#adminmenu .wp-submenu{list-style:none;padding:4px 0;margin:0;position:absolute;top:-1000em;left:146px;z-index:1000;overflow:visible;border-width:1px;border-style:solid;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.js #adminmenu .sub-open,.js #adminmenu .opensub .wp-submenu,#adminmenu a.menu-top:focus+.wp-submenu,.no-js li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,.no-js li.wp-has-current-submenu:hover .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:-1px;left:32px}.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}#adminmenu .wp-submenu a{font-size:12px;line-height:18px;margin:0;padding-left:12px}#adminmenu .wp-not-current-submenu li>a{padding-left:16px}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;font-weight:bold;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu a.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{padding:7px 0 0 7px;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:5px}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:28px}.wp-menu-arrow{z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu .wp-menu-arrow div{display:none;position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid;top:0}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,#adminmenu li.wp-has-submenu .wp-menu-arrow div,#adminmenu li.current .wp-menu-arrow div,.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,#adminmenu a:hover .wp-menu-arrow{display:block}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-menu-open .wp-menu-arrow{top:0}.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}.wp-menu-arrow,.folded #adminmenu li .wp-menu-arrow div,.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current .wp-menu-arrow,.folded #adminmenu li.current .wp-menu-arrow div,.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.folded #adminmenu li.wp-menu-open .wp-menu-arrow,.folded #adminmenu li a:focus .wp-menu-arrow{display:block}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 4px 5px 10px;margin:-4px -1px 4px;border-width:1px 0;border-style:solid;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}.folded #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;line-height:17px;font-weight:bold;margin-top:1px;margin-left:7px;-webkit-border-radius:10px;border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px;border-width:1px 0 0;border-style:solid}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;-webkit-border-radius:10px;border-radius:10px}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:52px}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap,.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top{width:32px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu{top:-1px;left:32px}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:28px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}.auto-fold #adminmenu li .wp-menu-arrow div{display:none}.auto-fold #adminmenu li.current .wp-menu-arrow,.auto-fold #adminmenu li.current .wp-menu-arrow div,.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,.auto-fold #adminmenu li a:focus .wp-menu-arrow{display:block}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold #collapse-menu span{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{background-image:url('../images/bubble_bg.gif');height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;height:1.4em;line-height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;-webkit-border-radius:5px;border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble.png');background-repeat:no-repeat;height:12px;width:12px}html.wp-toolbar{padding-top:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#post-body-content{width:100%;float:left}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.js .postbox .hndle{cursor:move}.postbox.closed .hndle{-webkit-border-radius:3px;border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .widget .widget-top,.js .postbox h3{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}.welcome-panel{position:relative;overflow:auto;margin:20px 0;padding:23px 10px 12px;border-width:1px;border-style:solid;border-radius:3px;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:normal;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:13px}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:8px 3px;font-size:13px;text-decoration:none;line-height:1}.welcome-panel .welcome-panel-close:before{content:' ';position:absolute;left:-12px;width:10px;height:100%;background:url('../images/xit.gif') 0 17% no-repeat}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel-column p{margin-top:7px}.welcome-panel .welcome-icon{display:block;padding:2px 0 8px 32px;background-image:url('../images/welcome-icons.png');background-repeat:no-repeat;background-size:16px}.welcome-panel .welcome-add-page{background-position:0 2px}.welcome-panel .welcome-edit-page{background-position:0 -90px}.welcome-panel .welcome-learn-more{background-position:0 -136px}.welcome-panel .welcome-comments{background-position:0 -182px}.welcome-panel .welcome-view-site{background-position:0 -274px}.welcome-panel .welcome-widgets-menus{background-position:1px -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:0 -44px}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}.welcome-panel .welcome-icon{padding-left:25px}}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-posts,.fixed .column-date,.fixed .column-parent,.fixed .column-links,.fixed .column-author,.fixed .column-format{width:10%}.fixed .column-response,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url('../images/sort.gif');background-repeat:no-repeat}tr.wp-locked .locked-indicator{background:url('../images/lock.png') no-repeat;margin:-2px 0 0 6px;height:20px;width:16px}tr.wp-locked .check-column label,tr.wp-locked .check-column input[type="checkbox"],tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{height:auto;opacity:1}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity 500ms;-moz-transition:height 1s,opacity 500ms;-ms-transition:height 1s,opacity 500ms;-o-transition:height 1s,opacity 500ms;transition:height 1s,opacity 500ms}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}.inline-edit-row h4{text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{font-style:italic;line-height:1.8em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a,#show-comments .spinner{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}.rtl #lost-connection-notice .spinner{float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:5px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:1px 0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#wp-fullscreen-title-prompt-text{padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding-right:6px}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li{border-style:solid;border-width:1px;position:relative}ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 1px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#content-resize-handle{background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;position:absolute;right:2px;height:19px}.press-this #content-resize-handle{bottom:2px}.tmce-active #content-resize-handle{display:none}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left center;padding:2px 0 1px 20px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.5;filter:alpha(opacity=50);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saving .locked-saving,#post-lock-dialog.saved .locked-saved{display:inline}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select,#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type="checkbox"]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;padding-bottom:10px}.revisions-tickmarks{position:relative;margin:0 auto;height:.8em;top:7px;max-width:70%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div{position:absolute;height:100%;border-style:solid;border-width:0 1px 0 0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:15px}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-previous,.comparing-two-revisions .revisions-next,.revisions-meta .diff-meta-to strong{display:none}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:bold}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions-previous,.revisions-next{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.post-revisions li img,#revisions-meta-restored img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap;word-wrap:break-word}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.diffsplit.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.diff-meta{-webkit-border-radius:3px;border-radius:3px;padding:5px;clear:both;min-height:32px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);tranform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions-tooltip,.revisions-tooltip-arrow>span{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border-width:1px;border-style:solid;border-radius:3px;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{position:absolute;z-index:2;margin-top:-3px;width:19px;height:19px;border-width:1px;border-style:solid;border-radius:50%}.wp-slider .ui-slider-handle:before{content:"";position:absolute;top:6px;left:3px;height:8px;width:13px;background:url(../images/arrows-pr.png) no-repeat -2px -47px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -84px;left:7px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -65px;left:5px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.8em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-.25em;margin-left:-.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}a.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:16px;width:16px;margin-right:5px;background-repeat:no-repeat;text-indent:-999em}#post-formats-select{line-height:2em}label.post-format-icon{margin-left:5px;padding:2px 0 2px 21px}.post-format-icon.post-format-standard{background-position:0 0}.post-format-icon.post-format-image{background-position:0 -32px}.post-format-icon.post-format-gallery{background-position:0 -64px}.post-format-icon.post-format-audio{background-position:0 -96px}.post-format-icon.post-format-video{background-position:0 -128px}.post-format-icon.post-format-chat{background-position:0 -160px}.post-format-icon.post-format-status{background-position:0 -192px}.post-format-icon.post-format-aside{background-position:0 -224px}.post-format-icon.post-format-quote{background-position:0 -256px}.post-format-icon.post-format-link{background-position:0 -288px}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border-style:solid;border-width:1px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}p.popular-tags{-webkit-border-radius:8px;border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item.media-blank .describe{border:0}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.media-item .describe .align th{padding-top:0}.media-item .media-item-info tr{background-color:transparent}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-weight:bold;margin:.5em;font-size:13px}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f7f7f7));background-image:-webkit-linear-gradient(bottom,#fff,#f7f7f7);background-image:-moz-linear-gradient(bottom,#fff,#f7f7f7);background-image:-o-linear-gradient(bottom,#fff,#f7f7f7);background-image:linear-gradient(to top,#fff,#f7f7f7);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background-color:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9);-webkit-border-radius:3px;border-radius:3px;-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:#000;opacity:.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;-webkit-border-radius:6px;border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;-webkit-border-radius:3px;border-radius:3px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table td p{margin-top:4px}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table .color-palette td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-webkit-box-shadow:none;box-shadow:none}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.spam-undo-inside .avatar,.trash-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.commentlist .avatar{vertical-align:text-top}.theme-install-php .tablenav{height:auto}.theme-install-php .spinner{margin-top:9px}h3.available-themes{margin:.3em 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}.available-theme a.screenshot:focus{border-color:#777}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}.available-theme .action-links li{padding-right:8px;margin-right:8px}.ie8 .available-theme .action-links li{padding-right:7px;margin-right:7px}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:#fff;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom-width:1px;border-bottom-style:solid;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.folded .available-theme,.folded .available-theme .screenshot{width:300px}.folded .available-theme .screenshot{height:225px}.folded #current-theme img{width:300px}.folded #current-theme.has-screenshot{padding-left:330px}.folded #current-theme img{margin-left:-330px}}@media only screen and (max-width:1079px){.folded .available-theme,.folded .available-theme .screenshot{width:270px}.folded .available-theme .screenshot{height:203px}.folded #current-theme img{width:270px}.folded #current-theme.has-screenshot{padding-left:300px}.folded #current-theme img{margin-left:-300px}}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.nav-tab-active{border-width:1px;color:#464646}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-width:1px;border-bottom-style:solid;padding-bottom:0}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.plugins .desc p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}.plugin-update-tr td{border-top:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}.pressthis{margin:20px 0}.pressthis a,.pressthis a:hover,.pressthis a:focus,.pressthis a:active{display:inline-block;position:relative;cursor:move;color:#333;background:#e6e6e6;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(7%,#e6e6e6),color-stop(77%,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(to top,#e6e6e6 7%,#d8d8d8 77%);-webkit-border-radius:5px;border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;background-size:24px 20px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);box-shadow:0 10px 8px rgba(0,0,0,0.6)}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#wpfooter p{margin:0;line-height:20px}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-text,.about-description,.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-weight:normal;line-height:1.6em;font-size:20px}.about-description{margin-top:1.4em}.about-text{margin:1em 200px 1.4em 0;min-height:60px;font-size:24px}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap code{font-size:14px}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.wp-badge{padding-top:142px;height:50px;width:173px;font-weight:bold;font-size:14px;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section img,.about-wrap .feature-section .video{border:0;margin:0 1.94% 10px 0;-webkit-border-radius:3px;border-radius:3px}.about-wrap .feature-section .video video{max-width:100%}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{float:right;margin:0 5px 12px 2em}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 2em 12px 5px}.about-wrap .feature-section .image-100{margin:0 0 2em 0;width:100%}.about-wrap .feature-section .image-66{width:65%}.about-wrap .feature-section .image-66.video{max-width:600px}.about-wrap .feature-section .image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .images-stagger-right img.image-30:nth-child(2){margin-left:1em}.about-wrap .feature-section.col{margin-bottom:0}.about-wrap .feature-section.col h4{margin:0 0 .6em 0}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .feature-section.two-col div{width:47%;margin-right:4.999999999%;float:left}.about-wrap .feature-section.three-col div{width:30%;margin-right:4.999999999%;float:left}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}@media only screen and (max-width:900px){.about-wrap .feature-section.images-stagger-left img,.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{clear:both}.about-wrap .feature-section .video.image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .video.image-66{margin-left:3px}}@media only screen and (max-width:768px){.about-wrap .feature-section .image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .image-66{margin-left:3px}.about-wrap .feature-section.images-stagger-left .image-66{margin-right:3px}}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap ul.compact{margin-bottom:0}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}.about-wrap ul.compact li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay-sidebar{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0}.wp-full-overlay-sidebar .wp-full-overlay-header{border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay-sidebar-content .accordion-section:first-child{border-top:1px solid #fff}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;text-decoration:none}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat -1px -73px}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.no-customize-support .hide-if-no-customize,.customize-support .hide-if-customize,.no-customize-support.wp-core-ui .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize,.customize-support.wp-core-ui .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container iframe{opacity:0}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center;background-size:16px 16px}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#customize-container .collapse-sidebar{bottom:16px}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:15px;font-weight:normal;padding:7px 10px;margin:0;line-height:1}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,#poststuff .inside #page_template{max-width:100%}.inline-edit-row #post_parent,.inline-edit-row select[name="page_template"]{max-width:80%}.ie8 #poststuff .inside #parent_id,.ie8 #poststuff .inside #page_template,.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name="page_template"]{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers td{padding-right:14px}.importers{font-size:16px;width:auto}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:30px}#dashboard-widgets h4{font-weight:normal;font-size:13px;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}.no-js #dashboard_quick_press{display:none}#dashboard_quick_press .easy-blogging{padding:0 8px;text-align:left}#dashboard_quick_press .input-text-wrap{position:relative}#dashboard_quick_press .prompt{color:#bbb;position:absolute}#dashboard_quick_press div.updated{padding:0 5px}#title-wrap label,#tags-input-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#tags-input-wrap #tags-input{outline:0}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input-prompt-text{font-size:1em;padding:4px 8px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 0}#dashboard_quick_press .wp-media-buttons{margin:0 0 .2em 1px;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 .7em 0 1px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{vertical-align:middle;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}a.rsswidget{font-size:13px;line-height:1.7em}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-weight:normal;font-size:13px;margin:0;display:inline;line-height:1.4em}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold}#dashboard_browser_nag a{text-decoration:underline}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:#fff}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;background:transparent none;color:#fff;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag a{color:#fff}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}.login *{margin:0;padding:0}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{font-weight:normal;float:left;margin-bottom:0}.login .button-primary{float:right}#login form p{margin-bottom:0}#login form p.submit{padding:0}.login label{color:#777;font-size:14px}.login form .forgetmenot label{font-size:12px;line-height:19px}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;outline:0;overflow:hidden;padding-bottom:15px;display:block}#login{width:320px;padding:114px 0 0;margin:auto}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}#backtoblog{padding:12px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}.mobile #login{padding:20px 0}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}.no-js #message{display:block}#nav-menu-meta ul.outer-border{-webkit-border-radius:3px;border-radius:3px}.accordion-section ul.category-tabs,.accordion-section ul.add-menu-item-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .postbox,.metabox-holder-disabled .accordion-section-content{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{font-style:italic;font-weight:normal;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;-webkit-border-radius:3px;border-radius:3px}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:0 0 10px}.menu-settings{margin-top:2em;overflow:hidden}.menu-settings dl{margin:0 0 10px;overflow:hidden;position:relative}.menu-settings dd{float:left;margin:0;width:60%}.menu-edit .checkbox-input{margin-top:4px}.theme-location-set{font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid;margin-bottom:13px}#nav-menu-header .menu-name-label{margin-top:2px}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-edit-menu-link,.locations-add-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input,.accordion-container .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}#nav-menu-meta .accordion-container .top{border-top:1px solid #dfdfdf}#nav-menu-meta .accordion-container .accordion-section:first-child,#nav-menu-meta .accordion-container .accordion-section:first-child h3,#nav-menu-meta .accordion-container .top,#nav-menu-meta .accordion-container .top h3{-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}#nav-menu-meta .accordion-container .accordion-section:last-child,#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,#nav-menu-meta .accordion-container .bottom,#nav-menu-meta .accordion-container .bottom:not(.open) h3{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button.right,.button-secondary.right,.button-primary.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}#menu-to-edit{margin:0;padding:.1em 0}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#f6c9cc;background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(to top,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:2px 0 1px}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20121108') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20121108') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-top-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}img{border:0}.press-this #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.press-this #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.press-this #wphead h1{font-weight:normal;font-size:16px;line-height:32px;margin:0;float:left}.press-this #wphead h1 a{text-decoration:none}.press-this #wphead h1 a:hover{text-decoration:underline}.press-this #message{margin:10px 0}.press-this-sidebar{float:right;width:200px;padding-top:10px}.press-this #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.press-this .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.press-this #titlediv{margin:0}.press-this .wp-media-buttons{cursor:default;padding:8px 8px 0}.press-this .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.press-this #poststuff{margin:0 10px 10px;padding:0}.press-this #photo-add-url-div input[type="text"]{width:220px}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}.press-this .inner-sidebar{width:200px}.press-this .inner-sidebar .sleeve{padding-top:5px}.press-this #submitdiv p{margin:0;padding:6px}.press-this #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.press-this #publish{float:right}.press-this #poststuff h2,.press-this #poststuff h3{font-size:14px;line-height:1}.press-this #tagsdiv-post_tag h3,.press-this #categorydiv h3{cursor:pointer}.press-this #submitdiv h3{cursor:default}h3.tb{text-shadow:0 1px 0 #fff;font-weight:bold;font-size:12px;margin-left:5px}#TB_window{border:1px solid #333}.press-this .postbox,.press-this .stuffbox{margin-bottom:10px;min-width:0}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}.press-this .actions{float:right;margin:-19px 0 0}.press-this #extra-fields .actions{margin:-32px -7px 0 0}.press-this .actions li{float:left;list-style:none;margin-right:10px}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:#000;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}.press-this .categorydiv div.tabs-panel{height:100px}.press-this .tagsdiv .newtag{width:120px}.press-this #content{margin:5px 0;padding:0 5px;border:0 none;height:345px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}.press-this #publishing-actions .spinner{display:inline;vertical-align:middle}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline-block;vertical-align:top;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;display:inline-block}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}div.sidebar-name{font-size:13px;border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px}.js .sidebar-name{cursor:pointer}.js .closed .sidebar-name{-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;display:inline-block;vertical-align:top}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:27px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;height:26px;overflow:hidden}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;padding-bottom:.2em;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}a.widget-control-edit{text-decoration:none}.widget-control-edit .add,.widget-control-edit .edit{display:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name .spinner{float:none;margin:0 3px -3px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;font-weight:normal;padding-left:15px;font-size:12px;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{-webkit-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.ui-sortable,.ui-draggable{-ms-touch-action:none}.accordion-section{border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;margin:0}.accordion-section:first-child{border-top:1px solid #dfdfdf}.accordion-section:last-child{box-shadow:0 1px 0 0 #fff}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fdfdfd;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf}.accordion-section-title{margin:0;padding:15px 20px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;top:25px;right:20px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:hover:after,.accordion-section-title:focus:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{padding:10px 20px;color:#464646;font-size:15px;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-weight:normal;text-shadow:0 1px 0 #fff;background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#f5f5f5));background-image:-webkit-linear-gradient(bottom,#eee,#f5f5f5);background-image:-moz-linear-gradient(bottom,#eee,#f5f5f5);background-image:-o-linear-gradient(bottom,#eee,#f5f5f5);background-image:linear-gradient(to top,#eee,#f5f5f5)}.control-section .accordion-section-title:after{top:15px}.js .control-section:hover .accordion-section-title,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section .accordion-section-title:focus{color:#000;background:#f9f9f9;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.press-this .tagchecklist span a{background-image:url('../images/xit-2x.gif');background-size:20px auto}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv,.widget-top a.widget-action{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.widget-top a.widget-action:hover{background-image:url('../images/arrows-dark-2x.png');background-size:15px 123px}.post-com-count{background-image:url('../images/bubble_bg-2x.gif');background-size:18px 100px}tr.wp-locked .locked-indicator{background-image:url('../images/lock-2x.png');background-size:16px 16px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble-2x.png');background-size:12px 12px}.sorting-indicator{background-image:url('../images/sort-2x.gif?ver=20130102');background-size:14px 4px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;background-size:11px 11px}div.star-holder{background:url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;background-size:21px 37px}div.star-holder .star-rating{background:url('../images/stars-2x.png?ver=20121108') repeat-x top left;background-size:21px 37px}.welcome-panel .welcome-panel-close:before{background-image:url('../images/xit-2x.gif');background-size:20px auto}.welcome-panel .welcome-icon{background-image:url('../images/welcome-icons-2x.png')}.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.pressthis a span{background-image:url(../images/press-this-2x.png?v=20121105)}.imgedit-crop,.imgedit-rleft,.imgedit-rright,.imgedit-flipv,.imgedit-fliph,.imgedit-undo,.imgedit-redo{background-image:url('../images/imgedit-icons-2x.png');background-size:260px 64px}.spinner,.imgedit-wait,.customize-loading #customize-container{background-image:url(../images/wpspin_light-2x.gif)}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-ru-ru #customize-header-actions .button{padding:0 8px 1px}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}
\ No newline at end of file
+#wpwrap{height:auto;min-height:100%;width:100%;position:relative}#wpcontent{height:100%}#wpcontent,#wpfooter{margin-left:165px}.folded #wpcontent,.folded #wpfooter{margin-left:52px}#wpbody-content{padding-bottom:65px;float:left;width:100%}#adminmenuback,#adminmenuwrap,#adminmenu,#adminmenu .wp-submenu{width:145px}#adminmenuback{position:absolute;top:0;bottom:0;z-index:-1}#adminmenu{clear:left;margin:0;padding:0;list-style:none}.folded #adminmenuback,.folded #adminmenuwrap,.folded #adminmenu,.folded #adminmenu li.menu-top{width:32px}.inner-sidebar{float:right;clear:right;display:none;width:281px;position:relative}.columns-2 .inner-sidebar{margin-right:auto;width:286px;display:block}.inner-sidebar #side-sortables,.columns-2 .inner-sidebar #side-sortables{min-height:300px;width:280px;padding:0}.has-right-sidebar .inner-sidebar{display:block}.has-right-sidebar #post-body{float:left;clear:left;width:100%;margin-right:-2000px}.has-right-sidebar #post-body-content{margin-right:300px;float:none;width:auto}#col-container,#col-left,#col-right{overflow:hidden;padding:0;margin:0}#col-left{width:35%}#col-right{float:right;clear:right;width:65%}.col-wrap{padding:0 7px}.alignleft{float:left}.alignright{float:right}.textleft{text-align:left}.textright{text-align:right}.clear{clear:both}.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{position:absolute;left:-1000em;top:-1000em;height:1px;width:1px;overflow:hidden}.screen-reader-shortcut{position:absolute;top:-1000em}.screen-reader-shortcut:focus{left:6px;top:-21px;height:auto;width:auto;display:block;font-size:14px;font-weight:bold;line-height:normal;padding:15px 23px 14px;background:#f1f1f1;color:#21759b;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;z-index:100000;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,0.6);box-shadow:0 0 2px 2px rgba(0,0,0,0.6);text-decoration:none}.hidden,.js .closed .inside,.js .hide-if-js,.no-js .hide-if-no-js,.js.wp-core-ui .hide-if-js,.js .wp-core-ui .hide-if-js,.no-js.wp-core-ui .hide-if-no-js,.no-js .wp-core-ui .hide-if-no-js{display:none}input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],textarea{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}input[type="checkbox"],input[type="radio"]{vertical-align:text-top;padding:0;margin:1px 0 0}input[type="search"]{-webkit-appearance:textfield}input[type="search"]::-webkit-search-decoration{display:none}html,body{height:100%;margin:0;padding:0}body{font-family:sans-serif;font-size:12px;line-height:1.4em;min-width:600px}body.iframe{min-width:0;padding-top:1px}body.login{background:#fbfbfb;min-width:0}iframe,img{border:0}td,textarea,input,select,button{font-family:inherit;font-size:inherit;font-weight:inherit}td,textarea{line-height:inherit}input,select{line-height:15px}a,input[type="text"],input[type="password"],input[type="number"],input[type="search"],input[type="email"],input[type="url"],select,textarea,div{outline:0}a:focus,a:active{outline:thin dotted}#adminmenu a:focus,#adminmenu a:active,.screen-reader-text:focus{outline:0}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}p{margin:1em 0}blockquote{margin:1em}label{cursor:pointer}li,dd{margin-bottom:6px}textarea,input,select{margin:1px;padding:3px}h1,h2,h3,h4,h5,h6{display:block;font-weight:bold}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}ul,ol{padding:0}ul{list-style:none}ol{list-style-type:decimal;margin-left:2em}ul.ul-disc{list-style:disc outside}ul.ul-square{list-style:square outside}ol.ol-decimal{list-style:decimal outside}ul.ul-disc,ul.ul-square,ol.ol-decimal{margin-left:1.8em}ul.ul-disc>li,ul.ul-square>li,ol.ol-decimal>li{margin:0 0 .5em}.code,code{font-family:Consolas,Monaco,monospace}kbd,code{padding:1px 3px;margin:0 1px;font-size:11px}.subsubsub{list-style:none;margin:8px 0 5px;padding:0;font-size:12px;float:left}.subsubsub a{line-height:2;padding:.2em;text-decoration:none}.subsubsub a .count,.subsubsub a.current .count{color:#999;font-weight:normal}.subsubsub a.current{font-weight:bold;border:0}.subsubsub li{display:inline-block;margin:0;padding:0;white-space:nowrap}.widefat,div.updated,div.error,.wrap .add-new-h2,textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select,.tablenav .tablenav-pages a,.tablenav-pages span.current,#titlediv #title,.postbox,#postcustomstuff table,#postcustomstuff input,#postcustomstuff textarea,.imgedit-menu div,.plugin-update-tr .update-message,#poststuff .inside .the-tagcloud,.login form,#login_error,.login .message,#menu-management .menu-edit,.nav-menus-php .list-container,.menu-item-handle,.link-to-original,.nav-menus-php .major-publishing-actions .form-invalid,.press-this #message,#TB_window,.tbtitle,.highlight,.feature-filter,#widget-list .widget-top,.editwidget .widget-inside{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;border-width:1px;border-style:solid}.widefat{border-spacing:0;width:100%;clear:both;margin:0}.widefat *{word-wrap:break-word}.widefat a{text-decoration:none}.widefat thead th:first-of-type{-moz-border-top-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}.widefat thead th:last-of-type{-moz-border-top-right-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}.widefat tfoot th:first-of-type{-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.widefat tfoot th:last-of-type{-moz-border-bottom-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px}.widefat td,.widefat th{border-width:1px 0;border-style:solid}.widefat tfoot th{border-bottom:0}.widefat .no-items td{border-bottom-width:0}.widefat td{font-size:12px;padding:4px 7px 2px;vertical-align:top}.widefat td p,.widefat td ol,.widefat td ul{font-size:12px}.widefat th{padding:7px 7px 8px;text-align:left;line-height:1.3em;font-size:14px}.widefat th input{margin:0 0 0 8px;padding:0;vertical-align:text-top}.widefat .check-column{width:2.2em;padding:6px 0 25px;vertical-align:top}.widefat tbody th.check-column{padding:9px 0 22px}.widefat.media .check-column{padding-top:8px}.widefat thead .check-column,.widefat tfoot .check-column{padding:10px 0 0}.no-js .widefat thead .check-column input,.no-js .widefat tfoot .check-column input{display:none}.widefat .num,.column-comments,.column-links,.column-posts{text-align:center}.widefat th#comments{vertical-align:middle}.wrap{margin:4px 15px 0 0}div.updated,div.error{padding:0 .6em;margin:5px 15px 2px}div.updated p,div.error p{margin:.5em 0;padding:2px}.wrap div.updated,.wrap div.error,.media-upload-form div.error{margin:5px 0 15px}.wrap h2,.subtitle{font-weight:normal;margin:0;text-shadow:#fff 0 1px 0}.wrap h2{font-size:23px;padding:9px 15px 4px 0;line-height:29px}.subtitle{font-size:14px;padding-left:25px}.wrap .add-new-h2{font-family:sans-serif;margin-left:4px;padding:3px 8px;position:relative;top:-3px;text-decoration:none;font-size:12px;border:0 none}.wrap h2.long-header{padding-right:0}html,.wp-dialog{background-color:white}textarea,input[type="text"],input[type="password"],input[type="file"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="url"],select{background-color:white;color:#333}select{color:black}select[disabled]{color:#7f7f7f}select:focus{border-color:#aaa}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="file"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="url"]:focus,select:focus{-webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.1);box-shadow:1px 1px 2px rgba(0,0,0,0.1)}input[readonly]{background-color:#eee}:-moz-placeholder,.wp-core-ui :-moz-placeholder{color:#a9a9a9}.postbox .spinner{display:none;vertical-align:middle}.button-controls{clear:both;margin:10px 0}.show-all,.hide-all{cursor:pointer}.hide-all{display:none}img{border:0}div.sidebar-name h3,#menu-management .nav-tab,#dashboard_plugins h5,a.rsswidget,#dashboard_right_now td.b,#dashboard-widgets h4,.tool-box .title,#poststuff h3,.metabox-holder h3,.pressthis a,#your-profile legend,.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title,.tablenav .displaying-num,.widefat th,.quicktags,.search{font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif}h2 .nav-tab,.wrap h2,.subtitle,.login form .input{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif}.quicktags,.search{font-size:12px}.icon32{float:left;height:34px;margin:7px 8px 0 0;width:36px}.icon16{height:18px;width:18px;padding:6px 6px;margin:-6px 0 0 -8px;float:left}.key-labels label{line-height:24px}.pre{white-space:pre-wrap;word-wrap:break-word}.howto{font-style:italic;display:block;font-family:sans-serif}p.install-help{margin:8px 0;font-style:italic}.no-break{white-space:nowrap}.wp-admin select{padding:2px;height:2em}.wp-admin select[multiple]{height:auto}.submit{padding:1.5em 0;margin:5px 0;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}form p.submit a.cancel:hover{text-decoration:none}#minor-publishing-actions input,#major-publishing-actions input,#minor-publishing-actions .preview{text-align:center}textarea.all-options,input.all-options{width:250px}input.large-text,textarea.large-text{width:99%}input.regular-text,#adduser .form-field input{width:25em}input.small-text{width:50px}input.small-text[type="number"]{width:60px}#doaction,#doaction2,#post-query-submit{margin:1px 8px 0 0}.tablenav #changeit,.tablenav #delete_all,.tablenav #clear-recent-list{margin-top:1px}.tablenav .actions select{float:left;margin-right:6px;max-width:200px}.ie8 .tablenav .actions select{width:155px}.ie8 .tablenav .actions select#cat{width:200px}#timezone_string option{margin-left:1em}label,#your-profile label+a{vertical-align:middle}#misc-publishing-actions label{vertical-align:baseline}#pass-strength-result{border-style:solid;border-width:1px;float:left;margin:13px 5px 5px 1px;padding:3px 5px;text-align:center;width:200px;display:none}.indicator-hint{padding-top:8px}p.search-box{float:right;margin:0}.search-box input[name="s"],#search-plugins input[name="s"],.tagsdiv .newtag{float:left;height:2em;margin:0 4px 0 0}input[type="text"].ui-autocomplete-loading{background:transparent url('../images/loading.gif') no-repeat right center;visibility:visible}ul#add-to-blog-users{margin:0 0 0 14px}.ui-autocomplete-input.open{border-bottom-right-radius:0;border-bottom-left-radius:0}.ui-autocomplete{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;border-bottom-right-radius:3px;border-bottom-left-radius:3px;border-width:1px;border-style:solid}.ui-autocomplete li{margin-bottom:0;white-space:nowrap;text-align:left}.ui-autocomplete li a{display:block;height:100%;padding:4px 10px}.ui-autocomplete li a.ui-state-focus{cursor:pointer}#major-publishing-actions{padding:10px 10px 8px;clear:both;border-top:1px solid #f5f5f5;margin-top:-2px}#delete-action{line-height:25px;vertical-align:middle;text-align:left;float:left}#publishing-action{text-align:right;float:right;line-height:23px}#publishing-action .spinner{float:left}#misc-publishing-actions{padding:6px 0 0}.misc-pub-section{padding:6px 10px 8px;border-width:1px 0;border-style:solid}.misc-pub-section:first-child{border-top-width:0}.misc-pub-section-last{border-bottom-width:0}#minor-publishing-actions{padding:10px 10px 2px 8px;text-align:right}#minor-publishing{border-bottom-width:1px;border-bottom-style:solid;-webkit-box-shadow:0 1px 0 #fff;box-shadow:0 1px 0 #fff}#save-post{float:left}.preview{float:right}#sticky-span{margin-left:18px}.side-info{margin:0;padding:4px;font-size:11px}.side-info h5{padding-bottom:7px;font-size:14px;margin:12px 2px 5px;border-bottom-width:1px;border-bottom-style:solid}.side-info ul{margin:0;padding-left:18px;list-style:square}.approve,.unapproved .unapprove{display:none}.unapproved .approve,.spam .approve,.trash .approve{display:inline}td.action-links,th.action-links{text-align:right}#update-nag,.update-nag{line-height:19px;padding:5px 0;font-size:12px;text-align:center;margin:-1px 15px 0 5px;border-width:1px;border-style:solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.plugins .plugin-update{padding:0}.plugin-update .update-message{margin:0 10px 8px 31px;font-weight:bold}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}.update-php .spinner{float:none;margin:-4px 0}#ajax-loading,.ajax-loading,.ajax-feedback,.imgedit-wait-spin,.list-ajax-loading{visibility:hidden}#ajax-response.alignleft{margin-left:2em}#adminmenu a,#sidemenu a,#taglist a,#catlist a{text-decoration:none}#screen-options-wrap,#contextual-help-wrap{margin:0;padding:8px 20px 12px;position:relative}#contextual-help-wrap{overflow:auto}#screen-meta-links{margin:0 24px 0 0}#screen-meta-links a:focus{-webkit-box-shadow:1px 1px 1px rgba(0,0,0,0.4);box-shadow:1px 1px 1px rgba(0,0,0,0.4);outline:0}#screen-meta-links .screen-meta-toggle{position:relative;top:-1px}#screen-meta-links a.show-settings{text-decoration:none;z-index:1;padding:1px 16px 0 6px;height:22px;line-height:22px;font-size:12px;display:block;text-shadow:rgba(255,255,255,0.7) 0 1px 0}#screen-meta-links a.show-settings:hover{text-decoration:none}#screen-meta{display:none;position:relative;margin:0 15px 0 5px;border-width:0 1px 1px;border-style:none solid solid}#screen-meta .screen-reader-text{visibility:hidden}#screen-options-link-wrap,#contextual-help-link-wrap{float:right;height:23px;padding:0;margin:0 0 0 6px;font-family:sans-serif}#screen-options-link-wrap,#contextual-help-link-wrap,#screen-meta{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.toggle-arrow{background-repeat:no-repeat;background-position:top left;background-color:transparent;height:22px;line-height:22px;display:block}.toggle-arrow-active{background-position:bottom left}#screen-options-wrap h5,#contextual-help-wrap h5{margin:8px 0;font-size:13px}.metabox-prefs label{display:inline-block;padding-right:15px;white-space:nowrap;line-height:30px}.metabox-prefs label input{margin:0 5px 0 2px}.metabox-prefs label a{display:none}.metabox-prefs .columns-prefs label input{margin:0 2px}#contextual-help-wrap{padding:0;margin-left:-4px}#contextual-help-columns{position:relative}#contextual-help-back{position:absolute;top:0;bottom:0;left:150px;right:170px;border-width:0 1px;border-style:solid}#contextual-help-wrap.no-sidebar #contextual-help-back{right:0;border-right-width:0;-moz-border-bottom-right-radius:2px;-webkit-border-bottom-right-radius:2px;border-bottom-right-radius:2px}.contextual-help-tabs{float:left;width:150px;margin:0}.contextual-help-tabs ul{margin:1em 0}.contextual-help-tabs li{margin-bottom:0;list-style-type:none;border-style:solid;border-width:1px 0;border-color:transparent}.contextual-help-tabs a{display:block;padding:5px 5px 5px 12px;line-height:18px;text-decoration:none}.contextual-help-tabs .active{padding:0;margin:0 -1px 0 0;border-width:1px 0 1px 1px;border-style:solid}.contextual-help-tabs-wrap{padding:0 20px;overflow:auto}.help-tab-content{display:none;margin:0 22px 12px 0;line-height:1.6em}.help-tab-content.active{display:block}.help-tab-content ul li{list-style-type:disc;margin-left:18px}.contextual-help-sidebar{width:150px;float:right;padding:0 8px 0 12px;overflow:auto}#adminmenuback,#adminmenuwrap{border-width:0 1px 0 0;border-style:solid}#adminmenuwrap{position:relative;float:left}#adminmenushadow{position:absolute;top:0;right:0;bottom:0;width:6px;z-index:20}#adminmenu *{-webkit-user-select:none;-moz-user-select:none;user-select:none}#adminmenu li{margin:0;padding:0;cursor:pointer}#adminmenu a{display:block;line-height:18px;padding:2px 5px}#adminmenu li.menu-top{min-height:28px;position:relative}#adminmenu .wp-submenu{list-style:none;padding:4px 0;margin:0;position:absolute;top:-1000em;left:146px;z-index:1000;overflow:visible;border-width:1px;border-style:solid;border-top-right-radius:3px;border-bottom-right-radius:3px;-moz-border-top-right-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px}.js #adminmenu .sub-open,.js #adminmenu .opensub .wp-submenu,#adminmenu a.menu-top:focus+.wp-submenu,.no-js #adminmenu li.wp-has-submenu:hover .wp-submenu{top:-1px}#adminmenu .wp-has-current-submenu .wp-submenu,.no-js #adminmenu li.wp-has-current-submenu:hover .wp-submenu,#adminmenu a.wp-has-current-submenu:focus+.wp-submenu,#adminmenu .wp-has-current-submenu .wp-submenu.sub-open,#adminmenu .wp-has-current-submenu.opensub .wp-submenu{position:relative;z-index:3;top:auto;left:auto;right:auto;bottom:auto;border:0 none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.folded #adminmenu .wp-submenu.sub-open,.folded #adminmenu .opensub .wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.folded #adminmenu a.menu-top:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu,.no-js.folded #adminmenu .wp-has-submenu:hover .wp-submenu{top:-1px;left:32px}.folded #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.folded #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}#adminmenu .wp-submenu a{font-size:12px;line-height:18px;margin:0;padding-left:12px}#adminmenu .wp-not-current-submenu li>a{padding-left:16px}#adminmenu .wp-has-current-submenu ul>li>a,.folded #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}#adminmenu a.menu-top,#adminmenu .wp-submenu-head{font-size:13px;font-weight:bold;line-height:18px;padding:0}#adminmenu .wp-submenu-head,.folded #adminmenu .wp-menu-name{display:none}.folded #adminmenu .wp-submenu-head{display:block}#adminmenu .wp-submenu li{padding:0;margin:0;overflow:hidden}#adminmenu a.menu-top{border-width:1px 0;border-style:solid none}#adminmenu .wp-menu-image img{padding:7px 0 0 7px;opacity:.6;filter:alpha(opacity=60)}#adminmenu div.wp-menu-name{padding:5px}#adminmenu div.wp-menu-image{float:left;width:28px;height:28px}.folded #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.folded #adminmenu a.menu-top{height:28px}#adminmenu .wp-menu-arrow div{display:none;position:absolute;top:7px;left:-1px;width:14px;height:15px;-moz-transform:matrix(-0.6,1,0.6,1,0,0);-webkit-transform:matrix(-0.6,1,0.6,1,0,0);-o-transform:matrix(-0.6,1,0.6,1,0,0);-ms-transform:matrix(-0.6,1,0.6,1,0,0);transform:matrix(-0.6,1,0.6,1,0,0)}#adminmenu li.wp-not-current-submenu .wp-menu-arrow{-moz-transform:translate(145px);-webkit-transform:translate(145px);-o-transform:translate(145px);-ms-transform:translate(145px);transform:translate(145px);height:28px;border-width:1px 0;border-style:solid;top:0}.folded #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow,#adminmenu li.wp-has-current-submenu .wp-menu-arrow div,#adminmenu li.wp-has-submenu .wp-menu-arrow div,#adminmenu li.current .wp-menu-arrow div,.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow,#adminmenu a:hover .wp-menu-arrow{display:block}#adminmenu li.current .wp-menu-arrow,#adminmenu li.wp-menu-open .wp-menu-arrow{top:0}.no-js #adminmenu li.wp-has-submenu:hover .wp-menu-arrow,#adminmenu li.wp-has-submenu.opensub .wp-menu-arrow,#adminmenu a.wp-has-submenu:focus .wp-menu-arrow{z-index:1001}.ie8 #adminmenu li.menu-top:hover .wp-menu-arrow{display:none}#adminmenu .wp-not-current-submenu .wp-menu-arrow div{width:15px;top:6px;border-width:0 0 1px 1px;border-style:solid}#adminmenu .wp-menu-arrow,.folded #adminmenu li .wp-menu-arrow div,.no-js #adminmenu li.wp-not-current-submenu:hover .wp-menu-arrow{display:none}.folded #adminmenu li.current .wp-menu-arrow,.folded #adminmenu li.current .wp-menu-arrow div,.folded #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.folded #adminmenu li.wp-menu-open .wp-menu-arrow,.folded #adminmenu li a:focus .wp-menu-arrow{display:block}#adminmenu li.menu-top:hover .wp-menu-image img,#adminmenu li.wp-has-current-submenu .wp-menu-image img{opacity:1;filter:alpha(opacity=100)}#adminmenu li.wp-menu-separator{height:3px;padding:0;margin:0;border-width:1px 0;border-style:solid;cursor:inherit}#adminmenu div.separator{height:1px;padding:0;border-width:1px 0 0 0;border-style:solid}#adminmenu .wp-submenu .wp-submenu-head{padding:5px 4px 5px 10px;margin:-4px -1px 4px;border-width:1px 0;border-style:solid;-moz-border-top-right-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px}#adminmenu li.wp-menu-open{border-width:0 0 1px;border-style:solid}#adminmenu li.current,.folded #adminmenu li.wp-menu-open{border:0 none}.folded #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.folded #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.wp-menu-arrow{z-index:25;position:absolute;right:100%;margin:0;height:30px;width:6px;-moz-transform:translate(146px);-webkit-transform:translate(146px);-o-transform:translate(146px);-ms-transform:translate(146px);transform:translate(146px)}#adminmenu .awaiting-mod,#adminmenu span.update-plugins,#sidemenu li a span.update-plugins{position:absolute;font-family:sans-serif;font-size:9px;font-weight:bold;line-height:17px;margin-top:1px;margin-left:7px;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px;z-index:26}#adminmenu li .awaiting-mod span,#adminmenu li span.update-plugins span,#sidemenu li a span.update-plugins span{display:block;padding:0 6px}#adminmenu li span.count-0,#sidemenu li a .count-0{display:none}#collapse-menu{font-size:12px;line-height:34px;border-width:1px 0 0;border-style:solid}.folded #collapse-menu span{display:none}#collapse-button,#collapse-button div{width:15px;height:15px}#collapse-button{float:left;margin:8px 6px;border-width:1px;border-style:solid;border-radius:10px;-moz-border-radius:10px;-webkit-border-radius:10px}@media only screen and (max-width:900px){.auto-fold #wpcontent,.auto-fold #wpfooter{margin-left:52px}.auto-fold #adminmenuback,.auto-fold #adminmenuwrap,.auto-fold #adminmenu,.auto-fold #adminmenu li.menu-top{width:32px}.auto-fold #adminmenu .wp-submenu.sub-open,.auto-fold #adminmenu .opensub .wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu.sub-open,.auto-fold #adminmenu .wp-has-current-submenu.opensub .wp-submenu,.auto-fold #adminmenu a.menu-top:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu a.menu-top:focus+.wp-submenu{top:-1px;left:32px}.auto-fold #adminmenu a.wp-has-current-submenu:focus+.wp-submenu,.auto-fold #adminmenu .wp-has-current-submenu .wp-submenu{border-width:1px;border-style:solid;position:absolute;top:-1000em}.auto-fold #adminmenu li.menu-top .wp-submenu>li>a{padding-left:12px}.auto-fold #adminmenu .wp-menu-name{display:none}.auto-fold #adminmenu .wp-submenu-head{display:block}.auto-fold #adminmenu div.wp-menu-image{width:32px;position:absolute;z-index:25}.auto-fold #adminmenu a.menu-top{height:28px}.auto-fold #adminmenu li .wp-menu-arrow{-moz-transform:translate(32px);-webkit-transform:translate(32px);-o-transform:translate(32px);-ms-transform:translate(32px);transform:translate(32px)}.auto-fold #adminmenu li .wp-menu-arrow div{display:none}.auto-fold #adminmenu li.current .wp-menu-arrow,.auto-fold #adminmenu li.current .wp-menu-arrow div,.auto-fold #adminmenu li.wp-has-current-submenu .wp-menu-arrow div,.auto-fold #adminmenu li.wp-menu-open .wp-menu-arrow,.auto-fold #adminmenu li a:focus .wp-menu-arrow{display:block}.auto-fold #adminmenu li.wp-menu-open{border:0 none}.auto-fold #adminmenu li.wp-has-current-submenu{margin-bottom:1px}.auto-fold #adminmenu .wp-has-current-submenu.menu-top-last{margin-bottom:0}.auto-fold #collapse-menu span{display:none}}.post-com-count-wrapper{min-width:22px;font-family:sans-serif}.post-com-count{background-image:url('../images/bubble_bg.gif');height:1.3em;line-height:1.1em;display:block;text-decoration:none;padding:0 0 6px;cursor:pointer;background-position:center -80px;background-repeat:no-repeat}.post-com-count span{font-size:11px;font-weight:bold;line-height:1.4em;height:1.4em;min-width:.7em;padding:0 6px;display:inline-block;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px}strong .post-com-count{background-position:center -55px}.post-com-count:hover{background-position:center -3px}.column-response .post-com-count{float:left;margin-right:5px;text-align:center}.response-links{float:left}#the-comment-list .attachment-80x60{padding:4px 8px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble.png');background-repeat:no-repeat;height:12px;width:12px}html.wp-toolbar{padding-top:28px;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.narrow{width:70%;margin-bottom:40px}.narrow p{line-height:150%}.widefat th,.widefat td{overflow:hidden}.widefat th{font-weight:normal}.widefat td p{margin:2px 0 .8em}.widefat .column-comment p{margin:.6em 0}.postbox-container{float:left}#dashboard-widgets.columns-1 .postbox-container{width:100%}#dashboard-widgets.columns-2 .postbox-container{width:49.5%}#dashboard-widgets.columns-2 #postbox-container-2,#dashboard-widgets.columns-2 #postbox-container-3,#dashboard-widgets.columns-2 #postbox-container-4{float:right;width:50.5%}#dashboard-widgets.columns-3 .postbox-container{width:33.5%}#dashboard-widgets.columns-3 #postbox-container-1{width:33%}#dashboard-widgets.columns-3 #postbox-container-3,#dashboard-widgets.columns-3 #postbox-container-4{float:right}#dashboard-widgets.columns-4 .postbox-container{width:25%}.postbox-container .meta-box-sortables{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.metabox-holder .postbox-container .empty-container{border:3px dashed #ccc;height:250px}.metabox-holder.columns-1 .postbox-container .empty-container,.columns-2 #postbox-container-3 .empty-container,.columns-2 #postbox-container-4 .empty-container,.columns-3 #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#poststuff{padding-top:10px}#poststuff #post-body{padding:0}#poststuff .postbox-container{width:100%}#poststuff #post-body.columns-2{margin-right:300px}#post-body-content{width:100%;float:left}#post-body.columns-2 #postbox-container-1{float:right;margin-right:-300px;width:280px}#post-body.columns-2 #side-sortables{min-height:250px}@media only screen and (max-width:799px){#wpbody-content #dashboard-widgets .postbox-container{width:100%}#wpbody-content .metabox-holder .postbox-container .empty-container{border:0 none;height:0;min-height:0}}@media only screen and (min-width:800px) and (max-width:1200px){#wpbody-content #dashboard-widgets .postbox-container{width:49.5%}#wpbody-content #dashboard-widgets #postbox-container-2,#wpbody-content #dashboard-widgets #postbox-container-3,#wpbody-content #dashboard-widgets #postbox-container-4{float:right;width:50.5%}#dashboard-widgets #postbox-container-3 .empty-container,#dashboard-widgets #postbox-container-4 .empty-container{border:0 none;height:0;min-height:0}#wpbody #wpbody-content #dashboard-widgets.columns-1 .postbox-container{width:100%}#wpbody #wpbody-content .metabox-holder.columns-1 .postbox-container .empty-container{border:0 none;height:0;min-height:0}.index-php .screen-layout,.index-php .columns-prefs{display:block}.columns-prefs .columns-prefs-3,.columns-prefs .columns-prefs-4{display:none}}@media only screen and (max-width:850px){#wpbody-content #poststuff #post-body{margin:0}#wpbody-content #post-body.columns-2 #postbox-container-1{margin-right:0;width:100%}#poststuff #postbox-container-1 .empty-container,#poststuff #postbox-container-1 #side-sortables:empty{border:0 none;height:0;min-height:0}#poststuff #post-body.columns-2 #side-sortables{min-height:0}.screen-layout,.columns-prefs{display:none}}.postbox .hndle{border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}.js .postbox .hndle{cursor:move}.postbox.closed .hndle{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.hndle a{font-size:11px;font-weight:normal}.postbox .handlediv{float:right;width:27px;height:30px}.js .postbox .handlediv{cursor:pointer}.sortable-placeholder{border-width:1px;border-style:dashed;margin-bottom:20px}.widget,.postbox,.stuffbox{margin-bottom:20px;padding:0;border-width:1px;border-style:solid;line-height:1}.widget .widget-top,.postbox h3,.stuffbox h3{margin-top:1px;border-bottom-width:1px;border-bottom-style:solid;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .widget .widget-top,.js .postbox h3{cursor:move}.postbox .inside,.stuffbox .inside{padding:0 12px 0 10px;line-height:1.4em}.postbox .inside{margin:10px 0;position:relative}.postbox.closed h3{border:0;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.postbox table.form-table{margin-bottom:0}.temp-border{border:1px dotted #ccc}.columns-prefs label{padding:0 5px}#dashboard-widgets-wrap{margin:0 -8px}#wpbody-content .metabox-holder{padding-top:10px}#dashboard-widgets .meta-box-sortables{margin:0 8px}#dashboard_recent_comments div.undo{border-top-style:solid;border-top-width:1px;margin:0 -10px;padding:3px 8px;font-size:11px}.welcome-panel{position:relative;overflow:auto;margin:20px 0;padding:23px 10px 12px;border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;font-size:13px;line-height:2.1em}.welcome-panel h3{margin:0;font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:21px;font-weight:normal;line-height:1.2}.welcome-panel h4{margin:1.33em 0 0;font-size:13px}.welcome-panel .about-description{font-size:16px;margin:0}.welcome-panel .welcome-panel-close{position:absolute;top:5px;right:10px;padding:8px 3px;font-size:13px;text-decoration:none;line-height:1}.welcome-panel .welcome-panel-close:before{content:' ';position:absolute;left:-12px;width:10px;height:100%;background:url('../images/xit.gif') 0 17% no-repeat}.welcome-panel .welcome-panel-close:hover:before{background-position:100% 17%}.wp-core-ui .welcome-panel .button.button-hero{margin:15px 0 3px}.welcome-panel .welcome-panel-column-container{clear:both;overflow:hidden;position:relative}.welcome-panel .welcome-panel-column{width:32%;min-width:200px;float:left}.welcome-panel .welcome-panel-column:first-child{width:36%}.welcome-panel .welcome-panel-column ul{margin:.8em 1em 1em 0}.welcome-panel .welcome-panel-column li{line-height:16px;list-style-type:none}.ie8 .welcome-panel .welcome-panel-column{min-width:230px}.welcome-panel .welcome-icon{display:block;padding:2px 0 8px 32px;background-image:url('../images/welcome-icons.png');background-repeat:no-repeat;background-size:16px}.welcome-panel .welcome-add-page{background-position:0 2px}.welcome-panel .welcome-edit-page{background-position:0 -90px}.welcome-panel .welcome-learn-more{background-position:0 -136px}.welcome-panel .welcome-comments{background-position:0 -182px}.welcome-panel .welcome-view-site{background-position:0 -274px}.welcome-panel .welcome-widgets-menus{background-position:1px -229px;line-height:14px}.welcome-panel .welcome-write-blog{background-position:0 -44px}.welcome-panel-content{margin-left:13px;max-width:1500px}.welcome-panel-content p{margin-top:7px}@media screen and (max-width:870px){.welcome-panel .welcome-panel-column,.welcome-panel .welcome-panel-column:first-child{display:block;float:none;width:100%}.welcome-panel .welcome-panel-column li{display:inline-block;margin-right:13px}.welcome-panel .welcome-panel-column ul{margin:.4em 0 0}.welcome-panel .welcome-icon{padding-left:25px}}.edit-box{display:none}h3:hover .edit-box{display:inline}#dashboard-widgets form .input-text-wrap input{width:100%}#dashboard-widgets form .textarea-wrap textarea{width:100%}#dashboard-widgets .postbox form .submit{float:none;margin:.5em 0 0;padding:0;border:0}#dashboard-widgets-wrap #dashboard-widgets .postbox form .submit #publish{min-width:0}#dashboard-widgets a{text-decoration:none}#dashboard-widgets h3 a{text-decoration:underline}#dashboard-widgets h3 .postbox-title-action{position:absolute;right:10px;padding:0;top:5px}.js #dashboard-widgets h3 .postbox-title-action{right:30px}#dashboard-widgets h4{font-size:13px;font-weight:normal;line-height:1;margin:0 0 .2em;padding:0}#dashboard_right_now p.sub,#dashboard_right_now .table,#dashboard_right_now .versions{margin:-12px}#dashboard_right_now .inside{font-size:12px;padding-top:20px}#dashboard_right_now p.sub{padding:5px 0 15px;color:#8f8f8f;font-size:14px;position:absolute;top:-17px;left:15px}#dashboard_right_now .table{margin:0;padding:0;position:relative}#dashboard_right_now .table_content{float:left;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now .table_discussion{float:right;border-top-width:1px;border-top-style:solid;width:45%}#dashboard_right_now table td{padding:3px 0;white-space:nowrap}#dashboard_right_now table tr.first td{border-top:0}#dashboard_right_now td.b{padding-right:6px;text-align:right;font-size:14px;width:1%}#dashboard_right_now td.b a{font-size:18px}#dashboard_right_now td.b a:hover{color:#d54e21}#dashboard_right_now .t{font-size:12px;padding-right:12px;padding-top:6px;color:#777}#dashboard_right_now .t a{white-space:nowrap}#dashboard_right_now .spam{color:red}#dashboard_right_now .waiting{color:#e66f00}#dashboard_right_now .approved{color:green}#dashboard_right_now .versions{padding:6px 10px 12px;clear:both}#dashboard_right_now a.button{float:right;clear:right;position:relative;top:-5px}#dashboard_recent_comments h3{margin-bottom:0}#dashboard_recent_comments .inside{margin-top:0}#dashboard_recent_comments .comment-meta .approve{font-style:italic;font-family:sans-serif;font-size:10px}#dashboard_recent_comments .subsubsub{float:none;white-space:normal}#the-comment-list{position:relative}#the-comment-list p.comment-author img{float:left;margin-right:8px}#the-comment-list p.comment-author strong a{border:0}#the-comment-list td{vertical-align:top}#the-comment-list td.comment{word-wrap:break-word}#the-comment-list td.comment p.comment-author{margin-top:0;margin-left:0}#the-comment-list .comment-item{padding:1em 10px;border-top:1px solid}#the-comment-list .comment-item .avatar{float:left;margin:0 10px 5px 0}#the-comment-list .comment-item h4{line-height:1.7em;margin-top:-0.4em;color:#777}#the-comment-list .comment-item h4 cite{font-style:normal;font-weight:normal}#the-comment-list .comment-item:first-child{border-top:0}#the-comment-list .comment-item blockquote,#the-comment-list .comment-item blockquote p{margin:0;padding:0;display:inline}#the-comment-list .comment-item p.row-actions{margin:3px 0 0;padding:0;font-size:12px}#the-comment-list .pingback{padding-left:9px!important}#the-comment-list .comment-item,#the-comment-list #replyrow{margin:0 -10px}#dashboard_recent_comments #the-comment-list .trackback blockquote,#dashboard_recent_comments #the-comment-list .pingback blockquote{display:block}#title-wrap label,#tags-input-wrap label{cursor:text}#title-wrap #title{padding:2px 6px;font-size:1.3em;line-height:100%;outline:0}#title-wrap #title-prompt-text{font-size:1.3em;padding:5px 8px}#tags-input-wrap #tags-input{outline:0}#tags-input-wrap #tags-input-prompt-text{font-size:1em;padding:4px 8px}.no-js #dashboard_quick_press{display:none}#dashboard_quick_press .easy-blogging{padding:0 8px;text-align:left}#dashboard_quick_press .input-text-wrap{position:relative}#dashboard_quick_press .prompt{color:#bbb;position:absolute}#dashboard_quick_press div.updated{padding:0 5px}#dashboard_quick_press .input-text-wrap,#dashboard_quick_press .textarea-wrap{margin:0 0 1em 0}#dashboard_quick_press .wp-media-buttons{margin:0 0 .2em 1px;padding:0}#dashboard_quick_press .wp-media-buttons a{color:#777}#dashboard-widgets #dashboard_quick_press form p.submit input{float:left}#dashboard-widgets #dashboard_quick_press form p.submit #save-post{margin:0 .7em 0 1px}#dashboard-widgets #dashboard_quick_press form p.submit #publish{float:right}#dashboard-widgets #dashboard_quick_press form p.submit .spinner{vertical-align:middle;margin:4px 6px 0 0}#dashboard_recent_drafts ul,#dashboard_recent_drafts p{margin:0;padding:0;word-wrap:break-word}#dashboard_recent_drafts ul{list-style:none}#dashboard_recent_drafts ul li{margin-bottom:1em}#dashboard_recent_drafts h4{line-height:1.7em;word-wrap:break-word}#dashboard_recent_drafts h4 abbr{font-weight:normal;font-family:sans-serif;font-size:12px;color:#999;margin-left:3px}.rss-widget ul{margin:0;padding:0;list-style:none}.rss-widget ul li{line-height:1.5em;margin-bottom:12px}.rss-widget span.rss-date{color:#999;font-size:12px;margin-left:3px}.rss-widget cite{display:block;text-align:right;margin:0 0 1em;padding:0}.rss-widget cite:before{content:'\2014'}a.rsswidget{font-size:13px;line-height:1.7em}#dashboard_plugins h4{line-height:1.7em}#dashboard_plugins h5{font-size:13px;font-weight:normal;line-height:1.4em;margin:0;display:inline}#dashboard_plugins h5 a{line-height:1.4em}#dashboard_plugins .inside span{font-size:12px;padding-left:5px}#dashboard_plugins p{margin:.3em 0 1.4em;line-height:1.4em}.dashboard-comment-wrap{overflow:hidden;word-wrap:break-word}#dashboard_browser_nag a{color:white;text-decoration:underline}#dashboard_browser_nag a.update-browser-link{font-size:1.2em;font-weight:bold;line-height:normal}#dashboard_browser_nag a.browse-happy-link,#dashboard_browser_nag a.update-browser-link{text-shadow:#d29a04 0 1px 0}#dashboard_browser_nag p.browser-update-nag.has-browser-icon{padding-right:125px}#dashboard_browser_nag .browser-icon{margin-top:-35px}#dashboard_browser_nag.postbox{background-color:#e29808;background-image:none;border-color:#edc048;color:white;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox h3{border-bottom-color:#f6e2ac;text-shadow:none;background:transparent none;color:white;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}#dashboard_browser_nag.postbox.browser-insecure{background-color:#ac1b1b;border-color:#ac1b1b}#dashboard_browser_nag.postbox.browser-insecure h3{border-bottom-color:#cd5a5a;color:white}#dashboard_browser_nag.browser-insecure a.browse-happy-link,#dashboard_browser_nag.browser-insecure a.update-browser-link{text-shadow:#871b15 0 1px 0}table.fixed{table-layout:fixed}.fixed .column-rating,.fixed .column-visible{width:8%}.fixed .column-posts,.fixed .column-date,.fixed .column-parent,.fixed .column-links,.fixed .column-author,.fixed .column-format{width:10%}.fixed .column-response,.fixed .column-categories,.fixed .column-tags,.fixed .column-rel,.fixed .column-role{width:15%}.fixed .column-slug{width:25%}.fixed .column-locations{width:35%}.fixed .column-comments{width:4em;padding:8px 0;text-align:left}.fixed .column-comments .vers{padding-left:3px}.fixed .column-comments a{float:left}.fixed .column-icon{width:80px}#comments-form .fixed .column-author{width:20%}#commentsdiv.postbox .inside{margin:0;padding:0}#commentsdiv .inside .row-actions{line-height:18px}#commentsdiv .inside .column-author{width:25%}#commentsdiv .column-comment p{margin:.6em 0;padding:0}#commentsdiv #replyrow td{padding:0}#commentsdiv p{padding:8px 10px;margin:0}#commentsdiv #add-new-comment{border-width:0 0 1px;border-style:none none solid}#commentsdiv .comments-box{border:0 none}#commentsdiv .comments-box thead th{background:transparent;padding:0 7px 4px;font-style:italic}#commentsdiv .comments-box tr:last-child td{border-bottom:0 none}#commentsdiv .spinner{padding-left:5px}.sorting-indicator{display:none;width:7px;height:4px;margin-top:8px;margin-left:7px;background-image:url('../images/sort.gif');background-repeat:no-repeat}tr.wp-locked .locked-indicator{background:url('../images/lock.png') no-repeat;margin:-2px 0 0 6px;height:20px;width:16px}tr.wp-locked .check-column label,tr.wp-locked .check-column input[type="checkbox"],tr.wp-locked .row-actions .inline,tr.wp-locked .row-actions .trash{display:none}tr .locked-info{height:0;opacity:0}tr.wp-locked .locked-info{height:auto;opacity:1}tr.locked-info,tr.wp-locked .locked-info{-webkit-transition:height 1s,opacity 500ms;-moz-transition:height 1s,opacity 500ms;-ms-transition:height 1s,opacity 500ms;-o-transition:height 1s,opacity 500ms;transition:height 1s,opacity 500ms}.fixed .column-comments .sorting-indicator{margin-top:3px}#menu-locations-wrap .widefat{width:60%}.widefat th.sortable,.widefat th.sorted{padding:0}th.sortable a,th.sorted a{display:block;overflow:hidden;padding:7px 7px 8px}.fixed .column-comments.sortable a,.fixed .column-comments.sorted a{padding:8px 0}th.sortable a span,th.sorted a span{float:left;cursor:pointer}th.sorted.asc .sorting-indicator,th.desc:hover span.sorting-indicator{display:block;background-position:0 0}th.sorted.desc .sorting-indicator,th.asc:hover span.sorting-indicator{display:block;background-position:-7px 0}.tablenav-pages a{border-bottom-style:solid;border-bottom-width:2px;font-weight:bold;margin-right:1px;padding:0 2px}.tablenav-pages .current-page{text-align:center}.tablenav-pages .next-page{margin-left:2px}.tablenav{clear:both;height:30px;margin:6px 0 4px;vertical-align:middle}.tablenav.themes{max-width:98%}.tablenav a.button-secondary{display:block;margin:3px 8px 0 0}.tablenav .tablenav-pages{float:right;display:block;cursor:default;height:30px;line-height:30px;font-size:12px}.tablenav .tablenav-pages a.disabled:hover,.tablenav .tablenav-pages a.disabled:active{cursor:default}.tablenav .no-pages,.tablenav .one-page .pagination-links{display:none}.tablenav .displaying-num{margin-right:10px;font-size:12px;font-style:italic}.tablenav .actions{overflow:hidden;padding:2px 8px 0 0}.tablenav .delete{margin-right:20px}.tablenav .tablenav-pages a,.tablenav-pages span.current{text-decoration:none;padding:3px 6px}.view-switch{float:right;margin:6px 8px 0}.view-switch a{text-decoration:none}.filter{float:left;margin:-5px 0 0 10px}.filter .subsubsub{margin-left:-10px;margin-top:13px}.screen-per-page{width:4em}#posts-filter fieldset{float:left;margin:0 1.5ex 1em 0;padding:0}#posts-filter fieldset legend{padding:0 0 .2em 1px}#wpbody-content .inline-edit-row fieldset{font-size:12px;float:left;margin:0;padding:0;width:100%}#wpbody-content .quick-edit-row-post .inline-edit-col-left{width:40%}#wpbody-content .quick-edit-row-post .inline-edit-col-right{width:39%}#wpbody-content .quick-edit-row-page fieldset.inline-edit-col-right .inline-edit-col{border-width:0 0 0 1px;border-style:none none none solid}#wpbody-content .quick-edit-row-page .inline-edit-col-left{width:50%}#wpbody-content .inline-edit-row-post .inline-edit-col-center{width:20%}#wpbody-content .quick-edit-row-page .inline-edit-col-right,#wpbody-content .bulk-edit-row-post .inline-edit-col-right{width:49%}#wpbody-content .bulk-edit-row .inline-edit-col-left{width:30%}#wpbody-content .bulk-edit-row-page .inline-edit-col-right{width:69%}#wpbody-content .bulk-edit-row .inline-edit-col-bottom{float:right;width:69%}#wpbody-content .inline-edit-row-page .inline-edit-col-right{margin-top:27px}tr.inline-edit-row td,#wpbody-content .inline-edit-row fieldset .inline-edit-col{padding:0 .5em}.inline-edit-row fieldset .inline-edit-group{clear:both}.inline-edit-row fieldset .inline-edit-group:after{content:".";display:block;height:0;clear:both;visibility:hidden}.inline-edit-row p.submit{clear:both;padding:.5em;margin:.5em 0 0}.inline-edit-row span.error{line-height:22px;margin:0 15px;padding:3px 5px}.inline-edit-row h4{margin:.2em 0;padding:0;line-height:23px;text-transform:uppercase}.inline-edit-row fieldset span.title,.inline-edit-row fieldset span.checkbox-title{margin:0;padding:0;line-height:27px;font-style:italic;line-height:1.8em}.inline-edit-row fieldset label,.inline-edit-row fieldset span.inline-edit-categories-label{display:block;margin:.2em 0}.inline-edit-row fieldset label.inline-edit-tags{margin-top:0}.inline-edit-row fieldset label.inline-edit-tags span.title{margin:.2em 0;width:auto}.inline-edit-row fieldset label span.title{display:block;float:left;width:5em}.inline-edit-row fieldset label span.input-text-wrap{display:block;margin-left:5em}.inline-edit-row fieldset label input[type=checkbox]{vertical-align:text-bottom}.inline-edit-row fieldset label textarea{width:100%;height:4em}.inline-edit-row fieldset input[type="text"],.inline-edit-row fieldset textarea{border-style:solid;border-width:1px}.inline-edit-row fieldset .inline-edit-date{float:left}.inline-edit-row fieldset input[name=jj],.inline-edit-row fieldset input[name=hh],.inline-edit-row fieldset input[name=mn]{font-size:12px;width:2.1em}.inline-edit-row fieldset input[name=aa]{font-size:12px;width:3.5em}.inline-edit-row fieldset label input.inline-edit-password-input{width:8em}.inline-edit-row fieldset ul.cat-checklist li,.inline-edit-row fieldset ul.cat-checklist input{margin:0}.inline-edit-row fieldset label input.inline-edit-menu-order-input{width:3em}.inline-edit-row fieldset label input.inline-edit-slug-input{width:75%}.inline-edit-row .input-text-wrap input[type=text]{width:100%}.inline-edit-row fieldset ul.cat-checklist label,.inline-edit-row #bulk-titles div{font-family:sans-serif;font-style:normal;font-size:11px}.quick-edit-row-post fieldset.inline-edit-col-right label span.title{width:auto;padding-right:.5em}#wpbody-content .bulk-edit-row fieldset .inline-edit-group label{max-width:50%}#wpbody-content .quick-edit-row fieldset .inline-edit-group label.alignleft:first-child{margin-right:.5em}.inline-edit-col-right .input-text-wrap input.inline-edit-menu-order-input{width:6em}.inline-edit-save .spinner{padding:4px 10px 0;vertical-align:top;float:right}ul.cat-checklist{height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0}#bulk-titles{display:block;height:12em;border-style:solid;border-width:1px;overflow-y:scroll;padding:0 5px;margin:0 0 5px}.quick-edit-row-post fieldset label.inline-edit-status{float:left}#bulk-titles{line-height:140%}#bulk-titles div{margin:.2em .3em}#bulk-titles div a{cursor:pointer;display:block;float:left;height:10px;margin:3px 3px 0 -2px;overflow:hidden;position:relative;text-indent:-9999px;width:10px}#show-comments{overflow:hidden}#save-action .spinner,#show-comments a,#show-comments .spinner{float:left}#lost-connection-notice .spinner{display:block;float:left;margin:0 5px 0 0}.rtl #lost-connection-notice .spinner{float:right;margin:0 0 0 5px}#titlediv{position:relative;margin-bottom:5px}#titlediv label{cursor:text}#titlediv div.inside{margin:0}#titlediv #title{padding:3px 8px;font-size:1.7em;line-height:100%;height:1.7em;width:100%;outline:0;margin:1px 0}#poststuff #titlewrap{border:0;padding:0}#titlediv #title-prompt-text,#wp-fullscreen-title-prompt-text{color:#bbb;position:absolute;font-size:1.7em;padding:11px 10px}#wp-fullscreen-save .fs-saved{color:#999;float:right;margin-top:4px}#wp-fullscreen-title-prompt-text{padding:11px}#poststuff .inside-submitbox,#side-sortables .inside-submitbox{margin:0 3px;font-size:11px}input#link_description,input#link_url{width:98%}#pending{background:0 none;border:0 none;padding:0;font-size:11px;margin-top:-1px}#edit-slug-box{line-height:24px;min-height:25px;margin-top:5px;padding-right:6px}#edit-slug-box .cancel{margin-right:10px;font-size:11px}#editable-post-name-full{display:none}#editable-post-name input{width:16em}.postarea h3 label{float:left}.submitbox .submit{text-align:left;padding:12px 10px 10px;font-size:11px}.submitbox .submitdelete{text-decoration:none;padding:1px 2px}.submitbox .submitdelete,.submitbox .submit a:hover{border-bottom-width:1px;border-bottom-style:solid}.submitbox .submit input{margin-bottom:8px;margin-right:4px;padding:6px}.inside-submitbox #post_status{margin:2px 0 2px -2px}#post-status-select{line-height:2.5em;margin-top:3px}#post-body #normal-sortables{min-height:50px}.postbox{position:relative;min-width:255px}#trackback_url{width:99%}#normal-sortables .postbox .submit{background:transparent none;border:0 none;float:right;padding:0 12px;margin:0}.category-add input[type="text"],.category-add select{width:100%;max-width:260px}.press-this #side-sortables .category-tabs li,ul.category-tabs li,#side-sortables .add-menu-item-tabs li,.wp-tab-bar li{display:inline;line-height:1.35em}.no-js .category-tabs li.hide-if-no-js{display:none}.category-tabs a,#side-sortables .add-menu-item-tabs a,.wp-tab-bar a{text-decoration:none}.category-tabs{margin:8px 0 3px}#category-adder h4{margin:10px 0}#side-sortables .add-menu-item-tabs,.wp-tab-bar{margin-bottom:3px}#normal-sortables .postbox #replyrow .submit{float:none;margin:0;padding:0 7px 5px}#side-sortables .submitbox .submit input,#side-sortables .submitbox .submit .preview,#side-sortables .submitbox .submit a.preview:hover{border:0 none}#side-sortables .inside-submitbox .insidebox,.stuffbox .insidebox{margin:11px 0}ul.category-tabs,ul.add-menu-item-tabs,ul.wp-tab-bar{margin-top:12px}ul.category-tabs li{border-style:solid;border-width:1px;position:relative}ul.add-menu-item-tabs li.tabs,.wp-tab-active{border-style:solid solid none;border-width:1px 1px 0}#post-body .add-menu-item-tabs li.tabs{border-style:solid none solid solid;border-width:1px 0 1px 1px;margin-right:-1px}ul.category-tabs li,ul.add-menu-item-tabs li,ul.wp-tab-bar li{padding:3px 5px 5px;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}form#tags-filter{position:relative}td.post-title strong,td.plugin-title strong{display:block;margin-bottom:.2em}td.post-title p,td.plugin-title p{margin:6px 0}.wp-hidden-children .wp-hidden-child,.ui-tabs-hide{display:none}.commentlist .avatar{vertical-align:text-top}#post-body .tagsdiv #newtag{margin-right:5px;width:16em}#side-sortables input#post_password{width:94%}#side-sortables .tagsdiv #newtag{width:68%}#post-status-info{border-width:0 1px 1px;border-style:none solid solid;width:100%;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}#post-status-info td{font-size:12px}.autosave-info{padding:2px 15px;text-align:right}#editorcontent #post-status-info{border:0}#post-body .wp_themeSkin .mceStatusbar a.mceResize{display:block;background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;margin:0 1px;position:relative;top:-2px}#post-body .postarea .wp_themeSkin .mceStatusbar a.mceResize{top:20px}#content-resize-handle{background:transparent url('../images/resize.gif') no-repeat scroll right bottom;width:12px;cursor:se-resize;position:absolute;right:2px;height:19px}.press-this #content-resize-handle{bottom:2px}.tmce-active #content-resize-handle{display:none}#wp-word-count{display:block;padding:2px 10px}#timestampdiv select{height:20px;line-height:14px;padding:0;vertical-align:top}#aa,#jj,#hh,#mn{padding:1px;font-size:12px}#jj,#hh,#mn{width:2em}#aa{width:3.4em}.curtime #timestamp{background-repeat:no-repeat;background-position:left center;padding:2px 0 1px 20px}#timestampdiv{padding-top:5px;line-height:23px}#timestampdiv p{margin:8px 0 6px}#timestampdiv input{border-width:1px;border-style:solid}.notification-dialog{position:fixed;top:30%;left:50%;width:450px;margin-left:-225px;background:#fff;line-height:1.5;z-index:1000005}.notification-dialog-background{position:fixed;top:0;left:0;right:0;bottom:0;background:#000;opacity:.5;filter:alpha(opacity=50);z-index:1000000}#post-lock-dialog .post-locked-message,#post-lock-dialog .post-taken-over{margin:25px}#post-lock-dialog .post-locked-message a.button{margin-right:10px}#post-lock-dialog .post-locked-avatar{float:left;margin:0 20px 20px 0}#post-lock-dialog .wp-tab-first{outline:0}#post-lock-dialog .locked-saving img{float:left;margin-right:3px}#post-lock-dialog.saving .locked-saving,#post-lock-dialog.saved .locked-saved{display:inline}#postcustomstuff thead th{padding:5px 8px 8px}#postcustom #postcustomstuff .submit{border:0 none;float:none;padding:0 8px 8px}#side-sortables #postcustom #postcustomstuff .submit{margin:0;padding:0}#side-sortables #postcustom #postcustomstuff #the-list textarea{height:85px}#side-sortables #postcustom #postcustomstuff td.left input,#side-sortables #postcustom #postcustomstuff td.left select{margin:3px 3px 0}#side-sortables #postcustomstuff #newmetaleft a{margin:3px 3px 0}#postcustomstuff table{margin:0;width:100%;border-width:1px;border-style:solid;border-spacing:0}#postcustomstuff tr{vertical-align:top}#postcustomstuff table input,#postcustomstuff table select,#postcustomstuff table textarea{width:96%;margin:8px}#side-sortables #postcustomstuff table input,#side-sortables #postcustomstuff table select,#side-sortables #postcustomstuff table textarea{margin:3px}#postcustomstuff th.left,#postcustomstuff td.left{width:38%}#postcustomstuff .submit input{margin:0;width:auto}#postcustomstuff #newmetaleft a{display:inline-block;margin:0 8px 8px;text-decoration:none}.no-js #postcustomstuff #enternew{display:none}#post-body-content .compat-attachment-fields{margin-bottom:20px}.compat-attachment-fields th{padding-top:5px;padding-right:10px}.revisions-control-frame,.revisions-diff-frame{position:relative}.revisions-controls{padding-top:40px;height:100px;z-index:1}.revisions-controls input[type="checkbox"]{position:relative;top:-1px;vertical-align:text-bottom}.revisions.pinned .revisions-controls{position:fixed;top:0;padding-bottom:10px}.revisions-controls .author-card .date{color:#777}.revisions-controls .author-card .avatar,.revisions-controls .author-card .author-info{float:left;margin-left:6px;margin-right:6px}.revisions-controls .author-card.autosave{color:#d54e21}.revisions-controls .author-card .author-name{font-weight:bold}.revisions-controls .author-card .byline{display:block;font-size:12px}.revisions-controls .author-card .avatar{vertical-align:middle}.revisions-controls .wp-slider{max-width:70%;margin:0 auto;top:-3px}.revisions-tickmarks{position:relative;margin:0 auto;height:.8em;top:7px;max-width:70%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div{position:absolute;height:100%;border-style:solid;border-width:0 1px 0 0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.revisions-tickmarks>div:first-child{border-width:0}.comparing-two-revisions .revisions-controls{height:140px}.revisions .diff-error{position:absolute;text-align:center;margin:0 auto;width:100%;display:none}.revisions.diff-error .diff-error{display:block}.revisions .loading-indicator{position:fixed;vertical-align:middle;opacity:0;width:100%;top:50%;margin-left:-90px;-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s;filter:alpha(opacity=0)}body.folded .revisions .loading-indicator{margin-left:-32px}.revisions .loading-indicator span.spinner{display:block;margin:0 auto;float:none}.revisions.loading .loading-indicator{opacity:1;filter:alpha(opacity=100)}.revisions .diff{-webkit-transition:opacity .5s;-moz-transition:opacity .5s;-ms-transition:opacity .5s;-o-transition:opacity .5s;transition:opacity .5s}.revisions.loading .diff{opacity:.5;filter:alpha(opacity=50)}.revisions.diff-error .diff{visibility:hidden}.revisions-meta{margin-top:15px}.revision-toggle-compare-mode{position:absolute;top:0;right:0}.comparing-two-revisions .revisions-previous,.comparing-two-revisions .revisions-next,.revisions-meta .diff-meta-to strong{display:none}.comparing-two-revisions .diff-meta-to strong{display:block}.revisions-previous,.revisions-next{position:relative;z-index:1}.revisions-previous{float:left}.revisions-next{float:right}.post-revisions li img,#revisions-meta-restored img{vertical-align:middle}table.diff{table-layout:fixed;width:100%;white-space:pre-wrap;word-wrap:break-word}table.diff col.content{width:auto}table.diff col.content.diffsplit{width:48%}table.diff col.content.middle{width:auto}table.diff col.ltype{width:30px}table.diff tr{background-color:transparent}table.diff td,table.diff th{padding:.5em;font-family:Consolas,Monaco,monospace}table.diff .diff-deletedline del,table.diff .diff-addedline ins{text-decoration:none}.diff-meta{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;padding:5px;clear:both;min-height:32px}.diff-meta input.restore-revision{float:right;margin-left:6px;margin-right:6px;margin-top:4px}.diff-title strong{line-height:32px;min-width:60px;text-align:right;float:left;margin-right:5px}.diff-meta-from{display:none}.comparing-two-revisions .diff-meta-from{display:block}.revisions-tooltip{position:absolute;bottom:105px;margin-right:0;margin-left:-69px;z-index:0;max-width:350px;min-width:130px;padding:8px 4px;display:none;opacity:0}.revisions-tooltip.flipped{margin-left:0;margin-right:-70px}.revisions-tooltip.flipped .revisions-tooltip-arrow{margin-left:0;margin-right:35px;left:auto;right:0}.ie8 .revisions-tooltip.flipped .revisions-tooltip-arrow>span{right:25px}.revisions.pinned .revisions-tooltip{display:none!important}.comparing-two-revisions .revisions-tooltip{bottom:145px}.revisions-tooltip-arrow{width:70px;height:15px;overflow:hidden;position:absolute;left:0;margin-left:35px;bottom:-15px}.revisions-tooltip-arrow>span{content:"";position:absolute;left:20px;top:-20px;width:25px;height:25px;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);tranform:rotate(45deg)}.revisions-tooltip.flipped .revisions-tooltip-arrow>span{left:auto;right:20px}.ie8 .revisions-tooltip-arrow>span{left:15px;top:-25px;-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(SizingMethod='auto expand', M11=0.7071067811865476, M12=-0.7071067811865475, M21=0.7071067811865475, M22=0.7071067811865476)"}.revisions-tooltip,.revisions-tooltip-arrow>span{border-width:1px;border-style:solid}div.revisions-controls>.wp-slider>.ui-slider-handle{margin-left:-10px}.wp-slider.ui-slider{position:relative;border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;text-align:left;cursor:pointer}.wp-slider .ui-slider-handle{position:absolute;z-index:2;margin-top:-3px;width:19px;height:19px;border-width:1px;border-style:solid;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%}.wp-slider .ui-slider-handle:before{content:"";position:absolute;top:6px;left:3px;height:8px;width:13px;background:url(../images/arrows-pr.png) no-repeat -2px -47px}.wp-slider .ui-slider-handle.from-handle:before,.wp-slider .ui-slider-handle.to-handle:before{height:8px;width:7px}.wp-slider .ui-slider-handle.from-handle:before{background-position:-5px -84px;left:7px}.wp-slider .ui-slider-handle.to-handle:before{background-position:-4px -65px;left:5px}.wp-slider .ui-slider-range{position:absolute;font-size:.7em;display:block;border:0;background-color:transparent;background-image:none}.wp-slider.ui-slider-horizontal{height:.8em}.wp-slider.ui-slider-horizontal .ui-slider-handle{top:-0.25em;margin-left:-0.6em}.wp-slider.ui-slider-horizontal .ui-slider-range{top:0;height:100%}.wp-slider.ui-slider-horizontal .ui-slider-range-min{left:0}.wp-slider.ui-slider-horizontal .ui-slider-range-max{right:0}#select-featured-image{padding:4px 0;overflow:hidden}#select-featured-image img{max-width:100%;height:auto;margin-bottom:10px}#select-featured-image a{float:left;clear:both}#select-featured-image .remove{display:none;margin-top:10px}.js #select-featured-image.has-featured-image .remove{display:inline-block}.no-js #select-featured-image .choose{display:none}a.post-state-format{overflow:hidden;display:inline-block;vertical-align:middle;height:16px;width:16px;margin-right:5px;background-repeat:no-repeat;text-indent:-999em}#post-formats-select{line-height:2em}.post-format-icon{margin-left:5px;padding:2px 0 2px 21px;line-height:2em}.post-format-icon.post-format-standard{background-position:0 0}.post-format-icon.post-format-image{background-position:0 -32px}.post-format-icon.post-format-gallery{background-position:0 -64px}.post-format-icon.post-format-audio{background-position:0 -96px}.post-format-icon.post-format-video{background-position:0 -128px}.post-format-icon.post-format-chat{background-position:0 -160px}.post-format-icon.post-format-status{background-position:0 -192px}.post-format-icon.post-format-aside{background-position:0 -224px}.post-format-icon.post-format-quote{background-position:0 -256px}.post-format-icon.post-format-link{background-position:0 -288px}.category-adder{margin-left:120px;padding:4px 0}.category-adder h4{margin:0 0 8px}#side-sortables .category-adder{margin:0}#post-body ul.add-menu-item-tabs{float:left;width:120px;text-align:right;margin:0 -120px 0 5px;padding:0}#post-body ul.add-menu-item-tabs li{padding:8px}#post-body ul.add-menu-item-tabs li.tabs{border-top-left-radius:3px;border-bottom-left-radius:3px;-moz-border-top-left-radius:3px;-moz-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px}.wp-tab-panel,.categorydiv div.tabs-panel,.customlinkdiv div.tabs-panel,.posttypediv div.tabs-panel,.taxonomydiv div.tabs-panel{min-height:42px;max-height:200px;overflow:auto;padding:0 .9em;border-style:solid;border-width:1px}div.tabs-panel-active{display:block}div.tabs-panel-inactive{display:none}#front-page-warning,#front-static-pages ul,ul.export-filters,.inline-editor ul.cat-checklist ul,.categorydiv ul.categorychecklist ul,.customlinkdiv ul.categorychecklist ul,.posttypediv ul.categorychecklist ul,.taxonomydiv ul.categorychecklist ul{margin-left:18px}ul.categorychecklist li{margin:0;padding:0;line-height:19px;word-wrap:break-word}.categorydiv .tabs-panel,.customlinkdiv .tabs-panel,.posttypediv .tabs-panel,.taxonomydiv .tabs-panel{border-width:3px;border-style:solid}.form-wrap p,.form-wrap label{font-size:11px}.form-wrap label{display:block;padding:2px;font-size:12px}.form-wrap .form-field{margin:0 0 10px;padding:8px 0}.form-wrap .form-field #parent{max-width:100%}.form-field input,.form-field textarea{border-style:solid;border-width:1px;width:95%}p.description,.form-wrap p{margin:2px 0 5px}p.help,p.description,span.description,.form-wrap p{font-size:12px;font-style:italic;font-family:sans-serif}.col-wrap h3{margin:12px 0;font-size:1.1em}.col-wrap p.submit{margin-top:-10px}#poststuff .taghint{color:#aaa;margin:15px 0 -24px 12px}.ajaxtag .newtag{position:relative}.tagsdiv .newtag{width:180px}.tagsdiv .the-tags{display:block;height:60px;margin:0 auto;overflow:auto;width:260px}#post-body-content .tagsdiv .the-tags{margin:0 5px}#poststuff .tagsdiv .howto{margin:0 0 6px 8px}p.popular-tags{border-radius:8px;-moz-border-radius:8px;-webkit-border-radius:8px;border-width:1px;border-style:solid;line-height:2em;max-width:1000px;padding:8px 12px 12px;text-align:justify}p.popular-tags a{padding:0 3px}.tagcloud{width:97%;margin:0 0 40px;text-align:justify}.tagcloud h3{margin:2px 0 12px}.ac_results{padding:0;margin:0;list-style:none;position:absolute;z-index:10000;display:none;border-width:1px;border-style:solid}.ac_results li{padding:2px 5px;white-space:nowrap;text-align:left}.ac_over{cursor:pointer}.ac_match{text-decoration:underline}table.links-table{width:100%}.links-table th{font-weight:normal;text-align:left;vertical-align:top;min-width:80px;width:20%;word-wrap:break-word}.links-table th,.links-table td{padding:5px 0}.links-table td label{margin-right:8px}.links-table td input[type="text"],.links-table td textarea{width:100%}.links-table #link_rel{max-width:280px}.media-item .describe{border-collapse:collapse;width:100%;border-top-style:solid;border-top-width:1px;clear:both;cursor:default}.media-item .describe td{padding:0 8px 8px 0;vertical-align:top}.media-item .describe th{vertical-align:top;text-align:left;padding:5px 10px 10px;width:140px}.align .media-item .describe th{padding-top:0}.media-item .describe input[type="text"],.media-item .describe textarea{width:460px}.media-item .describe p.help{margin:0;padding:0 0 0 5px}.media-item.media-blank .describe{border:0}.media-item .media-item-info tr{background-color:transparent}.media-item thead.media-item-info td{padding:4px 10px 0}.media-item .media-item-info .A1B1{padding:0 0 0 10px}.media-item td.savesend{padding-bottom:15px}.media-item .thumbnail{max-height:128px;max-width:128px}.media-item .filename{line-height:36px;overflow:hidden;padding:0 10px}.media-item .error-div{padding-left:10px}.media-item .pinkynail{float:left;margin:2px 2px 0;max-width:40px;max-height:32px}.media-item .startopen,.media-item .startclosed{display:none}.media-item .original{position:relative;height:34px}.media-item .progress{float:right;height:22px;margin:6px 10px 0 0;width:200px;line-height:2em;padding:0;overflow:hidden;margin-bottom:2px;border:1px solid #d1d1d1;background:#f7f7f7;background-image:-webkit-gradient(linear,left bottom,left top,from(#fff),to(#f7f7f7));background-image:-webkit-linear-gradient(bottom,#fff,#f7f7f7);background-image:-moz-linear-gradient(bottom,#fff,#f7f7f7);background-image:-o-linear-gradient(bottom,#fff,#f7f7f7);background-image:linear-gradient(to top,#fff,#f7f7f7);border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;-moz-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);-webkit-box-shadow:inset 0 0 3px rgba(0,0,0,0.1);box-shadow:inset 0 0 3px rgba(0,0,0,0.1)}.media-item .bar{z-index:9;width:0;height:100%;margin-top:-24px;background:#8cc1e9;background-image:-webkit-gradient(linear,left bottom,left top,from(#72a7cf),to(#8cc1e9));background-image:-webkit-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-moz-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:-o-linear-gradient(bottom,#72a7cf,#8cc1e9);background-image:linear-gradient(to top,#72a7cf,#8cc1e9);border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;-moz-box-shadow:0 0 3px rgba(0,0,0,0.3);-webkit-box-shadow:0 0 3px rgba(0,0,0,0.3);box-shadow:0 0 3px rgba(0,0,0,0.3)}.media-item .progress .percent{z-index:10;position:relative;width:200px;padding:0 8px;text-shadow:0 1px 0 rgba(255,255,255,0.4);color:rgba(0,0,0,0.6)}#wpbody-content #async-upload-wrap a{display:none}.media-upload-form{margin-top:20px}.media-upload-form td label{margin-right:6px;margin-left:2px}.media-upload-form .align .field label{display:inline;padding:0 0 0 23px;margin:0 1em 0 3px;font-weight:bold}.media-upload-form tr.image-size label{margin:0 0 0 5px;font-weight:bold}.media-upload-form th.label label{font-size:13px;font-weight:bold;line-height:normal;margin:.5em}.media-upload-form th.label label span{padding:0 5px}abbr.required{border:medium none;text-decoration:none}.media-item .edit-attachment,.describe-toggle-on,.describe-toggle-off{display:block;line-height:36px;float:right;margin-right:15px}.media-item .describe-toggle-off,.media-item.open .describe-toggle-on{display:none}.media-item.open .describe-toggle-off{display:block}#media-items .media-item{border-style:solid;border-width:1px;min-height:36px;position:relative;margin-top:-1px;width:100%}#media-items{width:623px}.media-new-php #media-items{margin:1em 0}#media-items:empty{border:0 none}.upload-php .fixed .column-parent{width:15%}.js .html-uploader #plupload-upload-ui{display:none}.js .html-uploader #html-upload-ui{display:block}.media-upload-form .media-item.error{margin:0;padding:0}.media-upload-form .media-item.error p,.media-item .error-div{line-height:16px;margin:5px 10px;padding:0}.media-item .error-div a.dismiss{display:block;float:right;margin:5px 4px 0 15px}.find-box{width:600px;height:300px;overflow:hidden;padding:33px 0 51px;position:absolute;z-index:1000}.find-box-head{cursor:move;font-weight:bold;height:2em;line-height:2em;padding:1px 12px;position:absolute;top:5px;width:100%}.find-box-inside{overflow:auto;padding:6px;height:100%}.find-box-search{overflow:hidden;padding:9px;position:relative}.find-box-search .spinner{float:none;left:125px;position:absolute;top:9px}#find-posts-input{float:left;width:140px;height:24px}#find-posts-search{float:left;margin:1px 4px 0 3px}#find-posts-response{margin:8px 0;padding:0 1px 6px}#find-posts-response table{width:100%}#find-posts-response .found-radio{padding:3px 0 0 8px;width:15px}.find-box-buttons{padding:8px;overflow:hidden}.find-box #resize-se{position:absolute;right:1px;bottom:1px}.ui-find-overlay{position:absolute;top:0;left:0;background-color:black;opacity:.6;filter:alpha(opacity=60)}ul#dismissed-updates{display:none}form.upgrade{margin-top:8px}form.upgrade .hint{font-style:italic;font-size:85%;margin:-0.5em 0 2em 0}#poststuff .inside .the-tagcloud{margin:5px 0 10px;padding:8px;border-width:1px;border-style:solid;line-height:1.8em;word-spacing:3px;border-radius:6px;-moz-border-radius:6px;-webkit-border-radius:6px}.drag-drop #drag-drop-area{border:4px dashed #ddd;height:200px}.drag-drop .drag-drop-inside{margin:70px auto 0;width:250px}.drag-drop-inside p{color:#aaa;font-size:14px;margin:5px 0;display:none}.drag-drop .drag-drop-inside p{text-align:center}.drag-drop-inside p.drag-drop-info{font-size:20px}.drag-drop .drag-drop-inside p,.drag-drop-inside p.drag-drop-buttons{display:block}.drag-drop.drag-over #drag-drop-area{border-color:#83b4d8}#plupload-upload-ui{position:relative}.describe .image-editor{vertical-align:top}.imgedit-wrap{position:relative}.imgedit-settings p{margin:8px 0}.post-php .imgedit-wrap table{width:100%}.describe .imgedit-wrap table td,.wp_attachment_holder .imgedit-wrap table td{vertical-align:top;padding-top:0}.describe .imgedit-wrap table td.imgedit-settings{padding:0 5px}.wp_attachment_holder .imgedit-wrap table td.imgedit-settings{width:250px}td.imgedit-settings input{margin-top:0;vertical-align:middle}.imgedit-wait{position:absolute;top:0;background:#fff url(../images/wpspin_light.gif) no-repeat scroll 22px 10px;background-size:16px 16px;opacity:.7;filter:alpha(opacity=70);width:100%;height:500px;display:none}.spinner{background:url(../images/wpspin_light.gif) no-repeat;background-size:16px 16px;display:none;float:right;opacity:.7;filter:alpha(opacity=70);width:16px;height:16px;margin:5px 5px 0}.no-float{float:none}.media-disabled,.imgedit-settings .disabled{color:grey}.wp_attachment_image,.A1B1{overflow:hidden}.wp_attachment_image .button,.A1B1 .button{float:left}.no-js .wp_attachment_image .button{display:none}.wp_attachment_image .spinner,.A1B1 .spinner{float:left;padding:0 4px 4px;vertical-align:bottom}.imgedit-menu{margin:0 0 12px;min-width:300px}.imgedit-menu div{float:left;width:32px;height:32px}.imgedit-crop-wrap{position:relative}.imgedit-crop{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -9px -31px;margin:0 8px 0 0}.imgedit-crop.disabled:hover{background-position:-9px -31px}.imgedit-crop:hover{background-position:-9px -1px}.imgedit-rleft{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -46px -31px;margin:0 3px}.imgedit-rleft.disabled:hover{background-position:-46px -31px}.imgedit-rleft:hover{background-position:-46px -1px}.imgedit-rright{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -77px -31px;margin:0 8px 0 3px}.imgedit-rright.disabled:hover{background-position:-77px -31px}.imgedit-rright:hover{background-position:-77px -1px}.imgedit-flipv{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -115px -31px;margin:0 3px}.imgedit-flipv.disabled:hover{background-position:-115px -31px}.imgedit-flipv:hover{background-position:-115px -1px}.imgedit-fliph{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -147px -31px;margin:0 8px 0 3px}.imgedit-fliph.disabled:hover{background-position:-147px -31px}.imgedit-fliph:hover{background-position:-147px -1px}.imgedit-undo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -184px -31px;margin:0 3px}.imgedit-undo.disabled:hover{background-position:-184px -31px}.imgedit-undo:hover{background-position:-184px -1px}.imgedit-redo{background:transparent url('../images/imgedit-icons.png') no-repeat scroll -215px -31px;margin:0 8px 0 3px}.imgedit-redo.disabled:hover{background-position:-215px -31px}.imgedit-redo:hover{background-position:-215px -1px}.imgedit-applyto img{margin:0 8px 0 0}.imgedit-group-top{margin:5px 0}.imgedit-applyto .imgedit-label{padding:2px 0 0;display:block}.imgedit-help{display:none;font-style:italic;margin-bottom:8px}a.imgedit-help-toggle{text-decoration:none}.form-table td.imgedit-response{padding:0}.imgedit-submit{margin:8px 0}.imgedit-submit-btn{margin-left:20px}.imgedit-wrap .nowrap{white-space:nowrap}span.imgedit-scale-warn{color:red;font-size:20px;font-style:normal;visibility:hidden;vertical-align:middle}.imgedit-group{border-width:1px;border-style:solid;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px;margin-bottom:8px;padding:2px 10px}.form-table{border-collapse:collapse;margin-top:.5em;width:100%;margin-bottom:-8px;clear:both}.form-table td{margin-bottom:9px;padding:8px 10px;line-height:20px;font-size:12px}.form-table td p{margin-top:4px}.color-palette .form-table td{border-width:1px 1px 0;border-style:solid solid none;height:10px;line-height:20px;width:10px}.form-table th{vertical-align:top;text-align:left;padding:10px;width:200px}.form-table th.th-full{width:auto}.form-table div.color-option{display:block;clear:both;margin-top:12px}.form-table input.tog{margin-top:2px;margin-right:2px;float:left}.form-table table.color-palette{vertical-align:bottom;float:left;margin:-12px 3px 11px}.form-table th,.form-wrap label{font-weight:normal;text-shadow:#fff 0 1px 0}.commentlist li{padding:1em 1em .2em;margin:0;border-bottom-width:1px;border-bottom-style:solid}.commentlist li li{border-bottom:0;padding:0}.commentlist p{padding:0;margin:0 0 .8em}.commentlist .avatar{vertical-align:text-top}#replyrow input{border-width:1px;border-style:solid}#replyrow td{padding:2px}#replyrow h5{margin:.2em 0 0;padding:0 5px;line-height:1.4em;font-size:1em}#replysubmit{margin:0;padding:0 5px 3px;text-align:center}#replysubmit .spinner{padding:2px 0 0;vertical-align:top;float:right}#replysubmit .button{margin-right:5px}#replysubmit .error{color:red;line-height:21px;text-align:center}#edithead .inside{float:left;padding:3px 0 2px 5px;margin:0;text-align:center}#edithead .inside input{width:180px}#edithead label{padding:2px 0}#replycontainer{padding:5px}#replycontent{height:120px;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.comment-php .wp-editor-area{height:200px}.comment-ays{margin-bottom:0;border-style:solid;border-width:1px}.comment-ays th{border-right-style:solid;border-right-width:1px}.trash-undo-inside,.spam-undo-inside{margin:1px 8px 1px 0;line-height:16px}.trash-undo-inside .avatar,.spam-undo-inside .avatar{height:20px;width:20px;margin-right:8px;vertical-align:middle}.stuffbox .editcomment{clear:none}#comment-status-radio p{margin:3px 0 5px}#comment-status-radio input{margin:2px 3px 5px 0;vertical-align:middle}#comment-status-radio label{padding:5px 0}.theme-install-php .tablenav{height:auto}.theme-install-php .spinner{margin-top:9px}h3.available-themes{margin:.3em 0 1em;float:left}.available-theme{display:inline-block;margin-right:10px;overflow:hidden;padding:20px 20px 20px 0;vertical-align:top;width:300px}.available-theme .screenshot{width:300px;height:225px;display:block;border-width:1px;border-style:solid;margin-bottom:10px;overflow:hidden}.available-theme img{width:300px}.available-theme h3{margin:15px 0 0}.available-theme .theme-author{line-height:18px}.available-theme .action-links{margin-top:10px;overflow:hidden}.available-theme a.screenshot:focus{border-color:#777}#current-theme .theme-info li,.theme-options li,.available-theme .action-links li{float:left;padding-right:10px;margin-right:10px;border-right:1px solid #dfdfdf}#current-theme .theme-info li:last-child,.theme-options li:last-child,.available-theme .action-links li:last-child{padding-right:0;margin-right:0;border-right:0}.available-theme .action-links li{padding-right:8px;margin-right:8px}.ie8 .available-theme .action-links li{padding-right:7px;margin-right:7px}.available-theme .action-links .delete-theme{float:right;margin-left:8px;margin-right:0}.available-theme .action-links .delete-theme a{color:red;padding:2px}.available-theme .action-links .delete-theme a:hover{background:red;color:white;text-decoration:none}.available-theme .action-links p{float:left}#current-theme{margin:20px 0 10px;padding:0 0 20px;border-bottom-width:1px;border-bottom-style:solid;overflow:hidden}#current-theme.has-screenshot{padding-left:330px}#current-theme h3{margin:0;font-size:12px;font-weight:normal;color:#999}#current-theme h4{margin:3px 0 16px;font-size:20px}#current-theme h4 span{margin-left:20px;font-size:12px;font-weight:normal}#current-theme a{border-bottom:0}#current-theme .theme-info{margin:1em 0;overflow:hidden}#current-theme .theme-description{margin-top:5px;max-width:600px;line-height:1.6em}#current-theme img{float:left;width:300px;margin-left:-330px;border-width:1px;border-style:solid}.theme-options{overflow:hidden;font-size:14px;padding-bottom:10px}.theme-options .load-customize{margin-right:30px;float:left}.theme-options span{float:left;margin-right:10px;text-transform:uppercase;font-size:11px;line-height:18px;color:#999}.theme-options ul{float:left;margin:0}@media only screen and (max-width:1200px){.folded .available-theme,.folded .available-theme .screenshot{width:300px}.folded .available-theme .screenshot{height:225px}.folded #current-theme img{width:300px;margin-left:-330px}.folded #current-theme.has-screenshot{padding-left:330px}}@media only screen and (max-width:1079px){.folded .available-theme,.folded .available-theme .screenshot{width:270px}.folded .available-theme .screenshot{height:203px}.folded #current-theme img{width:270px;margin-left:-300px}.folded #current-theme.has-screenshot{padding-left:300px}}@media only screen and (max-width:1200px){.available-theme,.available-theme .screenshot,#current-theme img{width:240px}.available-theme .screenshot{height:180px}.available-theme img{width:100%}#current-theme.has-screenshot{padding-left:270px}#current-theme img{margin-left:-270px}}#post-body ul.add-menu-item-tabs li.tabs a,#TB_window #TB_title a.tb-theme-preview-link,#TB_window #TB_title a.tb-theme-preview-link:visited{font-weight:bold;text-decoration:none}#TB_window #TB_title{background-color:#222;color:#cfcfcf}#broken-themes{text-align:left;width:50%;border-spacing:3px;padding:3px}.theme-install-php h4{margin:2.5em 0 8px}.appearance_page_custom-header #headimg{border:1px solid #dfdfdf;overflow:hidden;width:100%}.appearance_page_custom-header #upload-form p label{font-size:12px}.appearance_page_custom-header .available-headers .default-header{float:left;margin:0 20px 20px 0}.appearance_page_custom-header .random-header{clear:both;margin:0 20px 20px 0;vertical-align:middle}.appearance_page_custom-header .available-headers label input,.appearance_page_custom-header .random-header label input{margin-right:10px}.appearance_page_custom-header .available-headers label img{vertical-align:middle}div#custom-background-image{min-height:100px;border:1px solid #dfdfdf}div#custom-background-image img{max-width:400px;max-height:300px}.nav-tab{border-style:solid;border-width:1px 1px 0;color:#aaa;text-shadow:#fff 0 1px 0;font-size:12px;line-height:16px;display:inline-block;padding:4px 14px 6px;text-decoration:none;margin:0 6px -1px 0;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}h2 .nav-tab{padding:4px 10px 6px;font-weight:200;font-size:20px;line-height:24px}.nav-tab-active{border-width:1px;color:#464646}h2.nav-tab-wrapper,h3.nav-tab-wrapper{border-bottom-width:1px;border-bottom-style:solid;padding-bottom:0}#dashboard_right_now .versions .b,#post-status-display,#post-visibility-display,#adminmenu .wp-submenu li.current,#adminmenu .wp-submenu li.current a,#adminmenu .wp-submenu li.current a:hover,.media-item .percent,.plugins .name,#pass-strength-result.strong,#pass-strength-result.short,#ed_reply_toolbar #ed_reply_strong,.item-controls .item-order a,.feature-filter .feature-name{font-weight:bold}.plugins p{margin:0 4px;padding:0}.desc .plugins p{margin:0 0 8px}.plugins td.desc{line-height:1.5em}.plugins .desc ul,.plugins .desc ol{margin:0 0 0 2em}.plugins .desc ul{list-style-type:disc}.plugins .row-actions-visible{padding:0}.plugins tbody th.check-column{padding:7px 0}.plugins .inactive td,.plugins .inactive th,.plugins .active td,.plugins .active th{border-top-style:solid;border-top-width:1px;padding:5px 7px 0}.plugins .update th,.plugins .update td{border-bottom:0}#wpbody-content .plugins .plugin-title,#wpbody-content .plugins .theme-title{padding-right:12px;white-space:nowrap}.plugins .second,.plugins .row-actions-visible{padding:0 0 5px}.plugins .update .second,.plugins .update .row-actions-visible{padding-bottom:0}.plugin-update-tr td{border-top:0}.plugins-php .widefat tfoot th,.plugins-php .widefat tfoot td{border-top-style:solid;border-top-width:1px}.plugin-update-tr .update-message{margin:5px;padding:3px 5px}.plugin-install-php h4{margin:2.5em 0 8px}#profile-page .form-table textarea{width:500px;margin-bottom:6px}#profile-page .form-table #rich_editing{margin-right:5px}#your-profile legend{font-size:22px}#your-profile #rich_editing{border:0}#display_name{width:15em}#createuser .form-field input{width:25em}#utc-time,#local-time{padding-left:25px;font-style:italic;font-family:sans-serif}.defaultavatarpicker .avatar{margin:2px 0;vertical-align:middle}.options-general-php .spinner{float:none;margin:-3px 3px}#wpfooter{position:absolute;bottom:0;left:0;right:0;padding:10px 0;margin-right:20px;border-top-width:1px;border-top-style:solid}#wpfooter p{margin:0;line-height:20px}#wpfooter a{text-decoration:none}#wpfooter a:hover{text-decoration:underline}.wp-badge{padding-top:142px;height:50px;width:173px;font-size:14px;font-weight:bold;line-height:normal;text-align:center;margin:0 -5px;background:url('../images/wp-badge.png?ver=20111120') no-repeat}.about-wrap{position:relative;margin:25px 40px 0 20px;max-width:1050px;font-size:15px}.about-wrap div.updated,.about-wrap div.error{display:none!important}.about-wrap p{line-height:1.6em}.about-wrap h1{margin:.2em 200px 0 0;line-height:1.2em;font-size:2.8em;font-weight:200}.about-wrap h3{font-size:24px;margin-bottom:1em;padding-top:20px}.about-wrap code{font-size:14px}.about-wrap li.wp-person a.web{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:20px;font-weight:normal;line-height:1.6em}.about-wrap .point-releases{margin-top:5px}.about-wrap .changelog.point-releases h3{padding-top:35px}.about-wrap .changelog.point-releases h3:first-child{padding-top:7px}.about-wrap .wp-badge{position:absolute;top:0;right:0}.about-wrap h2.nav-tab-wrapper{padding-left:6px}.about-wrap h2 .nav-tab{padding:4px 10px 6px;margin:0 3px -1px 0;font-size:18px;vertical-align:top}.about-wrap h2 .nav-tab-active{font-weight:bold;padding-top:3px}.about-wrap .feature-section{padding-bottom:20px}.about-wrap .feature-section h4{margin-bottom:.6em}.about-wrap .feature-section p{margin-top:.6em}.about-wrap .feature-section img,.about-wrap .feature-section .video{border:0;margin:0 1.94% 10px 0;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.about-wrap .feature-section .video video{max-width:100%}.about-wrap .feature-section.three-col img{margin:.5em 0 .5em 5px;max-width:100%;float:none}.about-wrap .feature-section.images-stagger-right img,.about-wrap .feature-section.images-stagger-right .video{float:right;margin:0 5px 12px 2em}.about-wrap .feature-section.images-stagger-left img{float:left;margin:0 2em 12px 5px}.about-wrap .feature-section .image-100{margin:0 0 2em 0;width:100%}.about-wrap .feature-section .image-66{width:65%}.about-wrap .feature-section .image-66.video{max-width:600px}.about-wrap .feature-section .image-50{max-width:50%}.about-wrap .feature-section img.image-30{max-width:31.2381%}.about-wrap .feature-section.col{margin-bottom:0}.about-wrap .feature-section.col h4{margin:0 0 .6em 0}.about-wrap .feature-section.col .last-feature{margin-right:0}.about-wrap .feature-section.two-col div,.about-wrap .feature-section.three-col div{margin-right:4.999999999%;float:left}.about-wrap .feature-section.two-col div{width:47%}.about-wrap .feature-section.three-col div{width:30%}.ie8 .about-wrap .feature-section.three-col img{margin-left:0}.ie8 .about-wrap .feature-section img{border-width:1px;border-style:solid}.about-wrap .images-stagger-right img.image-30:nth-child(2){margin-left:1em}.about-wrap .three-col-images{text-align:center}.about-wrap .three-col-images img{margin:0 0 10px}.about-wrap .three-col-images .last-feature{float:right}.about-wrap .three-col-images .first-feature{float:left}.about-wrap .changelog .feature-section{overflow:hidden}.about-wrap .changelog li{list-style-type:disc;margin-left:3em}.about-wrap .return-to-dashboard{margin:30px 0 0 -5px;font-size:14px;font-weight:bold;line-height:normal}.about-wrap .return-to-dashboard a{text-decoration:none;padding:0 5px}.about-wrap h4.wp-people-group{margin-top:2.6em;font-size:16px}.about-wrap ul.wp-people-group{overflow:hidden;padding:0 5px;margin:0 -15px 0 -5px}.about-wrap li.wp-person{float:left;margin-right:10px}.about-wrap li.wp-person img.gravatar{float:left;margin:0 10px 10px 0;padding:2px;width:60px;height:60px}.about-wrap ul.compact{margin-bottom:0}.about-wrap ul.compact li.wp-person img.gravatar{width:30px;height:30px}.about-wrap li.wp-person{height:70px;width:280px;padding-bottom:15px}ul.compact .about-wrap li.wp-person{height:auto;width:180px;padding-bottom:0;margin-bottom:0}.about-wrap li.wp-person a.web{display:block;margin:6px 0 2px;font-size:16px;text-decoration:none}.about-wrap #wp-people-group-validators+p.wp-credits-list{margin-top:0}.about-wrap p.wp-credits-list a{white-space:nowrap}.freedoms-php .about-wrap ol{margin:40px 60px}.freedoms-php .about-wrap ol li{list-style-type:decimal;font-weight:bold}.freedoms-php .about-wrap ol p{font-weight:normal;margin:.6em 0}.about-description{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:20px;font-weight:normal;line-height:1.6em;margin-top:1.4em}.about-text{font-family:"HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size:24px;font-weight:normal;line-height:1.6em;margin:1em 200px 1.4em 0;min-height:60px}@media only screen and (max-width:900px){.about-wrap .feature-section .images-stagger-left img,.about-wrap .feature-section .images-stagger-right img,.about-wrap .feature-section .images-stagger-right .video{clear:both}.about-wrap .feature-section .video.image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .video.image-66{margin-left:3px}}@media only screen and (max-width:768px){.about-wrap .feature-section .image-66{float:none;width:98%;max-width:98%}.about-wrap .feature-section.images-stagger-right .image-66{margin-left:3px}.about-wrap .feature-section.images-stagger-left .image-66{margin-right:3px}}body.full-overlay-active{overflow:hidden}.wp-full-overlay{background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%;min-width:0}.wp-full-overlay.expanded{margin-left:300px}.wp-full-overlay .close-full-overlay{text-decoration:none}.wp-full-overlay a.collapse-sidebar{position:absolute;bottom:12px;left:0;z-index:50;display:block;width:19px;height:19px;margin-left:15px;padding:0;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;text-decoration:none}.wp-full-overlay .collapse-sidebar-arrow{position:absolute;margin-top:2px;margin-left:2px;display:block;width:15px;height:15px;background:transparent url('../images/arrows.png') no-repeat -1px -73px}.wp-full-overlay .collapse-sidebar-label{position:absolute;left:100%;color:#808080;line-height:20px;margin-left:10px}.wp-full-overlay.collapsed .collapse-sidebar{position:absolute;left:100%}.wp-full-overlay.collapsed .collapse-sidebar-arrow{background-position:-1px -109px}.wp-full-overlay.collapsed .collapse-sidebar-label{display:none}.wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-label{color:#666}.wp-full-overlay-sidebar{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;position:fixed;width:300px;height:100%;top:0;bottom:0;left:0;padding:0;margin:0;z-index:10;overflow:auto;background:#f5f5f5;border-right:1px solid rgba(0,0,0,0.2)}.wp-full-overlay.collapsed .wp-full-overlay-sidebar{overflow:visible;margin-left:-300px}.wp-full-overlay-sidebar:after{content:'';display:block;position:absolute;top:0;bottom:0;right:0;width:3px;box-shadow:-5px 0 4px -4px rgba(0,0,0,0.1) inset;z-index:1000}.wp-full-overlay-sidebar .wp-full-overlay-header{position:absolute;left:0;right:0;height:45px;padding:0 20px;line-height:45px;z-index:10;margin:0;border-top:0;border-bottom:1px solid #fff;box-shadow:inset 0 -1px 0 0 #dfdfdf}.wp-full-overlay-sidebar .wp-full-overlay-footer{bottom:0;border-bottom:0;border-top:1px solid #dfdfdf;box-shadow:inset 0 1px 0 0 #fff}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content{position:absolute;top:45px;bottom:45px;left:0;right:0;overflow:auto}.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content .accordion-section:first-child{border-top:1px solid #fff}.wp-full-overlay.collapsed,.wp-full-overlay.expanded .wp-full-overlay-sidebar{margin-left:0!important}.wp-full-overlay-main{position:absolute;left:0;right:0;top:0;bottom:0;height:100%}.wp-full-overlay,.wp-full-overlay-sidebar,.wp-full-overlay .collapse-sidebar,.wp-full-overlay-main{-webkit-transition-property:left,right,top,bottom,width,margin;-moz-transition-property:left,right,top,bottom,width,margin;-ms-transition-property:left,right,top,bottom,width,margin;-o-transition-property:left,right,top,bottom,width,margin;transition-property:left,right,top,bottom,width,margin;-webkit-transition-duration:.2s;-moz-transition-duration:.2s;-ms-transition-duration:.2s;-o-transition-duration:.2s;transition-duration:.2s}.customize-support .hide-if-customize,.customize-support.wp-core-ui .hide-if-customize,.customize-support .wp-core-ui .hide-if-customize{display:none}.no-customize-support .hide-if-no-customize,.no-customize-support.wp-core-ui .hide-if-no-customize,.no-customize-support .wp-core-ui .hide-if-no-customize{display:none}#customize-container{display:none;background:#fff;z-index:500000;position:fixed;overflow:visible;top:0;bottom:0;left:0;right:0;height:100%}.customize-active #customize-container{display:block}.customize-loading #customize-container{background:#fff url("../images/wpspin_light.gif") no-repeat fixed center center;background-size:16px 16px}.customize-loading #customize-container iframe{opacity:0}#customize-container .collapse-sidebar{bottom:16px}#customize-container iframe,#theme-installer iframe{height:100%;width:100%;z-index:20;-webkit-transition:opacity .3s;-moz-transition:opacity .3s;-ms-transition:opacity .3s;-o-transition:opacity .3s;transition:opacity .3s}#theme-installer{display:none}#theme-installer.single-theme{display:block}.install-theme-info{display:none;padding:10px 20px 20px}.single-theme .install-theme-info{padding-top:15px}#theme-installer .install-theme-info{display:block}.install-theme-info .theme-install{float:right;margin-top:18px}.install-theme-info .theme-name{font-size:16px;line-height:24px;margin-bottom:0}.install-theme-info .theme-screenshot{margin-top:15px;width:258px;border:1px solid #ccc}.install-theme-info .theme-details{overflow:hidden}.theme-details .theme-version{margin:15px 0;float:left}.theme-details .star-holder{margin:14px 0;float:right}.theme-details .theme-description{float:left;color:#777;line-height:20px}#excerpt,.attachmentlinks{margin:0;height:4em;width:98%}#template div{margin-right:190px}p.pagenav{margin:0;display:inline}.pagenav span{font-weight:bold;margin:0 6px}.row-title{font-size:13px!important;font-weight:bold}.column-author img,.column-username img{float:left;margin-right:10px;margin-top:1px}.row-actions{visibility:hidden;padding:2px 0 0}.mobile .row-actions{visibility:visible}tr:hover .row-actions,div.comment-item:hover .row-actions{visibility:visible}.row-actions-visible{padding:2px 0 0}.form-table .pre{padding:8px;margin:0}table.form-table td .updated{font-size:13px}.tagchecklist{margin-left:14px;font-size:12px;overflow:auto}.tagchecklist strong{margin-left:-8px;position:absolute}.tagchecklist span{margin-right:25px;display:block;float:left;font-size:11px;line-height:1.8em;white-space:nowrap;cursor:default}.tagchecklist span a{margin:6px 0 0 -9px;cursor:pointer;width:10px;height:10px;display:block;float:left;text-indent:-9999px;overflow:hidden;position:absolute}#poststuff h2{margin-top:20px;font-size:1.5em;margin-bottom:15px;padding:0 0 3px;clear:left}#poststuff h3,.metabox-holder h3{font-size:12px;font-weight:normal;line-height:1;padding:7px 10px;margin:0}#poststuff .inside{margin:6px 0 8px}#poststuff .inside #parent_id,#poststuff .inside #page_template{max-width:100%}.inline-edit-row #post_parent,.inline-edit-row select[name="page_template"]{max-width:80%}.ie8 #poststuff .inside #parent_id,.ie8 #poststuff .inside #page_template,.ie8 .inline-edit-row #post_parent,.ie8 .inline-edit-row select[name="page_template"]{width:250px}#post-visibility-select{line-height:1.5em;margin-top:3px}#poststuff #submitdiv .inside{margin:0;padding:0}.edit-form-section{margin-bottom:20px}#templateside ul li a{text-decoration:none}.tool-box .title{margin:8px 0;font-size:18px;font-weight:normal;line-height:24px}#sidemenu{margin:-30px 15px 0 315px;list-style:none;position:relative;float:right;padding-left:10px;font-size:12px}#sidemenu a{padding:0 7px;display:block;float:left;line-height:28px;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid}#sidemenu a.current{font-weight:normal;padding-left:6px;padding-right:6px;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;border-width:1px;border-style:solid}#sidemenu li{display:inline;line-height:200%;list-style:none;text-align:center;white-space:nowrap;margin:0;padding:0}#sidemenu li a .count-0{display:none}.plugin-install #description,.plugin-install-network #description{width:60%}table .vers,table .column-visible,table .column-rating{text-align:left}.error-message{color:red;font-weight:bold}body.iframe{height:98%}td.media-icon{text-align:center;width:80px;padding-top:8px;padding-bottom:8px}td.media-icon img{max-width:80px;max-height:60px}#howto{font-size:11px;margin:0 5px;display:block}.importers{font-size:16px;width:auto}.importers td{padding-right:14px}#namediv table{width:100%}#namediv td.first{width:10px;white-space:nowrap}#namediv input{width:98%}#namediv p{margin:10px 0}#submitdiv h3{margin-bottom:0!important}.zerosize{height:0;width:0;margin:0;border:0;padding:0;overflow:hidden;position:absolute}br.clear{height:2px;line-height:2px}.checkbox{border:0;margin:0;padding:0}fieldset{border:0;padding:0;margin:0}.post-categories{display:inline;margin:0;padding:0}.post-categories li{display:inline}#dashboard_right_now p.musub{margin-top:12px;border-top:1px solid #ececec;padding-left:16px;position:static}.rtl #dashboard_right_now p.musub{padding-left:0;padding-right:16px}#dashboard_right_now td.b a.musublink{font-size:16px}#dashboard_right_now div.musubtable{border-top:0}#dashboard_right_now div.musubtable .t{white-space:normal}.wp-list-table .site-deleted{background:#ff8573}.wp-list-table .site-spammed{background:#faafaa}.wp-list-table .site-archived{background:#ffebe8}.wp-list-table .site-mature{background:#fecac2}div.star-holder{position:relative;height:17px;width:100px;background:url('../images/stars.png?ver=20121108') repeat-x bottom left}div.star-holder .star-rating{background:url('../images/stars.png?ver=20121108') repeat-x top left;height:17px;float:left}div.action-links{font-weight:normal;margin:6px 0 0}#plugin-information-header{margin:0;padding:0 5px;font-weight:bold;position:relative;border-bottom-width:1px;border-bottom-style:solid;height:2.5em}#plugin-information ul#sidemenu{font-weight:normal;margin:0 5px;position:absolute;left:0;bottom:-1px}#plugin-information p.action-button{width:100%;padding-bottom:0;margin-bottom:0;margin-top:10px;border-top-left-radius:3px;border-bottom-left-radius:3px;-moz-border-top-left-radius:3px;-moz-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-bottom-left-radius:3px}#plugin-information .action-button a{text-align:center;font-weight:bold;text-decoration:none;display:block;line-height:2em}#plugin-information h2{clear:none!important;margin-right:200px}#plugin-information .fyi{margin:0 10px 50px;width:210px}#plugin-information .fyi h2{font-size:.9em;margin-bottom:0;margin-right:0}#plugin-information .fyi h2.mainheader{padding:5px;-moz-border-top-left-radius:3px;-webkit-border-top-left-radius:3px;border-top-left-radius:3px}#plugin-information .fyi ul{padding:10px 5px 10px 7px;margin:0;list-style:none;-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}#plugin-information .fyi li{margin-right:0}#plugin-information #section-holder{padding:10px}#plugin-information .section ul,#plugin-information .section ol{margin-left:16px;list-style-type:square;list-style-image:none}#plugin-information #section-screenshots ol{list-style:none;margin:0}#plugin-information #section-screenshots li img{vertical-align:text-top;max-width:100%;width:auto;height:auto}#plugin-information #section-screenshots li p{font-style:italic;padding-left:20px;padding-bottom:2em}#plugin-information #section-screenshots ol,#plugin-information .updated,#plugin-information pre{margin-right:215px}#plugin-information pre{padding:7px;overflow:auto}#poststuff #editor-toolbar{height:30px}div.zerosize{border:0 none;height:0;margin:0;overflow:hidden;padding:0;width:0}.posting{margin-right:212px;position:relative}h3.tb{text-shadow:0 1px 0 #fff;font-size:12px;font-weight:bold;line-height:normal;margin-left:5px}#TB_window{border:1px solid #333}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv{background:transparent url(../images/arrows.png) no-repeat 6px 7px}.press-this #submitdiv:hover .handlediv{background:0}.tbtitle{font-size:1.7em;outline:0;padding:3px 4px;border-color:#dfdfdf}#extra-fields .button{margin-right:5px}#photo_saving{margin:0 8px 8px;vertical-align:middle}#img_container_container{overflow:auto}#extra-fields{margin-top:10px;position:relative}#extra-fields h2{margin:12px}#waiting{margin-top:10px;overflow:hidden}#waiting span{float:right;margin:0 0 0 5px}#waiting .spinner{display:block}#extra-fields .postbox{margin-bottom:5px}#extra-fields .titlewrap{padding:0;overflow:auto;height:100px}#img_container a{display:block;float:left;overflow:hidden}#img_container img,#img_container a{width:68px;height:68px}#img_container img{border:0;background-color:#f4f4f4;cursor:pointer}#img_container a,#img_container a:link,#img_container a:visited{border:1px solid #ccc;display:block;position:relative}#img_container a:hover,#img_container a:active{border-color:black;z-index:1000;border-width:2px;margin:-1px}#embed-code{width:100%;height:98px}#TB_ajaxContent #options{position:absolute;top:20px;right:25px;padding:5px}#TB_ajaxContent h3{margin-bottom:.25em}.error a{text-decoration:underline}.updated a{text-decoration:none;padding-bottom:2px}.taghint{color:#aaa;margin:-17px 0 0 7px;visibility:hidden}input.newtag ~ div.taghint{visibility:visible}input.newtag:focus ~ div.taghint{visibility:hidden}#mce_fullscreen_container{background:#fff}#photo-add-url-div input[type="text"]{width:300px}.alignleft h3{margin:0}h3 span{font-weight:normal}#template textarea{font-family:Consolas,Monaco,monospace;font-size:12px;width:97%;background:#f9f9f9;outline:0}#template p{width:97%}#templateside{float:right;width:190px;word-wrap:break-word}#templateside h3,#postcustomstuff p.submit{margin:0}#templateside h4{margin:1em 0 0}#templateside ol,#templateside ul{margin:.5em;padding:0}#templateside li{margin:4px 0}#templateside ul li a span.highlight{display:block}.nonessential{font-size:11px;font-style:italic;padding-left:12px}.highlight{padding:3px 3px 3px 12px;margin-left:-12px;font-weight:bold;border:0 none}#documentation{margin-top:10px}#documentation label{line-height:22px;vertical-align:top;font-weight:bold}.fileedit-sub{padding:10px 0 8px;line-height:180%}#filter-box{clear:both}.feature-filter{padding:8px 12px 0}.feature-filter .feature-group{float:left;margin:5px 10px 10px}.feature-filter .feature-group li{display:inline-block;vertical-align:top;list-style-type:none;padding-right:25px;width:150px}.feature-container{width:100%;overflow:auto;margin-bottom:10px}.ui-sortable,.ui-draggable{-ms-touch-action:none}.login *{margin:0;padding:0}.login h1 a{background-image:url('../images/wordpress-logo.png?ver=20120216');background-size:274px 63px;background-position:top center;background-repeat:no-repeat;width:326px;height:67px;text-indent:-9999px;outline:0;overflow:hidden;padding-bottom:15px;display:block}.login form{margin-left:8px;padding:26px 24px 46px;font-weight:normal;background:#fff;border:1px solid #e5e5e5;-webkit-box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px;box-shadow:rgba(200,200,200,0.7) 0 4px 10px -1px}.login form .forgetmenot{float:left;margin-bottom:0}.login form .forgetmenot label{font-size:12px;font-weight:normal;line-height:19px}.login .button-primary{float:right}.login label{color:#777;font-size:14px}.login #nav,.login #backtoblog{text-shadow:#fff 0 1px 0;margin:0 0 0 16px;padding:16px 16px 0}.login form .input,.login input[type="text"]{color:#555;font-weight:200;font-size:24px;line-height:1;width:100%;padding:3px;margin-top:2px;margin-right:6px;margin-bottom:16px;border:1px solid #e5e5e5;background:#fbfbfb;outline:0;-webkit-box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2);box-shadow:inset 1px 1px 2px rgba(200,200,200,0.2)}.login #pass-strength-result{width:250px;font-weight:bold;border-style:solid;border-width:1px;margin:12px 0 6px;padding:6px 5px;text-align:center}#login{width:320px;padding:114px 0 0;margin:auto}#login form p{margin-bottom:0}#login form p.submit{padding:0}#login_error,.login .message{margin:0 0 16px 8px;padding:12px}#backtoblog{padding:12px 16px 0}.mobile #login{padding:20px 0}.mobile #login #nav,.mobile #login #backtoblog{margin-left:8px}.mobile #login h1 a{width:auto}.mobile #login form,.mobile #login .message,.mobile #login_error{margin-left:0}body.interim-login{height:auto}.interim-login #login{padding:0;margin:5px auto 20px}.interim-login.login h1 a{width:auto}.interim-login #login_error,.interim-login.login .message{margin:0 0 16px}.interim-login.login form{margin:0}.pressthis{margin:20px 0}.pressthis a,.pressthis a:hover,.pressthis a:focus,.pressthis a:active{display:inline-block;position:relative;cursor:move;color:#333;background:#d8d8d8;background-image:-webkit-gradient(linear,left bottom,left top,color-stop(7%,#e6e6e6),color-stop(77%,#d8d8d8));background-image:-webkit-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-moz-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:-o-linear-gradient(bottom,#e6e6e6 7%,#d8d8d8 77%);background-image:linear-gradient(to top,#e6e6e6 7%,#d8d8d8);border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;border:1px solid #b4b4b4;font-style:normal;line-height:16px;font-size:14px;text-decoration:none;text-shadow:0 1px 0 #fff}.pressthis a:active{outline:0}.pressthis a:hover:after{-webkit-transform:skew(20deg) rotate(9deg);-moz-transform:skew(20deg) rotate(9deg);transform:skew(20deg) rotate(9deg);-moz-box-shadow:0 10px 8px rgba(0,0,0,0.7);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.7);box-shadow:0 10px 8px rgba(0,0,0,0.7)}.pressthis a span{background:url(../images/press-this.png?v=20120502) no-repeat 0 5px;background-size:24px 20px;padding:8px 11px 8px 27px;margin:0 5px;display:inline-block}.pressthis a:after{content:'';width:70%;height:55%;z-index:-1;position:absolute;right:10px;bottom:9px;background:transparent;-webkit-transform:skew(20deg) rotate(6deg);-moz-transform:skew(20deg) rotate(6deg);transform:skew(20deg) rotate(6deg);-webkit-box-shadow:0 10px 8px rgba(0,0,0,0.6);box-shadow:0 10px 8px rgba(0,0,0,0.6)}.pressthis #wphead{height:32px;margin-left:0;margin-right:0;margin-bottom:5px}.pressthis #wphead h1{font-size:16px;font-weight:normal;line-height:32px;margin:0;float:left}.pressthis #wphead h1 a{text-decoration:none}.pressthis #wphead h1 a:hover{text-decoration:underline}.pressthis #header-logo{float:left;margin:7px 7px 0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.pressthis #message{margin:10px 0}.pressthis #title{margin-left:0;margin-right:0;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.pressthis .tagchecklist span a{background:transparent url(../images/xit.gif) no-repeat 0 0}.pressthis #titlediv{margin:0}.pressthis .wp-media-buttons{cursor:default;padding:8px 8px 0}.pressthis .howto{margin-top:2px;margin-bottom:3px;font-size:12px;font-style:italic;display:block}.pressthis #poststuff{margin:0 10px 10px;padding:0}.pressthis #photo-add-url-div input[type="text"]{width:220px}.pressthis .inner-sidebar{width:200px}.pressthis .inner-sidebar .sleeve{padding-top:5px}.pressthis #submitdiv p{margin:0;padding:6px}.pressthis #submitdiv #publishing-actions{border-bottom:1px solid #dfdfdf}.pressthis #publish{float:right}.pressthis #poststuff h2,.pressthis #poststuff h3{font-size:14px;line-height:1}.pressthis #tagsdiv-post_tag h3,.pressthis #categorydiv h3{cursor:pointer}.pressthis #submitdiv h3{cursor:default}.pressthis .postbox,.pressthis .stuffbox{margin-bottom:10px;min-width:0}.pressthis .actions{float:right;margin:-19px 0 0}#extra-fields .pressthis .actions{margin:-32px -7px 0 0}.pressthis .actions li{float:left;list-style:none;margin-right:10px}.pressthis .categorydiv div.tabs-panel{height:100px}.pressthis .tagsdiv .newtag{width:120px}.pressthis #content{margin:5px 0;padding:0 5px;border:0 none;height:345px;font-family:Consolas,Monaco,monospace;font-size:13px;line-height:19px;background:transparent}.pressthis #publishing-actions .spinner{display:inline;vertical-align:middle}body.press-this{color:#333;margin:0;padding:0;min-width:675px;min-height:400px}.press-this-sidebar{float:right;width:200px;padding-top:10px}.no-js #message{display:block}#nav-menu-meta ul.outer-border{border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.accordion-section ul.category-tabs,.accordion-section ul.add-menu-item-tabs,.accordion-section ul.wp-tab-bar{margin:0}.accordion-section .categorychecklist{margin:13px 0}#nav-menu-meta .accordion-section-content{padding:18px 13px}#nav-menu-meta .button-controls{margin-bottom:0}#nav-menus-frame{margin-left:300px;margin-top:23px}#wpbody-content #menu-settings-column{display:inline;width:281px;margin-left:-300px;clear:both;float:left;padding-top:0}#menu-settings-column .inside{clear:both;margin:10px 0 0}.metabox-holder-disabled .postbox,.metabox-holder-disabled .accordion-section-content{opacity:.5;filter:alpha(opacity=50)}.metabox-holder-disabled .button-controls .select-all{display:none}#wpbody{position:relative}.blank-slate .menu-name{height:2em}.blank-slate .menu-settings{border:0;margin-top:0;padding-top:0;overflow:hidden}.is-submenu{font-style:italic;font-weight:normal;margin-left:4px}.manage-menus{margin-top:23px;padding:10px;overflow:hidden;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.manage-menus select{float:left;margin-right:6px}.manage-menus .selected-menu{float:left;margin:5px 6px 0 0}.manage-menus .submit-btn{float:left;margin-top:1px}.menu-edit p{margin:.3em 0 .6em}.menu-edit #post-body-content h3{margin:0 0 10px}.menu-edit .checkbox-input{margin-top:4px}.menu-settings{margin-top:2em;overflow:hidden}.menu-settings dl{margin:0 0 10px;overflow:hidden;position:relative}.menu-settings dd{float:left;margin:0;width:60%}.theme-location-set{font-size:11px}#menu-management-liquid{float:left;min-width:100%;margin-top:3px}#menu-management{position:relative;margin-right:20px;margin-top:-3px;width:100%}#menu-management .menu-edit{margin-bottom:20px}.nav-menus-php #post-body{padding:0 10px 10px;border-width:1px 0;border-style:solid}#nav-menu-header,#nav-menu-footer{padding:0 10px}#nav-menu-header{border-bottom:1px solid;margin-bottom:13px}#nav-menu-header .menu-name-label{margin-top:2px}#nav-menu-footer{border-top:1px solid}.nav-menus-php #post-body div.updated,.nav-menus-php #post-body div.error{margin:0}.nav-menus-php #post-body-content{position:relative;float:none}#menu-management .menu-add-new abbr{font-weight:bold}#select-nav-menu-container{text-align:right;padding:0 10px 3px 10px;margin-bottom:5px}#select-nav-menu{width:100px;display:inline}#menu-name-label{margin-top:-2px}.widefat td.menu-location-menus{padding-bottom:5px}.menu-location-menus select{float:left}#locations-nav-menu-wrapper{padding:5px 0}.locations-nav-menu-select select{float:left;width:160px;margin-right:5px}.locations-row-links{float:left;margin:6px 0 0 6px}.locations-edit-menu-link,.locations-add-menu-link{margin:0 3px}.locations-edit-menu-link{padding-right:3px;border-right:1px solid #ccc}#wpbody .open-label{display:block;float:left}#wpbody .open-label span{padding-right:10px}.js .input-with-default-title{font-style:italic}#menu-management .inside{padding:0 10px}.postbox .howto input,.accordion-container .howto input{width:180px;float:right}.accordion-container .outer-border{margin:0}#nav-menu-meta .accordion-container .top{border-top:1px solid #dfdfdf}#nav-menu-meta .accordion-container .accordion-section:first-child,#nav-menu-meta .accordion-container .accordion-section:first-child h3,#nav-menu-meta .accordion-container .top,#nav-menu-meta .accordion-container .top h3{border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}#nav-menu-meta .accordion-container .accordion-section:last-child,#nav-menu-meta .accordion-container .accordion-section:last-child .accordion-section-content,#nav-menu-meta .accordion-container .bottom,#nav-menu-meta .accordion-container .bottom:not(.open) h3{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.customlinkdiv .howto input{width:180px}.customlinkdiv p{margin-top:0}#nav-menu-theme-locations .howto select{width:100%}#nav-menu-theme-locations .button-controls{text-align:right}.add-menu-item-view-all{height:400px}#menu-container .submit{margin:0 0 10px;padding:0}.nav-menus-php .add-new-menu-action{float:left;margin:6px 0 0 6px;line-height:15px}.nav-menus-php .meta-sep,.nav-menus-php .submitdelete,.nav-menus-php .submitcancel{display:block;float:left;margin:4px 0;line-height:15px}.meta-sep{padding:0 2px}#cancel-save{text-decoration:underline;font-size:12px;margin-left:20px;margin-top:5px}.button.right,.button-secondary.right,.button-primary.right{float:right}.list-controls{float:left;margin-top:5px}.add-to-menu{float:right}#menu-name{width:270px}#manage-menu .inside{padding:0}#available-links dt{display:block}#add-custom-link .howto{font-size:12px}#add-custom-link label span{display:block;float:left;margin-top:5px;padding-right:5px}.menu-item-textbox{width:180px}.nav-menus-php .howto span{margin-top:4px;display:block;float:left}.quick-search{width:190px}.nav-menus-php .list-wrap{display:none;clear:both;margin-bottom:10px}.nav-menus-php .list-container{max-height:200px;overflow-y:auto;padding:10px 10px 5px}.nav-menus-php .postbox p.submit{margin-bottom:0}.nav-menus-php .list li{display:none;margin:0;margin-bottom:5px}.nav-menus-php .list li .menu-item-title{cursor:pointer;display:block}.nav-menus-php .list li .menu-item-title input{margin-right:3px;margin-top:-3px}#menu-container .inside{padding-bottom:10px}.menu{padding-top:1em}.menu ul{width:100%}.menu li{margin-bottom:0;position:relative}#menu-to-edit{margin:0;padding:.1em 0}.menu-item-bar{clear:both;line-height:1.5em;position:relative;margin:9px 0 0}.menu-item-handle{border:1px solid #dfdfdf;position:relative;padding-left:10px;height:auto;width:400px;line-height:35px;text-shadow:0 1px 0 #fff;overflow:hidden;word-wrap:break-word}#menu-to-edit .menu-item-invalid .menu-item-handle{background:#fdf8ff;background-image:-webkit-gradient(linear,left bottom,left top,from(#f6c9cc),to(#fdf8ff));background-image:-webkit-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-moz-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:-o-linear-gradient(bottom,#f6c9cc,#fdf8ff);background-image:linear-gradient(to top,#f6c9cc,#fdf8ff)}.menu-item-edit-active .menu-item-handle{border-bottom-left-radius:0;border-bottom-right-radius:0;-moz-border-bottom-left-radius:0;-moz-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0}.no-js .menu-item-edit-active .item-edit{display:none}.js .menu-item-handle{cursor:move}.menu li.deleting .menu-item-handle{background-image:none;text-shadow:0}.menu-item-handle .item-title{font-size:12px;font-weight:bold;padding:7px 0;line-height:20px;display:block;margin-right:13em}li.menu-item.ui-sortable-helper dl{margin-top:0}li.menu-item.ui-sortable-helper .menu-item-transport dl{margin-top:13px}.menu .sortable-placeholder{height:35px;width:410px;margin-top:13px}.menu-item-depth-0{margin-left:0}.menu-item-depth-1{margin-left:30px}.menu-item-depth-2{margin-left:60px}.menu-item-depth-3{margin-left:90px}.menu-item-depth-4{margin-left:120px}.menu-item-depth-5{margin-left:150px}.menu-item-depth-6{margin-left:180px}.menu-item-depth-7{margin-left:210px}.menu-item-depth-8{margin-left:240px}.menu-item-depth-9{margin-left:270px}.menu-item-depth-10{margin-left:300px}.menu-item-depth-11{margin-left:330px}.menu-item-depth-0 .menu-item-transport{margin-left:0}.menu-item-depth-1 .menu-item-transport{margin-left:-30px}.menu-item-depth-2 .menu-item-transport{margin-left:-60px}.menu-item-depth-3 .menu-item-transport{margin-left:-90px}.menu-item-depth-4 .menu-item-transport{margin-left:-120px}.menu-item-depth-5 .menu-item-transport{margin-left:-150px}.menu-item-depth-6 .menu-item-transport{margin-left:-180px}.menu-item-depth-7 .menu-item-transport{margin-left:-210px}.menu-item-depth-8 .menu-item-transport{margin-left:-240px}.menu-item-depth-9 .menu-item-transport{margin-left:-270px}.menu-item-depth-10 .menu-item-transport{margin-left:-300px}.menu-item-depth-11 .menu-item-transport{margin-left:-330px}body.menu-max-depth-0{min-width:950px!important}body.menu-max-depth-1{min-width:980px!important}body.menu-max-depth-2{min-width:1010px!important}body.menu-max-depth-3{min-width:1040px!important}body.menu-max-depth-4{min-width:1070px!important}body.menu-max-depth-5{min-width:1100px!important}body.menu-max-depth-6{min-width:1130px!important}body.menu-max-depth-7{min-width:1160px!important}body.menu-max-depth-8{min-width:1190px!important}body.menu-max-depth-9{min-width:1220px!important}body.menu-max-depth-10{min-width:1250px!important}body.menu-max-depth-11{min-width:1280px!important}.item-type{font-size:12px;padding-right:10px}.item-controls{font-size:12px;position:absolute;right:20px;top:-1px}.item-controls a{text-decoration:none}.item-controls a:hover{cursor:pointer}.item-controls .item-order{padding-right:10px}.nav-menus-php .item-edit{position:absolute;right:-20px;top:0;display:block;width:30px;height:36px;overflow:hidden;text-indent:-999em;border-bottom:1px solid;-moz-border-bottom-left-radius:3px;-webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px}.menu-instructions-inactive{display:none}.menu-item-settings{display:block;width:400px;padding:10px 0 10px 10px;border:solid;border-width:0 1px 1px 1px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.menu-item-settings .field-move a{display:none;margin:0 2px}.menu-item-edit-active .menu-item-settings{display:block}.menu-item-edit-inactive .menu-item-settings{display:none}.menu-item-settings .description-thin,.menu-item-settings .description-wide{margin-right:10px;float:left}.add-menu-item-pagelinks{margin:.5em auto;text-align:center}.link-to-original{display:block;margin:0 0 10px;padding:3px 5px 5px;font-size:12px;font-style:italic}.link-to-original a{padding-left:4px;font-style:normal}.hidden-field{display:none}.description-thin{width:190px;height:40px}.description-wide{width:390px}.menu-item-actions{padding-top:15px}#cancel-save{cursor:pointer}.nav-menus-php .major-publishing-actions{clear:both;padding:3px 0 5px}.nav-menus-php .major-publishing-actions .publishing-action{text-align:right;float:right;line-height:23px;margin:2px 0 1px}.nav-menus-php .major-publishing-actions .form-invalid{padding-left:4px;margin-left:-4px;border:0 none}.nav-menus-php .blank-slate .menu-settings{display:none}.nav-menus-php .delete-action{float:left;margin-top:2px}.nav-menus-php .submitbox .submitcancel{border-bottom:1px solid;padding:1px 2px;text-decoration:none}#menu-item-name-wrap:after,#menu-item-url-wrap:after,#menu-name-label:after,#menu-settings-column .inside:after,#nav-menus-frame:after,.nav-menus-php #post-body-content:after,.nav-menus-php .button-controls:after,.nav-menus-php .major-publishing-actions:after,.nav-menus-php .menu-item-settings:after{clear:both;content:".";display:block;height:0;visibility:hidden}#nav-menus-frame,.button-controls,#menu-item-url-wrap,#menu-item-name-wrap{display:block}div.widget-liquid-left{float:left;clear:left;width:100%;margin-right:-325px}div#widgets-left{margin-left:5px;margin-right:325px}div#widgets-right{width:285px;margin:0 auto}div.widget-liquid-right{float:right;clear:right;width:300px}.widget-liquid-right .widget,.inactive-sidebar .widget,.widget-liquid-right .sidebar-description{width:250px;margin:0 auto 20px;overflow:hidden}.widget-liquid-right .sidebar-description{margin-bottom:10px}.inactive-sidebar .widget{margin:0 10px 20px;display:inline-block}div.sidebar-name{font-size:13px;border-width:1px;border-style:solid;border-top-left-radius:3px;border-top-right-radius:3px;-moz-border-top-left-radius:3px;-moz-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px}div.sidebar-name h3{font-weight:normal;font-size:15px;margin:0;padding:8px 10px;overflow:hidden;white-space:nowrap}.js .sidebar-name{cursor:pointer}.js .closed .sidebar-name{border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.widget-liquid-right .widgets-sortables,#widgets-left .widget-holder{border-width:0 1px 1px;border-style:none solid solid;border-bottom-left-radius:3px;border-bottom-right-radius:3px;-moz-border-bottom-left-radius:3px;-moz-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-bottom-right-radius:3px}.js .closed .widgets-sortables,.js .closed .widget-holder{display:none}.widget-liquid-right .widgets-sortables{padding:15px 0 0}#available-widgets .widget-holder{padding:7px 5px 0}#available-widgets .widget{-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none}.inactive-sidebar{padding:5px 5px 0}#widget-list .widget{width:250px;margin:0 10px 15px;border:0 none;background:transparent;display:inline-block;vertical-align:top}#widget-list .widget-description{padding:5px 8px}.widget-placeholder{border-width:1px;border-style:dashed;margin:0 auto 20px;height:27px;width:250px}.inactive-sidebar .widget-placeholder{margin:0 10px 20px;float:left}div.widgets-holder-wrap{padding:0;margin:10px 0 20px}#widgets-left #available-widgets{background-color:transparent;border:0 none}ul#widget-list{list-style:none;margin:0;padding:0;min-height:100px}.widget .widget-top{margin-bottom:-1px;font-size:12px;font-weight:bold;line-height:26px;overflow:hidden}a.widget-action{display:block;width:24px;height:26px}#available-widgets a.widget-action{display:none}.widget-top .widget-title{padding:7px 9px}.widget-top .widget-title-action{float:right}.widget-top a.widget-action{background:transparent url(../images/arrows.png) no-repeat 4px 6px}.widget-top a.widget-action:hover{background:transparent url(../images/arrows-dark.png) no-repeat 4px 6px}.widget .widget-inside,.widget .widget-description{padding:12px 12px 10px;font-size:12px;line-height:16px}.widget-inside,.widget-description{display:none}#available-widgets .widget-description{display:block}.widget .widget-inside p{margin:0 0 1em;padding:0}.widget-title h4{margin:0;padding-bottom:.2em;line-height:1;overflow:hidden;white-space:nowrap}.widgets-sortables{min-height:90px}.widget-control-actions{margin-top:8px}.widget-control-actions a{text-decoration:none}.widget-control-actions a:hover{text-decoration:underline}.widget-control-actions div.alignleft{margin-top:6px}div#sidebar-info{padding:0 1em;margin-bottom:1em;font-size:12px}.widget-title a,.widget-title a:hover{text-decoration:none;border-bottom:0}.widget-control-edit{display:block;font-size:12px;font-weight:normal;line-height:26px;padding:0 8px 0 0}.widget-control-edit .add,.widget-control-edit .edit{display:none}a.widget-control-edit{text-decoration:none}#available-widgets .widget-control-edit .add,#widgets-right .widget-control-edit .edit,.inactive-sidebar .widget-control-edit .edit{display:inline}.editwidget{margin:0 auto 15px}.editwidget .widget-inside{display:block;padding:10px}.inactive p.description{margin:5px 15px 10px}#available-widgets p.description{margin:0 12px 12px}.widget-position{margin-top:8px}.inactive{padding-top:2px}.sidebar-name .spinner{float:none;margin:0 3px -3px}.sidebar-name-arrow{float:right;height:29px;width:26px}.widget-title .in-widget-title{font-size:12px;white-space:nowrap}#removing-widget{display:none;padding-left:15px;font-size:12px;font-weight:normal;line-height:1}.widget-control-noform,#access-off,.widgets_access .widget-action,.widgets_access .sidebar-name-arrow,.widgets_access #access-on,.widgets_access .widget-holder .description{display:none}.widgets_access .widget-holder,.widgets_access #widget-list{padding-top:10px}.widgets_access #access-off{display:inline}.widgets_access #wpbody-content .widget-title-action,.widgets_access #wpbody-content .widget-control-edit,.widgets_access .closed .widgets-sortables,.widgets_access .closed .widget-holder{display:block}.widgets_access .closed .sidebar-name{border-bottom-left-radius:0;border-bottom-right-radius:0;-moz-border-bottom-left-radius:0;-moz-border-bottom-right-radius:0;-webkit-border-bottom-left-radius:0;-webkit-border-bottom-right-radius:0}.widgets_access .sidebar-name,.widgets_access .widget .widget-top{cursor:default}.accordion-section{border-top:1px solid #fff;border-bottom:1px solid #dfdfdf;margin:0}.accordion-section:first-child{border-top:1px solid #dfdfdf}.accordion-section:last-child{box-shadow:0 1px 0 0 #fff}.accordion-section.open .accordion-section-content,.no-js .accordion-section .accordion-section-content{display:block}.accordion-section.open:hover{border-bottom-color:#dfdfdf}.accordion-section-content{display:none;padding:10px 20px 15px;overflow:hidden;background:#fdfdfd;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf}.accordion-section-title{margin:0;padding:15px 20px;position:relative;border-left:1px solid #dfdfdf;border-right:1px solid #dfdfdf;-webkit-user-select:none;-moz-user-select:none;user-select:none}.js .accordion-section-title{cursor:pointer}.js .accordion-section-title:after{content:'';width:0;height:0;border-color:#ccc transparent;border-style:solid;border-width:6px 6px 0;position:absolute;top:25px;right:20px;z-index:1}.accordion-section-title:focus{outline:0}.accordion-section-title:hover:after,.accordion-section-title:focus:after{border-color:#aaa transparent}.cannot-expand .accordion-section-title{cursor:auto}.cannot-expand .accordion-section-title:after{display:none}.control-section .accordion-section-title{padding:10px 20px;color:#464646;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;font-size:15px;font-weight:normal;line-height:1;text-shadow:0 1px 0 #fff;background:#f5f5f5;background-image:-webkit-gradient(linear,left bottom,left top,from(#eee),to(#f5f5f5));background-image:-webkit-linear-gradient(bottom,#eee,#f5f5f5);background-image:-moz-linear-gradient(bottom,#eee,#f5f5f5);background-image:-o-linear-gradient(bottom,#eee,#f5f5f5);background-image:linear-gradient(to top,#eee,#f5f5f5)}.control-section .accordion-section-title:after{top:15px}.js .control-section:hover .accordion-section-title,.js .control-section .accordion-section-title:hover,.js .control-section.open .accordion-section-title,.js .control-section .accordion-section-title:focus{color:black;background:#f9f9f9;background-image:-webkit-gradient(linear,left bottom,left top,from(#ececec),to(#f9f9f9));background-image:-webkit-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-moz-linear-gradient(bottom,#ececec,#f9f9f9);background-image:-o-linear-gradient(bottom,#ececec,#f9f9f9);background-image:linear-gradient(to top,#ececec,#f9f9f9)}.control-section.open .accordion-section-title{border-bottom:1px solid #dfdfdf}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}}@media only screen and (min-width:769px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:860px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (min-width:980px){#col-left{width:35%}#col-right{width:65%}}@media only screen and (max-width:768px){#col-left{width:100%}#col-right{width:100%}.form-field input,.form-field textarea{width:99%}.form-wrap .form-field{padding:0}#profile-page .form-table textarea{max-width:400px;width:auto}}@media print,(-o-min-device-pixel-ratio:5/4),(-webkit-min-device-pixel-ratio:1.25),(min-resolution:120dpi){.press-this .tagchecklist span a{background-image:url('../images/xit-2x.gif');background-size:20px auto}.js .postbox:hover .handlediv,.js .stuffbox:hover .handlediv,.widget-top a.widget-action{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.widget-top a.widget-action:hover{background-image:url('../images/arrows-dark-2x.png');background-size:15px 123px}.post-com-count{background-image:url('../images/bubble_bg-2x.gif');background-size:18px 100px}tr.wp-locked .locked-indicator{background-image:url('../images/lock-2x.png');background-size:16px 16px}th .comment-grey-bubble{background-image:url('../images/comment-grey-bubble-2x.png');background-size:12px 12px}.sorting-indicator{background-image:url('../images/sort-2x.gif?ver=20130102');background-size:14px 4px}#content-resize-handle,#post-body .wp_themeSkin .mceStatusbar a.mceResize{background:transparent url('../images/resize-2x.gif') no-repeat scroll right bottom;background-size:11px 11px}div.star-holder{background:url('../images/stars-2x.png?ver=20121108') repeat-x bottom left;background-size:21px 37px}div.star-holder .star-rating{background:url('../images/stars-2x.png?ver=20121108') repeat-x top left;background-size:21px 37px}.welcome-panel .welcome-panel-close:before{background-image:url('../images/xit-2x.gif');background-size:20px auto}.welcome-panel .welcome-icon{background-image:url('../images/welcome-icons-2x.png')}.login h1 a{background-image:url('../images/wordpress-logo-2x.png?ver=20120412');background-size:274px 63px}.wp-badge{background-image:url('../images/wp-badge-2x.png?ver=20120516');background-size:173px 194px}.wp-full-overlay .collapse-sidebar-arrow{background-image:url('../images/arrows-2x.png');background-size:15px 123px}.pressthis a span{background-image:url(../images/press-this-2x.png?v=20121105)}.imgedit-crop,.imgedit-rleft,.imgedit-rright,.imgedit-flipv,.imgedit-fliph,.imgedit-undo,.imgedit-redo{background-image:url('../images/imgedit-icons-2x.png');background-size:260px 64px}.spinner,.imgedit-wait,.customize-loading #customize-container{background-image:url(../images/wpspin_light-2x.gif)}.wp-slider .ui-slider-handle:before{background-image:url(../images/arrows-pr-2x.png);background-size:16px 102px}}.locale-zh-cn .howto,.locale-zh-cn .tablenav .displaying-num,.locale-zh-cn .js .input-with-default-title,.locale-zh-cn .link-to-original,.locale-zh-cn .inline-edit-row fieldset span.title,.locale-zh-cn .inline-edit-row fieldset span.checkbox-title,.locale-zh-cn #utc-time,.locale-zh-cn #local-time,.locale-zh-cn p.install-help,.locale-zh-cn p.help,.locale-zh-cn p.description,.locale-zh-cn span.description,.locale-zh-cn .form-wrap p{font-style:normal}.locale-zh-cn .hdnle a{font-size:12px}.locale-zh-cn form.upgrade .hint{font-style:normal;font-size:100%}.locale-zh-cn #wp-fullscreen-tagline{font-family:KaiTi,"楷体",sans-serif}.locale-zh-cn #wp-fullscreen-modes a{font-size:12px}.locale-zh-cn #sort-buttons{font-size:1em!important}.locale-ru-ru .inline-edit-row fieldset label span.title{width:auto;min-width:5em}.locale-ru-ru.press-this .posting{margin-right:257px}.locale-ru-ru.press-this #photo-add-url-div input[type="text"]{width:255px}.locale-ru-ru.press-this #side-sortables{width:245px}.locale-ru-ru #customize-header-actions .button{padding:0 8px 1px}.locale-lt-lt .inline-edit-row fieldset label span.title{width:8em}.locale-lt-lt .inline-edit-row fieldset label span.input-text-wrap{margin-left:8em}
\ No newline at end of file
