/* - member.css - */

/* workflow state colors */

.state-private {
	color: Red !important;
}
.state-visible {
	color: #74AE0B !important;
}
.state-published {
	color: #436976 !important;
}
.state-pending {
	color: #FFA500 !important;
}
.state-submitted {
	color: #800080 !important;
}
.state-validated {
	color: #800000 !important;
}
.state-invalidated {
	color: #E8AFA0 !important;
}

.state-rejected {
	color: #6F603D !important;
}

.state-expired {
	color: Red !important;
}
.syndicated {
	color: #008000 !important;
}

/* Pulldown menu state indicators */

#plone-contentmenu-workflow .state-private {
	padding: 0 0.5em;
	background-color: Red;
	border: 0.1em solid Red;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}
#plone-contentmenu-workflow .state-visible {
	padding: 0 0.5em;
	background-color: #74AE0B;
	border: 0.1em solid #74AE0B;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}
#plone-contentmenu-workflow .state-published {
	padding: 0 0.5em;
	background-color: #436976;
	border: 0.1em solid #436976;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}
#plone-contentmenu-workflow .state-pending {
	padding: 0 0.5em;
	background-color: #FFA500;
	border: 0.1em solid #FFA500;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}

#plone-contentmenu-workflow .state-submitted {
	padding: 0 0.5em;
	background-color: #800080;
	border: 0.1em solid #800080;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}

#plone-contentmenu-workflow .state-validated {
	padding: 0 0.5em;
	background-color: #800000;
	border: 0.1em solid #800000;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}

#plone-contentmenu-workflow .state-rejected {
	padding: 0 0.5em;
	background-color: #6F603D;
	border: 0.1em solid #6F603D;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}

#plone-contentmenu-workflow .state-invalidated {
	padding: 0 0.5em;
	background-color: #E8AFA0;
	border: 0.1em solid #E8AFA0;
	color: White !important;
	border-radius: 0.5em;
	-webkit-border-radius: 0.5em;
	-moz-border-radius: 0.5em;
}


