/*  
Theme Name: Spark
Theme URI: http://www.patrickcole.com
Description: This theme was specially designed for Team384 <i>FIRST</i> Robotics. Please do not use without permission.
Version: 1.0
Author: Patrick Cole
Author URI: http://www.patrickcole.com
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sparky Team 384 | About FIRST</title>
<style type="text/css">
<!--
body {
	font: 100%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background: #42413C;
	margin: 0;
	padding: 0;
	color: #000;
}

/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
	font-size: medium;
	font-style: normal;
	font-weight: 500;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}

/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #42413C;
	text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This fixed width container surrounds all other divs ~~ */
.container {
	width: 960px;
	background: #000000;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}

/* ~~ The header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo. ~~ */
.header {
	background: #15317E;
}

/* ~~ These are the columns for the layout. ~~ 

1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.

3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.

4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.

*/
.sidebar1 {
	float: left;
	width: 180px;
	background: #00FF66;
	padding-bottom: 10px;
}
.content {
	padding: 10px 0;
	width: 600px;
	float: left;
	color: #333;
}
.sidebar2 {
	float: left;
	width: 180px;
	background: #00FF66;
	padding: 10px 0;
}

/* ~~ This grouped selector gives the lists in the .content area space ~~ */
.content ul, .content ol { 
	padding: 0 15px 15px 40px; /* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
}

/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
ul.nav {
	list-style: none; /* this removes the list marker */
	border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
	margin-bottom: 15px; /* this creates the space between the navigation on the content below */
}
ul.nav li {
	border-bottom: 1px solid #666; /* this creates the button separation */
}
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
	padding: 5px 5px 5px 15px;
	display: block; /* this gives the anchor block properties so it fills out the whole LI that contains it so that the entire area reacts to a mouse click. */
	width: 160px;  /*this width makes the entire button clickable for IE6. If you don't need to support IE6, it can be removed. Calculate the proper width by subtracting the padding on this link from the width of your sidebar container. */
	text-decoration: none;
	background: #FF9214;
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus { /* this changes the background and text color for both mouse and keyboard navigators */
	background: #15317E;
	color: #000;
}

/* ~~ The footer styles ~~ */
.footer {
	padding: 10px 0;
	background: #15317E;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
}

/* ~~ Miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the .container) if the .footer is removed or taken out of the .container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
-->
</style></head>

<body>

<div class="container">
  <div class="
"><img src="http://www.entech281.com/images/content/logos/First-Logo.png" alt="&quot;First&quot; Logo" width="181" height="165" /><!-- end .header --></div>
  <div align="left" class="sidebar1" dir="ltr" lang="en">
    <p><strong><u>Dean Kamen Fun Facts:</u></strong></p>
    <p>&gt;Dean holds more than 440 U.S. and foreign patents.</p>
    <p>&gt;Dean's vast knowledge of the physical sciences, combined with   his ability to integrate the fundamental laws of physics with the most modern   technologies, has led to the development of breakthrough processes and products.</p>
    <p><a href="http://www.ideafinder.com/history/inventors/kamen.htm" title="Information on Dean">More about Dean</a></p>
  </div>
  <div class="content">

    <table cellspacing="0" cellpadding="0" width="95%" align="center" border="0">
      <tbody>
        <tr>
          <td><strong><U>FIRST Robotics:</U></strong></td>
        </tr>
        <tr>
          <td>FIRST which stands for &ldquo;<strong>F</strong>or <strong>I</strong>nspiration   and <strong>R</strong>ecognition of <strong>S</strong>cience and <strong>T</strong>echnology&rdquo; helps students and mentors to work together to help   solve a problem given from FIRST. The planning, designing, construction and   testing are all done within a six-week period, commonly known as the &ldquo;build   season&rdquo;. Each robot designed and constructed must meet rules that FIRST provides   in their kickoff event. Each team is given a kit of parts to start with in the   beginning. From there on, the teams use anything they can come up with, within   the rules.</td>
        </tr>
        <tr>
          <td><strong><U>Who founded FIRST?</U></strong></td>
        </tr>
        <tr>
          <td>FIRST was founded by Dean Kamen in 1989. Well known as the inventor for the   Segway Human Transporter, Kamen came up with the idea that all high school   students could design their own robots for a given problem with help from local   sponsors and mentors. In addition, Kamen&rsquo;s idea was to have partnerships from   business all around the world to support his idea for FIRST.</td>
        </tr>
        <tr>
          <td><U><strong>Competitions</strong></U></td>
        </tr>
        <tr>
          <td>Every team in FIRST is invited to attend their respective regional   competition. Each regional has an initial fee to register and a date for the   competition. There are now 41 regionals within the FIRST Robotics competition.   In addition to regional events, the winners of the regionals as well as the   premier award winners are invited to attend the Championship event.</td>
        </tr>
        <tr>
          <td><strong><U>What other programs are in FIRST?</U></strong></td>
        </tr>
        <tr>
          <td>In addition to the FIRST Robotics Competition, FIRST also has the <a title="FIRST Lego League" href="http://usfirst.org/community/fll/default.aspx?id=970" target="_blank">FIRST   Lego League (FLL)</a>. A program designed for children ages 9 to 14 to use   technology and science to build lego-bots to accomplish goals and solve problems   similiar to those in the Robotics competition. In addition to the FIRST Lego   League, there is also FIRST Place, an interactive science and technology center   designed for children to come and interact with various real world applications   and situations. Also, there is the <a title="FIRST Tech Challenge" href="http://usfirst.org/community/FTC/default.aspx?id=968" target="_blank">First   Tech Challenge (FTC)</a>, a mid-level robotics competition for high school age   students in the U.S. and around the world. The program grew out of the existing   FRC program and has growing ever since. The existing program inhibits every   value that FRC stands for and gets the students interested in math, science and   engineering for a lower start-up cost.</td>
        </tr>
      </tbody>
    </table>
    <p><a title="More about FIRST" href="http://www.usfirst.org/who/default.aspx?id=34" target="_blank">More About   FIRST<img alt="More About FIRST" src="http://www.sparky384.com/wp-content/uploads/2009/01/link2.png" border="0" /></a></p>
  </div>
  <div class="footer"></div>
  <!-- end .container --></div>
</body>
</html>


/* Only For Testing Purposes */
#desc {
	position: fixed; 
	right: 0px; 
	bottom: 0px;
	width: 350px;
	background-color: #fff;
	border-style: dotted;
	border-width: 1px;
	border-color: #000;
	font-weight: bold;
	letter-spacing: 0px;
	opacity: .5;
	filter: alpha(opacity=50);
}

