.jnotify-container {
	position: fixed; 
	top: 0; 
	right: 0; 
	width: 400px; 
	z-index: 100000;
	
	/* set maximum number of notes to show */
	/*max-height: 600px;*/
	overflow-x: hidden;
	overflow-y: auto;
	padding: 10px;
}

.jnotify-container .jnotify-notification {
	position: relative; 
	margin-bottom: 5px;
	/*font-family: 'Helvetica Neue', 'Nimbus Sans L', sans-serif;*/
	font-family: sans-serif;
}

.jnotify-container .jnotify-notification .jnotify-background {
	position: absolute; 
	top: 0; 
	left: 0; 
	width: 100%; 
	height: 100%;
	background-color: #4c4c4c; 
	filter: alpha(opacity=90); 
	-moz-opacity: 0.90; 
	opacity: 0.90; 
	z-index: 1; 

	/* round the corners */
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.jnotify-container .jnotify-notification a.jnotify-close,
.jnotify-container .jnotify-notification a.jnotify-close:link,
.jnotify-container .jnotify-notification a.jnotify-close:visited,
.jnotify-container .jnotify-notification a.jnotify-close:focus,
.jnotify-container .jnotify-notification a.jnotify-close:hover {
	position: absolute;
	top: 2px;
	right: 5px;
	padding: 0 5px;
	line-height: 1em;
	color: #fff;
	text-decoration: none;
	z-index: 3;
	cursor: pointer;
}

.jnotify-container .jnotify-notification .jnotify-message {
	position: relative; 
	z-index: 2; 
	paddingX: 20px;
	padding: 10px;
	text-align: left;
	color: #fff;
	line-height: 1.2em; 
}

.jnotify-container .jnotify-notification .jnotify-message * {
	font-size: 1em;
}

/* notification type == "error" */
.jnotify-container .jnotify-notification-error .jnotify-background {
	background-color: #d79eac; 
}

.jnotify-container .jnotify-notification-error .jnotify-close,
.jnotify-container .jnotify-notification-error .jnotify-message {
	color: #a72947 !important;
}

/* notification type == "warning" */
.jnotify-container .jnotify-notification-warning .jnotify-background {
    background-color: #fff7d1; 
}

.jnotify-container .jnotify-notification-warning .jnotify-close,
.jnotify-container .jnotify-notification-warning .jnotify-message {
    color: #c2a928 !important;
}

.jnotify-container .jnotify-notification .jnotify-message .entered {
    color: #bbb;
}
.jnotify-container .jnotify-notification .jnotify-message .option {
    color: yellow;
    font-weight: bold;
}
.jnotify-container .jnotify-notification .jnotify-message .target {
    color: #7FFF00;
    font-weight: bold;
}
.jnotify-container .jnotify-notification .jnotify-message .moreNeeded {
    font-style: italic;
}
.jnotify-container .jnotify-notification .jnotify-message .key {
    font-weight: bold;
}

.jnotify-container .jnotify-notification .jnotify-message .desc {
    font-style: italic;
}

.jnotify-message a {
    text-decoration: none;
    color: yellow;
    border-bottom: 1px dotted yellow;
}

.jnotify-message a:visited {
    color: yellow;
}

.jnotify-message a:hover {
    border-bottom: 1px solid yellow;
}

.jnotify-message a:active {
    color: #7FFF00;
    border-bottom: 1px solid #7FFF00;
}

.keyOptions {
    font-family: monospace;
}

.jnotify-message p {
    margin: 0.5em 0 0 0;
}

.jnotify-message p:first-child {
    //margin-top: 0;
}

.jnotify-message .wckHelpStatus p {
    margin-top: 0;
}

/* notification type == "help" */
.jnotify-container .jnotify-notification-help .jnotify-background {
    /* background-color: green; */
}

.wckHelpStatus .on {
    font-weight: bold;
    color: #7FFF00;
}

.wckHelpStatus .off {
    font-weight: bold;
    color: #f30;
}
