/*
 Theme Name:   The-Newswire Child
 Theme URI:    http://www.hotlaptop.co.uk/the-newswire-child/
 Description:  The Newswire Child
 Author:       Null
 Author URI:   http://www.hotlaptop.co.uk
 Template:     the-newswire
 Version:      1.0.0
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  the-newswire-child
*/

@import url("../the-newswire/style.css");

/* =Theme customization starts here
-------------------------------------------------------------- */

<style>

/* Making margin and padding to 0, since by default the body will be allocated some amount 
 of pixels of margin and padding. */


#body-container{
 width:100%; /* Given a constant width of 415px to body-container div */
 height:800px; /* Given a constant height of 500px to the div */
 margin:0 auto; /* This will align the div to center */
 border:1px solid #3285ef; /* Giving the border */
}

#body-container .glossary-container{
 clear:both; /* This will not allow floating elements on either sides */
}

#body-container .content-container{
 height:820px; /* Given a constant height of 430px to the div */
 width:100%; /* Given a constant width of 415px to the div */
 overflow:auto; /* Scroll bar is shown when content is more than specified height */
 font-family:'Arial',Verdana,Tahoma; /* Taken the default font to 'Arial' */
 font-size:10pt; /* Making font size to 10 points */
 clear:both; /* This will not allow floating elements on either sides */
}

#body-container .content-container div{
 padding-left:10px; /* Left padding given as 10px */
 border-bottom:1px #666666 solid; /* In order to separate each terms given bottom 
 border color as #666666 (gray) with 1px */
}

#body-container .content-container div h2{
 margin-top:0px; /* Making the top margin to 0px */
}

#body-container .content-container p.return-to-top{
 color:#0066FF; /* Giving text color to Return to top text */
 text-decoration:underline; /* The text will be underlined */
 text-align:right; /* Text will be aligned to right */
 margin-right:10px; /* Given some margin 10px to right */
 cursor:pointer; /* Making the cursor to 'hand' */
}

.firstUL{
 padding:0px 0px 0px 10px; /* Given some padding to left and 0 padding to 
 top, right, bottom */
 margin:0px; /* margin to 0px */
 background-color:#3285ef; /* Given background color */
}

.firstUL li {
// background:transparent url(images/link_sprite_img.jpg) no-repeat scroll 0 0; 
 /* For all li.s(listings) given default background image using CSS Sprite concept */
 display:inline; /* Listings will be placed in a line */
 font-family:'Arial',Verdana,Tahoma; /* Setting the font to 'Arial' */
 font-size:16pt; /* Setting the font size to 16 points */
 font-weight:bold; /* Making the text to bold */
 padding:10px 15px 22px; /* Given some padding to top, right, bottom and left */
 line-height:70px; /* This property specifies the line height */
 cursor:pointer; /* Making the cursor to 'hand' */
}

.firstUL li.selected{
// background:transparent url(images/link_sprite_img.jpg) no-repeat scroll 0px -57px; 
 /* When any listing is highlighted, we are given the background to image using CSS 
 Sprite concept */
 color:#ffffff; /* Making the font color 'white' */
 font-weight:bold; /* Making text bold */
}
</style>
