/*
 * CSS3 Treeview. No JavaScript
 * @version 1.0
 * @author Martin Ivanov
 * @url developer's website: http://wemakesites.net/
 * @url developer's twitter: https://twitter.com/#!/wemakesitesnet
 * @url developer's blog http://acidmartin.wordpress.com/
 **/

/*
 * This solution works with all modern browsers and Internet Explorer 9+. 
 * If you are interested in purchasing a JavaScript enabler for IE8 
 * for the CSS3 Treeview, please, check this link:
 * http://experiments.wemakesites.net/miscellaneous/acidjs-css3-treeview/
 **/
.css-treeview ul,
.css-treeview li
{
    padding: 0;
    margin: 0;
    list-style: none;
}
.css-treeview label {
    background: url("../images/plus.png") no-repeat;
    cursor: pointer;
}


.css-treeview input
{
    position: absolute;
    opacity: 0;
}

.css-treeview
{
    font: normal 11px;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    width: 67%
}

.css-treeview a
{
    color: #72aa21;
    text-decoration: none;
}

.css-treeview a:hover
{
    text-decoration: underline;
}

.css-treeview input + label + ul
{
    margin: 0 0 0 22px;
}

.css-treeview input ~ ul
{
    display: none;
}

.css-treeview label,
.css-treeview label::before
{
    cursor: pointer;
}

.css-treeview input:disabled + label
{
    cursor: default;
    opacity: .6;
}

.css-treeview input:checked:not(:disabled) ~ ul
{
    display: block;
}

.css-treeview label {
    cursor: pointer;
    margin-left: 2px;
    text-decoration: none;
}

.css-treeview label,
.css-treeview label::before
{
    display: inline-block;
    height: 20px;
    vertical-align: middle;
    font-size:1.1em;
}


.css-treeview label::before
{
    content: "";
    width: 20px;
    vertical-align: top;
}

.css-treeview a
{
    height: 20px;
    line-height: 20px;,
    vertical-align: middle;
	font-size:1.1em
}
.css-treeview input:checked + label::before
{
    background: url("../images/minus.png") no-repeat;
    cursor: pointer;
    height: 23px;
    width: 20px;
}

.css-treeview ul li ul li .tree-line {
    background: url("../images/treeview-sprite.gif") no-repeat scroll 0 -1600px rgba(0, 0, 0, 0);
    width:20px;
    min-height: 20px;
    float:left;

}
 .css-treeview ul li ul li ul li:last-child .tree-line{
    background: url("../images/treeview-sprite.gif") no-repeat scroll 0 -1600px rgba(0, 0, 0, 0);
}
.tree-link {
    margin-left: 20px;

}

/* webkit adjacent element selector bugfix */
@media screen and (-webkit-min-device-pixel-ratio:0)
{
    .css-treeview 
    {
        -webkit-animation: webkit-adjacent-element-selector-bugfix infinite 1s;
    }
    @-webkit-keyframes webkit-adjacent-element-selector-bugfix 
    {
        from 
        { 
            padding: 0;
        } 
        to 
        { 
            padding: 0;
        }
    }
}

/* Note above tree ====================================================================== */
.notetext { font-size: 11.5px;
font-style:italic;
margin: 10px;
margin-bottom: 10px;
margin-top: 10px;
}

/* Link to survey-uoa.gr/manage */

.linkmanage {
    font-size:11.5px;
    margin-left:5 px;
    float:right;
    padding:5px;
}
