levin: integration von interner style definition in externe css

Beitrag lesen

im Code gibt es dieses css-Element
<style type="text/css">
.clTopMenu       {position:absolute; width:101px; height:150px; clip:rect(0px 101px 14px 0px); layer-background-color:#eeeeee; background-color:#eeeeee; z-index:31; visibility:hidden;}
.clTopMenuBottom {position:absolute; width:101px; height:3px; clip:rect(0px 101px 3px 0px); top:11; layer-background-color:#cecfce; background-color:#cecfce; z-index:2;}
.clTopMenuText   {position:absolute; width:91px; left:5px; top:15px; font-family:arial,helvetica,sans-serif; font-size:11px; background-color:#eeeeee; z-index:1;}
</style>

nun will ich aber das auf diese htmlseite zusätzlich eine externe cssDatei angewendet wird. Üblicherweise mache ich das dann so
<html>
<head>
 <title> bla bla </title>
<link rel="stylesheet" href="css/style.css" type="text/css">

<script language="JavaScript">
</script>
</head>

<body>
</body>
</html>
sobald ich aber link rel einsetze funktioniert das pulldown menu nicht mehr
auch das einkopieren der classes in die externe css hat nichts gebracht,
wie könnte ich das sonst lösen ?