Clear        


                
                    body {
    background-color: gainsboro;
}

.mylabelclass {
    color: blue;
}

hr.style-seven {
    overflow: visible; /* For IE */
    height: 30px;
    border-style: solid;
    border-color: black;
    border-width: 1px 0 0 0;
    border-radius: 20px;
}
hr.style-seven:before { /* Not really supposed to work, but does */
    display: block;
    content: "";
    height: 30px;
    margin-top: -31px;
    border-style: solid;
    border-color: black;
    border-width: 0 0 1px 0;
    border-radius: 20px;
}

input.myinputclass {
    /*width: 1000px;*/
    /*width: 100%;*/
    width: 99%;
    border-radius: 7px;
}

#mydivid {
    background-image: url(./02_Resimler/02_resim2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 280px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-style: solid;
    border-width: 1px;
    border-color: goldenrod;
    text-align: center;
}
#mydivid span {
    font-size: 20px;
    font-weight: bold;
    color: #a52a2a;
    margin-left: -330px;
}

/* 1. yöntem: */
/*
.myaclass:hover {
    text-decoration: none;
    color: #0000ff !important;
    font-family: 'Comic Sans MS';
    font-size: 18px;
    cursor: crosshair;
}
.myaclass:link {
    text-decoration: none;
    color: #ff6a00;
    font-family: 'Comic Sans MS';
    font-size: 18px;
}
.myaclass:visited {
    text-decoration: none;
    color: #ff6a00;
    font-family: 'Comic Sans MS';
    font-size: 18px;
}
*/
/* 2. yöntem: */
.myaclass {
    text-decoration: none;
    color: #ff6a00;
    font-family: 'Comic Sans MS';
    font-size: 18px;
}
.myaclass:hover {
	color: #0000ff !important;
	cursor: crosshair;
}