/*
Description:	You may input your custom CSS in here and it won't be overwritten in the future.

BASIC USAGE:

When adding CSS to this file - please add ".custom" BEFORE your style change.

Ex. .custom #header {border-bottom:1px solid #DDD;}

The above statement would add a border to the bottom of your header area. Adding .custom before your CSS tells Wordpress to prioritize the statement. So you won't have any conflicts with the CSS already defined.

Some more examples:

How do you add a line between your sidebar and the content?
.custom .content {border-left:1px solid #DDD;} - will add a border to the left of your content
.custom .content {border-right:1px solid #DDD;} - will add a border to the right of your content

How about adding a thin line under my header area?
.custom #header {border-bottom:1px solid #DDD;}
*/

.custom .columns ul li.widget ul li {padding:5px 0 10px 0;border-bottom:1px dotted #DDD}

.custom .columns ul li.widget ul li a {text-decoration:none;display:block}