.OrdersTbl {
	width: 100%;
}

.OrdersTbl th {
	background: #400f5f;
	color: #fff;
	font-weight: bold;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.OrdersTbl th:last-child {
	border-right: 0px;
}
.OrdersTbl tr:last-child {
	border-bottom: 0px;
}

.OrdersTbl td {
	border-right: 1px solid rgba(0, 0, 0, 0.2);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.OrdersTbl td:last-child {
	border-right: 0px;
}

.loginBox {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    background: #fcfcfc;
    margin-top: 50px;
    margin-bottom: 50px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

input {
    width: 250px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px;
}

input[type=submit] {
	padding: 5px;
	margin-top: 10px;
	border-radius: 3px;
	background: #f59110;
	color: #fff;
	background-image: linear-gradient(#ffa124 0%, #f5900b 100%);
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, .2), 0 1px 3px 0 rgba(0, 0, 0, .3);
	transition-duration: 0.2s;
}

.statusmsg {
	padding: 10px;
	/*border: 1px solid rgba(255, 255, 255, 0.5);*/
	margin-top: 10px;
	border-radius: 5px;
	background: #27AE60;
	box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.3);
	color: #fff;
}

.statusmsg.error {
	background: #C0392B;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}