/*
File:			custom.css
Description:	Custom styles for the Neoclassical Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; } <--- This makes links green
	
	.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them

Why this works:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
*/

body { padding: 10px 0 0 0 }

h5 { font: bold 1.5em Georgia, "Times New Roman", Times, serif; margin: 0 0 0.5em 0; }
h6 { font: bold 1.25em Georgia, "Times New Roman", Times, serif; margin: 0 0 0.5em 0; }

.mainmenu h4 { font-size: 1.1em }

/*---:[ core layout elements ]:---*/

#container { width: 955px; margin: 0 auto; padding: 20px 0; border: 2px solid #eee }

        #page { } /* for use with custom styles */
        
                #masthead { width: 935px; margin: 0 0 20px 0; padding: 0 10px; text-align: left; }
                
                #rotating_image { width: 955px; margin: 0 0 5px 0; }
                
                        #rotating_image img { display: block; border: 10px solid #eee; }

		#adlink { width: 945px; padding: 0px 5px 30px 5px; height: 100%; }
			#adlink_left { float: left; height: 100%; }
			#adlink_right { float: right; height: 100%; }

                #content_box { width: 935px; padding: 0 10px; background: url('images/content_bg.gif') 50% 0 repeat-y; text-align: left; }

                        #left_box { width: 725px; float: left; }

                                #content { width: 513px; padding: 0 1px; float: right; }
                        
                                        #content_inner { width: 495px; padding: 0 9px; }
        
                        .sidebar { width: 200px; float: left; }
                
                        #left_bar { padding: 0 10px 0 0; }
                
                        #right_bar { padding: 0 0 0 10px; }
                
                #footer { padding: 1.0em 0; border-top: 1px double #ddd; }

#footer_bottom { } /* for use with custom styles and the "page" look */

dl#comment_list dt.comment { width: 495px }
dl#comment_list dd.comment { width: 495px }

#comments { width: 513px }
#comment_form { width: 475px }
	#comment_form .text_area { width: 469px !important; height: 5.84615em; }

.navigation { width: 493px }

ul.sidebar_list li.widget, ul.sidebar_list li.linkcat { width: 200px }

.sidebar h2 { font-size: 1em }

.page h1 { font-size: 2em }

