﻿/*	Global classes	*/
.DDMainHeader
{
	font: small-caps bold 1.6em Trebuchet MS, Arial, sans-serif;
	color:#888;
	padding-bottom: 12px;
    border-bottom: 1px dotted #bbbbbb;
}

.DDSubHeader
{
	margin-bottom: 10px;
    color: #888;
}

.DD 
{
	padding: 0px 8px;
}

.DDLightHeader
{
	font-weight: bold;
	background-color: #E6E6E8;
	color: #076DA4;
} 

.DDTextBox, .DDDropDown
{
	color: #666;
	border: solid 1px #dcdcdc;
	background-color: #FEFEFE;
	height:16px;
}

.DDDropDown
{
	padding:2px;
	height: 20px;
}

.DDControl
{
    padding: 0px;
    color: #666;
}

.DDFloatLeft
{
	float:left;
}

.DDFloatRight
{
	float:right;
}

.DDFooter
{
    background-color:#E6E6E8;
}

.DDSelected
{
	background-color: #fdffb8;
}

div.DDNoItem
{
	color:Red;
}

.DDValidator
{
	color:Red;
}


/*	Navigation	*/

div.DDNavigation
{
	position: relative;
    top: -28px;
    margin-bottom: -10px;
    padding: 0px 5px;
}

div.DDNavigation img
{
    position: relative;
    margin-top: 0em;
    padding: 0px 8px;
    border: none;
    background-color: #fff;
}
div.DDNavigation a
{
    color: #839ce7;
    text-decoration: none;
    background-color: #fff;
    padding-right: 8px;
    top: -.2em;
    left: .25em;
}

div.DDNavigation a:hover
{
    color: #000099;
    text-decoration: underline !important;
}

.area-filter
{
    float:left;
}

/*	Details VIEW/EDIT	*/
table.DDDetailsTable
{
	color: #666;
	background-color: #FCFDFE;
	border-bottom-width: 3px;
}

table.DDDetailsTable a
{
	color:#718ABE;
	text-decoration: none;
	padding-right: 6px;
}

table.DDDetailsTable a:hover
{
    color: #000099;
    text-decoration: underline !important;
}

table.DDDetailsTable .td
{
	padding: 3px 6px;
	background-color: #F7F7FF;
	border-bottom-style: dotted;
}


/*	DDGridView/DDListView	*/
table.DDGridView
{    
    margin: 10px 0px 10px 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    border: 2px solid #0671A5;
    background-color: white;
    line-height:0.6em;
}

table.DDGridView, table.DDListView
{    
    margin: 10px 0px 10px 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    border: 2px solid #E6E6E8;
    border-top: 2px solid #0671A5;
    clear: left;
}

table.DDGridView .th, table.DDGridView .td, table.DDListView .th, table.DDListView .td
{
    border: 0;
	white-space: nowrap;
}

table.DDGridView .th, table.DDListView .th
{
	text-align: center;
	background-color: #F3F6F9;
}

table.DDGridView .th a, table.DDListView .th a
{
	color: Black;
	text-decoration: none;
}

table.DDGridView .td
{
	border: 2px solid #E6E6E8;
	background-color:white;
	padding: 6px;
}

table.DDListView .td
{
	border-left-width:0px;
	border-right-width:0px;
	background-color:#F3F6F9;
	padding: 6px;
}

table.DDGridView .td a, table.DDListView .td a
{
	color: #718ABE;
	background-color: #EEEFF0;
    text-decoration: none;
    margin-right: 6px;
}

table.DDGridView .DDSelected a, table.DDListView .DDSelected a
{
	color: #718ABE;
    text-decoration: none;
    margin-right: 6px;
	
}

table.DDGridView .DDSelected a:hover, table.DDListView .DDSelected a:hover
{
	color: #000099;
	text-decoration: underline;
}

table.DDGridView .td a:hover, table.DDListView .td a:hover
{
	color: #000099;
	text-decoration: underline;
}

/*	DataPager	*/
div.DDPager
{
    padding: 0px 6px;
}

/* Top hyperlink design*/
div.DDTopHyperLink
{	
    font-size:12px;
}
div.DDTopHyperLink a
{
    color: #839ce7;
    text-decoration: none;
}
div.DDTopHyperLink a:hover
{
    color: #000099;
    text-decoration: underline !important;
}
div.DDTopHyperLink img
{
    padding-right: 5px;
    border: none;
}

/* Bottom hyperlink design*/
div.DDBottomHyperLink
{	
    font-size:12px;
}
div.DDBottomHyperLink a
{
    color: #839ce7;
    text-decoration: none;
}
div.DDBottomHyperLink a:hover
{
    color: #000099;
    text-decoration: underline !important;
}
div.DDBottomHyperLink img
{
    padding-right: 5px;
    border: none;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Apply the blinking effect to the .blinking class */
.blinking {
    animation: blink 3s infinite;
    cursor: pointer;
}

.imgDlvReceipt {
    cursor: pointer!important;
}
.styled-link {
    color: white;
}

    .styled-link a:link {
        color: white; /* Unvisited links */
        text-decoration: none;
    }
    .styled-link a:visited {
        color: white; /* Visited links */
        text-decoration: none;
    }
    .styled-link a:hover {
        color: white; /* Hover state */
        text-decoration: underline;
    }
    .styled-link a:active {
        color: red; /* Active (clicked) state */

    }
    .styled-link a:focus {
        color: white; /* Focus state */
        text-decoration: none;
    }

.styled-alink {
    color: white; /* Link color */
    cursor: pointer; /* Change cursor to pointer */
    transition: color 0.1s ease; /* Smooth color transition */
}

    .styled-alink:hover {
        color: white; /* Change color on hover */
        text-decoration: underline; /* Underline text */
    }

    .styled-alink:active {
        color: red; /* Change color when clicked */
        text-decoration: underline; /* Underline text */
    }

