﻿<%--
  <copyright file="Error.aspx" company="Microsoft">
    Copyright (C) Microsoft. All rights reserved.
  </copyright>
--%>
<%@ Page Title="" Language="C#" MasterPageFile="~/RemoteAccess.master" AutoEventWireup="true"
    CodeBehind="Error.aspx.cs" Inherits="Microsoft.WindowsServerSolutions.Web.RemoteAccessSite.Error" %>

<asp:Content ID="header" ContentPlaceHolderID="head" runat="server">
    <style type="text/css">
        .ico
        {
            float: left;
            margin-left: 40px;
        }
        h1
        {
            font-size: 2.1em;
            font-weight: normal;
            margin: 0;
        }
        .error
        {
            color: #cc3333;
        }
        .warning
        {
            color: #cccc33;
        }
        .info
        {
        }
        #container
        {
            border-top: 0px;
        }
    </style>
</asp:Content>
<asp:Content ID="content" ContentPlaceHolderID="PageContent" runat="server">
    <div style="margin: 0px auto auto auto; width: 807px; clear: both;">
        <asp:Image ID="ImageTopBar" runat="server" ImageUrl="~/Images/top_bar.png" alt=""
            Style="margin: 0px auto 25px auto" />
        <asp:Image ID="IconImage" runat="server" ImageUrl="~/images/error_48.png" alt=""
            CssClass="ico" />
        <div style="margin: 0px 40px 0px 103px">
            <h1>
                <asp:Label ID="LabelErrorTitle" runat="server"></asp:Label>
            </h1>
            <p>
                <asp:Label ID="LabelErrorMessage" runat="server" />
            </p>
        </div>
        <asp:Image ID="ImageBottomBar" runat="server" ImageUrl="~/Images/bottom_bar.png"
            alt="" Style="margin: 25px auto" />
    </div>
</asp:Content>