#desc p {
	opacity: 1;
	filter: alpha(opacity=100);
	color: #000;
}

#desc ul { list-style-type: none; }

/* Begin Global Tag Styles */

* { margin: 0px 0px 0px 0px; padding: 0px 0px 0px 0px; }

body { 
	background-color: #395972;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	letter-spacing: 0px;
	color: #333;
}

h1 { margin: 0px 0px 0px 0px; padding: 10px 0px 0px 0px; font-size: 31px; letter-spacing: -1px;}
h2 { margin: 0px 0px 0px 10px; padding: 10px 0px 10px 0px; font-size: 28px; letter-spacing: -1px; font-weight: normal; }
h3 { margin: 0px 0px 0px 10px; padding: 0px 0px 0px 0px; font-size: 17px; letter-spacing: 0px; font-weight: bold; }
h5 { margin: 0px 0px 0px 0px; padding: 10px 0px 10px 0px; }
p { margin: 5px 10px 5px 10px; }
small { margin: 0px 0px 0px 10px; }

hr.cleaner { clear:both; height:1px; margin: -1px 0 0 0; padding:0; border:none; visibility: hidden; }


.alignleft { float: left; margin: 10px 10px 10px 10px; }
.alignright { float: right; margin: 10px 10px 10px 10px; }


