/* Toolset Notice List CSS */
ul.toolset-notice-list {
	& li {
		& a {
			display: block;
			padding: 8px 12px;
			background-color: rgb(252,252,252);
            transition: all 0.2s ease-out;
            outline: 0px solid white;
            color: #0f5aaf;

            &:hover {
                background-color: rgb(246, 246, 246);
                transition: all 0.2s ease-out;
                outline: 2px solid #5fa2ed;
                color: #0f5aaf;
            }
		}
	}
}