ࡱ> qsnop5@ ubjbj22 (XX mdddd2tt2444444$R7X888X mؿؿؿ8n 2ؿ82ؿ"ؿV6@ hԝ kudrv |0x˩ؿ٩ SXX$MQJ"QHTML Forms, Javascript, and Cascading Style Sheets HyperText Markup Language (HTML) is used to create web pages that can be viewed with a browser. With it a developer can add images, create lists, tables, and forms, add dynamic features with Javascript, VBScript, and Java applets, and enhance the appearance of pages with Cascading Style Sheets (CSS). This document will serve as a brief introduction to some of the material. There are many books and web sites that show designers how to incorporate these features and more. They should be consulted for further details. HTML Forms Forms on a web site are used to gather information from the client. There are several different kinds. The simplest offer either a single box or a text area for a user to fill in. Sometimes, however, there are a limited number of choices to be provided to users, such as sizes or colors. These use list boxes, check boxes or radio buttons. Users may select several options at once from list boxes and check boxes, but radio buttons are used when only one selection is allowed. A Form begins with the
start-tag and closes with the
end-tag. All forms contain method and action attributes. Method attributes are used to inform the server whether the method to be executed is a get (doGet) or a post (doPost). Action attributes tell the server where to find the servlet or Java server page (JSP) that will service the request and provide a response. Text Boxes Text boxes and areas are used to gather information from a user such as names, addresses, credit card numbers, etc. A text box provides a single box that the user is expected to fill in. Text areas can be used for longer input like questions or comments. The simple form below displays two input boxes along with a button used to submit the data to the server. E-Mail Form

Enter your name and e-mail address.
Then click the Send button to send the data to the server.

Name

E-Mail Address

Here the head tags only supply a title that will be shown at the top of the browser when the page is loaded. The body of the document contains a message to the user to enter data and click on the send button. The form first supplies the method that the server will use to process the data and the action information that tells the server what program to use for the processing. The form displays two input text boxes and a submit button. The type information is used to tell the browser what kind of object to display. A text box displays a box where the user can type in data. Its initial value is the empty string. But after data is entered, the value of the box will be whatever was typed in. When the type is submit, the browser displays a button with a caption given by the value attribute.  Note that all tags either have a matching closing tag or are written with the ending />. This document begins with a DOCTYPE declaration at the beginning. This one is Transitional. That means that it follows the XHTML (Extensible HTML) guidelines, but it may make some allowances for older browsers that do not support Cascading Style Sheets. Documents can also be Strict or Frameset. Strict documents use CSS to store all information used for the layout of the page. Frameset is used when the document contains html frames. The action attribute, action=http://127.0.0.1/servlet/addresses.EmailServlet, is used to tell the server where to find the program that will service the request. This one says that the servlet, EmailServlet, is in a package called addresses. It is located in the root directory of the server and can be accessed using the local loop, 127.0.0.1. The code for it follows. package addresses; /** * EmailServlet processes a request from a web page. It responds to the * request by sending back a web page listing the name and email address. **/ import java.sql.*; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class EmailServlet extends HttpServlet { public void doGet (HttpServletRequest request, HttpServletResponse response) { try { // Get a PrintWriter object and respond to the request. PrintWriter out = response.getWriter (); String name = request.getParameter ("name"); String email = request.getParameter ("email"); Page.createHeader (out, "Addresses"); out.println ("

Hello.

"); out.println ("

" + name+ "

"); out.println ("

Your email address is " + email + "

"); Page.createFooter (out); } catch (ClassNotFoundException e){System.out.println ("Class Not Found exception.\n");} catch (SQLException e){System.out.println ("SQL Exception");} catch (IOException ex) {System.out.println ("IO Exception.");} } // doGet } // EmailServlet // Class with static methods that add standard lines to the html output page. class Page { public static void createHeader (PrintWriter out, String title) { out.println (""); out.println (""); out.println (""); out.println ("" + title + ""); out.println (""); out.println (""); } // createHeader public static void createFooter (PrintWriter out){out.println ("");} } // class Page Text Areas Text areas work very similarly. The form is somewhat different, but the servlet is much the same. Comment Form

Please enter your comments below.

The line, , defines a text area called area with 4 rows and a width of 40 columns. The wrap attribute tells the browser to wrap the text. An example page is shown below.  SHAPE \* MERGEFORMAT  The servlet looks much the same as the one for the text box. It also uses the same Page class. package echo; /* CommentServlet processes a request from a web page. It responds to the request by echoing * back the comment that was sent in. */ import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class CommentServlet extends HttpServlet { protected void doGet (HttpServletRequest request, HttpServletResponse response) { try { response.setContentType ("text/html"); PrintWriter out = response.getWriter (); String comment = request.getParameter ("comment"); Page.createHeader (out, "Comment Page"); out.println ("

Your comment follows

"); out.println ("

" + comment + "

"); Page.createFooter (out); }catch (IOException e) {System.out.println ("Servlet Exception");} } // doGet } // CommentServlet  SHAPE \* MERGEFORMAT  Radio Buttons Radio buttons offer the user several things to choose from. The form uses an input statement as with text boxes, but the type now is radio. Color Form

Choose the color for your garment.

White
Light Blue
Tangerine
Salmon

If the user chooses Light Blue, the URL string for this will be http://127.0.0.1:8080/servlet/colors?colors=blue  SHAPE \* MERGEFORMAT  The doGet method for this is much the same as before. protected void doGet (HttpServletRequest request, HttpServletResponse response) { try { response.setContentType ("text/html"); PrintWriter out = response.getWriter (); String color = request.getParameter ("colors"); Page.createHeader (out, "Color Page"); out.println ("

The color you selected is " + color + ".

"); Page.createFooter (out); }catch (IOException e) {System.out.println ("Servlet Exception");} } // doGet Check Boxes Check boxes are very similar to radio buttons. But they are individually named rather than all having the same name. You also may select more than one choice with a check box. The following is an example where that would be appropriate.

Indicate your menu selections.

Hamburger
French Fries
Soda
Apple Pie

 Since it is possible to make several selections at once, you cannot use getParameter () to get the value. Instead Java servlets use getParameterValues (). The following is an example. String [] choices = request.getParameterValues ("menu"); Note that getParameterValues () returns an array, not a single value. Since some of the choices may be empty, use an if statement to test for this. for (int count = 0; count < choices.length; count ++) { if (choices [count] != null) out.println ("" + choices [count] + ", "); } This example only displays the results. protected void doGet (HttpServletRequest request, HttpServletResponse response) { try { response.setContentType ("text/html"); PrintWriter out = response.getWriter (); // Get the choices, an array of Strings. String [] choices = request.getParameterValues ("menu"); Page.createHeader (out, "Menu Choices"); out.println ("

Hello.

"); out.println ("

Your choices are "); // Print out the non-null values in the array. for (int count = 0; count < choices.length; count ++) { if (choices [count] != null) out.println ("" + choices [count] + ", "); } out.println ("

"); Page.createFooter (out); } catch (IOException e) {System.out.println ("Servlet Exception");} } // doGet List Boxes List boxes are similar to check boxes. They have a list of options that the user may choose from.

Indicate your menu selections.

The size attribute determines how many items will be shown. If there are more options than the number given by size, a scroll bar is added. If you want to allow the selection of more than one item at a time, include the multiple attribute. (In order to select several items, users have to hold down the control key when making the selection.)  protected void doGet (HttpServletRequest request, HttpServletResponse response) { try { response.setContentType ("text/html"); PrintWriter out = response.getWriter (); // Get the choices, an array of Strings. String [] choices = request.getParameterValues ("menu"); Page.createHeader (out, "Menu Choices"); out.println ("

Your choices are "); // Print out the non-null values in the array. for (int count = 0; count < choices.length; count ++) { if (choices [count] != null) out.println ("" + choices [count] + ", "); } out.println ("

"); Page.createFooter (out); } catch (IOException e) {System.out.println ("Servlet Exception");} } // doGet Javascript Scripting languages such as Javascript and VBScript are used to add functionality to web pages. They can be either included in the web page itself or stored in a separate file. In the latter case, the web page must include a link to the file. Scripts are downloaded with the web page, unlike Java applets and servlets. Applets are not downloaded until the browser reaches the tag. Servlets always execute on the server, not the users computer. But Javascript is downloaded immediately and is executed on the clients computer, thus saving time that would otherwise be used for repeated connections to the server. Javascript is not Java, but it shares some syntax with Java and C. It is not strongly typed, so variables do not have to be declared, although they may be. Also statements do not require a terminating semi-colon, but again these may be included. If two statements are on the same line, they must be separated by a semi-colon. Also like Java, Javascript is case sensitive. Script That Says Hello The following example simply writes the word "Hello" into the box when the user clicks the button. It does not send anything to the server, so the form includes neither an action nor a method attribute. Javascript Hello Example
Scripts may be placed either in the head or body of the page. It is somewhat more common to put them into the head, since it is downloaded first. Also this separates the script from the rest of the page. If the script is external, the head would be as follows: Javascript Hello Example The script file, helloScript.js, would contain only the following code: Note that the script is placed inside a comment. This causes older browsers that do not support Javascript to skip the lines. Javascript Functions Functions in Javascript are very simple. They may either perform an action, such as the one above, or return a value. A useful example of the latter is found in the next example. It checks a login form to see that all the boxes have been filled in. This check is performed by the users browser rather than on the server. This saves a significant amount of time when the form contains a number of boxes. This example shows an alert message and returns false, if the box is empty. The alert message is contained in a popup box as shown below. A false value prevents the action from taking place. However, if both boxes contain text, the value true is returned and the request is sent to the server. Login Form

Please Login

Username:
Password:
/body>  SHAPE \* MERGEFORMAT  Functions can also have parameters. These are not typed, but otherwise they are similar to those in Java methods. An example would be if there were two forms on the same page and the function had to distinguish between them. The function heading might look like function CheckForm (formName) and the submit tag . Objects in Javascript Javascript also has objects. The one in the next example is a Date object. Like in Java, it must be instantiated before it can be used. There are a number of accessor methods included with this object that get parts of the date, such as the year, month, day, hours, minutes and seconds. The values are those that are stored in the users computer. If the computer time is accurate, the results of the function will be also. The document mentioned in the script is the web page. This will write the date and time on the web page. As with any html page you have to use tags such as
or

to indicate a line or paragraph break. Numerical Data and Arrays Text boxes contain text, i.e. strings, and not numbers. If the contents of a box are to represent numbers, they must first be parsed before they can be used in a calculation. As in Java, the method to use is parseInt. If the text box, weightBox, contains an integer, the following can be used to change the contents from a string to a number: weight = parseInt (weightBox.value); After a calculation, the answer may turn out to be a double with a number of decimal places. The following will round these to two decimal places: mean = Math.round ((sum / count)* 100) / 100; Occasionally a box may be empty or an answer may not exist. Then Javascript displays NAN. This stands for Not a Number. Checking a box for empty before using it is prudent. Javascript has arrays, and like those in Java they begin with index 0. They are instantiated with new. var arrayName = new Array (); They do not have a fixed length, so the number of objects in the array can be found using arrayName.length; Arrays can also be filled initially using parentheses: var prices = new Array (2.89, 1.50, 1.00, 4.95, 3.50); The contents of an array are accessed the same as in Java using square brackets. prices [0] = 3.75; Creating New Windows Javascript can also create a new window with a specified HTML document in it. This document can either be on your local disk or on the Internet. The following example creates a new window for a date-time page. The code is straightforward. You have to tell the browser where to find the HTML page and how large the window should be. The following shows a sample script that opens a new window. The first attribute tells where to find the page to open. The second says that it should be opened in a window. The last two give the width and height of the new window (in pixels). Notice that the width and height are enclosed by a single set of double quotation marks since they combine to make up a single attribute. The new window created with this script appears below. It is a functioning window and can be used like any other HTML page.  Cascading Style Sheets Cascading Style Sheets (CSS) are used to add styles to web pages. Styles are such things as color, font type and size, margins, and cell spacing. There are two reasons to use style sheets. One is to separate style information from HTML markup and content. And the other is to keep consistent styles throughout a web site. Style sheets are very simple. They consist of a list of HTML tags followed in curly braces by styles that are to be associated with them. For example, if a web page contains a table, a style sheet might have a listing for styles associated with the table. table { border-style: solid; border-width: thin; margin-left: 1.0cm; margin-top: 1.0cm; } A Sample CSS Document /* Style sheet for an application, named project-styles.css. */ body { background-image: url("images/white.gif"); text-align: center; color: blue; } h1, h2, h3, h3, h4, h5, h6 {color: blue} form {color: seagreen} table {border-color: blue;} Things to note: Comments may be inserted anywhere and come between /* and */. Semi-colons are used to separate styles and not to terminate them. They are required between styles but not at the end. Colons are used between the attribute and its value, i.e. color: blue. White space is ignored (space, tab, line-feed). A list of tags may all have the same style attached to them. Go to  HYPERLINK "http://www.w3schools.com/" http://www.w3schools.com/ to find a list of styles supported by the W3C consortium. Why Cascading? There are four levels for style information. Inline styles: . Internal style sheets: styles listed between . External style sheets; style sheets linked to web pages. Default values for the browser: such as font, "Times New Roman". These styles cascade into one style set. An inline style is applied first. If there is a conflict, it has precedence. If there is no inline style set for a tag and there is an internal style sheet, it will be used. If neither of the first two exists for a tag and there is an external style sheet, it comes next. If none of the above exists, browser defaults will be applied. Linking to an External Style Sheet To link to an external style sheet, you have to add a line to the top of your web page. where project-styles.css is the name of the style sheet. If the sheet is not on the same directory as the web page, more detailed information about the path to it would be required. Login Form

Please Login

Username:
Password:
Note that this web page also has a link to a Javascript file, logonscript.js. This particular script is used to prevent the form being sent to the server if one of the boxes is empty. Internal Style Sheets Styles can also be included in the web page itself. This separates the styles from the tags, but it does not help with establishing uniformity across a number of pages. However, it is very convenient to use when you are developing your web page and style sheet. You only have one file to make changes in, not two. Table Example
Address Table
NameEmailTelephone
Alice Leealee@aol.com123-45-6789
Barbara Smithbsmith@yahoo.com234-56-7890
Cathy Jonescjones@hotmail.com345-67-8901
 SHAPE \* MERGEFORMAT  The class Attribute It is possible to have a style apply to a class that you define. A class attribute is added to a tag, and then all the styles defined for that class will be applied to that tag. For example, we can have two heading tags of the same size that have different styles applied to them.

This line is red.

This line is blue.

In the style sheet, class definitions begin with periods. This means that you can distinguish between different uses of the same tag. The entire web page follows: The class attribute

This line is red.

This line is blue

A more extensive example displays a list of topics for the a course. It has a class attribute for centering a line. This may be useful in a number of places. It also has one for styles to apply to a list. CS 396S Topics

Topics for CS 396S, Servlets and Databases

In the browser, this looks like the figure below.  SHAPE \* MERGEFORMAT  There is much more that you can do with Cascading Style Sheets. See the references. References Susan Anderson-Freed, Weaving a Website, Prentice-Hall, 2001. The w3schools web site,  HYPERLINK "http://www.w3schools.com/" http://www.w3schools.com/.  The text by Susan Anderson-Freed, Weaving a Website, Prentice-Hall, 2001, is a good example.  The tutorial at  HYPERLINK "http://www.w3schools.com/" http://www.w3schools.com/ is especially helpful.          23E P U V F Q R 3 4 5    45nrܷܣvrih26CJaJh2hCJOJQJ^JaJh2CJOJQJ^JaJhP6CJaJhPCJaJh2CJaJh*uCJaJh{e2h{e26CJOJQJ^JaJjh{e20JCJUaJhtNCJaJh{e2CJaJhMCJOJQJ^JaJh{e2CJOJQJ^JaJ)34e f E F Q R 4 5 67v} ugd2gd2gdPgd{e2gd{e2$a$gd{e2 uuuuIS\de"#67gdb2gdtNgd{e2gd2<@TZ#'BNu !"+:_<]^ɥhiLPCJaJh]zlhb2CJaJhb2hb2CJaJhb2CJaJh_htN6CJaJh"1CJaJhtNCJaJh{e2CJaJh2h2CJaJ"jh2CJUaJmHnHuh2CJaJh26CJaJ07;,-[]!S@]? gdb2gdb2?K]^OiScdopgd2gd{e2gdgdiLPgdb2^yzbcdnopEFNO|}      L M U ^ e q  ƾh2h2CJaJh2CJaJhb2CJaJhhCJOJQJhCJOJQJhCJaJhiLPCJaJhzCJaJhiLPhiLPCJaJAEM{ K U ^ f g _!`!}!~!!!!!M"u"x"""""""D#gd+5gd2 `!a!x!y!z!{!|!!!!L"Q"a"b"t"u"####r$w$$$$$$ %%%%%%%pajhB0hB0CJUaJ"jhB0CJUaJmHnHuhB0CJaJjhB0CJUaJh`CJaJh+5CJaJhiLPCJaJh+5h+5CJaJhzCJaJjh2h2CJUaJ"jh2CJUaJmHnHujh2CJUaJh2CJaJh26CJaJ#D#G#M#Q#{####$B$o$$$$$$%%!%"%%%%%%&S&&&gdmX3gdmX3gd+5% %!%"%%%%%%& &T&U&&&&&#'%'k'm''''''''''@(p(r(s((((((((****-ho%CJaJ hhhCJOJQJj hmX3hmX3CJUaJ"jhmX3CJUaJmHnHujhmX3CJUaJhmX3hmX3CJaJhmX36CJaJhmX3CJaJhmX3hB0CJOJQJhmX3CJOJQJ-& 'i'''''''q(r((((())")&)P)|))))&*B****gdmX3***++++,^,,,K-}----------------Z.gdo%gdgd-- / /////.0/090=0000z2|2222222455 6 66ʿ濩桗vhvR+jhoB*CJUaJmHnHphuho6B*CJaJphhoB*CJaJphhCJaJhhCJOJQJhCJOJQJhRG:CJaJh+5ho%CJaJho%ho%CJaJh]zlho%CJaJhoCJaJh7Vho%CJaJho%6CJaJho%CJaJ"jho%CJUaJmHnHuZ..*/a/d/////,00060:0d000000&1J1t1111262;2U2 gdo%gdo%U2Y2x222222>3?3n3334(4B4Y4d4444666666 L@gdogdogdgdmX3gdo%666 6 6 6 6_6c6i6m66666,7/737_7777778L8Q8gdo gdo L@gdo6a6b6l6p6627378888888<<<<<!=2===>> >0>:>;>[>\>>>>>ʽssdddssshhhoWB*CJaJphhzhoWB*CJaJphhoWB*CJaJphhoWhtCJOJQJhoWCJOJQJh`gh`gCJaJh8UCJaJh`ghRG:6CJOJQJ]h`g6CJOJQJ]h+5hoCJaJhohoCJaJhoCJaJh]zlhoCJaJ#Q8k888888899b;c;<<<<==Z>??@@@Agd!gdoWgdoWgd8Ugd`ggd`ggdo L@gdo>>>>>>>>>>>>?? ???,?/?c?f????????@@@A1ABAUAcAAAABBøsgh!B*CJaJph#hzh!5B*CJ\aJphhzh!B*CJaJphh!6CJaJhYXh!CJaJh!CJaJhoWCJaJhhhoWCJaJhhhoWB*CJaJphhoWB*CJaJphhzhoWB*CJaJph#hzhoW5B*CJ\aJph(A:ABADAAABBBBBBMDNDwExEEEEEF F5F;FfFyFFFgd)!gd)!gdoWgd!BBBBBBBBBBdDiDxEEEEEEEEEEE F FFF-F/F8F9F;FPFjFkF|F}FFFFFFFFFFFFFFFFFGG Ghalh)!CJaJh)!6CJaJh)!CJaJh)!htCJOJQJh)!CJOJQJhoWh!CJaJh!CJaJh&kh!CJaJ#hzh!5B*CJ\aJphhzh!B*CJaJph7FFFFFGGGG8GAGIGaGGGH?HHHHHHHHHHHHHHHIJ*JKJwJJJJJJJHLLMCMڦڦڦڦڜڍڍh>FhCJaJhhCJOJQJhb-hCJaJjhr|hCJUaJjhUmHnHujhCJUaJhCJaJhXh)!CJaJhalh)!CJaJh)!CJaJ6JJJJGLHLgLLLLM*MBMMNNNN}O~OOOPQQQQQRgdgdCMyM{MMMMMMMMNNNNN~OOOOPPkPsPQQQ4R7RJRVRRRRRRSsSSZT[TpTqTuWѾњюц|xlh+4B*CJaJphh+4h+4CJOJQJh+4CJaJhwh6CJaJhl)hCJaJhCRhCJaJhh)!CJOJQJhCJOJQJh6CJaJhCJaJh>FhCJaJhB*CJaJphhqhB*CJaJph*RRRSrSSSSSFTZT[TpTqTUUEWFWeWjWWWWGXHXJXKX L@gd+4gd+4gd+4gduWWWWWWHXIXJXKXLXbXcXdXXXNYRYYYZZ[[+[,[-["\ź}}}rh^ZOhz+h CJaJh hCJOJQJh CJOJQJhLwehLweCJaJhrCJaJhz+hr6CJaJhz+hrCJaJhLweh6CJOJQJ]hLwe6CJOJQJ]h+4h+4CJaJh4Vh+4CJaJ&j@h@~h+4B*CJUaJphh+4B*CJaJphhRh+4B*CJaJphKXLXcXdXYYZZZZZZZZ[[[,[-[m[s[u[[[[[[gd gd gdrgdLwegdLwegd+4[\"\#\3\q\\1]a]]#^$^3^4^a^^^_V_W_````QaaMb & Fgdgd & Fgdgdgd "\#\]]]]]]]$^2^3^4^d_k_S`T``````UbVb^b_bbbbbcc c ccc,c-cLckcucvcccccJdKdudvd~dddJe_e޿퓉h8{ECJOJQJhCJaJhz+h6CJaJhh CJOJQJhCJOJQJhz+h0JCJaJ#jhz+hCJUaJjhz+hCJUaJhz+hCJaJh CJaJ6MbNbUb]bbbc cc+cscccHdtd~ddddIeJe`eaeff0gghigd8{Egd8{Egd_e`eaefffff g ggg'g(g/g2g3g5g6g>g?gFgGgWgXgcgdgqgrg|g}ggggggggggggggggggggggggggggggh h hhhhhhhhh*h+h7h8hϽϽ۽۽ϽϽϽ#hBh8{E5B*CJ\aJphh8{EB*CJaJphhBh8{EB*CJaJphh8{ECJaJh8{EhCJOJQJJ8hDhEhPhQh^h_hjhkhlhnhohxhyhhhhhhhhhhhhh6i7i=i@iiiiiiiiiiiiiijjjjjj j%jh)h)6CJOJQJh)CJOJQJ&jhoxh8{EB*CJUaJph+jh8{EB*CJUaJmHnHphu jh8{EB*CJUaJph#hBh8{E5B*CJ\aJphh8{EB*CJaJphhBh8{EB*CJaJph2ijj0j1jLk{kkkkl!lBlLlMlllllllm+mFmfmmm ^`gd)gd)gd)gd8{E%j/j0j1j[j`jLk[kbkckukzk{kkkkkkkllll lllllll l!l#l$l)l0l1l2l7l8l?lAlBlKllllllmm*m+m,m-mûûûûûûܬܬܬܬܬܬh)5B*CJ\aJph#hELh)5B*CJ\aJphhELh)B*CJaJphh)B*phhELh)B*phh)6B*CJaJphh)B*CJaJphh)h8{ECJOJQJh)CJOJQJ6-mEmFmHmImJmVmWm\m]mcmemfmgmhmimjmwmxm}m~mmmmmmmmmmmmmmn nnnnn)o*o0o2o8o9o:opDpupwpppppppFqIqͿ޳޳޳Ϳ޳޳Ϳ޳޳޳޳޳޳޳޳޳޳h)5B*CJ\aJphh)B*CJaJphh)B*CJ\aJph hPmh)B*CJ\aJphhJ|h)B*CJaJph#hJ|h)5B*CJ\aJph@p p)p*p2pvppppGqTqqr1r{rrDsmssssssss ^gd)^gd) ^`gd)gd)^gd)IqSqUqqqqqqqqr0r2rzr|rrrrrrr/s5sCsEslsnssssssssssssttttt t t`tatktltmtӽ䞑h)h8{E6CJOJQJ]h)6CJOJQJ]h)h)CJaJ&j[hCh)B*CJUaJph+jh)B*CJUaJmHnHphu jh)B*CJUaJphh)B*CJaJphhJ|h)B*CJaJph1ss t t_t`tatltmtt u uiuuuuuuuuuuuugdo%gd2gd@# & F h^hgd@#gd)^gd)gd)mttttttttttuu u u u.u?uhuiuju{u|uuuuuuuuuuuuuuuuuu½¶®£‡|qjbjRShU hmX3hj!FhmX3hUj):hd* hUj'hd* hUjhUhSYh0JjhUjhU h{e2h h6hjh0JU h)h@#hSYh@#0Jjh@#Ujh@#Uh) h@#6h@#&uuuuuuuuuuuugd@#gd)gd8{Egdgdo uuuuuuuuuuuuuuuu h)h@#h) hh)jh@h)B*Uphh8{E hoxh8{Ej#hoxh8{EU hr|hjh@~hCJUaJjhr|hUj`hUh&1h:p{e2/ =!"8#$%Dd GD  3 @@"?Dd MD  3 @@"?Dd qD  3 @@"?Dd D  3 @@"?Dd N 0  # Ab*e /`3n e /`3PNG  IHDR:sLsRGB IDATx^pU_N`,0XSbP #8A+ H@~  &JѠ`A+XU (?;L;mu?z^6=Yvサ{{9ԼO;%$=xC|Mv Դ&=bl-+fw[A{G׫W>[B믹e|uhs%Jxeojz 'n_) {aƑZxn5wu̗l-e) W./²ј2C VOTͱ >z;Xxrb7/q sq/ 3G vQ龍5glG_aflK<sm.נE/,B}gӐx) BKdY𮻦<&g6fFrKmΪ7{/<8 &.h|[=׋Dʪa#5khGy㪲e z`$]W 掽=?>&9s}f2CԔA"v]WZE|;|~}azזKn۵_5Yοܯ+lAv`vY:(}7}ũX.QM(r-6ϽswvT)m֟DXdkkkkZ-V+r` COEt,c3I2MB9#y\tH2?vB&<(rVriX;إ8hGSD@ر>F ya&dn\Ph.?קTцU=  ;l9~(>媐_do[yAm] DUC. UɧBŽI]D" ;b vi$숁4(`۞^E-ZEW.y[3p{7DK>c ,:rÖ3̰sTM❑t`$W[C^ICp+f|\iLf)V>vxWQnu~ZE>vx3cﯷ㑥DRf;܊рII}"hi;C#X[ )" XέcsHf..Z  !t׿(eO%epqSWڮ&*H}(`( ) +@iPKT$aG A. S14NEc'_+颹uǻЖn鬙@tp7ƎΪ&*q9 0rK'l5E?e{_6 Ntd.xT؅}(1m̲Vұsɉx+8;"ǎuxO)jȜĂp$oDZ(+r&tDžA 7+;: ;I%<F u4׬`5Z(gN{=iW \E\:&yM{d}>`:?$G4sSYoLO<7eGfn_EmA1.jHFP.!v!aFo֐`dH]qkh+?/wpǧ?=~G?zlx<8+74z֗>yo7<˕y)\\sΛύxxxKV[y+o-9ۋ ܖ~ĥOϼ4L7tv)- o _jh(ۥ`^AEZ- o-U6`ż@[y o-f-Ai':ޗ .( oA"oAr̾|9~0Rf'&>-zizz)ES"оR,8xΉEL/-n69]'o͆i͉7@bZodMަ}ޖMdoByH5-X3#/WۢDݘ~RG<ф葷K- FVts\^1o^z^ԟlVRf R-֮Dy{'6Yz#S.ggۥx }oEN"vHv=u)hnߦhMf6HLVi.Ee53^*okTlr[y Ƽ-% o,o, ֞ڷDގ}.8To} 7+oA޺_ --[[XiB'/[w:>}/_=_pʁ[[;o/i/Yz<-w޾Ë}=?Oxrz]O D;$;q3mL=-i`y;{<8H m`yTs[OHc6ouUm:季!n+o$Q;Ddz#8g O4x=x*8d꿥(om\mvwh>ait}m{҃H@ޑ(?8ѳY Us%mK?@ҊU*yx +Ԩf.]tx>VM̿x~7+N5'ш oϗX[6EV \DϞ(^Rwi;y+*3+exKz¶ҩHX՜:DL\Ϲ&Z[6\?aKu.}UkNHv:mqg6>z16Eq>]mrü]uGio<\k[yQVۛ۸+[{OBZNa?^znGZc,lE.fy;jLfBzCp΁??xӕH9%7ω%.<Xx{,P2\mF-HӸ+s5idXuw+ 10^ײj ͐+q7.M WX5*WEI--۵h۱mԉꑛmT6P慢my+txy[У)ȧL{;lc@Q+zțNeM!de- Z 74?lȐtTDM\cXlUcffi:$&B{6 T4P݀\Eul%$t㬨7{mUXEo3^heQWPлWG[-!o-$,aޮzrn7Jo>0?ϟ~0 3 s~?=oί^|y4_{{/W{fOxxxPՀg{@[y om>ڴ_>q3/#oy; Ƨ)M4x- o6ݾ] gy lO N~ڢy tWEW-@Q.c ڷ-:_%oy+ow+歿V[y+o6#o:N;_pF!y y c`f'2;=1iKK)mŸ4fpN,b:}iq?Fp?y;m6LkN0ghux%m6]Mxm"{lEiZXyz}&:&D]ji0򶺝nmy-`:o5km0ojQv'm'?1r?-<;=gV.߶'ī_= o},tHw_̶CKAv˼ݾ6}Fm6+FrEfgΰJv)*.hL?g9eWyhޮ^]g+Ζl6mQ/qyfy[e Tվ&vsJ~[c^y j o oABE-L:ܺ|e}xxPNނEނy;|ůO} ol^xœӋR}jH$!ىK-idh9|NPoթ(o q[y8ޏ j_`'>9>設g@g8w;MݥW!V-Eyk"oC K'opyn%oδ!6 o)!ꁼ׻} -[-[ oü[-tbf3)s*Kkc/35m0.^5;lTlx!gֵ;՜:."m~;Q],MOϮL&d͢/JzK쏍7X3[DE ='UJxŚ^`f&Uoٺd~\=oSzEuBӟZK6ιJ~E_W9tm(Zldy[T16rmfvz˦uݩ&|[Wg M{/jNE%7E'8lW[^FE_UE7{Gt㭾ýjbg=mY w9Fy[}lŢ޲-ϵڷm&zDy𒕺Hs(St[Q՝q^A7.Ë\S՗NE%ܯd!rfz7AעhܲO [[tz\k`ݠpEiC;StPYՋq7(*o w=jN{Z@۝mV\]q;|w aУot;~B;fa+r6qWc5{pCï,uDŕDa,yN/wQv[c po3rlQTܥG?]ѭ,3q ?L%;ƪ _iaUKfo\qqy0nMgŽRǪA4Vw跸-r]Loi.o9@ޮ5@{ގmNTܴ}ަoڵ)Ҽm7/TVm]l_яëuۊneM!D>eڻaꝷǍZq4Ct*m !;UX-mѕX>0Ppv@acEݧ "jGb[66#'Oӧf!1۷]e`,cs('gEkJ*zFS-'_ezվz<m]bl y+o!Q0`6v3pӾ? [gz<[*}w_蜰SDd (Z ||0   # A"z>|X F(@=z>|X FL]G/1qxMYa]_lM\= = 8v8 vp W@xf=#@YNO_JzިWUR^}Rf_W|z3 ?~9 ?|xZ:0<g^c㪏O>5dLӿ?`xzO⧟ f<oӷg7 o8p 55\kkp p ]f Y<n5㿏;kwu\p \5p ݸ日^Y:\ܻkRx~g5Sp 55%1q 5*-k:&)jCq 5Qpܼ:w\_\\S7kUkY@kp \5=5o55\kkp p 55\<>>^ǡ<<gSlf?N㚥tv0^/qtsf"&=ɸ&߆7r xqT ؆ Hy٭;GQ7+|R\9drD*Ѝ/׀hN@\5kp @7w9E&ڏ*H9}cixLC0(`~O זvEIlN%ƕŠ ?Yhq0Fgq쎘.ՁqRU ͙Lav?M2uv1PQu?i d͑\SWuutPe[ڿNWyo)R(ۺ|^58f|qj 5]\iSLC,z u-ה7T_SԆZj2ܛk'.I'6lMEoH/״e5˗m؝ɜ̧5۹T2OPyQzZC>L>~?xyiX4xEMq{\>^ݶ}nfӝ[}%vu6ś[q}u klQ7\@\@\5шklC!\LrT<{Ʊ*P]螴` [H0)7oK)19J&]Ŕ7Wz$[vMEE$3Ö9ZLlF/j$3pMkN6tR9VO/o4VQ~ZsM,5rM&i򎮩%9gk]ya5⚙.mVP/5q͒hҾչfZ+93~2 o>MWW i5f#:Nsym!U\N+pͻxn^vޯC5kwMjpo\5\\kp p 5\\kd'kk.#Byl\s @k9Y0]j\MYݜ`lut":rl{\Et. ZxoNy.%L+MjbeNiM lI&7?}_*[`@KsM "dTQh7UOǿ" ur] b뚍"{sj39 \؝knLl…] r^蚖p͕dE z݂^tVfU$ĕkIqԹu)kK$s J;zgLZLI2ͮ ɯ-4PڮOJq\E9xqU<>?_r޿Ͽ|z3 <.ϟ9og&,74>6>ٻlsz_Xϟ{3fiX"4\\kp p 5ag(0f]e׌>n5÷}p 5\kp \5v㚳_>zgp pﮙJwL5Ը&k5|d:k_ 5D}q,_pMSM:TpJ\pMAp˃kWYg\c5\p k7`s\kkp 55\kkp d\xҮyxxd<5jxI@kN\kkor ήO&yt5g_kq=5\5kp &hrM5:42rMg, kq 1}:|Mak@4;kxSy⚥#kLD&|k255S.bk@4{k eTE!F{4۹ts;Iq tkaHk@7\9okq @\@\5A\Stp,h?L@#` OCk1 3gqw>-Ls+^[E'"8LWf +'$g)3OÆCz[C5;bGVjKpV2燾74g[2<;6~#ZZfOBEqs'LB7GrM_AnjkƖ:]=佥\VKoyI״✚-51$tqMM2]6Ե\SH\S1MQjpo疺<{&L~*P5!\7/_5߇cwZ's2v4l皺S|\sy* zwۆ~oMwnko le2,9Gp q q D#-p p2Q]\kNhC>vᚢ{҂1lA"<,ܼ-)uwWSzbt^y^⪒Lkn5e\:rFےL~ [~)Y\5rQW8kSՀp ]z׼Qθb⩮{kkp p 55\kkp p 5Payo/t\'giW_~Ks Dd 0   # A"t PMT"v@jg~uw݋QݙGa?Q/~?{}ӿ~߼'}{=O?ۿ'{Uׯ7?^?nAz}ǯ_]7ݓ_eV~z_Kiws|@> |@>  |@> ɝWJa.8D Qj:+_<8C~xtgsEÏS'B|gGZij0^.!}϶9fr2dU`a>GYeԴ6ٹɭN zvnSv57l0q ࢂ\a㻐铞Z67iee way(YfwlmY HUB{\sPv9D'@M!kT5+Dt*мBVvUDVk;Sr3rhG>ۜ;S_#װSD(J)ԁXa֌ρg[?q!1M`ޮˇ&Ϳ~ aCݩwQ6:{PV!+d)m>uz hg|>yban"r}X+>LمC[~!먥)>G*xMCZF7xjZYT|w7WvZvwlltZh9h[_pKNN^hp=C$6 œɇ=Tԝ߹PulYCtz-,xqviaѭaQl{2{|?\6ǻ|hQ!kýݼc;,6f{|\ |@> |@> |@E>tcL4ѹ~Ǭ;rHpN͞.ኂOp]fbգJǩ/$yO ȇX>z7YomH -q|8t> /fFm 1|En8ܻ|@o?wTgYtz|D@>/"b\<3H͘xQi)#N|~|h#`gVF6L#ۙx`,@>,0J:!+uFp+H9M|V̇_"ɇQsҋH3n]? @> |@> \L><~~ܿ~w~пg~/;I?ɛ^t[M{}ztz.|@> ||@> |@> &V^ݚ+Mj|-7+k8Fm|L{6:}dŞ?N} >kҫ{1Q>B=ʐU?R9d.Rӂ[f W&j;r+腖kڹOy%'. .sBOzjp`ap܅Viv䡠ndISeͶ2/v"V rEC_5ɇQլ::vЪвC YŦ{VV"ZLUݣ:nsPO}\NY(5Sb48VB-.](ȇ[37?ʺ~glp=ʇ4Y{~X.4U7̇YCwwrSWI>G0Ai[a6χJm `޶C7ܣ:!R䉅' W!a0yd9na~BQ?7UjQier.>RI߼ ^iY >bق I N kmeXt|-];i; {;)|ذ2O&PQwvC~Bաgmn=ꁊ V=ʇEvE!Xr6*^l^G͇ݏv_(VؤUqE |@> |@>  |@> ЍIL3ԢF .&ZB!]¹;85{x+ P@>Lw? 'avU+޶'tDlb#G >5/ bжdMrO#)hEv 01A>}patK8\QveҝAxsOs %6cvaFReO8&na FgYu0?O3lgⁱHb?(*뇬֑ٗJ,""\7!X1}|.&F K/ YQlt||@> |@>p1tۻ?}Q׏׏o??}?a1 Dd ?g 330   # A" t=b3dgw eF@= t=b3dgw%QO xݱpޝı; pwnpGXv yWA ~k.#v…+SN2"7CJ;rEw#ӓ߳']o^t]u=^'ݵo}swY7˧ݿo>Co糿aOwv]{O_>=Q][~nk |ѷMVaY d]dWAdPAeAAǯJw/,]|A;2 28 a (l~XXSeฯj,*6'SGǃph0Ed| \`8N^5AA ͠چꠣBEK۴&:5:Lb[Q*5Ƣm眱(Az2hEmA#3Te3b52%Q=X-h1';M d% u0lޜz2 ՙ2;6sd$dPd0 }2ed?8Zht~0yWdÙ Bm'K Ω'?$Q=8oя>\;0qe-q Y O>,? +Jkռm+y&sf6G̖2[9!2ʉ?K(,>M4Jgl?'Ud~' R6xg%gL˵aݚFF{Ǹ9oN^< ٱg>^F|/}}{}}x+zwqu+c ެ ޮ ~~ 2( 2 w?>DKq0AaAX6q?X B~F2G`pW5AhA8`r^4D"s2sdd.xt'p z Ƞ ugp dfPmCuuJ ʢm \Z ddx}1+E.a c5Ueh6:=ePEeL)A)!-f3LNsSQd'yQ pd2V>&K#AhNb>}4 2KId& rqjd遥Nu/LrH9}>(UZmXmg֓X4tX2V0yRU[0@%YBS,l,EY̓oӔZ E#(Af ²1'ӕfkMz2sx47K+d3?exIZ d&ϫ-Sunc뽑0Li/>׌jkVz2|22xa5|$ 28. 6ݵ-:N#(2 N.&1譂( Fa cѶsX `m=4 " Ùdd Y]Xafئz2 E`v: WoN=avL `K2G `U GGs2 2`鄾iN2 Vep-4:t`s?+2NP6ԓ ƥRq ԓ zGx_qu2Ȗ`,'ߕRj^϶3X:R{iٶV&Β̯Sz-\K`i3'3:CR;ծgf/yN;^ͶIɾj,Zrfѫŵm/%4Q5{?n柝ϓ/D͆S7k_\ q#'Kbœ?{^^ծu\]s_}3eP7`fxwY+Z @/{n\p?x?,m Dd D 0   # A"* O,l4#p S@= O,l4#p!v x?$G?;9 9A d B  .q!1_ò8p@@HLhGHMioYtVwtfog~U]og^=7]ww7v<njxn(oo^}􋛧}X{{(_ݔ_nOv>|G>|E땹Y~7zpf-%{}{t`F!#ud3W_oOFAFddDF*#;z©w)GF8݌W%y 22G%#_~mQ֒ε7v/#\l$9 ُp!}%d.?2Տk98hFZ #48WSgup #2i.Pؔ_w} ҂&Yp|!U #S{j_2dv32R<'p1N,L>˗Gv ƩgƵZlFjU@FdZ 3#Ba fV˱d>{wKSYrI/ Ԓ3{\qF RSYF]8L73Rr=2$KHm.5eũdd|?ڏp61㋤.ܟ\ nꙵkRzcמ].^Bb†'~ɗȈH<}p$gǫzsu3}ۧs?B;Lp2b7&פ8ehG֕y #ɖ+Ps̛M8~jMdڌ;@4t@K@Fd;=Xt/ ?JYƪ U ;d.*#-0Y^a4~lrA32o/lm2b:f$8(=3}t.y2PWL lLuZZ> Sozą253 0&RmKۏqɬRgdɷv"U$[Xu iǩ?ddtgnF0bUF匮Aw 37SU_|b+gqcf$ggی <\F2%3RK227J KGWHd2e6l8{xoIrl~5&2Pl$[ Ϣj#9t29W+%|^fd e$D2"#gAxگM{Hp{w{mn/wݫg]??}x7(Otn oE]y{׏U3d632|nrF>m2"#Ȉ #2TedS_8u;|d?/AF"#\ZFTdܯ0b3;Z2¹fE$ǵA0.Ͼ䟌 #2G2q-Ǣ #222H df3AjPdDF8-*R+»;]SZ$ Е/ ddj_ kwRB`kLlbGF̎cFF.Ӊi<#xN#48̸Vb[+HvȈpBY+ 3" 4#cf$_H|1,ya݌Jp9gn0z#ui*#K?i~Sap6Z2{b+(#Ajj323ȒvW 'f#ZwFSΓZ\FDpi2%fw8,>@&#wֺ>{|х؃M=vMWow1Yӣ=<ګ^HL0#\1#Ґpwx_on/s?zT}tGhg? NfX,sG mqȺ2V##2d5qjyٻ ߏTP`sGHq ȈuK>Za?#X5jz|a`Ǒ[e6&zqi20U\,vNjĿV| kn!>8g{?A?3!6F,H5.`Ff꒵4[lEl;š=lby^H}d6yF]^`IF~0FV6wa* 6B՘L棌ƙ'q!xa-qBͯFd@d YTr$_&Uޘ1#?p`k݌9Ľ?HFd3S]>Ouy?pA]?wOnzDd$ccL   C (AlistboxR*˦ȨXD`F˦ȨXJFIFHHC  !"$"$C" H!"12#WAQg$%347BTUVqDabruv'1QRAaq! ?RFWlq3oG Ǯ !tyˆHJTfU~c܂۠֒Q|5ĉE=UQ6DEUUNjڝoCuY +oD1C$NBIwEN==IJiqo(89QA05X}I.[|+^ "OH[OMD2 A 4JfgI_E`_[vH $dVzDb{p(kwmMT];vd[do/xŴ}WN=^ϓN)8AT?5 a7kin;sˎq$x݃wqƉ֌͕@0TQUvksn/P/a(mvMp9fqdF;nkIM'{1On%o7 Qz'N]./f%/{-b&0Ė2`f0U!ATADIQZ:e}8qj˂v 2d ƅ>!ݲf&׏nܞ/2x Ȅn(˧ #JASDGT[mjwһ˞$ˮ]"i^@A{ !*8*8|KpDeb_#f7v[OJ*Ҿj6Hfe*h^>f9qoPDFcp8ӊ!׃$P4$@Uj~g.HdhȎ#<ܸ鲻+#ECĔFKpHy|%[5ǒknf$hJ ~t^~j9v:zsc^H6\iQaDq xH -(2h1Y.Ds[A i0rcJqq6G`Ra*`if?/ ۳9쳜b+R-s A[ :']:v[0eV,yMS_"Rfd\SS ӌ?6Ǜ[6%VT#OM"aUD;&箚^gɛ<7̎D]7#!yEYvT۱x׼[o^(ao:[s,(f@[^ʜNΎM" -nliMZq$ Ff&Kd d.>Elu^$pQvBEDPMQP!}2<S^^-6m] ]N;8eGۢؾꤽ\l>Vh˱<6=cha#Dqfeš stmn:.G{b(/UMWm+oN1k<йc%O&)`HZ]u xxmh9!1e3\;%<7ا1E!GRBؐjm~4ۥɸd6@$;rHpRCM<2rm@IT<gMl8|ltH}$MpgWq-}U>;imsM'aSۨ6$hžPz2[US.=1lv4bHjsf7w^X44x&*W#&['+#&AK|d3#E A.J(KwP{&ٵ6,EgtS9W륞rM+2Ńsb)ҏۂ띔}L BԬZzkg,6"m/☶2t['/HQK%DkKC퇐cY{s.ˋ Zox'i}QD2m!q]KpKtb쑖%U[c0Ǥ'x  ""r-fIȇ Lev {t&#ɾ ܁ZiEE[=>֌ EVVrz-46۝n 8hHG! ]u;5z͔1}u-n4wIXF\'}x! MTH5FtÈ^1 n7zg@~t2D Q }ywSkKw?C.u乢" q^PAN<9DlDۉk&7C`OK^9+x@pnem ;GRPuj kF4#Xd*ҁz% ɣGȻ!nI*-:q;ny$O!( 2mpy+b*A36 /FVMCbh @[޻*~zΜ`X޲a֟v@~IJqܝ!R%@SmfRRRRRRRRRRRRRRRRV''}ņ QDHM9#xAmvN굶W>2N,K-GҺ"!R]EUSS\bg3#WU45E\dﰒ"׷zq=|杞G1 }G8uvxaLQ]W˭ə`-!M_p}H!UXX ԟP1l;5z)KeyΊ _tVWދPX ?AcrXS1k.EVRB#{NȪ P$~x C6);5KEF@ؓלvT5IUOڨ}UL)tky6"l-1qN\m%-Iwc7L(%of ]"0NhIH:<zq=> ԟP~rXe/dZǣώ{:d1:<$+}f\nu Ȃ"X˗y  5%{c^O'T>z2h1-鎴ЁyyQ6S$B_U"dD^԰; ԟPو:,_ p;qh44qRAPQxmײ&gj2rW>'JR(((((((( e3$]$⸒HЋ}#h@Bߖ&]o_ckP<y%y"^I*&2y*wW1G?LoP9^WyqU{9wmy·>}.8|ylmMJɯ K1_^O(Æiůuj3WR; R R R R R R R R G*ڃ;Q:IyAd s6O6]ֺzubYj=uu! (BOZJ:8`Kx#ZTk~nJ%hmpg*Q^%X2e"|Ak\n\y];~j9:bݐMq~i m~.A.uDͶmQ7ؑUjYfM{&H3na24iOڟVY6ŵ(WUCj@ '&4sLמivr7oOe}~:"p9qvߎnohG__7ZtSIҔv” l n< hbq &"HҴ1<~7r=8ʘqFQL7\qPM^Sl_W+ftCmL?"|w\O_"_nՖ} :LSU$SeUTXϿ =hYk+ɹX_%.qV^pFەGwY.$eՎ2i^/&$X3F2QP%UvxU@oξe:5;KH3\[66Pd8Eۓhj]6O⟆-x/'Y.n|o/|eZ^]7`oc< k"@c.Q|1%o4AD T4"/: uN?D׻?)b vAFExeF6X2.|WLٕ6Me4 :"%ElSU^rOB6zdt,4W 8-.ꈝ#2q˭ﱚ\dU"䔶G~\'u t߫ MοRDɁ^]K:aSo"I>So LX׻jBt{ޝW \^n[m`8А+5#i Nwe2(]TmwBAI, \zoN? %QCUU1PT5"RER]n֬pvl?eÍG s 6 ""V "]ˣj5Ë&G˗.-W->yvmSEe7LgfԖdaK^=^%9[s%=pgVed.2?vCݶMxEw%XtU'ȑXNiA86SۊhF"\䪆|]']C\EqۣQ'ŐhJ-<$KȾҺ`Rd)J)J)J)J)J)J)J)J)J)J)Jd7`-KDDD҃&9hbo߳oOf&?҃&9hbo߳oOf&?҃$sٿFmZY" _'*/_nRRRRRRRRRRRRRRRRRRRRRRRRRRRR:Dd (0  # A"sO=%$7 b@=sO=%$7 bTq6Xx͏$}wfk؅ɲq0FB + ,+bEY r!y!=#% F $,8,$S3=UO=3UݟyzzB/<‡p>ΆpɫWBt,?nC;B?;uڷ>pLb=4ٝ{c~'+d?~5gf޿A}vOջۻpZ|I{cm>5{^쇏fq1b;z'f q_^k17mX5߷{p s?bkEzI~/y:On|1>-wx‹;7b{^md4okm'ޞ/TIq?.I'{<'rgN=Ŕw^cɫJ0{gn[߸> wEt# <Rhyk#u~8^:;v~8 q<y(i| 9sGry:/y((="Z8_ud5جj-_Kk >FKX%93s9vk?i/JcD yM؆"7u^<^6+V6mҗ899Dy޷_^a]E}<9y q8<<X1lo=:/><珽ߦja~pyK s8U,/8"҇B%Uy|ˏV5駜|Ηvi 1dӑCilӨt?v>_>ªϋsئ/%uJgo#p~Ph9ysx~hs}4s<9s<8yp~cp_1 1] ݕ妪06sSU=V|Gtʼ5}r&̯sO&7g~iŭUa :_Wd:?/}TM8Ԑ|Nys>sd魣s$Ni-=qop&=Q 6Z*3_J3ćzӻAL/<8}oU3u8;|UKGq9yp~O/̳1풻njL͘޸܅psN{ӋZ$tz^'!'^ynx!| l5 A)<:?JwQ;?8su~<شv9#v~<ϼ|-:mjmlVίUJkݒ9FM4s~ΗfM"<|Z&]lUizi:/|fH~c6Kl݃O]h<|yίl/簮âWys<8yyCcp]67]soS50P<s9\uUm|S*dICcMmcbeSswKvȡ4igy};k~`_aEI9KlSۗFD8?(<9oك`CODqorjw><9998_u~8{lfyi(-ϋm8v9Wu;UT] ]Cyo43ߦ统`ձMv?9'fUD .H@]/_;:EF~͜98yp46mK1~<B8ө#.wMm'c#;cIp=aB1OL'n˱E+k(O!;+]eY>sP߹Y,6_+ܲgaoϦgl=?k/^CHL^.cz~;7goʩ'X7?m;sϥ[8h>?ۿ.˹?->KWy_+6sYV7_t#KE}aۛŞ~^ͧx1^Ls 8׮>q0먚vQVwo39 ú.^%9ys<1 q4yy"bt=W{t^t=|8y{MBl ̩pUqMOϫY^$qDJ6KjO9ޝ/+JcΧ#ئQ69|}~UU'|/Mm_J&'_Φ߆Gs|Є<i,__禪{8WykLͳ_< P+q;jSMnV"ӊ[}>5>u6t~ZwCw_7f6 q>'ƽɩ!$|6[GH6Z{<|Ց;|Mzܛዧգ%lTfTUBhV:Xe~9FC QCM} ibc/i}Ӝ]^TzU%|9m6欥9a 7'žz䜞tőq~imԄ.2s~]<z{ytk閅^#d)*u*uWV:a[Jz4dX{%q?7zi+iW|!Bn!61N6(Xwr)hYȞɈ7>eokϮ9H﾿ҿtu1rξow~ zf =<Eƪ\>VFKLYO0B#oϵ-tM^vy5!}{|j\C!'<&947si5&ȹ0яfȹh{^#D?m#az hf5r.L6r.ȹ0яf9> (zÜUVϻA$5n\&JQ@nJ"`s\@;R쌈(vꪪv!8 u֠X09 GP)hs&1)G pN0EC>S]Oُ OnaSu9LY4RNs%9dA^s grK:`фN6S I0#ś✒o:)`[%P8R k K!_pO>!Iׇs^_#Z&y?\vmtu_l\G:gJ5ZBz+d壘(w*VD 0L8}r+&$觙фrAp%Ҭٺpt> CG֤%®p<%pAԉΊ>9e6FB cD)Tޕ^ "P0pF _F+9L ΁5P'Su $!0aKO@jIpVyOH!J u^$9nN16A"ZOHGQ7G,YX#?'\۷Em1`%9Z=7h*ș>NL8p)i.8Pos2An=~WZ"ĊJ#NSzBs2Э}vYC V(pN&)aN .k8'30HҌWE uZ&fs$XCKRKyc'^dAB@s9g܀WtԡA@s N8}BK A5>3Z!RĬԆSoEh9߭bED@m x! 1D j Bi}s5sjx>9} Q95PZ>A ^(rNCԠrN /G9!jPC9J#5!S y6] 4>+ՙ.O3-ƕrW/3S Ix \+6!.te֎I2/pl*|tcckߛk!Zo-8Pn ZΙ:D8ӱ)\Z%-BG8ϥ4q.,"*k9_QoҼPJSڱlOY/4b3!˩< otX˹ "8^y.a)|뱖svD;ŽaQ`+㜵J|6ReJ,\_NItN6w9nR&0bHO$*Ϩv9|PSPXpP^msEs69mQ"9EP\6@"`(rNBTrN0F9 !*PD `P@l?>Qj#B7I$IENDB`eDd _0  # A "%# ;u!8 4Dg@=%# ;u!8 4D$c3nOxݿUq] 0&p8TM$<U\.*LL@BJ   xriiH-?s%W{z5MOgwii/毦';L{~ޛ?/N_{mӿO|[?^o~G}闷W|3_'ׯ|f/f>mOo~LDt~aaaaaaaaуY_Z4mea:t\haaYeûڢ%Lh\e9B3)WXKb;qaY{,q 䋄eXT |a9XV>aSl-kO0?n\`5Knw + ,ڊw9`~2s ۜZ'dz,Ae,3,x8_oOOLLn"k;, s0LeXO6G~uyjgZjYq ˒W`:,ˎ0܇ev,ϖklm{>oPE-`Yjl<.Ȳw/ò̑= ⵍ1²#ˊԠ,,H$|Yy,k!,Hdme"IfeU=}a^{l-03Av9XwNLKq~Y c! `N0㯌_Sxٓes~e'ڎe=mJC6$9nY&YXG, p|OF3DzX6WbY[XsOƜ#md[K8voۏ7FUb3ȭXE\Oz<=.#m8Hˋ,VL4x`߮UO-_P,o˲[b*{-yDg=ݶuW^U j+˛=H/ʲQygH<' LǼ>ˈ+Yq% 2\IXmĕ,=4{4TSN\=eDD{7DJ2Mpv'=.Ȯ<LWF8/xXFXee\eOβf(iEsXdpslmx,Wfh~ ѳ2O\4 `Y nU{a.ɳw8*E֮[MX6eX6^bY'˒-۟eX2(e`Yװ NϲW8c4ggY\6ذhLg6nFYv)xԃeYvaeIHe|"׊ϵQ1f2,+lL1"z5-Xֵ ,\QJvט=enMWfYyu1>,,-a( ~V|XvV'=e[Da٥XI0hWF,;Yf!f9m}ˈ+Yq% 2ncR$,6Jgƕcj+Gh&-mW4m&ieDDaaaaan( ꏽxq2fqҠ$psuRs˨ g8^\2ko"8ZGJXFu8%ÅXV?˶{%_H,Cf;tFYV4KH h ΒHڂeyT孚lfh$ea;aIw::w ,Bts2² ˰",g4Ҭt@etU ^ aaaaaaaaeyX~>χ{5Mv/oii?}om/n?އ}<7e_M?z~x?NDzDDXFDeDDXFDXFDeDDXFDeDeDDXFDeDDXFDXFDeDDXFD4eկ5MvnXiLǕX; \-ZƕXc>.4r%$ r!ga n KHXeAn Gae=+ᄌqî-m&]vGpb~X>yc &+39٘ՋL~y<˂{$x^Ẹk;΂w~#]e}]d.DD`pa&/B #ʲ mI,kǬMdİ"#PXXgb#K79jɏ,k( Er/IlGM4qeƋZ2wuW밌/#%LWb J,66J2@\ɒM,ѸRM9Mph92"2cL+49Xl" dU$:̟EtXFG7iO XmG|F6aXo ICquY ̊k ~}J2V{1"kZs"13E[eS;.ʵ"XVOklXB6wT0KwKQrkՒ ΕՉ*t\+Ofz oHpY{%mEa;M( =ߚz^ؼeU};[h$1wTM~U..2tO˲|"2L,Kl,\{ :ˊ׌!,Y89|6½GvƲ LgNZqbxqE=~ζ˗'R?p;3S!}~Ya/duĴT0-g{ގe 20 3%9W\h=Y6Wv^_s0ަ4d OcvHNeuq̲gdtix=s,ۊec=}%5e=d̉9*vz A>c6xSkT%;˪>UǶC'`ِ*p/޶c5¨dcٽm#L9:Me%LWb J,6&J2n#d,ѸRM9Mph92"2cL+49Xl" d`SHt`=Ҥ[?Dq&xEXF{y~eOIJ܊^U<4XoqbI[ۮX[+aX)eɺ bo,?K,^Mtm\{Use{XV幪5Ǐ7X"mu?fc],zg͗enM,H$5d2EdzX̲Ɉղ,N=kȝ^leNw,²9QKE8& tVc!_֖ͤm ̗-9Yp!f͞,v7,!Xr0ҩvȪ='<ƌ-f]-lec8X΍s}볌%LWbo J,#eF\ɒ۳LSGJ54ڣYFDxˈˌ1 L4/Wj`>|+ܓ3>qe32eeXFXƕX, nV4E?6iΒqeH^;{ B,=>i,4E..e`f]7i<{RoфeX\es%u,zb)_6%RiXv 5{ ˰,{q%=-Asv,j ˊtfgm4]eG=X6eG/_ԡXV'bZxq\cA+A"Nٛ#g]2kLAel]aYLdx)Sfte>Wcɲr@b͏p_&R{4ˈobav5MobiXFDtZaaaaaaQR؋ -l- J7WL*k:'p(/KP6V)C .eT_W2\XolW h2tk&`qhyAGa9eE,-XOUުy]R|˙$?0dycIpx:nǾ\ cOհ!|%SЪj%I*]<1^$<1VlP '~'n?E.imUF]W BO,4O܋-<8٫g~gTziDx4}=OlY5hxb^pt: :ڡDO`OLOzbv--M00͏Vp m '~'^瓔YKΨz:M9{DLc) qxy"O2 'Dx9O;hf ̢׫_Oao H:<3<ׂe޶bO,-̮yioJREf~mqI{2Oxb_qG8`bݮ$'ٞi]_gx"O}o'nn=yrzb>1x"<1'SbAĽ[ޥ?DlYT]8\;$A։I.yW_/Iy"x"x"x"X'CKkh(!fDDy"vK x;^\z he~W=LpT6zuiejQY xb}Wկ|W_EO I[|3.E&kƒ0բ6~R{28w0{g:s%--JF׵jDx'f>v'ɝĽT=1 x"O<bOyO= xbQs.<#l]o1s;Iq3u_c¹_H~%/A2zLeb响+8Ĭ'r5y+)ywI[2%$.qyΥtG!Gx'^s>:,@yOZ&OTK<'ї7mуOąWi26PCOםU^ o)G `xaac%;Jf<1׮.VdJ̶_2/3\z^f'C˽-t#bzd1xͰˠ؃&k_>2 Pߕʘ/`U'F x+u]VJ^|CLưe&'IѪWLIz5i4UwDYWi|?{ u̝}b(gz Ȍ~^30dGT= 9Ղj1?4`V{BOdCsvn_?斜}6Aל 6bul8I=5v~j}ڿ;?3>ٗfq9%#SʣyOl{M;<4] 氰)l{-g>3v5B>'=˗)': U({˞@M~e]YUfq ڛL 'W'IIjG&,Ֆ$3$G#P]> {\+ %:"wIy ≍ uZ~ Jг™U7w6EO~q_3Go$IvzbϩVF-UL^WSX͚O<}#RuPEN^"4.+T@Iy<Kא&ۓ=1WE@/wI갨dJdp\{'&+qDc/{|>U.W<'T(%X]ik4R2b]AfYRJOK^~aiX'[#Zd>F%Q7g]7Vy"O,*Rds;OIpGb*=US8nڨzWV-Պ\톪<ąI,mz]3p\g6ws[%Qx[Zힸu'^D>O܊vmuy=U{QRO@sJ[^;@W<#=1Hi{7* _1Wϣz;œ <ЫW3VkaEx<<7)(H^/t/ᑥ'{x<'Dy"O=AON)Ou7-c~O䉠7DpTQxD*.DRO<;̷p+~_,﫡Y5ok&,7>[>/Z+Ll{M'*ZaƵZKf^ag* x'V31Jm-_nヮڡ0|h> HVIM WWN@s&+K/!_2CAK^ *Q~q_=q+2|WP≁Vw5Mxb\驾,5뽃u2 Zߗh +``f‹ & ɛQ%m\աaMֲ'GͪsGoKjQ'DKyUɞ[R8:'fF]ۙ&kav2z4<$<`OZ눵绹OlF!{b\Tl%}'V_JZ]:YU \F&{#.=dVyb \Y(Pܖ{b,$%x'`K<1ޭ޿{n+l%!m3ďĽќ|'&m2N2J>ħ-lUO>IxO*=jFӪf{$4̓dJRJ;3$6",O'fvmOrɅC&&=q uy@Z>A3JFz?okɴKB~^XXAu\p\+]O|`b0?8OU#Yq~ۿq[ؐ?|v<+V>¥QE%'b>!PgecFpᚯע!S$#eC_\SHK7^R0ch% 7LgI{AP .9da$@z̊|BC?pm|cXj)~R֖ )_UjvnziyX^|Y_,YNKrϱm%YޏqDc2/74mŧ0<|W C2_&Йj[=2*[MC:" L~̰5)to[MǞ:Us툾i/:,yb#JWFEQ?֡ͤ$-_T> CoiD)3ȒI!J[TcrP@fvػٳdO H}XM c)cR^ O|'Vzb>A|ĵ x;2zbxg0Y^4=1&oҝ-v{ 5-ę/Fv4*u)U'j5tv{WG{b;ybfou3aoęyX?ꕜ6:3Goo`n1/<|n2kofK)[}n]1LahBfMOd'e2 L /FO1Um3MG&ǫo=1nNcMD8O̲%'X',-ОִUʼn(vP4$-}a̹4JT0Rj^2Qvr%hrC6$Ol1:,TzoM3h>ި^^8, O|b>$/?jPXɲO*O⥾Gy.P'ݳs P'g˕!$O0f2(HΤ*x)̫dtO_0wu˝d&MxGI[WdI%oz˟ G A EXA$;;*O+__m3[GCwk{DDDD\@<'b'.ûYn'zݵ>Zaex"]UVr'{ˍ%/ ~p_:xսW(goחgd:sdJ gj˽5t28ܰ <&XI]z/߮ʥ|Xc?/ʿ4)3~|2AY\-W뼇|+_k2TcxYwFki]yБYJo\C^׈n f<1aO|'&"3׾|Ǒ%}x0%nqՃ"o#=qk&/ %]֔W{bvs> y33羽jO 5Bm4WK\O|'w{JkcI>- O> zy/,kʪ矾_sԚj00\VYL<ўXg[4N?Rdj5$x =:'6? ,IGĤ'n<sz͖[&)yxbPK2D؝xANxΌ"Rϓ# <ҞPq{z/Q< ' 8x"0[P!KN#aUOl8Zك #Aim$qOg<1L g<,/<O\{RCi=I,}Gd g uaf|pa ,ݦ|'nd]Ug;x}Bfb'AJGwx<'<'u<{ E W)%rr#|-xKbDDDDDDD''''''''''a?~ÿ?ߟ~G_~w~w˿_?Տo럿o?O?~?gO?wM2^1OOOOOOOOOOOOx"x"x"x"x"x"x"x"x"x"x"x"x"\6flwmpgL}2= :> x8?Gxbu?{)\oL ~2X༱$8 O'Q33/{K&饢="SK~sa<'DDDDDy"O'4ufQ寇pW$XOk2o[~id'kfW缴ķzbs%{yk$]R'}}["̵qcIdjQY xb}? x=Ŀ_39Oؖs%QX5O<3;KzMOvNz^^񞘉<'{1'ʼL'X<9`6ZҮ7O̘9$Ozb㸙ź寱nÌ/$ U?[=X21ƕA}[bVh[z\̤-~fOL}R:ˣO<9xYGzʼ'^-'*åzuKyAzǫ4Hx7Ovq#/ KL-\¼3Eċy^g*x"O<'Dgw TjeT/ ;oÚ';R͏*}p y1gѢSE*jUx+O{ d~L$ĝL|`/Iʜ0I:`'!dng0~p2M̉+/LY RW'Ϊ|#Նhx0xb)[xh`WF='fFR&#gnH,֬1Whۿs]A3xWɋσ<1h)9}8/kȌdOTgzkS_g:6v̤|;WrNy5s>Sσ K3T)Q߼' M.sXJG3Ld!LD8hZըen/EM/T](a,Q wֻz83oP <<<'D@֎:"'/ * O䉇y⤼LD牥kFɞo v"$uXT2%|U|2S8㉍=V=TyL*{cv+T@w w < $_[ure<A~RvKM͗zbJ.3:s'ħx61? O̟Z5z'//xyMI@[zEI]y%wθd[xg;/ɾ(rO|oĞ"fYl=1dJrhKqR%gRYlM'$5~49ik !NVv9D ̧ǵ X 0UU䅆߼f<1\ 3d923O,VO.5e)PIͮq ,S)|%j%M찴V,DPU r#UߨóW<'s)2۹'p$#r|[1h|מ)HimTpGwSD~m+UzjEvCuqPyg{${6.ΙA8Z ɻe9-ۍJڨD<-gvOܺ \]Py"O|'nu:<6z-S1+<~J|o ۱e|01Ôj{gT&k+H[ pAix;PgcFpRyb1D3U#pkѐN)O\d_Ln񡇯r.)$ߥya)m3Y (sz0dv_ =HjfaXZvQPʡɟL{1,L)akjFwPg{*5;74+!/YL5J-r-̡gR&~?rqifLRvϷ-cOvDߴF zFXxSɦ1|ߔޱJ)'>Wk=1SGă yyфzljwMk=]3Ko,/q O7NH~=ixLxb#;W前3#\}H}=qsyl-70y;F7̵ei73Rzĥ>.D04Nb&'w?2j&ixb𪋶#UO\7Ş7&k"O|' ffْyfhOk*[axm(\^lԖRji0[Vo\%*)5/( S;p4ۍ Ky'`?XOVKY9o*'VovxoK"=qK|B4j΢w &]hONI'{NSI OI?c15q\|?oPdه''DDDexR_# ^$/tcXzEzy)TށuaF)yۭV̋*պ̴//8~ןI $5Nf2k]բ㛽B x ,+puC 5{Uڱ?f<,;xbNp[{dcIO\,7n !} z~c kLmj73O0'>ckz'fFВ>U xopž-ZO, ͢K^1YXs̔s"<{wm𑞸fϒ.Mkʫ=19<ΙkwTOp5է!m{6~۫ȥg' ^%ϱ$Ȉӆ'=btV5eUO9fjMMN.+IThOV-Z'ouqONig 2bN3*KLFc 㯚OMͯ~x8O|j3G9h>ޛ'G83`m$ۃAc%O(jO"&WmY"|'nef DhI;Vމyў3y=qOzA+E3VR9mC=$oy΍c,9#94=qˍQ "6SD򞘗xbO<ۏ ǰ8mtq;Z^d Uf2#\bKwQOĭxIL'd䇞8Lq(%O Ei2p<Xϱ/Ƈ ԥG}|Fy}M7I=1Э;`}'\ x^<-qk]e'6Ag 46R K3IL&[Q'h =)y㡴$>#lɳnOnↇ:03>0[xnS>].ΪOx!3[i \;@> {e2 Footnote TextCJaJ@&@@ {e2Footnote ReferenceH*6U@6 {e2 Hyperlink >*B*phm_ m    m34efEFQR4567v} u I S \ d e "#67;,-[]!S@]?K]^OiScdopEM{KU^fg_`}~MuxDGMQ{Bo!"S iq r !!"!&!P!|!!!!&"B""""""####$^$$$K%}%%%%%%%%%%%%%%%%Z&&*'a'd''''',(0(6(:(d((((((&)J)t))))*6*;*U*Y*x******>+?+n+++,(,B,Y,d,,,,........ . . . ._.c.i.m.....,///3/_//////0L0Q0k000000011b3c3444455Z6778889:9B9D999::::::M<N<w=x=====> >5>;>f>y>>>>>>>????8?A?I?a???<@@@@@@@@@@AB)BBBBBGDHDgDDDDE*EBEEFFFF}G~GGGHIIIIIJJJKrKKKKKFLZL[LpLqLMMEOFOeOjOOOOGPHPJPKPLPcPdPQQRRRRRRRRSSS,S-SmSsSuSSSSSST"T#T3TqTT1UaUU#V$V3V4VaVVVWVWWWXXXXQYYMZNZUZ]ZZZ[ [[+[s[[[H\t\~\\\\I]J]`]a]^^0__`abb0b1bLc{ccccd!dBdLdMddddddde+eFefeeeeeeeffffff*g1g9gZguggggggghh h)h*h2hvhhhhGiTiij1j{jjDkmkkkkkkkkk l l_l`lalllmll m mimmmmmmmmmmmmmmmmmmmmmm00000000F0F0F0F0F(0F00000000000000000000000000000000000000000000000000000000000000000000000000000000000000(0F0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d(0F00000000000000000000000000000000000000(0F0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"(0F0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*000000000000000(0004040404040404040404040404040404040404(000:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:(000B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B(000~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G(000[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L00LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP(0LP0S0S0S0S0S0S0S0S0S0S0S0S0S 0S 0S 0S 0S 0S 0S0S(0LP0$V0$V 0$V 0$V 0$V 0$V0$V0$V0$V(0LP0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X(0LP0J]0J]0J]0J]0J]0J]0J]0J]0J](0LP0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b00al 0al 0al0h@0@00D0000h00 000000000000034efEFQR4567v} u I S \ d e "#67;,-[]!S@]?K]^OiScdopEM{KU^fg_`}~MuxDGMQ{Bo!"S iq r !!"!&!P!|!!!!&"B""""""####$^$$$K%}%%%%%%%%%%%%%%%%Z&&*'a'd''''',(0(6(:(d((((((&)J)t))))*6*;*U*Y*x******>+?+n+++,(,B,Y,d,,,,........ . . . ._.c.i.m.....,///3/_//////0L0Q0k000000011b3c3444455Z6778889:9B9D999::::::M<N<w=x=====> >5>;>f>y>>>>>>>????8?A?I?a???<@@@@@@@@@@AB)BBBBBGDHDgDDDDE*EBEEFFFF}G~GGGHIIIIIJJJKrKKKKKFLZL[LpLqLMMEOFOeOjOOOOGPHPJPKPLPcPdPQQRRRRRRRRSSS,S-SmSsSuSSSSSST"T#T3TqTT1UaUU#V$V3V4VaVVVWVWWWXXXXQYYMZNZUZ]ZZZ[ [[+[s[[[H\t\~\\\\I]J]`]a]^^0__`abb0b1bLc{ccccd!dBdLdMddddddde+eFefeeeeeeeffffff*g1g9gZguggggggghh h)h*h2hvhhhhGiTiij1j{jjDkmkkkkkkkkk l l_l`lalllmll mmmm00000000F0F0F0F0F(0F00000000000000000000000000000000000000000000000000000000000000000000@0@0@0@0@0@0@0@0@0@0@0@0@0@00000(0F0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0d0dX0dX0dX0d0d(0F00000@0@0@0@0@0@0@0@00000000000000000000000000(0F0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"0"(0F0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*0*000000000000000(0004040404040404040404040404040404040404(000:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:0:(000B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B0B(000~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G0~G(000[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L0[L00LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP0LP(0LP0S0S0S0S0S0S0S0S0S0S0S0S0S 0S 0S 0S 0S 0S 0S0S(0LP0$V0$V 0$V 0$V 0$V 0$V0$V0$V0$V(0LP0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X0X(0LP0J]0J]0J]0J]0J]0J]0J]0J]0J](0LP0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b00al 0al 0al 0Oy00 02^ %-6>B GCMuW"\_e8h%j-moIqmtuu;?BDFIMOQSUWZ\]_`bdfhu7?D#&*Z.U26Q8AFJRKX[Mbimpsuu<>@ACEGHJKLNPRTVXY[^acegu=`x{ r @@@UUUabbkllllmm____X__XqX8@ p (  ^  # 3  s"*?`  c $X99? #Z  3  s"  ^  l! 3  s"*?`  c $X99? l!Z  3  l X w L 3  s"*?`  c $X99?w LT  # w e L W #  s"*?`  c $X99?WN   W L W B"! #  s"*?`  c $X99?W B"!N   W B"! L  g  #  s"*?`   c $X99? gN     g B    V    #" ` h   C  #" ` B S  ? y % .@blmD tH t!t ? t   T !\ 1TPpt@ t !xt{O4Jm7Jm9*urn:schemas-microsoft-com:office:smarttagsplace 4=p|>J (:Fq 2Fey CTh~(P\ Q\kv*0;rz %8Tk~EPr&(oq !)!@!S!^!e!w!!!!!!!)":"L"W"\"n"a$c$$$$%%%"&4&o&&&&0'3'G'U''''( ( (=(T(g(r(y((((()))4)M)X))))) **>*I*\*m*****$.6.@.S.p....../!/6/G/b/m/////!0,0T0_0n000000a6i66666 7)777778889U9c999999 :===>>,>>>q?z???6@8@f@m@x@@B B BBKBTBVB]BhBqBrB{BDDE%E2E>ECEQEeEsEwEyEEEEEEE(F7FFFUFZFhFlFnFIGKGkHsHHHHIIIIIJJJKsKKKKkOuOxOO^ShSSSSSSTvV}VVVXY[YtYwYyY}YYYYYeZhZZZZZZZZZZZ;[D[[[[[\$\/\8\:\C\\\!_$_~____``````````````````9a;aAaCaaaaaaacc@eCeogrgxhzhhhhhhhhhhhhh iiPiRiViXiiiiiiijj-j/j3j5jwjyj}jjjjjj@kBkFkHkikkkokqk}kkkkkkkkmm mmm7@w{#*-3^d'+!GKtvx~IL%)!% !!! ""D"J"####C$N$' '+'.'f'h'''2(5(@)B)_)c)))))**@+D+..e.h.t/x////00055\6`688999999y=}=======>>@>E>k>q>>>>>>>>>?%?C?G?ABBB?BGBDDDDDDEE+E/EEEF%FHHIIJJKKGLMLkOuORRRRRRRRRSmSqSvSSSSSSSST TYYOZSZWZ[ZZZ [[`[b[^^8_>___`*`tcvcccccddddee ee.e3eeeeeeeQfVfff+g/g3g7g=gCg]gbggggggghh,h0hhhhhhiViYiiijj3j6j}jjjjFkIkokrkkkl m mmm333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333ddee,e-eHeIeheieeeeeeeeeeef fUfVf1g2g;g8{EtNiLP8UoWa* d:eLwe`g"1b22 tz#bM`@#+4!*uP)!r`) 4^67:@TB~G mmmmm1OJ ****@mmmmm@UnknownGz Times New Roman5Symbol3& z Arial?5 z Courier New;Wingdings"1h@&R&F\7F\7!4dll 2QH ?r:>2HTML Forms, Javascript, and Cascading Style Sheets Carol E Wolf Carol E Wolf   Oh+'0  8D ` l x3HTML Forms, Javascript, and Cascading Style SheetsTML Carol E WolfavaaroaroNormal  Carol E Wolfava29oMicrosoft Word 10.0@:@f~u@t3uF\՜.+,D՜.+,l( hp  Pace University7lA 3HTML Forms, Javascript, and Cascading Style Sheets Title 8@ _PID_HLINKSA<BUhttp://www.w3schools.com/BU http://www.w3schools.com/BUhttp://www.w3schools.com/  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghiklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]_`abcdeghijklmrRoot Entry FxutData j#1Table WordDocument(SummaryInformation(^DocumentSummaryInformation8fCompObjj  FMicrosoft Word Document MSWordDocWord.Document.89q