Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Howard29/5361140 to your computer and use it in GitHub Desktop.
Save Howard29/5361140 to your computer and use it in GitHub Desktop.
Demo
package com.mangocity.tmc.hotel.controller;
import com.mangocity.tmc.hotel.model.SearchCriteria;
import com.mangocity.tmc.hotel.service.BookingService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;
/**
* Created with IntelliJ IDEA.
* User: heyunhao
* Date: 13-4-9
* Time: 下午1:24
* To change this template use File | Settings | File Templates.
*/
@Controller
public class HotelController {
private BookingService bookingService;
@Autowired
public void setBookingService(BookingService bookingService) {
this.bookingService = bookingService;
}
@RequestMapping(value = "/hotels/search", method = RequestMethod.GET)
public void search(SearchCriteria searchCriteria, Model model) {
model.addAttribute(bookingService.findBookings(searchCriteria));
}
@RequestMapping(value = "/hotels", method = RequestMethod.GET)
public String list(SearchCriteria searchCriteria, Model model,RedirectAttributes redirect) {
model.addAttribute(bookingService.findHotels(searchCriteria));
return "redirect:hotels/list";
}
@RequestMapping(value = "/",method = RequestMethod.GET)
public String index(){
return "index";
}
}
package com.mangocity.tmc.hotel.model;
public enum Amenity {
OCEAN_VIEW, LATE_CHECKOUT, MINIBAR;
}
package com.mangocity.tmc.hotel.model;
import java.io.Serializable;
import java.math.BigDecimal;
import java.text.DateFormat;
import java.util.Calendar;
import java.util.Date;
import java.util.Set;
/**
* A Hotel Booking made by a User.
*/
public class Booking implements Serializable {
private int id;
private User user;
private Hotel hotel;
private Date checkinDate;
private Date checkoutDate;
private String creditCard;
private String creditCardName;
private int creditCardExpiryMonth;
private int creditCardExpiryYear;
private boolean smoking;
private int beds;
private Set<Amenity> amenities;
public Booking() {
Calendar calendar = Calendar.getInstance();
calendar.add(Calendar.DAY_OF_MONTH, 1);
setCheckinDate(calendar.getTime());
calendar.add(Calendar.DAY_OF_MONTH, 1);
setCheckoutDate(calendar.getTime());
}
public Booking(Hotel hotel, User user) {
this();
this.hotel = hotel;
this.user = user;
}
public BigDecimal getTotal() {
return hotel.getPrice().multiply(new BigDecimal(getNights()));
}
public int getNights() {
if (checkinDate == null || checkoutDate == null) {
return 0;
} else {
return (int) ((checkoutDate.getTime() - checkinDate.getTime()) / 1000 / 60 / 60 / 24);
}
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Date getCheckinDate() {
return checkinDate;
}
public void setCheckinDate(Date datetime) {
this.checkinDate = datetime;
}
public Hotel getHotel() {
return hotel;
}
public void setHotel(Hotel hotel) {
this.hotel = hotel;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
public Date getCheckoutDate() {
return checkoutDate;
}
public void setCheckoutDate(Date checkoutDate) {
this.checkoutDate = checkoutDate;
}
public String getCreditCard() {
return creditCard;
}
public void setCreditCard(String creditCard) {
this.creditCard = creditCard;
}
public String getDescription() {
DateFormat df = DateFormat.getDateInstance(DateFormat.MEDIUM);
return hotel == null ? null : hotel.getName() + ", " + df.format(getCheckinDate()) + " to "
+ df.format(getCheckoutDate());
}
public boolean isSmoking() {
return smoking;
}
public void setSmoking(boolean smoking) {
this.smoking = smoking;
}
public int getBeds() {
return beds;
}
public void setBeds(int beds) {
this.beds = beds;
}
public String getCreditCardName() {
return creditCardName;
}
public void setCreditCardName(String creditCardName) {
this.creditCardName = creditCardName;
}
public int getCreditCardExpiryMonth() {
return creditCardExpiryMonth;
}
public void setCreditCardExpiryMonth(int creditCardExpiryMonth) {
this.creditCardExpiryMonth = creditCardExpiryMonth;
}
public int getCreditCardExpiryYear() {
return creditCardExpiryYear;
}
public void setCreditCardExpiryYear(int creditCardExpiryYear) {
this.creditCardExpiryYear = creditCardExpiryYear;
}
public Set<Amenity> getAmenities() {
return amenities;
}
public void setAmenities(Set<Amenity> amenities) {
this.amenities = amenities;
}
private Date today() {
Calendar calendar = Calendar.getInstance();
calendar.add(Calendar.DAY_OF_MONTH, -1);
return calendar.getTime();
}
@Override
public String toString() {
return "Booking(" + user + "," + hotel + ")";
}
}
package com.mangocity.tmc.hotel.model;
import java.io.Serializable;
import java.math.BigDecimal;
/**
* A hotel where users may book stays.
*/
public class Hotel implements Serializable {
private int id;
private String name;
private String address;
private String city;
private String state;
private String zip;
private String country;
private BigDecimal price;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCity() {
return city;
}
public void setCity(String city) {
this.city = city;
}
public String getZip() {
return zip;
}
public void setZip(String zip) {
this.zip = zip;
}
public String getState() {
return state;
}
public void setState(String state) {
this.state = state;
}
public String getCountry() {
return country;
}
public void setCountry(String country) {
this.country = country;
}
public BigDecimal getPrice() {
return price;
}
public void setPrice(BigDecimal price) {
this.price = price;
}
public Booking createBooking(User user) {
return new Booking(this, user);
}
@Override
public String toString() {
return "Hotel(" + name + "," + address + "," + city + "," + zip + ")";
}
}
package com.mangocity.tmc.hotel.model;
import java.io.Serializable;
/**
* A backing bean for the main hotel search form. Encapsulates the criteria needed to perform a hotel search.
*
* It is expected a future milestone of Spring Web Flow 2.0 will allow flow-scoped beans like this one to hold
* references to transient services that are restored automatically when the flow is resumed on subsequent requests.
* This would allow this SearchCriteria object to delegate to the {@link BookingService} directly, for example,
* eliminating the need for the actions in {@link MainActions}.
*/
public class SearchCriteria implements Serializable {
private static final long serialVersionUID = 1L;
/**
* The user-provided search criteria for finding Hotels.
*/
private String searchString;
/**
* The maximum page size of the Hotel result list
*/
private int pageSize;
/**
* The current page of the Hotel result list.
*/
private int page;
public String getSearchString() {
return searchString;
}
public void setSearchString(String searchString) {
this.searchString = searchString;
}
public int getPageSize() {
return pageSize;
}
public void setPageSize(int pageSize) {
this.pageSize = pageSize;
}
public int getPage() {
return page;
}
public void setPage(int page) {
this.page = page;
}
}
package com.mangocity.tmc.hotel.model;
import java.io.Serializable;
/**
* A user who can book hotels.
*/
public class User implements Serializable {
private String username;
private String password;
private String name;
public User() {
}
public User(String username, String password, String name) {
this.username = username;
this.password = password;
this.name = name;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
@Override
public String toString() {
return "User(" + username + ")";
}
}
package com.mangocity.tmc.hotel.service;
import com.mangocity.tmc.hotel.model.Booking;
import com.mangocity.tmc.hotel.model.Hotel;
import com.mangocity.tmc.hotel.model.SearchCriteria;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: heyunhao
* Date: 13-4-9
* Time: 下午1:57
* To change this template use File | Settings | File Templates.
*/
public interface BookingService {
/**
* Find bookings made by the given user
* @param username the user's name
* @return their bookings
*/
public List<Booking> findBookings(SearchCriteria username);
/**
* Find hotels available for booking by some criteria.
* @param criteria the search criteria
* @return a list of hotels meeting the criteria
*/
public List<Hotel> findHotels(SearchCriteria criteria);
/**
* Find hotels by their identifier.
* @param id the hotel id
* @return the hotel
*/
public Hotel findHotelById(Long id);
/**
* Create a new, transient hotel booking instance for the given user.
* @param hotelId the hotelId
* @param userName the user name
* @return the new transient booking instance
*/
public Booking createBooking(Long hotelId, String userName);
/**
* Persist the booking to the database
* @param booking the booking
*/
public void persistBooking(Booking booking);
/**
* Cancel an existing booking.
* @param id the booking id
*/
public void cancelBooking(Long id);
}
package com.mangocity.tmc.hotel.service;
import com.mangocity.tmc.hotel.model.Booking;
import com.mangocity.tmc.hotel.model.Hotel;
import com.mangocity.tmc.hotel.model.SearchCriteria;
import org.springframework.stereotype.Service;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
* Created with IntelliJ IDEA.
* User: heyunhao
* Date: 13-4-9
* Time: 下午2:03
* To change this template use File | Settings | File Templates.
*/
@Service("bookingService")
public class BookingServiceImpl implements BookingService {
@Override
public List<Booking> findBookings(SearchCriteria username) {
List<Booking> bookings = new ArrayList<Booking>();
for (int i = 0; i < 10; i++) {
Booking bok = new Booking();
bok.setBeds(2);
bok.setId(3);
bok.setCreditCard("123456"+i);
bok.setCheckinDate(new Date());
bok.setCheckoutDate(new Date());
Hotel hotel = new Hotel();
hotel.setName("皇冠假日酒店" + i);
hotel.setAddress("冰海大道" + i);
hotel.setPrice(new BigDecimal(1500));
bok.setHotel(hotel);
bookings.add(bok);
}
return bookings;
}
@Override
public List<Hotel> findHotels(SearchCriteria criteria) {
List<Hotel> hotels = new ArrayList<Hotel>();
for(int i=0;i<10;i++){
Hotel hotel = new Hotel();
hotel.setId(i);
hotel.setName("Philips Hotel"+i);
hotels.add(hotel);
}
return hotels;
}
@Override
public Hotel findHotelById(Long id) {
return null;
}
@Override
public Booking createBooking(Long hotelId, String userName) {
return null; //To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void persistBooking(Booking booking) {
//To change body of implemented methods use File | Settings | File Templates.
}
@Override
public void cancelBooking(Long id) {
//To change body of implemented methods use File | Settings | File Templates.
}
}
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="bookingServiceImpl">
<xs:sequence/>
</xs:complexType>
</xs:schema>
GIF89a�
����û�,�
� �������ڋ�ɼ���H�扦�ʦ����L3p������ Z^¢w;*�̦� e���#i�j�ܮW7�ر�N���;V~�����Ҿ�;����'X�@h����8��X�9IY9�h�'����)P;
GIF89a#�e�B���!�Created with The GIMP,# ��������ZT;
����JFIFHH��ExifMM*��C  !"$"$��C����"����J !1AQ"2aq��#B��3R��Cbr�$��%&5Ss����c��������/!1A"Qa2����#��Rq��� ?��]Z��<I��d!��j��}?���9v��y��VU�=r+��'��]"�s=;a��w��v�&B�����GYf�k�yǞ��[�*"/O�,0�;����n��Jx�b%]���W��O�t�Q�
S�G �t%=��� �(��+�b����j�u-E�h����,WJ����C̉��a��Շo�5d�Uy$�iM����Ƴ`B�n
1۶�nK)F����;\Є;�|;�o�����F��ֶ�D����s�J��<�G+��q�t�RU��b1壴�ۤ�9#Cin��_%�H�"�A�q�v*��GN9�����IR!x�]����?Mv��2dT*{� &�|:��q�|y��8J���' 8�rE`�efS�����t�+���5��l��FG<j5DQA�$�A��Mv��I��h��rT6A�u�:H��U<���Ѓ%DW�>���:'$TÇ;�������8��$S��Q� 5L��ʜ���S��*Í���H�3�>z� ؜x���]�ii~�Zi�*�$�EAIDNs�q�ޤ�V�gF
GM–y��B��+��WS�Ȣ*0�c��������WWԒOns�����zr���rZ(d c��Wr�|0c�֠N&w��� �O_3C �٘1˱�>�Y���*NP�NOs������Uܑ$�0��v_";��T���j�Ai[﮶�*Ro `vC����7J "��A�9I!H�c�NT����PY��%IK`yc����z��i�k��H�!��� y�T|�� ��u��4j�_=�_�W �!֌�}�@�z+�����s�M�H�l���G��k]=mZUF��1�c�V��{A5snH���-4Xo͹C�n�88�6���Rj���Cۢ0��SI�q�G�JԽOO,*�%\�0VS������ik�o�:��f�J:p�*��)��#e��ʺ��2|�@A��EI�)/����$�����)����:��F۶�{i����XUQ��,��O��������^�

�i����^�z���q�j�+2!��#��g;A#�'-)�?��M7��\V�_�w�N��ĸ����Q2hɐ�|!!� ���A�-OS�" G�S����t�6�2������z%Ei����QL@ �e���K�s��,հT�����#: {��%d��"$�
�'�綢�A5��U��(��Y���9���7����ž�c��_'���0�q�ġ��E���j�@����Zi�� ����UP��:���<�|D�H9�<�>�=c�U.�Ǫ�n�ʜ|�N?F�5������bF�2�\�����Kt��tH��H�%“�=��u���2$�,h��]\�LlŞ����H�o��Rq��GZO�Q�1�w$�z�|����*� iU��/ �"�/ ��_*�\�:�nj Qw-bV������*�t��q���Ų��4�! ����oS���"�GB�#�F� �MN���`g����TȻ:1�GX���Z���夓q'�Y�+-%m�:v�<�\F��\��uQ�(�!�=�$y꽊��oS�ϑ��H_�I㊮�ӯ�sƬ?7 4[�P�\�”�<��Y/��ȹ��i��E�j K?�P� ;)y���Xi���J�Id݌s�O����el��6�rS�����G<j��ko�]��`�r��A�X��>���i^[}3R��J>�Oc�6����K"*ƜI⍁�}�0��"���_���MI�q�����
K]4pFC�$��x@������ ]i�,�<������b|�y7J�p�A�}��O��+�� =w6e�4B��h�j"�HՏ2E�'�tij~�r{��@�)i|Y�� $��v1����#��Ѫڋ�"�]Z ��e5h�����G��b��C6֟�Bم���H��~�:��T��Y�o{.�� ({��N�h4�@��
/�'X�#��� m�j�\�
��99�;5Eqs]�ҶH����z�-L�{>a����b*�{����V9i���
`z��dON�}.����D�>�fR���w��0O��[���RS�n�TD� LK:� � �mttC�U�5&�~#�/��|���SJm��P�ix�q�;;����ɝ�I��+�0݌l}�*���،q�E�T�$���ړW�F�<lO�ʏ���D��_�6�?)eR��j|����6X������ ,���|���~�]`?P 7����b��_�<���$�c�<&ژ���O�c�,0��t^����y<)c�~����0�'���k�E<� M*��M,a����pG�h���D����' Q �1 �%�c��G�F��D�1\���B8#�t=z{�e�ކ�0?�L:����.� l�e�v�~?p�V4z�ǔx3���[�(�ig>� s,�0K��<�U�M*�V�vxҼ�fY���;��νN5�lIڅE�����¤08,ǿ�j��*Z��d�|A�ձS@� �b0I^���;@��DZ�B3���yP\�؎CS�/ӕm��T��פd��h)��q�ݷ�p�!���������P� ��_a�׶��x�ְY_&Hn�<r�9�h�,+݇��!�O�x�[��}��i���E ��25�$��I����&��AI�0��l2�����~�� 7����Ä^;����eoZ��Ψd0G����9>`��H�mXЁ=fc�EJ��(kg���㶼?�>pڕ�����HO��NU�)�R �Q�O�k�2SKZ0i&������o�f�}{kY P���������n=~߶4f���Eyzs� (i����u�f��mT����,ᜤk,���|�Ȅ���y}�n���4��/S_����G�魬 �$H�BD�Da�ǡ8<�L�\e�t�\�IS��@\p��Ɯ� ��m��k����٠�0EK�ݒN��$w���h��(��s�@�hw�޽���Mv�J�����H��U�;yu��joq��!�,����T��'˷o΂>u |����w��s� yzg�YZ��i�/q �n�W����=1���*X�T =�v?i�v<�~��[A?��� "�?��O=����2��H��O���KA��L�;�p�x:� Zj(�K$Y������p{h���AK$)w�)cϻԆ9 ���Z�+WCԭ�k<#W���<1�q۾�LAwh�:���J5E;���.�F�ۂ;�u �V>�9� ܏G/�q��ю��X�(ˉI���d*�#� }x֕T�M�tH9iZ�G����s����d�eR8L���E�cZܷ��T7M�g�~�a��
�J��I���Қyy�V�Ocƴ1�`O�3 ��ҟ����D�%-h$�@u+�08_Buʞ̏"�����c�i�����!h�\>��d���-:
t��b�@`��X�[��R8�1z��uY;��2��Q�uT"�l!����[天WB�U#�>�plT,q;NY��9 7�A@1���+7�������;�G�Y�&�BǮ��sλ�X:�y�׷ <�f�B��=9u��-q�=��pT� 8�e,�.X~Ϩ=ϧ�Z�XR��(����,K�?V�NA*���cNy_~qI�b_��]D�D�TpQѨ3�e�Dev?�36q�Q��������(_�i�5��es�k������>O���K��©���WyY(*j�*0b�Pl�~<�6�����-��)7|M_p�?]��~��N�ѝ��AtE$~�Zq���M��0ѼP��h�2��:�,������?]S��f�IR("Ii+�3���!T�v�ӿ����-�K��UGr1G�ML�ݶ�q���OVjV�2��x+D��%R��^uߥ���UU�T�H��=��P�# ��M����L�d��Pז���}Ԯd��yu���{U o�e�-?���7�~u��@�Gq-M���|3�0~.O~���IV���}> �VTy�q����W,L���bn�����������֕TpIh� 7O�$� ����������L\� ���Qe��������mq)������ԅW�p8>�q��$�5��5��V��7��fc�(8f�����I�`��`�MRO����Wnim�[���$\$��'��:�v�M-%1[Ls�J��J����R ��z����2�=-D��%4�p˿��KK�E�:Y$ 0h�|���MM��+���oW�҈$��G �����)�{L)=���x*�I�r!�-�O�D�X�"r�yV�V�Z�ܤ�跃��������bY#��*"��S��jX��7�$gݘTBs����,52
:�<�74��t�$��d�j)�0p��?c�7+��_wY��� �=��U�54/�ml8~}w��Q΋��o��<ε4N[y83�D� �rr������B��O TS��s� fs(c��y~t�u��M�,��<�9?Mk��/�]ߎ&��Wy�B�Y��v�L��� ���f���B�g�_MvH����^{ ���^�z
�Yi�m�9��]y�Z ��$�����6*��H��V�_�Z���G���z�.m1���Te԰+���t?�9� q����<����S�ѶW#N^��H�'�����#\<^,��r.�u����ϒ�z<c6eO�vDj��E��L�l�
JDǑ>�]�X�F}��C�d� &�^?�9���s�&�?�ݯ[��?�N����5&Y��/��g��4� ]O��3�կ�]�3��Z&�R�����1�UI�����ns�� ZF� d��<�29�ǎ41��ʂZ���>�3T�|�h�50TR�5r��^D�INNтs��<� Y�Ɣ�ũ���X�j�FlF�#�^��q�<���6�h�-��������7�@H���[���m��G��Ƨ����I��oƾX�c~��?�_�|I��s++7�W��l�Ƙ����U�/h�TEi���h��,�[�\�Gw��w���-Uj��7ꈎ7�xW�ߞx��m����5�O�������U~F|����,�t�B��Z�žr�C�|öq��ɏ����n���*A§���|�宗����:��Ӱ��7aG��g��1���m@�ʃ�`C�
D)���n�Z�%��[C���m��"���0_;��j�9-�w�@��f��i~���<��9�j%��U%��I��ȅi*wl�<�s��lVf��"���mQe�:�_�l�ۀ1�wKz����o����@��eRI��q��S|��:�h�k,On��F�c�3�������PH��L�[j,R�,SO�ݝ��=��]3Mn1��1Y�|J�U���?�hZQ�.w��r��nIE��ܸv�� $c�Rz�^����hH6�ͤ*��o<�s��;�Z���T� W �A�S�����4RJ w�#o��;�������ST=\X��CwPJ�UE������s@�M����Q�ǧ���K+d�"�Z����AI]o��+�~��m�ˤt�A*\��\d�M�1�%�羵= ��q�2���&�����3$Ra��S��kM�2g'���Ow��Vܺ@�'�4�k���� 8c�v�u�� aZ<�3�0��8�Iѩ�3W7�:�'uuڪx�*�9���5�E���}XC@K�\�����ig�}�X:����Mı�TĜ��1��P��\R+�R#^w�&�њY1&U�������֫�M��c�<H�U��N�)N����� /ē2��e=�;q��M�}��]UʎB��K�g$6{z��k�V��
Ju��b�FF��C̭�;_'8J5�랤��J�������� aԒî�(���0���vX�ƃ�?#S֖�L�������Z�VIJ�೶s�!�;�(M�n���q�4Pc���u "��4^��7���^)�w`wUBc��Z�~��4+-�RQ˯Ґ�塤�
�{cqQ�����P�KRl�Es��A��am��~����ke/T��ZN���\EACT��ɞH!�7rt�D:���J�;}d�4Q�P��"�d�ŕ�Nܟ-����M̗�m��^��W�l�5QɲO\)a۷��n5 �FY��$��EB��c�1��yλ���
XS�`��[�%Q|��Μ���������ܬ *~5�d��W�[tw�'WU?�pa�*��| ۜ��[l��zVI$��dC^}M�"1��έַ�D��9
c����8�D';U���*U����a�g��������@�����Ӿ�R��[Mg���d�T�L��H�` �����>8�1��%x��'�;4<ɩWQ�YV�Z�uU�8Ң"�α�BC�(<�kj[�2�j�^+�U1���4!7+�i�g�<�+��<y�=�+b�N��mt�H���$�8�uɊ}5=]O�{���鰉)��*�������p�����;��d��Gr�0$后��ٍc��S�t�-�L{�H�<Ls�9�����z�㦪�����Y�2jam��ym��2@�`�xh�ʟ�
[��vO�
��*�y$)���}�r�F��,C����)��T������[�.���A�
J��1��y8���E54�{߳�YwI=#��O�=��C0�xh���-��!�� !�q���O[��Ӳ��_k�h~&}��y�,�s�t*�ݳ�*�Ξ�?側�-ZJ��I���e�.7����@7��:�����WX���ʇ�UUf$]�������#�5����&pWa��Z���4�_o�~���.7�6��PUt�����s��ʹV�aD��7b��=f�ڬ(h��z�����z�u �&C��:)RK¸�T��l��Ds�%�*Ks�6��9�EE��f���7�ǖ��i�1�4~�k.W�F>������+�Ld:�M�H��F��a�������۴��X���8�G����v�Z�j3��*��������Uhn�����90�F���������=K DnaO�����k�^�R3�%����r��B�u3���XXP��
d�_��ϖ��W�ꙣ��������A}I ��Ի5Eemg�j�G<�d����z�����\�?ԍO��Q!k�Tָr$�u
Â0��ƞm6 mϦa�җ:
g��jrf*
�g� �ڜ�":g��Y������\w hi����Ҙ,��9?,�t�.��`��Cm�uM}�jxB��8�べ���?^N��f)mN��kEeMm��9�s�X�N���Qw����0��g�? ����\~���:<U�����X�j�2Ÿ,m�4�����o�
n���ibzg6*Ip3��oTB�3����OYy-�5�xai�Q���@�s�뢔�R2�Fۘ��e�O�x�J�.���%�z�� �k�����]8R��woq��YE<���CdJ� ƔG~�H2�<c�nO=�$�#d|��(�����w����4c�R�^����FZI!r��s�F��ԗi)/�vy�TT�S�böG���,��W���j݋m�@;��aR�骾����Է+�C���@��a����kEC5���f�v�ƞ/���`y���_��K��3n� �=<��@G$ �?����{�P�IZo ����1+�c<�W2��=L�$����"q1V`x+������*Q{P�S�i�1����|���T}��C
^��@��`q؂N��&�bIn�(�WD���8�~��� �,}U<eg�����$F��&��Z���{�C\�Y��zWo 'ϻ/��
��V���ˤ��y{��Q'�F�O�}t�����X��Ҿy��c~9��j�\5[>�YN�c"����:Q�-d�8�!<04�u�›C֛�'���NOs��:W�u_B����uZp[�c��~���z ��0A����Y�����&a���X�Ό��y�-f�:‡�k���P�3�Bn ��ш�0x=���k3S�9_sc�Yŧ֕��#��i��"��k�b2<9Ո��l��4�h��-R�z�{� `��h�>}����#�H�RI�F s�tr��m+�sE�'L}+�6�g ܯ��[5��¢�]p��X�t ��ĝ(X?h�zW��<'���<�;�X-8�E�l�x����lRfI^����<��g�뤺�5ʩ�u/���>h�s�;O��<�]�1���\�CՃ�{ �����ESH�q�1΃UQ^Z'M�j���S�,@V=�!N~��8�K��4�$�i~Y�If�0�g��*�g�/
�� լ&`��p�-&> B�y#����Q�����:Am�v��ڥ]eA�g$n9�v�{���Z�!/a��Eڡ|:�������+z^�� %���…��c���#!S��>^��R<T��]�|K�/nʚr;�|��s:�%3���@K|`)��X�1��, ^|��{$"��E����D����惘N���*�ҡ�` i�, �� \�V*m�TL��r���F�Q�Uf�������3O,r�o�o���=�ӏ=w��/�"��:,�T�{��� �Үr�OP�$%* s��@u�c����2�e��Ҕ!奖f N�5�>Z��I��N5[=�Tl�% ݷԝ��]�(B�(�:��4�&� vΚ ��b���g�*:r�f��?}��uI �<��8���������Mz"���-.|�PMV�ے� �ꫤ�%�al}�ᛃ���ά^�9�S}����>�͓r�����01�Fy^9�ykP�nT��?M8��N�Q���)9���\.}%l��Vn�����W�l��~^F��ʲP�*l��q ��;�A�;�� ,��u���U2�<YbPA=�����% S����i`UʆwG6rNH;�#8�^�����WKU��sU���:���O��A���P�Gٵ�D0��\���s�E\A��(�눠�;oXXo5 2ԟ���9�1߶8�k�u[�m{:��^� �_!�u����jq
��W� ��W� 3����ۿm}����$�:��@@�*U���:�#(��C����"ޖ��*R2��?��<c�ꑾue��R��mF0��OnA0ˑ�K��M���:]:��tB3QN�с�����۝VV(����ρ�e��}
i_($�#�r��S�7i)��S*�-��#)ہ��Y����w��Y襭)2��Eَw6}3�� Y>� r���zs�-�k��J�e�U�N4F�����������6vDs)�'����ҵq�m{5��H���0 �����B�mUн�_edЊ#<'"G s��^~�Q��1�q [�N��_�Hi�dc���Q���}3o�-�
�Yj (V\<���H�e�9o�U;S�#<�[S�g��Hշ�:�p�{;�~��P_+"!�f�� �����Z��ؐ*`\�#��j��
Zj �I�X�.�%������������$ʤFq���j��?e���>�r�Sܡ�����m�&wO''�w���.�b��J�tU�^2�8(�!g'�09�:n0�~h-����{��?c�Wt���#������!\a��P�ӈjf���Q�A��H�?Ò�U|^��ߢ�����L~:�'��=��;�C�o�� ���GC�R}x�z~�xȣ��[ ��f�I]L���� �G c�#߶�J��j)�X�!��qߝy���m6����N;��y�$y��Fi?�$��4�1pEχ�:��� w�Ï]/.Tb9�ŋ`�OJ��z���sn�1� R�*��{g�t��z�x�A��:���ؽ��*kV&�k�yw4i��?ML_k�>�W��Y�>q��+a����[������Dy�[�}�������UL~��r!麐��#�>��D��`(�/W�;��}4G.��� �`����=��*��^6v� �HRH�8�t�Ѳ��,���a۹<}�VO����:F�A( ��1�m�n��L�L�)��`|g���ҎTP���d]R�V3��_iu�����|��n�9�Կ �JDF;Xdy����ہ ��<�
���~��<�������az�P>7�3��"1�A��oW;�5�8m��`��#T�IS�o���c��KlգE<SH�e� P?:��}�u����tM$��n�_�. �Ǟ�Z}��=��)d��Q&X�" ]���P�d�� $�}��[�4��ҹX�Cs���AIUMQV"|@�����N\���/��<�Uq�� x�giV��C�K�e=-s���4�� �D�M$��V�q��A��I�q�%KA��t����S&�Z(�e�%�r��@+�j��+����=�r�3=""e{.~��j{U,��%\wJBiKT�7�M�F~\�N�sMBږ�&�����d���"R����Y����I Β/w����H ��f���f-��2����==n��ʙ�LJ�QI���/��1�Ϊ�k�c/T{/��T_ଭ
��������"�0�#��Yx�.��{U��QMUh��V|rS��9X{��H���溧�"������?�RI�8>i��wbyv�V_nš��QS;�E�`��0��^��kS���tT@�v����2�6X"R9�8���=X�����nX�*�2�fV��|Y� ��ͪ�n�{ծ�l��X����,Hٴdg'��3�B�&:u?���[�5��M,M�м����q�<hWS���l���W��{� RM��m@~,��9d�]z�:���u�ޏ��ST���^Z7 ��$�N�$���ڛV=t�Z�q'������8���Qs~%�*� �v���U�l��Ӭ��<08��9۫:���e֟�q������n��#��m��z�]K) ��^��Q�
q���q���g������C�Y�0�L� +�G�s��#��̊w~Q'�����MU n0ƻH�25��jԬ��O �Uv�{�1�I�;��Ҳ��<�ev�L�| s��m8�]ᨧHf�d���_*��?�Q�[�����8��>��p`c�!l �Bc�d��MKU���E��# ��S����2OQQT�$��$+189�n<�U)Ѫ���Y]i��V�{�D�,��9=�����S���E�P~��>���%=9���I�+����=�"���s��Xc;�F��@��Z�ڴn�>p�W~r9#Ӱ�ޜ�Uܝ�D���/�@��~tN�Q;�Å�r˃�{c\��-��<{^uFɍ���q�|�g͏�T-�K��ȵ'��&�ܑ�x�}�.;]��X��Q@d� ���_�0t��3,6�BZp�������7��L20j��K�#P��9�Ib?���z��w�_����)k��+�TF (�C���N|���W.��,�����W�U�|0�8*�V�|XՓ����z\*�NH�gʥ«c�ѳ�� ��#��5ʫ�wW��)Wm��OL�·�x9�3�z�6fPV�� ��Q�Q[#���i��:�� �������a�~]&�f�n���� �T5c�Ͼy�*����¶��`�F��J�u��-m����OQ%D�
IL܃���q�X:��~�:[$��� K,����qB}{�U��ʷq��BV^����u������d���9yv�Y��'�磇گR{D�;UΖk(7-D�v8y�9ݴ�8�󤾚�{q���a��f�wA��,3��9��O�5�GI�6
2(ݢ�t�I@A�W8�F�� „Q�lƾ����S�Ky�j��"j�f�ϙ� }��k�Yo�P$Io;U�����2f�-��Y �y�����>���NT�@�3�1�]��Tr;�4��
�Գ� ����i����R�Ȧ0�� I�U<�y_��7O�j���*(�j u�0U'<�?��=��B^���IMC$t��Kr�B��4�<���ww s��W���ۚ�2�t�Q��H�A�X�8�;�^��v�V{9�)��V�n��
$��P���/�w�׍^v��S�4�^I `���wyqέ��[O��Y;ST
���y*��$��>�瓥��8�Q�f�_T�Z�^�*nճƌ�,r�T r��F2���W >!����=���ek��ة���$���ӍT5�˾��UH�h����ڭ-@0��H]�yo�[����Wf���:ܮU�s%I�v!�9��|��Ϩ.�
�᧹�P�}�!$��u�l]a�iUTw�Z4��,� �J�*dBC ���_R��D44n$QM4�/�0� �P#��f2�'���>�����-�����c���/o������7T�Xg���F��Id!�V�\\™��bG�H�?��gU1aP�GP��m\����(�n�T�+ON�8��v�sٗ��V�d��iِ���$|��UOC�秦�����1#D�#q���
>�};t��;Z-����F�3GT$*� ���p>�v�xX �s�*X��oJDP`3�Y�rq���RE 5 ,�� �|��n����i���:���$/*;�Ï\����]f���Z�4t�28�T�w����~=<��D~��`��_E5�E!l!I4� �S��;����=Z���R-D2�Ȉ��RB6�7(#�����w����H'�5g��m;����<y꘻֫5R�@?v�����$�m�:��t'�vX��[l�H���m� f+�ǁ����k��붵](����"���D�x���Myӫ�]C_5Lt��$�1>g��=�u�����Z$�ĺi̊L�a��|�S����,6B�ٞ��%��4���Q�0|��g�_̠��i��%��Gt��̐v��e`�6s��L���`�� ޶�*".���^mi�j>�\��&��Of�5T��sRTC/�@�)p�y�1�ZuZ�}�[��U ��dUyiJO�'~�6�@�������v�x%ڢ�EA���I_���If�-�*Z�d���L)�d�Y�Q�Fs�H�L۔��������B�*��SOp�Ă��|8݇ÿpڤ`��dk���*:���7�uת�սI'��s�UG ��89^R��η+LU$SJ(HV8� ^�:�������_�?��B�b@�AR�s��q�4wR�˨���� �����*�=.��M�"��OŰ�ہ�:�#{Z�;����;U��Z�z����V��S��0YA��:�ZSb�*��}E��:~��N����1�)c���67)���IRU�L�1�)!_#�7��3��էҷۭ��h�+�=@�ƚ�9B���2Opt�j'[��]S^K9)OJ�88��<i˝�`{�Ex����궣[�۝icr�J�F@��a��]Yv�{�t��p�+Z��K,lbƿ,HW��y?�[�]��T���h K�e���Ak�xR�}5k�{;�[k����,n<icHBm�FI'̏ƙ��C5�=g�ۨ-4T�\(���:䐿�����1r�L���͝���y�N��e���e��(c�����2�s�ѓ
�d��r�map����:�����~�t��q���yk��MO:ӗ������1��U���<O{�ʪο���Sd��pS������������4�>�¦G`3�Ei:��!��E'���w�Lv��QQ�r-��E4�M�y���|@I%�K��I�g���)שm餾\!��ey;)�neW�8����Ҭ��|m4��e9v9��\wƫ{��]$��R�d�D ��Iߑ�s�G�:Xż� �������z
�wR#6���+����#�Xm����q��������_?���m�b� �Nზl y��2�z��4 �YU#� ����zg��U�ч�m�g��q��M �f$j���$��l{�b %�h����.-�t�i]��^�2;cG�r�{���ԋ �5�Fv�9�ߍ�3��{cVw��r�<�DYw.9�|�>��V�Z:��e�; <�8�6�-I]F/T^Ѻg�ji�p[.�P�$RGMD�H�`�rF0x�g>�A��;�5��N�kt�.�Sj�"C��%H^s��^��+��P"��M��Q۷��{�Z��B�I\.��>��((��P=?�:Q��Չ�S�^ ��7������^-�J–�D���"J��p<u���-��(�.���Z������Ypw`g���k��`�����+.c�_ ]��q��jק�:�衆��Q�����F@���yS��.��+�\���h ~�4� �\�� ��u���gOl�Kg���W�ư�HY��N@�3�}iQs�[�d�Lʝ�q ��ZK� ��[�7@�
��*RM�<��U�Q�䏮:jB�]�B�����p��Ȟu��ʂ����;�7
�uQȲ�M�Cg�� z5qD�9St�&JIn��))*n��y�����]���3�Q-�y(�l�tR���9��N6"��R���~Y��h��&��VoEO�� #=�a�����\��֋�]�%��i�gH��(8���q�T���Ֆ��䡠�Wj�M�$��F��6��q��GAW=D49�Y!����܍�y�sܝT\F�D5z�>{B�[�U]Q���E%���M:����!xa�����K�}3[Wj����t��$w3�j�����+����Pq�?�O�>�
��Ij�S�H���Jhѝ��;����6�ۨ:R�INKMd��~���$3�m�I#�4��OrO��GB�c�7/��Y+jjB�SU$�{�Aց̣��I#N|��-�f�]I[w�Z`��B��F�N@ d��}=�EASw��Z��f�f1D8#�\���$54 ���G;F�?o]I���iH�_Z�~�F�2��7�Qɍ��+���h���R㪏�l�䳒q�'��=Ml�rX��rp�U ���E�&T�E ������X�d�hDeϋ�c�ﬡ���QLZ��^c�� ����1U��u��8�^��߆U��O��4Ԕq���(��]NN㨷�⍓�U �� 5���샔�S [��"���:��-%eA]�8�v��,ֺ&���""�����|�냣)+˻�O�8��<����NJ ���j *�I������#��&��;�I%�ۗ>^y�M��GV��t�d,K���A�!�Xzx\N� ���tF���I�AI�!?S��y���H��ow..��@�§?��\�zSH�������?����m����`� q��RM��ƍn�������^�� �XW�k�a+�[N����=��WV{�u��% ��8�w��&<�6@��N����c�K��{h�� �pu8�7��2�=���ޱU*�ܤ���6;���k�zm����Q���4FTP����%q���y�d��y���gѦ^A��ɀڙqt ���=Ms�S C�/�H���T7���GO==i�~� ��}��Z>������~ă���i���P7Zz�B�]�y����H��kԪ��,��� UTq�ˏƓ/�K�H� �c�����#����d-Q�Gry�G�]Wj�d���e�����rbt�<�.��B�K,2\�
�0$����<�j�n{�%ƞx���L�gPI!�N��1��J;s��D�<B�����Q��W@e�I 9,ǜ}s�����`U�w����t��\m��䣕*H���yS�"��]?�*J}��U�����?�:�K:�7#�1-j�bM4mQ��q����gBo}Cn���s1�?��`�����5������
G1��q�&;����ƃP�p�L$|�$�?�Kǁ�q#.�\��>Ӟ8����v�0 G�v����k�*�Y>�Ŧ��#�'���iZ�g�61�9�'� Z=3D�B�S���B0>��sI�r�SꥎԄ��/H��blvy����s����SӺ������\���(�J%��?��WY ��f1�|��1�5����2���m��&�U4�Y�\�r��h%KN�Fp �9�۔��/����y$��,��ˍ�&?�3�
�3>na�*��I�ExV8;�<
x�#����7��t����Ǐ��D�'G��!# ��#�x�%P��)OT����S���IH����'��hB�#
Y�`�q?����0ڟ�8��:� ,����0�����v^Vn˞AШeM�C�A�m����x$e��V�
@>��낈{�)SRȈҰ��
�F��\ndu�c����_8��jҧ,x��u���$>0|M�=3��Ԅ[!&K�LJ���݉��j���� �����k��r3�>��L�Ʋ �#j�� |n+�����N�La�O�1�a$ϓ ���x#�"5:�fz�^? ��y�s�Jq�@��H%?)PH�'�>ڝK\���˘�$�r`OןΪCq���Xsx~g�U�^|��ҟW� ����$]��|���R㹊���J�cv�4ns���� ���8,�d���H8�z��aFmc�%wӝeSH&�� �� ������ ��~���S5U�yc�0zd-�3���M�=M���V����jS⁏�d��sߟ��Q�E[OQbY�]҇���ȾTd�p2|���B�����g���:K���.4�ed�O�1�ל}��I��%�� $q��tj��pW�ƳT��5:�r����� ��O ��e.�0�����hE�U�I�A˷q���u�1�-z->%Q`O'���P���(� '�t�o�d���ʯ��?�u_���1�����N����J���� v�� f�=�ᕽAi1(P 8�����u����s��|�MB����c���}5
~Ys���J�25N�Y
�2bbx �ΦQ�/�lY�9<��u���ў|�B��BX1�t�ģ�CP�a���ȧ�+;��.?����� w�;`��t"�y�����GSgS�û����=+�y��BQI��dl8�`��ư�8I�<����:��{�Ƚ���#���q�N�:�w;CSQ=@ 8��群ny�Q����C9����5z�SŴ��c�D,_��=: <��O�Sʥ�ui�a�q�8c�hjZj�4�%(pS'��H#�=I��,X�1�I<�ˡ4�®�@��F���>z�6�a$��a T��8�y�<�23ӴQ\bVE#�1�{A����i]��*bf&6R ���[�a�m�X�bM�(ュ�"�IW���K�^�{}�?dXew�4�N���ӟ��t_���6�w8�D�9�|��� ´u>$[ŗ�P�����6�Q�uuu4T�U�n0b|^~,���yj%
����q0�.x���4T�cb���J�d`~�M ����v�"3�|&#L2n-��Wn O�t��v�y ���Jf���Q! �F���鮗ɥ����+�m,��q�5:��ތ7&��Ol㾔���`�VBH��?s���z(�
�A-, �DB�k4��+����߭�TY�(�=���k7.5V"���� ���
����JFIFHH��ExifMM*��C  !"$"$��C����"�� ��W !1AQ"a2Tq��BR��#3���Ubr��$4CSs��%DE��&'5Vcdet����������*!1Q"A2aBRq�#�� ?��B����!!@(A��J���9 ���b{ϐ*$�{������MQ��)��y��MP�}_0Y�s�4���A}�<�E/(Ϙ]>��h �{��2�����r�:����&�ަ?H�<y�%�9�G!M+�E�V���_Bۏg�ь[�5U���Q���8��<)�?�V}��,�J�l��? �-T�W�L�Ԏ�'��f���$�B���Zy~��Sj�?���6�=����u3�Q�O�O=�J�j)?��N8�~9^���@�Gv�z��>�[^u�ŸN�K�GX�x�/8��B�U[ my$S��t����ipL}�}1�WZ���W�s4+�^�ճ=�KI�*"�e�4��Oޏ��#��c���P��
�D�H�:�5�ȏ��r}����ٙVV�$� !BB�� !BB�� !BB�� !BB�� !BB�� !BB�� !BB�� !BB�� !BB�� !BB�� !BB�����,!)�+Fu9NG ��-Md�:h]+� 8+��b;���^ٷ��LЇ��y����m55EL���G|4VK>�\k7]1��#��������>�B���D0��4�N�$��b�h�� >f���Zh�4���s�R%�5��5�?�cm�a�؉���84��4_�_�.�p?�4�~ ����6,{{���V����Vɳ`�,o�c"��uQeM���c��Z��K��09�[Uȕm�67��⓿��'�5-Ib� +&����I�SRS$p����ڒ���1E�׏I'̊���;rA�!'���uOY4��N��2s]����9�*6��NG�bH�vIcA�4M �z�t�pk�ک�ic'7*�tػt�Ű�u���o�8�j�R�ᒦ�c�\�2�]G �-<Uv��zY *!|du ��#�a��B��[�ꙻ<-��5��k%����C���dp�VU�񱑸:[l��������u-U ��]��#C��y�>��ǞK���BލL�a
)�e J`����,!)�(XBSP��� �a LB��2��%0e J`����,!)�(XBSP��� �a LB��2��%0e J`����,!)�(XBSP��� �a LB��2��%0e J`����,!)�(XBSP��� �a LB��2��%0e J`����,!)�(XBSP��� �a LB��2��%0e J`���E'�;��I�b�м�~G5������Y��E/��X'y���F3�_�'f�zs��� <<�I+z�juK�EH=��Zy�],=䍅�5�:*�Q.��˝~� �#��E��ī5<qS�2��ޙ��(�0� !�� `s��h�q�Sv�c�̀�OV;�:�m�{��O?sC �juǘ��v2���Md�����u�6i+�u�o�T����T�u�̔�u�wBz�](�m�&����JpNr:�%�����E%�Q� 1�`ȵK� �U����&O5��j�I�uQ�Y�e�X2�S I2E�F_4�*��I/�Ul�6̾kf�]�2��ӂx ����a{��ִq%M�v[h�4L��P���Z���VXre��� 1)o�h�F�T~�B[8n~��T.��c�*W8��C�W�/5�lݒ� �7X1�� ������ݲݑ����KdM��s�`�z�S X/��\��-�C�`����7�Qdٰ_�dL,ȱ��c�<�gyc)a1o!�R�CK_ �� �Gj��
��E"볮�xu%�
� �Δ��mz?����-#Q�*���D��տun�RH�Ş�eo���?�
=OQ�E��r �,���]l��vV�MS�C��Ե_��?�
�|�iC?�Uz��b; c�g���S��k��Y�?��5;�w-Lူ��Y��n(�dn��Ʒ�zX~�]Z2l�yU.���G��K�ٯ���.��5Ŧ�C����TTDQx*�s���� 5��s��!��%cqV�EG�E���m5�_�
���!���[���VM�o�/ە�VM�G�r��n�8?ī-d��mҎ6�O۔�A ��)?lT��4����+ur%2�$�}OI�b�(�xZ)?lT�`�M���'W"l�4O�������/�>����lT��v��$��C�Uzɑd9�p�E/� �C���{⥜�G�Lx,tdq��dn#E˚�TR ��+"�N��l��g��H�w�ZN�S�9ő�7n�ӊ��M �W�e1:Qh�-i��1�a��^[g�;�'��OQ��w5�wuN �oST�FCN:�E��ز-�z��_pjGC���K��b�hm4��m-?�]Cg* d�s��P���0s湏h�[n�ø7 �ӑ]� J����c.���gZH6���'n6s�7�z�\�1=�s!hk��P��'R�E�/��c��<?
Bմ6{���+t1w��]3���+����oT����]�2ܷMx+�]���+[r�ˎ��3ぢ���x�+1Ɏ��Ge.>�u{-V�i����o-Z�x������N�t���������dov@�����Wd[�۵�c���a�|8�Ϲ Sd���k�g���2*I�*�m��GP�&�ž��\��nq�l�� �O�ϐ\Cj�����;9r-+�1�F�.?�U�Chh�#�㋴�dm���\c{��ʳP�׾6bf�ܲ�)ٍrU�,c����6�*E;mqw��\�r���K<TI%����ܓ�hQC��P0����Bߛ�{���� ���GM�n���b�����$�p?��g��W�&��h�s!�����;�T�����kG��+��=���1�i��CA�ʙ�M<b���m-CA��j��*�َ���f�Od��{[�����H^ � ��T�ҋ�ٚ�ww��t/L�|�KK�͖����'�QX($�{w&�+s��-��?
��;'������!�p�9W?C`����W~���
G�ˣ���##eiO�r��J���jRy^��70�X>8L���aOⰾ�jG�?�V���/����V��'���f���y% ��9�O���5��ݰo�����K���U�?��M2L}��[*Ӓ�*�+�JQ<�z�]��S�{��R�� q������}��,�۬��˳U�ڿ�K��:]��#S�*_`u��u%�=�ײ��ˢ�}+ g>Im�"�{ٺ�,͂�n�C+�0�k�������^��O) ���vG�<�}�l}�J���ʏ��Go1����� �4��Ox�Z+�Kd��˕@ǥ���lD �����0DZ�4��5] �>cCE c��{1n�:�j�^����4�a8�$s�|��憶zc�J�GE��Hޏ~�G�����U�Ul���1G/�d���?O�o Qg@�il���6��0�\�n�X�?�X�\=P`�1�� �"Z�8�5�'\�E��`�|n�l�E�|�������E�<���\7�sC���� q��c��|��P-���rmv��p�{��J�{ab�;���tk�g�n��w���ۉv�?���Ci��|����dc,$Z���4�W؉.��ֻu���q���b�� �!l fp^�������Q:����� F�#璱��h�0\�+*����njzcO�����zh�.ݢ���@�KK�w���3�Y�6��ݵ� }���9ţz���y$ٻ<c*ij^���d8qg`s�2�N�Zc���!��Lき3�>ED�PD�Mܢ?e�M�f����lUt�,�:�iPWR�!��C�a"i���,���F�I������?۔�g�?�E������ulC��Qi�Y��}���f;=u8H�g�b~���@��88WZ)]N�X:�kg�v����ӥ�zH&l�c�^-4��yM�q�Q�૤q��� h���N��-T-,h��"KMC=�=<�**�UMm�����B٪t����U��! ǹ�5϶�.ګ!�8i�J�E��xɸ��K��=.��V�{=\�zƤ�3k�2rA��pE��+�$W��P��\I��П�Jpl���ؔ�R�Tq78h��'�g�WZ,ezh��u����zG�J�� A��u1#�I0�C�S��+�AwTj���7���nN*B�V풋�j�Y�|J=����?M���i�o��9�ڸ$�ц���üy��Ϛz��sT���[�~�c$�_d� #��q�?$@��q+�9u]ϲz�����vK ��:�c�!�i��;4i9��m��V�.��&|TqH[lv2�w�[24�z�S�i��k=֡줖��G����oc:��$�����$�F��˪y^G�̳9�{�͛�\-�jW�����Ƿ{Gz)nի;�>0C!h:u�*�gn�Ip�>�)�X���4r���e��?5N�~߶�U��;{��)&_�+��ͪ���:V�+���V��l�m�h��ҹ��rDw����5P������d�DA�L��q�^�ݙ�����R���%�Z��ײ[�P-�H�t��w{�B��5j%�|�h�^�Lg�f�����m�4��W��ݑ��Xꧭ����hm��i�~gn�As�I:�l�Brt�_2,x���
����OT*�+ ���a��p���{�m'�\���#ⴎ�<�8(�,[�(���o�RW5�CO3d�'Gx.��]��\vvj*I�"x��7 f|�~��.���Ѿ��7`T`1���p��˳���g*�J�cto�������cL����M�F�8���ٴZ.����e�.h��|�ʷY{,��7��� C����-.L��0�)�\bQ��x)���[��vRn�K�W1���4����0����I�F��i�C�"����\Q�˳�c8ג���^�nUI�UD42Ŝ�̎J�����+ �g�[f��N/�9�䱕�d�ܯU^�l���L��Y�r�v��(��/{[EMQ�� �~%Zl�V�1�9+ESx,�tA�a�����
���� �wg�^ǖN@8Ȑ`�e��v���"��|�7��{�ܬ�GҜA,�$48<�c� \҃��.L�i��ѪfWo���M��q�Q��QpA8�*��{����m���v���v�&j
ԷK��ac�<Yۆ[���q��)M⹙���'H��ݤ�U�&"#��Հ� ` @м�����37~7�F��Sd�i]zv��NJ��_<,��N � ��C��,0Bl�:��T�ƪ遬aڤ���ׂp����j@�~&9���$�\8����L0�j�x����<8'��AHx�s
v@���C���Oӑ��H�h������ Lvck��N� D�Frչ\D�����$�:�%eLgGq[t`9Ϥq�%g�X�W( DH��7Y!9���ж��\��M ��:�Xs H�/
b�<l�Z
��&��y�1dx�)"���y�hh�%��MZV���]ko쯠��L��4���.ir�1���E�|OS���
���a{�,k����E�QYD}�F.d��sG����'c�m�$�"w�+�R74�58��/��׵gݐT�9l�i��Z��������,Z����V6���K}c�܍����U�Z�+$l���8�\ѝ����� ��p�� >'8n����y-e��n�Bf3�ja�ġ��!�z^�h$��sK*c�r�r�6xM#��,ϹRG�� ��xGV����%yٝ��jF�už@X���[�F�> �˦�{�ׇ=p�8հ��wf�D�b.��Bf��Y��dn�;u�ml �K+� �: <}��N�V�z�W#�Gn���L��ǍB?���F��H�R��!Z-,�ʆg���¯mC }���O��ED� ݌�~���>�nv�Ġ���z��޸��DYw�pNJ۽���݉��my��Zb��c��N�k�khZ��jY�5�r��i�)�t�,�JF�\0��s�ʹEG`qk��n�;Ej�N�EY��d��z[�����|8r�žYHʸ$؟�)����3�G�|NN<�Tq�m���F���s�~Yd��#��ZcO쬚,{� r�ì��+]�l��� r���s7Z�����1l���Vl�.#�k�����mm����Z��or ����ɱ�a�s��G�L����<.�ED�ٖX��+oꯗ{�{1����~���������05�; ��ڣ��]���YO&���/��x�%ڭ��*^�X�� ��A�Rǿ$V8�߽e>Y�cJ�ʪ6B;�Ed�9d��H7c��;��#Zw���΋��aF"���%��0�nx��^짆8�e�&���g�8�W�;I�>���|�hd���{$e߂�:T��[�r���-1�n�Ѱ�[)�G!s�~�[T��FW;s��8��ԧ3�M#*�q�KZ8�VtUw"�a� 8|R��wK{��-+a���˜��|�����<��
��h��mީ���rb�y�3 u-�(*d�ݕ��cr��FUb۳w[���𴶙���!>Ϛ������5͐8���5d�W'^��m���&�ˎ�������IO���r1�.=مCk u�V;�hs��'��<s�ٜ���i�ݼ�:7�s�
�~ƍ�KvӺ��'KMA���N8in�V��wβ�g9�I��s�s�N����<R9͆ \���n�[�5 ��&���I<s�y�`a�|*&�)�#���xK=�f�8�As�\F���<�K�����-�39�MK@��Ks� �R4�K�(���j�)�k5.|�ahO��&ռ��N'O$&6�l�ݯu��*^ʙKL��8��V*k���Ti)%��ǀ� �M�\�9��y6� ��r��1����Z[�E],���L<bV��K��J�!-;��g�بD}�mDMΓ�k�S<**���e����i��P��E�v�FN�|2�t`ӻ O๟j0���q���Vjj�n���1�ÐV�(�N��k?����l�XV�䤨P���<�����Jc4[Q�c=�Dwg�� E�)��p]���E�'�$m��0�Ș��*���q�u���4�H#��i���c�V���8����eg\��,��|U�c6��n}0SJM���:V�5�?�sL� ��]�dh���ǒx�����(��Q�����=2����H�0�Y�;W���_�֟����@�ew�X�U$��=nK=Ml�}��ދOn���݀�B;�c��'��a�x���\�DOC�Q6v�Ui��V�HY#ehsA�p'�.�ڬ��륛�X�#E� �����jQ7����+=�_.���5}l�MkZ��Ө㕭���l�}����� j*���L���OG7��-Q=��m��?���M����o�L�>Y$��|�9���y���9W��6��o�Aj�T����ۍ2�D�<�=��mY�,��(�'�t����yz\�1�R���,9%�gf���,���n�]��������
��F����JZJ��EL1�s$9�w�ʾ:m�u)p�*�k�ԟ�r����p-Ø'�/[U-��lu}��εQ�:�k7
;$��iYS_�TL��k���s��v^�v�����[SJ�~��4�ZU��D;�V��F����YX�.=G�7I�sJᖚݯ�O������CL�8�3�+�������;'z�k�t���������iٵQ����� ���_M)O�g��\-���]5+����kNk�vO[Ss�zY�t���Ի�:���ر���>8������8���]{��C���ە֦��4�0J��O �`�H G[Wo�mMT��.k��5G4��>����g����>K��9�;��s����]���rl55Mk�*��Q� ��^q�2ʩ)��d�����N;5�?Փ����${nSL�\����/W�[�1M�;5o�w:�k6K�ʟ@heKi��A�9� ��2\w���\Oz�FZ�-�k������nJ����y�o�%�j���n�v���"f�\9�U�Ol'�\h�\�\{nî��N�`��=K �9j�۵ʺ�5��W錁�̍�������훖]��W6�(�"�8{��}��3��h\�J��L��w���xt[&�__��LJk"������%����rq�k��7�4du^K{��gqyFR2<џ5Z)�,p=��I+y��^�N�Pv|�G��y*2/�Ӧ�L��g�Jq�������Ó N7G*Ip �g� r3�H�# \T��#Ш{�;� �
b�yN@�)m�+Gaa-�#�
�#ʰ ���I#Edɱ����j��tH��i-� �t�i�5��Dr5 o�nRc�:�Ud��Ð��"�#0q����Μƀ,��O�e� ��|.��#K��aa�z ����K�};��X�=� �KM��sd���;���^�j����T0�[��rOy���a���B�J;��Jx�|�b�~���$��%�\=�������nj �M����\Wh(��9�����N��-���3����Erͳ�Im��C#O���y��ҵ�g^ � �/������6�� q�J��?�mLE�RԶY�_�qs~�G,�Y�)�lLs����q8+_dmWv�ZMu,�� ����}�I�[K�n�gt��m��k����;�ʆd}A]��Tձ���EP��ߜ|y�i�8*Y ���`q�и&�OUh�.���S5$R�sbq�ݕ��g4����Ip��o� %���E35��-TM���0h�؏sU�O'*+/ �K}�0Gm�N�Od�A�V�giv�{�m���;nP�D�n�s2�,���&f����l�S2�o�9��ƎDpw�k�GiT��k�0�$r���9:�6��j���w5-��Zf� �Ƀ�8�ۺc��ͨ;����rW&uM��Mf���Ý�7#N#�ߋ�{��Eu��4l��\E�HFH9Ө+wd-�Tm;#���:��i�f��h��zx(�n ��H����~�ӒTr:.��vg��j�+��iLS��$�4]S��|Yj�Z�z���*��*��z�<���qnu%};���< 9j��Rfg�4^h��6� r����L��r�<�R�$F4��RS���Ǎ���� n��U��_>4�9M6BO�h�I��x�$�����Sz��r��yaZ����<$#�Vds4%�=�ܘw5U���z8p�$ZA���o(Ԁ�ҪEK�P�vE����*��oheu��׺��ǵ&o�N��o�ʙ��;����Wь�6v����C��v>�Z�?x�Em�?H��,d����W5����ܼ�ڕ+ł�@��?�K�U������Ԡ �^#-�!���:�~84N6�I�)�����z"������[1��j����f�*F��5r`L�r4u����M���gw�9��'O˒Ӫ�kk~�O��;�.��z9k��T�ME!��d�`!� }џ�5F�-}�Yf��)���C�|ӎp��K�6���e�k�#�����g�V�ˬ�z7K\i�\8yu}��۔�N?�UBO�]�\�e�.�h�9&h� ØN����]�cm1>�K[���hq�1���s��r���h�<0���_.D�!��n�Ժ�?Dp����Z��-���w~&�9��
v���k��?e���(ZG���;tF�̒������t*���?��º���?Ĩ��sY pB�^�4��Kw�q�+�-��H�p�ȂT��Q�Q�K�G$�{�A����QTD�<8p��<ԭ,��y׃�vAN���[��L�v:o�m�ci d�[��<�'v��U툎�[K~�l5ՐN�%�i&\%=S�w8gkN�ܷs��� ��Eƙ��$�{/G[AF-�ѷr����������lc��O�w��(m�L͏�&�c~q��s���[�׻�ƞ:x�tm�8d�U�WE�m�:|�@7�_lt����-p0���L@�F��P;U�0�o��G=͚Mܟ&�SR���Ζ�V������V�@�>�\#i�E�U���c��8�쌛R_�@�Ӗn�6��eN�SU�:��iR\є���An�Y ׂ�v�7Ϥl�H�]��[�v�d.���R�֟�+^N�䳻��|]�li8�+�<�9�l7��~����ڀ�h�E�`�I����N7z28���
�䜾/ �E_-� �)�2[��P�c��P���6=�/$����KQD �7e��'r�}����qĜs��)a��vESIE��J��p�y._�>j^Ŵ���ˌ�ǜ���tӄ$��f�eڟc^�i�[�1W�*��N����h~kV8����,�<#q? ����G�WGAU��$�ڝ����m�����Ǧn�6��,���EmM\Wk�~�l�"R��~�P>)}�m�W����F��Lc�p� ��?�]�I����ȉ� �2G z�~�5���Kʣ��:��y'�W-u�[�V�m�+w�������A�H��^�s�0���������j��+n��7�o��t/��Z��F�L�G�Х���1P�җc��Sw�.�n������Wm��SXjٴ�P�E4��~�W��� |V+�P�T���}<�~���G�T���ˍK���$���%�?�始M�v�ʥ��<���USx.a����uI�Ʃj%��)DwLc���Ѧ�<6�g��G<xߍ��di�\!�;ja���>� +a��e��"�7͗/� M3����$xykK�s��� �ir�p�R�����vWѽ�!W���_~�)k�N�KZ!�4u�_[�l�$[-��9��5�T�TܩY JL�c^x^��:�z��+��'I#a nrq˂��M��Y���Њ6�!�Ђ�Nu?��wj�^���HG�Q�9E��� ������[$np|R��=�0��/Bv5 �vDǵ��v�h�N{G�G;.��O�8�=j[[wY-#@�@��ͧ�O}��0O7vʽ�9����$R1ͨxps��p�ˎ ��U��w�����-���{a�5U%��'LapeP��9��&�&�zG���������7�n+�7&IMq��V���8���O��K�{U� }���31�[������Y=!�Cs�ez��sa�v�՗$2AG���6������ڨc�� 4��m�F��¯m'hi-�pj�mm,e3!5$�o��n]��v�]��wi���zS���j��Xmř��h.�F�nN/�w�ҽ��\��)D�
����R���j�ۧ��Q���t/�p�� WR7���m�g�B��㩵A ��ź2�F��4��2j9��kr>%l��~_�J) ���i+�Y�i�"3ѧP>EFey҃�j]�i���м��L�<�2|�f��D�wZќ�j��5/�BMߵ'�ݦ�v�`��\����4+l `��;��݊;cɖ�� �R�����(&�N�z�0oQ�uR��5N��KS�L�q�@�b��
K
Q�z�u;���Z��S��K��P�#���+@K�m�|��d$�@@�9:x�8g����d5M�U�G.i��+Ł ��x�$|���U�Gd�~]~uS%�p=S��v�"�spHơ(�<qׂn/ ���q�,�B�3A�x���7brp� ��3x�l����$k�;B��?��v�������y�r+Y�1Ժc�;]5Ԅ���͢lG}�����;�H�:�˦�S�)�j!�ӑI� ��;ٕ�y8)���)�Sj���fݽ��+\��&�c�3��u����ư���� \�٦����b�l�ͶUTs4��wOP�ڑ��[<zT��H��Dg��5n�����y���|]�P�{=�?�.�I(l2k�pm���튁��Q���� {d�\�����bp Ǫb�?ʶ���m�֯��Ԝ['kU�_U��W,ڰ[�U��z���g>�.d�+x�3�����ۿ��:���Nv�d�o1�D�ibv�,ή����u�,��l7LÏÚ��ݝX#����mUf$���cI�Z��ݢQY�WOm��`���5 �6Z���@�6����Eλg��]���=��Y�x-hY%�i;g@���hoZ�`�TF+�f����!t����{�"��o������a�������"��~��^�����&g��Jfyb�L�S�ؚ<���>)0��s�L%`�<#L�DM͸�|�J��IکLB2j#<KT�o��
�� �<쒩6O�Ȕd�A6�"?��=qJ�]�qP��wy����x���l����έ�LWJz����� ��?�"��̳���U����UW�A���*�t��>��Vô��Uk�v�ܹ�d/�/��7�[v�x��U5��<��N�0¢lC�/S?y��3�2���Ef�pv��Nq�3�O�����.a��GQ�%I� �ۆ�4N#�`�<�U��$�t��ѥ\��k����G�1�F��ף�]�����J�k����~k�|��
�y���L�}��ȩ�a �n����-�n�G>��*��z�`��5��j���9n�-��e�Un����oDu%>�N�d�`��'�=6��i�̇w�rׇ�*.��v������hD��}�3��q}���Q�1�E`�n'9��Td`�dh&#GS�'�T�|������4Un��t'Ư��>6`p��7I�,�#�_{'�I�Ӯ�?�g�|ɛTL�3�;�֌:���N>�"h�x{\;���q�+n�ݟ�[P~�^ǃ����K���N���Z̟�Fgi�[��¤K��08`.���GY��4����%����4��������m�퉌 k@ar��������B �琔KKs��r[N�m%�wp�>Y]���#��Z6����2����8�@�����YΰH��e=lm��b`9ާ�����W&�[(YW5�Wd�f�����m������e±�� l0�2FU����4�W
�b>�9y iu��6����U�v��U=�]��\e� �}��uh�Cn�z�M "(�����%v{^��OWXm����a�:��r*)��mR����u� �,]A�� �;ߗ�r�۫Ȩ�ջ�i��R�d����n�Lە���<u��rýi�;I�+oy чi�8�淟b���UM�J���qYKM3�iݐ5���thj��� ��/F�ݦ�o��J� %�.+T��ljU��<pL�L?$�V��"3�l�,|���p�y&Rt�e��ovE}�Hh�<H�/�49$�����R�F�St,M��-�nn�w�:+m-DUP��<=�GUQ�0�& ���8��䷛n$s����/yQ6��-n�!��\x�L�8Uj�Edž+>�3���d�+�VQ�4���<�\b��M%U ���qR��v8l�_��f�u&����*#�p�;��i��o�h[+�m�Zvb���G'9���nv?h�c���d��0׵�t⽉K ��[�OñH�#=~��}4�sII �.�Q��-i���mJ���)�I�FJQ��@)9+��BP�&V��$��gXJ&�����$:f��rI�B�8�\xh���R5@�J$Y$tӒ���zjM��OX���'�U�� �O_�W�-�R�L^֙���\��m�8��h$-�����\P���Cٞ�+)-���
ݨ�w����9ЭZʮ��eW�8�\�w�V=D�XN��ӟfg�2�\֜�` u�+�v%@�ٚ�f��tm�C�<�¥A~����-�gk�U,�[�����e{�W�WL"�o���у��SŦ{���"�'��{Yu���V�@!����t ܣ �I�4�T}��KB5"Iq�֜�6�G��s�W�o�M�exk5ʫ�W�u���y��<�i䭺�P�#H�'Ia�&���xTyf� `�xc�Чv0��9�p��|��%(p G %E���6Ա�C���R4��
1� v��.|���^3���ZО g:.&H��a櫕��sze�E� 8<p<V�e�-$�K ��d.��K�D�%��I#.9Hx�xH��J`e�%` �Գ�7��� �ZA���w^9�K�a�<
�3Lj@0��#�gw�Zx$���R���#�\�pM7;�7{MN�1� ��� �a��T`$.�����_%� �9�a7_�Z�� ���̃_%�7u�S�p�ʤ���� =[��d��3�9$�d�ֳ��/�#�/�uE���e�;��%3k�-6�㼋��R��A%��M���h)�����1����%�@3�0+�l�K&d��T7�G�����E�t�H��m|� ��[�(3�.ݗzy��yu\7k%s�Y�q�S� ��q����+�m\������zB��ߍ4i�r�G�M���4�6���\�l�[�}���ܭ�_�i�U�_ы|m��J�[uw�wlj��;�����3�3}��#�X�$��b�lQ�ܮ�ڬ�'Y7v$t�5�q+ʑ�%��͙�W�Ң���z0q��0
�7�R �T�6ke���4>�W�s��X�&m�TQ%U�EU���GN���8C�I���ݪ�ݯ�5�TL��3�e�̙�$- >������-�j�:H��xsI!{p8u诖M�m ���� L�T��O�g�㢮4�-9Wb�;R�If�V����e���0`�@l�U �S:��9;��Ҁx�W��v }��MIUF��$�u�[�;���%���)+eE��w/�Iq����lf��P�sI�����6�=Ȟ��:˽��by�ۺ���[��J�j۵}��W� 5y�n����v�l��m �� ���ҹ��h�끅жR�[x�c5�8�[ iþk5���R��Cd��ɽ�4d���\�*�+��zt�4��j�m51���|�-Ӝ�ޫ����ZH�ݓ�J��W��[qSg��I��4�o� >�s�F�\#�n�c=N�� ���G�o�#ݨ��TN����q�+T�[��# ����0y�(���J�3��YM���Kx������:~i���ν�v:���Zs���N؛�镦�,�﹁����ដ�Ɋ�o�U��Ѻ��!vՙ�4��oST�M8l�u,���d��U��8g����-]�e3j\�<IC��PA�g���\��M+��l�Dn�],.,�ӌ�*.�X.���l�S��;�]+|-�0V�i4Ѳ�����>����F5Ou�!�]��z�X͊u%g��ұ�I���i��ʦ�G<� �rH��[�-ڝ5��F�Լ�B!��乿x]�9`�*#k�=2�+�A� K~K�򺌹S��;��vkjG{��ݎ{7�&P3��\�j��g/�7Zzk�q���k{��A��T���=�'N<ޓ� ��v�G#7��b_e�X��l^m�si��/I$��N��m��w��Z CZ2'<�EeCCp_�r��xw�\(�G�~/�tJ{m,6��,����oź�t��jY6ZK���GAr�����Hk�CK��0:�꺯B�D�v���3�� �� �ɱ[9 ����u���1#��@�]/����h��R�v���KOk�嫂�_.7r�u����lmT�9��SC�B]���C#b%�\<��&��$J�<�F��^�(ʈ���+U�Yn�W67T;|��D.�ؔ�v����v�sZ�hi�t��Z�x*����Zc�t�T�bx�����A��\�ю�OC�[�2]{[e!��j��;{+v��:M�ƴ����#b��5���VM+üطμpy��;�2]Q��5�:qgU$U+(�UI����Z�{5=3�uN󃳌(��ź��=l,�����q� ��v���ؾ�n��5^H��G�\�{�FE�a6���j"�d2BAnK��S��>�y\o���d�R� L˶�Q[�#����2̕ {} �j�U�(���3���,�;#�:�[i7Z��4���5�M#�h1�v�m�ͽ��]h�_̝�޸��m���t�e��I����� �϶��T<�K͑���O�{8�y�\�Ya���&��<�8�_�p�����t���Z� �Mn��v񫱿#� ڶ"�GX힂�k7 {���R�2�DxvT,ԕ7��h�G�y!��Y6ﱺm�e/��[D�H��A�����엺�ۅS�`��k�d{��Ԯ�id0ښ�g��gQ��T��N�l�i�s���X-�RWV�wq�S��l��n]�l��"�����\���u("�wMns�#�aҷ|��QL��/'��V3�w��y b��P5���d@��j)q�7�G�^���,��&�&~�Ӫ��G�$yf�� ��� �9�5-�޵���o��l�={�c��V?F��s��fI9*�vOQ/��B�!@ .�c)a�QH���Z���)�;�€�H="!��BsU���r�$�8˹7A|�� ;���)&�8e��Q碍��qDܨ�`�.h�W��i�~�y�A8�^�i����Y��Z[�f�4�~�� ��8�`��ɑ<ok��PrL�ࢌ��9=V ������gRR�&F�% �1�Lg(��(�x$�O�F~(��(�c?k�#?|���Tk�'�X�P�Tk�'��J�ꌜ�I��`˜R��d��c?�TuU��O��4��9Qu[O�[EJ�����Y�q�E����q�*>�y��Ȓ]�p�i�U����pij�0�h���;���R��M�f�e�t��xxi�,Q� ����'�~�����:h�)�:#�Z֌��xh�g$�XJ�gɱ �[�;@�b:�� �XI71�(�j��x,V`'�#�XP@�t�~�&3�Ji�
�V�3N셶Ð�iT�K�j�� S� i��$��g����� ����� -ۜ=�I�����^�9ZRs斑��` �)���c6ᢲ% 8&�5O A�C��D{L=Bk> G$���Sr7� L����xK�x�񹇗ˏ�8*&Z27O��c�<�Z��!�A�&Q��$J�,#�)�2�G;G�h�d��K��� 0.�_G�8f9F�EC]KR@?�p��"_�~�i�jrRڊM���?��T`Yq���xO�O|��շ��2����N���U�F�褦�$?�i�B���#��Oh��m@�3�^��x�/���q�v��s ��l�MOT�KX�\>t�������{A΋�_c>��@w�5�cɉ#�đs�j)�|����5�y����f��WnE,����#�їI�O�ݍ3I��X���~����cD���CUWHe,m7��À���!M�~�Y���9.�o9�
�;����f�=� ��OO3]�1�|Ɵ�s�|�(#N���{��~�I�Dq��ⶨ�k�GUC]Wl��BKZ����L����-���Wz� {�@�H�!�L�̺�-[�r�@�CZZy�]7d�L��;P���-%-3�n�!�$��\ճ �ޖ���+e���Č�Ԫ�#e�%��6�m�R����g䬨c߻4t�� ���4TK����j�����o��=̯-sA���b{u6�Y�$��=��r{�4hԑ�\��Dm�W�L���?W>H�����pw���������J>�;q�+u5�i�OR��d�����:E�E.��5U�j�6���۲� �v<�ף�o� ��e���l��GL���^��4�����.�ܫ+�⧖W:8�^��d�+�ew)�{��ݝvY��Zhje��H;�ws�]����B�y����9��U�Ͷ���Z=*�C��n�e�c\8��o�n��M��Cu��7H�޲V��zeu�Ge��'6�$�W�KN�=!�07\�T?����c�����.sx�O����Vϱ�R����5�n�;��?��o�n�>�h�5�;^�� ��qh'�*��V�A��}���b� �t�)jc���)a�*�ӵ���Q��&��F�9U�ܥ�ݣVT@l���iiy;SAt� l����x���juY��7G����5-����yp�k�LQ:0��F7L��k��_u�f��0?��p�L�Y��1��(h�:�^.Lo$��=�P쨽��p�a�S��Z��ak����-4C�G�a�'Lyq��`I�[۲>������C˘|���!KVA ��f��5w%�%��x�s�����\�+�4L�t듅�_Z�n� 7ߢ�e��F�!��8 ��&VԵ�R��G���q�-"��)9����譶H�-`�y�{��^��+==[���P����x2P���:��s���֙�nϹ�o����J�Z<�ˎ�,�Դ����ehW]��8�:77�aKPv9� \M|����C�S�݂^�v�h�@<F����=33�W��������O"IpӮ�x(Z;���w�#�������$��mC��ݧ'��h�����&��zR�e�i�Y"rju�g��嶛����C3��up:�s�k\�G��������Y��b���`���O��[��unp�A��j�U���7VmEk�D�I"�o8��4 �$��R�y�`�#��E��0S��8��H�c�75oݩmkĴ���ӏ��pg���ke���TL�+M$�f;��\���V:.��9��l���7-��t�|v9ܗty�dvF�J�{�iS�C�-h�I��
�۞��O�2SSC}+�ӌc8+�!퍡��cy47�%w��|��Cv�y�'8����DZ.�����?}��{V������d�'\=�ބ�� ��+W4`�^����Ϟu��v�M��vZ�~�I���ج�O�U�
���\�T�\+�/��e�$&0x!�xg]�z���"T���]����Ts�Z�]SVZ�@�`�װ�c"�����#�$��Ze>C�=>�NA�[���!�;e�x�lx��%-�&��-�!0�1��5��4�@�b�*+d��1�@�LJX�(�Y.���LIY&��?�� ސ�G��r>*5���d���c������У�_���B�B���h��У�@#D`t(��
�� H�i�1�P��18�[�X*T�di���Xg���S��� ��A��M�j��yE\"�1� c4���B؋i`�IM#:�~��G����{d�v���.x��ov��>*�q;�ٷ�O�tJ�4K�[O�n1�����}J�m�}֤���
���Y�kn��d?RK���Ʈ#�yV�Y���o�.�^K�vƏ����fM��3@����-��-�P����V�&�OO���G�5�&�ջ=�[�{�Ki��0}����5$�^j4��k���s�j��U*�T{�u�Ȏ��u#^�U�4lo��IM�)�X@ky��K '�Tz2��)�ʐl3�N�L0�N��ʏ0����Zm:��J�H�H�r�Յ���uXIb��` ���af�8%����+�P��H�x�(]��C@��)Jwi�ɕy�JC�YX0h��߃| Z�Kr����<Uژ�r�����ϊ#�K��BN3����p�;���!�H#R1�㳜�8d�Ya�{(w�=��,�a�-8;��V KI�Ф���8hR�n�8rG�!��j�`�c'��e��N�!�T�p���� o���}�ο���6@5i�����.�����G0�<��$u��
ا����ی� Z���qh�g�)�t����� 6���u�o��샨[��2#%��Fz���w튴 ��'ǂ 5V�?��;��j5�)��6�����q�*����z�;OG���z"�ȯVz��+;�OG����$U/�F�$o�p#�^ϥ�6�vᕔV�����0ai��)�E3=1�i2>ˆ���#���[��ܻ�\�����;;Ul�+�G;��|�7w�֪�jJ*f�M6���'���n;=5��������� |�8%�ԕ/m�������9|S��Ꙕ���C\�����#��O�o��A�H=Te �)8 ۝
�,��؞�S�ݺ��kĶ�F�&� e��~*��6�ت�#?W�D�I$���s�>*C�*��)+ ${r[�#��6��ZF��:w�v���k E.Q��_rV�͖��yj�� u��m�f�{伝� ��Ϯ�G9���rt�? �KQt������3Z�1� �W�U��'o�KuM�gm��״zDE��q,����=���Ov�6&�uo��gm�s����(���^��X���ٛk\@'Î�\��Gg������ �P���������鑱�+� !�բn�������6�)}[�C���4 ��j��453�SQ�5�;{s�q�G�Kf8 �Rٲ�6ц�辅����<Kۥ�ݶ����t��u�s��Ƹ���s����������=<� >�Q�6�����x�8�r�35��]4Z�F�� f7i� �T��ן�1�q�����H��+���)_p!�g���D���9�� $�Ar9�y�cw2\|��ٻ6�‚�!]�lmMG�X����-���WŇ�f9�+���g��mV���w����|�o��y�۳��]�����.� \�ݡ=�����hZء��q� ��rv<\��z���`��'��[�+��Z�ɳ41�:K5 A���A �ʒk�h�k���
�ێ��)��X9�]1ظJ�g7.��%<3�: ,w�!�|�.�-���ܣ��P�520S��PuP�����pV0�h) ��r(5��nTg�0�3�j�F�Y�c�K}|X0�A��)&a�m6�l�5��N��C��|m>M�B��trC��:=N�l�c���5&I��폈�B���W�z[z)�,��"hɛ'��C� ��V�e ׁ��� Y*��L���w
2J�\.�o��a�L���
!�����$>���p��NJ���%�i ��*ZG��|V��S��c�( *������-C,DxdrjG�i6�P�}A��ZN�]�t���c�;��ODd�_�ú�곓�=ú�곓�=ú�qY��<P9#(@d��� Y�@@c�K���?%�FOp��CQ�8F�0�!
aB�!aB��0� a@d���F�J���~�ۂV\2���c��
Ռ� 4��+]����H�$`:���Ѕ�+v2<� ��n� X &TH�-�qJ¨��U%H����)��,A-N� ^�E�� �t��qD�o�J�j�!5;�x�Z�
۸�i����uŧ�F0���c�K�W$�����x�\��i��ʺ`e��6x���4�D��&9&�!��:'##{t�)��o0�L�ܐ�p)1��9�ռ��!�ڙ'u��:sPՒ���^i���3B�-��p�4��v���੘�c���� U�3����(�'q h�����G�4h�b����_�-{t�*��{3~�০wti�·\y$�b`�E����� �D�[��rdy��ڽ�z]=����x�'������?E(��i"e�f*�/���2C��U��sL���.�L�F2?��\*�I�ut��+�dk��`�p�Tj�|�܌�9n���C�N<��gq7�p���}�J�76V���rWU�;�x{Aر�0�n��+d|��۹�q;�UU5��&��5���hQ����pXq��ME�.�"J���2���di��se(�m-5���6y0�Ӄ�k�E�M�!��=6��O�����U����x)8���N�C�T�.�� ���_](�@4���d�2U��vZKUm Մ� ���D�n��Xn54̋�`w�h�?T�/�k t��p �%H�Ef�]�jJە#**�C�u� �t&If�BN�:=�hϑY����*�9�w+�:�[�:F$���<�_`׺�ol������C$1r��B�Vmm��Ox����7��n�V[���SK3����x=���FN�x���]�^�U;�����B��E��y�qFq�C�[���W~�m�{���i�eU<����·��mm4W*7�TQ6��L9�ͣO�
sa�j�z��d�¦(�L���YM��4w{f���D=$dΪ~���p�"��a<��?��c���k��>��� ���H����+�B��(�V;v�M��lo;M-����gJٻƏ��O�]YO�V���)>�R])[M������ֻx���6/c�#��\��^桀��L�$�ص��y��Xs�O�Y���WY��kWJ��X���-0��u{;m������L��pZ[�YR�n�Tt>�l��u�^�0���c�S��j�Sxl�&f�^�F�������#,����хn�f ����Ι�]��IQ���9[;>�Woh��7x���\�����5*n{���WLr҇%��쇔�V��^�͹�t���nc2g�VsYr7 x�V�7߅J����J[��������]�3�C��^ZӍ�D5�w���u{�+{�m:(����/m�˚����4�Z�~��gd{gQeᤏ�񺴌o��[yx8��S��eβ~j�9O��Ǵ ɇ�� �H~��^�u�*�2*��� #W$z{~��.+�y���enu�ս���Y�Y�6j�Uʳ̕��K���qH��8����Z�暡�'���ht��u){��).�K#�:��Hä��C�p� g����D�2T�TGz�p)�K'R�;�7�O-�+���TܓI�N\�?4���hA�Q̵�z��~ps�ת5곂�5�z���z�$,�H!( ���c���O� ��� �8��8��� ��!!@B�y g(9��@(e��B�n �&ʲ!�a� a�j��}��NRۢi��tIj#�ޅ�Ž������" ��s �'�p�`ʱ.�@΁e�:*�)�=N�; �iq�8*�Z�3�[l�qQ��-��5L �����Y�Hk�=���hV�V �=�9w6�2nZ O%�Q�`K�G SN��o:����4�v�7 �+D�#���8w�ㅖx�Z~*�n3���pM���,#�[�� 艆�[(�(Xw�#�x$O�hx����1��@ ,��� ه>8�ԥ�s�bN!",>7�x�!7��E��dkd���9�6��8~�����1�dux��\�\ik#���s��x�&�������������[������p��uZ�l�Z�:3���"?�'�e��
�7�U-���TIXN���U��^\1�MX7�@��.s}��q���������v����w�i��I�.�Pd>Gt9���N�^�vb�(1AV&v ��
�R�
��=��$daYo�����Ý7 n�Z�� ��_�q��)'���=���ٵ4u�=���X <
����.��^.�.$����U%tu���t�Ы� �z�Uw��w�h�Y��H]]Me�ok*"�2�Y`�T�؃�8�۹]��c��*h���=��aw#8+~:z��疸t�%�=-��8��8 |��O���D?g�
�+�.���߿S� ru�V��Z�w .,��ި�.? �{4��;4cx7Ҟ8�H�.��<s��Uf�DG�cv�h٪qo�l�y���P:���Ks�l1�SD�`�t��*/D᱀��猒�j��L�tmt������}ĸ4X��h!�e�$��J���j���7n�U#P��+������ύ^>k7�i%ܱ��$���4�py�|�O5Um[�I�88�+�u2aR٢H��Pp9p'��0������uT#kۻ�9Ϛ�j��X>j�.6ݰ���K��7eY(�@��kt��wp&F
�M�;�4�%҇p��)��p��: C.;9�0���  ��l�z�� YO)�i��;9�)����2G�h⥭;[[K#[� ��Ю�_r�4B�ݫ��z5C gk��� �?u��-颃�w���e�M����8��� !�8�uE�0|�8��w�$�Y�����*4�����g�[T��5�����Y2�\jn. ,aü�R\�L�q
�˙$A)�Vꪆ����aM��je�c�I�����ꫬ~xg �6I��B(� �#2�4}��7�q�8a��Ԫ�sOU('��7���!K����T�K�4�u�):gU�M+�K&�<��M��k��sqZ��]&��s��CdQ`uk��@9<���4�B����K ��MP�H<���rT+�Zx(�E����p����� �UkI��xy�*\��7�1�h��F�s��5�eکjZ�q�*�tiw�q[�/V�s]q�`XZ��AN�洢��q�u�k�\�6 ��קU�%A���;�8p<��!i�Z����3�����#��`� ��34�����W�+$�.�8H�k^(��Epaf7&Y4(����{��cx< �%N����(������g����5��FF4<M<��&&��7��"��{A�s�ÁP��#�a<�x-J��ޅ����A,tF�5F���|�gN�Ӣƨ�G>�Ӣ4蓪Ωρft胎���Ϊy�,����Y<Ts�Q�V��VP4X )π6�� O���(r�Tp �XB�| 3�ea ρfr��!9�,�Q��'>��2�����9I���9�,P)Iꖡ��X��a8R_�8']��&�5J��n|i�:ҵ�|��>j��b3�ہ�F3����d��!�O`-X���9�氒���'9:&ü�ڳdP�JP:�ڜj����' ���jbC��;���*�H憡`H��4��!W�#��1��G*>�Z�@�pʥD��XϒQH�w& H22����e�T����d��Pˆ���qOH5M8j�H�10�,D|O��p��e����:aÈU2�Zy%���z��dGqM� ��|�Љ\c����,�7f�����y�E����>�g�PER ��P�=���-+������c���G��؟r���Sx�J�f{ce�Nw��Ef��L�T�8�H�}�!�SטGw7���s ��-��V�F��o�(@��j�KY ���?�Zqie5�G���ͫ@EC5��G(��������~ ���y�4ٞ<�k��' �:^�{��;�څ 5�J���@�RԮ����$�c�9�V�ji��yew���3���;��KUT� ����Bƌoc�[1R�+C��<j�-��Q_�Da��~�F`n To'�S[�v�P�l���
��U��Q��{�%T�_����;�R�F�������|����,<I~2���}�K;쑭�v�t�������J���&�$�i�٫SGyr�jq>6|��u{Yh�pcf�:�m�?5 u�I�����݃�W��U�ę1��_���+=���\j������8��K�e��D{�<{�@+�����İN��;��<��eξ��W[<�� �*�x�ՑS�zRl�l�s�X7LM�i6��➥���^Wt��/��p�ޞ�g�����!Fw�:uϴ[[$-��zWG� �.?$� �ٹ�[w��F�4�+s�AˊΏ��хOw����F�-��Po���4� ~��|��Wg���g��Jq�g~��m�0T�$�98iS7��*rf�F��N�U���ڊ��+���>�me���Ai3�4o� ~�z�pPQ۫]y ��7s��~
�k�B�.�͢���\�%��yvq���.q��� �ia�g1�̅�\q�U%� ��\�5k U!�T���-:���Qqg|�ִ��X���k�i$���!'��V��������1��K&%��0`5r� T�:!�r_$Zk������v2:\�:���#��:մQ1�*֖��%=�6z�fo�� ��Vk�J5����#θq��&�����w���rOh.-��4���MZS,6$��9��`�o�k�9�9ʍ����Ӈ���֬��I�s��pSLI.���M��-T��̕^��V���䷩����&U��� �!�|�c�e� ����G�y*��|�x�I[tL!�Gk�S��{�-:��w1w��5q�;�T=�Uc8bP&,0���������k�3��Z��'�K�oM2�+n-����I��E/%_rf��OH\؛�/^I�U��SYK�݉���F�dtŵ��]� �O�LM=8�C L n�ԪO�Vt�[ eg@q��j�W�S���F�q%�aw��U3A\�T8���4[��#��[�לopU�*X&;�:��<����h��8��Z�<cu�=E {�3�5�N����vjWO8ync~����Ė��U����p�V� '��q�.��3�i��b�YueTbHH�g�4�]@#�X�`*�l���1��y-�p~����p�pT'䚳v�����+�����7瘥;���kn���l�3tk�M��a������;��{�����H�������E�ܦ�Qꋧ�M�����|M�O����#�����K[�Or��G�.��7ҝ>!�6}>��?�O����-oT]=�o���{��Jt��������=>��?�Zި�{��J=Qt�)������k�5Ҳk���J��E�ܦ�Qꋧ�M��O�|M�_M��Jϧ�}��+[�Or��G�.��7ң��>&ϧ�}��(��n��V��.��7ҏT]=�o�:|C�l�}1n7���zu8���3ꋧ�M���Or��R�cC�=���_����~��S��{��J=Qt�)���q����S�ҏN����1ꋧ�M���Or��Q���N�����O��Jc�Or��G�.��7ҝ>!���~��Q���_��=Qt�)��z���S})���N�����O��Jc�Or��G�.��7ҝ>!���~��Q���_��=Qt�)��z���S})���N����`�S�ҙ�E�ܦ�Qꋧ�M��O�|G�u?W�)^���_��oT]=�o���{��Jt�����7W�]Nx}+_�Or��G�.��7ҝ>!�5�g��Hmd��I�T]=�o���{��J���-�����r�\��iz���S}(�E�ܦ�Tt�Đm֌sҝ��D�2�>�ꋧ�M���Or��UzL/�`N2�@>ԿBs���o��U�T]=�o���{��J�E��F�6� �}��f�ݣ��|�B����S}(�E�ܦ�Tt8<�����jno�% ���/��J�ꋧ�M���Or��Q�`��ٌ��jm �s~�nö6V�$���E�E�ܦ�Qꋧ�M��K�4��ٌ�ۋ�%O��g����*a�+�z���S}(�E�ܦ�V��yd��F���׼���϶�=,3%VO���瞨�{��J=Qt�)��+�t�퍐-n�kF��|gO��O����o�*��.��7ҏT]=�o�l�?�cd A�;O�I�e�+�;Wߘ����V=Qt�)��z���S})�`���S�6��������ڛ�U�T]=�o���{��J�����_퇃��n�[���B��E�ܦ�Qꋧ�M��Z,+퍰&�����BïV�O�\aB���S}(�E�ܦ�S���`M ݹ�:7:_��߭�r��QD���S}(�E�ܦ�S���`L��A�&�| ^(�9~�B7O�.��7ҏT]=�o�:,Ѳ�/M.a|����^�D�\����;����E�ܦ�Qꋧ�M���pF���I"a��4��]S���}Ou&d� 1 ���P~��{��J=Qt�)���pydl�M�|���>N���s�J���m��|�黷�����S}(�E�ܦ�U��T J�mւ����#��~0"����B�=���X�Qt�)��z���S}+��(�Uh�Q�T���e����s�:Lo~I�j6���u%= =���z���S}(�E�ܦ�W__%؟{�R�0�|�I�}�7���g6�s�3��S��G�.��7ҏT]=�o�:���9��[�݃����սa�r�}��.�ꋧ�M���Or��Q�O�>�9��[��@�9��?�[�rY ?�WK�E�ܦ�Qꋧ�M��]!��l��x�?j�vZ�#���~��{��J=Qt�)���=�5or���T[/xk�����{� ����S}(�E�ܦ�T����N�ݳ������7��a���t�T]=�o�����J��C�(6�昖I#˽��������!�RSԈ}����>o�<�[���{��J=Qt�)��+]4CʙT��Xd.���$�]'��k ��|1��h�+g�.��7ҏT]=�o�G]2�G
�g+f�y�C���X��ߩ� ;��K����Or��G�.��7ң��=K*PګL�y�]��Y�Tdݏw�j�ꋟ�M���Or��QձԿ%5�Z�0{[֙��\%��܋���ꋧ�M���Or��N����(�l�q��g�遳W'7/� ��]�?r��G�.��7ҝ[K(��+��wQ|wӢ�]�n�����Or��G�.~�7ҝ[K)��^��Xȉ�^�M��܇'��_=Qt�)��z���S}*z�:�Uh���v�6&���G�޳[ �cg�U�x5Nz���S}(�E�ܦ�S��C�B�ES;�k@��6�@uy��T]=�o���{��Ju��HDQ��p+v
�G��|�ꋧ�M���Or��VZ�*f��v\�*���l��<4Z��{��J=Qt�)��o����"R�� D�����[����4U�T]=�o���{��J~G'�oD��� �z7JA����=�o�!�V��T]=�o���{��J��d��w���������kS�n���ѸჃ��R���{��J=Qt�)�����'�Efj����8���ˌo>�OI��Or��G�.��7ҟ��O���������!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ��0:`tB����!�F@� ����
GIF89a����������������������������������������!�,'0�I��7i-zg X��`�G�",K��"�K]x��|����;
�PNG

IHDRo3��� pHYs  ��
OiCCPPhotoshop ICC profilexڝSgTS�=���BK���KoR RB���&*! J�!��Q�EEȠ�����Q, �
��!���������{�kּ������>���� �H3Q5� �B�������.@�
$p�d!s�#�~<<+"��x� �M��0���B�\���t�8K�@z�B�@F���&S�`�cb�P-`'�����{[�!�� e�Dh;��V�EX0fK�9�-0IWfH���� � 0Q��){`�##x��F�W<�+��*x��<�$9E�[-qWW.(�I+6aa�@.�y�2�4���������x����6��_-��"bb���ϫp@�t~��,/��;�m��%�h^ �u��f�@����W�p�~<<E���������J�B[a�W}�g�_�W�l�~<�����$�2]�G�����L�ϒ �b��G� ���"�Ib�X*�Qq�D���2�"�B�)�%��d��,�>�5�j>{�-�]c�K'Xt����o��(�h���w��?�G�%�fI�q^D$.Tʳ?�D��*�A��,���� �`6�B$��BB
d�r`)��B(�Ͱ*`/�@4�Qh��p.�U�=p�a��(�� A�a!ڈb�X#����!�H�$ ɈQ"K�5H1R�T UH�=r9�\F��;�2��G1���Q=� �C��7�F� �dt1�����r�=�6��Ыhڏ>C�0��3�l0.��B�8, �c˱"� ���V����cϱw�E� 6wB aAHXLXN�H� $4� 7 �Q�'"��K�&���b21�XH,#��/{�C�7$�C2'��I��T��F�nR#�,��4H#���dk�9�, +ȅ����3��!�[
�b@q��S�(R�jJ��4�e�2AU��Rݨ�T5�ZB���R�Q��4u�9̓IK�����hh�i��t�ݕN��W���G���w ��Ljg(�gw��L�Ӌ�T071���oUX*�*|��
�J�&�*/T����ު U�U�T��^S}�FU3S� Ԗ�U��P�SSg�;���g�oT?�~Y�Y�L�OC�Q��_�� c�x,!k ��u�5�&���|v*�����=���9C3J3W�R�f?�q�tN �(���~���)�)�4L�1e\k����X�H�Q�G�6�?��E�Y�A�J'\'Gg����S�Sݧ
�M=:��.�k���Dw�n��^��Lo��y���}/�T�m��G X� $� �<�5qo</���QC]�@C�a�a�ᄑ��<��F�F�i�\�$�m�mƣ&&!&KM�M�RM��)�;L;L���͢�֙5�=1�2��כ߷`ZxZ,����eI��Z�Yn�Z9Y�XUZ]�F���%ֻ�����N�N���gð�ɶ�����ۮ�m�}agbg�Ů��}�}��= ���Z~s�r:V:ޚΜ�?}����/gX���3��)�i�S��Ggg�s�󈋉K��.�>.���Ƚ�Jt�q]�z��������ۯ�6�i�ܟ�4�)�Y3s���C�Q��? ��0k߬~OCO�g��#/c/�W�װ��w��a�>�>r��>�<7�2�Y_�7��ȷ�O�o�_��C#�d�z����%g��A�[��z|!��?:�e����A���AA�������!h�쐭!��Α�i�P~���a�a��~ '���W�?�p�X�1�5w��Cs�D�D�Dޛg1O9�-J5*>�.j<�7�4�?�.fY��X�XIlK9.*�6nl������� �{�/�]py�����.,:�@L�N8��A*��%�w%�
y��g"/�6ш�C\*N�H*Mz�쑼5y$�3�,幄'���L Lݛ:��v m2=:�1����qB�!M��g�g�fvˬe����n��/��k���Y-
�B��TZ(�*�geWf�͉�9���+��̳�ې7�����ᒶ��KW-X潬j9�<qy�
�+�V�<���*m�O��W��~�&zMk�^�ʂ��k� U
�}����]OX/Yߵa�>������(�x��oʿ�ܔ���Ĺd�f�f���-�[����n �ڴ �V����E�/��(ۻ��C���<��e����;?T�T�T�T6��ݵa��n��{��4���[���>ɾ�UUM�f�e�I��?������m]�Nmq����#�׹���=TR��+�G�����w- 6 U����#pDy��� �� :�v�{���vg/jB��F�S��[b[�O�>����z�G��4<YyJ�T�i��ӓg�ό���}~.��`ۢ�{�c��jo�t��E���;�;�\�t���W�W��:_m�t�<���Oǻ�����\k��z��{f���7����y���՞9=ݽ�zo������~r'��˻�w'O�_�@�A�C݇�?[�����j�w����G��������C���ˆ ��8>99�?r���C�d�&����ˮ/~�����јѡ�򗓿m|������������x31^�V���w�w��O�| (�h��SЧ�������c3-�gAMA��|�Q� cHRMz%������u0�`:�o�_�F�IDATx��ZmpSי>�J��%K������C�Sp�v�ːRJfgm�);M\O�l���@�Ͱd�L&�;��t'P����;�T?�lr�Ա����l�dY��t�=gsQ�J���{���s��}�� )�`VfH�,�h΢������}�=8��u������ ��#��zB�X��%�-Z�^�x�����ο�;���Ҟ��ϯ(ݐ��;���at�Y�:�L?(�iz[&��BbP{}���ati�G:w����={�e?x�k�JN�~t�{�T ���{g_�q�kU����[l��� XW��٢է{?:xy�j������[��=*��ӽ��展{�eZ����A��BR0$�s ڳ��&N=�Ig�1�;xy�E��<i���?[�z]�&����s�OuѶ�Ë�8��I:��kE�Kǻ��9��.��.�Z����^��H���7?� D{�iɿ�U�(�P����7Z91�zB�����= �9˕L��x�D(��u��&N5���Z�Q��t�]p���{����2�������8������n@�E���[ ���Y�3|IRbk���b�S�L#�D�3�:ҹ�c-K���
٨��Z� T�����T���􎯡̱h���&������o��c+g������<��@�;,�=�ZX ���+J_�tZwd��V����س,��.�h�ǖ-9�� D{�;���bV2�B�cѤ*�&N�7���͚� nz�e�K[��ޏ:}U��'���Х��X˘q D{����Tُ+_�}��=���#��:}�<���].���H�mQ�w�!+a� ��!��0儦g:�*gMH ���֍�����3�\�'�%z�e�>��4$���,��+U��'���}�Y4g�.�\0��� �B�i/�!���7����g�7߉�ǚ�E��g
���n�ux����{!��3��z[���(oƻ��Z\�_8�O)���$�XN��h��m��sp�"a�WQ]v����:\�3��0w
��~(���@�ã��O�k�^`� �sr0B��=V1� l��H)��܊s(@Q!d��Fs~!�;�XM�,�����$��Ʋ�Y�2м� !�J %*�Pr M!C� D!��>h��T�ʳr'.I'?��X�y��PB�J1坦"�՝+X�:@q$>4
��$G�Es�r��m�?Zh���X��a�� ��t ��9vs&�*U�2�]\�|�������Xb0!��1�5�XL F�}#�Q)����™�f�f���%�5K��S��}]��c�fj��nȭ��C�6��h22��*\��}~����N�_��i+)�Z�F�D ��j�AU�y�`v� _^ �c�`0�����?;�����}O��YIS]ˋ��1q�����]��s���@��q窇�Y �'kB(Q���˟��c��)����a� O�-X0�Ҭ7$�d
s��1� ����Cqu`B�n��h6յ,-��r`c��M+�{l[L���Y���iR��IQ�]���)&
�� V��%�c#�����R� ��C����0�+ ��ށX2 ���|����51)��&���_�@��_>���4u銉*�)0�9������9@�a�Rzu��-�x1B��R(!�Ki^��!�!��RO��t��9�W���e1%4Wg�7� �����`,��
���J�Ey�]��RB�BTw^Nh*��aH)�4 ݌��nGqS]�4>�ae��Ql1�vzc{�>�bR��}�z�wMEQ��Q�ھ�Y�vۖY�����6յTx�����8�T��v��m;��"�Y[]���
�[��LJ��)8M7)��zF2Q�pR2uu�O(�qQBI ��Ns��(B�˪�a�b�ͱ��C�����RF�;���كMu- +�V6���4v3p+<��O������u-[l�I�Z��Ŏï�|�+����,-�i�`�����6���xY9ە��m�vۏ�^jr�7���q;�5O�jn9������5o��7��������$��Ѹj@Tj�qȔ&0�􆺟)z�&���;�$�(!*��a�x�1�a�YP���"D���9��S���Ɣ�ֻ��ڰ���Ρ������悏�d�w~��l���s�u���z���_>�V�v3mm��E�H��U�+o=�{�� �>�/�6&EXW/ے
�����B��)c����كl�m.�J���ۇq
<��bD��^�v�DyD��@� �T0�f���<�9�/�u"�ͤ'*��<{6Lg���v�����x���4�l�����c
��X��Q\�����hzm�b��1�@�/&E,B��Q��h�����,�9�`A�1]��\4�����)Q�m�¨L�q1��������'?Bp5V)Y����H�a���_���n]��cۚ?X�4��t����L����̌�wܱU2)��Q��������9�¹�nuE"ҕ/q�@�h,�y5x��g_�^?�ŕK_�
��B�Z�����}Yƒ�J��F�AXs���].t� 3bJ˰D�����a�!fPSrcj��>�p��a���F]���K+�D�DU�'oG�0;4�7�c�jRIGj���]�������o9��+�o�k9�s����=8���DK�� !D0&�*Q!�RQR�J�3���tI�K݁���鿱����%�R)�2Q Q��"��g��; �e�qpmu}������gǡ7��[6�ό���[[]�qB�F�b -� !'d'�zK,5F(D���ylr�
Jr������smA���.�q\$&�D�ʊOŇ�I�ķ���1}�ˇ4L�V��y��@�oˁ����ֿ��YR^Ӹs��� ljjά��Q��5 UiSr;�/dam2mET��% ���8Q��[d�8A&r ��ΝoC������g�(q�{K�W�o��O/��! +$!'�#a1�9�9�0�h<�1�u�T��Zt�-���攵�+�gn�E��VL�75��bu-��b��x���"�|�+Ͷ4�\���w�V�O�M���<B�*9������bRM�!2W����x��ų�fϣ��ʊ,�u+�<�7�v��9��DG�Q��ә8^�1���O;�f��v�y8Dv��q��tk���Co:!�ʽ?����*T��� �s��I�9�b��@�sf@��H�V���
��02� �/��C:#�7q:caB}':�;�,e{�
��Go/�p������e�o�������h�B�r���H�sSJX2IfC����:�`�Cx M���±����P�0o@�!���#(K�k��� �n��� @�#Jho��1�5�Λ��6��T�� ��
�B����W�ҍ�a���<Np !w�-~Ԅ%b,BNpk���l\����=�R��E��7���!��0טt��ޠ�)u4.��`hT� �&�7 ^�9=��T̙As*����ֿ��q��c��k�kj�"������f4�k �`2(�"DU(Q U1@q�t�0��Df�\ޗJ�!i~�!�>��q,��Y(]
�:�W���,�BU��_�Π@ C�!č�"|K+Ӡ��� ����r�g^��ߧ�I�ӿ�>}��뛘�.�}�#(��R4�����_K�r��!��q���T�0��͛r ��!D �+%@B��-~l%���t]��u������bj�=IEND�B`�
����JFIFHH��zPhotoshop 3.08BIM�
ResolutionHH8BIM FX Global Lighting Anglex8BIMFX Global Altitude8BIM� Print Flags 8BIM
Copyright Flag8BIM'Japanese Print Flags
8BIM�Color Halftone SettingsH/fflff/ff���2Z5-8BIM�Color Transfer Settingsp��������������������������������������������������������������������������������������������8BIM Layer State8BIM Layer Groups8BIMGuides@@8BIM URL overrides8BIMSliceswI bannerlogo2 I8BIMICC Untagged Flag8BIMLayer ID Generator Base8BIM New Windows Thumbnail�pP����JFIFHH��Adobed����   
        ��p"����?

 3!1AQa"q�2���B#$R�b34r��C%�S���cs5���&D�TdE£t6�U�e���u��F'���������������Vfv��������7GWgw��������5!1AQaq"2����B#�R��3$b�r��CScs4�%���&5��D�T�dEU6te����u��F���������������Vfv��������'7GWgw������� ?&-�W{i{��\��a:�w�,���+�K-;ö�s�2nݶ>���-�d�1�N�X��.c�n����������깕��WMyN���u����Hu��5�5��s�o�nm��ݲ��O��ˌqP���U굷M���·��5�>��:w5����9��~���K9�mU/w���X]"%ͩ���Yc�V&[\ہ��V�͠�75�ȭ�{��ֿ����?�U�̤�ֹ�_`��y���a�۪��O�Ⲫ����c��z��Q��e�sAp �A���9�Oo�ܺ���{ZK`�8F��wU��^��eB���l��6������9�m�n�}63�~��'�*ž��Ղ�
�7\`2�1*���\���?�,M�qi/p��*�k^C۴�!��?�hQ���5ŮifD9���[�Q���ou��d�\Y%��;�{�m��K���+���e��6�vU��0�ݮ����������fvE��?J����ש��#�������4�c�v�O��ޞ��~���7{����S�0�07��j�C]N���s����o��}�����K�M��h�N��+��',bV��ߤ�P�#�nn���P�#�%���p�i<:a]َ�`��j^�yJJH��8BIM!Version compatibility infoUAdobe PhotoshopAdobe Photoshop 6.08BIM JPEG Quality��Adobed@�����I ��B���
 
!1AQ" aq�2��B#�r�3s�$4��RCt�5u6
�%�b��v�E�&7!1AQ"aq�2�����B#3�Rbr�4s�5�c�$�7�� ?l��BiR?c� jx{ƞϧ_���'%�U�&'�ԔQm�֞���ഞ��`�Z
fD� )L�V�o�a�S+ �#5r��t2�g>3�:�Z��L��
�p᮲�5S\��?��]qS����mL�Wt#m��g��ۆtШ=��ZPAU@����j���ib��|L�� �J����.�[�����Q%���\�MSdž�Y� z i8=*�5�%��%��",�� ֛�e��eH ��QN��V���I��$.;��J�d�s���q��9���✶��_%?o��(H�8괫���^ �X0�e��m��{FF<�k��u�M�j�q�
�Ĕ�U}kCM+v��F1͖�X�3=�������a�i��֥2n,0dBH��C� �=k��FU�A�I�ɓE�ꫥ��6DF���)��R���u��S!�� `���6�G\8��\a�#ř���!�[j�o��El6�)S�9� ����C�j��׷�Arpm!=@�:;l�"d8w��H.��IK�UKZR�(N|u��2󥐡�u�:�S1��� Lk�*�“�B���%e$s#���fF��&*c ���HBi��MR2� O�)mJb}�MDx-j P/�ht�A�n�Q� joO��*ۘ�(Yi��A)��%�]B�k���|I �s#K�W��y�)Tɤ̝� #�g��}��9���aJ� =$��:n�� 60�Y�6Z�� �[�hzI�F�iN ���El��E��'��SW$�4-$��~�����Ϩt���G�� ����2���Y'���[g�Q퟽�T�)_{W��#��NX`E�����Y�[d%������R;���{5�,Ld��%e ��/�#�����f�%u{���i�!���0�� �ͥ�����Aa�� �:]C�%%UiQ��6�[\����A��+/��+�� x��^!w�ʪ(=�}(}5�������ӄ�9`�$Wݵ|-(�KT@����)H �<=��o���e���*ZB���4h�RJ�QT���#�A ���Uf��nA�I�uH��@��nFM�%�V�,2���(/�� JzT�<A�5��.�nv� �` ��q\m���[H�B�R��N��US���Ñ���z�y@�����+P�
LT\@+j��I4$��8�^>�:�+���l��~f��.H Ϛ�h�J�f���ꌠ�{��� �']V��"#�� y��v9A���ɬ�ɒ��$��hp$�<8k��i���GTH*B����V2#t5AU�p'��!C��tʁ�1�N��6�¨�A��+�����Kc��f�p����%i:pM1��/JH���S��[�O�$�?v��8W٪2Q��@ (�ڄ�2�0I�S�q���É��P��Of�Y0��H�YA��R�(O���(y����$�ORRP hMF�Ʉ���)S,�1B9�K-�$"�:��� ��� %+�*����JW���y" l� 8�T�g��h�[D�sI��Xq��n9���R��QA?z��<8�s JV3|pDd�,���Dɟ�)}5�%=�?���}�@���w٪���5z�Y�qrz,`p=Q�l�&*�@��{��Җi=����!@����Y���Ge�� �� ����{
�lۚ��b>Pp���n���T)iDb55�T��.�%��j_���:��01�p���
0y���F���.hA3,�n$� I���q+-;AN@)G^��{���g���|��؜�yT� � ���k�N�a�����9��T8�9��5�]}�F~ �v%�;KXJ�NC���9������4`�
ּ҃��A��a Ĭ@Q�9�PT�J�D������^h������D?��%�H ��>ڟ]T���DËq ��t�I<+B)�r�`\t)��*,�K�_l#��֪(i� Ԁb��e Ae���;��i)��БǏ�0e�Ƽ]�b�0�(���G��PH��j� �"�G0vS-�G}�9��^�{]��0�Z���6��"�Y�SB�P�?6��d�I6ʘ�+d,8BH�G��M �a�8"�q�KL��=�u� K �I�E_��_C�|�6l�`�۲��(:�I�HO��M"�~�>r$�Q�0�-!\9����uv��$0Z�h���S�uЧ�I��y��VN�c@mm^~�T�P��k��A5��,5��"]���SOMk���c�\�_>&��d�H�p%�T��@Tz�K�2��+����\��5tZ��X�U��P���������i_��h�D:=#�$sP�̎j4#�J��~h�\|<����B��PEB�T�f�O��H�0�G��^�m��C�4�}��]i,8�!AE ��:��Mt�}��G2� Ӡ@r����D��q1S!W�Ldq}V��7vJD��u�r'��ջ@0�R�Җ�2��|{�쨡J^=�5ٓ�*qMF���@���uXͰ��Vi1�w�.�g �,���6�9��(HL�y
� ����(�ET
~������ đ�b�4�-��6�4�L[U��; yO �-��҃Tw����$P��1�W)Dđ��� ������yQ���s��JM[(i�q��R�� �NA q����7W܁�>�4�Z��X�2�ݾ{Y-���(�\X�� U��T���M5N��Q*��)�x椬�E��z��Ӱ~n�3�I�x*}j#�)5�k@j*@::#b��M|ܼ 6�U��EǺ~d�6��fz\�hH~1��lCuIG�Cm�G�F�q����Nm�`Kb�=�}ɵ�R�H���Ŕ��b��n����ω�΍r���[`���֥%*�=U$sZ[�ۍ�����2c�2 j�
z�"B.1�-l$"tg ����5)! �Ī���l6�FQE��T�7��"^�Z'+��q,�F�� ��9�'��C]aT~�l���&cdpp�|L���V�SqL�}S/֦�
!hP��\8k%�P�Ҫ�TH�Nd72U�S�}�$��N� jA=(_�\��:mm,��x6�m��s��r[�Z\,*��},��*���ѧ��&ަ$`J���7>�R{h�Ю�T�-�:jء�G4�#K",�}�[����-���M�ܨ��&���(4��8��r�Ih�9p�2!�>�Im��R�IPu�Д�UN�� 㭭3��tA�ٸ|��) ;1��A@�O:YYk�JMH�a1$�"��݅��&sm� 6��ZH h�t�5mTPP�!�hh8!��F]��/�%rR�����J���Q�R���|����ۻ�1ő�V�ƹ�<�;��Aa<
��Gѯ8�6j �j5��>��:�-%���'�� ����xj��ڥΜ�{޻ �ݴݘu��ajao�ݶ�x�=���Μ����J��.H�9� Z�=g�R�Wm�z��éH �d��S����LJ1b�Y�'Y����!%-�=�VVSD+�=�B ~�sw ��E�� ��S.A�hC����_m=.�!]#�hR�t[����$��L������T�S���u *!����~�u;r�[�G��\]ui��(���TاmJ�H�o�T=���\���)>(�\Tn�i�����b��=�x!C�+����W:zi��Ͳ�f�G�����n��c_�B��m�]␅ 3Bj}�Z�Eq���J\�g��saT�mW!�HZԎ�8��ĥt!���(��]P�H���%�+K�+���?�y�]���t�%4X)�QJ)&� ����P��"`���m�1��Q�jT��Ao��%�6��GZ�)B4ݭь�,\�� �]GW�?��d����I 0���'� �-��5�5������,���@�Ka�tp�� ����\�p��)���BJ*)Z�s�-1�4|����FO#�Oq�(Oc7IB�Dfz;`��}!$8;aJ-!e4�̟�Uj�p�{��򯉔}��|?�>��o�-1�8�8q��r�g߃p�I-��
mo+�'�l�Ѣ�Cd�j���wփiib=���V�D�����Wc�Y����hU�@�'��J��z��Ӊ�S�����7�>Gk3 �f% �8H��'BP��^ ��
;r�ʷΕ�~�#�ef�
�'�ď�\M������o�}��� #��J@~��d?�`�}���?�ݷ9�Y��Z���PPB�)�_ t�)Q��u'b9u���$P���֚�e���.���뀅���ҧ���"�I#�nim�q+���Mx'�$�zL�8�O�H`����Rh��8,S�?��Kn��.2N�Ԕ��G$�N?�� R ��o����
�9�g�5ԜP��k���J 5#�9�\�5n���Fډ|0P�m�ZY=�b��>����t*���ތ��Ox���:�z�V�*��a'�\�Gh����_N���`a�(F)gs�PzR�����sX`+��W��4!@�����A'�#�s�w_g���I<:S”�I<:jt�K�qO:H� ��*�t��>��t�` ��'V�#LU@W��>�=8�#����m=nN bm�
��� {�=^� (�T�1N\ y8�z�o� �����c(3��&#�d܀���RiZBx�f�(Db �V3�$҅6���iÉ4?�iMsN&X�`6� *���mG�'X�!�]�ÊE4��ҥ0 ��B�ƕ��H��[v�~�F��
��be�P�x�Ԧ�T�{}���_�3�.C)?D��ք��
(�Ƣ�����AlSD\b��-Y�CK 9��Q4IK�
Bz�� }U�ӏ�Әw`�6�rW2K��b7بR��ċD�!ą�+�w�aR�U3/��$�:I4���#�_)�?@���t3�a,��Y�U}�c\�����A+�̢�H����NQ:�M��w�Z1�� ��T�c�|4�����fZ�YJ�r,�$%@��Dh ��f+NC Gz��Wg\�J�oY��B� EV��3�8KK���H�9p��;���A �
=b}�R�{�K�l��E���۸cn���QSw J���i^#CScI( ��(Ȟ͗s񼀨* ��CHC H��L�P�"��ڔ�g�4Ҫ�9e`~�d�(�dT�5�����'y�X�mW���]�L����:�k�ve����&.���`Yؗ$�<'�HuJR��ܧ��w�/ �o��1�$s�c�b>iF�j�Q�2Ӏ$���;z����� !V�<��r���s�Ä-N&R�b%""mfW��~mӒ�y�kfF�Xݙ���+�����zb[����{���^J��^�G��
��'_=l>��B��
�#��S$���6Ӷ�g`�1*�.�-�;���(�w�Y��k l#'P������q�|� �t�2v����;6X��
��[���X�/8R���"-�KR\����S� �_��+����xku�{x�Q�r찎��e=.D_H$^U��ݺ��$�N��tWB� �sS
IC��p-���K�R��t({��_ͭV��_� ��e��%ķ[N)��=&�lRzց"+��z�_~8$}�mw3�#E�$���E �=
��K�F� �$&����ҟ|�{� ׫�U��e@������Q}Q�}��;m}f��=T����\�-Y���U��,Uɛ{2a�4�@RĊw��{I S<ERUZ��k[ NN�a�.���ڔ��i�{wG&�����#�YT�NK#��g�D��0֤:� U�(����"�+�M5n�A,�8�wB�[P~b���Dr> �* �����H
�:�F�Q)��
�f�Gқh�)��>�e(zV�+.􄞂���W���d����d�W��7#��H�GK�aγԥ����s�]�lԾ!O1pc�-C���X�t���!]EA�+�5A���H� ��f�uh-�{=�����\���W(Sμד�i�,�#�pb )�e�4�]βPOPJR���_�Z��!����J���Wkl�*eJi�]Q�PPu-���jU@�CC�[���;}�6�D@G��HjY�\i�8Êe��Ԗ�����
9��W�Z�=��P�@�8��H$
f )yn�%ޞ�S�) ���‚���0ӹ Ү���V�=�j[O)����#���u�.�����N���`Rc�(
�4����x�l�]^�[Enנ����QJk��im�bN ����Y�!IR1��R��Yt�O�SÍ5~Zb>wX3> yl�Tz]2z��;��Ҝ5O2��_on�fn~S�ьٔ6[v�]lǐ"��= �-U+��Z V��uV�3 ƧQ ��lYZ�n��&���tv �+R�S@�x5�- N>R�`f-FJ(��:�.�J�(R=�ԒA�5�)��5tJ��E�%�ǘ�i��u����!�tv��jWSNz��u� �V@G�����,��c�_�6�s�D�O��g�ED!�_t�}�����L���_f$i B֟Ĉj@v"���QB҅�
Q��ޯ�t��bHi+R�.�J�1p�)L��nm%3�{�*�G��VA-�N�Th��Tn�_ƪbQ>���Y����clp[�`���Z�-k;��gZ.E���E]
���f��{�@������B�N"�em��m�m֩縧㭸���z��u�P��5Ȏ<5���^N5G�L��9�(��Gj�א��S1�b�BRgD=J�
q�+Zr�u���g��r��?��]��1�9x�?;���p4����aQ�����_F��s�� 3[�Y'��I��p�����r�5ı�.�\z�OJrx�^:�=
�ĥʓRH���ۡ�!Lp*QGpP���i6
�.=�Sn�ܭx�S��b�'!*J�}* ��>
RY�{��"�zxs?N���FJ_J�BEj�PP�Ӂc�L��*#.�J��@�?^@n��pbP��/����^'�x��O���R`;�6�������ȐҊ�`D��!�B����,풳9�B]�* O��@+_�i.���%( �q�祙#%n��yp��QRb
�� R�
���S�}U�f
��ru��(*OIH����!_H� Xr1�����WJ�kìS��xrԙ�إF5���"�
t�Nt��.�Q���!m�ء��R����o�T��+Eh<t:�u�$n#���}����R�b�u���� f*��am�_� �Lj�CQ���啘ɺ�FcJ=`e�Oٍ��~�E���gi/1l�;����3<�<�| �����_����W�q��^q!"@y��Y��=S���Ϲ�ێs���L����tW؇��>E����a�5c�b ���|���&�������]}�-���y;�l��c]�::-
��ۛ���A�\�9&\����\��i��}N�����m��}���V�3��� "b��D��m�t�Hk+��F�\�8ܭ���� ��l�3��r�c�ŝ��_�6��bGb<�j�^m
rp)�
|r�s�)�����{R;9?��Q2���L�8;�8���=(�pK����/"B��mi,t8����V��bSE$�ҰEF�csFQ�F���*�@(��e�� ։,.�e �C]��JImĚ�s��W�� � �`8 ��Q�Ķ�eX�J$��\��@��-�D���&�k�$&�Qu4�:-���d:��Ĝ+�\��nq��S`�Sɐ�A����G]R
@[7 4�z P�� @'X�M���n�Y>G"�,{���\����#�ؗ5�K..���K~�|$+[~ eN���ɛb&�ͥƦ����2� �j�Uu�4�+�O'��y�M�Ǖ�N���F-��ˍ�c�3��>`bı?+��4���?���.{�wp���[�*�=�R�ѭ�L ��@w �n9=�xʸ�'l��1>���;O�a�&5�$V �g3)�5��_�����ڷ_y(.�}Ι(�"�R]A��u�����,��! ��]c��Ȱ۰xq��De�5��5���%��n����#��I�j�\)t��k�fN�z� Dym��^��
�I��HWhA��[@�UE ��V��R�M0K�J�� a���/�� �Oۤ�T9�ueM$�zV:�?>�*�]՘�Io�1*=���d� ��`^n����;�̆��A
-<�t�Zh�r��a'S1��+k����%�WfU��i�_2
�ˆ p5�)R�I窼�p�"q�/�*� ��륶��q���g�C�A��700�­��W#%=Eė�@�N��_�r|���R�l��'F�X7��l߯��Tc94�O��U������}3��7ku��ˣy;���oW��^�]��62󟏳�d,�t���"���D��-H)_Jo���G]]��e\�����`qx��گ���叹<�o������md�#<�� �]w�b���l�=��/�'�k�J�p˶yn���%Դ��# p����&����_Ow�
+���,5z ?�1�|Y���&�'� ��þ��>@��{Z�m.z�Q*}Z�y�XQ��ߋm!��8��s�@ G�Pp׋w�gϴ�M��$ʈL���b�}�1*��e 2
2ᚈV��Z��,{�p��7��*$8�Jk��� g�DfH`��櫋�Ba|A��UU>Y��%4��e\��M �ݝ:��is��]a��IOm]n���%iQR�Is�H��,�����I�%mp��$����DG����t�ֽ]jp��)�^U��:���<@%�-�Ev����H�V8&���?Msj�dΈ��K�u�?puPi�]A~�'�yi�� �j)��8b�6��fY�KÌi�qi2�ԧS�vVW� <}���<�ק����6�TK%u2amٯE��zT�>]NV�@�
ORu��b5Fq˪�қ.-�K�%!0��-ҥ<JCK����ğ]V�L bK��'�
f*z"�HT>�Ʊ٢�w;��I�}Dק�*k��e'wd��N�sn"栵AV��%��B\�+���~mlb 0,��D$�H�vJ�-,��
�J���+� {�ʊ� j�G��� N*7vE�]R�)0�-��i���wJ��)�� �!��_zfx��o�L)NE�)AЕ�\K����Il'����5X�B`vK$c�E��ڂ�*�� )‚�Ҕ��Ď�iM(F3��I ��ʅܘ��w��1;;%oqx�/���8^+�*���80H�c�@!���YVD�!�F�|��I*~��Cb���;iF&ȐX�@�H�E
�.�Km� �6�$-��mT��Iy1�*H��|5��� m��>x}��^G��܋_�/���㍿����y�{�(��/p���\��vD�1��_���nx���e.]�9Zt�4���e�����-����q=� k�� �$�!- Ao6�<B�~Onv�PW��2ؼ�^Gf�ߝTD�5o���!�9T7[*��
��^_&�*;=�!�z�l���1�1�\�� ��bp?���W y�#��������EB�N;-"�*QGO&��n"6�u@��NS���,�d�\!�l2�;�2�BI(E�74����I�@�n{K����\/=C�Q|e 3�g�l?�\��=%Y����� Gߘ�
P�)[jC�u�D�M��#����o��w���6��?g �(�� �=��0#T$��*fA
�H�?V�fT���m&��h��hI��$��}U� ��U��쭕'�������yi��I� �O:��ORJ�4>�g�Pc�ԉpKEʤu4���n�h(�Q�T���R�E~�S��(� �Ҥ���*M_Q��(��(������O/Oa��t��+Vx�R]MTRi��#�:lD���&7�W#����5j NJ����&�Tt��'��ux�U���ԓ�,�}�Й%:{Re0�g���hsBD���=�@��즄�j�N HjJ��*?��t �1��X�){�p�+��X%`@Z��{��4W�=�Mr8�\� |��Q����nS-P,(�&��?���� Df��Q�SO��� {T?�Z�>��}�5 ����Tykd�\� yh�f���ao��^JO��X@�!D�����>����R^or?l�x?�*n�������͐��7ob|�rKv�Zɖ�,q>C�O�+����d�W{TkU��sz7�C��/�O�����?�wyx��3(K�}����Al
�m'Y�TK%;��o� �]������-0�6 �/~����:[
eq�s�`:���o%!J���.O�sѾ<� �U���D� |��r�6�������Vߊ�4y5���#?��Ǟa��E�Ǽ[w1���`������D �9����p���I�������s�m�~ohk�U@���@l%�Y)��H/o-6/ ���O�ϒ����>��p,�vw�z�m�����7{>����_r�E�ZXzr��s|6 fзT�;�ghr<�����o��`H e��� ��i|v�ʼ w��w�7>S;���̲y{������7���I�[-ҳ �l����b��X�j�^^���&��yք�0ʝy�l��}:�G�;M��X e`ի��y9yO�H�m����cߘ��|���e�1���\M��ųrpLN�#�6��k���c����e�'O��źkK�[�)�a ��Q��~[�Orӳ�70��+�21c��d�h�ϗ�L���� �����/�/�����xam����s�ݯ�Ł�o� �� ȱ�[��~۷S�c��D��]p��ً$�=+u�*���D���� ��i,b��+>�#�8��@��yU3||��7Ȼm;�O(1���]�ʮ�͂Y��ܻ1�2�m� ���e�7+5��{�Z��+�&�p�m��!���O� �Ӯŕ�+8�7U��H��<[� �;  �M�"�)�[K� y���/`�ƲC�-�Ϥ��wz�z����l� ��2SͲ��CVd,��#��{m�kE�#�(�'F�bf6��~i' �O��J�դ��\9V �Ow��\+�L������6�7�o m�b� :3J���S �|NGw�n�{p!IJ�̙�W���=O�����9>߳w��\w`z�� i2�\ �Xj�����֓Y�I�iد<~V�úo���B�[�?��#�;�-�E9u��Ɏ�e�VY�h6 V�y���-���L<ڥ����f���Ӌ,�v�s;����`�pq��q&�Ԧ
�>V>�?�2 ����ْ�)�ܶ�}�+7�����x�l9�p��f=�N'��\���H+H��'�;]��ݱ��]"CL���A�;�%F�tL�p G�{��/M��{��a���y�M�Nq���1���xV��D;s�rKe����滋wi�4�C2��?r���^���0�xa��h�딾�)CY�����JA�� ��n;z���YE�,xA�>&g?4c�y<�����~'�7r�a��釴���[�r��av�S/jQa+�:औ��$���m>��N�nyZ6W�r"t 0|���Kg��������Ry��۵`���W�����;,�e`�<�����n��\�;�ۯ�(�G�t�A�-������!JJ@ ��߈��7[�vP1ۙ �F1w�'��=N+OlcU�G�r�BXmW\y��y�
AQ+A��e�Eʊ<u�ݽ��o�R X���<B����G�>]D�_������a�5�ՙM�]�+{v���I�ƒ�G�Y�>���Ԓ�JCG���_�;���9n������F.� ����P����G�A������7Woq�K��q��Y�צo�-X��ͷ��q;��=��I�irT�Jr޷��Q�w�S��v�#ڝ������T�d�ijh�t@�Lpļ|s*��j�2?7TR�yb�C�o�x�9�>�o�g���:�)�Z0�7�0���-�n�e�nF��܇r����^�Z��q�z�$8Zw��>��k��m�n�m1��aڦ<�,�y�Q_��>r]Hm���k؟)3�|��m���m��1k�o�1n�x���2�Ls��ً�-��,n���*���C�7&Z]��a؜n��(�n�I�F5�:b��#��8��i�������ݾڏ0|��~+�6=���=�ݻ��� Ə�m��oE��v�H1!�7�z9�칑��u��p�"� ���3���U���)�0� ��t�G���gh�Ci Y %�0�/�˫tw� ڛ���m��gV<Ѿ<��{��_�K{�`�g ���v�Z�0I�#k�VT�ɚ��_�vݡ���6��FdDO�&�� �A�C0��`��t�}���i���j��\��,�p.��C{ ����Z�M�Ӷ��n��=��3�� �D�Ld���b��L6�🨿I�|?r���n�8y���3ȍDE�N!�<D��pM�q]�/�W�u����;��i��?tv�h����l7�]����#�g�s�i�;S�9#��.9^%�� OF�[Y2%����>�W��o��/��nwq�S2���6��:!X�AĎ�d䭍�ZbA*����+�)�s�<ż��]���C�{o��Ic�1|���e�8�Y�"�Ų`���� �i&}mJ.4�����/������3���v��+&6��MD0���C����AS�zg�_����ۉP1��r�l\ln�ݸ[��s����[g ? wjm�K��&�a�K$�j�sIK�<Zu!��>��9�#��Cs��H4�3����D�xȗ�"�coD0�$�'�[w���6��y��-� ��W}��vL��Ė|S*�x�,�gS
f����y�\1d�ӡO4�rU���8 F�$�[+b%X�� Ğ��-�c�$����G�&Sm��vs�/p/-���\7�\�<y�i$���e�h�ٸ��'q�dSq�J]�S���#�6ҧ�!��m{��W�������o�h�Nٱ- �F 1.\��(�bv�I�~%�yĶk�=�>C]�s٭��S����m��s;��m����,Ή�^�|gʬY�R�&2%�ȗ��IZ�� �K�Sa|�̈́���a�u�!1�����t�UY�&3z,������=�mV�����ji�[Ef�&��v�aW��|��# ���&g?����o���J[��L.����O������;���� C�-9��ˀ�:rs������s@ϕ6���ב���w��y��h�f������[ז��6?f��m`9��bV�7� ����D�I�;��m��4x.���+���63�JF���@s��50��2�b���3���}�������c�6�mo��{���k�Y^���~���vYa�2�~��س�{k-�JD��Y�mL��(u�����3K���e��T8�~L_�uL��8�X����� ����Յ�[ ��Ӊ|�|�m���`�w#8� �g*�,�AƝ�n6�jǜS��iR�ޓ,��f4�E�)yv���\%��� ܦ�)��il����2�6�!\|�Ԯ�R�)�Dž��}�^ߴ����m|�c[��ze�3ị�ʯؖ���)������]�L���c���Ž�����s������J�X~��,��_��������b�y���xdz�xxӗfYG��qw�c{�"�����1*�
V�?fC���ű�ږB����[��9���o��cG7��R���LeYǨ�`C���U�l�!�ՌO܌�.l���Ux����B��ñn���)�e[��n�qv�b�V���� �r�8�bs0 �yO�~2;L��%��Q��?�ݱ�p��+o�%���W9�DI��H8ȇ ����6�W)��a?�R G�#��ǯ"��~��b���p+��i7g=�dX��흱ky�4| Ĥe�w������e" �6w����!Q��#�6�-�Zѿ�<��.���K���;�X�(�uI�����mG�e>b�x����p�<G ������\N�Uvw#C�H� ���?_؋�/�o�X׌Y���ϊ��k�2�^ļ�N���&n&L�|8���ݣk�^7�"v�
R޸ۧ�ߧe�#���|)���}���! �L��ZN��<�����S|l��: ���� j�7d��:����o�`����2�0��������r׏·��m�Œ��n�w Ď��w�����]�Q���B1��+5��6�ilz�~������i�i��\������S��Ԟ��1�Һ�> �d��{�u9��u��"��U/�i�1 ĵ����bSSX_T;���ZH ����<Tۤ��P5�o�~��ݗ�#qf��?K�3yR~ :�����b�Cu������?���A�'��M{���r� G�[�V:V��xs�8�>�Z�f� ��ǿ�'��EG!�X�yI�tv,9#�AIZh�q#���VFX�Q�� N���F��k���$��81`�zT@ J� �x�i�:�d�E�YXq� T]�q"���~�'S-��ĸC^��� Ũz^t<�����(���K�j.<�+Ğ^�O=�P����C
��O?]�C&�[��a5T�J_g u d�d�A��Z 8���T�}L0 _y4>�_��Jd����{�?�-C�b�&Z즄��D-�g){ss�Nu����`Fa26 �d�*jE8�
=A|�G?N��PJD�y�@ԥ��t�2��d�}���
B��P����ԋǓ� o��#�a��H>�x�Hז�/w0�dc,�r�r�K�;��[����w����6�m���f��6��]dY��Q�]����D�Զl��5q���eRe%�������ٛ��>ù8+-�!\����/ @F-�9%�dli����|�]yw����� ���&���#~ZS9�{k��1Vn=A�^�ֹ���.%)J��fC$t�p�n�-�nc��F`�3��}�!��$�'�~H����'�/�ڇ�7_%���rضkf-vݝ��7����E�79V�{��".�4��f<䴯i�K���7a�n�Ӻ2x��?���9v�'Le,�[��4���̓b�I�y��Y}�,��]� +�v��i�������IK��\)i Rs�l�v?#*��7���Zʿ�&�U���5��Q������y������Z�J��*�69��`2����Z�����)IJI����x��T ����?�f|*���5j>ۍ��/����C��mw��n���:��B�2�?���3�}Hzϊ��ۂB�&�"AR���f��k��Z{�%�Ooq�l�g��c�6�|�1��,I� �tH�u���Ə�l [(&����p�w��s����I�β}� ��EP�*��^9�\m��e�`B2c��]�� mj�; �R
��AT�P�yk�^�9[�x�+%���⵱�r��#��ɶ��ǹ��Ÿ��d����U�njV�4�SJP��^���s�j1�@�el7]j޼.��ȟ��q�0�tϘ.�8��T�k������A$���������ݤ�R7���Ք��^��{��g�k/��n,��pcz6�����.�C[����JR�� r5׏p\�!}�i��5�a���H�ϩ�R"��'Hw�畡��]><���q眗��ʰ�(
S�)d� Q4�Zk��Y�3^��L� ?,S7?:�|�w;�9�<>���q�x��&����Z�7 �ܿyv�/ڋ�,i�㻗%��Jr��$�V*�Ef�\0-��4…���:�O��l�k%G%
�%(�C!��|t�|z ��e��S#~`�;ۼɾ^>5��=�z��6C俒��+n!��b�, gn0%ν�6�-ݜV��.o��xH��C뚷c��l;_����[9�z�+$4� ��'�t��SQ�)&�c�����Q%�[R^=LQ����G����Q�Ӟ�P� �� �< ?��uJEwz�F�Α����V
�)t�9BJ�l�W׉���k�����պ_��q��ė��K~.f!*J��vղt�Gt���_�=��_����1[�e��*%#$�̯c<V�1���֯�3vslKpo�|��b{�
m�;�*]��qk�3.[.�����C,!����1�k�v���],ut,��cԻ�[n�OU���{����iqn,�;ʆ�BBگ���˽'���k�Z��ˬ��j2&�����Rv2&� ��K��v� �<��뽶���a���[QXN��ZV�EJ�������;�l9;�E��YQ��q��z%���ew/�����ϷSm|Y�i�]��6�-�H�+�kz���[\/��Q
�Ķ{R�y�;-;%���}���r<�!��v� $D�H�G�@�2C3����r�*3��v��3��|:�Gl��������9^�y1��Ҭ� V���{V;`��HJ~!�"ڧA�"�1�����V���]^��c#9�>�f��P��u�W�Y�j��n�;�B�;��*;N-)I'v����}����Bb4�T^`�+xZQd���+a��V�W�eV���i��[���Ŭ�<]V���ꏣ|.�$��m,���?��W;�Հa؟�x��v X����q�yQ�C��ݰE�+���F���<��K���n�L�d?��%mded�����>�m���L�e�� �r-s�] ���ӽu$��T?^����>R����\�+�Ze��/�N[����}5A*g�۵�BB�Ԇr � M)ʃ_I}A��+��b���~Ь_�b���9 <�����?��!�{iv/-��[q�o�Qx���s��;z�.і��)Wq�/�ma��Õlu��eД�\�0x���9-���. � 0ɘ�a ���2�L��·�� �y���8|��o�[�W��֭��XC; ����v�2��h��m��~T�o5��T��My����7l�1���E�!�D��@U(��2c%O~N��o�s���n2��������wc�q ��b�)���7����$1�g����j��m�����dwt��} �ڻN��ܾ��Q�� dQ��]���H��t0 s���]7������.���^�9�F�綗P�gn0�m�~Ń?1�@7+��
i���G�� ���Z��B0�uH�G�U���>��yy�`?�9��� �4g�7���&Dn]�7��c��]��̒[e�)�監�a8��8�zC�K���0꛳�q�nw�>pcMp�GC(�(>�i�T� �6��u��ȏ6��>i;a�[�=��;�?w��0��:\���`�\����.9m��`�[�vU� ��)�|�n�j���#���Uzl{�9��e�� ����{v-����K��y��.ɼ����c�(~b��l��z�ra�?x�ХQJ#\�˷��WU\��������N3��z}��l��n�u�嬦�v��\u툴OK �u�~�m�Gs�ء���b��5�����`8���V��oza��#~��s͵8��'��V`���fP_��k����e3m�o�{Z��t�� _ɰ
�k﫝y�a[?��A�D�ПN�g��!6+gp9����z'���Y�~���*P�U*�_n�w��F�� ����V�e�{W���l^�|�<��w�b��6�y�a�Z�mܞf%���1oZ�?��kBSts��.D�u�ǿr�Q{o/^��7 �R˷�P;������+q�"[re��(m�}�p��m�; h�a>a�ܷ�\~�~���39��lw��a���Ħ�ߍ$5c�;%���H��c�p�qS���#X:Dt�{p=
tǩ���(���ٌ�g�aE�"�IX��'�T� ŕ�ļ�.V�1ٙ{=
C����:Ғ����﹘�[�;��#es!��ؿ�e��p��V��ȿ�N>��}��[�)�my-�@U����@C���ZA (Q�zU@8W��ѦQ����}�
��0g!�3���2�~#лl�R�l���wGY���^��?��kw�ʭͺx��������DG(��unx� �_�|3�x��~(��BH>�Z�H2���X�[5{��:�W�Aҧ��`qO�!2C��%ݵ$w J�GGP��Q$�lk�W JG��/��H��F�J�xWa�����n ��<��kr�L�NL�_m@�����ۦ� �d� �N��ME��<���X�"a��rM 8z��Mk�jDH*%`�sYfRP��m*}��C(����Nix��hO���iF�:&��uZ:�P�W���n�{��`�
F㼈�}~�ͦF)��YjM��g"�U��F�3+��J�@H>��D).��3HqJ� ��^�՘U�J��0+v�qP�)�W���T%�\7G��'IO��D��V#�� ���y�n�v�uM�R�I
���yV�<Z$1+�}>�ht�ZNJ׺
5��}�f�J� �]K`�_�Ճ؜2����-�:{�J�J����/$4[���W% 8� �y?矍X=�l�Gܥ�]�徖m���X��fO#&�b�X�殯\1;���v��z�l�j��r�q�Khq�}������|G��-����_N�s�3���}:�9:r��0���������˷Y
m���-���)̃,۫�[0{��d�8����J�4OJ�w�h�n���'=�/�UbO��$"O���mR��q��U�8��9��B�O+s'r;���ݏ ǡ[�c�F�c1Uݍ�ญ���|v�ʒ
�h/�ZB�:냯\oy�I;�Wj,��x0V�pg�|����׍�",�[`rH���c~s��HN̲Y2k%���x�`��<�� ]l9��.RaN�*;�?B����M7��bۺ�c�?_ܬu��l���تf����ጻ㷇�lF�dv�V�o�mNP���A�MI���N}�b8��·n�ՐR"%����[ݜ��n��~ҝ�l�<�Չ$����t� ���V��9I�.��ǐ۟���,�)�osY.Ef��[�|̵�G�d3g3t��l���D�$)����;���﹪����$��1����'p�bcT� ��F=��y{�|ows�O�bx���.g�m>��3͛�]![,�{����٬-F�d��Gz�"
 �)�ZGOy����qamre^���7�̓t�+_Y��[�;��/l��o���[��0m�DzL�fzfڤȜ�.5�a�'ό�� %�OCr4���.u$�ŻK�㸮~�����A[(��HL(�i���|)RDl2 �kί0��q9����;�ٴ��w�kv�t������@��&6�C��Vajz�����mɷ��ؒ�YS%�+^�����s�!F�M�3A��I?x8:�e�X�=�2�2�� ��ڼ�\<z�n,�Y�x�]�l�^�],�����li2ov���ֵH�`G�!��oq����x�la��W�.tF2$� ̓���1� dŲ~@���J��b~<x�尲�yF#��^#�_����s��?�Z웋�ϷǴ\$���*{�"$u�a滧��;���9��' ��r�Ģg}2 #�iϫ�:�I���n���y|����MζܷK�/6�yw ;�q+������Ns�L�nű���n�{i�Xډu��� �m�!�x�t��v�}۹�lj�����@'>P $��>���B�Q*���E���mݴ|�q3��U/c0���n�[h�n���3�g˕���x%�6�bV{ڭv�7)wK�̽-��k�Pϧﻇ�ߪ-��+����H�ذ$�z�fVza�r��?��>������*݋�r��r�m�o������"�.�m���߲;L)�̲[�OH�*�-�]NC��ցN����;M� ��Q��8f����5��U�� =�uw�jl"3;����?1el-��˃fw�jג��T�*��A�7)%�C�O�M|���|+���=T��i>!��?��Sd�8:.��;���]������8.��2+�<�m!�3?U�ݤ= i
o�r�BҴ��h{g}�⹪��͝�-��8�h��L[��}R��~G|�<��5�߿ �vj�c�c�cO�����XKu�����'o���ew��Ԇ]�ɂ�•E�S�����7/�[�����k yO��<|��1��۸���(���¼j���2M���% OJ<h I<}~�|�����cD��dV�g M�����#k3�O�eܝǷϽ˰n^��[���8���=q��s1-��-��[��1L�O��|��h{�Ү��{n� 6{c�2'Քdm@u#��+���6�Ʒx�^=UV�������� ��?�(�^���8���a�w )���|�3��n6�U���8�v*��n�}�R���R��� i����AD�%�v�6g4;�a`豂�I�_��fa��0����Ʒge�gs2ڭ˲7����=��qK�b]�4۱f0V̗|<��Ҫ}2����?4�ڢq���?�ͦ�5�_[��oy:�'�|Y��Ə�W}� �|V�I���̵]P��,���ʲ �4�첝 �>4�(BR�����;���)�ݴ�4�Y���5��Ȳ�-���S���y��\/0�� �A�]��-�.1?��#�V\�9İk�6L�ˇ�1����۰�2Q � l� �D5)�X_+�7���M��E���q $9a,٢7Bȃ #�K�@�wv���+�/��;cpk�|F��C����膲lR@�)_�dEW٪vXJ�����Gx>�^���۵���g��bѯD�y ~��/�?^4�e-��ϯ4�/���_�~,d�ٳ̱ܷKt0��7�a�v�ؤ�q��á3if[L$5#�Ec�]S(P��?mv�����g�ĭ�/V@�V�K[i��wgAU���)�o��q��׼-���'A��~3�{�m�;���{��$e�,%���yn�����[�[RbEa�%.w)s=��[����R�v6ŴJ5���1� �v DX���;k� :ym�ǘ>j�.1�'��~�gs��k� ٱn��X��ڮr���Au�<�����yv�q�i�-���z/#�C��.*TJ;s~� ��-�|N��6��oȿ0�7��m���{m��;n��3|�‘��Sr��c�e����j��!�`�j+��nC��u�)<�m}T�`w<&�ӳ`I,�����$Cr"Lx�!��y����b7���M���6�.�F�[_����˒�E��%ю���d�Nar��)%�f�&����v܏z�Tl�q{]�ګG�S &~�ȓ#𸏱 �1"1ê�]��N��� $.X��?�uS�Ф��R"�ט�y��wU����7�p!;�=��U|�wCeo>O��ʅ��۝�Û�m��=�ɕFG�9pȲ��w ���m�.��0�L����8�"%h�a�ė'��-���p)�s7�+��ˮ+��<c�7���bC6���s⮷t��n��]Ǖ��e��o���KsJ2�C�Y�����l!���f���nǥ���]���x]�=�\�.Ac\+���j�"�w�]m�32�t�\a�ĸW |�P�/��:ˉJ��@:�M�?m<��0�M�Ԩ��,�X�~b�De��O#�B�7����,v�^˾[���.9�w�]�E��Γ�;��c�
�HBd[�==޵-N�����>#��'��������H� c��Ԉ$x���g�Yy�8�q�u���+*�A��; �=��D �`�d'^f$1o�˒d=*s��a���Xe �{��j����q��h�> ���~��x+%d�yK��d��~x{���íx�m.�d7��[q����\�;�e�__��g�\�[��>Jَ�}i;n��7e���m�%$ѓ̓<�E���%�t�w1�m� 6?ۊ���[�;�d�m��,�D�ګnAg��] [!�LLb۔d���49!}�&�-�>�������w������"!�6D�~y�V�p��C7�X����� ;?��j���q�*���S��]���K��[e�>AsS~J1&U�5�� �'-fTuC`6�C-��?��m<h� �ں��B2�< �k��ջ�V#� x�Uk����wr����<R�n�Cu��qK��a;�ucim���7�Ckc�Ɇ;j�g�/�X�9t�#�`’�9���e���7h��K2%��|�{�ނ��!)��|��W̬�m�6�����W����VQ�-�t�q��J�7K;�ziq�%Jx�Dթ���-��&����Y ��k ���@�e1"R�u����$o�V���������l5(�7FU�.@���<�Gi�G�?7��4�+�^ �q���LLl�:%b3Sc��"��<�5H�����U��Ñ��nbHc�(� -'"�]�H��eC)�p�������l�*�Z��Zz�_��K��w�dp���߈zW���4fO����0����c���!:��S�ٗ�5-ut���=����k�_�#$r��}�GӬ��Q���z�����Z��
D�����'�=y׬0���ն$2�R\ �lj>�����C��?u���"�)�+�)T�?I��h}�AG�a��#�\O��iZ�N��)��% [ސ��mk q �j���m�L�V/�9 �q��AB���#�<}@��8�� J��#0�Zs��]g��Xo��|[R@�J�x��E~�U�DCd6f\:���cA�G�_Ï��t���٬��� ,��n�C�x�C��(��}�”��ҕ�%b�#�}�o��$`��lA�ȏ�h���}O��m,���K�]i�J1�L+d�9h B8Ȯ�j��Z���c���� �A� ��.^������r!��ɎҕG�Bʨ��!+#���WOk�&Q�1��Ž�Yv[S��:�G�{i�=��T����,,?j7��"8�,�-����N!�������'��?�U���~�+�'���J�^v'ڿ �l6C{j��g<F�wv��ql�]�g�ụͫ���C�V�z3.W����o�P�G����� �B�B�?�����t��VW�|Z�h�t����ժfE.~VŶ�g�d��k�Kzt�e���Ƴ[ms�������G@���j���I�)r���^dHȁ��Y����W��ڥ)ȩ�����bt`*�<�H5��()�\@�p.$R�w��-3!�4X2���>� �5�M���S�=)�V
@���8�l��6H�z��8_�q&E���Ɇ�&��:�;�oL�5= ��K���UN�[)�~�d^J=�ĎՍ��o8Ɵ�FB[Z/v�h�ˑ�Q�p�Q�Jʽ�ҥe���,����;kn��q'���
Cֶ�%I����uF�@��ASjW���qq��"p9���Q�nQ"��r�?h��`S��n���()�c�<k�:H�p$Z������&����Y~?q�h�7m�:=�� �1�n��e9�ևRӝB��)?n��9{��Z�[&|�MĠ]S��ȟ;��-�u0O�FE�˼��|S=ܻ66���Ʒ"�sK�f���t�N��V���J~������m�ru�|��Fg����W��I��!{�D�������j|T�3$ jߌ{E��E�٦��}õ—�.��G��R�@B��JF�_P6�-���4�2�����ڰ�"��
ٝ��ЩW�JC]�������@��Eи�5���q'�:�>����[^�� ����5J@�J���e�ja֒�o6K�W�@�������_����CD��';���Ґ�-�B���Ĕ��N>�s����m��IlR�hCqR�ڹ�������"}g>*ϊ�*�kjS�#�@�!+�I�Ai��[J��,c2
X�pL_��� Kd�TR�҃�Uj�P{tˬ�@L��N��|�����put���$��� (9i�{L%f��L
"�E����X�* Ki�k„Ӑ?G m����)��!8��ۜWZ�EYJ�5m ��$
�׏�Qm���I����cY��o�!�Gi$���q<T���2,��?0�8�t;M��GU���:j�5j9p�6w� I����> ���KV�b�y=���Z�s�O�Q��@ZN�'*�����5%ƭ� �z���� (H=���Pq8��K�܅1���,3�e�h!�|IP��ڒ�+JJR���G4��φ�NF�ս�&C�A��`qPk����T�d�*m��uӅO�N~�����)+ ҫ� !%�ۡ]���&�����F�-��A���ĸH,�4i@���z�Q d+���ǁ���B���e��EV�� HR�B)���?�[�P��0LC�0^Z*�M� H�E=�SZ���V1:�(_[4�k�m��D����eKm* �P�)�!\Ωk+� �H�>��vJe�����)P�#�%I<Gn�n���2$����\<�-K�}�w�Z�
)*�Є!U�P����3� ?>��a� R"2���.�==��'ДR���%� �9:���T�rP��5�R�dŌ�R�t�C��h�uR�ڝo��\i��^'�� yt��@� �ʄ6�n���%F�4�}�B��rl��� ��r1ul6o�d˂�X�K� ,6��S���5(%z�^-���4U~���=:��5��H%[�d[�OHIBA���)RC�(�अ^C�ծ�䥺�Kml�qK��~ ��K�'#�5]��)����~)s�:��ۥy��eȐh�c��T�n�)�����٧Ժ���G�s��1X-7E�����@�~)U��jI�r��E ���b5���e����!�[�Z�� ���$�jmq ���&���U���+���?�����MxEC־�f��3 �\?���Z��%5J��}9B 4�l�b�i�WD������� �\��ZbX�U\���Zziܥ h��}**=4�\$H*��v
���s���b���M� �P
�F� E$<:�OѬ�1��!Ժ ks�R�!N6��
iCS��Km���u
�j�nj@�'x���-���H #�����9��!� �/���.�)�(P�
�$p#V6�Ćj��oeY8.�,����u�
��_�<����?3Um)��.R�m�[+SAIM���ҩ@�A�y�u�er�Sn���a � [#�\C�*�QMk^�8z��f�rcF��Px�>+��:����(Q��'��L�w�ԭ�����/GI ��A �O�W58p��$#��j�R�4��ϡ*@Y���lO�H��F$��G1� �D"Fab�@pD+#@t�泠F���ؗښ�I�Y�����0yҜ5�UL6Aqu|�`r<�
��
R�hG�9k���q�[9qt���=
I"��i@(8p�}���Ѐ@1�����((R���t"��V�� �@8����]��[ w{/,6��fG���H�T⒮<�ugk����:�?�ddņk�|�HŬy a��w[�끴� ����%��R�}g� �=R|��+G�t�u� ��L4�ad�)po�<H���'�p��T�L�?) !�u
i��*,�-,�ľۋp�MI��W�RK�����د�x��i�$U�1ʍZM��~�8��>̶R���"k� �S�Ҩ�).(v�f�`�E��A�gK�N-sq �J��#�� g�Ymƕ�ɈA5]T��<@Y��İyf��������;�8�j�l�?!�2��\�=�!��%@�0�$Ԏ Tq�N�t
HSN������K����m�{ʇtS54P�N�=8�GY$98�ȩ� �j�LGWf%��g�W�P�ɒ�b�z��Zx�^<u��)�E� q�o�5�Pdǎ���SKu�Cҭ�W���I��w3�\�kpE.�hp.�� QۓJ��JT\iB����5�쯜�3�+1=U6�F֛~�ý���2�j�pyI�?��@��PW��j4�J�*G�M��&�����x�6�]��=^N#�i�QZ�*�}zm�6�!�5�2�$�.}��*��M #�Z�}�,6�Y$��HkHym��@К�W�4����uV��ȅ؞Y�t�$���ғ��ҵQ<�=\�R�����@�JR��:��kC�ԟ�V� ����!{�sֽt�ByԀkQ��E�H1�n��O�S��=��Һ���Ǣs[DuhuIR]�޵��Z�8�:��,I�ĉ @F|xC�mD���8���E==���ng0G�,���H�Һ�>��������s��?M�ZP�D��rI�h�>�&7�#�[*[+M���Я�
OI'���Vc?N�[��Lb���6u�n� ym�:�'�7$�<)�SA��wo�6[]�q-��(� �%��WK��OIQֿHۦl��U$f�YR���ӏO�Iq�^']�v�
$� ( Ov�I���_B�(@Tx���5�@e.�� [��F�(<�z�=`u*����5��V�b��8�\.�F��!@��4�⺐!����$��K�1�-�5���p�8,H���EtE�⡈D�s�a $%/!5����p��i��[�N�<��rX7�t�'�#�D�#8H�X{��R��J����1��_�Y�pC���%n���<Ғ�QK�@ �'�'�:�BV3�Re��4��J�
VҺJ����Pq��}5��D���{We܄8����å#�W������yhK�s��@�zA ��ut�i*KМC|��9֕}�P�|:��.�����C�%��W�B'��AR��v���Q!]2� ���P�QNN����%���JE�0�����>�uD�s���?bͥ2$*m��+5* 6i���HG��u"��A�]�F:*��[ߤ����?�0S����j�`��׆�� b�U���5�G����#��p�Ø�ۧw����c! ���
�uvQ`��~);ЗK�MIK���\A�q��}��i�����s�7���}��Y� X��'�!Ђ�]\��h�8�D�_q��]�n���y )UjER��WWu�I��i��N'��ܥRjG�_mu:�z%���I�a����AW�|���f�BL_�ڇXR��)Ƥ��iNz��O�f��e�u��n��Σ�R���W��� �V� �F+�b�nu'�h=��ì�I��)u���bkT��:������Å=I᠁�2+ai���y��(C�YeD%Ҫ}^�p�t2�$�*�,'�I��aI!4�I ��̍U�d3W�(��iY����� s��`к6����Y]H^�鮤9,9��C-ם���k�)�q�=6�i6K��(Í��U�W"}�T�i뫱�F,2Z��g"Nku3��p��
I��mnF$`�[v���RT�(Б��?A�H�!D"�V�J�H&�H?�4�$b��h��5H���&��9�1�A(ini�Ѝ*@e�r�J���EO���|SX$�m��s���<R�e��u��]gGu ]���ۿ���?�mZ����&�w���o�+���T$k��r��s�{���9��Z�W�������j�� �t?uϬV�H�?�T�����.���3��5Տ��x���G܉�����@�!�¢9�:˿�������J�42�O�A���/�e���>�U����_�E���C"�9?�q��ɡRƫG�~��B��똿��_�3��D����:��ߎ��1�O3�Q �p��s�q+��Tvy[���e�1�$�Ѝt���G�*k�/����2�`���s���֫n�������w������o��Z��_�ɫ�꣬�y���?�� ����u~�i�n�%�M��y�ğ�lc�r���z��@��T����"/��B��O����P�f!��湟��{���y�wo��Z�M��g�:9)t��~��5K��,9� ���k�Rub����(k���?��~�v[/�R�HMt����ͧ�UY|�-�rs���s�~�T��������k�˯���H�e�d��4��}��̧��v{�_�oMϏ��P7?�=�*?V�K�c⇪#Y����w�u��>jz�z���.П�#E���K2��?��tZt�rI�{����_�έ��rY]����L���G�g�2}����e���k��/����.?4W��'�k�l��|��������z�����'�Q��c�Z5�#������ڟqO������W�U�?���.���S����/���3��]��Z�n���7���&�w�e����78����+D8�ס9|Q����痧�Nߙw�ͯ���M�/�F�?�q_�֯Ӫ^*��qo��~�g���������҇_r|�{��;��a�P��zG����J~e,G6��^�uWz����+�:9E*Y�-o�����e�ϊ���k����> T�ξ�����5�܊cG�W�Iվ�ܨ��%+�?/]#�ެt �s���K�΋o�?��@~U=�s�ds]?d�cA/�#���.�����
����JFIF��C  
  "" $(4,$&1'-=-157:::#+?D?8C49:7��C
7%%77777777777777777777777777777777777777777777777777��o"����4 !1QARa���"q�b�2S������+!1�AQ�Ra���2Bq���� ?��k��ZP%Ѝ���҆��Y���c� �L���*{����7��]_�t�S}͔T��J}�]�A
Ё�n{𚝔i�2���T���
q�S�f�Wsd)�
ͬ ;���q\�\MhO,�K�Z^����(�;dg�W��|c<��AyT�[oT��T)�Ji��h�h"�@{�\q�U7,��f*DӪ&�*:$)A��l0VS�$�'}�X8�>�Ҹ��3��Q�0v�ώ��F��iyZ��Z�Õ4UUHM@8�6�v;R�X(n��������RjTw^�.��; )���%!E!6* j�/c��|Gt^S�����8�;dg�W��|c!Z�Σ�$ө���!�YLb�T�w�����'�:k
W���Е+f��)b?P��p�=��K��L���E���F|uJ7�����(��#"��%�_�S�8�]��Sm%+(
]���M���\�����T��IeKK�m%D��X3��V>��䋝P:�l�����o��3��Q�0�����
T$��
RRR�K�ʘ����B����H�ϝ�p��}~�3�G�u��])E��DtJYyf�bsil��+G�"7�k3��&ײ��e!C�#�����r!��,�$5M����ȵ����<�R�6��T�e�D'�;%8ޕ�����y�_��~B�OY,��L����\5H�Q��ο� �C+q��+k:����V��31�D ��=1��PR��V��y�T/ČzZd6&����Z/q�����1�2��gשO%�_Q���xنF8��A�S�E�jҢ�L��#��K� �f��UN[*��+ 7�yV�68R�d��z-e-G�̡� ���-l�����ǎ/I��'�F���أ
��߲��皂'0JL����7O�,m��l�Ǎ��v4 f��j.��I�`�m�P}h! ��/��"��}�����أRbs��Q� @�F�!x�����!S��m "K��sw ﲈ�A�$���,��
K�D��.*�i��яBu&'8��:��Ob�Ha���~��<�Pi9�ɡ�> ):�qm��Y�I!$(\���2�`v�$l"��өN\}ۏ ����19��(�Ԙ��{`yKl��M�H�fi��%ɍ�4�{Tj�p�"�U��og�/����B[n'J�T�(y��.���أRbs��Q���$��.�I�9��V�aťD��,��J�M�A ���,U:>��u=�4��kb�� ��-C��t�{����1������T\o���-�!"��IXz����wb�a�]{�C�Q���5_��
GIF89a#�����������������������������������������������������������������������������������������������á�ġ�ġ�ť�ť�Ƥ�ƥ�Ȩ�Ȩ�ȩ�ɨ�ɩ�ʬ�ʬ�ʭ�ˬ�̯�̰�ͯ�Ͱ�ϳ�ϴ�г�д�д�ѷ�Ѹ�ҷ�ҷ�Ҹ�Ի�Լ�Ի�ֿ�־�ֿ�׾�׿������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������!�Created with The GIMP,#�� $HРA|���gO=��h��<u�؉g:s�i��͛�iԨT�� ��0є!s�L�2cĄ 3f���_�|�� ,[�l�r�
+W�H�2�j�'Q�@��� %M�,a��$F� 9"�� C��;���<v��#G�6j��A#�2f(~�� -Z�Hqʼn*H�0Qb !@����?��A� :X�`!C� *�P�B �#H� �� �?X����
0@����;
GIF89a��HHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYY[[[]]]^^^```aaabbbcccdddfffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{|||}}}~~~������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������!�Created with The GIMP!�
�,�@�Y Hp`�L��(�sI�*��"J���+T�&N��i��P�$nJui����$Z*5�TJ�
]�X��͛8s��ɳ�O�Y����L�P]$X���}R5��TÚT��rj��>8i�j�S
�2u���l*R���] _P ��C���t�(sK��6-�kWF�SGk8�D�@6$�%��Q�@�S�̩R2t�B��2���xb�v DQ-zRaj(��N�i �R��`���ץa��`���?��a�j�f�����AQ�l�$��"U7BtJ�#�5O=R�^��G��$
"����&��Ÿz��2H%� ��k��_m�D�
" �V� ���+ ��EK �+����L�� 0u����[�PS p�XbM�A �ࠝ'J�� ?2Ń'͵N��PDu��`�!���&��Y��@fM�!BA�0�B!�`��(DqSh�@�A� ��VTb)}��&$��O�DR�R�q�&05�#��T�v|Д� ]�UY�Fx��1���t M�Ŋ�8=�B���E0*��-��Mm�I�*����幧hz��<���&B�
A�������Mx���%��K�'O @��fŔH$���M�b*�5���J�'MLJ�A0Z%]�� �!DA�@�l�B�16Bu��Xg&��d D�ȳ�m֙.`� �<$j� ��8�P|�D�ˊ�`��CdJ..�@
U,�I�S�
M��w|� @j�o�SA�F ���T�e���Ԅ+N�������:�I�$-8�&�J�YP&S� �x�iSh_t��7�G _�� ��>z��8�b�Y��SHb/ \qɧK0��!�بp� Y�BSt���T��}�&O���]Tw�v�%��l,�A��)�����K�8��r�* ��dn'6�hS)^��UQ��q9"�@����Q'vh��X��n)���~��y����C̀��M��T� ��^A�E�9�"|9� L.�j�C�@�8��0�WpA ꠗ���čN2��&
����<Ѕ��)�Ȅ;�)��
N�<���%4�
�th��� 8�BJ�)�$�����Y!6�%�C�(��q��t�B�!0�!uH ����@�r��� ��T���(#��9 | �`ùPP�{)���<�'zH�@���� /HAb�PBʡm� �@�'� �2t�@x�&���@8!��� `p� �#"&���6I�*h��� �p�HS!E&�����8�QXٔ� ��‡Mh" ���[��J7�<�S��kЋ����D�IE@��:��q��� ��@]�0��@BQ�5
~5��LQ�AK�r+�&v8r�0�
��S����;��ЃZ�
ι aAH*�p��Y)+BQ�i 2��z��' !XB����r��A%�7�@9�� ���GT t6�l�@��4��J�D� �`�Xʩ�E:`K'�7�l�g ���l�+�t�.%���
�!�THp�-8̦w�@ e�TԐC�"�����2�)�F� ���R��xbipS����D���06����a���Mdup�j�0��$w 2¸}Þq��R��5 Z�I�W��
*���0W�F�\@@jA�ZM�`�"8���Kt� F ��K(��[W�����4�@�r[ᛜb ' +@!�̠B��!1ɛL<�L̀�Z��"���@��"�����W��(AH��� ��Am���� Iގ&\Д@��d�Nu8QV!�K(��X �y�3(� `���B !�b�G���)YY� T�(ƽL{p�@�P����^��]���P6���&m�
Q\"! i��4b��Dh���D,����$�D�N��o��%
��#6ajH����ηO;
����JFIF����'File written by Adobe Photoshop� 4.0��C

 %# , #&')*)-0-(0%()(��C


(((((((((((((((((((((((((((((((((((((((((((((((((((��Kd"����:!1"AQq2a�#BR����7Sbru��3�����+!1Q"A����4q���� ?�(������c�dݥ������R~�)��g&����V�H
9 %ng��W6fG�B�j�W+�6jz���T�X�jZ|���@��Ȫ��VL�̨�������f���g�V &@[���;��e��^|����&�GU��oWjt(r���\T��"��v�q`���IG���P�u�U��k�h�"��nG I?���X�i�k�G��-�Sگ�L #�2�����j�Rm H)r3�.��!�+
A�
��i�e*��p5:��Q�j~0�s��y�����+�-��I�E�RApE��EQBE4P�RO�o�l�����;)�k��Ҥ��*�(BFT��Mf��.�xx�T�-�D��l4\yiBRMZ�Վ�u��a��b+~|�⇚[���R:wI&� ���1�q@
j"c��a���I�6Ț���m�[iu{�w��m��m�z�������쫆 ������mi�^�q_�=���R�iM>�pݒ��:�+DmK��K��@
��s���j�T�Ȁf��(G0��� �rs[��Ɗkit�
N�Ӳ:�"����yJ4��ӳ�rV-7xH��;�WË�y����%j��m�)�+V� v���ls>>�z�R�Lh�����d���B[i��5rgOjV\������������G�p|<��\�ƟQ��쫪��Zޑ��Z��hhN/h��e+�����5U�k8�ܝ��Q�.���9O+����_E<:ծ�]���u<��mܙ���R����;Е䆒�e[j��%�v�M%E���̶}��+%~��|7���4���D�1_`���@�����A�Y�v�{B@�m�<~�n���W�J\=V{uL{���)�!���Z} q���Cm�EFEӶ��ݐ��.-�������{����.�I�Y�^j��?$T5�Zj[�(T� �|!���j'����_��^�W�f�-i�(݋1J�P��.��8Jw'8�.��Su*�R��f@ �*���E:|���q\��:�zK����+Z�Tw��p��� i�\ʷv3��s�[��n�t��d��%��n��}�-��l��(�i��(����S�������/���<V N��7�!������.��Q:�J[u4`��-�l}��q�����E~�7�<�)L�|�Dd�3}G�"�+�BCyr�K+8J�� �#���t5[�w B�4.,�<|�׿��]��X���=kw��'�O �JܟX�3mv@�Jp��|� C�پ�u�!�He�2T��
q�Q���B�~�I��#�7.7���'n�5�$�!��+q���IR����/g�����!Y�;5����\mV�E�B5�,H�P�I R��i�,`yT��z���d��wD]����t&(r)��u�r���X�{�:�M��z�j� �-Jen�� �s��U������.�+P��|�G4 �g|zV(���C�7�������[�u6iiZE$�*AJ�k�.�2���%0K$}d�m��ɋ6�e�T��8mßu�+s�(�q�!�𸔨y��M6��$$��=*Vt�#�ë����H�۴�*KHe�-��FS�����<�FI�*nڜ��򽍢�Í�8�n�BV���() ���$(L0�f�ZEq�vJy놝[~��V�O5<>��p���1��xJRx���! � �
`*3
QR�h��%��7��,mI+w���K�B���?uS�n8�ߒ��ZJ�KX^p0I��c��p���ZhFP*W�5kH H�V+i����(���=��0�e��Р���wm?96W��0�sÝ�� B�ݲ�gi�C@ܲ�R[A%Y��m��!)�\ f���UĖ���,���ۈ�+��<(s ����/Z��xH�y-�;�}l��:��U���T��IJ՟u����M2��ai
Df�(B�%)%=2:R˧�qpu��tVnָq�+L40��>TV�+Dj��
�PNG

IHDR��agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<!IDAT8˕��NQ���ɉϠV��ȑ��B[(� &��^�����M�6�M|� D�ްҙv:�官J-%��N�d������ �L��B��>w_3:*�W�r���lNC/�-�좕�B�'{ u_��a46��������ҽ��b�ߡE�%D47�;ٻƩ;��8�ˣ}>6[��ӕS@*�Z Qk�>~��͵hB\��9u�����x��Z�vY�b ���������J� ��Cيٽ?��B�Yvn���&k���ft����$��,d��9�Z��a�p�\^ Y���7 �Q���JF��� 9=�Q4 ؜���I�o
S�B��ps���I��) Fv(@yՎ�ވ�c��\@���� %��%� �Z�2h'��@d��(<|�áa�����J�uM@�O���⤁�L���Gj�d�!�X�8���A��f 5�J i�
K->�w�62ƾ�WH��}��:��m�P]XB�0�QX=i�b_�g�=!��F��t���t�����…c�l�r�����IEND�B`�
�PNG

IHDR��agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<YIDAT8�ݓ=KBa���AP� ��--� ��5X'��&��A�j�������j(�{ɏ2�<e� �UDŏ��p76��[õ=\���0�Z`����Z`!(��R�#(+*|!b]A�|q��zA�n@�̡�"�� �9K���"W,
#n�V%����0V&���"T"G���WB�U��}���YGڷ �?�,?�}'�C��R�R<��O�0O"�e!� �S �,�C-���n�@�͖a߶�!�:d^e�=������V�Ҵ��A�k�&�3�A�����ΌN�8~&�]����)KI>�����5IJ?�4R�/�x�����J�{S̓��A#;�R
��IEND�B`�
�PNG

IHDR��agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8˽��.Ca�{�8�bn�SB��T'��)E)����V�CJ ǥj��� �ZՆg/���h…�ݿ����k ���n�^k�[�ꝿ2P�6�c=�XH�*�G�`?xԅ�{7�7V�Ԩ�پ%V�Hy��q��Ntn���[���J2^�5�3��X�,�S-OƜ�o����D�X��x����2Oܵ �r�]L`�}�Z��࿳��T��U�(��Si������P�/�a:6͖,A` �%S�=���[
���b[�a�='�L�a�W�{����x���D����[ �u9J�—B�GqzfGN��0��os�6�"f��fh�ZR��".��2H-[��{���(7�h �@`%E��[I��W�u3��e�+� ����l�GQ&��'� �� ���������k|���<R
HIEND�B`�
/* -----------------------------------------------------------------------
Blueprint CSS Framework 0.9
http://blueprintcss.org
* Copyright (c) 2007-Present. See LICENSE for more info.
* See README for instructions on how to use Blueprint.
* For credits and origins, see AUTHORS.
* This is a compressed file. See the sources in the 'src' directory.
----------------------------------------------------------------------- */
/* ie.css */
body {text-align:center;}
.container {text-align:left;}
* html .column, * html div.span-1, * html div.span-2, * html div.span-3, * html div.span-4, * html div.span-5, * html div.span-6, * html div.span-7, * html div.span-8, * html div.span-9, * html div.span-10, * html div.span-11, * html div.span-12, * html div.span-13, * html div.span-14, * html div.span-15, * html div.span-16, * html div.span-17, * html div.span-18, * html div.span-19, * html div.span-20, * html div.span-21, * html div.span-22, * html div.span-23, * html div.span-24 {display:inline;overflow-x:hidden;}
* html legend {margin:0px -8px 16px 0;padding:0;}
ol {margin-left:2em;}
sup {vertical-align:text-top;}
sub {vertical-align:text-bottom;}
html>body p code {*white-space:normal;}
hr {margin:-8px auto 11px;}
img {-ms-interpolation-mode:bicubic;}
.clearfix, .container {display:inline-block;}
* html .clearfix, * html .container {height:1%;}
fieldset {padding-top:0;}
textarea {overflow:auto;}
input.text, input.title, textarea {background-color:#fff;border:1px solid #bbb;}
input.text:focus, input.title:focus {border-color:#666;}
input.text, input.title, textarea, select {margin:0.5em 0;}
input.checkbox, input.radio {position:relative;top:.25em;}
form.inline div, form.inline p {vertical-align:middle;}
form.inline label {position:relative;top:-0.25em;}
form.inline input.checkbox, form.inline input.radio, form.inline input.button, form.inline button {margin:0.5em 0;}
button, input.button {position:relative;top:0.25em;}
�PNG

IHDR��agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<!IDAT8˕��NQ���ɉϠV��ȑ��B[(� &��^�����M�6�M|� D�ްҙv:�官J-%��N�d������ �L��B��>w_3:*�W�r���lNC/�-�좕�B�'{ u_��a46��������ҽ��b�ߡE�%D47�;ٻƩ;��8�ˣ}>6[��ӕS@*�Z Qk�>~��͵hB\��9u�����x��Z�vY�b ���������J� ��Cيٽ?��B�Yvn���&k���ft����$��,d��9�Z��a�p�\^ Y���7 �Q���JF��� 9=�Q4 ؜���I�o
S�B��ps���I��) Fv(@yՎ�ވ�c��\@���� %��%� �Z�2h'��@d��(<|�áa�����J�uM@�O���⤁�L���Gj�d�!�X�8���A��f 5�J i�
K->�w�62ƾ�WH��}��:��m�P]XB�0�QX=i�b_�g�=!��F��t���t�����…c�l�r�����IEND�B`�
�PNG

IHDR��agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<YIDAT8�ݓ=KBa���AP� ��--� ��5X'��&��A�j�������j(�{ɏ2�<e� �UDŏ��p76��[õ=\���0�Z`����Z`!(��R�#(+*|!b]A�|q��zA�n@�̡�"�� �9K���"W,
#n�V%����0V&���"T"G���WB�U��}���YGڷ �?�,?�}'�C��R�R<��O�0O"�e!� �S �,�C-���n�@�͖a߶�!�:d^e�=������V�Ҵ��A�k�&�3�A�����ΌN�8~&�]����)KI>�����5IJ?�4R�/�x�����J�{S̓��A#;�R
��IEND�B`�
�PNG

IHDR��agAMA��7��tEXtSoftwareAdobe ImageReadyq�e<�IDAT8˽��.Ca�{�8�bn�SB��T'��)E)����V�CJ ǥj��� �ZՆg/���h…�ݿ����k ���n�^k�[�ꝿ2P�6�c=�XH�*�G�`?xԅ�{7�7V�Ԩ�پ%V�Hy��q��Ntn���[���J2^�5�3��X�,�S-OƜ�o����D�X��x����2Oܵ �r�]L`�}�Z��࿳��T��U�(��Si������P�/�a:6͖,A` �%S�=���[
���b[�a�='�L�a�W�{����x���D����[ �u9J�—B�GqzfGN��0��os�6�"f��fh�ZR��".��2H-[��{���(7�h �@`%E��[I��W�u3��e�+� ����l�GQ&��'� �� ���������k|���<R
HIEND�B`�
Buttons
* Gives you great looking CSS buttons, for both <a> and <button>.
* Demo: particletree.com/features/rediscovering-the-button-element
Credits
----------------------------------------------------------------
* Created by Kevin Hale [particletree.com]
* Adapted for Blueprint by Olav Bjorkoy [bjorkoy.com]
Usage
----------------------------------------------------------------
1) Add this plugin to lib/settings.yml.
See compress.rb for instructions.
2) Use the following HTML code to place the buttons on your site:
<button type="submit" class="button positive">
<img src="css/blueprint/plugins/buttons/icons/tick.png" alt=""/> Save
</button>
<a class="button" href="/password/reset/">
<img src="css/blueprint/plugins/buttons/icons/key.png" alt=""/> Change Password
</a>
<a href="#" class="button negative">
<img src="css/blueprint/plugins/buttons/icons/cross.png" alt=""/> Cancel
</a>
/* --------------------------------------------------------------
buttons.css
* Gives you some great CSS-only buttons.
Created by Kevin Hale [particletree.com]
* particletree.com/features/rediscovering-the-button-element
See Readme.txt in this folder for instructions.
-------------------------------------------------------------- */
a.button, button {
display:block;
float:left;
margin: 0.7em 0.5em 0.7em 0;
padding:5px 10px 5px 7px; /* Links */
border:1px solid #dedede;
border-top:1px solid #eee;
border-left:1px solid #eee;
background-color:#f5f5f5;
font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;
font-size:100%;
line-height:130%;
text-decoration:none;
font-weight:bold;
color:#565656;
cursor:pointer;
}
button {
width:auto;
overflow:visible;
padding:4px 10px 3px 7px; /* IE6 */
}
button[type] {
padding:4px 10px 4px 7px; /* Firefox */
line-height:17px; /* Safari */
}
*:first-child+html button[type] {
padding:4px 10px 3px 7px; /* IE7 */
}
button img, a.button img{
margin:0 3px -3px 0 !important;
padding:0;
border:none;
width:16px;
height:16px;
float:none;
}
/* Button colors
-------------------------------------------------------------- */
/* Standard */
button:hover, a.button:hover{
background-color:#dff4ff;
border:1px solid #c2e1ef;
color:#336699;
}
a.button:active{
background-color:#6299c5;
border:1px solid #6299c5;
color:#fff;
}
/* Positive */
body .positive {
color:#529214;
}
a.positive:hover, button.positive:hover {
background-color:#E6EFC2;
border:1px solid #C6D880;
color:#529214;
}
a.positive:active {
background-color:#529214;
border:1px solid #529214;
color:#fff;
}
/* Negative */
body .negative {
color:#d12f19;
}
a.negative:hover, button.negative:hover {
background-color:#fbe3e4;
border:1px solid #fbc2c4;
color:#d12f19;
}
a.negative:active {
background-color:#d12f19;
border:1px solid #d12f19;
color:#fff;
}
Fancy Type
* Gives you classes to use if you'd like some
extra fancy typography.
Credits and instructions are specified above each class
in the fancy-type.css file in this directory.
Usage
----------------------------------------------------------------
1) Add this plugin to lib/settings.yml.
See compress.rb for instructions.
/* --------------------------------------------------------------
fancy-type.css
* Lots of pretty advanced classes for manipulating text.
See the Readme file in this folder for additional instructions.
-------------------------------------------------------------- */
/* Indentation instead of line shifts for sibling paragraphs. */
p + p { text-indent:2em; margin-top:-1.5em; }
form p + p { text-indent: 0; } /* Don't want this in forms. */
/* For great looking type, use this code instead of asdf:
<span class="alt">asdf</span>
Best used on prepositions and ampersands. */
.alt {
color: #666;
font-family: "Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif;
font-style: italic;
font-weight: normal;
}
/* For great looking quote marks in titles, replace "asdf" with:
<span class="dquo">&#8220;</span>asdf&#8221;
(That is, when the title starts with a quote mark).
(You may have to change this value depending on your font size). */
.dquo { margin-left: -.5em; }
/* Reduced size type with incremental leading
(http://www.markboulton.co.uk/journal/comments/incremental_leading/)
This could be used for side notes. For smaller type, you don't necessarily want to
follow the 1.5x vertical rhythm -- the line-height is too much.
Using this class, it reduces your font size and line-height so that for
every four lines of normal sized type, there is five lines of the sidenote. eg:
New type size in em's:
10px (wanted side note size) / 12px (existing base size) = 0.8333 (new type size in ems)
New line-height value:
12px x 1.5 = 18px (old line-height)
18px x 4 = 72px
72px / 5 = 14.4px (new line height)
14.4px / 10px = 1.44 (new line height in em's) */
p.incr, .incr p {
font-size: 10px;
line-height: 1.44em;
margin-bottom: 1.5em;
}
/* Surround uppercase words and abbreviations with this class.
Based on work by Jørgen Arnor Gårdsø Lom [http://twistedintellect.com/] */
.caps {
font-variant: small-caps;
letter-spacing: 1px;
text-transform: lowercase;
font-size:1.2em;
line-height:1%;
font-weight:bold;
padding:0 2px;
}
RTL
* Mirrors Blueprint, so it can be used with Right-to-Left languages.
By Ran Yaniv Hartstein, ranh.co.il
Usage
----------------------------------------------------------------
1) Add this line to your HTML:
<link rel="stylesheet" href="css/blueprint/plugins/rtl/screen.css" type="text/css" media="screen, projection">
/* --------------------------------------------------------------
rtl.css
* Mirrors Blueprint for left-to-right languages
By Ran Yaniv Hartstein [ranh.co.il]
-------------------------------------------------------------- */
body .container { direction: rtl; }
body .column, body div.span-1, body div.span-2, body div.span-3, body div.span-4, body div.span-5, body div.span-6, body div.span-7, body div.span-8, body div.span-9, body div.span-10, body div.span-11, body div.span-12, body div.span-13, body div.span-14, body div.span-15, body div.span-16, body div.span-17, body div.span-18, body div.span-19, body div.span-20, body div.span-21, body div.span-22, body div.span-23, body div.span-24 {
float: right;
margin-right: 0;
margin-left: 10px;
text-align:right;
}
body div.last { margin-left: 0; }
body table .last { padding-left: 0; }
body .append-1 { padding-right: 0; padding-left: 40px; }
body .append-2 { padding-right: 0; padding-left: 80px; }
body .append-3 { padding-right: 0; padding-left: 120px; }
body .append-4 { padding-right: 0; padding-left: 160px; }
body .append-5 { padding-right: 0; padding-left: 200px; }
body .append-6 { padding-right: 0; padding-left: 240px; }
body .append-7 { padding-right: 0; padding-left: 280px; }
body .append-8 { padding-right: 0; padding-left: 320px; }
body .append-9 { padding-right: 0; padding-left: 360px; }
body .append-10 { padding-right: 0; padding-left: 400px; }
body .append-11 { padding-right: 0; padding-left: 440px; }
body .append-12 { padding-right: 0; padding-left: 480px; }
body .append-13 { padding-right: 0; padding-left: 520px; }
body .append-14 { padding-right: 0; padding-left: 560px; }
body .append-15 { padding-right: 0; padding-left: 600px; }
body .append-16 { padding-right: 0; padding-left: 640px; }
body .append-17 { padding-right: 0; padding-left: 680px; }
body .append-18 { padding-right: 0; padding-left: 720px; }
body .append-19 { padding-right: 0; padding-left: 760px; }
body .append-20 { padding-right: 0; padding-left: 800px; }
body .append-21 { padding-right: 0; padding-left: 840px; }
body .append-22 { padding-right: 0; padding-left: 880px; }
body .append-23 { padding-right: 0; padding-left: 920px; }
body .prepend-1 { padding-left: 0; padding-right: 40px; }
body .prepend-2 { padding-left: 0; padding-right: 80px; }
body .prepend-3 { padding-left: 0; padding-right: 120px; }
body .prepend-4 { padding-left: 0; padding-right: 160px; }
body .prepend-5 { padding-left: 0; padding-right: 200px; }
body .prepend-6 { padding-left: 0; padding-right: 240px; }
body .prepend-7 { padding-left: 0; padding-right: 280px; }
body .prepend-8 { padding-left: 0; padding-right: 320px; }
body .prepend-9 { padding-left: 0; padding-right: 360px; }
body .prepend-10 { padding-left: 0; padding-right: 400px; }
body .prepend-11 { padding-left: 0; padding-right: 440px; }
body .prepend-12 { padding-left: 0; padding-right: 480px; }
body .prepend-13 { padding-left: 0; padding-right: 520px; }
body .prepend-14 { padding-left: 0; padding-right: 560px; }
body .prepend-15 { padding-left: 0; padding-right: 600px; }
body .prepend-16 { padding-left: 0; padding-right: 640px; }
body .prepend-17 { padding-left: 0; padding-right: 680px; }
body .prepend-18 { padding-left: 0; padding-right: 720px; }
body .prepend-19 { padding-left: 0; padding-right: 760px; }
body .prepend-20 { padding-left: 0; padding-right: 800px; }
body .prepend-21 { padding-left: 0; padding-right: 840px; }
body .prepend-22 { padding-left: 0; padding-right: 880px; }
body .prepend-23 { padding-left: 0; padding-right: 920px; }
body .border {
padding-right: 0;
padding-left: 4px;
margin-right: 0;
margin-left: 5px;
border-right: none;
border-left: 1px solid #eee;
}
body .colborder {
padding-right: 0;
padding-left: 24px;
margin-right: 0;
margin-left: 25px;
border-right: none;
border-left: 1px solid #eee;
}
body .pull-1 { margin-left: 0; margin-right: -40px; }
body .pull-2 { margin-left: 0; margin-right: -80px; }
body .pull-3 { margin-left: 0; margin-right: -120px; }
body .pull-4 { margin-left: 0; margin-right: -160px; }
body .push-0 { margin: 0 18px 0 0; }
body .push-1 { margin: 0 18px 0 -40px; }
body .push-2 { margin: 0 18px 0 -80px; }
body .push-3 { margin: 0 18px 0 -120px; }
body .push-4 { margin: 0 18px 0 -160px; }
body .push-0, body .push-1, body .push-2,
body .push-3, body .push-4 { float: left; }
/* Typography with RTL support */
body h1,body h2,body h3,
body h4,body h5,body h6 { font-family: Arial, sans-serif; }
html body { font-family: Arial, sans-serif; }
body pre,body code,body tt { font-family: monospace; }
/* Mirror floats and margins on typographic elements */
body p img { float: right; margin: 1.5em 0 1.5em 1.5em; }
body dd, body ul, body ol { margin-left: 0; margin-right: 1.5em;}
body td, body th { text-align:right; }
/* -----------------------------------------------------------------------
Blueprint CSS Framework 0.9
http://blueprintcss.org
* Copyright (c) 2007-Present. See LICENSE for more info.
* See README for instructions on how to use Blueprint.
* For credits and origins, see AUTHORS.
* This is a compressed file. See the sources in the 'src' directory.
----------------------------------------------------------------------- */
/* print.css */
body {line-height:1.5;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;color:#000;background:none;font-size:10pt;}
.container {background:none;}
hr {background:#ccc;color:#ccc;width:100%;height:2px;margin:2em 0;padding:0;border:none;}
hr.space {background:#fff;color:#fff;visibility:hidden;}
h1, h2, h3, h4, h5, h6 {font-family:"Helvetica Neue", Arial, "Lucida Grande", sans-serif;}
code {font:.9em "Courier New", Monaco, Courier, monospace;}
a img {border:none;}
p img.top {margin-top:0;}
blockquote {margin:1.5em;padding:1em;font-style:italic;font-size:.9em;}
.small {font-size:.9em;}
.large {font-size:1.1em;}
.quiet {color:#999;}
.hide {display:none;}
a:link, a:visited {background:transparent;font-weight:700;text-decoration:underline;}
a:link:after, a:visited:after {content:" (" attr(href) ")";font-size:90%;}
/* -----------------------------------------------------------------------
Blueprint CSS Framework 0.9
http://blueprintcss.org
* Copyright (c) 2007-Present. See LICENSE for more info.
* See README for instructions on how to use Blueprint.
* For credits and origins, see AUTHORS.
* This is a compressed file. See the sources in the 'src' directory.
----------------------------------------------------------------------- */
/* reset.css */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline;}
body {line-height:1.5;}
table {border-collapse:separate;border-spacing:0;}
caption, th, td {text-align:left;font-weight:normal;}
table, td, th {vertical-align:middle;}
blockquote:before, blockquote:after, q:before, q:after {content:"";}
blockquote, q {quotes:"" "";}
a img {border:none;}
/* typography.css */
html {font-size:100.01%;}
body {font-size:75%;color:#222;background:#fff;font-family:"Helvetica Neue", Arial, Helvetica, sans-serif;}
h1, h2, h3, h4, h5, h6 {font-weight:normal;color:#111;}
h1 {font-size:3em;line-height:1;margin-bottom:0.5em;}
h2 {font-size:2em;margin-bottom:0.75em;}
h3 {font-size:1.5em;line-height:1;margin-bottom:1em;}
h4 {font-size:1.2em;line-height:1.25;margin-bottom:1.25em;}
h5 {font-size:1em;font-weight:bold;margin-bottom:1.5em;}
h6 {font-size:1em;font-weight:bold;}
h1 img, h2 img, h3 img, h4 img, h5 img, h6 img {margin:0;}
p {margin:0 0 1.5em;}
p img.left {float:left;margin:1.5em 1.5em 1.5em 0;padding:0;}
p img.right {float:right;margin:1.5em 0 1.5em 1.5em;}
a:focus, a:hover {color:#000;}
a {color:#009;text-decoration:underline;}
blockquote {margin:1.5em;color:#666;font-style:italic;}
strong {font-weight:bold;}
em, dfn {font-style:italic;}
dfn {font-weight:bold;}
sup, sub {line-height:0;}
abbr, acronym {border-bottom:1px dotted #666;}
address {margin:0 0 1.5em;font-style:italic;}
del {color:#666;}
pre {margin:1.5em 0;white-space:pre;}
pre, code, tt {font:1em 'andale mono', 'lucida console', monospace;line-height:1.5;}
li ul, li ol {margin:0 1.5em;}
ul, ol {margin:0 1.5em 1.5em 1.5em;}
ul {list-style-type:disc;}
ol {list-style-type:decimal;}
dl {margin:0 0 1.5em 0;}
dl dt {font-weight:bold;}
dd {margin-left:1.5em;}
table {margin-bottom:1.4em;width:100%;}
th {font-weight:bold;}
thead th {background:#c3d9ff;}
th, td, caption {padding:4px 10px 4px 5px;}
tr.even td {background:#e5ecf9;}
tfoot {font-style:italic;}
caption {background:#eee;}
.small {font-size:.8em;margin-bottom:1.875em;line-height:1.875em;}
.large {font-size:1.2em;line-height:2.5em;margin-bottom:1.25em;}
.hide {display:none;}
.quiet {color:#666;}
.loud {color:#000;}
.highlight {background:#ff0;}
.added {background:#060;color:#fff;}
.removed {background:#900;color:#fff;}
.first {margin-left:0;padding-left:0;}
.last {margin-right:0;padding-right:0;}
.top {margin-top:0;padding-top:0;}
.bottom {margin-bottom:0;padding-bottom:0;}
/* forms.css */
label {font-weight:bold;}
fieldset {padding:1.4em;margin:0 0 1.5em 0;border:1px solid #ccc;}
legend {font-weight:bold;font-size:1.2em;}
input[type=text], input[type=password], input.text, input.title, textarea, select {background-color:#fff;border:1px solid #bbb;}
input[type=text]:focus, input[type=password]:focus, input.text:focus, input.title:focus, textarea:focus, select:focus {border-color:#666;}
input[type=text], input[type=password], input.text, input.title, textarea, select {margin:0.5em 0;}
input.text, input.title {width:300px;padding:5px;}
input.title {font-size:1.5em;}
textarea {width:390px;height:250px;padding:5px;}
input[type=checkbox], input[type=radio], input.checkbox, input.radio {position:relative;top:.25em;}
form.inline {line-height:3;}
form.inline p {margin-bottom:0;}
.error, .notice, .success {padding:.8em;margin-bottom:1em;border:2px solid #ddd;}
.error {background:#FBE3E4;color:#8a1f11;border-color:#FBC2C4;}
.notice {background:#FFF6BF;color:#514721;border-color:#FFD324;}
.success {background:#E6EFC2;color:#264409;border-color:#C6D880;}
.error a {color:#8a1f11;}
.notice a {color:#514721;}
.success a {color:#264409;}
/* grid.css */
.container {width:950px;margin:0 auto;}
.showgrid {background:url(src/grid.png);}
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 {float:left;margin-right:10px;}
.last, div.last {margin-right:0;}
.span-1 {width:30px;}
.span-2 {width:70px;}
.span-3 {width:110px;}
.span-4 {width:150px;}
.span-5 {width:190px;}
.span-6 {width:230px;}
.span-7 {width:270px;}
.span-8 {width:310px;}
.span-9 {width:350px;}
.span-10 {width:390px;}
.span-11 {width:430px;}
.span-12 {width:470px;}
.span-13 {width:510px;}
.span-14 {width:550px;}
.span-15 {width:590px;}
.span-16 {width:630px;}
.span-17 {width:670px;}
.span-18 {width:710px;}
.span-19 {width:750px;}
.span-20 {width:790px;}
.span-21 {width:830px;}
.span-22 {width:870px;}
.span-23 {width:910px;}
.span-24, div.span-24 {width:950px;margin-right:0;}
input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8, input.span-9, textarea.span-9, input.span-10, textarea.span-10, input.span-11, textarea.span-11, input.span-12, textarea.span-12, input.span-13, textarea.span-13, input.span-14, textarea.span-14, input.span-15, textarea.span-15, input.span-16, textarea.span-16, input.span-17, textarea.span-17, input.span-18, textarea.span-18, input.span-19, textarea.span-19, input.span-20, textarea.span-20, input.span-21, textarea.span-21, input.span-22, textarea.span-22, input.span-23, textarea.span-23, input.span-24, textarea.span-24 {border-left-width:1px!important;border-right-width:1px!important;padding-left:5px!important;padding-right:5px!important;}
input.span-1, textarea.span-1 {width:18px!important;}
input.span-2, textarea.span-2 {width:58px!important;}
input.span-3, textarea.span-3 {width:98px!important;}
input.span-4, textarea.span-4 {width:138px!important;}
input.span-5, textarea.span-5 {width:178px!important;}
input.span-6, textarea.span-6 {width:218px!important;}
input.span-7, textarea.span-7 {width:258px!important;}
input.span-8, textarea.span-8 {width:298px!important;}
input.span-9, textarea.span-9 {width:338px!important;}
input.span-10, textarea.span-10 {width:378px!important;}
input.span-11, textarea.span-11 {width:418px!important;}
input.span-12, textarea.span-12 {width:458px!important;}
input.span-13, textarea.span-13 {width:498px!important;}
input.span-14, textarea.span-14 {width:538px!important;}
input.span-15, textarea.span-15 {width:578px!important;}
input.span-16, textarea.span-16 {width:618px!important;}
input.span-17, textarea.span-17 {width:658px!important;}
input.span-18, textarea.span-18 {width:698px!important;}
input.span-19, textarea.span-19 {width:738px!important;}
input.span-20, textarea.span-20 {width:778px!important;}
input.span-21, textarea.span-21 {width:818px!important;}
input.span-22, textarea.span-22 {width:858px!important;}
input.span-23, textarea.span-23 {width:898px!important;}
input.span-24, textarea.span-24 {width:938px!important;}
.append-1 {padding-right:40px;}
.append-2 {padding-right:80px;}
.append-3 {padding-right:120px;}
.append-4 {padding-right:160px;}
.append-5 {padding-right:200px;}
.append-6 {padding-right:240px;}
.append-7 {padding-right:280px;}
.append-8 {padding-right:320px;}
.append-9 {padding-right:360px;}
.append-10 {padding-right:400px;}
.append-11 {padding-right:440px;}
.append-12 {padding-right:480px;}
.append-13 {padding-right:520px;}
.append-14 {padding-right:560px;}
.append-15 {padding-right:600px;}
.append-16 {padding-right:640px;}
.append-17 {padding-right:680px;}
.append-18 {padding-right:720px;}
.append-19 {padding-right:760px;}
.append-20 {padding-right:800px;}
.append-21 {padding-right:840px;}
.append-22 {padding-right:880px;}
.append-23 {padding-right:920px;}
.prepend-1 {padding-left:40px;}
.prepend-2 {padding-left:80px;}
.prepend-3 {padding-left:120px;}
.prepend-4 {padding-left:160px;}
.prepend-5 {padding-left:200px;}
.prepend-6 {padding-left:240px;}
.prepend-7 {padding-left:280px;}
.prepend-8 {padding-left:320px;}
.prepend-9 {padding-left:360px;}
.prepend-10 {padding-left:400px;}
.prepend-11 {padding-left:440px;}
.prepend-12 {padding-left:480px;}
.prepend-13 {padding-left:520px;}
.prepend-14 {padding-left:560px;}
.prepend-15 {padding-left:600px;}
.prepend-16 {padding-left:640px;}
.prepend-17 {padding-left:680px;}
.prepend-18 {padding-left:720px;}
.prepend-19 {padding-left:760px;}
.prepend-20 {padding-left:800px;}
.prepend-21 {padding-left:840px;}
.prepend-22 {padding-left:880px;}
.prepend-23 {padding-left:920px;}
div.border {padding-right:4px;margin-right:5px;border-right:1px solid #eee;}
div.colborder {padding-right:24px;margin-right:25px;border-right:1px solid #eee;}
.pull-1 {margin-left:-40px;}
.pull-2 {margin-left:-80px;}
.pull-3 {margin-left:-120px;}
.pull-4 {margin-left:-160px;}
.pull-5 {margin-left:-200px;}
.pull-6 {margin-left:-240px;}
.pull-7 {margin-left:-280px;}
.pull-8 {margin-left:-320px;}
.pull-9 {margin-left:-360px;}
.pull-10 {margin-left:-400px;}
.pull-11 {margin-left:-440px;}
.pull-12 {margin-left:-480px;}
.pull-13 {margin-left:-520px;}
.pull-14 {margin-left:-560px;}
.pull-15 {margin-left:-600px;}
.pull-16 {margin-left:-640px;}
.pull-17 {margin-left:-680px;}
.pull-18 {margin-left:-720px;}
.pull-19 {margin-left:-760px;}
.pull-20 {margin-left:-800px;}
.pull-21 {margin-left:-840px;}
.pull-22 {margin-left:-880px;}
.pull-23 {margin-left:-920px;}
.pull-24 {margin-left:-960px;}
.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {float:left;position:relative;}
.push-1 {margin:0 -40px 1.5em 40px;}
.push-2 {margin:0 -80px 1.5em 80px;}
.push-3 {margin:0 -120px 1.5em 120px;}
.push-4 {margin:0 -160px 1.5em 160px;}
.push-5 {margin:0 -200px 1.5em 200px;}
.push-6 {margin:0 -240px 1.5em 240px;}
.push-7 {margin:0 -280px 1.5em 280px;}
.push-8 {margin:0 -320px 1.5em 320px;}
.push-9 {margin:0 -360px 1.5em 360px;}
.push-10 {margin:0 -400px 1.5em 400px;}
.push-11 {margin:0 -440px 1.5em 440px;}
.push-12 {margin:0 -480px 1.5em 480px;}
.push-13 {margin:0 -520px 1.5em 520px;}
.push-14 {margin:0 -560px 1.5em 560px;}
.push-15 {margin:0 -600px 1.5em 600px;}
.push-16 {margin:0 -640px 1.5em 640px;}
.push-17 {margin:0 -680px 1.5em 680px;}
.push-18 {margin:0 -720px 1.5em 720px;}
.push-19 {margin:0 -760px 1.5em 760px;}
.push-20 {margin:0 -800px 1.5em 800px;}
.push-21 {margin:0 -840px 1.5em 840px;}
.push-22 {margin:0 -880px 1.5em 880px;}
.push-23 {margin:0 -920px 1.5em 920px;}
.push-24 {margin:0 -960px 1.5em 960px;}
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {float:right;position:relative;}
.prepend-top {margin-top:1.5em;}
.append-bottom {margin-bottom:1.5em;}
.box {padding:1.5em;margin-bottom:1.5em;background:#E5ECF9;}
hr {background:#ddd;color:#ddd;clear:both;float:none;width:100%;height:.1em;margin:0 0 1.45em;border:none;}
hr.space {background:#fff;color:#fff;visibility:hidden;}
.clearfix:after, .container:after {content:"\0020";display:block;height:0;clear:both;visibility:hidden;overflow:hidden;}
.clearfix, .container {display:block;}
.clear {clear:both;}
/* fancy-type */
p + p {text-indent:2em;margin-top:-1.5em;}
form p + p {text-indent:0;}
.alt {color:#666;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua", Georgia, serif;font-style:italic;font-weight:normal;}
.dquo {margin-left:-.5em;}
p.incr, .incr p {font-size:10px;line-height:1.44em;margin-bottom:1.5em;}
.caps {font-variant:small-caps;letter-spacing:1px;text-transform:lowercase;font-size:1.2em;line-height:1%;font-weight:bold;padding:0 2px;}
/* buttons */
a.button, button {display:block;float:left;margin:0.7em 0.5em 0.7em 0;padding:5px 10px 5px 7px;border:1px solid #dedede;border-top:1px solid #eee;border-left:1px solid #eee;background-color:#f5f5f5;font-family:"Lucida Grande", Tahoma, Arial, Verdana, sans-serif;font-size:100%;line-height:130%;text-decoration:none;font-weight:bold;color:#565656;cursor:pointer;}
button {width:auto;overflow:visible;padding:4px 10px 3px 7px;}
button[type] {padding:4px 10px 4px 7px;line-height:17px;}
*:first-child+html button[type] {padding:4px 10px 3px 7px;}
button img, a.button img {margin:0 3px -3px 0 !important;padding:0;border:none;width:16px;height:16px;float:none;}
button:hover, a.button:hover {background-color:#dff4ff;border:1px solid #c2e1ef;color:#336699;}
a.button:active {background-color:#6299c5;border:1px solid #6299c5;color:#fff;}
body .positive {color:#529214;}
a.positive:hover, button.positive:hover {background-color:#E6EFC2;border:1px solid #C6D880;color:#529214;}
a.positive:active {background-color:#529214;border:1px solid #529214;color:#fff;}
body .negative {color:#d12f19;}
a.negative:hover, button.negative:hover {background-color:#fbe3e4;border:1px solid #fbc2c4;color:#d12f19;}
a.negative:active {background-color:#d12f19;border:1px solid #d12f19;color:#fff;}
/* --------------------------------------------------------------
forms.css
* Sets up some default styling for forms
* Gives you classes to enhance your forms
Usage:
* For text fields, use class .title or .text
* For inline forms, use .inline (even when using columns)
-------------------------------------------------------------- */
label { font-weight: bold; }
fieldset { padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc; }
legend { font-weight: bold; font-size:1.2em; }
/* Form fields
-------------------------------------------------------------- */
input[type=text], input[type=password],
input.text, input.title,
textarea, select {
background-color:#fff;
border:1px solid #bbb;
}
input[type=text]:focus, input[type=password]:focus,
input.text:focus, input.title:focus,
textarea:focus, select:focus {
border-color:#666;
}
input[type=text], input[type=password],
input.text, input.title,
textarea, select {
margin:0.5em 0;
}
input.text,
input.title { width: 300px; padding:5px; }
input.title { font-size:1.5em; }
textarea { width: 390px; height: 250px; padding:5px; }
input[type=checkbox], input[type=radio],
input.checkbox, input.radio {
position:relative; top:.25em;
}
form.inline { line-height:3; }
form.inline p { margin-bottom:0; }
/* Success, notice and error boxes
-------------------------------------------------------------- */
.error,
.notice,
.success { padding: .8em; margin-bottom: 1em; border: 2px solid #ddd; }
.error { background: #FBE3E4; color: #8a1f11; border-color: #FBC2C4; }
.notice { background: #FFF6BF; color: #514721; border-color: #FFD324; }
.success { background: #E6EFC2; color: #264409; border-color: #C6D880; }
.error a { color: #8a1f11; }
.notice a { color: #514721; }
.success a { color: #264409; }
/* --------------------------------------------------------------
grid.css
* Sets up an easy-to-use grid of 24 columns.
By default, the grid is 950px wide, with 24 columns
spanning 30px, and a 10px margin between columns.
If you need fewer or more columns, namespaces or semantic
element names, use the compressor script (lib/compress.rb)
Note: Changes made in this file will not be applied when
using the compressor: make changes in lib/blueprint/grid.css.rb
-------------------------------------------------------------- */
/* A container should group all your columns. */
.container {
width: 950px;
margin: 0 auto;
}
/* Use this class on any div.span / container to see the grid. */
.showgrid {
background: url(src/grid.png);
}
/* Columns
-------------------------------------------------------------- */
/* Sets up basic grid floating and margin. */
.column, div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, div.span-21, div.span-22, div.span-23, div.span-24 {
float: left;
margin-right: 10px;
}
/* The last column in a row needs this class. */
.last, div.last { margin-right: 0; }
/* Use these classes to set the width of a column. */
.span-1 {width: 30px;}
.span-2 {width: 70px;}
.span-3 {width: 110px;}
.span-4 {width: 150px;}
.span-5 {width: 190px;}
.span-6 {width: 230px;}
.span-7 {width: 270px;}
.span-8 {width: 310px;}
.span-9 {width: 350px;}
.span-10 {width: 390px;}
.span-11 {width: 430px;}
.span-12 {width: 470px;}
.span-13 {width: 510px;}
.span-14 {width: 550px;}
.span-15 {width: 590px;}
.span-16 {width: 630px;}
.span-17 {width: 670px;}
.span-18 {width: 710px;}
.span-19 {width: 750px;}
.span-20 {width: 790px;}
.span-21 {width: 830px;}
.span-22 {width: 870px;}
.span-23 {width: 910px;}
.span-24, div.span-24 { width:950px; margin-right:0; }
/* Use these classes to set the width of an input. */
input.span-1, textarea.span-1, input.span-2, textarea.span-2, input.span-3, textarea.span-3, input.span-4, textarea.span-4, input.span-5, textarea.span-5, input.span-6, textarea.span-6, input.span-7, textarea.span-7, input.span-8, textarea.span-8, input.span-9, textarea.span-9, input.span-10, textarea.span-10, input.span-11, textarea.span-11, input.span-12, textarea.span-12, input.span-13, textarea.span-13, input.span-14, textarea.span-14, input.span-15, textarea.span-15, input.span-16, textarea.span-16, input.span-17, textarea.span-17, input.span-18, textarea.span-18, input.span-19, textarea.span-19, input.span-20, textarea.span-20, input.span-21, textarea.span-21, input.span-22, textarea.span-22, input.span-23, textarea.span-23, input.span-24, textarea.span-24 {
border-left-width: 1px!important;
border-right-width: 1px!important;
padding-left: 5px!important;
padding-right: 5px!important;
}
input.span-1, textarea.span-1 { width: 18px!important; }
input.span-2, textarea.span-2 { width: 58px!important; }
input.span-3, textarea.span-3 { width: 98px!important; }
input.span-4, textarea.span-4 { width: 138px!important; }
input.span-5, textarea.span-5 { width: 178px!important; }
input.span-6, textarea.span-6 { width: 218px!important; }
input.span-7, textarea.span-7 { width: 258px!important; }
input.span-8, textarea.span-8 { width: 298px!important; }
input.span-9, textarea.span-9 { width: 338px!important; }
input.span-10, textarea.span-10 { width: 378px!important; }
input.span-11, textarea.span-11 { width: 418px!important; }
input.span-12, textarea.span-12 { width: 458px!important; }
input.span-13, textarea.span-13 { width: 498px!important; }
input.span-14, textarea.span-14 { width: 538px!important; }
input.span-15, textarea.span-15 { width: 578px!important; }
input.span-16, textarea.span-16 { width: 618px!important; }
input.span-17, textarea.span-17 { width: 658px!important; }
input.span-18, textarea.span-18 { width: 698px!important; }
input.span-19, textarea.span-19 { width: 738px!important; }
input.span-20, textarea.span-20 { width: 778px!important; }
input.span-21, textarea.span-21 { width: 818px!important; }
input.span-22, textarea.span-22 { width: 858px!important; }
input.span-23, textarea.span-23 { width: 898px!important; }
input.span-24, textarea.span-24 { width: 938px!important; }
/* Add these to a column to append empty cols. */
.append-1 { padding-right: 40px;}
.append-2 { padding-right: 80px;}
.append-3 { padding-right: 120px;}
.append-4 { padding-right: 160px;}
.append-5 { padding-right: 200px;}
.append-6 { padding-right: 240px;}
.append-7 { padding-right: 280px;}
.append-8 { padding-right: 320px;}
.append-9 { padding-right: 360px;}
.append-10 { padding-right: 400px;}
.append-11 { padding-right: 440px;}
.append-12 { padding-right: 480px;}
.append-13 { padding-right: 520px;}
.append-14 { padding-right: 560px;}
.append-15 { padding-right: 600px;}
.append-16 { padding-right: 640px;}
.append-17 { padding-right: 680px;}
.append-18 { padding-right: 720px;}
.append-19 { padding-right: 760px;}
.append-20 { padding-right: 800px;}
.append-21 { padding-right: 840px;}
.append-22 { padding-right: 880px;}
.append-23 { padding-right: 920px;}
/* Add these to a column to prepend empty cols. */
.prepend-1 { padding-left: 40px;}
.prepend-2 { padding-left: 80px;}
.prepend-3 { padding-left: 120px;}
.prepend-4 { padding-left: 160px;}
.prepend-5 { padding-left: 200px;}
.prepend-6 { padding-left: 240px;}
.prepend-7 { padding-left: 280px;}
.prepend-8 { padding-left: 320px;}
.prepend-9 { padding-left: 360px;}
.prepend-10 { padding-left: 400px;}
.prepend-11 { padding-left: 440px;}
.prepend-12 { padding-left: 480px;}
.prepend-13 { padding-left: 520px;}
.prepend-14 { padding-left: 560px;}
.prepend-15 { padding-left: 600px;}
.prepend-16 { padding-left: 640px;}
.prepend-17 { padding-left: 680px;}
.prepend-18 { padding-left: 720px;}
.prepend-19 { padding-left: 760px;}
.prepend-20 { padding-left: 800px;}
.prepend-21 { padding-left: 840px;}
.prepend-22 { padding-left: 880px;}
.prepend-23 { padding-left: 920px;}
/* Border on right hand side of a column. */
div.border {
padding-right: 4px;
margin-right: 5px;
border-right: 1px solid #eee;
}
/* Border with more whitespace, spans one column. */
div.colborder {
padding-right: 24px;
margin-right: 25px;
border-right: 1px solid #eee;
}
/* Use these classes on an element to push it into the
next column, or to pull it into the previous column. */
.pull-1 { margin-left: -40px; }
.pull-2 { margin-left: -80px; }
.pull-3 { margin-left: -120px; }
.pull-4 { margin-left: -160px; }
.pull-5 { margin-left: -200px; }
.pull-6 { margin-left: -240px; }
.pull-7 { margin-left: -280px; }
.pull-8 { margin-left: -320px; }
.pull-9 { margin-left: -360px; }
.pull-10 { margin-left: -400px; }
.pull-11 { margin-left: -440px; }
.pull-12 { margin-left: -480px; }
.pull-13 { margin-left: -520px; }
.pull-14 { margin-left: -560px; }
.pull-15 { margin-left: -600px; }
.pull-16 { margin-left: -640px; }
.pull-17 { margin-left: -680px; }
.pull-18 { margin-left: -720px; }
.pull-19 { margin-left: -760px; }
.pull-20 { margin-left: -800px; }
.pull-21 { margin-left: -840px; }
.pull-22 { margin-left: -880px; }
.pull-23 { margin-left: -920px; }
.pull-24 { margin-left: -960px; }
.pull-1, .pull-2, .pull-3, .pull-4, .pull-5, .pull-6, .pull-7, .pull-8, .pull-9, .pull-10, .pull-11, .pull-12, .pull-13, .pull-14, .pull-15, .pull-16, .pull-17, .pull-18, .pull-19, .pull-20, .pull-21, .pull-22, .pull-23, .pull-24 {float: left; position:relative;}
.push-1 { margin: 0 -40px 1.5em 40px; }
.push-2 { margin: 0 -80px 1.5em 80px; }
.push-3 { margin: 0 -120px 1.5em 120px; }
.push-4 { margin: 0 -160px 1.5em 160px; }
.push-5 { margin: 0 -200px 1.5em 200px; }
.push-6 { margin: 0 -240px 1.5em 240px; }
.push-7 { margin: 0 -280px 1.5em 280px; }
.push-8 { margin: 0 -320px 1.5em 320px; }
.push-9 { margin: 0 -360px 1.5em 360px; }
.push-10 { margin: 0 -400px 1.5em 400px; }
.push-11 { margin: 0 -440px 1.5em 440px; }
.push-12 { margin: 0 -480px 1.5em 480px; }
.push-13 { margin: 0 -520px 1.5em 520px; }
.push-14 { margin: 0 -560px 1.5em 560px; }
.push-15 { margin: 0 -600px 1.5em 600px; }
.push-16 { margin: 0 -640px 1.5em 640px; }
.push-17 { margin: 0 -680px 1.5em 680px; }
.push-18 { margin: 0 -720px 1.5em 720px; }
.push-19 { margin: 0 -760px 1.5em 760px; }
.push-20 { margin: 0 -800px 1.5em 800px; }
.push-21 { margin: 0 -840px 1.5em 840px; }
.push-22 { margin: 0 -880px 1.5em 880px; }
.push-23 { margin: 0 -920px 1.5em 920px; }
.push-24 { margin: 0 -960px 1.5em 960px; }
.push-1, .push-2, .push-3, .push-4, .push-5, .push-6, .push-7, .push-8, .push-9, .push-10, .push-11, .push-12, .push-13, .push-14, .push-15, .push-16, .push-17, .push-18, .push-19, .push-20, .push-21, .push-22, .push-23, .push-24 {float: right; position:relative;}
/* Misc classes and elements
-------------------------------------------------------------- */
/* In case you need to add a gutter above/below an element */
.prepend-top {
margin-top:1.5em;
}
.append-bottom {
margin-bottom:1.5em;
}
/* Use a .box to create a padded box inside a column. */
.box {
padding: 1.5em;
margin-bottom: 1.5em;
background: #E5ECF9;
}
/* Use this to create a horizontal ruler across a column. */
hr {
background: #ddd;
color: #ddd;
clear: both;
float: none;
width: 100%;
height: .1em;
margin: 0 0 1.45em;
border: none;
}
hr.space {
background: #fff;
color: #fff;
visibility: hidden;
}
/* Clearing floats without extra markup
Based on How To Clear Floats Without Structural Markup by PiE
[http://www.positioniseverything.net/easyclearing.html] */
.clearfix:after, .container:after {
content: "\0020";
display: block;
height: 0;
clear: both;
visibility: hidden;
overflow:hidden;
}
.clearfix, .container {display: block;}
/* Regular clearing
apply to column that should drop below previous ones. */
.clear { clear:both; }
�PNG

IHDR()��bKGD������� pHYsHHF�k>AIDATH�c|�����,D�cǑF8����u�@�Q�:p�����Y��_�"NN�߄IEND�B`�
/* --------------------------------------------------------------
ie.css
Contains every hack for Internet Explorer,
so that our core files stay sweet and nimble.
-------------------------------------------------------------- */
/* Make sure the layout is centered in IE5 */
body { text-align: center; }
.container { text-align: left; }
/* Fixes IE margin bugs */
* html .column, * html div.span-1, * html div.span-2,
* html div.span-3, * html div.span-4, * html div.span-5,
* html div.span-6, * html div.span-7, * html div.span-8,
* html div.span-9, * html div.span-10, * html div.span-11,
* html div.span-12, * html div.span-13, * html div.span-14,
* html div.span-15, * html div.span-16, * html div.span-17,
* html div.span-18, * html div.span-19, * html div.span-20,
* html div.span-21, * html div.span-22, * html div.span-23,
* html div.span-24 { display:inline; overflow-x: hidden; }
/* Elements
-------------------------------------------------------------- */
/* Fixes incorrect styling of legend in IE6. */
* html legend { margin:0px -8px 16px 0; padding:0; }
/* Fixes wrong line-height on sup/sub in IE. */
sup { vertical-align:text-top; }
sub { vertical-align:text-bottom; }
/* Fixes IE7 missing wrapping of code elements. */
html>body p code { *white-space: normal; }
/* IE 6&7 has problems with setting proper <hr> margins. */
hr { margin:-8px auto 11px; }
/* Explicitly set interpolation, allowing dynamically resized images to not look horrible */
img { -ms-interpolation-mode:bicubic; }
/* Clearing
-------------------------------------------------------------- */
/* Makes clearfix actually work in IE */
.clearfix, .container { display:inline-block; }
* html .clearfix,
* html .container { height:1%; }
/* Forms
-------------------------------------------------------------- */
/* Fixes padding on fieldset */
fieldset { padding-top:0; }
/* Makes classic textareas in IE 6 resemble other browsers */
textarea { overflow:auto; }
/* Fixes rule that IE 6 ignores */
input.text, input.title, textarea { background-color:#fff; border:1px solid #bbb; }
input.text:focus, input.title:focus { border-color:#666; }
input.text, input.title, textarea, select { margin:0.5em 0; }
input.checkbox, input.radio { position:relative; top:.25em; }
/* Fixes alignment of inline form elements */
form.inline div, form.inline p { vertical-align:middle; }
form.inline label { position:relative;top:-0.25em; }
form.inline input.checkbox, form.inline input.radio,
form.inline input.button, form.inline button {
margin:0.5em 0;
}
button, input.button { position:relative;top:0.25em; }
/* --------------------------------------------------------------
print.css
* Gives you some sensible styles for printing pages.
* See Readme file in this directory for further instructions.
Some additions you'll want to make, customized to your markup:
#header, #footer, #navigation { display:none; }
-------------------------------------------------------------- */
body {
line-height: 1.5;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
color:#000;
background: none;
font-size: 10pt;
}
/* Layout
-------------------------------------------------------------- */
.container {
background: none;
}
hr {
background:#ccc;
color:#ccc;
width:100%;
height:2px;
margin:2em 0;
padding:0;
border:none;
}
hr.space {
background: #fff;
color: #fff;
visibility: hidden;
}
/* Text
-------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 { font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; }
code { font:.9em "Courier New", Monaco, Courier, monospace; }
a img { border:none; }
p img.top { margin-top: 0; }
blockquote {
margin:1.5em;
padding:1em;
font-style:italic;
font-size:.9em;
}
.small { font-size: .9em; }
.large { font-size: 1.1em; }
.quiet { color: #999; }
.hide { display:none; }
/* Links
-------------------------------------------------------------- */
a:link, a:visited {
background: transparent;
font-weight:700;
text-decoration: underline;
}
a:link:after, a:visited:after {
content: " (" attr(href) ")";
font-size: 90%;
}
/* If you're having trouble printing relative links, uncomment and customize this:
(note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
/* a[href^="/"]:after {
content: " (http://www.yourdomain.com" attr(href) ") ";
} */
/* --------------------------------------------------------------
reset.css
* Resets default browser CSS.
-------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, img, q, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
}
body {
line-height: 1.5;
}
/* Tables still need 'cellspacing="0"' in the markup. */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }
/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }
/* Remove annoying border on linked images. */
a img { border: none; }
/* --------------------------------------------------------------
typography.css
* Sets up some sensible default typography.
-------------------------------------------------------------- */
/* Default font settings.
The font-size percentage is of 16px. (0.75 * 16px = 12px) */
html { font-size:100.01%; }
body {
font-size: 75%;
color: #222;
background: #fff;
font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
}
/* Headings
-------------------------------------------------------------- */
h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }
h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }
h1 img, h2 img, h3 img,
h4 img, h5 img, h6 img {
margin: 0;
}
/* Text elements
-------------------------------------------------------------- */
p { margin: 0 0 1.5em; }
p img.left { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }
a:focus,
a:hover { color: #000; }
a { color: #009; text-decoration: underline; }
blockquote { margin: 1.5em; color: #666; font-style: italic; }
strong { font-weight: bold; }
em,dfn { font-style: italic; }
dfn { font-weight: bold; }
sup, sub { line-height: 0; }
abbr,
acronym { border-bottom: 1px dotted #666; }
address { margin: 0 0 1.5em; font-style: italic; }
del { color:#666; }
pre { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }
/* Lists
-------------------------------------------------------------- */
li ul,
li ol { margin: 0; }
ul, ol { margin: 0 1.5em 1.5em 0; padding-left: 3.333em; }
ul { list-style-type: disc; }
ol { list-style-type: decimal; }
dl { margin: 0 0 1.5em 0; }
dl dt { font-weight: bold; }
dd { margin-left: 1.5em;}
/* Tables
-------------------------------------------------------------- */
table { margin-bottom: 1.4em; width:100%; }
th { font-weight: bold; }
thead th { background: #c3d9ff; }
th,td,caption { padding: 4px 10px 4px 5px; }
tr.even td { background: #e5ecf9; }
tfoot { font-style: italic; }
caption { background: #eee; }
/* Misc classes
-------------------------------------------------------------- */
.small { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide { display: none; }
.quiet { color: #666; }
.loud { color: #000; }
.highlight { background:#ff0; }
.added { background:#060; color: #fff; }
.removed { background:#900; color: #fff; }
.first { margin-left:0; padding-left:0; }
.last { margin-right:0; padding-right:0; }
.top { margin-top:0; padding-top:0; }
.bottom { margin-bottom:0; padding-bottom:0; }
a,a:visited,a:link,a:active {
color: #59924B;
background-color: transparent;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: white;
background-color: #65a242;
text-decoration: none;
font-weight: bold;
}
button {
color: #fff;
background: #fff url(../images/btn.bg.gif) 0 0 repeat-x;
border-style: none;
}
button:hover {
color: yellow;
background: #fff url(../images/btn.bg.gif) 0 0 repeat-x;
border-style: none;
}
.summary {
width: 100%;
border: 1px solid #414f23;
border-collapse: collapse;
}
.summary thead th {
border-left: 1px solid #414f23;
background: #fff url(../images/th.bg.gif) 0 100% repeat-x;
border-bottom: 1px solid #414f23;
padding: 6px;
text-align: left;
font-size: small;
}
.summary tbody td {
border-left: 1px solid #9cac7c;
padding: 4px;
border-bottom: 1px solid #9cac7c;
font-size: 8pt;
}
.label {
font-weight: bold;
}
div.confirmed {
border: solid 1px #CCCCCC;
background: #E4F7CD;
padding: 4px;
font-weight: bold;
margin-bottom: 4px;
}
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<!-- Scans for application @Components to deploy -->
<context:component-scan base-package="com.mangocity.tmc.hotel" />
<!-- Imports the configurations of the different infrastructure systems of the application -->
<import resource="webmvc-config.xml" />
</beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<!-- **************************************************************** -->
<!-- RESOURCE FOLDERS CONFIGURATION -->
<!-- Dispatcher configuration for serving static resources -->
<!-- **************************************************************** -->
<mvc:resources location="/images/" mapping="/images/**"/>
<mvc:resources location="/styles/" mapping="/styles/**"/>
<!-- **************************************************************** -->
<!-- SPRING ANNOTATION PROCESSING -->
<!-- **************************************************************** -->
<mvc:annotation-driven/>
<mvc:view-controller path="/" view-name="index" />
<context:component-scan base-package="com.mangocity.tmc.hotel"/>
<!-- **************************************************************** -->
<!-- MESSAGE EXTERNALIZATION/INTERNATIONALIZATION -->
<!-- Standard Spring MessageSource implementation -->
<!-- **************************************************************** -->
<!--<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">-->
<!--<property name="basename" value="message/booking_resource"/>-->
<!--</bean>-->
<bean id="iMessageResolver" class="org.thymeleaf.messageresolver.StandardMessageResolver">
<property name="defaultMessages" value="/WEB-INF/message/index.properties"/>
</bean>
<!-- **************************************************************** -->
<!-- THYMELEAF-SPECIFIC ARTIFACTS -->
<!-- TemplateResolver <- TemplateEngine <- ViewResolver -->
<!-- **************************************************************** -->
<bean id="templateResolver" class="org.thymeleaf.templateresolver.ServletContextTemplateResolver">
<property name="prefix" value="/WEB-INF/"/>
<property name="suffix" value=".html"/>
<property name="templateMode" value="HTML5"/>
<!--set the expire TTL to 1 hour. If not set, entries would live in cache until expelled by LRU-->
<property name="cacheTTLMs" value="3600000"/>
</bean>
<bean id="templateEngine" class="org.thymeleaf.spring3.SpringTemplateEngine">
<property name="templateResolver" ref="templateResolver"/>
<property name="messageResolver" ref="iMessageResolver"/>
</bean>
<!-- Resolves logical view names returned by Controllers to Tiles; a view name to resolve is treated as the name of a tiles definition -->
<bean class="org.thymeleaf.spring3.view.ThymeleafViewResolver">
<property name="templateEngine" ref="templateEngine"/>
</bean>
</beans>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" lang="en">
<head>
<title>Spring Travel: Spring MVC and Web Flow Reference Application</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" media="screen, projection" href="../styles/blueprint/screen.css"/>
<link rel="stylesheet" type="text/css" media="print" href="../styles/blueprint/print.css" th:href="@{/styles/blueprint/print.css}"/>
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" media="screen, projection" href="../styles/blueprint/ie.css"/>
<![endif]-->
<link rel="stylesheet" type="text/css" media="screen" href="../styles/booking.css"/>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Some styles and scripts are served from spring-js-resources-{ver}.jar at -->
<!-- runtime. Therefore not available for static prototyping. See the -->
<!-- layouts/standard.html template file for detail. -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
</head>
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- START of the content to be included in the execution result. -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<!-- Only the markup inside this <body> would be required in this -->
<!-- template if no static prototyping was intended. -->
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<body>
<div>
<h1>Welcome to Spring Travel</h1>
<p>
This sample demonstrates how to use Spring MVC and Spring Web Flow together with Thymeleaf and Tiles.
</p>
<hr/>
<p>
The key features illustrated in this sample include:
</p>
<ul>
<li>A declarative navigation model enabling full browser button support and dynamic navigation rules</li>
<li>A fine-grained state management model, including support for ConversationScope and ViewScope</li>
<li>Modularization of web application functionality by domain use case, illustrating project structure
best-practices
</li>
<li>Spring Expression Language (SpEL) integration</li>
<li>Spring 3 formatting annotations @DateTimeFormat, @NumberFormat</li>
<li>Spring MVC custom namespace</li>
<li>Spring Security integration</li>
<li>Annotated POJO @Controllers for implementing RESTful user interactions.</li>
<li>Declarative page authoring with Thymeleaf and its Spring MVC's integration features.</li>
<li>Page layout and composition with Apache Tiles</li>
<li>A JavaScript API for decorating HTML elements with behaviors such as Ajax, validation, and effects.</li>
<li>A grid layout with Blueprint CSS</li>
<li>Exception handling support across all layers of the application</li>
<li>SpringSource Tool Suite integration, with support for graphical flow modeling and visualization</li>
<li><p th:utext="#{welcome}">Welcome to our grocery store!</p></li>
</ul>
<p>
<a href="hotels/search.html" th:href="@{/hotels/search}">Start your Spring Travel experience</a>
</p>
</div>
</body>
</html>
welcome = Welcome to our Demo
welcome = ��ӭ�����̿�
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
version="2.5" metadata-complete="true">
<!-- Filter 定义 -->
<!-- Character Encoding filter -->
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<!-- Filter 映射 -->
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!-- The front controller of this Spring Web application, responsible for handling all application requests -->
<servlet>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/config/web-application-config.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<!-- Map all *.spring requests to the DispatcherServlet for handling -->
<servlet-mapping>
<servlet-name>Spring MVC Dispatcher Servlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment