I want to use my site style sheet on the logon page.
I have the following in my web.Config but I'm not allowed at the css page unless I'm logged in
<location>
<system.web>
<authorization>
<deny users="?" />
<allow users="*" />
</authorization>
</system.web>
</location>
<location path="~/App_Themes/Layout.css">
<system.web>
<authorization>
<allow users = "*" />
</authorization>
</system.web>
</location>