*{
	margin: 0;
	padding: 0;
}


.dark_color
{
	font-weight: bold;
	font-family: arial;
	color: #fff;
}
.sticky-offset
{
	top:56px;
}



ul.ul_journal
{
	list-style: none;
	margin-left: 10px;
	
}

ul.ul_journal li 
{
	 padding: 5px;
	 /*color: #fff;*/
	 border-bottom: 1px solid #fff;
	 color: #585858;
	 
}

ul.ul_journal li:hover
{
	 background-color: #007bff;
	 color: #fff;
	 font-weight: bold;
	 
}

ul.ul_journal li a
{
	text-decoration: none;
	 margin-left: 10px;
	 color: #585858;
	 font-family: BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
	 font-size: 15px;  
	 
	 
}
ul.ul_journal li a:hover
{
	 color: #fff;
	 text-decoration: none;
	 
}



ul.ul_subject_list
{
	list-style: none;
	list-style-image: url('../images/icon/Plus.gif');
	margin-left: 22px;
	
}

ul.ul_subject_list li a
{
	  text-decoration: none;
	 margin-left: 10px;
	 color: #585858;
	 font-family: BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica Neue,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
	 font-size: 15px;
	 
	 
}
ul.ul_subject_list li a:hover
{
	 color: #fff;
}
ul.ul_subject_list li 
{
	 padding: 5px;
	 /*color: #fff;*/
	 border-bottom: 1px solid #fff;
	 color: #585858;
	 
}
ul.ul_subject_list li:hover
{
	 background-color: #cecece;
	/* color: #fff;*/
	 
}

        	/* Basic styles for the link button */
.blinking-button {
    display: inline-block;
    padding: 5px;
    font-size: 14px;
    color: #fff;
    <?php $col='#007bff'; ?>
    background-color: <?php echo $col ?>;
    /*background-color:<?php echo $journal_data1[0]['Background_color']?>;*/
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s;
}

/* Start Hover effect for the link button */
.blinking-button:hover {
    background-color: #0056b3;
    color: #FFFFFF;
    text-decoration: none;
}

/* Blinking effect */
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.blinking-button {
    animation: blink 1s infinite;
}
 
/* End Hover effect for the link button */




 