function ccsl(el, inout)
{
	if (inout == true)
	{
		el.style.backgroundColor='#CED4DB';
		el.style.color='#354962';
	}
	else
	{
		el.style.backgroundColor='transparent';
		el.style.color='#354962';
	}
}

function ccml(el, inout)
{
	if (inout == true)
	{
		el.style.backgroundColor='#E4E8ED';
	}
	else
	{
		el.style.backgroundColor='transparent';
	}
}