a:link { text-decoration: none; color: #333; font-weight: normal; border-style: dotted; border-width: 0px 0px 1px 0px; border-color: #666; }
a:visited { text-decoration: none; color: #333; font-weight: normal; }
a:hover, a:active { text-decoration: none; color: #333; font-weight: normal; }

#menus a:link { text-decoration: none; color: #000; font-weight: normal; }
#menus a:visited { text-decoration: none; color: #000; font-weight: normal; }
#menus a:hover, #menus a:active { text-decoration: none; color: #000; font-weight: normal; }

#foot a:link { text-decoration: none; color: #fff; font-weight: normal; border-style: dotted; border-width: 0px 0px 1px 0px; border-color: #fff;}
#foot a:visited { text-decoration: none; color: #fff; font-weight: normal; }
#foot a:hover, #foot a:active { text-decoration: none; color: #fff; font-weight: normal; }
/* End Global Tag Styles */

/* Begin Global CSS Styles */	
#head {
	width: 100%;
	height: 125px;
	background-color: #092c47;
	color: #000;
}
	
#mast {
	width: 950px;
	margin: 0px auto 0px auto;
	text-align: left;
	}
	
#logo {
	float: left;
	width: 250px;
	height: 125px;
	background: url('resources/global/logo.jpg') top left no-repeat;
	margin: 0px 0px 0px 0px;
}

#logo span {
	display: none;
}

#menus { float: left; margin: 20px 0px 0px 0px; }

#menutop { margin: 25px 0px 0px 0px; }
#menutop li { display: inline; list-style-type: none; padding-right: 10px; }
#menutop li a:link { text-decoration: none; font-weight: normal; color: #000; border-bottom: 0px solid #ff4908; }
#menutop li a:visited { text-decoration: none; font-weight: normal; color: #000; border-bottom: 0px solid #ff4908; }
#menutop li a:hover, a:active { text-decoration: none; font-weight: normal; color: #000; border-bottom: 2px solid #ff4908; }

#menubot { margin: 5px 0px 0px 0px; }
#menubot li { display: inline; list-style-type: none; padding-right: 10px; }
#menubot li a:link { text-decoration: none; font-weight: normal; color: #000; border-bottom: 0px solid #ff4908; }
#menubot li a:visited { text-decoration: none; font-weight: normal; color: #000; border-bottom: 0px solid #ff4908; }
#menubot li a:hover, a:active { text-decoration: none; font-weight: normal; color: #000; border-bottom: 2px solid #ff4908; }


#page {
	width: 100%;
	background-color: #23455f;
	color: #333;
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 20px 0px;
}
	
#content {
	width: 950px;
	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	border-style: solid;
	border-width: 0px 6px 6px 0px;
	border-color: #1a3447;
	text-align: left;
	background: #fff url('resources/global/contentBg.gif') top left repeat-y;
}
	
#foot {
	width: 100%;
	background-color: #395972;
	color: #fff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}
	
#credits {
	width: 950px;
	margin: 0px auto 0px auto;
	text-align: left;
	max-width: 1024px;
}

.author {
	float: left;
	margin: 0px;
	padding: 4px 0px 5px 0px;
	width: 450px;
}

.author p {
	margin: 10px 0px 0px 0px;
}

#footlinks li {
	display: inline;
	list-style-type: none;
	padding-right: 10px;
}

.compatability {
	float: right;
	text-align: right;
	margin: 0px 0px 0px 0px;
	padding: 15px 0px 5px 0px;
	width: 450px;
}
.compatability li { display: inline; list-style-type: none; padding: 0px 2.5px 0px 2.5px; margin: 10px 0px 0px 0px;}


.compatability p {
	margin: 10px 0px 0px 0px;

}

/* Content Pages CSS */

#sidebar {
	float: left; 
	width: 220px; 
	min-height: 200px; 
	margin: 0px 0px 0px 0px; 
	padding: 0px 5px 0px 0px; 
	}
#sidebar-content { margin: 20px 10px 0px 10px; padding: 0px 0px 0px 0px; }
#sidebar-content ul { list-style-type: none; }
#sidebar-content img { margin: 0px 0px 0px 10px; }


#main { 
	margin: 0px 0px 0px 230px; 
	padding: 0px 0px 0px 5px;
	
	border-style: solid;
	border-width: 0px 0px 0px 1px;
	border-color: #ccc;
	
}
#main-content { margin: 0px 10px 0px 0px; padding: 0px 0px 0px 0px; font-size: 100%; }
#main-content ul { margin: 0px 0px 0px 15px; }
#main-content li { margin: 0px 0px 0px 15px; }
*/
