/*dl{margin:0.25em}
dt{margin:0.125em 0 0 0}
dd{margin:0.125em 0 0 0}
*/
body {font-family:'Droid Serif';font-size:11pt;line-height:1em;height:100%;width:100%;margin:0;padding:0;border:none}
div.content{height:90%;width:100%;border:none;line-height:1em}
div.videos{width:100%;float:left}
div.videos>p>a>img{display:block;width:20%;height:auto;margin:2px 2px 2px 2px;float:left}
div.churchsymbols{height:7%;position:fixed;bottom:0;width:100%;left:0;background-color:#ffffff;border-top-width:1px;border-top-color:#000000}
div.churchsymbols>img.churchsymbols{line-height:1em;width:auto;bottom:0;position:fixed;height:5%;display:block;margin:0 12.5% 0 12.5%}


/* div.content {width:inherit;margin:0 0 2in 0;border-bottom-width:0;border-bottom-color:black;border-bottom-style:none}*/


/*div.vthumb>p {margin:1em;float:left;width:45%}*/
/*div.vthumb>p>a>img {display:block}*/
/*
div.churchsymbols {height:1in;position:fixed;bottom:0;left:0;width:100%}
div.churchsymbols>img {height:.75in;margin:1px 6.25% 0 6.25%;width:45%;}
*/
/*div.churchsymbols>img {height:0.75in;display:block} */
/*	div.churchsymbols {float:none;display:block;position:fixed;height:1in;bottom:0;width:100%;background-color:white;position:fixed;border-top-style:solid;border-top-width:1px;border-top-color:black}
	div.churchsymbols>img.churchsymbols {position:fixed;top:8in;display:block;float:left;width:auto;height:.975in;margin:0.0625in 9% 0.0625in 9%}
div.footer {position:fixed;width:100%;height:0.75in;margin:.25in 0 0 0;left:0;bottom:0;border-top-style:solid;border-top-width:1px;border-top-color:black;background-color:white}
*/

/*div.content{;margin:0 0 2.375in 0;width:100%}*/

/*    div.footer{height:0.75in;margin:0;width:100%;border-top-width:1px;border-top-style:solid;border-top-color:black;position:fixed;bottom:0;left:0}*/
    
/*div.content{height:inherit;margin:0 0 2.375in 0;width:100%}*/
/*body{height:11in;width:8.5in;margin:0;padding:0;border:none}*/

/*.content{width:100%;height:10in;display:block;float:none;margin:0 0 2in 0;border-color:#000000;border-width:1px}*/
/*.footer{width:100%;position:fixed;float:none;height:1in;margin:0 0 0 0;left:0;bottom:0;border-top-style:solid;border-top-width:1px;border-top-color:black;background-color:white}*/
/*div.icthys{height:8in;margin:0 0 2in 0}*/
.bibcit{font-style:italic;}
p.iword {text-align:left;}
p.iword span{display:inline-block;width:3in;}

/*
all
    Suitable for all devices. 
braille
    Intended for braille tactile feedback devices. 
embossed
    Intended for paged braille printers. 
handheld
    Intended for handheld devices (typically small screen, limited bandwidth). 
print
    Intended for paged material and for documents viewed on screen in print preview mode. Please consult the section on paged media for information about formatting issues that are specific to paged media. 
projection
    Intended for projected presentations, for example projectors. Please consult the section on paged media for information about formatting issues that are specific to paged media. 
screen
    Intended primarily for color computer screens. 
speech
    Intended for speech synthesizers. Note: CSS2 had a similar media type called 'aural' for this purpose. See the appendix on aural style sheets for details. 
tty
    Intended for media using a fixed-pitch character grid (such as teletypes, terminals, or portable devices with limited display capabilities). Authors should not use pixel units with the "tty" media type. 
tv
    Intended for television-type devices (low resolution, color, limited-scrollability screens, sound available). 


    Specify the target medium from a style sheet with the @media or @import at-rules.

    @import url("fancyfonts.css") screen;
    @media print {
      style sheet for print goes here
    }
*/
/*    Specify the target medium within the document language. For example, in HTML 4 ([HTML4]), the "media" attribute on the LINK element specifies the target media of an external style sheet:

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
    <HTML>
       <HEAD>
          <TITLE>Link to a target medium</TITLE>
          <LINK REL="stylesheet" TYPE="text/css" 
    	 MEDIA="print, handheld" HREF="foo.css">
       </HEAD>
       <BODY>
          <P>The body...
       </BODY>
    </HTML>

CSS 2.1 defines the following media groups:

    continuous or paged.
    visual, audio, speech, or tactile.
    grid (for character grid devices), or bitmap.
    interactive (for devices that allow user interaction), or static (for those that do not).
    all (includes all media types) 

Media Types 	Media Groups
  	continuous/paged 	visual/audio/speech/tactile 	grid/bitmap 	interactive/static
braille	continuous	tactile	grid	both
embossed	paged	tactile	grid	static
handheld	both	visual, audio, speech	both	both
print	paged	visual	bitmap	static
projection	paged	visual	bitmap	interactive
screen	continuous	visual, audio	bitmap	both
speech	continuous	speech	N/A	both
tty	continuous	visual	grid	both
tv	both	visual, audio	bitmap	both
*/