vedas

Clone or download

Modified Files

M pom.xml
+17 −0
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<modelVersion>4.0.0</modelVersion>
<parent>
<parent>
<groupId>org.springframework.boot</groupId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
<version>2.3.4.RELEASE</version>
<relativePath /> <!-- lookup parent from repository -->
<relativePath /> <!-- lookup parent from repository -->
</parent>
</parent>
<groupId>Admistration</groupId>
<groupId>Admistration</groupId>
<artifactId>AdminForm</artifactId>
<artifactId>AdminForm</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1-SNAPSHOT</version>
<packaging>war</packaging>
<packaging>war</packaging>
<name>AdminForm</name>
<name>AdminForm</name>
<description>Spring Boot Admin Form page for Gis project</description>
<description>Spring Boot Admin Form page for Gis project</description>
<properties>
<properties>
<java.version>1.8.0</java.version>
<java.version>1.8.0</java.version>
</properties>
</properties>
<dependencies>
<dependencies>
<dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>org.hibernate</groupId>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-spatial</artifactId>
<artifactId>hibernate-spatial</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>org.hibernate</groupId>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<artifactId>hibernate-core</artifactId>
</dependency>
</dependency>
<!-- Need this to compile JSP -->
<!-- Need this to compile JSP -->
<dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
<scope>provided</scope>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<scope>runtime</scope>
<optional>true</optional>
<optional>true</optional>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>org.postgresql</groupId>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
<scope>runtime</scope>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<scope>test</scope>
<exclusions>
<exclusions>
<exclusion>
<exclusion>
<groupId>org.junit.vintage</groupId>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusion>
</exclusions>
</exclusions>
</dependency>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
</dependency>
<dependency>
<dependency>
<groupId>javax.servlet</groupId>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<artifactId>javax.servlet-api</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>javax.servlet.jsp</groupId>
<groupId>javax.servlet.jsp</groupId>
<artifactId>javax.servlet.jsp-api</artifactId>
<artifactId>javax.servlet.jsp-api</artifactId>
<version>2.3.1</version>
<version>2.3.1</version>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>javax.servlet</groupId>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<artifactId>jstl</artifactId>
</dependency>
</dependency>
</dependencies>
</dependencies>
<build>
<build>
<plugins>
<plugins>
<plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<configuration>
<source>1.8</source>
<source>1.8</source>
<target>1.8</target>
<target>1.8</target>
</configuration>
</configuration>
</plugin>
</plugin>
</plugins>
</plugins>
</build>
</build>
</project>
</project>
package com.GisSatellite.Server.Controller;
import java.util.HashSet;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import com.GisSatellite.Server.Entities.Role;
import com.GisSatellite.Server.Entities.User;
import com.GisSatellite.Server.Repository.UserRepository;
@Controller
public class LoginController {
@Autowired
private BCryptPasswordEncoder passwordEncoder;
@Autowired
private UserRepository userRepository;
@RequestMapping("/")
public String Default() {
return "login";
}
@RequestMapping("/login")
public String login() {
return "login";
}
@RequestMapping("/logout")
public String logout() {
return "login";
}
@RequestMapping(value = "/register", method = RequestMethod.GET)
public String registerPage(Model model) {
model.addAttribute("user", new User());
return "register";
}
@RequestMapping(value = "/register", method = RequestMethod.POST)
public String saveRegisterPage(@Validated @ModelAttribute("user") User user, @RequestParam String role, BindingResult result, Model model,
Map<String, Object> map) {
model.addAttribute("user", user);
if (result.hasErrors()) {
return "register";
}
else
{
Role r=new Role();
r.setRole(role);
user.setRoles(new HashSet<Role>() {{
add(r);
}});
String pwd = user.getPassword();
String encryptPwd = passwordEncoder.encode(pwd);
user.setPassword(encryptPwd);
map.put("message", "Successful");
userRepository.save(user);
}
return "register";
}
}
package com.GisSatellite.Server.Controller;
package com.GisSatellite.Server.Controller;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayInputStream;
import java.io.File;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.charset.StandardCharsets;
import java.util.HashMap;
import java.util.HashMap;
import java.util.List;
import java.util.List;
import java.util.Scanner;
import java.util.Scanner;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequest;
import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.apache.tomcat.util.http.fileupload.IOUtils;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.io.WKTReader;
import org.locationtech.jts.io.WKTReader;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.data.repository.query.Param;
import org.springframework.data.repository.query.Param;
import org.springframework.security.access.prepost.PreAuthorize;
import org.springframework.stereotype.Controller;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.ui.Model;
import org.springframework.ui.ModelMap;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.validation.BindingResult;
import org.springframework.validation.annotation.Validated;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import org.springframework.web.multipart.MultipartHttpServletRequest;
import com.GisSatellite.Server.Entities.Satellite;
import com.GisSatellite.Server.Entities.Satellite;
import com.GisSatellite.Server.Repository.SatelliteRepository;
import com.GisSatellite.Server.Repository.SatelliteRepository;
import com.GisSatellite.Server.Services.SatelliteServices;
import com.GisSatellite.Server.Services.SatelliteServices;
import com.sun.el.parser.ParseException;
import com.sun.el.parser.ParseException;
@Controller
@Controller
@PreAuthorize("hasRole('admin')")
public class SatelliteController {
public class SatelliteController {
@Autowired
@Autowired
private SatelliteServices satelliteServices;
private SatelliteServices satelliteServices;
@Autowired
@Autowired
private SatelliteRepository satelliteRepo;
private SatelliteRepository satelliteRepo;
@Autowired
@Autowired
private CommonController comcon;
private CommonController comcon;
@RequestMapping("/satelliteform")
@RequestMapping("/satelliteform")
public String home1() {
public String home1() {
return "satelliteform";
return "satelliteform";
}
}
@RequestMapping("/attributenew")
public String homenew() {
@GetMapping("/admin")
public String admin() {
return "attributenew";
return "attributenew";
}
}
/*
* @RequestMapping("/attributenew") public String homenew() { return
* "attributenew"; }
*/
@RequestMapping("/attribute")
@RequestMapping("/attribute")
public String home2() {
public String home2() {
return "attribute";
return "attribute";
}
}
@RequestMapping(path="/attribute", method=RequestMethod.GET)
@RequestMapping(path="/attribute", method=RequestMethod.GET)
public String getData(Model model,@Param("keyword") String keyword) {
public String getData(Model model,@Param("keyword") String keyword) {
List<Satellite> list = satelliteServices.listAll(keyword);
List<Satellite> list = satelliteServices.listAll(keyword);
model.addAttribute("list", list);
model.addAttribute("list", list);
model.addAttribute("keyword", keyword);
model.addAttribute("keyword", keyword);
return "attribute";
return "attribute";
}
}
@RequestMapping(path="/success", method=RequestMethod.POST, consumes = {"multipart/form-data"})
@RequestMapping(path="/success", method=RequestMethod.POST, consumes = {"multipart/form-data"})
public String handlerform(@ModelAttribute @Validated Satellite satelliteform,BindingResult bindingResult,
public String handlerform(@ModelAttribute @Validated Satellite satelliteform,BindingResult bindingResult,
@RequestParam(value = "image1") MultipartFile image1,
@RequestParam(value = "image1") MultipartFile image1,
HttpServletRequest request, MultipartHttpServletRequest req,
HttpServletRequest request, MultipartHttpServletRequest req,
@RequestParam(value = "msg", required = false) String msg, ModelMap modelMap) throws ParseException
@RequestParam(value = "msg", required = false) String msg, ModelMap modelMap) throws ParseException
{
{
try {
try {
if (!image1.isEmpty()) {
if (!image1.isEmpty()) {
String name = comcon.fileupload(image1.getBytes(), image1.getOriginalFilename());
String name = comcon.fileupload(image1.getBytes(), image1.getOriginalFilename());
if (name != "") {
if (name != "") {
satelliteform.setImage1(name);
satelliteform.setImage1(name);
//adminform.setPre_not(name);
//adminform.setPre_not(name);
}
}
}
}
// if (!image2.isEmpty()) {
// if (!image2.isEmpty()) {
// String name = comcon.fileupload(image2.getBytes(), image2.getOriginalFilename());
// String name = comcon.fileupload(image2.getBytes(), image2.getOriginalFilename());
// if (name != "") {
// if (name != "") {
// satelliteform.setImage2(name);
// satelliteform.setImage2(name);
// //adminform.setPre_not(name);
// //adminform.setPre_not(name);
// }
// }
// }
// }
// if (!image3.isEmpty()) {
// if (!image3.isEmpty()) {
// String name = comcon.fileupload(image3.getBytes(), image3.getOriginalFilename());
// String name = comcon.fileupload(image3.getBytes(), image3.getOriginalFilename());
// if (name != "") {
// if (name != "") {
// satelliteform.setImage3(name);
// satelliteform.setImage3(name);
// //adminform.setPre_not(name);
// //adminform.setPre_not(name);
// }
// }
// }
// }
} catch (Exception e) {
} catch (Exception e) {
}
}
System.out.println(satelliteform);
System.out.println(satelliteform);
//String wkt="POLYGON((75.83036587499998 22.921094475424255,79.08231899999998 23.64767847769751,79.69755337499998 20.71823588581489,76.35770962499998 20.22419690313707,75.83036587499998 22.921094475424255))";
//String wkt="POLYGON((75.83036587499998 22.921094475424255,79.08231899999998 23.64767847769751,79.69755337499998 20.71823588581489,76.35770962499998 20.22419690313707,75.83036587499998 22.921094475424255))";
String wkt = "POLYGON(("+satelliteform.getUllong()+" "+satelliteform.getUllat()+"," +satelliteform.getUrlong()+" "+satelliteform.getUrlat()+","+satelliteform.getLrlong()+" "+satelliteform.getLrlat()+"," +satelliteform.getLllong()+" "+satelliteform.getLllat()+","+satelliteform.getUllong()+" "+satelliteform.getUllat()+"))";
String wkt = "POLYGON(("+satelliteform.getUllong()+" "+satelliteform.getUllat()+"," +satelliteform.getUrlong()+" "+satelliteform.getUrlat()+","+satelliteform.getLrlong()+" "+satelliteform.getLrlat()+"," +satelliteform.getLllong()+" "+satelliteform.getLllat()+","+satelliteform.getUllong()+" "+satelliteform.getUllat()+"))";
WKTReader wktReader = new WKTReader();
WKTReader wktReader = new WKTReader();
try {
try {
satelliteform.setWktgeom(wkt);
satelliteform.setWktgeom(wkt);
Geometry geom = wktReader.read(satelliteform.getWktgeom());
Geometry geom = wktReader.read(satelliteform.getWktgeom());
satelliteform.setAddgeom(geom);
satelliteform.setAddgeom(geom);
} catch (Exception e) {
} catch (Exception e) {
System.out.println(e.getMessage());
System.out.println(e.getMessage());
e.printStackTrace();
e.printStackTrace();
}
}
System.out.println(satelliteform);
System.out.println(satelliteform);
satelliteRepo.save(satelliteform);
satelliteRepo.save(satelliteform);
return "success";
return "success";
}
}
@PostMapping("/uploadFile")
@PostMapping("/uploadFile")
public String uploadFile(@RequestParam("textFile") MultipartFile file,Model model) throws FileNotFoundException {
public String uploadFile(@RequestParam("textFile") MultipartFile file,Model model) throws FileNotFoundException {
if(file.isEmpty()){
if(file.isEmpty()){
//if file is empty then put your message
//if file is empty then put your message
System.out.println("No File Found");
System.out.println("No File Found");
}
}
else {
else {
String content;
String content;
try {
try {
content = new String(file.getBytes(), StandardCharsets.UTF_8);
content = new String(file.getBytes(), StandardCharsets.UTF_8);
Scanner myReader = new Scanner(content);
Scanner myReader = new Scanner(content);
HashMap<String, String> map = new HashMap<>();
HashMap<String, String> map = new HashMap<>();
while (myReader.hasNext()) {
while (myReader.hasNext()) {
String data = myReader.nextLine();
String data = myReader.nextLine();
String part[]= data.split("=");
String part[]= data.split("=");
map.put(part[0],part[1]);
map.put(part[0],part[1]);
}
}
System.out.println(map);
System.out.println(map);
// System.out.println(map.get("DPCounter"));
// System.out.println(map.get("DPCounter"));
// System.out.println(map.size());
// System.out.println(map.size());
myReader.close();
myReader.close();
model.addAttribute("filedata", map);
model.addAttribute("filedata", map);
return "satelliteform";
return "satelliteform";
} catch (IOException e) {
} catch (IOException e) {
// TODO Auto-generated catch block
// TODO Auto-generated catch block
e.printStackTrace();
e.printStackTrace();
}
}
// File myObj = new File(file);
// File myObj = new File(file);
}
}
return "satelliteform";
return "satelliteform";
}
}
}
}
package com.GisSatellite.Server.Entities;
import javax.persistence.*;
@Entity
public class Role {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int role_id;
private String role;
public int getRole_id() {
return role_id;
}
public void setRole_id(int role_id) {
this.role_id = role_id;
}
public String getRole() {
return role;
}
public void setRole(String role) {
this.role = role;
}
}
package com.GisSatellite.Server.Entities;
import java.util.Set;
import javax.persistence.*;
@Entity
@Table(name = "login", uniqueConstraints = { @UniqueConstraint(columnNames = "user_id") })
public class User {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private int user_id;
private String username;
private String password;
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.EAGER)
@JoinTable(name = "user_role", joinColumns = @JoinColumn(name = "user_id"), inverseJoinColumns = @JoinColumn(name = "role_id"))
private Set<Role> roles;
public int getUser_id() {
return user_id;
}
public void setUser_id(int user_id) {
this.user_id = user_id;
}
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 Set<Role> getRoles() {
return roles;
}
public void setRoles(Set<Role> roles) {
this.roles = roles;
}
}
package com.GisSatellite.Server.Repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.GisSatellite.Server.Entities.Role;
public interface RoleRepository extends JpaRepository<Role, Integer> {
}
package com.GisSatellite.Server.Repository;
import org.springframework.data.jpa.repository.JpaRepository;
import com.GisSatellite.Server.Entities.User;
public interface UserRepository extends JpaRepository<User, Integer> {
User findByUsername(String username);
}
package com.GisSatellite.Server.Security;
import java.io.IOException;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.web.DefaultRedirectStrategy;
import org.springframework.security.web.RedirectStrategy;
import org.springframework.security.web.authentication.AuthenticationSuccessHandler;
public class MyAuthenticationSuccessHandler implements AuthenticationSuccessHandler {
@Override
public void onAuthenticationSuccess(HttpServletRequest request, HttpServletResponse response,
Authentication authentication) throws IOException, ServletException {
String targetUrl = determineTargetUrl(authentication);
if (response.isCommitted()) {
System.out.println("Response has already been committed. Unable to redirect to "
+ targetUrl);
return;
}
RedirectStrategy redirectStrategy = new DefaultRedirectStrategy();
redirectStrategy.sendRedirect(request, response, targetUrl);
System.out.println("");
}
protected String determineTargetUrl(final Authentication authentication) {
Map<String, String> roleTargetUrlMap = new HashMap<>();
roleTargetUrlMap.put("ROLE_user", "/user");
roleTargetUrlMap.put("ROLE_admin", "/admin");
final Collection<? extends GrantedAuthority> authorities = authentication.getAuthorities();
for (final GrantedAuthority grantedAuthority : authorities) {
String authorityName = grantedAuthority.getAuthority();
if(roleTargetUrlMap.containsKey(authorityName)) {
return roleTargetUrlMap.get(authorityName);
}
}
throw new IllegalStateException();
}
}
package com.GisSatellite.Server.Security;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
import org.springframework.security.web.authentication.AuthenticationSuccessHandler;
import com.GisSatellite.Server.Services.User_DetailsService;
@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true)
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Autowired
private User_DetailsService userDetailsService;
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
auth.userDetailsService(userDetailsService).passwordEncoder(encodePwd());
}
@Bean
public AuthenticationSuccessHandler myAuthenticationSuccessHandler(){
return new MyAuthenticationSuccessHandler();
}
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests()
.antMatchers("/login","/register","/webjars/**","/**/*.js", "/**/*.css","/**/*.jpg","/**/*.png").permitAll()
.antMatchers("/openlayers").access("hasRole('admin')")
.anyRequest().authenticated().and()
.formLogin().loginPage("/login").successHandler(myAuthenticationSuccessHandler()).and()
.logout()
.logoutSuccessUrl("/login").permitAll().and()
.exceptionHandling().accessDeniedPage("/logout").and()
.headers().frameOptions().disable().and()
.csrf().disable();
}
@Bean
public BCryptPasswordEncoder encodePwd() {
return new BCryptPasswordEncoder();
}
}
package com.GisSatellite.Server.Services;
import java.util.Collection;
import java.util.stream.Collectors;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import org.springframework.security.core.userdetails.UserDetails;
import com.GisSatellite.Server.Entities.User;
public class User_Details implements UserDetails {
private static final long serialVersionUID = -5584720112233431845L;
private User user;
@Override
public Collection<? extends GrantedAuthority> getAuthorities() {
return user.getRoles().stream().map(role -> new SimpleGrantedAuthority("ROLE_"+role.getRole()))
.collect(Collectors.toList());
}
@Override
public String getPassword() {
return user.getPassword();
}
@Override
public String getUsername() {
return user.getUsername();
}
@Override
public boolean isAccountNonExpired() {
return true;
}
@Override
public boolean isAccountNonLocked() {
return true;
}
@Override
public boolean isCredentialsNonExpired() {
return true;
}
@Override
public boolean isEnabled() {
return true;
}
public User getUser() {
return user;
}
public void setUser(User user) {
this.user = user;
}
}
package com.GisSatellite.Server.Services;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.core.userdetails.UserDetails;
import org.springframework.security.core.userdetails.UserDetailsService;
import org.springframework.security.core.userdetails.UsernameNotFoundException;
import org.springframework.stereotype.Component;
import com.GisSatellite.Server.Entities.User;
import com.GisSatellite.Server.Repository.UserRepository;
@Component
public class User_DetailsService implements UserDetailsService{
@Autowired
private UserRepository userRepository;
@Override
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
User user=userRepository.findByUsername(username);
User_Details userDetails=null;
if (user!=null) {
userDetails=new User_Details();
userDetails.setUser(user);
}else {
throw new UsernameNotFoundException("User not exist with this name : "+username);
}
return userDetails;
}
}
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url(../scss/icons/font-awesome/css/font-awesome.min.css);
@import url(../scss/icons/font-awesome/css/font-awesome.min.css);
@import url(../scss/icons/simple-line-icons/css/simple-line-icons.css);
@import url(../scss/icons/simple-line-icons/css/simple-line-icons.css);
@import url(../scss/icons/weather-icons/css/weather-icons.min.css);
@import url(../scss/icons/weather-icons/css/weather-icons.min.css);
@import url(../scss/icons/linea-icons/linea.css);
@import url(../scss/icons/linea-icons/linea.css);
@import url(../scss/icons/themify-icons/themify-icons.css);
@import url(../scss/icons/themify-icons/themify-icons.css);
@import url(../scss/icons/flag-icon-css/flag-icon.min.css);
@import url(../scss/icons/flag-icon-css/flag-icon.min.css);
@import url(../scss/icons/material-design-iconic-font/css/materialdesignicons.min.css);
@import url(../scss/icons/material-design-iconic-font/css/materialdesignicons.min.css);
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");
@import url(spinners.css);
@import url(spinners.css);
@import url(animate.css);
@import url(animate.css);
.preloader {
.preloader {
width: 100%;
width: 100%;
height: 100%;
height: 100%;
top: 0px;
top: 0px;
position: fixed;
position: fixed;
z-index: 99999;
z-index: 99999;
background: #fff
background: #fff
}
}
.preloader .cssload-speeding-wheel {
.preloader .cssload-speeding-wheel {
position: absolute;
position: absolute;
top: calc(50% - 3.5px);
top: calc(50% - 3.5px);
left: calc(50% - 3.5px)
left: calc(50% - 3.5px)
}
}
* {
* {
outline: none
outline: none
}
}
body {
body {
background: #fff;
background: #fff;
font-family: "Poppins", sans-serif;
font-family: "Poppins", sans-serif;
margin: 0;
margin: 0;
overflow-x: hidden;
overflow-x: hidden;
color: #67757c;
color: #67757c;
font-weight: 300
font-weight: 300
}
}
html {
html {
position: relative;
position: relative;
min-height: 100%;
min-height: 100%;
background: #ffffff
background: #ffffff
}
}
a:focus, a:hover {
a:focus, a:hover {
text-decoration: none
text-decoration: none
}
}
a.link {
a.link {
color: #455a64
color: #455a64
}
}
a.link:focus, a.link:hover {
a.link:focus, a.link:hover {
color: #1976d2
color: #1976d2
}
}
.img-responsive {
.img-responsive {
width: 100%;
width: 100%;
height: auto;
height: auto;
display: inline-block
display: inline-block
}
}
.img-rounded {
.img-rounded {
border-radius: 4px
border-radius: 4px
}
}
html body .mdi-set, html body .mdi:before {
html body .mdi-set, html body .mdi:before {
line-height: initial
line-height: initial
}
}
h1, h2, h3, h4, h5, h6 {
h1, h2, h3, h4, h5, h6 {
color: #455a64;
color: #455a64;
font-family: "Poppins", sans-serif;
font-family: "Poppins", sans-serif;
font-weight: 400
font-weight: 400
}
}
h1 {
h1 {
line-height: 40px;
line-height: 40px;
font-size: 36px
font-size: 36px
}
}
h2 {
h2 {
line-height: 36px;
line-height: 36px;
font-size: 24px
font-size: 24px
}
}
h3 {
h3 {
line-height: 30px;
line-height: 30px;
font-size: 21px
font-size: 21px
}
}
h4 {
h4 {
line-height: 22px;
line-height: 22px;
font-size: 18px
font-size: 18px
}
}
h5 {
h5 {
line-height: 18px;
line-height: 18px;
font-size: 16px;
font-size: 16px;
font-weight: 400
font-weight: 400
}
}
h6 {
h6 {
line-height: 16px;
line-height: 16px;
font-size: 14px;
font-size: 14px;
font-weight: 400
font-weight: 400
}
}
.display-5 {
.display-5 {
font-size: 3rem
font-size: 3rem
}
}
.display-6 {
.display-6 {
font-size: 36px
font-size: 36px
}
}
.box {
.box {
border-radius: 4px;
border-radius: 4px;
padding: 10px
padding: 10px
}
}
html body .dl {
html body .dl {
display: inline-block
display: inline-block
}
}
html body .db {
html body .db {
display: block
display: block
}
}
.no-wrap td, .no-wrap th {
.no-wrap td, .no-wrap th {
white-space: nowrap
white-space: nowrap
}
}
html body blockquote {
html body blockquote {
border-left: 5px solid #1976d2;
border-left: 5px solid #1976d2;
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
padding: 15px
padding: 15px
}
}
.clear {
.clear {
clear: both
clear: both
}
}
ol li {
ol li {
margin: 5px 0
margin: 5px 0
}
}
html body .p-0 {
html body .p-0 {
padding: 0px
padding: 0px
}
}
html body .p-10 {
html body .p-10 {
padding: 10px
padding: 10px
}
}
html body .p-20 {
html body .p-20 {
padding: 20px
padding: 20px
}
}
html body .p-30 {
html body .p-30 {
padding: 30px
padding: 30px
}
}
html body .p-l-0 {
html body .p-l-0 {
padding-left: 0px
padding-left: 0px
}
}
html body .p-l-10 {
html body .p-l-10 {
padding-left: 10px
padding-left: 10px
}
}
html body .p-l-20 {
html body .p-l-20 {
padding-left: 20px
padding-left: 20px
}
}
html body .p-r-0 {
html body .p-r-0 {
padding-right: 0px
padding-right: 0px
}
}
html body .p-r-10 {
html body .p-r-10 {
padding-right: 10px
padding-right: 10px
}
}
html body .p-r-20 {
html body .p-r-20 {
padding-right: 20px
padding-right: 20px
}
}
html body .p-r-30 {
html body .p-r-30 {
padding-right: 30px
padding-right: 30px
}
}
html body .p-r-40 {
html body .p-r-40 {
padding-right: 40px
padding-right: 40px
}
}
html body .p-t-0 {
html body .p-t-0 {
padding-top: 0px
padding-top: 0px
}
}
html body .p-t-10 {
html body .p-t-10 {
padding-top: 10px
padding-top: 10px
}
}
html body .p-t-20 {
html body .p-t-20 {
padding-top: 20px
padding-top: 20px
}
}
html body .p-t-30 {
html body .p-t-30 {
padding-top: 30px
padding-top: 30px
}
}
html body .p-b-0 {
html body .p-b-0 {
padding-bottom: 0px
padding-bottom: 0px
}
}
html body .p-b-5 {
html body .p-b-5 {
padding-bottom: 5px
padding-bottom: 5px
}
}
html body .p-b-10 {
html body .p-b-10 {
padding-bottom: 10px
padding-bottom: 10px
}
}
html body .p-b-20 {
html body .p-b-20 {
padding-bottom: 20px
padding-bottom: 20px
}
}
html body .p-b-30 {
html body .p-b-30 {
padding-bottom: 30px
padding-bottom: 30px
}
}
html body .p-b-40 {
html body .p-b-40 {
padding-bottom: 40px
padding-bottom: 40px
}
}
html body .m-0 {
html body .m-0 {
margin: 0px
margin: 0px
}
}
html body .m-l-5 {
html body .m-l-5 {
margin-left: 5px
margin-left: 5px
}
}
html body .m-l-10 {
html body .m-l-10 {
margin-left: 10px
margin-left: 10px
}
}
html body .m-l-15 {
html body .m-l-15 {
margin-left: 15px
margin-left: 15px
}
}
html body .m-l-20 {
html body .m-l-20 {
margin-left: 20px
margin-left: 20px
}
}
html body .m-l-30 {
html body .m-l-30 {
margin-left: 30px
margin-left: 30px
}
}
html body .m-l-40 {
html body .m-l-40 {
margin-left: 40px
margin-left: 40px
}
}
html body .m-r-5 {
html body .m-r-5 {
margin-right: 5px
margin-right: 5px
}
}
html body .m-r-10 {
html body .m-r-10 {
margin-right: 10px
margin-right: 10px
}
}
html body .m-r-15 {
html body .m-r-15 {
margin-right: 15px
margin-right: 15px
}
}
html body .m-r-20 {
html body .m-r-20 {
margin-right: 20px
margin-right: 20px
}
}
html body .m-r-30 {
html body .m-r-30 {
margin-right: 30px
margin-right: 30px
}
}
html body .m-r-40 {
html body .m-r-40 {
margin-right: 40px
margin-right: 40px
}
}
html body .m-t-0 {
html body .m-t-0 {
margin-top: 0px
margin-top: 0px
}
}
html body .m-t-5 {
html body .m-t-5 {
margin-top: 5px
margin-top: 5px
}
}
html body .m-t-10 {
html body .m-t-10 {
margin-top: 10px
margin-top: 10px
}
}
html body .m-t-15 {
html body .m-t-15 {
margin-top: 15px
margin-top: 15px
}
}
html body .m-t-20 {
html body .m-t-20 {
margin-top: 20px
margin-top: 20px
}
}
html body .m-t-30 {
html body .m-t-30 {
margin-top: 30px
margin-top: 30px
}
}
html body .m-t-40 {
html body .m-t-40 {
margin-top: 40px
margin-top: 40px
}
}
html body .m-b-0 {
html body .m-b-0 {
margin-bottom: 0px
margin-bottom: 0px
}
}
html body .m-b-5 {
html body .m-b-5 {
margin-bottom: 5px
margin-bottom: 5px
}
}
html body .m-b-10 {
html body .m-b-10 {
margin-bottom: 10px
margin-bottom: 10px
}
}
html body .m-b-15 {
html body .m-b-15 {
margin-bottom: 15px
margin-bottom: 15px
}
}
html body .m-b-20 {
html body .m-b-20 {
margin-bottom: 20px
margin-bottom: 20px
}
}
html body .m-b-30 {
html body .m-b-30 {
margin-bottom: 30px
margin-bottom: 30px
}
}
html body .m-b-40 {
html body .m-b-40 {
margin-bottom: 40px
margin-bottom: 40px
}
}
html body .vt {
html body .vt {
vertical-align: top
vertical-align: top
}
}
html body .vm {
html body .vm {
vertical-align: middle
vertical-align: middle
}
}
html body .vb {
html body .vb {
vertical-align: bottom
vertical-align: bottom
}
}
.op-5 {
.op-5 {
opacity: 0.5
opacity: 0.5
}
}
html body .font-bold {
html body .font-bold {
font-weight: 700
font-weight: 700
}
}
html body .font-normal {
html body .font-normal {
font-weight: normal
font-weight: normal
}
}
html body .font-light {
html body .font-light {
font-weight: 300
font-weight: 300
}
}
html body .font-medium {
html body .font-medium {
font-weight: 500
font-weight: 500
}
}
html body .font-16 {
html body .font-16 {
font-size: 16px
font-size: 16px
}
}
html body .font-14 {
html body .font-14 {
font-size: 14px
font-size: 14px
}
}
html body .font-10 {
html body .font-10 {
font-size: 10px
font-size: 10px
}
}
html body .font-18 {
html body .font-18 {
font-size: 18px
font-size: 18px
}
}
html body .font-20 {
html body .font-20 {
font-size: 20px
font-size: 20px
}
}
html body .b-0 {
html body .b-0 {
border: none
border: none
}
}
html body .b-r {
html body .b-r {
border-right: 1px solid rgba(120, 130, 140, 0.13)
border-right: 1px solid rgba(120, 130, 140, 0.13)
}
}
html body .b-l {
html body .b-l {
border-left: 1px solid rgba(120, 130, 140, 0.13)
border-left: 1px solid rgba(120, 130, 140, 0.13)
}
}
html body .b-b {
html body .b-b {
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}
}
html body .b-t {
html body .b-t {
border-top: 1px solid rgba(120, 130, 140, 0.13)
border-top: 1px solid rgba(120, 130, 140, 0.13)
}
}
html body .b-all {
html body .b-all {
border: 1px solid rgba(120, 130, 140, 0.13)!important
border: 1px solid rgba(120, 130, 140, 0.13)!important
}
}
.thumb-sm {
.thumb-sm {
height: 32px;
height: 32px;
width: 32px
width: 32px
}
}
.thumb-md {
.thumb-md {
height: 48px;
height: 48px;
width: 48px
width: 48px
}
}
.thumb-lg {
.thumb-lg {
height: 88px;
height: 88px;
width: 88px
width: 88px
}
}
.hide {
.hide {
display: none
display: none
}
}
.img-circle {
.img-circle {
border-radius: 100%
border-radius: 100%
}
}
.radius {
.radius {
border-radius: 4px
border-radius: 4px
}
}
.text-white {
.text-white {
color: #ffffff!important
color: #ffffff!important
}
}
.text-danger {
.text-danger {
color: #ef5350!important
color: #ef5350!important
}
}
.text-muted {
.text-muted {
color: #99abb4!important
color: #fff!important
}
}
.text-warning {
.text-warning {
color: #ffb22b!important
color: #ffb22b!important
}
}
.text-success {
.text-success {
color: #26dad2!important
color: #26dad2!important
}
}
.text-info {
.text-info {
color: #1976d2!important
color: #1976d2!important
}
}
.text-inverse {
.text-inverse {
color: #2f3d4a!important
color: #2f3d4a!important
}
}
html body .text-blue {
html body .text-blue {
color: #02bec9
color: #02bec9
}
}
html body .text-purple {
html body .text-purple {
color: #7460ee
color: #7460ee
}
}
html body .text-primary {
html body .text-primary {
color: #5c4ac7
color: #5c4ac7
}
}
html body .text-megna {
html body .text-megna {
color: #00897b
color: #00897b
}
}
html body .text-dark {
html body .text-dark {
color: #67757c
color: #67757c
}
}
html body .text-themecolor {
html body .text-themecolor {
color: #1976d2
color: #1976d2
}
}
.bg-primary {
.bg-primary {
background-color: #5c4ac7!important
background-color: #5c4ac7!important
}
}
.bg-success {
.bg-success {
background-color: #26dad2!important
background-color: #26dad2!important
}
}
.bg-info {
.bg-info {
background-color: #1976d2!important
background-color: #1976d2!important
}
}
.bg-warning {
.bg-warning {
background-color: #ffb22b!important
background-color: #ffb22b!important
}
}
.bg-danger {
.bg-danger {
background-color: #ef5350!important
background-color: #ef5350!important
}
}
html body .bg-megna {
html body .bg-megna {
background-color: #00897b
background-color: #00897b
}
}
html body .bg-theme {
html body .bg-theme {
background-color: #1976d2
background-color: #1976d2
}
}
html body .bg-inverse {
html body .bg-inverse {
background-color: #2f3d4a
background-color: #2f3d4a
}
}
html body .bg-purple {
html body .bg-purple {
background-color: #7460ee
background-color: #7460ee
}
}
html body .bg-light-part {
html body .bg-light-part {
background-color: rgba(0, 0, 0, 0.02)
background-color: rgba(0, 0, 0, 0.02)
}
}
html body .bg-light-primary {
html body .bg-light-primary {
background-color: #f1effd
background-color: #f1effd
}
}
html body .bg-light-success {
html body .bg-light-success {
background-color: #e8fdeb
background-color: #e8fdeb
}
}
html body .bg-light-info {
html body .bg-light-info {
background-color: #cfecfe
background-color: #cfecfe
}
}
html body .bg-light-extra {
html body .bg-light-extra {
background-color: #ebf3f5
background-color: #ebf3f5
}
}
html body .bg-light-warning {
html body .bg-light-warning {
background-color: #fff8ec
background-color: #fff8ec
}
}
html body .bg-light-danger {
html body .bg-light-danger {
background-color: #f9e7eb
background-color: #f9e7eb
}
}
html body .bg-light-inverse {
html body .bg-light-inverse {
background-color: #f6f6f6
background-color: #f6f6f6
}
}
html body .bg-light {
html body .bg-light {
background-color: #f2f4f8
background-color: #f2f4f8
}
}
html body .bg-white {
html body .bg-white {
background-color: #ffffff
background-color: #ffffff
}
}
.round {
.round {
line-height: 48px;
line-height: 48px;
color: #ffffff;
color: #ffffff;
width: 50px;
width: 50px;
height: 50px;
height: 50px;
display: inline-block;
display: inline-block;
font-weight: 400;
font-weight: 400;
text-align: center;
text-align: center;
border-radius: 100%;
border-radius: 100%;
background: #1976d2
background: #1976d2
}
}
.round img {
.round img {
border-radius: 100%
border-radius: 100%
}
}
.round-lg {
.round-lg {
line-height: 65px;
line-height: 65px;
width: 60px;
width: 60px;
height: 60px;
height: 60px;
font-size: 30px
font-size: 30px
}
}
.round.round-info {
.round.round-info {
background: #1976d2
background: #1976d2
}
}
.round.round-warning {
.round.round-warning {
background: #ffb22b
background: #ffb22b
}
}
.round.round-danger {
.round.round-danger {
background: #ef5350
background: #ef5350
}
}
.round.round-success {
.round.round-success {
background: #26dad2
background: #26dad2
}
}
.round.round-primary {
.round.round-primary {
background: #5c4ac7
background: #5c4ac7
}
}
.label {
.label {
padding: 3px 10px;
padding: 3px 10px;
line-height: 13px;
line-height: 13px;
color: #ffffff;
color: #ffffff;
font-weight: 400;
font-weight: 400;
border-radius: 4px;
border-radius: 4px;
font-size: 75%
font-size: 75%
}
}
.label-rounded {
.label-rounded {
border-radius: 60px
border-radius: 60px
}
}
.label-custom {
.label-custom {
background-color: #00897b
background-color: #00897b
}
}
.label-success {
.label-success {
background-color: #26dad2
background-color: #26dad2
}
}
.label-info {
.label-info {
background-color: #1976d2
background-color: #1976d2
}
}
.label-warning {
.label-warning {
background-color: #ffb22b
background-color: #ffb22b
}
}
.label-danger {
.label-danger {
background-color: #ef5350
background-color: #ef5350
}
}
.label-megna {
.label-megna {
background-color: #00897b
background-color: #00897b
}
}
.label-primary {
.label-primary {
background-color: #5c4ac7
background-color: #5c4ac7
}
}
.label-purple {
.label-purple {
background-color: #7460ee
background-color: #7460ee
}
}
.label-red {
.label-red {
background-color: #fb3a3a
background-color: #fb3a3a
}
}
.label-inverse {
.label-inverse {
background-color: #2f3d4a
background-color: #2f3d4a
}
}
.label-default {
.label-default {
background-color: #f2f4f8
background-color: #f2f4f8
}
}
.label-white {
.label-white {
background-color: #ffffff
background-color: #ffffff
}
}
.label-light-success {
.label-light-success {
background-color: #e8fdeb;
background-color: #e8fdeb;
color: #26dad2
color: #26dad2
}
}
.label-light-info {
.label-light-info {
background-color: #cfecfe;
background-color: #cfecfe;
color: #1976d2
color: #1976d2
}
}
.label-light-warning {
.label-light-warning {
background-color: #fff8ec;
background-color: #fff8ec;
color: #ffb22b
color: #ffb22b
}
}
.label-light-danger {
.label-light-danger {
background-color: #f9e7eb;
background-color: #f9e7eb;
color: #ef5350
color: #ef5350
}
}
.label-light-megna {
.label-light-megna {
background-color: #e0f2f4;
background-color: #e0f2f4;
color: #00897b
color: #00897b
}
}
.label-light-primary {
.label-light-primary {
background-color: #f1effd;
background-color: #f1effd;
color: #5c4ac7
color: #5c4ac7
}
}
.label-light-inverse {
.label-light-inverse {
background-color: #f6f6f6;
background-color: #f6f6f6;
color: #2f3d4a
color: #2f3d4a
}
}
.pagination>li:first-child>a, .pagination>li:first-child>span {
.pagination>li:first-child>a, .pagination>li:first-child>span {
border-bottom-left-radius: 4px;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px
border-top-left-radius: 4px
}
}
.pagination>li:last-child>a, .pagination>li:last-child>span {
.pagination>li:last-child>a, .pagination>li:last-child>span {
border-bottom-right-radius: 4px;
border-bottom-right-radius: 4px;
border-top-right-radius: 4px
border-top-right-radius: 4px
}
}
.pagination>li>a, .pagination>li>span {
.pagination>li>a, .pagination>li>span {
color: #263238
color: #263238
}
}
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
.pagination>li>a:focus, .pagination>li>a:hover, .pagination>li>span:focus, .pagination>li>span:hover {
background-color: #f2f4f8
background-color: #f2f4f8
}
}
.pagination-split li {
.pagination-split li {
margin-left: 5px;
margin-left: 5px;
display: inline-block;
display: inline-block;
float: left
float: left
}
}
.pagination-split li:first-child {
.pagination-split li:first-child {
margin-left: 0
margin-left: 0
}
}
.pagination-split li a {
.pagination-split li a {
-moz-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px
border-radius: 4px
}
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
background-color: #1976d2;
background-color: #1976d2;
border-color: #1976d2
border-color: #1976d2
}
}
.pager li>a, .pager li>span {
.pager li>a, .pager li>span {
-moz-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
border-radius: 4px;
color: #263238
color: #263238
}
}
.table-box {
.table-box {
display: table;
display: table;
width: 100%
width: 100%
}
}
.table.no-border tbody td {
.table.no-border tbody td {
border: 0px
border: 0px
}
}
.cell {
.cell {
display: table-cell;
display: table-cell;
vertical-align: middle
vertical-align: middle
}
}
.table td, .table th {
.table td, .table th {
border-color: #f3f1f1
border-color: #f3f1f1
}
}
.table th, .table thead th {
.table th, .table thead th {
font-weight: 500
font-weight: 500
}
}
.table-hover tbody tr:hover {
.table-hover tbody tr:hover {
background: #f2f4f8
background: #f2f4f8
}
}
.nowrap {
.nowrap {
white-space: nowrap
white-space: nowrap
}
}
.lite-padding td {
.lite-padding td {
padding: 5px
padding: 5px
}
}
.v-middle td, .v-middle th {
.v-middle td, .v-middle th {
vertical-align: middle
vertical-align: middle
}
}
.table-responsive {
.table-responsive {
display: block;
display: block;
width: 100%;
width: 100%;
overflow-x: auto;
overflow-x: auto;
-ms-overflow-style: -ms-autohiding-scrollbar
-ms-overflow-style: -ms-autohiding-scrollbar
}
}
.waves-effect {
.waves-effect {
position: relative;
position: relative;
cursor: pointer;
cursor: pointer;
display: inline-block;
display: inline-block;
overflow: hidden;
overflow: hidden;
-webkit-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-ms-user-select: none;
user-select: none;
user-select: none;
-webkit-tap-highlight-color: transparent;
-webkit-tap-highlight-color: transparent;
vertical-align: middle;
vertical-align: middle;
z-index: 1;
z-index: 1;
will-change: opacity, transform;
will-change: opacity, transform;
-webkit-transition: all 0.1s ease-out;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
-ms-transition: all 0.1s ease-out;
-ms-transition: all 0.1s ease-out;
transition: all 0.1s ease-out
transition: all 0.1s ease-out
}
}
.waves-effect .waves-ripple {
.waves-effect .waves-ripple {
position: absolute;
position: absolute;
border-radius: 50%;
border-radius: 50%;
width: 20px;
width: 20px;
height: 20px;
height: 20px;
margin-top: -10px;
margin-top: -10px;
margin-left: -10px;
margin-left: -10px;
opacity: 0;
opacity: 0;
background: rgba(0, 0, 0, 0.2);
background: rgba(0, 0, 0, 0.2);
-webkit-transition: all 0.7s ease-out;
-webkit-transition: all 0.7s ease-out;
-moz-transition: all 0.7s ease-out;
-moz-transition: all 0.7s ease-out;
-o-transition: all 0.7s ease-out;
-o-transition: all 0.7s ease-out;
-ms-transition: all 0.7s ease-out;
-ms-transition: all 0.7s ease-out;
transition: all 0.7s ease-out;
transition: all 0.7s ease-out;
-webkit-transition-property: -webkit-transform, opacity;
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-o-transition-property: -o-transform, opacity;
-o-transition-property: -o-transform, opacity;
-webkit-transition-property: opacity, -webkit-transform;
-webkit-transition-property: opacity, -webkit-transform;
transition-property: opacity, -webkit-transform;
transition-property: opacity, -webkit-transform;
-o-transition-property: transform, opacity;
-o-transition-property: transform, opacity;
transition-property: transform, opacity;
transition-property: transform, opacity;
transition-property: transform, opacity, -webkit-transform;
transition-property: transform, opacity, -webkit-transform;
-webkit-transform: scale(0);
-webkit-transform: scale(0);
-moz-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
-o-transform: scale(0);
transform: scale(0);
transform: scale(0);
pointer-events: none
pointer-events: none
}
}
.waves-effect.waves-light .waves-ripple {
.waves-effect.waves-light .waves-ripple {
background-color: rgba(255, 255, 255, 0.45)
background-color: rgba(255, 255, 255, 0.45)
}
}
.waves-effect.waves-red .waves-ripple {
.waves-effect.waves-red .waves-ripple {
background-color: rgba(244, 67, 54, 0.7)
background-color: rgba(244, 67, 54, 0.7)
}
}
.waves-effect.waves-yellow .waves-ripple {
.waves-effect.waves-yellow .waves-ripple {
background-color: rgba(255, 235, 59, 0.7)
background-color: rgba(255, 235, 59, 0.7)
}
}
.waves-effect.waves-orange .waves-ripple {
.waves-effect.waves-orange .waves-ripple {
background-color: rgba(255, 152, 0, 0.7)
background-color: rgba(255, 152, 0, 0.7)
}
}
.waves-effect.waves-purple .waves-ripple {
.waves-effect.waves-purple .waves-ripple {
background-color: rgba(156, 39, 176, 0.7)
background-color: rgba(156, 39, 176, 0.7)
}
}
.waves-effect.waves-green .waves-ripple {
.waves-effect.waves-green .waves-ripple {
background-color: rgba(76, 175, 80, 0.7)
background-color: rgba(76, 175, 80, 0.7)
}
}
.waves-effect.waves-teal .waves-ripple {
.waves-effect.waves-teal .waves-ripple {
background-color: rgba(0, 150, 136, 0.7)
background-color: rgba(0, 150, 136, 0.7)
}
}
html body .waves-notransition {
html body .waves-notransition {
-webkit-transition: none;
-webkit-transition: none;
-moz-transition: none;
-moz-transition: none;
-o-transition: none;
-o-transition: none;
-ms-transition: none;
-ms-transition: none;
transition: none
transition: none
}
}
.waves-circle {
.waves-circle {
-webkit-transform: translateZ(0);
-webkit-transform: translateZ(0);
-moz-transform: translateZ(0);
-moz-transform: translateZ(0);
-ms-transform: translateZ(0);
-ms-transform: translateZ(0);
-o-transform: translateZ(0);
-o-transform: translateZ(0);
transform: translateZ(0);
transform: translateZ(0);
text-align: center;
text-align: center;
width: 2.5em;
width: 2.5em;
height: 2.5em;
height: 2.5em;
line-height: 2.5em;
line-height: 2.5em;
border-radius: 50%;
border-radius: 50%;
-webkit-mask-image: none
-webkit-mask-image: none
}
}
.waves-input-wrapper {
.waves-input-wrapper {
border-radius: 0.2em;
border-radius: 0.2em;
vertical-align: bottom
vertical-align: bottom
}
}
.waves-input-wrapper .waves-button-input {
.waves-input-wrapper .waves-button-input {
position: relative;
position: relative;
top: 0;
top: 0;
left: 0;
left: 0;
z-index: 1
z-index: 1
}
}
.waves-block {
.waves-block {
display: block
display: block
}
}
.badge {
.badge {
font-weight: 400
font-weight: 400
}
}
.badge-xs {
.badge-xs {
font-size: 9px
font-size: 9px
}
}
.badge-sm, .badge-xs {
.badge-sm, .badge-xs {
-webkit-transform: translate(0, -2px);
-webkit-transform: translate(0, -2px);
-ms-transform: translate(0, -2px);
-ms-transform: translate(0, -2px);
-o-transform: translate(0, -2px);
-o-transform: translate(0, -2px);
transform: translate(0, -2px)
transform: translate(0, -2px)
}
}
.badge-success {
.badge-success {
background-color: #26dad2
background-color: #26dad2
}
}
.badge-info {
.badge-info {
background-color: #1976d2
background-color: #1976d2
}
}
.badge-primary {
.badge-primary {
background-color: #5c4ac7
background-color: #5c4ac7
}
}
.badge-warning {
.badge-warning {
background-color: #ffb22b
background-color: #ffb22b
}
}
.badge-danger {
.badge-danger {
background-color: #ef5350
background-color: #ef5350
}
}
.badge-purple {
.badge-purple {
background-color: #7460ee
background-color: #7460ee
}
}
.badge-red {
.badge-red {
background-color: #fb3a3a
background-color: #fb3a3a
}
}
.badge-inverse {
.badge-inverse {
background-color: #2f3d4a
background-color: #2f3d4a
}
}
.btn {
.btn {
padding: 7px 12px;
padding: 7px 12px;
cursor: pointer
cursor: pointer
}
}
.btn-group label {
.btn-group label {
color: #ffffff!important;
color: #ffffff!important;
margin-bottom: 0px
margin-bottom: 0px
}
}
.btn-group label.btn-secondary {
.btn-group label.btn-secondary {
color: #67757c!important
color: #67757c!important
}
}
.btn-lg {
.btn-lg {
padding: .75rem 1.5rem;
padding: .75rem 1.5rem;
font-size: 1.25rem
font-size: 1.25rem
}
}
.btn-md {
.btn-md {
padding: 12px 55px;
padding: 12px 55px;
font-size: 16px
font-size: 16px
}
}
.btn-circle {
.btn-circle {
border-radius: 100%;
border-radius: 100%;
width: 40px;
width: 40px;
height: 40px;
height: 40px;
padding: 10px
padding: 10px
}
}
.btn-circle.btn-sm {
.btn-circle.btn-sm {
width: 35px;
width: 35px;
height: 35px;
height: 35px;
padding: 8px 10px;
padding: 8px 10px;
font-size: 14px
font-size: 14px
}
}
.btn-circle.btn-lg {
.btn-circle.btn-lg {
width: 50px;
width: 50px;
height: 50px;
height: 50px;
padding: 14px 15px;
padding: 14px 15px;
font-size: 18px;
font-size: 18px;
line-height: 22px
line-height: 22px
}
}
.btn-circle.btn-xl {
.btn-circle.btn-xl {
width: 70px;
width: 70px;
height: 70px;
height: 70px;
padding: 14px 15px;
padding: 14px 15px;
font-size: 24px
font-size: 24px
}
}
.btn-sm {
.btn-sm {
padding: .25rem .5rem;
padding: .25rem .5rem;
font-size: 12px
font-size: 12px
}
}
.btn-xs {
.btn-xs {
padding: .25rem .5rem;
padding: .25rem .5rem;
font-size: 10px
font-size: 10px
}
}
.button-list a, .button-list button {
.button-list a, .button-list button {
margin: 5px 12px 5px 0
margin: 5px 12px 5px 0
}
}
.btn-outline {
.btn-outline {
color: inherit;
color: inherit;
background-color: transparent;
background-color: transparent;
-webkit-transition: all .5s;
-webkit-transition: all .5s;
-o-transition: all .5s;
-o-transition: all .5s;
transition: all .5s
transition: all .5s
}
}
.btn-rounded {
.btn-rounded {
border-radius: 60px;
border-radius: 60px;
padding: 7px 18px
padding: 7px 18px
}
}
.btn-rounded.btn-lg {
.btn-rounded.btn-lg {
padding: .75rem 1.5rem
padding: .75rem 1.5rem
}
}
.btn-rounded.btn-sm {
.btn-rounded.btn-sm {
padding: .25rem .5rem;
padding: .25rem .5rem;
font-size: 12px
font-size: 12px
}
}
.btn-rounded.btn-xs {
.btn-rounded.btn-xs {
padding: .25rem .5rem;
padding: .25rem .5rem;
font-size: 10px
font-size: 10px
}
}
.btn-rounded.btn-md {
.btn-rounded.btn-md {
padding: 12px 35px;
padding: 12px 35px;
font-size: 16px
font-size: 16px
}
}
.btn-secondary, .btn-secondary.disabled {
.btn-secondary, .btn-secondary.disabled {
-webkit-box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in;
transition: 0.2s ease-in;
background-color: #ffffff;
background-color: #ffffff;
color: #67757c;
color: #67757c;
border-color: #b1b8bb
border-color: #b1b8bb
}
}
.btn-secondary.disabled:hover, .btn-secondary:hover {
.btn-secondary.disabled:hover, .btn-secondary:hover {
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
}
}
.btn-secondary.active, .btn-secondary.disabled.active, .btn-secondary.disabled:active, .btn-secondary.disabled:focus, .btn-secondary:active, .btn-secondary:focus {
.btn-secondary.active, .btn-secondary.disabled.active, .btn-secondary.disabled:active, .btn-secondary.disabled:focus, .btn-secondary:active, .btn-secondary:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
}
}
.btn-primary, .btn-primary.disabled {
.btn-primary, .btn-primary.disabled {
background: #5c4ac7;
background: #5c4ac7;
border: 1px solid #5c4ac7;
border: 1px solid #5c4ac7;
-webkit-box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-primary.disabled:hover, .btn-primary:hover {
.btn-primary.disabled:hover, .btn-primary:hover {
background: #5c4ac7;
background: #5c4ac7;
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
border: 1px solid #5c4ac7
border: 1px solid #5c4ac7
}
}
.btn-primary.active, .btn-primary.disabled.active, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary:active, .btn-primary:focus {
.btn-primary.active, .btn-primary.disabled.active, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary:active, .btn-primary:focus {
background: #6352ce;
background: #6352ce;
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2)
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2)
}
}
.btn-themecolor, .btn-themecolor.disabled {
.btn-themecolor, .btn-themecolor.disabled {
background: #1976d2;
background: #1976d2;
color: #ffffff;
color: #ffffff;
border: 1px solid #1976d2
border: 1px solid #1976d2
}
}
.btn-themecolor.disabled:hover, .btn-themecolor:hover {
.btn-themecolor.disabled:hover, .btn-themecolor:hover {
background: #1976d2;
background: #1976d2;
opacity: 0.7;
opacity: 0.7;
border: 1px solid #1976d2
border: 1px solid #1976d2
}
}
.btn-themecolor.active, .btn-themecolor.disabled.active, .btn-themecolor.disabled:active, .btn-themecolor.disabled:focus, .btn-themecolor:active, .btn-themecolor:focus {
.btn-themecolor.active, .btn-themecolor.disabled.active, .btn-themecolor.disabled:active, .btn-themecolor.disabled:focus, .btn-themecolor:active, .btn-themecolor:focus {
background: #028ee1
background: #028ee1
}
}
.btn-success, .btn-success.disabled {
.btn-success, .btn-success.disabled {
background: #26dad2;
background: #26dad2;
border: 1px solid #26dad2;
border: 1px solid #26dad2;
-webkit-box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-success.disabled:hover, .btn-success:hover {
.btn-success.disabled:hover, .btn-success:hover {
background: #26dad2;
background: #26dad2;
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
border: 1px solid #26dad2
border: 1px solid #26dad2
}
}
.btn-success.active, .btn-success.disabled.active, .btn-success.disabled:active, .btn-success.disabled:focus, .btn-success:active, .btn-success:focus {
.btn-success.active, .btn-success.disabled.active, .btn-success.disabled:active, .btn-success.disabled:focus, .btn-success:active, .btn-success:focus {
background: #1eacbe;
background: #1eacbe;
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2)
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2)
}
}
.btn-info, .btn-info.disabled {
.btn-info, .btn-info.disabled {
background: #1976d2;
background: #1976d2;
border: 1px solid #1976d2;
border: 1px solid #1976d2;
-webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-info.disabled:hover, .btn-info:hover {
.btn-info.disabled:hover, .btn-info:hover {
background: #1976d2;
background: #1976d2;
border: 1px solid #1976d2;
border: 1px solid #1976d2;
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
}
}
.btn-info.active, .btn-info.disabled.active, .btn-info.disabled:active, .btn-info.disabled:focus, .btn-info:active, .btn-info:focus {
.btn-info.active, .btn-info.disabled.active, .btn-info.disabled:active, .btn-info.disabled:focus, .btn-info:active, .btn-info:focus {
background: #028ee1;
background: #028ee1;
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
}
}
.btn-warning, .btn-warning.disabled {
.btn-warning, .btn-warning.disabled {
background: #ffb22b;
background: #ffb22b;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
border: 1px solid #ffb22b;
border: 1px solid #ffb22b;
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in;
transition: 0.2s ease-in;
color: #ffffff
color: #ffffff
}
}
.btn-warning.disabled:hover, .btn-warning:hover {
.btn-warning.disabled:hover, .btn-warning:hover {
background: #ffb22b;
background: #ffb22b;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
border: 1px solid #ffb22b
border: 1px solid #ffb22b
}
}
.btn-warning.active, .btn-warning.disabled.active, .btn-warning.disabled:active, .btn-warning.disabled:focus, .btn-warning:active, .btn-warning:focus {
.btn-warning.active, .btn-warning.disabled.active, .btn-warning.disabled:active, .btn-warning.disabled:focus, .btn-warning:active, .btn-warning:focus {
background: #e9ab2e;
background: #e9ab2e;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2)
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2)
}
}
.btn-danger, .btn-danger.disabled {
.btn-danger, .btn-danger.disabled {
background: #ef5350;
background: #ef5350;
border: 1px solid #ef5350;
border: 1px solid #ef5350;
-webkit-box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-danger.disabled:hover, .btn-danger:hover {
.btn-danger.disabled:hover, .btn-danger:hover {
background: #ef5350;
background: #ef5350;
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
border: 1px solid #ef5350
border: 1px solid #ef5350
}
}
.btn-danger.active, .btn-danger.disabled.active, .btn-danger.disabled:active, .btn-danger.disabled:focus, .btn-danger:active, .btn-danger:focus {
.btn-danger.active, .btn-danger.disabled.active, .btn-danger.disabled:active, .btn-danger.disabled:focus, .btn-danger:active, .btn-danger:focus {
background: #e6294b;
background: #e6294b;
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
}
}
.btn-inverse, .btn-inverse.disabled {
.btn-inverse, .btn-inverse.disabled {
background: #2f3d4a;
background: #2f3d4a;
border: 1px solid #2f3d4a;
border: 1px solid #2f3d4a;
color: #ffffff
color: #ffffff
}
}
.btn-inverse.disabled:hover, .btn-inverse:hover {
.btn-inverse.disabled:hover, .btn-inverse:hover {
background: #2f3d4a;
background: #2f3d4a;
opacity: 0.7;
opacity: 0.7;
color: #ffffff;
color: #ffffff;
border: 1px solid #2f3d4a
border: 1px solid #2f3d4a
}
}
.btn-inverse.active, .btn-inverse.disabled.active, .btn-inverse.disabled:active, .btn-inverse.disabled:focus, .btn-inverse:active, .btn-inverse:focus {
.btn-inverse.active, .btn-inverse.disabled.active, .btn-inverse.disabled:active, .btn-inverse.disabled:focus, .btn-inverse:active, .btn-inverse:focus {
background: #232a37;
background: #232a37;
color: #ffffff
color: #ffffff
}
}
.btn-red, .btn-red.disabled {
.btn-red, .btn-red.disabled {
background: #fb3a3a;
background: #fb3a3a;
border: 1px solid #fb3a3a;
border: 1px solid #fb3a3a;
color: #ffffff
color: #ffffff
}
}
.btn-red.disabled:hover, .btn-red:hover {
.btn-red.disabled:hover, .btn-red:hover {
opacity: 0.7;
opacity: 0.7;
border: 1px solid #fb3a3a;
border: 1px solid #fb3a3a;
background: #fb3a3a
background: #fb3a3a
}
}
.btn-red.active, .btn-red.disabled.active, .btn-red.disabled:active, .btn-red.disabled:focus, .btn-red:active, .btn-red:focus {
.btn-red.active, .btn-red.disabled.active, .btn-red.disabled:active, .btn-red.disabled:focus, .btn-red:active, .btn-red:focus {
background: #e6294b
background: #e6294b
}
}
.btn-outline-secondary {
.btn-outline-secondary {
background-color: #ffffff;
background-color: #ffffff;
-webkit-box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
box-shadow: 0 2px 2px 0 rgba(169, 169, 169, 0.14), 0 3px 1px -2px rgba(169, 169, 169, 0.2), 0 1px 5px 0 rgba(169, 169, 169, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-outline-secondary.focus, .btn-outline-secondary:focus, .btn-outline-secondary:hover {
.btn-outline-secondary.focus, .btn-outline-secondary:focus, .btn-outline-secondary:hover {
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
}
}
.btn-outline-secondary.active, .btn-outline-secondary:active, .btn-outline-secondary:focus {
.btn-outline-secondary.active, .btn-outline-secondary:active, .btn-outline-secondary:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2);
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
box-shadow: 0 14px 26px -12px rgba(169, 169, 169, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(169, 169, 169, 0.2)
}
}
.btn-outline-primary {
.btn-outline-primary {
color: #5c4ac7;
color: #5c4ac7;
background-color: #ffffff;
background-color: #ffffff;
border-color: #5c4ac7;
border-color: #5c4ac7;
-webkit-box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
box-shadow: 0 2px 2px 0 rgba(116, 96, 238, 0.14), 0 3px 1px -2px rgba(116, 96, 238, 0.2), 0 1px 5px 0 rgba(116, 96, 238, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary:hover {
.btn-outline-primary.focus, .btn-outline-primary:focus, .btn-outline-primary:hover {
background: #5c4ac7;
background: #5c4ac7;
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
color: #ffffff;
color: #ffffff;
border-color: #5c4ac7
border-color: #5c4ac7
}
}
.btn-outline-primary.active, .btn-outline-primary:active, .btn-outline-primary:focus {
.btn-outline-primary.active, .btn-outline-primary:active, .btn-outline-primary:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
box-shadow: 0 14px 26px -12px rgba(116, 96, 238, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(116, 96, 238, 0.2);
background: #6352ce
background: #6352ce
}
}
.btn-outline-success {
.btn-outline-success {
color: #26dad2;
color: #26dad2;
background-color: transparent;
background-color: transparent;
border-color: #26dad2;
border-color: #26dad2;
-webkit-box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
box-shadow: 0 2px 2px 0 rgba(40, 190, 189, 0.14), 0 3px 1px -2px rgba(40, 190, 189, 0.2), 0 1px 5px 0 rgba(40, 190, 189, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-outline-success.focus, .btn-outline-success:focus, .btn-outline-success:hover {
.btn-outline-success.focus, .btn-outline-success:focus, .btn-outline-success:hover {
background: #26dad2;
background: #26dad2;
border-color: #26dad2;
border-color: #26dad2;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2)
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2)
}
}
.btn-outline-success.active, .btn-outline-success:active, .btn-outline-success:focus {
.btn-outline-success.active, .btn-outline-success:active, .btn-outline-success:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
box-shadow: 0 14px 26px -12px rgba(40, 190, 189, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(40, 190, 189, 0.2);
background: #1eacbe
background: #1eacbe
}
}
.btn-outline-info {
.btn-outline-info {
color: #1976d2;
color: #1976d2;
background-color: transparent;
background-color: transparent;
border-color: #1976d2;
border-color: #1976d2;
-webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
box-shadow: 0 2px 2px 0 rgba(66, 165, 245, 0.14), 0 3px 1px -2px rgba(66, 165, 245, 0.2), 0 1px 5px 0 rgba(66, 165, 245, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-outline-info.focus, .btn-outline-info:focus, .btn-outline-info:hover {
.btn-outline-info.focus, .btn-outline-info:focus, .btn-outline-info:hover {
background: #1976d2;
background: #1976d2;
border-color: #1976d2;
border-color: #1976d2;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2)
}
}
.btn-outline-info.active, .btn-outline-info:active, .btn-outline-info:focus {
.btn-outline-info.active, .btn-outline-info:active, .btn-outline-info:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
box-shadow: 0 14px 26px -12px rgba(23, 105, 255, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(23, 105, 255, 0.2);
background: #028ee1
background: #028ee1
}
}
.btn-outline-warning {
.btn-outline-warning {
color: #ffb22b;
color: #ffb22b;
background-color: transparent;
background-color: transparent;
border-color: #ffb22b;
border-color: #ffb22b;
-webkit-box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
box-shadow: 0 2px 2px 0 rgba(248, 194, 0, 0.14), 0 3px 1px -2px rgba(248, 194, 0, 0.2), 0 1px 5px 0 rgba(248, 194, 0, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-outline-warning.focus, .btn-outline-warning:focus, .btn-outline-warning:hover {
.btn-outline-warning.focus, .btn-outline-warning:focus, .btn-outline-warning:hover {
background: #ffb22b;
background: #ffb22b;
border-color: #ffb22b;
border-color: #ffb22b;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2)
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2)
}
}
.btn-outline-warning.active, .btn-outline-warning:active, .btn-outline-warning:focus {
.btn-outline-warning.active, .btn-outline-warning:active, .btn-outline-warning:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
box-shadow: 0 14px 26px -12px rgba(248, 194, 0, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(248, 194, 0, 0.2);
background: #e9ab2e
background: #e9ab2e
}
}
.btn-outline-danger {
.btn-outline-danger {
color: #ef5350;
color: #ef5350;
background-color: transparent;
background-color: transparent;
border-color: #ef5350;
border-color: #ef5350;
-webkit-box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
-webkit-box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
box-shadow: 0 2px 2px 0 rgba(239, 83, 80, 0.14), 0 3px 1px -2px rgba(239, 83, 80, 0.2), 0 1px 5px 0 rgba(239, 83, 80, 0.12);
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.btn-outline-danger.focus, .btn-outline-danger:focus, .btn-outline-danger:hover {
.btn-outline-danger.focus, .btn-outline-danger:focus, .btn-outline-danger:hover {
background: #ef5350;
background: #ef5350;
border-color: #ef5350;
border-color: #ef5350;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
}
}
.btn-outline-danger.active, .btn-outline-danger:active, .btn-outline-danger:focus {
.btn-outline-danger.active, .btn-outline-danger:active, .btn-outline-danger:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
background: #e6294b
background: #e6294b
}
}
.btn-outline-red {
.btn-outline-red {
color: #fb3a3a;
color: #fb3a3a;
background-color: transparent;
background-color: transparent;
border-color: #fb3a3a
border-color: #fb3a3a
}
}
.btn-outline-red.focus, .btn-outline-red:focus, .btn-outline-red:hover {
.btn-outline-red.focus, .btn-outline-red:focus, .btn-outline-red:hover {
background: #fb3a3a;
background: #fb3a3a;
border-color: #fb3a3a;
border-color: #fb3a3a;
color: #ffffff;
color: #ffffff;
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2)
}
}
.btn-outline-red.active, .btn-outline-red:active, .btn-outline-red:focus {
.btn-outline-red.active, .btn-outline-red:active, .btn-outline-red:focus {
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
-webkit-box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
box-shadow: 0 14px 26px -12px rgba(239, 83, 80, 0.42), 0 4px 23px 0 rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(239, 83, 80, 0.2);
background: #e6294b
background: #e6294b
}
}
.btn-outline-inverse {
.btn-outline-inverse {
color: #2f3d4a;
color: #2f3d4a;
background-color: transparent;
background-color: transparent;
border-color: #2f3d4a
border-color: #2f3d4a
}
}
.btn-outline-inverse.focus, .btn-outline-inverse:focus, .btn-outline-inverse:hover {
.btn-outline-inverse.focus, .btn-outline-inverse:focus, .btn-outline-inverse:hover {
background: #2f3d4a;
background: #2f3d4a;
border-color: #2f3d4a;
border-color: #2f3d4a;
color: #ffffff
color: #ffffff
}
}
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:focus, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover, .btn-primary:focus, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
background-color: #6352ce;
background-color: #6352ce;
border: 1px solid #6352ce
border: 1px solid #6352ce
}
}
.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success.focus, .btn-success.focus:active, .btn-success:active:focus, .btn-success:active:hover, .btn-success:focus, .open>.dropdown-toggle.btn-success.focus, .open>.dropdown-toggle.btn-success:focus, .open>.dropdown-toggle.btn-success:hover {
.btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success.focus, .btn-success.focus:active, .btn-success:active:focus, .btn-success:active:hover, .btn-success:focus, .open>.dropdown-toggle.btn-success.focus, .open>.dropdown-toggle.btn-success:focus, .open>.dropdown-toggle.btn-success:hover {
background-color: #1eacbe;
background-color: #1eacbe;
border: 1px solid #1eacbe
border: 1px solid #1eacbe
}
}
.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .btn-info:focus, .open>.dropdown-toggle.btn-info.focus, .open>.dropdown-toggle.btn-info:focus, .open>.dropdown-toggle.btn-info:hover {
.btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .btn-info:focus, .open>.dropdown-toggle.btn-info.focus, .open>.dropdown-toggle.btn-info:focus, .open>.dropdown-toggle.btn-info:hover {
background-color: #028ee1;
background-color: #028ee1;
border: 1px solid #028ee1
border: 1px solid #028ee1
}
}
.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning.focus, .btn-warning.focus:active, .btn-warning:active:focus, .btn-warning:active:hover, .btn-warning:focus, .open>.dropdown-toggle.btn-warning.focus, .open>.dropdown-toggle.btn-warning:focus, .open>.dropdown-toggle.btn-warning:hover {
.btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning.focus, .btn-warning.focus:active, .btn-warning:active:focus, .btn-warning:active:hover, .btn-warning:focus, .open>.dropdown-toggle.btn-warning.focus, .open>.dropdown-toggle.btn-warning:focus, .open>.dropdown-toggle.btn-warning:hover {
background-color: #e9ab2e;
background-color: #e9ab2e;
border: 1px solid #e9ab2e
border: 1px solid #e9ab2e
}
}
.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger.focus, .btn-danger.focus:active, .btn-danger:active:focus, .btn-danger:active:hover, .btn-danger:focus, .open>.dropdown-toggle.btn-danger.focus, .open>.dropdown-toggle.btn-danger:focus, .open>.dropdown-toggle.btn-danger:hover {
.btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger.focus, .btn-danger.focus:active, .btn-danger:active:focus, .btn-danger:active:hover, .btn-danger:focus, .open>.dropdown-toggle.btn-danger.focus, .open>.dropdown-toggle.btn-danger:focus, .open>.dropdown-toggle.btn-danger:hover {
background-color: #e6294b;
background-color: #e6294b;
border: 1px solid #e6294b
border: 1px solid #e6294b
}
}
.btn-inverse.active, .btn-inverse.focus, .btn-inverse:active, .btn-inverse:focus, .btn-inverse:hover, .btn-inverse:hover, .open>.dropdown-toggle.btn-inverse {
.btn-inverse.active, .btn-inverse.focus, .btn-inverse:active, .btn-inverse:focus, .btn-inverse:hover, .btn-inverse:hover, .open>.dropdown-toggle.btn-inverse {
background-color: #232a37;
background-color: #232a37;
border: 1px solid #232a37
border: 1px solid #232a37
}
}
.btn-red.active, .btn-red.focus, .btn-red:active, .btn-red:focus, .btn-red:hover, .btn-red:hover, .open>.dropdown-toggle.btn-red {
.btn-red.active, .btn-red.focus, .btn-red:active, .btn-red:focus, .btn-red:hover, .btn-red:hover, .open>.dropdown-toggle.btn-red {
background-color: #d61f1f;
background-color: #d61f1f;
border: 1px solid #d61f1f;
border: 1px solid #d61f1f;
color: #ffffff
color: #ffffff
}
}
.button-box .btn {
.button-box .btn {
margin: 0 8px 8px 0px
margin: 0 8px 8px 0px
}
}
.btn-label {
.btn-label {
background: rgba(0, 0, 0, 0.05);
background: rgba(0, 0, 0, 0.05);
display: inline-block;
display: inline-block;
margin: -6px 12px -6px -14px;
margin: -6px 12px -6px -14px;
padding: 7px 15px
padding: 7px 15px
}
}
.btn-facebook {
.btn-facebook {
color: #ffffff;
color: #ffffff;
background-color: #3b5998
background-color: #3b5998
}
}
.btn-twitter {
.btn-twitter {
color: #ffffff;
color: #ffffff;
background-color: #55acee
background-color: #55acee
}
}
.btn-linkedin {
.btn-linkedin {
color: #ffffff;
color: #ffffff;
background-color: #007bb6
background-color: #007bb6
}
}
.btn-dribbble {
.btn-dribbble {
color: #ffffff;
color: #ffffff;
background-color: #ea4c89
background-color: #ea4c89
}
}
.btn-googleplus {
.btn-googleplus {
color: #ffffff;
color: #ffffff;
background-color: #dd4b39
background-color: #dd4b39
}
}
.btn-instagram {
.btn-instagram {
color: #ffffff;
color: #ffffff;
background-color: #3f729b
background-color: #3f729b
}
}
.btn-pinterest {
.btn-pinterest {
color: #ffffff;
color: #ffffff;
background-color: #cb2027
background-color: #cb2027
}
}
.btn-dropbox {
.btn-dropbox {
color: #ffffff;
color: #ffffff;
background-color: #007ee5
background-color: #007ee5
}
}
.btn-flickr {
.btn-flickr {
color: #ffffff;
color: #ffffff;
background-color: #ff0084
background-color: #ff0084
}
}
.btn-tumblr {
.btn-tumblr {
color: #ffffff;
color: #ffffff;
background-color: #32506d
background-color: #32506d
}
}
.btn-skype {
.btn-skype {
color: #ffffff;
color: #ffffff;
background-color: #00aff0
background-color: #00aff0
}
}
.btn-youtube {
.btn-youtube {
color: #ffffff;
color: #ffffff;
background-color: #bb0000
background-color: #bb0000
}
}
.btn-github {
.btn-github {
color: #ffffff;
color: #ffffff;
background-color: #171515
background-color: #171515
}
}
.notify {
.notify {
position: relative;
position: relative;
top: -22px;
top: -22px;
right: -9px
right: -9px
}
}
.notify .heartbit {
.notify .heartbit {
position: absolute;
position: absolute;
top: -20px;
top: -20px;
right: -4px;
right: -4px;
height: 25px;
height: 25px;
width: 25px;
width: 25px;
z-index: 10;
z-index: 10;
border: 5px solid #ef5350;
border: 5px solid #ef5350;
border-radius: 70px;
border-radius: 70px;
-moz-animation: heartbit 1s ease-out;
-moz-animation: heartbit 1s ease-out;
-moz-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-o-animation: heartbit 1s ease-out;
-o-animation: heartbit 1s ease-out;
-o-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
-webkit-animation: heartbit 1s ease-out;
-webkit-animation: heartbit 1s ease-out;
-webkit-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite
animation-iteration-count: infinite
}
}
.notify .point {
.notify .point {
width: 6px;
width: 6px;
height: 6px;
height: 6px;
-webkit-border-radius: 30px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
border-radius: 30px;
background-color: #ef5350;
background-color: #ef5350;
position: absolute;
position: absolute;
right: 6px;
right: 6px;
top: -10px
top: -10px
}
}
@-moz-keyframes heartbit {
@-moz-keyframes heartbit {
0% {
0% {
-moz-transform: scale(0);
-moz-transform: scale(0);
opacity: 0.0
opacity: 0.0
}
}
25% {
25% {
-moz-transform: scale(0.1);
-moz-transform: scale(0.1);
opacity: 0.1
opacity: 0.1
}
}
50% {
50% {
-moz-transform: scale(0.5);
-moz-transform: scale(0.5);
opacity: 0.3
opacity: 0.3
}
}
75% {
75% {
-moz-transform: scale(0.8);
-moz-transform: scale(0.8);
opacity: 0.5
opacity: 0.5
}
}
to {
to {
-moz-transform: scale(1);
-moz-transform: scale(1);
opacity: 0.0
opacity: 0.0
}
}
}
}
@-webkit-keyframes heartbit {
@-webkit-keyframes heartbit {
0% {
0% {
-webkit-transform: scale(0);
-webkit-transform: scale(0);
opacity: 0.0
opacity: 0.0
}
}
25% {
25% {
-webkit-transform: scale(0.1);
-webkit-transform: scale(0.1);
opacity: 0.1
opacity: 0.1
}
}
50% {
50% {
-webkit-transform: scale(0.5);
-webkit-transform: scale(0.5);
opacity: 0.3
opacity: 0.3
}
}
75% {
75% {
-webkit-transform: scale(0.8);
-webkit-transform: scale(0.8);
opacity: 0.5
opacity: 0.5
}
}
to {
to {
-webkit-transform: scale(1);
-webkit-transform: scale(1);
opacity: 0.0
opacity: 0.0
}
}
}
}
.fileupload {
.fileupload {
overflow: hidden;
overflow: hidden;
position: relative
position: relative
}
}
.fileupload input.upload {
.fileupload input.upload {
cursor: pointer;
cursor: pointer;
filter: alpha(opacity=0);
filter: alpha(opacity=0);
font-size: 20px;
font-size: 20px;
margin: 0;
margin: 0;
opacity: 0;
opacity: 0;
padding: 0;
padding: 0;
position: absolute;
position: absolute;
right: 0;
right: 0;
top: 0
top: 0
}
}
.mega-dropdown {
.mega-dropdown {
position: static;
position: static;
width: 100%
width: 100%
}
}
.mega-dropdown .dropdown-menu {
.mega-dropdown .dropdown-menu {
width: 100%;
width: 100%;
padding: 30px;
padding: 30px;
margin-top: 0px
margin-top: 0px
}
}
.mega-dropdown ul {
.mega-dropdown ul {
padding: 0px
padding: 0px
}
}
.mega-dropdown ul li {
.mega-dropdown ul li {
list-style: none
list-style: none
}
}
.mega-dropdown .carousel-item .container {
.mega-dropdown .carousel-item .container {
padding: 0px
padding: 0px
}
}
.mega-dropdown .nav-accordion .card {
.mega-dropdown .nav-accordion .card {
margin-bottom: 1px
margin-bottom: 1px
}
}
.mega-dropdown .nav-accordion .card-header {
.mega-dropdown .nav-accordion .card-header {
background: #ffffff
background: #ffffff
}
}
.mega-dropdown .nav-accordion .card-header h5 {
.mega-dropdown .nav-accordion .card-header h5 {
margin: 0px
margin: 0px
}
}
.mega-dropdown .nav-accordion .card-header h5 a {
.mega-dropdown .nav-accordion .card-header h5 a {
text-decoration: none;
text-decoration: none;
color: #67757c
color: #67757c
}
}
ul.list-style-none {
ul.list-style-none {
margin: 0px;
margin: 0px;
padding: 0px
padding: 0px
}
}
ul.list-style-none li {
ul.list-style-none li {
list-style: none
list-style: none
}
}
ul.list-style-none li a {
ul.list-style-none li a {
color: #67757c;
color: #67757c;
padding: 8px 0px;
padding: 8px 0px;
display: block;
display: block;
text-decoration: none
text-decoration: none
}
}
ul.list-style-none li a:hover {
ul.list-style-none li a:hover {
color: #1976d2
color: #1976d2
}
}
.dropdown-item {
.dropdown-item {
padding: 8px 1rem;
padding: 8px 1rem;
color: #67757c
color: #67757c
}
}
.custom-select {
.custom-select {
background: url(../../assets/images/custom-select.png) right 0.75rem center no-repeat
background: url(../../assets/images/custom-select.png) right 0.75rem center no-repeat
}
}
textarea {
textarea {
resize: none
resize: none
}
}
.form-control {
.form-control {
color: #67757c;
color: #67757c;
min-height: 38px;
min-height: 38px;
display: initial
display: initial
}
}
.form-control-sm {
.form-control-sm {
min-height: 20px
min-height: 20px
}
}
.form-control:disabled, .form-control[readonly] {
.form-control:disabled, .form-control[readonly] {
opacity: 0.7
opacity: 0.7
}
}
.custom-control-input:focus~.custom-control-indicator {
.custom-control-input:focus~.custom-control-indicator {
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none
box-shadow: none
}
}
.custom-control-input:checked~.custom-control-indicator {
.custom-control-input:checked~.custom-control-indicator {
background-color: #26dad2
background-color: #26dad2
}
}
form label {
form label {
font-weight: 400
font-weight: 400
}
}
.form-group {
.form-group {
margin-bottom: 25px
margin-bottom: 25px
}
}
.form-horizontal label {
.form-horizontal label {
margin-bottom: 0px
margin-bottom: 0px
}
}
.form-control-static {
.form-control-static {
padding-top: 0px
padding-top: 0px
}
}
.form-bordered .form-group {
.form-bordered .form-group {
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
padding-bottom: 20px
padding-bottom: 20px
}
}
.card-no-border .card {
.card-no-border .card {
border: 0px;
border: 0px;
border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05)
box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05)
}
}
.card-no-border .shadow-none {
.card-no-border .shadow-none {
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none
box-shadow: none
}
}
.card-outline-danger, .card-outline-info, .card-outline-primary, .card-outline-success, .card-outline-warning {
.card-outline-danger, .card-outline-info, .card-outline-primary, .card-outline-success, .card-outline-warning {
background: #ffffff
background: #ffffff
}
}
.card-fullscreen {
.card-fullscreen {
position: fixed;
position: fixed;
top: 0px;
top: 0px;
left: 0px;
left: 0px;
width: 100%;
width: 100%;
height: 100%;
height: 100%;
z-index: 9999;
z-index: 9999;
overflow: auto
overflow: auto
}
}
.css-bar:after {
.css-bar:after {
z-index: 1
z-index: 1
}
}
.css-bar>i {
.css-bar>i {
z-index: 10
z-index: 10
}
}
.single-column .left-sidebar {
.single-column .left-sidebar {
display: none
display: none
}
}
.single-column .page-wrapper {
.single-column .page-wrapper {
margin-left: 0px
margin-left: 0px
}
}
.fix-width {
.fix-width {
width: 100%;
width: 100%;
max-width: 1170px;
max-width: 1170px;
margin: 0 auto
margin: 0 auto
}
}
.card-default .card-header {
.card-default .card-header {
background: #ffffff;
background: #ffffff;
border-bottom: 0px
border-bottom: 0px
}
}
.progress {
.progress {
height: auto
height: auto
}
}
.card-group {
.card-group {
margin-bottom: 30px
margin-bottom: 30px
}
}
.preloader {
.preloader {
width: 100%;
width: 100%;
height: 100%;
height: 100%;
top: 0px;
top: 0px;
position: fixed;
position: fixed;
z-index: 99999;
z-index: 99999;
background: #fff
background: #fff
}
}
.preloader .cssload-speeding-wheel {
.preloader .cssload-speeding-wheel {
position: absolute;
position: absolute;
top: calc(50% - 3.5px);
top: calc(50% - 3.5px);
left: calc(50% - 3.5px)
left: calc(50% - 3.5px)
}
}
#main-wrapper {
#main-wrapper {
width: 100%
width: 100%
}
}
.boxed #main-wrapper {
.boxed #main-wrapper {
width: 100%;
width: 100%;
max-width: 1300px;
max-width: 1300px;
margin: 0 auto;
margin: 0 auto;
-webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 60px rgba(0, 0, 0, 0.1)
box-shadow: 0 0 60px rgba(0, 0, 0, 0.1)
}
}
.boxed #main-wrapper .sidebar-footer {
.boxed #main-wrapper .sidebar-footer {
position: absolute
position: absolute
}
}
.boxed #main-wrapper .footer {
.boxed #main-wrapper .footer {
display: none
display: none
}
}
.page-wrapper {
.page-wrapper {
background: #eef5f9;
background: #eef5f9;
padding-bottom: 60px
padding-bottom: 60px
}
}
.container-fluid {
.container-fluid {
padding: 0 30px 25px 30px
padding: 0 30px 25px 30px
}
}
.topbar {
.topbar {
position: relative;
position: relative;
z-index: 50
z-index: 50
}
}
.topbar .top-navbar {
.topbar .top-navbar {
min-height: 50px;
min-height: 50px;
padding: 0px 15px 0 0
padding: 0px 15px 0 0
}
}
.topbar .top-navbar .dropdown-toggle:after {
.topbar .top-navbar .dropdown-toggle:after {
display: none
display: none
}
}
.topbar .top-navbar .navbar-header {
.topbar .top-navbar .navbar-header {
line-height: 45px;
line-height: 45px;
text-align: center
text-align: center
}
}
.topbar .top-navbar .navbar-header .navbar-brand {
.topbar .top-navbar .navbar-header .navbar-brand {
margin-right: 0px;
margin-right: 0px;
padding-bottom: 0px;
padding-bottom: 0px;
padding-top: 0px
padding-top: 0px
}
}
.topbar .top-navbar .navbar-header .navbar-brand .light-logo {
.topbar .top-navbar .navbar-header .navbar-brand .light-logo {
display: none
display: none
}
}
.topbar .top-navbar .navbar-header .navbar-brand b {
.topbar .top-navbar .navbar-header .navbar-brand b {
line-height: 60px;
line-height: 60px;
display: inline-block
display: inline-block
}
}
.topbar .top-navbar .navbar-nav>.nav-item>.nav-link {
.topbar .top-navbar .navbar-nav>.nav-item>.nav-link {
padding-left: .75rem;
padding-left: .75rem;
padding-right: .75rem;
padding-right: .75rem;
font-size: 15px;
font-size: 15px;
line-height: 40px
line-height: 40px
}
}
.topbar .top-navbar .navbar-nav>.nav-item.show {
.topbar .top-navbar .navbar-nav>.nav-item.show {
background: rgba(0, 0, 0, 0.05)
background: rgba(0, 0, 0, 0.05)
}
}
.topbar .profile-pic {
.topbar .profile-pic {
width: 30px;
width: 30px;
border-radius: 100%
border-radius: 100%
}
}
.topbar .dropdown-menu {
.topbar .dropdown-menu {
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
-moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
border-color: rgba(120, 130, 140, 0.13)
border-color: rgba(120, 130, 140, 0.13)
}
}
.topbar .dropdown-menu .dropdown-item {
.topbar .dropdown-menu .dropdown-item {
padding: 7px 1.5rem
padding: 7px 1.5rem
}
}
.topbar ul.dropdown-user {
.topbar ul.dropdown-user {
padding: 0px;
padding: 0px;
min-width: 270px
min-width: 270px
}
}
.topbar ul.dropdown-user li {
.topbar ul.dropdown-user li {
list-style: none;
list-style: none;
padding: 0px;
padding: 0px;
margin: 0px
margin: 0px
}
}
.topbar ul.dropdown-user li.divider {
.topbar ul.dropdown-user li.divider {
height: 1px;
height: 1px;
margin: 9px 0;
margin: 9px 0;
overflow: hidden;
overflow: hidden;
background-color: rgba(120, 130, 140, 0.13)
background-color: rgba(120, 130, 140, 0.13)
}
}
.topbar ul.dropdown-user li .dw-user-box {
.topbar ul.dropdown-user li .dw-user-box {
padding: 10px 15px
padding: 10px 15px
}
}
.topbar ul.dropdown-user li .dw-user-box .u-img {
.topbar ul.dropdown-user li .dw-user-box .u-img {
width: 70px;
width: 70px;
display: inline-block;
display: inline-block;
vertical-align: top
vertical-align: top
}
}
.topbar ul.dropdown-user li .dw-user-box .u-img img {
.topbar ul.dropdown-user li .dw-user-box .u-img img {
width: 100%;
width: 100%;
border-radius: 5px
border-radius: 5px
}
}
.topbar ul.dropdown-user li .dw-user-box .u-text {
.topbar ul.dropdown-user li .dw-user-box .u-text {
display: inline-block;
display: inline-block;
padding-left: 10px
padding-left: 10px
}
}
.topbar ul.dropdown-user li .dw-user-box .u-text h4 {
.topbar ul.dropdown-user li .dw-user-box .u-text h4 {
margin: 0px;
margin: 0px;
font-size: 15px
font-size: 15px
}
}
.topbar ul.dropdown-user li .dw-user-box .u-text p {
.topbar ul.dropdown-user li .dw-user-box .u-text p {
margin-bottom: 2px;
margin-bottom: 2px;
font-size: 12px
font-size: 12px
}
}
.topbar ul.dropdown-user li .dw-user-box .u-text .btn {
.topbar ul.dropdown-user li .dw-user-box .u-text .btn {
color: #ffffff;
color: #ffffff;
padding: 5px 10px;
padding: 5px 10px;
display: inline-block
display: inline-block
}
}
.topbar ul.dropdown-user li .dw-user-box .u-text .btn:hover {
.topbar ul.dropdown-user li .dw-user-box .u-text .btn:hover {
background: #e6294b
background: #e6294b
}
}
.topbar ul.dropdown-user li a {
.topbar ul.dropdown-user li a {
padding: 9px 15px;
padding: 9px 15px;
display: block;
display: block;
color: #67757c
color: #67757c
}
}
.topbar ul.dropdown-user li a:hover {
.topbar ul.dropdown-user li a:hover {
background: #f2f4f8;
background: #f2f4f8;
color: #1976d2;
color: #1976d2;
text-decoration: none
text-decoration: none
}
}
.search-box .app-search {
.search-box .app-search {
position: absolute;
position: absolute;
margin: 0px;
margin: 0px;
display: block;
display: block;
z-index: 110;
z-index: 110;
width: 100%;
width: 100%;
top: -1px;
top: -1px;
-webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.2);
display: none;
display: none;
left: 0px
left: 0px
}
}
.search-box .app-search input {
.search-box .app-search input {
width: 100.5%;
width: 100.5%;
padding: 20px 40px 20px 20px;
padding: 20px 40px 20px 20px;
border-radius: 0px;
border-radius: 0px;
font-size: 17px;
font-size: 17px;
-webkit-transition: 0.5s ease-in;
-webkit-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
transition: 0.5s ease-in;
transition: 0.5s ease-in;
height: 61px
height: 61px
}
}
.search-box .app-search input:focus {
.search-box .app-search input:focus {
border-color: #ffffff
border-color: #ffffff
}
}
.search-box .app-search .srh-btn {
.search-box .app-search .srh-btn {
position: absolute;
position: absolute;
top: 23px;
top: 23px;
cursor: pointer;
cursor: pointer;
background: #ffffff;
background: #ffffff;
width: 15px;
width: 15px;
height: 15px;
height: 15px;
right: 20px;
right: 20px;
font-size: 14px
font-size: 14px
}
}
.mini-sidebar .top-navbar .navbar-header {
.mini-sidebar .top-navbar .navbar-header {
width: 60px;
width: 60px;
text-align: center
text-align: center
}
}
.logo-center .top-navbar .navbar-header {
.logo-center .top-navbar .navbar-header {
position: absolute;
position: absolute;
left: 0;
left: 0;
right: 0;
right: 0;
margin: 0 auto
margin: 0 auto
}
}
.page-titles {
.page-titles {
background: #ffffff;
background: #ffffff;
margin: 0 0px 9px;
margin: 0 0px 9px;
padding: 15px 10px;
padding: 15px 10px;
position: relative;
position: relative;
z-index: 10;
z-index: 10;
-webkit-box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1);
box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1)
box-shadow: 1px 0 5px rgba(0, 0, 0, 0.1)
}
}
.page-titles h3 {
.page-titles h3 {
margin-bottom: 0px;
margin-bottom: 0px;
margin-top: 0px
margin-top: 0px
}
}
.page-titles .breadcrumb {
.page-titles .breadcrumb {
padding: 0px;
padding: 0px;
background: transparent;
background: transparent;
font-size: 14px
font-size: 14px
}
}
.page-titles .breadcrumb li {
.page-titles .breadcrumb li {
margin-top: 0px;
margin-top: 0px;
margin-bottom: 0px
margin-bottom: 0px
}
}
.page-titles .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
.page-titles .breadcrumb .breadcrumb-item+.breadcrumb-item:before {
content: "\e649";
content: "\e649";
font-family: themify;
font-family: themify;
color: #a6b7bf;
color: #a6b7bf;
font-size: 11px
font-size: 11px
}
}
.page-titles .breadcrumb .breadcrumb-item.active {
.page-titles .breadcrumb .breadcrumb-item.active {
color: #99abb4
color: #99abb4
}
}
@-webkit-keyframes rotate {
@-webkit-keyframes rotate {
0% {
0% {
-webkit-transform: rotate(0deg)
-webkit-transform: rotate(0deg)
}
}
to {
to {
-webkit-transform: rotate(360deg)
-webkit-transform: rotate(360deg)
}
}
}
}
@-moz-keyframes rotate {
@-moz-keyframes rotate {
0% {
0% {
-moz-transform: rotate(0deg)
-moz-transform: rotate(0deg)
}
}
to {
to {
-moz-transform: rotate(360deg)
-moz-transform: rotate(360deg)
}
}
}
}
@keyframes rotate {
@keyframes rotate {
0% {
0% {
-webkit-transform: rotate(0deg);
-webkit-transform: rotate(0deg);
transform: rotate(0deg)
transform: rotate(0deg)
}
}
to {
to {
-webkit-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
transform: rotate(360deg)
transform: rotate(360deg)
}
}
}
}
.right-side-toggle {
.right-side-toggle {
position: relative
position: relative
}
}
.right-side-toggle i {
.right-side-toggle i {
-webkit-transition-property: -webkit-transform;
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 1s;
-webkit-transition-duration: 1s;
-moz-transition-property: -moz-transform;
-moz-transition-property: -moz-transform;
-moz-transition-duration: 1s;
-moz-transition-duration: 1s;
transition-property: -webkit-transform;
transition-property: -webkit-transform;
-o-transition-property: transform;
-o-transition-property: transform;
transition-property: transform;
transition-property: transform;
transition-property: transform, -webkit-transform;
transition-property: transform, -webkit-transform;
-o-transition-duration: 1s;
-o-transition-duration: 1s;
transition-duration: 1s;
transition-duration: 1s;
-webkit-animation-name: rotate;
-webkit-animation-name: rotate;
-webkit-animation-duration: 2s;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
-webkit-animation-timing-function: linear;
-moz-animation-name: rotate;
-moz-animation-name: rotate;
-moz-animation-duration: 2s;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-moz-animation-timing-function: linear;
-moz-animation-timing-function: linear;
animation-name: rotate;
animation-name: rotate;
animation-duration: 2s;
animation-duration: 2s;
animation-iteration-count: infinite;
animation-iteration-count: infinite;
animation-timing-function: linear;
animation-timing-function: linear;
position: absolute;
position: absolute;
top: 18px;
top: 11px;
left: 18px
left: 11px
}
}
.right-sidebar {
.right-sidebar {
position: fixed;
position: fixed;
right: -240px;
right: -240px;
width: 240px;
width: 240px;
display: none;
display: none;
z-index: 1100;
z-index: 1100;
background: #ffffff;
background: #ffffff;
top: 0px;
top: 0px;
padding-bottom: 20px;
padding-bottom: 20px;
height: 100%;
height: 100%;
-webkit-box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
box-shadow: 5px 1px 40px rgba(0, 0, 0, 0.1);
-webkit-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease
transition: all 0.3s ease
}
}
.right-sidebar .rpanel-title {
.right-sidebar .rpanel-title {
display: block;
display: block;
padding: 19px 20px;
padding: 19px 20px;
color: #ffffff;
color: #ffffff;
text-transform: uppercase;
text-transform: uppercase;
font-size: 15px;
font-size: 15px;
background: #1976d2
background: #1976d2
}
}
.right-sidebar .rpanel-title span {
.right-sidebar .rpanel-title span {
float: right;
float: right;
cursor: pointer;
cursor: pointer;
font-size: 11px
font-size: 11px
}
}
.right-sidebar .rpanel-title span:hover {
.right-sidebar .rpanel-title span:hover {
color: #ffffff
color: #ffffff
}
}
.right-sidebar .r-panel-body {
.right-sidebar .r-panel-body {
padding: 20px
padding: 20px
}
}
.right-sidebar .r-panel-body ul {
.right-sidebar .r-panel-body ul {
margin: 0px;
margin: 0px;
padding: 0px
padding: 0px
}
}
.right-sidebar .r-panel-body ul li {
.right-sidebar .r-panel-body ul li {
list-style: none;
list-style: none;
padding: 5px 0
padding: 5px 0
}
}
.shw-rside {
.shw-rside {
right: 0px;
right: 0px;
width: 240px;
width: 240px;
display: block
display: block
}
}
.chatonline img {
.chatonline img {
margin-right: 10px;
margin-right: 10px;
float: left;
float: left;
width: 30px
width: 30px
}
}
.chatonline li a {
.chatonline li a {
padding: 13px 0;
padding: 13px 0;
float: left;
float: left;
width: 100%
width: 100%
}
}
.chatonline li a span {
.chatonline li a span {
color: #67757c
color: #67757c
}
}
.chatonline li a span small {
.chatonline li a span small {
display: block;
display: block;
font-size: 10px
font-size: 10px
}
}
ul#themecolors {
ul#themecolors {
display: block
display: block
}
}
ul#themecolors li {
ul#themecolors li {
display: inline-block
display: inline-block
}
}
ul#themecolors li:first-child {
ul#themecolors li:first-child {
display: block
display: block
}
}
ul#themecolors li a {
ul#themecolors li a {
width: 50px;
width: 50px;
height: 50px;
height: 50px;
display: inline-block;
display: inline-block;
margin: 5px;
margin: 5px;
color: transparent;
color: transparent;
position: relative
position: relative
}
}
ul#themecolors li a.working:before {
ul#themecolors li a.working:before {
content: "\f00c";
content: "\f00c";
font-family: "FontAwesome";
font-family: "FontAwesome";
font-size: 18px;
font-size: 18px;
line-height: 50px;
line-height: 50px;
width: 50px;
width: 50px;
height: 50px;
height: 50px;
position: absolute;
position: absolute;
top: 0;
top: 0;
left: 0;
left: 0;
color: #ffffff;
color: #ffffff;
text-align: center
text-align: center
}
}
.default-theme {
.default-theme {
background: #99abb4
background: #99abb4
}
}
.green-theme {
.green-theme {
background: #26dad2
background: #26dad2
}
}
.yellow-theme {
.yellow-theme {
background: #ffb22b
background: #ffb22b
}
}
.red-theme {
.red-theme {
background: #ef5350
background: #ef5350
}
}
.blue-theme {
.blue-theme {
background: #1976d2
background: #1976d2
}
}
.purple-theme {
.purple-theme {
background: #7460ee
background: #7460ee
}
}
.megna-theme {
.megna-theme {
background: #00897b
background: #00897b
}
}
.default-dark-theme {
.default-dark-theme {
background: #263238;
background: #263238;
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #99abb4), color-stop(99%, #99abb4));
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #99abb4), color-stop(99%, #99abb4));
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%);
background: linear-gradient(to right, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%)
background: linear-gradient(to right, #263238 0%, #263238 23%, #99abb4 23%, #99abb4 99%)
}
}
.green-dark-theme {
.green-dark-theme {
background: #263238;
background: #263238;
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%);
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #00c292 23%, #26dad2 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #00c292 23%, #26dad2 99%);
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #26dad2), color-stop(99%, #26dad2));
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #26dad2), color-stop(99%, #26dad2));
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%);
background: linear-gradient(to right, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%)
background: linear-gradient(to right, #263238 0%, #263238 23%, #26dad2 23%, #26dad2 99%)
}
}
.yellow-dark-theme {
.yellow-dark-theme {
background: #263238;
background: #263238;
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #ef5350), color-stop(99%, #ef5350));
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #ef5350), color-stop(99%, #ef5350));
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: linear-gradient(to right, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%)
background: linear-gradient(to right, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%)
}
}
.blue-dark-theme {
.blue-dark-theme {
background: #263238;
background: #263238;
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%);
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%);
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #1976d2), color-stop(99%, #1976d2));
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #1976d2), color-stop(99%, #1976d2));
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%);
background: linear-gradient(to right, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%)
background: linear-gradient(to right, #263238 0%, #263238 23%, #1976d2 23%, #1976d2 99%)
}
}
.purple-dark-theme {
.purple-dark-theme {
background: #263238;
background: #263238;
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #7460ee), color-stop(99%, #7460ee));
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #7460ee), color-stop(99%, #7460ee));
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%);
background: linear-gradient(to right, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%)
background: linear-gradient(to right, #263238 0%, #263238 23%, #7460ee 23%, #7460ee 99%)
}
}
.megna-dark-theme {
.megna-dark-theme {
background: #263238;
background: #263238;
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%);
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%);
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #00897b), color-stop(99%, #00897b));
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #00897b), color-stop(99%, #00897b));
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%);
background: linear-gradient(to right, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%)
background: linear-gradient(to right, #263238 0%, #263238 23%, #00897b 23%, #00897b 99%)
}
}
.red-dark-theme {
.red-dark-theme {
background: #263238;
background: #263238;
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -moz-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -webkit-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #ef5350), color-stop(99%, #ef5350));
background: -webkit-gradient(linear, left top, right top, from(#263238), color-stop(23%, #263238), color-stop(23%, #ef5350), color-stop(99%, #ef5350));
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: -o-linear-gradient(left, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%);
background: linear-gradient(to right, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%)
background: linear-gradient(to right, #263238 0%, #263238 23%, #ef5350 23%, #ef5350 99%)
}
}
.page-titles {
.page-titles {
padding-bottom: 0px
padding-bottom: 0px
}
}
.footer {
.footer {
bottom: 0;
bottom: 0;
color: #67757c;
color: #67757c;
left: 0px;
left: 0px;
padding: 17px 15px;
padding: 17px 15px;
position: absolute;
position: absolute;
right: 0;
right: 0;
border-top: 1px solid rgba(120, 130, 140, 0.13);
border-top: 1px solid rgba(120, 130, 140, 0.13);
background: #ffffff
background: #ffffff
}
}
.card {
.card {
margin-bottom: 30px
margin-bottom: 30px
}
}
.card .card-subtitle {
.card .card-subtitle {
font-weight: 300;
font-weight: 300;
margin-bottom: 15px;
margin-bottom: 15px;
color: #99abb4
color: #99abb4
}
}
.card-inverse .card-bodyquote .blockquote-footer, .card-inverse .card-link, .card-inverse .card-subtitle, .card-inverse .card-text {
.card-inverse .card-bodyquote .blockquote-footer, .card-inverse .card-link, .card-inverse .card-subtitle, .card-inverse .card-text {
color: rgba(255, 255, 255, 0.65)
color: rgba(255, 255, 255, 0.65)
}
}
.card-success {
.card-success {
background: #26dad2;
background: #26dad2;
border-color: #26dad2
border-color: #26dad2
}
}
.card-danger {
.card-danger {
background: #ef5350;
background: #ef5350;
border-color: #ef5350
border-color: #ef5350
}
}
.card-warning {
.card-warning {
background: #ffb22b;
background: #ffb22b;
border-color: #ffb22b
border-color: #ffb22b
}
}
.card-info {
.card-info {
background: #1976d2;
background: #1976d2;
border-color: #1976d2
border-color: #1976d2
}
}
.card-primary {
.card-primary {
background: #5c4ac7;
background: #5c4ac7;
border-color: #5c4ac7
border-color: #5c4ac7
}
}
.card-dark {
.card-dark {
background: #2f3d4a;
background: #2f3d4a;
border-color: #2f3d4a
border-color: #2f3d4a
}
}
.card-megna {
.card-megna {
background: #00897b;
background: #00897b;
border-color: #00897b
border-color: #00897b
}
}
.button-group .btn {
.button-group .btn {
margin-bottom: 5px;
margin-bottom: 5px;
margin-right: 5px
margin-right: 5px
}
}
.no-button-group .btn {
.no-button-group .btn {
margin-bottom: 5px;
margin-bottom: 5px;
margin-right: 0px
margin-right: 0px
}
}
.btn .text-active {
.btn .text-active {
display: none
display: none
}
}
.btn.active .text-active {
.btn.active .text-active {
display: inline-block
display: inline-block
}
}
.btn.active .text {
.btn.active .text {
display: none
display: none
}
}
.card-actions {
.card-actions {
float: right
float: right
}
}
.card-actions a {
.card-actions a {
cursor: pointer;
cursor: pointer;
color: #67757c;
color: #67757c;
opacity: 0.7;
opacity: 0.7;
padding-left: 7px;
padding-left: 7px;
font-size: 13px
font-size: 13px
}
}
.card-actions a:hover {
.card-actions a:hover {
opacity: 1
opacity: 1
}
}
.card-columns .card {
.card-columns .card {
margin-bottom: 20px
margin-bottom: 20px
}
}
.collapsing {
.collapsing {
-webkit-transition: height .08s ease;
-webkit-transition: height .08s ease;
-o-transition: height .08s ease;
-o-transition: height .08s ease;
transition: height .08s ease
transition: height .08s ease
}
}
.card-info {
.card-info {
background: #1976d2;
background: #1976d2;
border-color: #1976d2
border-color: #1976d2
}
}
.card-primary {
.card-primary {
background: #5c4ac7;
background: #5c4ac7;
border-color: #5c4ac7
border-color: #5c4ac7
}
}
.card-outline-info {
.card-outline-info {
border-color: #1976d2
border-color: #1976d2
}
}
.card-outline-info .card-header {
.card-outline-info .card-header {
background: #1976d2;
background: #1976d2;
border-color: #1976d2
border-color: #1976d2
}
}
.card-outline-inverse {
.card-outline-inverse {
border-color: #2f3d4a
border-color: #2f3d4a
}
}
.card-outline-inverse .card-header {
.card-outline-inverse .card-header {
background: #2f3d4a;
background: #2f3d4a;
border-color: #2f3d4a
border-color: #2f3d4a
}
}
.card-outline-warning {
.card-outline-warning {
border-color: #ffb22b
border-color: #ffb22b
}
}
.card-outline-warning .card-header {
.card-outline-warning .card-header {
background: #ffb22b;
background: #ffb22b;
border-color: #ffb22b
border-color: #ffb22b
}
}
.card-outline-success {
.card-outline-success {
border-color: #26dad2
border-color: #26dad2
}
}
.card-outline-success .card-header {
.card-outline-success .card-header {
background: #26dad2;
background: #26dad2;
border-color: #26dad2
border-color: #26dad2
}
}
.card-outline-danger {
.card-outline-danger {
border-color: #ef5350
border-color: #ef5350
}
}
.card-outline-danger .card-header {
.card-outline-danger .card-header {
background: #ef5350;
background: #ef5350;
border-color: #ef5350
border-color: #ef5350
}
}
.card-outline-primary {
.card-outline-primary {
border-color: #5c4ac7
border-color: #5c4ac7
}
}
.card-outline-primary .card-header {
.card-outline-primary .card-header {
background: #5c4ac7;
background: #5c4ac7;
border-color: #5c4ac7
border-color: #5c4ac7
}
}
.bc-colored .breadcrumb-item, .bc-colored .breadcrumb-item a {
.bc-colored .breadcrumb-item, .bc-colored .breadcrumb-item a {
color: #ffffff
color: #ffffff
}
}
.bc-colored .breadcrumb-item.active, .bc-colored .breadcrumb-item a.active {
.bc-colored .breadcrumb-item.active, .bc-colored .breadcrumb-item a.active {
opacity: 0.7
opacity: 0.7
}
}
.bc-colored .breadcrumb-item+.breadcrumb-item:before {
.bc-colored .breadcrumb-item+.breadcrumb-item:before {
color: rgba(255, 255, 255, 0.4)
color: rgba(255, 255, 255, 0.4)
}
}
.breadcrumb {
.breadcrumb {
margin-bottom: 0px
margin-bottom: 0px
}
}
ul.list-icons {
ul.list-icons {
margin: 0px;
margin: 0px;
padding: 0px
padding: 0px
}
}
ul.list-icons li {
ul.list-icons li {
list-style: none;
list-style: none;
line-height: 30px;
line-height: 30px;
margin: 5px 0;
margin: 5px 0;
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
ul.list-icons li a {
ul.list-icons li a {
color: #67757c
color: #67757c
}
}
ul.list-icons li a:hover {
ul.list-icons li a:hover {
color: #1976d2
color: #1976d2
}
}
ul.list-icons li i {
ul.list-icons li i {
font-size: 13px;
font-size: 13px;
padding-right: 8px
padding-right: 8px
}
}
ul.list-inline li {
ul.list-inline li {
display: inline-block;
display: inline-block;
padding: 0 8px
padding: 0 8px
}
}
ul.two-part {
ul.two-part {
margin: 0px
margin: 0px
}
}
ul.two-part li {
ul.two-part li {
width: 48.8%
width: 48.8%
}
}
html body .accordion .card {
html body .accordion .card {
margin-bottom: 0px
margin-bottom: 0px
}
}
.flot-chart {
.flot-chart {
display: block;
display: block;
height: 400px
height: 400px
}
}
.flot-chart-content {
.flot-chart-content {
width: 100%;
width: 100%;
height: 100%
height: 100%
}
}
html body .flotTip, html body .jqstooltip {
html body .flotTip, html body .jqstooltip {
width: auto!important;
width: auto!important;
height: auto!important;
height: auto!important;
background: #263238;
background: #263238;
color: #ffffff;
color: #ffffff;
padding: 5px 10px
padding: 5px 10px
}
}
body .jqstooltip {
body .jqstooltip {
border-color: transparent;
border-color: transparent;
border-radius: 60px
border-radius: 60px
}
}
.chart {
.chart {
position: relative;
position: relative;
display: inline-block;
display: inline-block;
width: 100px;
width: 100px;
height: 100px;
height: 100px;
margin-top: 20px;
margin-top: 20px;
margin-bottom: 20px;
margin-bottom: 20px;
text-align: center
text-align: center
}
}
.chart canvas {
.chart canvas {
position: absolute;
position: absolute;
top: 0;
top: 0;
left: 0
left: 0
}
}
.chart.chart-widget-pie {
.chart.chart-widget-pie {
margin-top: 5px;
margin-top: 5px;
margin-bottom: 5px
margin-bottom: 5px
}
}
.pie-chart>span {
.pie-chart>span {
left: 0;
left: 0;
margin-top: -2px;
margin-top: -2px;
position: absolute;
position: absolute;
right: 0;
right: 0;
text-align: center;
text-align: center;
top: 50%;
top: 50%;
-webkit-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%)
transform: translateY(-50%)
}
}
.chart>span>img {
.chart>span>img {
left: 0;
left: 0;
margin-top: -2px;
margin-top: -2px;
position: absolute;
position: absolute;
right: 0;
right: 0;
text-align: center;
text-align: center;
top: 50%;
top: 50%;
width: 60%;
width: 60%;
height: 60%;
height: 60%;
-webkit-transform: translateY(-50%);
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
transform: translateY(-50%);
margin: 0 auto
margin: 0 auto
}
}
.percent {
.percent {
display: inline-block;
display: inline-block;
line-height: 100px;
line-height: 100px;
z-index: 2;
z-index: 2;
font-weight: 600;
font-weight: 600;
font-size: 18px;
font-size: 18px;
color: #263238
color: #263238
}
}
.percent:after {
.percent:after {
content: '%';
content: '%';
margin-left: 0.1em;
margin-left: 0.1em;
font-size: .8em
font-size: .8em
}
}
.ct-charts {
.ct-charts {
position: relative
position: relative
}
}
.amp-pxl {
.amp-pxl {
position: relative
position: relative
}
}
.amp-pxl .ct-series-a .ct-bar {
.amp-pxl .ct-series-a .ct-bar {
stroke: #1976d2
stroke: #1976d2
}
}
.amp-pxl .ct-series-b .ct-bar {
.amp-pxl .ct-series-b .ct-bar {
stroke: #26dad2
stroke: #26dad2
}
}
.c3-chart-arcs-title, .c3-legend-item {
.c3-chart-arcs-title, .c3-legend-item {
font-family: "Poppins", sans-serif;
font-family: "Poppins", sans-serif;
fill: #67757c
fill: #67757c
}
}
html body #visitor .c3-chart-arcs-title {
html body #visitor .c3-chart-arcs-title {
font-size: 18px;
font-size: 18px;
fill: #99abb4
fill: #99abb4
}
}
.stylish-table thead th {
.stylish-table thead th {
font-weight: 400;
font-weight: 400;
color: #99abb4;
color: #99abb4;
border: 0px;
border: 0px;
border-bottom: 1px
border-bottom: 1px
}
}
.stylish-table tbody tr {
.stylish-table tbody tr {
border-left: 4px solid #ffffff
border-left: 4px solid #ffffff
}
}
.stylish-table tbody tr.active, .stylish-table tbody tr:hover {
.stylish-table tbody tr.active, .stylish-table tbody tr:hover {
border-left: 4px solid #1976d2
border-left: 4px solid #1976d2
}
}
.stylish-table tbody td {
.stylish-table tbody td {
vertical-align: middle
vertical-align: middle
}
}
.stylish-table tbody td h6 {
.stylish-table tbody td h6 {
font-weight: 500;
font-weight: 500;
margin-bottom: 0px;
margin-bottom: 0px;
white-space: nowrap
white-space: nowrap
}
}
.stylish-table tbody td small {
.stylish-table tbody td small {
line-height: 12px;
line-height: 12px;
white-space: nowrap
white-space: nowrap
}
}
.campaign {
.campaign {
height: 280px
height: 280px
}
}
.campaign .ct-series-a .ct-area {
.campaign .ct-series-a .ct-area {
fill-opacity: 0.2;
fill-opacity: 0.2;
fill: url(#gradient)
fill: url(#gradient)
}
}
.campaign .ct-series-a .ct-line, .campaign .ct-series-a .ct-point {
.campaign .ct-series-a .ct-line, .campaign .ct-series-a .ct-point {
stroke: #26dad2;
stroke: #26dad2;
stroke-width: 2px
stroke-width: 2px
}
}
.campaign .ct-series-b .ct-area {
.campaign .ct-series-b .ct-area {
fill: #1976d2;
fill: #1976d2;
fill-opacity: 0.1
fill-opacity: 0.1
}
}
.campaign .ct-series-b .ct-line, .campaign .ct-series-b .ct-point {
.campaign .ct-series-b .ct-line, .campaign .ct-series-b .ct-point {
stroke: #1976d2;
stroke: #1976d2;
stroke-width: 2px
stroke-width: 2px
}
}
.campaign .ct-series-a .ct-point, .campaign .ct-series-b .ct-point {
.campaign .ct-series-a .ct-point, .campaign .ct-series-b .ct-point {
stroke-width: 6px
stroke-width: 6px
}
}
.campaign2 .ct-series-a .ct-area {
.campaign2 .ct-series-a .ct-area {
fill-opacity: 0.2;
fill-opacity: 0.2;
fill: url(#gradient)
fill: url(#gradient)
}
}
.campaign2 .ct-series-a .ct-line, .campaign2 .ct-series-a .ct-point {
.campaign2 .ct-series-a .ct-line, .campaign2 .ct-series-a .ct-point {
stroke: #26dad2;
stroke: #26dad2;
stroke-width: 2px
stroke-width: 2px
}
}
.campaign2 .ct-series-b .ct-area {
.campaign2 .ct-series-b .ct-area {
fill: #1976d2;
fill: #1976d2;
fill-opacity: 0.1
fill-opacity: 0.1
}
}
.campaign2 .ct-series-b .ct-line, .campaign2 .ct-series-b .ct-point {
.campaign2 .ct-series-b .ct-line, .campaign2 .ct-series-b .ct-point {
stroke: #1976d2;
stroke: #1976d2;
stroke-width: 2px
stroke-width: 2px
}
}
.campaign2 .ct-series-a .ct-point, .campaign2 .ct-series-b .ct-point {
.campaign2 .ct-series-a .ct-point, .campaign2 .ct-series-b .ct-point {
stroke-width: 6px
stroke-width: 6px
}
}
.usage .ct-series-a .ct-line {
.usage .ct-series-a .ct-line {
stroke-width: 3px;
stroke-width: 3px;
stroke: rgba(255, 255, 255, 0.5)
stroke: rgba(255, 255, 255, 0.5)
}
}
.total-sales {
.total-sales {
position: relative
position: relative
}
}
.total-sales .chartist-tooltip {
.total-sales .chartist-tooltip {
background: #2f3d4a
background: #2f3d4a
}
}
.total-sales .ct-series-a .ct-bar {
.total-sales .ct-series-a .ct-bar {
stroke: #1976d2
stroke: #1976d2
}
}
.total-sales .ct-series-b .ct-bar {
.total-sales .ct-series-b .ct-bar {
stroke: #26dad2
stroke: #26dad2
}
}
.total-sales .ct-series-c .ct-bar {
.total-sales .ct-series-c .ct-bar {
stroke: #ef5350
stroke: #ef5350
}
}
.ct-chart {
.ct-chart {
position: relative
position: relative
}
}
.ct-chart .ct-series-a .ct-slice-donut {
.ct-chart .ct-series-a .ct-slice-donut {
stroke: #26dad2
stroke: #26dad2
}
}
.ct-chart .ct-series-b .ct-slice-donut {
.ct-chart .ct-series-b .ct-slice-donut {
stroke: #f2f4f8
stroke: #f2f4f8
}
}
.ct-chart .ct-series-c .ct-slice-donut {
.ct-chart .ct-series-c .ct-slice-donut {
stroke: #1976d2
stroke: #1976d2
}
}
#visitfromworld path.jvectormap-region.jvectormap-element {
#visitfromworld path.jvectormap-region.jvectormap-element {
stroke-width: 1px;
stroke-width: 1px;
stroke: #99abb4
stroke: #99abb4
}
}
.jvectormap-goback, .jvectormap-zoomin, .jvectormap-zoomout {
.jvectormap-goback, .jvectormap-zoomin, .jvectormap-zoomout {
background: #99abb4
background: #99abb4
}
}
.browser td {
.browser td {
vertical-align: middle;
vertical-align: middle;
padding-left: 0px
padding-left: 0px
}
}
#calendar .fc-today-button {
#calendar .fc-today-button {
display: none
display: none
}
}
.calender-sidebar {
.calender-sidebar {
background: rgba(0, 0, 0, 0.02)
background: rgba(0, 0, 0, 0.02)
}
}
.ecomm-donute svg text {
.ecomm-donute svg text {
font-family: "Poppins", sans-serif!important;
font-family: "Poppins", sans-serif!important;
font-size: 12px!important;
font-size: 12px!important;
font-weight: 500!important
font-weight: 500!important
}
}
.total-revenue4 {
.total-revenue4 {
position: relative
position: relative
}
}
.total-revenue4 .ct-series-a .ct-line {
.total-revenue4 .ct-series-a .ct-line {
stroke: #1976d2;
stroke: #1976d2;
stroke-width: 1px
stroke-width: 1px
}
}
.total-revenue4 .ct-series-a .ct-point {
.total-revenue4 .ct-series-a .ct-point {
stroke: #1976d2;
stroke: #1976d2;
stroke-width: 5px
stroke-width: 5px
}
}
.total-revenue4 .ct-series-b .ct-line {
.total-revenue4 .ct-series-b .ct-line {
stroke: #26dad2;
stroke: #26dad2;
stroke-width: 1px
stroke-width: 1px
}
}
.total-revenue4 .ct-series-b .ct-point {
.total-revenue4 .ct-series-b .ct-point {
stroke: #26dad2;
stroke: #26dad2;
stroke-width: 5px
stroke-width: 5px
}
}
.total-revenue4 .ct-series-a .ct-area {
.total-revenue4 .ct-series-a .ct-area {
fill: #1976d2;
fill: #1976d2;
fill-opacity: 0.2
fill-opacity: 0.2
}
}
.total-revenue4 .ct-series-b .ct-area {
.total-revenue4 .ct-series-b .ct-area {
fill: #26dad2;
fill: #26dad2;
fill-opacity: 0.2
fill-opacity: 0.2
}
}
.product-overview.table tbody tr td {
.product-overview.table tbody tr td {
vertical-align: middle
vertical-align: middle
}
}
.sparkchart {
.sparkchart {
margin-bottom: -2px
margin-bottom: -2px
}
}
.btn-file {
.btn-file {
overflow: hidden;
overflow: hidden;
position: relative;
position: relative;
vertical-align: middle
vertical-align: middle
}
}
.btn-file>input {
.btn-file>input {
position: absolute;
position: absolute;
top: 0;
top: 0;
right: 0;
right: 0;
margin: 0;
margin: 0;
opacity: 0;
opacity: 0;
filter: alpha(opacity=0);
filter: alpha(opacity=0);
font-size: 23px;
font-size: 23px;
height: 100%;
height: 100%;
width: 100%;
width: 100%;
direction: ltr;
direction: ltr;
cursor: pointer;
cursor: pointer;
border-radius: 0px
border-radius: 0px
}
}
.fileinput .input-group-addon {
.fileinput .input-group-addon {
border: none;
border: none;
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
background: #ffffff;
background: #ffffff;
margin-bottom: 1px
margin-bottom: 1px
}
}
.fileinput .form-control {
.fileinput .form-control {
padding-top: 7px;
padding-top: 7px;
padding-bottom: 5px;
padding-bottom: 5px;
display: inline-block;
display: inline-block;
margin-bottom: 0px;
margin-bottom: 0px;
vertical-align: middle;
vertical-align: middle;
cursor: text
cursor: text
}
}
.fileinput .thumbnail {
.fileinput .thumbnail {
overflow: hidden;
overflow: hidden;
display: inline-block;
display: inline-block;
margin-bottom: 5px;
margin-bottom: 5px;
vertical-align: middle;
vertical-align: middle;
text-align: center
text-align: center
}
}
.fileinput .thumbnail>img {
.fileinput .thumbnail>img {
max-height: 100%
max-height: 100%
}
}
.fileinput .btn {
.fileinput .btn {
vertical-align: middle
vertical-align: middle
}
}
.fileinput-exists .fileinput-new, .fileinput-new .fileinput-exists {
.fileinput-exists .fileinput-new, .fileinput-new .fileinput-exists {
display: none
display: none
}
}
.fileinput-inline .fileinput-controls {
.fileinput-inline .fileinput-controls {
display: inline
display: inline
}
}
.fileinput-filename {
.fileinput-filename {
vertical-align: middle;
vertical-align: middle;
display: inline-block;
display: inline-block;
overflow: hidden
overflow: hidden
}
}
.form-control .fileinput-filename {
.form-control .fileinput-filename {
vertical-align: bottom
vertical-align: bottom
}
}
.fileinput.input-group>* {
.fileinput.input-group>* {
position: relative;
position: relative;
z-index: 2
z-index: 2
}
}
.fileinput.input-group>.btn-file {
.fileinput.input-group>.btn-file {
z-index: 1
z-index: 1
}
}
.product-review {
.product-review {
margin: 0px;
margin: 0px;
padding: 25px
padding: 25px
}
}
.product-review li {
.product-review li {
display: block;
display: block;
padding: 20px 0;
padding: 20px 0;
list-style: none
list-style: none
}
}
.product-review li .font, .product-review li span {
.product-review li .font, .product-review li span {
display: inline-block;
display: inline-block;
margin-left: 10px
margin-left: 10px
}
}
.social-profile {
.social-profile {
text-align: center;
text-align: center;
background: rgba(7, 10, 43, 0.8)
background: rgba(7, 10, 43, 0.8)
}
}
.customtab li a.nav-link, .profile-tab li a.nav-link {
.customtab li a.nav-link, .profile-tab li a.nav-link {
border: 0px;
border: 0px;
padding: 15px 20px;
padding: 15px 20px;
color: #67757c
color: #67757c
}
}
.customtab li a.nav-link.active, .profile-tab li a.nav-link.active {
.customtab li a.nav-link.active, .profile-tab li a.nav-link.active {
border-bottom: 2px solid #1976d2;
border-bottom: 2px solid #1976d2;
color: #1976d2
color: #1976d2
}
}
.customtab li a.nav-link:hover, .profile-tab li a.nav-link:hover {
.customtab li a.nav-link:hover, .profile-tab li a.nav-link:hover {
color: #1976d2
color: #1976d2
}
}
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
width: 100%
width: 100%
}
}
.bootstrap-select .dropdown-menu li a {
.bootstrap-select .dropdown-menu li a {
display: block;
display: block;
padding: 7px 20px;
padding: 7px 20px;
clear: both;
clear: both;
font-weight: 400;
font-weight: 400;
line-height: 1.42857143;
line-height: 1.42857143;
color: #67757c;
color: #67757c;
white-space: nowrap
white-space: nowrap
}
}
.bootstrap-select .dropdown-menu li a:focus, .bootstrap-select .dropdown-menu li a:hover {
.bootstrap-select .dropdown-menu li a:focus, .bootstrap-select .dropdown-menu li a:hover {
color: #1976d2;
color: #1976d2;
background: #f2f4f8
background: #f2f4f8
}
}
.bootstrap-select .show>.dropdown-menu {
.bootstrap-select .show>.dropdown-menu {
display: block
display: block
}
}
.bootstrap-select .dropdown-toggle.bs-placeholder:hover {
.bootstrap-select .dropdown-toggle.bs-placeholder:hover {
color: #ffffff
color: #ffffff
}
}
.bootstrap-touchspin .input-group-btn-vertical>.btn {
.bootstrap-touchspin .input-group-btn-vertical>.btn {
padding: 9px 10px
padding: 9px 10px
}
}
.select2-container--default .select2-selection--single {
.select2-container--default .select2-selection--single {
border-color: #b1b8bb;
border-color: #b1b8bb;
height: 38px
height: 38px
}
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
.select2-container--default .select2-selection--single .select2-selection__rendered {
line-height: 38px
line-height: 38px
}
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
.select2-container--default .select2-selection--single .select2-selection__arrow {
height: 33px
height: 33px
}
}
.input-form .btn {
.input-form .btn {
padding: 8px 12px
padding: 8px 12px
}
}
.form-material .form-group {
.form-material .form-group {
overflow: hidden
overflow: hidden
}
}
.form-material .form-control {
.form-material .form-control {
background-color: rgba(0, 0, 0, 0);
background-color: rgba(0, 0, 0, 0);
background-position: center bottom, center calc(100% - 1px);
background-position: center bottom, center calc(100% - 1px);
background-repeat: no-repeat;
background-repeat: no-repeat;
background-size: 0 2px, 100% 1px;
background-size: 0 2px, 100% 1px;
padding: 0;
padding: 0;
-webkit-transition: background 0s ease-out 0s;
-webkit-transition: background 0s ease-out 0s;
-o-transition: background 0s ease-out 0s;
-o-transition: background 0s ease-out 0s;
transition: background 0s ease-out 0s
transition: background 0s ease-out 0s
}
}
.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus {
.form-material .form-control, .form-material .form-control.focus, .form-material .form-control:focus {
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(rgba(120, 130, 140, 0.13)), to(rgba(120, 130, 140, 0.13)));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(rgba(120, 130, 140, 0.13)), to(rgba(120, 130, 140, 0.13)));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
border: 0 none;
border: 0 none;
border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
float: none
float: none
}
}
.form-material .form-control.focus, .form-material .form-control:focus {
.form-material .form-control.focus, .form-material .form-control:focus {
background-size: 100% 2px, 100% 1px;
background-size: 100% 2px, 100% 1px;
outline: 0 none;
outline: 0 none;
-webkit-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s
transition-duration: 0.3s
}
}
.form-control-line .form-group {
.form-control-line .form-group {
overflow: hidden
overflow: hidden
}
}
.form-control-line .form-control {
.form-control-line .form-control {
border: 0px;
border: 0px;
border-radius: 0px;
border-radius: 0px;
padding-left: 0px;
padding-left: 0px;
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}
}
.form-control-line .form-control:focus {
.form-control-line .form-control:focus {
border-bottom: 1px solid #1976d2
border-bottom: 1px solid #1976d2
}
}
.floating-labels .form-group {
.floating-labels .form-group {
position: relative
position: relative
}
}
.floating-labels .form-control {
.floating-labels .form-control {
padding: 10px 10px 10px 0;
padding: 10px 10px 10px 0;
display: block;
display: block;
border: none;
border: none;
font-family: "Poppins", sans-serif;
font-family: "Poppins", sans-serif;
border-radius: 0px;
border-radius: 0px;
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}
}
.floating-labels .form-control:focus {
.floating-labels .form-control:focus {
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none
box-shadow: none
}
}
.floating-labels select.form-control>option {
.floating-labels select.form-control>option {
font-size: 14px
font-size: 14px
}
}
.floating-labels .has-error .form-control {
.floating-labels .has-error .form-control {
border-bottom: 1px solid #ef5350
border-bottom: 1px solid #ef5350
}
}
.floating-labels .has-warning .form-control {
.floating-labels .has-warning .form-control {
border-bottom: 1px solid #ffb22b
border-bottom: 1px solid #ffb22b
}
}
.floating-labels .has-success .form-control {
.floating-labels .has-success .form-control {
border-bottom: 1px solid #26dad2
border-bottom: 1px solid #26dad2
}
}
.floating-labels .form-control:focus {
.floating-labels .form-control:focus {
outline: none;
outline: none;
border: none
border: none
}
}
.floating-labels label {
.floating-labels label {
color: #67757c;
color: #67757c;
position: absolute;
position: absolute;
cursor: auto;
cursor: auto;
top: 5px;
top: 5px;
-o-transition: 0.2s ease all;
-o-transition: 0.2s ease all;
transition: 0.2s ease all;
transition: 0.2s ease all;
-moz-transition: 0.2s ease all;
-moz-transition: 0.2s ease all;
-webkit-transition: 0.2s ease all
-webkit-transition: 0.2s ease all
}
}
.floating-labels .focused label {
.floating-labels .focused label {
top: -20px;
top: -20px;
font-size: 12px;
font-size: 12px;
color: #263238
color: #263238
}
}
.floating-labels .bar {
.floating-labels .bar {
position: relative;
position: relative;
display: block
display: block
}
}
.floating-labels .bar:after, .floating-labels .bar:before {
.floating-labels .bar:after, .floating-labels .bar:before {
content: '';
content: '';
height: 2px;
height: 2px;
width: 0;
width: 0;
bottom: 1px;
bottom: 1px;
position: absolute;
position: absolute;
background: #1976d2;
background: #1976d2;
-o-transition: 0.2s ease all;
-o-transition: 0.2s ease all;
transition: 0.2s ease all;
transition: 0.2s ease all;
-moz-transition: 0.2s ease all;
-moz-transition: 0.2s ease all;
-webkit-transition: 0.2s ease all
-webkit-transition: 0.2s ease all
}
}
.floating-labels .bar:before {
.floating-labels .bar:before {
left: 50%
left: 50%
}
}
.floating-labels .bar:after {
.floating-labels .bar:after {
right: 50%
right: 50%
}
}
.floating-labels .form-control:focus~.bar:after, .floating-labels .form-control:focus~.bar:before {
.floating-labels .form-control:focus~.bar:after, .floating-labels .form-control:focus~.bar:before {
width: 50%
width: 50%
}
}
.floating-labels .highlight {
.floating-labels .highlight {
position: absolute;
position: absolute;
height: 60%;
height: 60%;
width: 100px;
width: 100px;
top: 25%;
top: 25%;
left: 0;
left: 0;
pointer-events: none;
pointer-events: none;
opacity: 0.5
opacity: 0.5
}
}
.floating-labels .input-lg, .floating-labels .input-lg~label {
.floating-labels .input-lg, .floating-labels .input-lg~label {
font-size: 24px
font-size: 24px
}
}
.floating-labels .input-sm, .floating-labels .input-sm~label {
.floating-labels .input-sm, .floating-labels .input-sm~label {
font-size: 16px
font-size: 16px
}
}
.has-warning .bar:after, .has-warning .bar:before {
.has-warning .bar:after, .has-warning .bar:before {
background: #ffb22b
background: #ffb22b
}
}
.has-success .bar:after, .has-success .bar:before {
.has-success .bar:after, .has-success .bar:before {
background: #26dad2
background: #26dad2
}
}
.has-error .bar:after, .has-error .bar:before {
.has-error .bar:after, .has-error .bar:before {
background: #ef5350
background: #ef5350
}
}
.has-warning .form-control:focus~label, .has-warning .form-control:valid~label {
.has-warning .form-control:focus~label, .has-warning .form-control:valid~label {
color: #ffb22b
color: #ffb22b
}
}
.has-success .form-control:focus~label, .has-success .form-control:valid~label {
.has-success .form-control:focus~label, .has-success .form-control:valid~label {
color: #26dad2
color: #26dad2
}
}
.has-error .form-control:focus~label, .has-error .form-control:valid~label {
.has-error .form-control:focus~label, .has-error .form-control:valid~label {
color: #ef5350
color: #ef5350
}
}
.has-feedback label~.t-0 {
.has-feedback label~.t-0 {
top: 0
top: 0
}
}
.form-group.error input, .form-group.error select, .form-group.error textarea {
.form-group.error input, .form-group.error select, .form-group.error textarea {
border: 1px solid #ef5350
border: 1px solid #ef5350
}
}
.form-group.validate input, .form-group.validate select, .form-group.validate textarea {
.form-group.validate input, .form-group.validate select, .form-group.validate textarea {
border: 1px solid #26dad2
border: 1px solid #26dad2
}
}
.form-group.error .help-block ul {
.form-group.error .help-block ul {
padding: 0px;
padding: 0px;
color: #ef5350
color: #ef5350
}
}
.form-group.error .help-block ul li {
.form-group.error .help-block ul li {
list-style: none
list-style: none
}
}
.form-group.issue .help-block ul {
.form-group.issue .help-block ul {
padding: 0px;
padding: 0px;
color: #ffb22b
color: #ffb22b
}
}
.form-group.issue .help-block ul li {
.form-group.issue .help-block ul li {
list-style: none
list-style: none
}
}
.pagination-circle li.active a {
.pagination-circle li.active a {
background: #26dad2
background: #26dad2
}
}
.pagination-circle li a {
.pagination-circle li a {
width: 40px;
width: 40px;
height: 40px;
height: 40px;
background: #f2f4f8;
background: #f2f4f8;
border: 0px;
border: 0px;
text-align: center;
text-align: center;
border-radius: 100%
border-radius: 100%
}
}
.pagination-circle li a:first-child, .pagination-circle li a:last-child {
.pagination-circle li a:first-child, .pagination-circle li a:last-child {
border-radius: 100%
border-radius: 100%
}
}
.pagination-circle li a:hover {
.pagination-circle li a:hover {
background: #26dad2;
background: #26dad2;
color: #ffffff
color: #ffffff
}
}
.pagination-circle li.disabled a {
.pagination-circle li.disabled a {
background: #f2f4f8;
background: #f2f4f8;
color: rgba(120, 130, 140, 0.13)
color: rgba(120, 130, 140, 0.13)
}
}
.dropzone {
.dropzone {
border: 1px dashed #b1b8bb
border: 1px dashed #b1b8bb
}
}
.dropzone .dz-message {
.dropzone .dz-message {
padding: 5% 0;
padding: 5% 0;
margin: 0px
margin: 0px
}
}
.asColorPicker-dropdown {
.asColorPicker-dropdown {
max-width: 260px
max-width: 260px
}
}
.asColorPicker-trigger {
.asColorPicker-trigger {
position: absolute;
position: absolute;
top: 0;
top: 0;
right: -35px;
right: -35px;
height: 38px;
height: 38px;
width: 37px;
width: 37px;
border: 0
border: 0
}
}
.asColorPicker-clear {
.asColorPicker-clear {
display: none;
display: none;
position: absolute;
position: absolute;
top: 5px;
top: 5px;
right: 10px;
right: 10px;
text-decoration: none
text-decoration: none
}
}
table th {
table th {
font-weight: 400
font-weight: 400
}
}
.daterangepicker td.active, .daterangepicker td.active:hover {
.daterangepicker td.active, .daterangepicker td.active:hover {
background-color: #1976d2
background-color: #1976d2
}
}
.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
background: #1976d2;
background: #1976d2;
color: #ffffff
color: #ffffff
}
}
.datepicker td, .datepicker th {
.datepicker td, .datepicker th {
padding: 5px 10px
padding: 5px 10px
}
}
.icheck-list, .icolors {
.icheck-list, .icolors {
padding: 0;
padding: 0;
margin: 0;
margin: 0;
list-style: none
list-style: none
}
}
.icolors>li {
.icolors>li {
padding: 0;
padding: 0;
margin: 2px;
margin: 2px;
float: left;
float: left;
display: inline-block;
display: inline-block;
height: 30px;
height: 30px;
width: 30px;
width: 30px;
background: #263238;
background: #263238;
text-align: center
text-align: center
}
}
.icolors>li.active:after {
.icolors>li.active:after {
content: "\2713 ";
content: "\2713 ";
color: #ffffff;
color: #ffffff;
line-height: 30px
line-height: 30px
}
}
.icolors>li:first-child {
.icolors>li:first-child {
margin-left: 0
margin-left: 0
}
}
.icolors>li.orange {
.icolors>li.orange {
background: #ef5350
background: #ef5350
}
}
.icolors>li.yellow {
.icolors>li.yellow {
background: #ffb22b
background: #ffb22b
}
}
.icolors>li.info {
.icolors>li.info {
background: #1976d2
background: #1976d2
}
}
.icolors>li.green {
.icolors>li.green {
background: #26dad2
background: #26dad2
}
}
.icolors>li.red {
.icolors>li.red {
background: #fb3a3a
background: #fb3a3a
}
}
.icolors>li.purple {
.icolors>li.purple {
background: #7460ee
background: #7460ee
}
}
.icolors>li.blue {
.icolors>li.blue {
background: #02bec9
background: #02bec9
}
}
.icheck-list {
.icheck-list {
float: left;
float: left;
padding-right: 50px;
padding-right: 50px;
padding-top: 10px
padding-top: 10px
}
}
.icheck-list li {
.icheck-list li {
padding-bottom: 5px
padding-bottom: 5px
}
}
.icheck-list li label {
.icheck-list li label {
padding-left: 10px
padding-left: 10px
}
}
.note-icon-caret, .note-popover {
.note-icon-caret, .note-popover {
display: none
display: none
}
}
.note-editor.note-frame {
.note-editor.note-frame {
border: 1px solid #b1b8bb
border: 1px solid #b1b8bb
}
}
.note-editor.note-frame .panel-heading {
.note-editor.note-frame .panel-heading {
padding: 6px 10px 10px;
padding: 6px 10px 10px;
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}
}
.label {
.label {
display: inline-block
display: inline-block
}
}
.table th, .table thead th {
.table th, .table thead th {
border: 0px
border: 0px
}
}
.color-table.primary-table thead th {
.color-table.primary-table thead th {
background-color: #5c4ac7;
background-color: #5c4ac7;
color: #ffffff
color: #ffffff
}
}
.table-striped tbody tr:nth-of-type(odd) {
.table-striped tbody tr:nth-of-type(odd) {
background: #f2f4f8
background: #f2f4f8
}
}
.color-table.success-table thead th {
.color-table.success-table thead th {
background-color: #26dad2;
background-color: #26dad2;
color: #ffffff
color: #ffffff
}
}
.color-table.info-table thead th {
.color-table.info-table thead th {
background-color: #1976d2;
background-color: #1976d2;
color: #ffffff
color: #ffffff
}
}
.color-table.warning-table thead th {
.color-table.warning-table thead th {
background-color: #ffb22b;
background-color: #ffb22b;
color: #ffffff
color: #ffffff
}
}
.color-table.danger-table thead th {
.color-table.danger-table thead th {
background-color: #ef5350;
background-color: #ef5350;
color: #ffffff
color: #ffffff
}
}
.color-table.inverse-table thead th {
.color-table.inverse-table thead th {
background-color: #2f3d4a;
background-color: #2f3d4a;
color: #ffffff
color: #ffffff
}
}
.color-table.dark-table thead th {
.color-table.dark-table thead th {
background-color: #263238;
background-color: #263238;
color: #ffffff
color: #ffffff
}
}
.color-table.red-table thead th {
.color-table.red-table thead th {
background-color: #fb3a3a;
background-color: #fb3a3a;
color: #ffffff
color: #ffffff
}
}
.color-table.purple-table thead th {
.color-table.purple-table thead th {
background-color: #7460ee;
background-color: #7460ee;
color: #ffffff
color: #ffffff
}
}
.color-table.muted-table thead th {
.color-table.muted-table thead th {
background-color: #99abb4;
background-color: #99abb4;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.primary-bordered-table {
.color-bordered-table.primary-bordered-table {
border: 2px solid #5c4ac7
border: 2px solid #5c4ac7
}
}
.color-bordered-table.primary-bordered-table thead th {
.color-bordered-table.primary-bordered-table thead th {
background-color: #5c4ac7;
background-color: #5c4ac7;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.success-bordered-table {
.color-bordered-table.success-bordered-table {
border: 2px solid #26dad2
border: 2px solid #26dad2
}
}
.color-bordered-table.success-bordered-table thead th {
.color-bordered-table.success-bordered-table thead th {
background-color: #26dad2;
background-color: #26dad2;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.info-bordered-table {
.color-bordered-table.info-bordered-table {
border: 2px solid #1976d2
border: 2px solid #1976d2
}
}
.color-bordered-table.info-bordered-table thead th {
.color-bordered-table.info-bordered-table thead th {
background-color: #1976d2;
background-color: #1976d2;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.warning-bordered-table {
.color-bordered-table.warning-bordered-table {
border: 2px solid #ffb22b
border: 2px solid #ffb22b
}
}
.color-bordered-table.warning-bordered-table thead th {
.color-bordered-table.warning-bordered-table thead th {
background-color: #ffb22b;
background-color: #ffb22b;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.danger-bordered-table {
.color-bordered-table.danger-bordered-table {
border: 2px solid #ef5350
border: 2px solid #ef5350
}
}
.color-bordered-table.danger-bordered-table thead th {
.color-bordered-table.danger-bordered-table thead th {
background-color: #ef5350;
background-color: #ef5350;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.inverse-bordered-table {
.color-bordered-table.inverse-bordered-table {
border: 2px solid #2f3d4a
border: 2px solid #2f3d4a
}
}
.color-bordered-table.inverse-bordered-table thead th {
.color-bordered-table.inverse-bordered-table thead th {
background-color: #2f3d4a;
background-color: #2f3d4a;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.dark-bordered-table {
.color-bordered-table.dark-bordered-table {
border: 2px solid #263238
border: 2px solid #263238
}
}
.color-bordered-table.dark-bordered-table thead th {
.color-bordered-table.dark-bordered-table thead th {
background-color: #263238;
background-color: #263238;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.red-bordered-table {
.color-bordered-table.red-bordered-table {
border: 2px solid #fb3a3a
border: 2px solid #fb3a3a
}
}
.color-bordered-table.red-bordered-table thead th {
.color-bordered-table.red-bordered-table thead th {
background-color: #fb3a3a;
background-color: #fb3a3a;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.purple-bordered-table {
.color-bordered-table.purple-bordered-table {
border: 2px solid #7460ee
border: 2px solid #7460ee
}
}
.color-bordered-table.purple-bordered-table thead th {
.color-bordered-table.purple-bordered-table thead th {
background-color: #7460ee;
background-color: #7460ee;
color: #ffffff
color: #ffffff
}
}
.color-bordered-table.muted-bordered-table {
.color-bordered-table.muted-bordered-table {
border: 2px solid #99abb4
border: 2px solid #99abb4
}
}
.color-bordered-table.muted-bordered-table thead th {
.color-bordered-table.muted-bordered-table thead th {
background-color: #99abb4;
background-color: #99abb4;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-primary-table {
.full-color-table.full-primary-table {
background-color: #f1effd
background-color: #f1effd
}
}
.full-color-table.full-primary-table thead th {
.full-color-table.full-primary-table thead th {
background-color: #5c4ac7;
background-color: #5c4ac7;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-primary-table tbody td {
.full-color-table.full-primary-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-primary-table tr:hover {
.full-color-table.full-primary-table tr:hover {
background-color: #5c4ac7;
background-color: #5c4ac7;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-success-table {
.full-color-table.full-success-table {
background-color: #e8fdeb
background-color: #e8fdeb
}
}
.full-color-table.full-success-table thead th {
.full-color-table.full-success-table thead th {
background-color: #26dad2;
background-color: #26dad2;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-success-table tbody td {
.full-color-table.full-success-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-success-table tr:hover {
.full-color-table.full-success-table tr:hover {
background-color: #26dad2;
background-color: #26dad2;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-info-table {
.full-color-table.full-info-table {
background-color: #cfecfe
background-color: #cfecfe
}
}
.full-color-table.full-info-table thead th {
.full-color-table.full-info-table thead th {
background-color: #1976d2;
background-color: #1976d2;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-info-table tbody td {
.full-color-table.full-info-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-info-table tr:hover {
.full-color-table.full-info-table tr:hover {
background-color: #1976d2;
background-color: #1976d2;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-warning-table {
.full-color-table.full-warning-table {
background-color: #fff8ec
background-color: #fff8ec
}
}
.full-color-table.full-warning-table thead th {
.full-color-table.full-warning-table thead th {
background-color: #ffb22b;
background-color: #ffb22b;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-warning-table tbody td {
.full-color-table.full-warning-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-warning-table tr:hover {
.full-color-table.full-warning-table tr:hover {
background-color: #ffb22b;
background-color: #ffb22b;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-danger-table {
.full-color-table.full-danger-table {
background-color: #f9e7eb
background-color: #f9e7eb
}
}
.full-color-table.full-danger-table thead th {
.full-color-table.full-danger-table thead th {
background-color: #ef5350;
background-color: #ef5350;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-danger-table tbody td {
.full-color-table.full-danger-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-danger-table tr:hover {
.full-color-table.full-danger-table tr:hover {
background-color: #ef5350;
background-color: #ef5350;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-inverse-table {
.full-color-table.full-inverse-table {
background-color: #f6f6f6
background-color: #f6f6f6
}
}
.full-color-table.full-inverse-table thead th {
.full-color-table.full-inverse-table thead th {
background-color: #2f3d4a;
background-color: #2f3d4a;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-inverse-table tbody td {
.full-color-table.full-inverse-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-inverse-table tr:hover {
.full-color-table.full-inverse-table tr:hover {
background-color: #2f3d4a;
background-color: #2f3d4a;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-dark-table {
.full-color-table.full-dark-table {
background-color: rgba(43, 43, 43, 0.8)
background-color: rgba(43, 43, 43, 0.8)
}
}
.full-color-table.full-dark-table thead th {
.full-color-table.full-dark-table thead th {
background-color: #263238;
background-color: #263238;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-dark-table tbody td {
.full-color-table.full-dark-table tbody td {
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-dark-table tr:hover {
.full-color-table.full-dark-table tr:hover {
background-color: #263238;
background-color: #263238;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-red-table {
.full-color-table.full-red-table {
background-color: #f9e7eb
background-color: #f9e7eb
}
}
.full-color-table.full-red-table thead th {
.full-color-table.full-red-table thead th {
background-color: #fb3a3a;
background-color: #fb3a3a;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-red-table tbody td {
.full-color-table.full-red-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-red-table tr:hover {
.full-color-table.full-red-table tr:hover {
background-color: #fb3a3a;
background-color: #fb3a3a;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-purple-table {
.full-color-table.full-purple-table {
background-color: #f1effd
background-color: #f1effd
}
}
.full-color-table.full-purple-table thead th {
.full-color-table.full-purple-table thead th {
background-color: #7460ee;
background-color: #7460ee;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-purple-table tbody td {
.full-color-table.full-purple-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-purple-table tr:hover {
.full-color-table.full-purple-table tr:hover {
background-color: #7460ee;
background-color: #7460ee;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-muted-table {
.full-color-table.full-muted-table {
background-color: rgba(152, 166, 173, 0.2)
background-color: rgba(152, 166, 173, 0.2)
}
}
.full-color-table.full-muted-table thead th {
.full-color-table.full-muted-table thead th {
background-color: #99abb4;
background-color: #99abb4;
border: 0;
border: 0;
color: #ffffff
color: #ffffff
}
}
.full-color-table.full-muted-table tbody td {
.full-color-table.full-muted-table tbody td {
border: 0
border: 0
}
}
.full-color-table.full-muted-table tr:hover {
.full-color-table.full-muted-table tr:hover {
background-color: #99abb4;
background-color: #99abb4;
color: #ffffff
color: #ffffff
}
}
.dataTables_wrapper {
.dataTables_wrapper {
padding-top: 10px
padding-top: 10px
}
}
.dt-buttons {
.dt-buttons {
display: inline-block;
display: inline-block;
padding-top: 5px;
padding-top: 5px;
margin-bottom: 15px
margin-bottom: 15px
}
}
.dt-buttons .dt-button {
.dt-buttons .dt-button {
padding: 5px 15px;
padding: 5px 15px;
border-radius: 4px;
border-radius: 4px;
background: #1976d2;
background: #1976d2;
color: #ffffff;
color: #ffffff;
margin-right: 3px
margin-right: 3px
}
}
.dt-buttons .dt-button:hover {
.dt-buttons .dt-button:hover {
background: #2f3d4a
background: #2f3d4a
}
}
.dataTables_info, .dataTables_length {
.dataTables_info, .dataTables_length {
display: inline-block
display: inline-block
}
}
.dataTables_length {
.dataTables_length {
margin-top: 10px
margin-top: 10px
}
}
.dataTables_length select {
.dataTables_length select {
border: 0;
border: 0;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 0 2px, 100% 1px;
background-size: 0 2px, 100% 1px;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center bottom, center calc(100% - 1px);
background-position: center bottom, center calc(100% - 1px);
background-color: transparent;
background-color: transparent;
-webkit-transition: background 0s ease-out;
-webkit-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
transition: background 0s ease-out;
transition: background 0s ease-out;
padding-bottom: 5px
padding-bottom: 5px
}
}
.dataTables_length select:focus {
.dataTables_length select:focus {
outline: none;
outline: none;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 100% 2px, 100% 1px;
background-size: 100% 2px, 100% 1px;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
-webkit-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s
transition-duration: 0.3s
}
}
.dataTables_filter {
.dataTables_filter {
float: right;
float: right;
margin-top: 10px
margin-top: 10px
}
}
.dataTables_filter input {
.dataTables_filter input {
border: 0;
border: 0;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 0 2px, 100% 1px;
background-size: 0 2px, 100% 1px;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center bottom, center calc(100% - 1px);
background-position: center bottom, center calc(100% - 1px);
background-color: transparent;
background-color: transparent;
-webkit-transition: background 0s ease-out;
-webkit-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
transition: background 0s ease-out;
transition: background 0s ease-out;
float: none;
float: none;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
border-radius: 0;
border-radius: 0;
margin-left: 10px
margin-left: 10px
}
}
.dataTables_filter input:focus {
.dataTables_filter input:focus {
outline: none;
outline: none;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 100% 2px, 100% 1px;
background-size: 100% 2px, 100% 1px;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
-webkit-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s
transition-duration: 0.3s
}
}
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_desc_disabled {
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_desc_disabled {
background: transparent
/* background: transparent
background-color: #1976d2;
color: #ffffff;*/
}
.table thead
{
background-color: #1976d2;
color:#fff;
}
}
table.dataTable thead .sorting_asc:after {
table.dataTable thead .sorting_asc:after {
content: "\f0de";
content: "\f0de";
margin-left: 10px;
margin-left: 10px;
font-family: fontawesome;
font-family: fontawesome;
cursor: pointer
cursor: pointer
}
}
table.dataTable thead .sorting_desc:after {
table.dataTable thead .sorting_desc:after {
content: "\f0dd";
content: "\f0dd";
margin-left: 10px;
margin-left: 10px;
font-family: fontawesome;
font-family: fontawesome;
cursor: pointer
cursor: pointer
}
}
table.dataTable thead .sorting:after {
table.dataTable thead .sorting:after {
content: "\f0dc";
content: "\f0dc";
margin-left: 10px;
margin-left: 10px;
font-family: fontawesome!important;
font-family: fontawesome!important;
cursor: pointer;
cursor: pointer;
color: rgba(50, 50, 50, 0.5)
color: rgba(50, 50, 50, 0.5)
}
}
.dataTables_wrapper .dataTables_paginate {
.dataTables_wrapper .dataTables_paginate {
float: right;
float: right;
text-align: right;
text-align: right;
padding-top: 0.25em
padding-top: 0.25em
}
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
.dataTables_wrapper .dataTables_paginate .paginate_button {
-webkit-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
display: inline-block;
min-width: 1.5em;
min-width: 1.5em;
padding: 0.5em 1em;
padding: 0.5em 1em;
text-align: center;
text-align: center;
text-decoration: none;
text-decoration: none;
cursor: pointer;
cursor: pointer;
*cursor: hand;
*cursor: hand;
color: #67757c;
color: #67757c;
border: 1px solid #ddd
border: 1px solid #ddd
}
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
color: #ffffff!important;
color: #ffffff!important;
border: 1px solid #1976d2;
border: 1px solid #1976d2;
background-color: #1976d2
background-color: #1976d2
}
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active, .dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
cursor: default;
cursor: default;
color: #67757c;
color: #67757c;
border: 1px solid #ddd;
border: 1px solid #ddd;
background: transparent;
background: transparent;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none
box-shadow: none
}
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
color: white;
color: white;
border: 1px solid #1976d2;
border: 1px solid #1976d2;
background-color: #1976d2
background-color: #1976d2
}
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
outline: none;
outline: none;
background-color: #67757c
background-color: #67757c
}
}
.dataTables_wrapper .dataTables_paginate .ellipsis {
.dataTables_wrapper .dataTables_paginate .ellipsis {
padding: 0 1em
padding: 0 1em
}
}
.tablesaw-bar .btn-group label {
.tablesaw-bar .btn-group label {
color: #67757c!important
color: #67757c!important
}
}
.dt-bootstrap {
.dt-bootstrap {
display: block
display: block
}
}
.paging_simple_numbers .pagination .paginate_button {
.paging_simple_numbers .pagination .paginate_button {
padding: 0px;
padding: 0px;
background: #ffffff
background: #ffffff
}
}
.paging_simple_numbers .pagination .paginate_button:hover {
.paging_simple_numbers .pagination .paginate_button:hover {
background: #ffffff
background: #ffffff
}
}
.paging_simple_numbers .pagination .paginate_button a {
.paging_simple_numbers .pagination .paginate_button a {
padding: 2px 10px;
padding: 2px 10px;
border: 0px
border: 0px
}
}
.paging_simple_numbers .pagination .paginate_button.active a, .paging_simple_numbers .pagination .paginate_button:hover a {
.paging_simple_numbers .pagination .paginate_button.active a, .paging_simple_numbers .pagination .paginate_button:hover a {
background: #1976d2;
background: #1976d2;
color: #ffffff
color: #ffffff
}
}
#demo-show-entries {
#demo-show-entries {
border: 0;
border: 0;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 0 2px, 100% 1px;
background-size: 0 2px, 100% 1px;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center bottom, center calc(100% - 1px);
background-position: center bottom, center calc(100% - 1px);
background-color: transparent;
background-color: transparent;
-webkit-transition: background 0s ease-out;
-webkit-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
transition: background 0s ease-out;
transition: background 0s ease-out;
padding-bottom: 5px;
padding-bottom: 5px;
color: #67757c
color: #67757c
}
}
#demo-show-entries:focus {
#demo-show-entries:focus {
outline: none;
outline: none;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 100% 2px, 100% 1px;
background-size: 100% 2px, 100% 1px;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
-webkit-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s
transition-duration: 0.3s
}
}
#demo-input-search2 {
#demo-input-search2 {
border: 0;
border: 0;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 0 2px, 100% 1px;
background-size: 0 2px, 100% 1px;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center bottom, center calc(100% - 1px);
background-position: center bottom, center calc(100% - 1px);
background-color: transparent;
background-color: transparent;
-webkit-transition: background 0s ease-out;
-webkit-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
-o-transition: background 0s ease-out;
transition: background 0s ease-out;
transition: background 0s ease-out;
float: none;
float: none;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
border-radius: 0;
border-radius: 0;
margin-left: 10px;
margin-left: 10px;
color: #67757c
color: #67757c
}
}
#demo-input-search2:focus {
#demo-input-search2:focus {
outline: none;
outline: none;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(#b1b8bb, #b1b8bb);
background-size: 100% 2px, 100% 1px;
background-size: 100% 2px, 100% 1px;
-webkit-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
box-shadow: none;
-webkit-transition-duration: 0.3s;
-webkit-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
transition-duration: 0.3s
transition-duration: 0.3s
}
}
.footable .pagination li a {
.footable .pagination li a {
position: relative;
position: relative;
display: block;
display: block;
padding: .5rem .75rem;
padding: .5rem .75rem;
margin-left: -1px;
margin-left: -1px;
line-height: 1.25;
line-height: 1.25;
color: #0275d8;
color: #0275d8;
background-color: #ffffff;
background-color: #ffffff;
border: 1px solid #ddd
border: 1px solid #ddd
}
}
.footable .pagination li.active a {
.footable .pagination li.active a {
z-index: 2;
z-index: 2;
color: #fff;
color: #fff;
background-color: #0275d8;
background-color: #0275d8;
border-color: #0275d8
border-color: #0275d8
}
}
.footable .pagination li.disabled a {
.footable .pagination li.disabled a {
color: #636c72;
color: #636c72;
pointer-events: none;
pointer-events: none;
cursor: not-allowed;
cursor: not-allowed;
background-color: #ffffff;
background-color: #ffffff;
border-color: #ddd
border-color: #ddd
}
}
.footable .pagination li:first-child a {
.footable .pagination li:first-child a {
margin-left: 0;
margin-left: 0;
border-bottom-left-radius: .25rem;
border-bottom-left-radius: .25rem;
border-top-left-radius: .25rem
border-top-left-radius: .25rem
}
}
.footable-odd {
.footable-odd {
background: #f2f4f8
background: #f2f4f8
}
}
.icon-list-demo div {
.icon-list-demo div {
cursor: pointer;
cursor: pointer;
line-height: 60px;
line-height: 60px;
white-space: nowrap;
white-space: nowrap;
color: #67757c
color: #67757c
}
}
.icon-list-demo div:hover {
.icon-list-demo div:hover {
color: #263238
color: #263238
}
}
.icon-list-demo div p {
.icon-list-demo div p {
margin: 10px 0;
margin: 10px 0;
padding: 5px 0
padding: 5px 0
}
}
.icon-list-demo i {
.icon-list-demo i {
-webkit-transition: all 0.2s;
-webkit-transition: all 0.2s;
-webkit-transition: font-size .2s;
-webkit-transition: font-size .2s;
display: inline-block;
display: inline-block;
font-size: 18px;
font-size: 18px;
margin: 0 15px 0 10px;
margin: 0 15px 0 10px;
text-align: left;
text-align: left;
-o-transition: all 0.2s;
-o-transition: all 0.2s;
transition: all 0.2s;
transition: all 0.2s;
-o-transition: font-size .2s;
-o-transition: font-size .2s;
transition: font-size .2s;
transition: font-size .2s;
vertical-align: middle;
vertical-align: middle;
-webkit-transition: all 0.3s ease 0s;
-webkit-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
-o-transition: all 0.3s ease 0s;
transition: all 0.3s ease 0s
transition: all 0.3s ease 0s
}
}
.icon-list-demo .col-3, .icon-list-demo .col-md-4 {
.icon-list-demo .col-3, .icon-list-demo .col-md-4 {
border-radius: 4px
border-radius: 4px
}
}
.icon-list-demo .col-3:hover, .icon-list-demo .col-md-4:hover {
.icon-list-demo .col-3:hover, .icon-list-demo .col-md-4:hover {
background-color: #ebf3f5
background-color: #ebf3f5
}
}
.icon-list-demo .div:hover i {
.icon-list-demo .div:hover i {
font-size: 2em
font-size: 2em
}
}
.material-icon-list-demo .mdi {
.material-icon-list-demo .mdi {
font-size: 21px
font-size: 21px
}
}
.grid-stack-item-content {
.grid-stack-item-content {
background: #fff;
background: #fff;
color: #2b2b2b;
color: #2b2b2b;
text-align: center;
text-align: center;
font-size: 20px
font-size: 20px
}
}
.grid-stack>.grid-stack-item>.grid-stack-item-content {
.grid-stack>.grid-stack-item>.grid-stack-item-content {
border: 1px solid rgba(120, 130, 140, 0.13)
border: 1px solid rgba(120, 130, 140, 0.13)
}
}
.bootstrap-switch, .bootstrap-switch .bootstrap-switch-container {
.bootstrap-switch, .bootstrap-switch .bootstrap-switch-container {
border-radius: 2px
border-radius: 2px
}
}
.bootstrap-switch .bootstrap-switch-handle-on {
.bootstrap-switch .bootstrap-switch-handle-on {
border-bottom-left-radius: 2px;
border-bottom-left-radius: 2px;
border-top-left-radius: 2px
border-top-left-radius: 2px
}
}
.bootstrap-switch .bootstrap-switch-handle-off {
.bootstrap-switch .bootstrap-switch-handle-off {
border-bottom-right-radius: 2px;
border-bottom-right-radius: 2px;
border-top-right-radius: 2px
border-top-right-radius: 2px
}
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary {
color: #ffffff;
color: #ffffff;
background: #5c4ac7
background: #5c4ac7
}
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {
color: #ffffff;
color: #ffffff;
background: #1976d2
background: #1976d2
}
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {
color: #ffffff;
color: #ffffff;
background: #26dad2
background: #26dad2
}
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning {
color: #ffffff;
color: #ffffff;
background: #ffb22b
background: #ffb22b
}
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {
color: #ffffff;
color: #ffffff;
background: #ef5350
background: #ef5350
}
}
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default, .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default {
color: #263238;
color: #263238;
background: #f2f4f8
background: #f2f4f8
}
}
.onoffswitch {
.onoffswitch {
position: relative;
position: relative;
width: 90px;
width: 90px;
-webkit-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-moz-user-select: none;
-ms-user-select: none
-ms-user-select: none
}
}
.onoffswitch-checkbox {
.onoffswitch-checkbox {
display: none
display: none
}
}
.onoffswitch-label {
.onoffswitch-label {
display: block;
display: block;
overflow: hidden;
overflow: hidden;
cursor: pointer;
cursor: pointer;
border: 2px solid #26dad2;
border: 2px solid #26dad2;
border-radius: 20px
border-radius: 20px
}
}
.onoffswitch-inner {
.onoffswitch-inner {
display: block;
display: block;
width: 200%;
width: 200%;
margin-left: -100%;
margin-left: -100%;
-webkit-transition: margin 0.3s ease-in 0s;
-webkit-transition: margin 0.3s ease-in 0s;
-o-transition: margin 0.3s ease-in 0s;
-o-transition: margin 0.3s ease-in 0s;
transition: margin 0.3s ease-in 0s
transition: margin 0.3s ease-in 0s
}
}
.onoffswitch-inner:after, .onoffswitch-inner:before {
.onoffswitch-inner:after, .onoffswitch-inner:before {
display: block;
display: block;
float: left;
float: left;
width: 50%;
width: 50%;
height: 30px;
height: 30px;
padding: 0;
padding: 0;
line-height: 30px;
line-height: 30px;
font-size: 14px;
font-size: 14px;
color: white;
color: white;
-webkit-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box
box-sizing: border-box
}
}
.onoffswitch-inner:before {
.onoffswitch-inner:before {
content: "ON";
content: "ON";
padding-left: 27px;
padding-left: 27px;
background-color: #26dad2;
background-color: #26dad2;
color: #FFFFFF
color: #FFFFFF
}
}
.onoffswitch-inner:after {
.onoffswitch-inner:after {
content: "OFF";
content: "OFF";
padding-right: 24px;
padding-right: 24px;
background-color: #EEEEEE;
background-color: #EEEEEE;
color: #999999;
color: #999999;
text-align: right
text-align: right
}
}
.onoffswitch-switch {
.onoffswitch-switch {
display: block;
display: block;
width: 23px;
width: 23px;
margin: 6px;
margin: 6px;
background: #FFFFFF;
background: #FFFFFF;
position: absolute;
position: absolute;
top: 0;
top: 0;
bottom: 0;
bottom: 0;
right: 56px;
right: 56px;
border: 2px solid #26dad2;
border: 2px solid #26dad2;
border-radius: 20px;
border-radius: 20px;
-webkit-transition: all 0.3s ease-in 0s;
-webkit-transition: all 0.3s ease-in 0s;
-o-transition: all 0.3s ease-in 0s;
-o-transition: all 0.3s ease-in 0s;
transition: all 0.3s ease-in 0s
transition: all 0.3s ease-in 0s
}
}
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-inner {
margin-left: 0
margin-left: 0
}
}
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
.onoffswitch-checkbox:checked+.onoffswitch-label .onoffswitch-switch {
right: 0px
right: 0px
}
}
.dp-selected[style] {
.dp-selected[style] {
background-color: #1976d2!important
background-color: #1976d2!important
}
}
.datepaginator-lg .pagination li a, .datepaginator-sm .pagination li a, .datepaginator .pagination li a {
.datepaginator-lg .pagination li a, .datepaginator-sm .pagination li a, .datepaginator .pagination li a {
padding: 0 5px;
padding: 0 5px;
height: 60px;
height: 60px;
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
float: left;
float: left;
position: relative
position: relative
}
}
.model_img {
.model_img {
cursor: pointer
cursor: pointer
}
}
.show-grid {
.show-grid {
margin-bottom: 10px;
margin-bottom: 10px;
padding: 0 15px
padding: 0 15px
}
}
.show-grid [class^=col-] {
.show-grid [class^=col-] {
padding-top: 10px;
padding-top: 10px;
padding-bottom: 10px;
padding-bottom: 10px;
border: 1px solid #b1b8bb;
border: 1px solid #b1b8bb;
background-color: #f2f4f8
background-color: #f2f4f8
}
}
.vtabs {
.vtabs {
display: table
display: table
}
}
.vtabs .tabs-vertical {
.vtabs .tabs-vertical {
width: 150px;
width: 150px;
border-bottom: 0px;
border-bottom: 0px;
border-right: 1px solid rgba(120, 130, 140, 0.13);
border-right: 1px solid rgba(120, 130, 140, 0.13);
display: table-cell;
display: table-cell;
vertical-align: top
vertical-align: top
}
}
.vtabs .tabs-vertical li .nav-link {
.vtabs .tabs-vertical li .nav-link {
color: #263238;
color: #263238;
margin-bottom: 10px;
margin-bottom: 10px;
border: 0px;
border: 0px;
border-radius: 4px 0 0 4px
border-radius: 4px 0 0 4px
}
}
.vtabs .tab-content {
.vtabs .tab-content {
display: table-cell;
display: table-cell;
padding: 20px;
padding: 20px;
vertical-align: top
vertical-align: top
}
}
.tabs-vertical li .nav-link.active, .tabs-vertical li .nav-link.active:focus, .tabs-vertical li .nav-link:hover {
.tabs-vertical li .nav-link.active, .tabs-vertical li .nav-link.active:focus, .tabs-vertical li .nav-link:hover {
background: #1976d2;
background: #1976d2;
border: 0px;
border: 0px;
color: #ffffff
color: #ffffff
}
}
.customvtab .tabs-vertical li .nav-link.active, .customvtab .tabs-vertical li .nav-link:focus, .customvtab .tabs-vertical li .nav-link:hover {
.customvtab .tabs-vertical li .nav-link.active, .customvtab .tabs-vertical li .nav-link:focus, .customvtab .tabs-vertical li .nav-link:hover {
background: #ffffff;
background: #ffffff;
border: 0px;
border: 0px;
border-right: 2px solid #1976d2;
border-right: 2px solid #1976d2;
margin-right: -1px;
margin-right: -1px;
color: #1976d2
color: #1976d2
}
}
.tabcontent-border {
.tabcontent-border {
border: 1px solid #ddd;
border: 1px solid #ddd;
border-top: 0px
border-top: 0px
}
}
.customtab2 li a.nav-link {
.customtab2 li a.nav-link {
border: 0px;
border: 0px;
margin-right: 3px;
margin-right: 3px;
color: #67757c
color: #67757c
}
}
.customtab2 li a.nav-link.active {
.customtab2 li a.nav-link.active {
background: #1976d2;
background: #1976d2;
color: #ffffff
color: #ffffff
}
}
.customtab2 li a.nav-link:hover {
.customtab2 li a.nav-link:hover {
color: #ffffff;
color: #ffffff;
background: #1976d2
background: #1976d2
}
}
.progress-bar.active, .progress.active .progress-bar {
.progress-bar.active, .progress.active .progress-bar {
-webkit-animation: progress-bar-stripes 2s linear infinite;
-webkit-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
-o-animation: progress-bar-stripes 2s linear infinite;
animation: progress-bar-stripes 2s linear infinite
animation: progress-bar-stripes 2s linear infinite
}
}
.progress-vertical {
.progress-vertical {
min-height: 250px;
min-height: 250px;
height: 250px;
height: 250px;
position: relative;
position: relative;
display: inline-block;
display: inline-block;
margin-bottom: 0;
margin-bottom: 0;
margin-right: 20px
margin-right: 20px
}
}
.progress-vertical-bottom {
.progress-vertical-bottom {
min-height: 250px;
min-height: 250px;
height: 250px;
height: 250px;
position: relative;
position: relative;
display: inline-block;
display: inline-block;
margin-bottom: 0;
margin-bottom: 0;
margin-right: 20px;
margin-right: 20px;
-webkit-transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-ms-transform: rotate(180deg);
transform: rotate(180deg)
transform: rotate(180deg)
}
}
.progress-animated {
.progress-animated {
-webkit-animation-duration: 5s;
-webkit-animation-duration: 5s;
-webkit-animation-name: myanimation;
-webkit-animation-name: myanimation;
-webkit-transition: 5s all;
-webkit-transition: 5s all;
animation-duration: 5s;
animation-duration: 5s;
animation-name: myanimation;
animation-name: myanimation;
-o-transition: 5s all;
-o-transition: 5s all;
transition: 5s all
transition: 5s all
}
}
@-webkit-keyframes myanimation {
@-webkit-keyframes myanimation {
0% {
0% {
width: 0
width: 0
}
}
}
}
@keyframes myanimation {
@keyframes myanimation {
0% {
0% {
width: 0
width: 0
}
}
}
}
.jq-icon-info {
.jq-icon-info {
background-color: #1976d2;
background-color: #1976d2;
color: #ffffff
color: #ffffff
}
}
.jq-icon-success {
.jq-icon-success {
background-color: #26dad2;
background-color: #26dad2;
color: #ffffff
color: #ffffff
}
}
.jq-icon-error {
.jq-icon-error {
background-color: #ef5350;
background-color: #ef5350;
color: #ffffff
color: #ffffff
}
}
.jq-icon-warning {
.jq-icon-warning {
background-color: #ffb22b;
background-color: #ffb22b;
color: #ffffff
color: #ffffff
}
}
.alert-rounded {
.alert-rounded {
border-radius: 60px
border-radius: 60px
}
}
.list-group a.list-group-item:hover {
.list-group a.list-group-item:hover {
background: #f2f4f8
background: #f2f4f8
}
}
.list-group-item.active, .list-group .list-group-item.active:hover {
.list-group-item.active, .list-group .list-group-item.active:hover {
background: #1976d2;
background: #1976d2;
border-color: #1976d2
border-color: #1976d2
}
}
.list-group-item.disabled {
.list-group-item.disabled {
color: #99abb4;
color: #99abb4;
background: #f2f4f8
background: #f2f4f8
}
}
.media {
.media {
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
margin-bottom: 10px;
margin-bottom: 10px;
padding: 15px
padding: 15px
}
}
.el-element-overlay .white-box {
.el-element-overlay .white-box {
padding: 0px
padding: 0px
}
}
.el-element-overlay .el-card-item {
.el-element-overlay .el-card-item {
position: relative;
position: relative;
padding-bottom: 25px
padding-bottom: 25px
}
}
.el-element-overlay .el-card-item .el-card-avatar {
.el-element-overlay .el-card-item .el-card-avatar {
margin-bottom: 15px
margin-bottom: 15px
}
}
.el-element-overlay .el-card-item .el-card-content {
.el-element-overlay .el-card-item .el-card-content {
text-align: center
text-align: center
}
}
.el-element-overlay .el-card-item .el-card-content h3 {
.el-element-overlay .el-card-item .el-card-content h3 {
margin: 0px
margin: 0px
}
}
.el-element-overlay .el-card-item .el-card-content a {
.el-element-overlay .el-card-item .el-card-content a {
color: #67757c
color: #67757c
}
}
.el-element-overlay .el-card-item .el-card-content a:hover {
.el-element-overlay .el-card-item .el-card-content a:hover {
color: #1976d2
color: #1976d2
}
}
.el-element-overlay .el-card-item .el-overlay-1 {
.el-element-overlay .el-card-item .el-overlay-1 {
width: 100%;
width: 100%;
overflow: hidden;
overflow: hidden;
position: relative;
position: relative;
text-align: center;
text-align: center;
cursor: default
cursor: default
}
}
.el-element-overlay .el-card-item .el-overlay-1 img {
.el-element-overlay .el-card-item .el-overlay-1 img {
display: block;
display: block;
position: relative;
position: relative;
-webkit-transition: all .4s linear;
-webkit-transition: all .4s linear;
-o-transition: all .4s linear;
-o-transition: all .4s linear;
transition: all .4s linear;
transition: all .4s linear;
width: 100%;
width: 100%;
height: auto
height: auto
}
}
.el-element-overlay .el-card-item .el-overlay-1:hover img {
.el-element-overlay .el-card-item .el-overlay-1:hover img {
-ms-transform: scale(1.2) translateZ(0);
-ms-transform: scale(1.2) translateZ(0);
-webkit-transform: scale(1.2) translateZ(0)
-webkit-transform: scale(1.2) translateZ(0)
}
}
.el-element-overlay .el-card-item .el-overlay-1 .el-info {
.el-element-overlay .el-card-item .el-overlay-1 .el-info {
text-decoration: none;
text-decoration: none;
display: inline-block;
display: inline-block;
text-transform: uppercase;
text-transform: uppercase;
color: #ffffff;
color: #ffffff;
background-color: transparent;
background-color: transparent;
filter: alpha(opacity=0);
filter: alpha(opacity=0);
-webkit-transition: all .2s ease-in-out;
-webkit-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
-o-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
padding: 0;
padding: 0;
margin: auto;
margin: auto;
position: absolute;
position: absolute;
top: 50%;
top: 50%;
left: 0;
left: 0;
right: 0;
right: 0;
transform: translateY(-50%) translateZ(0);
transform: translateY(-50%) translateZ(0);
-webkit-transform: translateY(-50%) translateZ(0);
-webkit-transform: translateY(-50%) translateZ(0);
-ms-transform: translateY(-50%) translateZ(0)
-ms-transform: translateY(-50%) translateZ(0)
}
}
.el-element-overlay .el-card-item .el-overlay-1 .el-info>li {
.el-element-overlay .el-card-item .el-overlay-1 .el-info>li {
list-style: none;
list-style: none;
display: inline-block;
display: inline-block;
margin: 0 3px
margin: 0 3px
}
}
.el-element-overlay .el-card-item .el-overlay-1 .el-info>li a {
.el-element-overlay .el-card-item .el-overlay-1 .el-info>li a {
border-color: #ffffff;
border-color: #ffffff;
color: #ffffff;
color: #ffffff;
padding: 12px 15px 10px
padding: 12px 15px 10px
}
}
.el-element-overlay .el-card-item .el-overlay-1 .el-info>li a:hover {
.el-element-overlay .el-card-item .el-overlay-1 .el-info>li a:hover {
background: #1976d2;
background: #1976d2;
border-color: #1976d2
border-color: #1976d2
}
}
.el-element-overlay .el-card-item .el-overlay {
.el-element-overlay .el-card-item .el-overlay {
width: 100%;
width: 100%;
height: 100%;
height: 100%;
position: absolute;
position: absolute;
overflow: hidden;
overflow: hidden;
top: 0;
top: 0;
left: 0;
left: 0;
opacity: 0;
opacity: 0;
background-color: rgba(0, 0, 0, 0.7);
background-color: rgba(0, 0, 0, 0.7);
-webkit-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
transition: all .4s ease-in-out
transition: all .4s ease-in-out
}
}
.el-element-overlay .el-card-item .el-overlay-1:hover .el-overlay {
.el-element-overlay .el-card-item .el-overlay-1:hover .el-overlay {
opacity: 1;
opacity: 1;
filter: alpha(opacity=100);
filter: alpha(opacity=100);
-webkit-transform: translateZ(0);
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0)
transform: translateZ(0)
}
}
.el-element-overlay .el-card-item .el-overlay-1 .scrl-dwn {
.el-element-overlay .el-card-item .el-overlay-1 .scrl-dwn {
top: -100%
top: -100%
}
}
.el-element-overlay .el-card-item .el-overlay-1 .scrl-up {
.el-element-overlay .el-card-item .el-overlay-1 .scrl-up {
top: 100%;
top: 100%;
height: 0px
height: 0px
}
}
.el-element-overlay .el-card-item .el-overlay-1:hover .scrl-dwn {
.el-element-overlay .el-card-item .el-overlay-1:hover .scrl-dwn {
top: 0px
top: 0px
}
}
.el-element-overlay .el-card-item .el-overlay-1:hover .scrl-up {
.el-element-overlay .el-card-item .el-overlay-1:hover .scrl-up {
top: 0px;
top: 0px;
height: 100%
height: 100%
}
}
.timeline {
.timeline {
position: relative;
position: relative;
padding: 20px 0 20px;
padding: 20px 0 20px;
list-style: none;
list-style: none;
max-width: 1200px;
max-width: 1200px;
margin: 0 auto
margin: 0 auto
}
}
.timeline:before {
.timeline:before {
content: " ";
content: " ";
position: absolute;
position: absolute;
top: 0;
top: 0;
bottom: 0;
bottom: 0;
left: 50%;
left: 50%;
width: 3px;
width: 3px;
margin-left: -1.5px;
margin-left: -1.5px;
background-color: #f2f4f8
background-color: #f2f4f8
}
}
.timeline>li {
.timeline>li {
position: relative;
position: relative;
margin-bottom: 20px
margin-bottom: 20px
}
}
.timeline>li:after, .timeline>li:before {
.timeline>li:after, .timeline>li:before {
content: " ";
content: " ";
display: table
display: table
}
}
.timeline>li:after {
.timeline>li:after {
clear: both
clear: both
}
}
.timeline>li:after, .timeline>li:before {
.timeline>li:after, .timeline>li:before {
content: " ";
content: " ";
display: table
display: table
}
}
.timeline>li:after {
.timeline>li:after {
clear: both
clear: both
}
}
.timeline>li>.timeline-panel {
.timeline>li>.timeline-panel {
float: left;
float: left;
position: relative;
position: relative;
width: 46%;
width: 46%;
padding: 20px;
padding: 20px;
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
border-radius: 4px;
border-radius: 4px;
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05)
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05)
}
}
.timeline>li>.timeline-panel:before {
.timeline>li>.timeline-panel:before {
content: " ";
content: " ";
display: inline-block;
display: inline-block;
position: absolute;
position: absolute;
top: 26px;
top: 26px;
right: -8px;
right: -8px;
border-top: 8px solid transparent;
border-top: 8px solid transparent;
border-right: 0 solid rgba(120, 130, 140, 0.13);
border-right: 0 solid rgba(120, 130, 140, 0.13);
border-bottom: 8px solid transparent;
border-bottom: 8px solid transparent;
border-left: 8px solid rgba(120, 130, 140, 0.13)
border-left: 8px solid rgba(120, 130, 140, 0.13)
}
}
.timeline>li>.timeline-panel:after {
.timeline>li>.timeline-panel:after {
content: " ";
content: " ";
display: inline-block;
display: inline-block;
position: absolute;
position: absolute;
top: 27px;
top: 27px;
right: -7px;
right: -7px;
border-top: 7px solid transparent;
border-top: 7px solid transparent;
border-right: 0 solid #ffffff;
border-right: 0 solid #ffffff;
border-bottom: 7px solid transparent;
border-bottom: 7px solid transparent;
border-left: 7px solid #ffffff
border-left: 7px solid #ffffff
}
}
.timeline>li>.timeline-badge {
.timeline>li>.timeline-badge {
z-index: 10;
z-index: 10;
position: absolute;
position: absolute;
top: 16px;
top: 16px;
left: 50%;
left: 50%;
width: 50px;
width: 50px;
height: 50px;
height: 50px;
margin-left: -25px;
margin-left: -25px;
border-radius: 50% 50% 50% 50%;
border-radius: 50% 50% 50% 50%;
text-align: center;
text-align: center;
font-size: 1.4em;
font-size: 1.4em;
line-height: 50px;
line-height: 50px;
color: #fff;
color: #fff;
overflow: hidden
overflow: hidden
}
}
.timeline>li.timeline-inverted>.timeline-panel {
.timeline>li.timeline-inverted>.timeline-panel {
float: right
float: right
}
}
.timeline>li.timeline-inverted>.timeline-panel:before {
.timeline>li.timeline-inverted>.timeline-panel:before {
right: auto;
right: auto;
left: -8px;
left: -8px;
border-right-width: 8px;
border-right-width: 8px;
border-left-width: 0
border-left-width: 0
}
}
.timeline>li.timeline-inverted>.timeline-panel:after {
.timeline>li.timeline-inverted>.timeline-panel:after {
right: auto;
right: auto;
left: -7px;
left: -7px;
border-right-width: 7px;
border-right-width: 7px;
border-left-width: 0
border-left-width: 0
}
}
.timeline-badge.primary {
.timeline-badge.primary {
background-color: #5c4ac7
background-color: #5c4ac7
}
}
.timeline-badge.success {
.timeline-badge.success {
background-color: #26dad2
background-color: #26dad2
}
}
.timeline-badge.warning {
.timeline-badge.warning {
background-color: #ffb22b
background-color: #ffb22b
}
}
.timeline-badge.danger {
.timeline-badge.danger {
background-color: #ef5350
background-color: #ef5350
}
}
.timeline-badge.info {
.timeline-badge.info {
background-color: #1976d2
background-color: #1976d2
}
}
.timeline-title {
.timeline-title {
margin-top: 0;
margin-top: 0;
color: inherit;
color: inherit;
font-weight: 400
font-weight: 400
}
}
.timeline-body>p, .timeline-body>ul {
.timeline-body>p, .timeline-body>ul {
margin-bottom: 0
margin-bottom: 0
}
}
.timeline-body>p+p {
.timeline-body>p+p {
margin-top: 5px
margin-top: 5px
}
}
.cd-horizontal-timeline .events a {
.cd-horizontal-timeline .events a {
padding-bottom: 6px;
padding-bottom: 6px;
color: #1976d2
color: #1976d2
}
}
.cd-horizontal-timeline .events a.selected:after, .cd-horizontal-timeline .filling-line {
.cd-horizontal-timeline .events a.selected:after, .cd-horizontal-timeline .filling-line {
background: #1976d2
background: #1976d2
}
}
.cd-horizontal-timeline .events a.selected:after {
.cd-horizontal-timeline .events a.selected:after {
border-color: #1976d2
border-color: #1976d2
}
}
.myadmin-dd .dd-list .dd-item .dd-handle {
.myadmin-dd .dd-list .dd-item .dd-handle {
background: #ffffff;
background: #ffffff;
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
padding: 8px 16px;
padding: 8px 16px;
height: auto;
height: auto;
font-family: "Poppins", sans-serif;
font-family: "Poppins", sans-serif;
font-weight: 400;
font-weight: 400;
border-radius: 0
border-radius: 0
}
}
.myadmin-dd-empty .dd-list .dd3-content {
.myadmin-dd-empty .dd-list .dd3-content {
height: auto;
height: auto;
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
padding: 8px 16px 8px 46px;
padding: 8px 16px 8px 46px;
background: #ffffff;
background: #ffffff;
font-weight: 400
font-weight: 400
}
}
.myadmin-dd-empty .dd-list .dd3-handle {
.myadmin-dd-empty .dd-list .dd3-handle {
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 0;
border-bottom: 0;
background: #ffffff;
background: #ffffff;
height: 36px;
height: 36px;
width: 36px
width: 36px
}
}
.dd3-handle:before {
.dd3-handle:before {
color: #67757c;
color: #67757c;
top: 7px
top: 7px
}
}
.ribbon-wrapper, .ribbon-wrapper-bottom, .ribbon-wrapper-reverse, .ribbon-wrapper-right-bottom {
.ribbon-wrapper, .ribbon-wrapper-bottom, .ribbon-wrapper-reverse, .ribbon-wrapper-right-bottom {
position: relative;
position: relative;
padding: 50px 15px 15px 15px
padding: 50px 15px 15px 15px
}
}
.ribbon-vwrapper {
.ribbon-vwrapper {
padding: 15px 15px 15px 50px;
padding: 15px 15px 15px 50px;
position: relative
position: relative
}
}
.ribbon-overflow {
.ribbon-overflow {
overflow: hidden
overflow: hidden
}
}
.ribbon-vwrapper-reverse {
.ribbon-vwrapper-reverse {
padding: 15px 50px 15px 15px
padding: 15px 50px 15px 15px
}
}
.ribbon-wrapper-bottom {
.ribbon-wrapper-bottom {
padding: 15px 15px 50px 50px
padding: 15px 15px 50px 50px
}
}
.ribbon-wrapper-right-bottom {
.ribbon-wrapper-right-bottom {
padding: 15px 50px 50px 15px
padding: 15px 50px 50px 15px
}
}
.ribbon-content {
.ribbon-content {
margin-bottom: 0px
margin-bottom: 0px
}
}
.ribbon {
.ribbon {
padding: 0 20px;
padding: 0 20px;
height: 30px;
height: 30px;
line-height: 30px;
line-height: 30px;
clear: left;
clear: left;
position: absolute;
position: absolute;
top: 12px;
top: 12px;
left: -2px;
left: -2px;
color: #ffffff
color: #ffffff
}
}
.ribbon-bookmark:before {
.ribbon-bookmark:before {
position: absolute;
position: absolute;
top: 0;
top: 0;
left: 100%;
left: 100%;
display: block;
display: block;
width: 0;
width: 0;
height: 0;
height: 0;
content: '';
content: '';
border: 15px solid #263238;
border: 15px solid #263238;
border-right: 10px solid transparent
border-right: 10px solid transparent
}
}
.ribbon-right {
.ribbon-right {
left: auto;
left: auto;
right: -2px
right: -2px
}
}
.ribbon-bookmark.ribbon-right:before {
.ribbon-bookmark.ribbon-right:before {
right: 100%;
right: 100%;
left: auto;
left: auto;
border-right: 15px solid #263238;
border-right: 15px solid #263238;
border-left: 10px solid transparent
border-left: 10px solid transparent
}
}
.ribbon-vertical-l, .ribbon-vertical-r {
.ribbon-vertical-l, .ribbon-vertical-r {
clear: none;
clear: none;
padding: 0 5px;
padding: 0 5px;
height: 70px;
height: 70px;
width: 30px;
width: 30px;
line-height: 70px;
line-height: 70px;
text-align: center;
text-align: center;
left: 12px;
left: 12px;
top: -2px
top: -2px
}
}
.ribbon-vertical-r {
.ribbon-vertical-r {
left: auto;
left: auto;
right: 12px
right: 12px
}
}
.ribbon-bookmark.ribbon-vertical-l:before, .ribbon-bookmark.ribbon-vertical-r:before {
.ribbon-bookmark.ribbon-vertical-l:before, .ribbon-bookmark.ribbon-vertical-r:before {
top: 100%;
top: 100%;
left: 0;
left: 0;
margin-top: -14px;
margin-top: -14px;
border-right: 15px solid #263238;
border-right: 15px solid #263238;
border-bottom: 10px solid transparent
border-bottom: 10px solid transparent
}
}
.ribbon-badge {
.ribbon-badge {
top: 15px;
top: 15px;
overflow: hidden;
overflow: hidden;
left: -90px;
left: -90px;
width: 100%;
width: 100%;
text-align: center;
text-align: center;
-webkit-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg)
transform: rotate(-45deg)
}
}
.ribbon-badge.ribbon-right {
.ribbon-badge.ribbon-right {
left: auto;
left: auto;
right: -90px;
right: -90px;
-webkit-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg)
transform: rotate(45deg)
}
}
.ribbon-badge.ribbon-bottom {
.ribbon-badge.ribbon-bottom {
top: auto;
top: auto;
bottom: 15px;
bottom: 15px;
-webkit-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
-o-transform: rotate(45deg);
transform: rotate(45deg)
transform: rotate(45deg)
}
}
.ribbon-badge.ribbon-right.ribbon-bottom {
.ribbon-badge.ribbon-right.ribbon-bottom {
-webkit-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg)
transform: rotate(-45deg)
}
}
.ribbon-corner {
.ribbon-corner {
top: 0;
top: 0;
left: 0;
left: 0;
background-color: transparent!important;
background-color: transparent!important;
padding: 6px 0 0 10px
padding: 6px 0 0 10px
}
}
.ribbon-corner i {
.ribbon-corner i {
position: relative
position: relative
}
}
.ribbon-corner:before {
.ribbon-corner:before {
position: absolute;
position: absolute;
top: 0;
top: 0;
left: 0;
left: 0;
width: 0;
width: 0;
height: 0;
height: 0;
content: '';
content: '';
border: 30px solid transparent;
border: 30px solid transparent;
border-top-color: #1976d2;
border-top-color: #1976d2;
border-left-color: #1976d2
border-left-color: #1976d2
}
}
.ribbon-corner.ribbon-right:before {
.ribbon-corner.ribbon-right:before {
right: 0;
right: 0;
left: auto;
left: auto;
border-right-color: #526069;
border-right-color: #526069;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-corner.ribbon-right {
.ribbon-corner.ribbon-right {
right: 0;
right: 0;
left: auto;
left: auto;
padding: 6px 10px 0 0
padding: 6px 10px 0 0
}
}
.ribbon-corner.ribbon-bottom:before {
.ribbon-corner.ribbon-bottom:before {
top: auto;
top: auto;
bottom: 0;
bottom: 0;
border-top-color: transparent;
border-top-color: transparent;
border-bottom-color: #526069
border-bottom-color: #526069
}
}
.ribbon-corner.ribbon-bottom {
.ribbon-corner.ribbon-bottom {
bottom: 0;
bottom: 0;
top: auto;
top: auto;
padding: 0 10px 6px 10px
padding: 0 10px 6px 10px
}
}
.ribbon-custom {
.ribbon-custom {
background: #1976d2
background: #1976d2
}
}
.ribbon-bookmark.ribbon-right.ribbon-custom:before {
.ribbon-bookmark.ribbon-right.ribbon-custom:before {
border-right-color: #1976d2;
border-right-color: #1976d2;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-bookmark.ribbon-vertical-l.ribbon-custom:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-custom:before {
.ribbon-bookmark.ribbon-vertical-l.ribbon-custom:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-custom:before {
border-right-color: #1976d2;
border-right-color: #1976d2;
border-bottom-color: transparent
border-bottom-color: transparent
}
}
.ribbon-primary {
.ribbon-primary {
background: #5c4ac7
background: #5c4ac7
}
}
.ribbon-bookmark.ribbon-primary:before {
.ribbon-bookmark.ribbon-primary:before {
border-color: #5c4ac7;
border-color: #5c4ac7;
border-right-color: transparent
border-right-color: transparent
}
}
.ribbon-bookmark.ribbon-right.ribbon-primary:before {
.ribbon-bookmark.ribbon-right.ribbon-primary:before {
border-right-color: #5c4ac7;
border-right-color: #5c4ac7;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-bookmark.ribbon-vertical-l.ribbon-primary:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-primary:before {
.ribbon-bookmark.ribbon-vertical-l.ribbon-primary:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-primary:before {
border-right-color: #5c4ac7;
border-right-color: #5c4ac7;
border-bottom-color: transparent
border-bottom-color: transparent
}
}
.ribbon-primary.ribbon-corner:before {
.ribbon-primary.ribbon-corner:before {
border-top-color: #5c4ac7;
border-top-color: #5c4ac7;
border-left-color: #5c4ac7
border-left-color: #5c4ac7
}
}
.ribbon-primary.ribbon-corner.ribbon-right:before {
.ribbon-primary.ribbon-corner.ribbon-right:before {
border-right-color: #5c4ac7;
border-right-color: #5c4ac7;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-primary.ribbon-corner.ribbon-bottom:before {
.ribbon-primary.ribbon-corner.ribbon-bottom:before {
border-top-color: transparent;
border-top-color: transparent;
border-bottom-color: #5c4ac7
border-bottom-color: #5c4ac7
}
}
.ribbon-success {
.ribbon-success {
background: #26dad2
background: #26dad2
}
}
.ribbon-bookmark.ribbon-success:before {
.ribbon-bookmark.ribbon-success:before {
border-color: #26dad2;
border-color: #26dad2;
border-right-color: transparent
border-right-color: transparent
}
}
.ribbon-bookmark.ribbon-right.ribbon-success:before {
.ribbon-bookmark.ribbon-right.ribbon-success:before {
border-right-color: #26dad2;
border-right-color: #26dad2;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-bookmark.ribbon-vertical-l.ribbon-success:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-success:before {
.ribbon-bookmark.ribbon-vertical-l.ribbon-success:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-success:before {
border-right-color: #26dad2;
border-right-color: #26dad2;
border-bottom-color: transparent
border-bottom-color: transparent
}
}
.ribbon-success.ribbon-corner:before {
.ribbon-success.ribbon-corner:before {
border-top-color: #26dad2;
border-top-color: #26dad2;
border-left-color: #26dad2
border-left-color: #26dad2
}
}
.ribbon-success.ribbon-corner.ribbon-right:before {
.ribbon-success.ribbon-corner.ribbon-right:before {
border-right-color: #26dad2;
border-right-color: #26dad2;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-success.ribbon-corner.ribbon-bottom:before {
.ribbon-success.ribbon-corner.ribbon-bottom:before {
border-top-color: transparent;
border-top-color: transparent;
border-bottom-color: #26dad2
border-bottom-color: #26dad2
}
}
.ribbon-info {
.ribbon-info {
background: #1976d2
background: #1976d2
}
}
.ribbon-bookmark.ribbon-info:before {
.ribbon-bookmark.ribbon-info:before {
border-color: #1976d2;
border-color: #1976d2;
border-right-color: transparent
border-right-color: transparent
}
}
.ribbon-bookmark.ribbon-right.ribbon-info:before {
.ribbon-bookmark.ribbon-right.ribbon-info:before {
border-right-color: #1976d2;
border-right-color: #1976d2;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-bookmark.ribbon-vertical-l.ribbon-info:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-info:before {
.ribbon-bookmark.ribbon-vertical-l.ribbon-info:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-info:before {
border-right-color: #1976d2;
border-right-color: #1976d2;
border-bottom-color: transparent
border-bottom-color: transparent
}
}
.ribbon-info.ribbon-corner:before {
.ribbon-info.ribbon-corner:before {
border-top-color: #1976d2;
border-top-color: #1976d2;
border-left-color: #1976d2
border-left-color: #1976d2
}
}
.ribbon-info.ribbon-corner.ribbon-right:before {
.ribbon-info.ribbon-corner.ribbon-right:before {
border-right-color: #1976d2;
border-right-color: #1976d2;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-info.ribbon-corner.ribbon-bottom:before {
.ribbon-info.ribbon-corner.ribbon-bottom:before {
border-top-color: transparent;
border-top-color: transparent;
border-bottom-color: #1976d2
border-bottom-color: #1976d2
}
}
.ribbon-warning {
.ribbon-warning {
background: #ffb22b
background: #ffb22b
}
}
.ribbon-bookmark.ribbon-warning:before {
.ribbon-bookmark.ribbon-warning:before {
border-color: #ffb22b;
border-color: #ffb22b;
border-right-color: transparent
border-right-color: transparent
}
}
.ribbon-bookmark.ribbon-right.ribbon-warning:before {
.ribbon-bookmark.ribbon-right.ribbon-warning:before {
border-right-color: #ffb22b;
border-right-color: #ffb22b;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-bookmark.ribbon-vertical-l.ribbon-warning:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-warning:before {
.ribbon-bookmark.ribbon-vertical-l.ribbon-warning:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-warning:before {
border-right-color: #ffb22b;
border-right-color: #ffb22b;
border-bottom-color: transparent
border-bottom-color: transparent
}
}
.ribbon-warning.ribbon-corner:before {
.ribbon-warning.ribbon-corner:before {
border-top-color: #ffb22b;
border-top-color: #ffb22b;
border-left-color: #ffb22b
border-left-color: #ffb22b
}
}
.ribbon-warning.ribbon-corner.ribbon-right:before {
.ribbon-warning.ribbon-corner.ribbon-right:before {
border-right-color: #ffb22b;
border-right-color: #ffb22b;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-warning.ribbon-corner.ribbon-bottom:before {
.ribbon-warning.ribbon-corner.ribbon-bottom:before {
border-top-color: transparent;
border-top-color: transparent;
border-bottom-color: #ffb22b
border-bottom-color: #ffb22b
}
}
.ribbon-danger {
.ribbon-danger {
background: #ef5350
background: #ef5350
}
}
.ribbon-bookmark.ribbon-danger:before {
.ribbon-bookmark.ribbon-danger:before {
border-color: #ef5350;
border-color: #ef5350;
border-right-color: transparent
border-right-color: transparent
}
}
.ribbon-bookmark.ribbon-right.ribbon-danger:before {
.ribbon-bookmark.ribbon-right.ribbon-danger:before {
border-right-color: #ef5350;
border-right-color: #ef5350;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-bookmark.ribbon-vertical-l.ribbon-danger:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-danger:before {
.ribbon-bookmark.ribbon-vertical-l.ribbon-danger:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-danger:before {
border-right-color: #ef5350;
border-right-color: #ef5350;
border-bottom-color: transparent
border-bottom-color: transparent
}
}
.ribbon-danger.ribbon-corner:before {
.ribbon-danger.ribbon-corner:before {
border-top-color: #ef5350;
border-top-color: #ef5350;
border-left-color: #ef5350
border-left-color: #ef5350
}
}
.ribbon-danger.ribbon-corner.ribbon-right:before {
.ribbon-danger.ribbon-corner.ribbon-right:before {
border-right-color: #ef5350;
border-right-color: #ef5350;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-danger.ribbon-corner.ribbon-bottom:before {
.ribbon-danger.ribbon-corner.ribbon-bottom:before {
border-top-color: transparent;
border-top-color: transparent;
border-bottom-color: #ef5350
border-bottom-color: #ef5350
}
}
.ribbon-default {
.ribbon-default {
background: #263238
background: #263238
}
}
.ribbon-bookmark.ribbon-default:before {
.ribbon-bookmark.ribbon-default:before {
border-color: #263238;
border-color: #263238;
border-right-color: transparent
border-right-color: transparent
}
}
.ribbon-bookmark.ribbon-right.ribbon-default:before {
.ribbon-bookmark.ribbon-right.ribbon-default:before {
border-right-color: #263238;
border-right-color: #263238;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-bookmark.ribbon-vertical-l.ribbon-default:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-default:before {
.ribbon-bookmark.ribbon-vertical-l.ribbon-default:before, .ribbon-bookmark.ribbon-vertical-r.ribbon-default:before {
border-right-color: #263238;
border-right-color: #263238;
border-bottom-color: transparent
border-bottom-color: transparent
}
}
.ribbon-default.ribbon-corner:before {
.ribbon-default.ribbon-corner:before {
border-top-color: #263238;
border-top-color: #263238;
border-left-color: #263238
border-left-color: #263238
}
}
.ribbon-default.ribbon-corner.ribbon-right:before {
.ribbon-default.ribbon-corner.ribbon-right:before {
border-right-color: #263238;
border-right-color: #263238;
border-left-color: transparent
border-left-color: transparent
}
}
.ribbon-default.ribbon-corner.ribbon-bottom:before {
.ribbon-default.ribbon-corner.ribbon-bottom:before {
border-top-color: transparent;
border-top-color: transparent;
border-bottom-color: #263238
border-bottom-color: #263238
}
}
#idletimeout {
#idletimeout {
background: #1976d2;
background: #1976d2;
border: 3px solid #1976d2;
border: 3px solid #1976d2;
color: #fff;
color: #fff;
font-family: arial, sans-serif;
font-family: arial, sans-serif;
text-align: center;
text-align: center;
font-size: 12px;
font-size: 12px;
padding: 10px;
padding: 10px;
position: relative;
position: relative;
top: 0px;
top: 0px;
left: 0;
left: 0;
right: 0;
right: 0;
z-index: 100000;
z-index: 100000;
display: none
display: none
}
}
#idletimeout a {
#idletimeout a {
color: #ffffff;
color: #ffffff;
font-weight: bold
font-weight: bold
}
}
#idletimeout span {
#idletimeout span {
font-weight: bold
font-weight: bold
}
}
.mytooltip:hover .tooltip-content2, .mytooltip:hover .tooltip-content2 i {
.mytooltip:hover .tooltip-content2, .mytooltip:hover .tooltip-content2 i {
opacity: 1;
opacity: 1;
font-size: 18px;
font-size: 18px;
pointer-events: auto;
pointer-events: auto;
-webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
-webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
transform: translate3d(0, 0, 0) scale3d(1, 1, 1)
transform: translate3d(0, 0, 0) scale3d(1, 1, 1)
}
}
.mytooltip:hover .tooltip-content4, .mytooltip:hover .tooltip-text2 {
.mytooltip:hover .tooltip-content4, .mytooltip:hover .tooltip-text2 {
pointer-events: auto;
pointer-events: auto;
opacity: 1;
opacity: 1;
-webkit-transform: translate3d(0, 0, 0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
transform: translate3d(0, 0, 0)
}
}
.mytooltip {
.mytooltip {
display: inline;
display: inline;
position: relative;
position: relative;
z-index: 9999
z-index: 9999
}
}
.mytooltip:hover .tooltip-item:after {
.mytooltip:hover .tooltip-item:after {
pointer-events: auto
pointer-events: auto
}
}
.mytooltip:hover .tooltip-content {
.mytooltip:hover .tooltip-content {
pointer-events: auto;
pointer-events: auto;
opacity: 1;
opacity: 1;
-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
-webkit-transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0);
transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0)
transform: translate3d(0, 0, 0) rotate3d(0, 0, 0, 0)
}
}
.mytooltip:hover .tooltip-content3 {
.mytooltip:hover .tooltip-content3 {
opacity: 1;
opacity: 1;
pointer-events: auto;
pointer-events: auto;
-webkit-transform: scale3d(1, 1, 1);
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
transform: scale3d(1, 1, 1)
}
}
.mytooltip:hover .tooltip-item2 {
.mytooltip:hover .tooltip-item2 {
color: #ffffff;
color: #ffffff;
-webkit-transform: translate3d(0, -0.5em, 0);
-webkit-transform: translate3d(0, -0.5em, 0);
transform: translate3d(0, -0.5em, 0)
transform: translate3d(0, -0.5em, 0)
}
}
.mytooltip:hover .tooltip-content5 {
.mytooltip:hover .tooltip-content5 {
opacity: 1;
opacity: 1;
pointer-events: auto;
pointer-events: auto;
-webkit-transition-delay: 0s;
-webkit-transition-delay: 0s;
-o-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s
transition-delay: 0s
}
}
.mytooltip:hover .tooltip-text3 {
.mytooltip:hover .tooltip-text3 {
-webkit-transition-delay: 0s;
-webkit-transition-delay: 0s;
-o-transition-delay: 0s;
-o-transition-delay: 0s;
transition-delay: 0s;
transition-delay: 0s;
-webkit-transform: scale3d(1, 1, 1);
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1)
transform: scale3d(1, 1, 1)
}
}
.mytooltip:hover .tooltip-inner2 {
.mytooltip:hover .tooltip-inner2 {
-webkit-transition-delay: 0.3s;
-webkit-transition-delay: 0.3s;
-o-transition-delay: 0.3s;
-o-transition-delay: 0.3s;
transition-delay: 0.3s;
transition-delay: 0.3s;
-webkit-transform: translate3d(0, 0, 0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
transform: translate3d(0, 0, 0)
}
}
.tooltip-item {
.tooltip-item {
background: rgba(0, 0, 0, 0.1);
background: rgba(0, 0, 0, 0.1);
cursor: pointer;
cursor: pointer;
display: inline-block;
display: inline-block;
font-weight: 500;
font-weight: 500;
padding: 0 10px
padding: 0 10px
}
}
.tooltip-item:after {
.tooltip-item:after {
content: '';
content: '';
position: absolute;
position: absolute;
width: 360px;
width: 360px;
height: 20px;
height: 20px;
bottom: 100%;
bottom: 100%;
left: 50%;
left: 50%;
pointer-events: none;
pointer-events: none;
-webkit-transform: translateX(-50%);
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%)
transform: translateX(-50%)
}
}
.tooltip-content {
.tooltip-content {
position: absolute;
position: absolute;
z-index: 9999;
z-index: 9999;
width: 360px;
width: 360px;
left: 50%;
left: 50%;
margin: 0 0 20px -180px;
margin: 0 0 20px -180px;
bottom: 100%;
bottom: 100%;
text-align: left;
text-align: left;
font-size: 14px;
font-size: 14px;
line-height: 30px;
line-height: 30px;
-webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
-webkit-box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
box-shadow: -5px -5px 15px rgba(48, 54, 61, 0.2);
background: #2b2b2b;
background: #2b2b2b;
opacity: 0;
opacity: 0;
cursor: default;
cursor: default;
pointer-events: none
pointer-events: none
}
}
.tooltip-content img {
.tooltip-content img {
position: relative;
position: relative;
height: 140px;
height: 140px;
display: block;
display: block;
float: left;
float: left;
margin-right: 1em
margin-right: 1em
}
}
.tooltip-effect-5 .tooltip-content {
.tooltip-effect-5 .tooltip-content {
width: 180px;
width: 180px;
margin-left: -90px;
margin-left: -90px;
-webkit-transform-origin: 50% calc(106%);
-webkit-transform-origin: 50% calc(106%);
-ms-transform-origin: 50% calc(106%);
-ms-transform-origin: 50% calc(106%);
transform-origin: 50% calc(106%);
transform-origin: 50% calc(106%);
-webkit-transform: rotate3d(0, 0, 1, 15deg);
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, -webkit-transform 0.2s;
-o-transition: opacity 0.2s, transform 0.2s;
-o-transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s;
-webkit-transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39);
-webkit-transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39);
-o-transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39);
-o-transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39);
transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39)
transition-timing-function: ease, cubic-bezier(0.17, 0.67, 0.4, 1.39)
}
}
.tooltip-effect-5 .tooltip-text {
.tooltip-effect-5 .tooltip-text {
padding: 1.4em
padding: 1.4em
}
}
.tooltip-content:after {
.tooltip-content:after {
content: '';
content: '';
top: 100%;
top: 100%;
left: 50%;
left: 50%;
border: solid transparent;
border: solid transparent;
height: 0;
height: 0;
width: 0;
width: 0;
position: absolute;
position: absolute;
pointer-events: none;
pointer-events: none;
border-color: transparent;
border-color: transparent;
border-top-color: #2a3035;
border-top-color: #2a3035;
border-width: 10px;
border-width: 10px;
margin-left: -10px
margin-left: -10px
}
}
.tooltip-text {
.tooltip-text {
font-size: 14px;
font-size: 14px;
line-height: 24px;
line-height: 24px;
display: block;
display: block;
padding: 1.31em 1.21em 1.21em 0;
padding: 1.31em 1.21em 1.21em 0;
color: #ffffff
color: #ffffff
}
}
.tooltip-content2 {
.tooltip-content2 {
position: absolute;
position: absolute;
z-index: 9999;
z-index: 9999;
width: 80px;
width: 80px;
height: 80px;
height: 80px;
padding-top: 25px;
padding-top: 25px;
left: 50%;
left: 50%;
margin-left: -40px;
margin-left: -40px;
bottom: 100%;
bottom: 100%;
border-radius: 50%;
border-radius: 50%;
text-align: center;
text-align: center;
background: #1976d2;
background: #1976d2;
color: #ffffff;
color: #ffffff;
opacity: 0;
opacity: 0;
margin-bottom: 20px;
margin-bottom: 20px;
cursor: default;
cursor: default;
pointer-events: none
pointer-events: none
}
}
.tooltip-content2 i {
.tooltip-content2 i {
opacity: 0
opacity: 0
}
}
.tooltip-effect-6 .tooltip-content2 {
.tooltip-effect-6 .tooltip-content2 {
-webkit-transform: translate3d(0, 10px, 0) rotate3d(1, 1, 1, 45deg);
-webkit-transform: translate3d(0, 10px, 0) rotate3d(1, 1, 1, 45deg);
transform: translate3d(0, 10px, 0) rotate3d(1, 1, 1, 45deg);
transform: translate3d(0, 10px, 0) rotate3d(1, 1, 1, 45deg);
-webkit-transform-origin: 50% 100%;
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-6 .tooltip-content2 i {
.tooltip-effect-6 .tooltip-content2 i {
-webkit-transform: scale3d(0, 0, 1);
-webkit-transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-6:hover .tooltip-content2 i {
.tooltip-effect-6:hover .tooltip-content2 i {
-webkit-transform: rotate3d(1, 1, 1, 0);
-webkit-transform: rotate3d(1, 1, 1, 0);
transform: rotate3d(1, 1, 1, 0)
transform: rotate3d(1, 1, 1, 0)
}
}
.tooltip-content2:after {
.tooltip-content2:after {
content: '';
content: '';
position: absolute;
position: absolute;
top: 100%;
top: 100%;
left: 50%;
left: 50%;
margin: -7px 0 0 -15px;
margin: -7px 0 0 -15px;
width: 30px;
width: 30px;
height: 20px;
height: 20px;
background: url(http://themedesigner.in/demo/admin-press/assets/images/tooltip/tooltip1.svg) no-repeat center center;
background: url(http://themedesigner.in/demo/admin-press/assets/images/tooltip/tooltip1.svg) no-repeat center center;
background-size: 100%
background-size: 100%
}
}
.tooltip-content3 {
.tooltip-content3 {
position: absolute;
position: absolute;
background: url(http://themedesigner.in/demo/admin-press/assets/images/tooltip/shape1.svg) no-repeat center bottom;
background: url(http://themedesigner.in/demo/admin-press/assets/images/tooltip/shape1.svg) no-repeat center bottom;
background-size: 100% 100%;
background-size: 100% 100%;
z-index: 9999;
z-index: 9999;
width: 200px;
width: 200px;
bottom: 100%;
bottom: 100%;
left: 50%;
left: 50%;
margin-left: -100px;
margin-left: -100px;
padding: 50px 30px;
padding: 50px 30px;
text-align: center;
text-align: center;
color: #ffffff;
color: #ffffff;
opacity: 0;
opacity: 0;
cursor: default;
cursor: default;
font-size: 14;
font-size: 14;
line-height: 27px;
line-height: 27px;
pointer-events: none;
pointer-events: none;
-webkit-transform: scale3d(0.1, 0.2, 1);
-webkit-transform: scale3d(0.1, 0.2, 1);
transform: scale3d(0.1, 0.2, 1);
transform: scale3d(0.1, 0.2, 1);
-webkit-transform-origin: 50% 120%;
-webkit-transform-origin: 50% 120%;
-ms-transform-origin: 50% 120%;
-ms-transform-origin: 50% 120%;
transform-origin: 50% 120%;
transform-origin: 50% 120%;
-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
transition: opacity 0.4s, -webkit-transform 0.4s;
transition: opacity 0.4s, -webkit-transform 0.4s;
-o-transition: opacity 0.4s, transform 0.4s;
-o-transition: opacity 0.4s, transform 0.4s;
transition: opacity 0.4s, transform 0.4s;
transition: opacity 0.4s, transform 0.4s;
transition: opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
transition: opacity 0.4s, transform 0.4s, -webkit-transform 0.4s;
-webkit-transition-timing-function: ease, cubic-bezier(0.6, 0, 0.4, 1);
-webkit-transition-timing-function: ease, cubic-bezier(0.6, 0, 0.4, 1);
-o-transition-timing-function: ease, cubic-bezier(0.6, 0, 0.4, 1);
-o-transition-timing-function: ease, cubic-bezier(0.6, 0, 0.4, 1);
transition-timing-function: ease, cubic-bezier(0.6, 0, 0.4, 1)
transition-timing-function: ease, cubic-bezier(0.6, 0, 0.4, 1)
}
}
.tooltip-content3:after {
.tooltip-content3:after {
content: '';
content: '';
position: absolute;
position: absolute;
width: 16px;
width: 16px;
height: 16px;
height: 16px;
left: 50%;
left: 50%;
margin-left: -8px;
margin-left: -8px;
top: 100%;
top: 100%;
background: #00aeef;
background: #00aeef;
-webkit-transform: translate3d(0, -60%, 0) rotate3d(0, 0, 1, 45deg);
-webkit-transform: translate3d(0, -60%, 0) rotate3d(0, 0, 1, 45deg);
transform: translate3d(0, -60%, 0) rotate3d(0, 0, 1, 45deg)
transform: translate3d(0, -60%, 0) rotate3d(0, 0, 1, 45deg)
}
}
.tooltip-item2 {
.tooltip-item2 {
color: #00aeef;
color: #00aeef;
cursor: pointer;
cursor: pointer;
z-index: 100;
z-index: 100;
position: relative;
position: relative;
display: inline-block;
display: inline-block;
font-weight: 500;
font-weight: 500;
-webkit-transition: background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
-webkit-transition: background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
transition: background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
transition: background-color 0.3s, color 0.3s, -webkit-transform 0.3s;
-o-transition: background-color 0.3s, color 0.3s, transform 0.3s;
-o-transition: background-color 0.3s, color 0.3s, transform 0.3s;
transition: background-color 0.3s, color 0.3s, transform 0.3s;
transition: background-color 0.3s, color 0.3s, transform 0.3s;
transition: background-color 0.3s, color 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: background-color 0.3s, color 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-content4 {
.tooltip-content4 {
position: absolute;
position: absolute;
z-index: 99;
z-index: 99;
width: 360px;
width: 360px;
left: 50%;
left: 50%;
margin-left: -180px;
margin-left: -180px;
bottom: -5px;
bottom: -5px;
text-align: left;
text-align: left;
background: #00aeef;
background: #00aeef;
opacity: 0;
opacity: 0;
font-size: 14px;
font-size: 14px;
line-height: 27px;
line-height: 27px;
padding: 1.5em;
padding: 1.5em;
color: #ffffff;
color: #ffffff;
border-bottom: 55px solid #2b2b2b;
border-bottom: 55px solid #2b2b2b;
cursor: default;
cursor: default;
pointer-events: none;
pointer-events: none;
border-radius: 5px;
border-radius: 5px;
-webkit-transform: translate3d(0, -0.5em, 0);
-webkit-transform: translate3d(0, -0.5em, 0);
transform: translate3d(0, -0.5em, 0);
transform: translate3d(0, -0.5em, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-content4 a {
.tooltip-content4 a {
color: #2b2b2b
color: #2b2b2b
}
}
.tooltip-text2 {
.tooltip-text2 {
opacity: 0;
opacity: 0;
-webkit-transform: translate3d(0, 1.5em, 0);
-webkit-transform: translate3d(0, 1.5em, 0);
transform: translate3d(0, 1.5em, 0);
transform: translate3d(0, 1.5em, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-content5 {
.tooltip-content5 {
position: absolute;
position: absolute;
z-index: 9999;
z-index: 9999;
width: 300px;
width: 300px;
left: 50%;
left: 50%;
bottom: 100%;
bottom: 100%;
font-size: 20px;
font-size: 20px;
line-height: 1.4;
line-height: 1.4;
text-align: center;
text-align: center;
font-weight: 400;
font-weight: 400;
color: #ffffff;
color: #ffffff;
background: transparent;
background: transparent;
opacity: 0;
opacity: 0;
margin: 0 0 20px -150px;
margin: 0 0 20px -150px;
cursor: default;
cursor: default;
pointer-events: none;
pointer-events: none;
-webkit-transition: opacity 0.3s 0.3s;
-webkit-transition: opacity 0.3s 0.3s;
-o-transition: opacity 0.3s 0.3s;
-o-transition: opacity 0.3s 0.3s;
transition: opacity 0.3s 0.3s
transition: opacity 0.3s 0.3s
}
}
.tooltip-content5 span {
.tooltip-content5 span {
display: block
display: block
}
}
.tooltip-text3 {
.tooltip-text3 {
border-bottom: 10px solid #1976d2;
border-bottom: 10px solid #1976d2;
overflow: hidden;
overflow: hidden;
-webkit-transform: scale3d(0, 1, 1);
-webkit-transform: scale3d(0, 1, 1);
transform: scale3d(0, 1, 1);
transform: scale3d(0, 1, 1);
-webkit-transition: -webkit-transform 0.3s 0.3s;
-webkit-transition: -webkit-transform 0.3s 0.3s;
transition: -webkit-transform 0.3s 0.3s;
transition: -webkit-transform 0.3s 0.3s;
-o-transition: transform 0.3s 0.3s;
-o-transition: transform 0.3s 0.3s;
transition: transform 0.3s 0.3s;
transition: transform 0.3s 0.3s;
transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s
transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s
}
}
.tooltip-inner2 {
.tooltip-inner2 {
background: #2b2b2b;
background: #2b2b2b;
padding: 40px;
padding: 40px;
-webkit-transform: translate3d(0, 100%, 0);
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
-webkit-transition: -webkit-transform 0.3s;
-webkit-transition: -webkit-transform 0.3s;
transition: -webkit-transform 0.3s;
transition: -webkit-transform 0.3s;
-o-transition: transform 0.3s;
-o-transition: transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s;
transition: transform 0.3s, -webkit-transform 0.3s
transition: transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-content5:after {
.tooltip-content5:after {
content: '';
content: '';
bottom: -20px;
bottom: -20px;
left: 50%;
left: 50%;
border: solid transparent;
border: solid transparent;
height: 0;
height: 0;
width: 0;
width: 0;
position: absolute;
position: absolute;
pointer-events: none;
pointer-events: none;
border-color: transparent;
border-color: transparent;
border-top-color: #1976d2;
border-top-color: #1976d2;
border-width: 10px;
border-width: 10px;
margin-left: -10px
margin-left: -10px
}
}
.tooltip-effect-1 .tooltip-content {
.tooltip-effect-1 .tooltip-content {
-webkit-transform: translate3d(0, -10px, 0);
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
color: #ffffff
color: #ffffff
}
}
.tooltip-effect-2 .tooltip-content {
.tooltip-effect-2 .tooltip-content {
-webkit-transform-origin: 50% calc(110%);
-webkit-transform-origin: 50% calc(110%);
-ms-transform-origin: 50% calc(110%);
-ms-transform-origin: 50% calc(110%);
transform-origin: 50% calc(110%);
transform-origin: 50% calc(110%);
-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
transform: perspective(1000px) rotate3d(1, 0, 0, 45deg);
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, -webkit-transform 0.2s;
-o-transition: opacity 0.2s, transform 0.2s;
-o-transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s
transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s
}
}
.tooltip-effect-3 .tooltip-content {
.tooltip-effect-3 .tooltip-content {
-webkit-transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
-webkit-transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
transform: translate3d(0, 10px, 0) rotate3d(1, 1, 0, 25deg);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-4 .tooltip-content {
.tooltip-effect-4 .tooltip-content {
-webkit-transform-origin: 50% 100%;
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transform: scale3d(0.7, 0.3, 1);
-webkit-transform: scale3d(0.7, 0.3, 1);
transform: scale3d(0.7, 0.3, 1);
transform: scale3d(0.7, 0.3, 1);
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, -webkit-transform 0.2s;
transition: opacity 0.2s, -webkit-transform 0.2s;
-o-transition: opacity 0.2s, transform 0.2s;
-o-transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s;
transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s
transition: opacity 0.2s, transform 0.2s, -webkit-transform 0.2s
}
}
.tooltip.tooltip-effect-2:hover .tooltip-content {
.tooltip.tooltip-effect-2:hover .tooltip-content {
-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
-webkit-transform: perspective(1000px) rotate3d(1, 0, 0, 0deg);
transform: perspective(1000px) rotate3d(1, 0, 0, 0deg)
transform: perspective(1000px) rotate3d(1, 0, 0, 0deg)
}
}
a.mytooltip {
a.mytooltip {
font-weight: 500;
font-weight: 500;
color: #1976d2
color: #1976d2
}
}
.tooltip-effect-7 .tooltip-content2 {
.tooltip-effect-7 .tooltip-content2 {
-webkit-transform: translate3d(0, 10px, 0);
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-7 .tooltip-content2 i {
.tooltip-effect-7 .tooltip-content2 i {
-webkit-transform: translate3d(0, 15px, 0);
-webkit-transform: translate3d(0, 15px, 0);
transform: translate3d(0, 15px, 0);
transform: translate3d(0, 15px, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-8 .tooltip-content2 {
.tooltip-effect-8 .tooltip-content2 {
-webkit-transform: translate3d(0, 10px, 0) rotate3d(0, 1, 0, 90deg);
-webkit-transform: translate3d(0, 10px, 0) rotate3d(0, 1, 0, 90deg);
transform: translate3d(0, 10px, 0) rotate3d(0, 1, 0, 90deg);
transform: translate3d(0, 10px, 0) rotate3d(0, 1, 0, 90deg);
-webkit-transform-origin: 50% 100%;
-webkit-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
-ms-transform-origin: 50% 100%;
transform-origin: 50% 100%;
transform-origin: 50% 100%;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-8 .tooltip-content2 i {
.tooltip-effect-8 .tooltip-content2 i {
-webkit-transform: scale3d(0, 0, 1);
-webkit-transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
transform: scale3d(0, 0, 1);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-9 .tooltip-content2 {
.tooltip-effect-9 .tooltip-content2 {
-webkit-transform: translate3d(0, -20px, 0);
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.tooltip-effect-9 .tooltip-content2 i {
.tooltip-effect-9 .tooltip-content2 i {
-webkit-transform: translate3d(0, 20px, 0);
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
transition: opacity 0.3s, -webkit-transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
-o-transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s;
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s
}
}
.error-box {
.error-box {
height: 100%;
height: 100%;
position: fixed;
position: fixed;
background: url(../../assets/images/background/error-bg.jpg) no-repeat center center #fff;
background: url(../../assets/images/background/error-bg.jpg) no-repeat center center #fff;
width: 100%
width: 100%
}
}
.error-box .footer {
.error-box .footer {
width: 100%;
width: 100%;
left: 0px;
left: 0px;
right: 0px
right: 0px
}
}
.error-body {
.error-body {
padding-top: 5%
padding-top: 5%
}
}
.error-body h1 {
.error-body h1 {
font-size: 210px;
font-size: 210px;
font-weight: 900;
font-weight: 900;
line-height: 210px
line-height: 210px
}
}
.gmaps, .gmaps-panaroma {
.gmaps, .gmaps-panaroma {
height: 300px
height: 300px
}
}
.gmaps, .gmaps-panaroma {
.gmaps, .gmaps-panaroma {
height: 300px;
height: 300px;
background: #f2f4f8;
background: #f2f4f8;
border-radius: 3px
border-radius: 3px
}
}
.gmaps-overlay {
.gmaps-overlay {
display: block;
display: block;
text-align: center;
text-align: center;
color: #ffffff;
color: #ffffff;
font-size: 16px;
font-size: 16px;
line-height: 40px;
line-height: 40px;
background: #5c4ac7;
background: #5c4ac7;
border-radius: 4px;
border-radius: 4px;
padding: 10px 20px
padding: 10px 20px
}
}
.gmaps-overlay_arrow {
.gmaps-overlay_arrow {
left: 50%;
left: 50%;
margin-left: -16px;
margin-left: -16px;
width: 0;
width: 0;
height: 0;
height: 0;
position: absolute
position: absolute
}
}
.gmaps-overlay_arrow.above {
.gmaps-overlay_arrow.above {
bottom: -15px;
bottom: -15px;
border-left: 16px solid transparent;
border-left: 16px solid transparent;
border-right: 16px solid transparent;
border-right: 16px solid transparent;
border-top: 16px solid #5c4ac7
border-top: 16px solid #5c4ac7
}
}
.gmaps-overlay_arrow.below {
.gmaps-overlay_arrow.below {
top: -15px;
top: -15px;
border-left: 16px solid transparent;
border-left: 16px solid transparent;
border-right: 16px solid transparent;
border-right: 16px solid transparent;
border-bottom: 16px solid #5c4ac7
border-bottom: 16px solid #5c4ac7
}
}
.jvectormap-zoomin, .jvectormap-zoomout {
.jvectormap-zoomin, .jvectormap-zoomout {
width: 10px;
width: 10px;
height: 10px;
height: 10px;
line-height: 10px
line-height: 10px
}
}
.jvectormap-zoomout {
.jvectormap-zoomout {
top: 40px
top: 40px
}
}
.search-listing {
.search-listing {
padding: 0px;
padding: 0px;
margin: 0px
margin: 0px
}
}
.search-listing li {
.search-listing li {
list-style: none;
list-style: none;
padding: 15px 0;
padding: 15px 0;
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}
}
.search-listing li h3 {
.search-listing li h3 {
margin: 0px;
margin: 0px;
font-size: 18px
font-size: 18px
}
}
.search-listing li h3 a {
.search-listing li h3 a {
color: #1976d2
color: #1976d2
}
}
.search-listing li h3 a:hover {
.search-listing li h3 a:hover {
text-decoration: underline
text-decoration: underline
}
}
.search-listing li a {
.search-listing li a {
color: #26dad2
color: #26dad2
}
}
.login-register {
.login-register {
background-size: cover;
background-size: cover;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center center;
background-position: center center;
height: 100%;
height: 100%;
width: 100%;
width: 100%;
padding: 5% 0;
padding: 5% 0;
position: fixed
position: fixed
}
}
.login-box {
.login-box {
width: 400px;
width: 400px;
margin: 0 auto
margin: 0 auto
}
}
.login-box .footer {
.login-box .footer {
width: 100%;
width: 100%;
left: 0px;
left: 0px;
right: 0px
right: 0px
}
}
.login-box .social {
.login-box .social {
display: block;
display: block;
margin-bottom: 30px
margin-bottom: 30px
}
}
#recoverform {
#recoverform {
display: none
display: none
}
}
.login-sidebar {
.login-sidebar {
padding: 0px;
padding: 0px;
margin-top: 0px
margin-top: 0px
}
}
.login-sidebar .login-box {
.login-sidebar .login-box {
right: 0px;
right: 0px;
position: absolute;
position: absolute;
height: 100%
height: 100%
}
}
.minimal-faq .card {
.minimal-faq .card {
border: 0px
border: 0px
}
}
.minimal-faq .card .card-header {
.minimal-faq .card .card-header {
background: #ffffff;
background: #ffffff;
padding: 20px 0;
padding: 20px 0;
margin-top: 10px
margin-top: 10px
}
}
.minimal-faq .card .card-body {
.minimal-faq .card .card-body {
padding: 15px 0px
padding: 15px 0px
}
}
.pricing-box {
.pricing-box {
position: relative;
position: relative;
text-align: center;
text-align: center;
margin-top: 30px
margin-top: 30px
}
}
.featured-plan {
.featured-plan {
margin-top: 0px
margin-top: 0px
}
}
.featured-plan .pricing-body {
.featured-plan .pricing-body {
padding: 60px 0;
padding: 60px 0;
background: #ebf3f5;
background: #ebf3f5;
border: 1px solid #ddd
border: 1px solid #ddd
}
}
.featured-plan .price-table-content .price-row {
.featured-plan .price-table-content .price-row {
border-top: 1px solid rgba(120, 130, 140, 0.13)
border-top: 1px solid rgba(120, 130, 140, 0.13)
}
}
.pricing-body {
.pricing-body {
border-radius: 0px;
border-radius: 0px;
border-top: 1px solid rgba(120, 130, 140, 0.13);
border-top: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 5px solid rgba(120, 130, 140, 0.13);
border-bottom: 5px solid rgba(120, 130, 140, 0.13);
vertical-align: middle;
vertical-align: middle;
padding: 30px 0;
padding: 30px 0;
position: relative
position: relative
}
}
.pricing-body h2 {
.pricing-body h2 {
position: relative;
position: relative;
font-size: 56px;
font-size: 56px;
margin: 20px 0 10px;
margin: 20px 0 10px;
font-weight: 500
font-weight: 500
}
}
.pricing-body h2 span {
.pricing-body h2 span {
position: absolute;
position: absolute;
font-size: 15px;
font-size: 15px;
top: -10px;
top: -10px;
margin-left: -10px
margin-left: -10px
}
}
.price-table-content .price-row {
.price-table-content .price-row {
padding: 20px 0;
padding: 20px 0;
border-top: 1px solid rgba(120, 130, 140, 0.13)
border-top: 1px solid rgba(120, 130, 140, 0.13)
}
}
.pricing-plan {
.pricing-plan {
padding: 0 15px
padding: 0 15px
}
}
.pricing-plan .no-padding {
.pricing-plan .no-padding {
padding: 0px
padding: 0px
}
}
.price-lable {
.price-lable {
position: absolute;
position: absolute;
top: -10px;
top: -10px;
padding: 5px 10px;
padding: 5px 10px;
margin: 0 auto;
margin: 0 auto;
display: inline-block;
display: inline-block;
width: 100px;
width: 100px;
left: 0px;
left: 0px;
right: 0px
right: 0px
}
}
.chat-main-box {
.chat-main-box {
position: relative;
position: relative;
overflow: hidden
overflow: hidden
}
}
.chat-main-box .chat-left-aside {
.chat-main-box .chat-left-aside {
position: relative;
position: relative;
width: 250px;
width: 250px;
float: left;
float: left;
z-index: 9;
z-index: 9;
top: 0px;
top: 0px;
border-right: 1px solid rgba(120, 130, 140, 0.13)
border-right: 1px solid rgba(120, 130, 140, 0.13)
}
}
.chat-main-box .chat-left-aside .open-panel {
.chat-main-box .chat-left-aside .open-panel {
display: none;
display: none;
cursor: pointer;
cursor: pointer;
position: absolute;
position: absolute;
left: -webkit-calc(100% - 1px);
left: -webkit-calc(100% - 1px);
top: 50%;
top: 50%;
z-index: 100;
z-index: 100;
background-color: #fff;
background-color: #fff;
-webkit-box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
box-shadow: 1px 0 3px rgba(0, 0, 0, 0.2);
border-radius: 0 100px 100px 0;
border-radius: 0 100px 100px 0;
line-height: 1;
line-height: 1;
padding: 15px 8px 15px 4px
padding: 15px 8px 15px 4px
}
}
.chat-main-box .chat-left-aside .chat-left-inner {
.chat-main-box .chat-left-aside .chat-left-inner {
position: relative
position: relative
}
}
.chat-main-box .chat-left-aside .chat-left-inner .form-control {
.chat-main-box .chat-left-aside .chat-left-inner .form-control {
height: 60px;
height: 60px;
padding: 15px;
padding: 15px;
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(rgba(120, 130, 140, 0.13)), to(rgba(120, 130, 140, 0.13)));
background-image: -webkit-gradient(linear, left top, left bottom, from(#1976d2), to(#1976d2)), -webkit-gradient(linear, left top, left bottom, from(rgba(120, 130, 140, 0.13)), to(rgba(120, 130, 140, 0.13)));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: -webkit-linear-gradient(#1976d2, #1976d2), -webkit-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: -o-linear-gradient(#1976d2, #1976d2), -o-linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13));
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13))
background-image: linear-gradient(#1976d2, #1976d2), linear-gradient(rgba(120, 130, 140, 0.13), rgba(120, 130, 140, 0.13))
}
}
.chat-main-box .chat-left-aside .chat-left-inner .style-none {
.chat-main-box .chat-left-aside .chat-left-inner .style-none {
padding: 0px
padding: 0px
}
}
.chat-main-box .chat-left-aside .chat-left-inner .style-none li {
.chat-main-box .chat-left-aside .chat-left-inner .style-none li {
list-style: none;
list-style: none;
overflow: hidden
overflow: hidden
}
}
.chat-main-box .chat-left-aside .chat-left-inner .style-none li a {
.chat-main-box .chat-left-aside .chat-left-inner .style-none li a {
padding: 20px
padding: 20px
}
}
.chat-main-box .chat-left-aside .chat-left-inner .style-none li a.active, .chat-main-box .chat-left-aside .chat-left-inner .style-none li a:hover {
.chat-main-box .chat-left-aside .chat-left-inner .style-none li a.active, .chat-main-box .chat-left-aside .chat-left-inner .style-none li a:hover {
background: #ebf3f5
background: #ebf3f5
}
}
.chat-main-box .chat-right-aside {
.chat-main-box .chat-right-aside {
width: calc(100% - 250px);
width: calc(100% - 250px);
float: left
float: left
}
}
.chat-main-box .chat-right-aside .chat-list {
.chat-main-box .chat-right-aside .chat-list {
max-height: none;
max-height: none;
height: 100%;
height: 100%;
padding-top: 40px
padding-top: 40px
}
}
.chat-main-box .chat-right-aside .chat-list .chat-text {
.chat-main-box .chat-right-aside .chat-list .chat-text {
border-radius: 6px
border-radius: 6px
}
}
.chat-main-box .chat-right-aside .send-chat-box {
.chat-main-box .chat-right-aside .send-chat-box {
position: relative
position: relative
}
}
.chat-main-box .chat-right-aside .send-chat-box .form-control {
.chat-main-box .chat-right-aside .send-chat-box .form-control {
border: none;
border: none;
border-top: 1px solid rgba(120, 130, 140, 0.13);
border-top: 1px solid rgba(120, 130, 140, 0.13);
resize: none;
resize: none;
height: 80px;
height: 80px;
padding-right: 180px
padding-right: 180px
}
}
.chat-main-box .chat-right-aside .send-chat-box .form-control:focus {
.chat-main-box .chat-right-aside .send-chat-box .form-control:focus {
border-color: rgba(120, 130, 140, 0.13)
border-color: rgba(120, 130, 140, 0.13)
}
}
.chat-main-box .chat-right-aside .send-chat-box .custom-send {
.chat-main-box .chat-right-aside .send-chat-box .custom-send {
position: absolute;
position: absolute;
right: 20px;
right: 20px;
bottom: 10px
bottom: 10px
}
}
.chat-main-box .chat-right-aside .send-chat-box .custom-send .cst-icon {
.chat-main-box .chat-right-aside .send-chat-box .custom-send .cst-icon {
color: #67757c;
color: #67757c;
margin-right: 10px
margin-right: 10px
}
}
.inbox-panel .list-group .list-group-item {
.inbox-panel .list-group .list-group-item {
border: 0px;
border: 0px;
border-radius: 0px;
border-radius: 0px;
border-left: 3px solid transparent
border-left: 3px solid transparent
}
}
.inbox-panel .list-group .list-group-item a {
.inbox-panel .list-group .list-group-item a {
color: #67757c
color: #67757c
}
}
.inbox-panel .list-group .list-group-item.active, .inbox-panel .list-group .list-group-item:hover {
.inbox-panel .list-group .list-group-item.active, .inbox-panel .list-group .list-group-item:hover {
background: #f2f4f8;
background: #f2f4f8;
border-left: 3px solid #1976d2
border-left: 3px solid #1976d2
}
}
.inbox-center .unread td {
.inbox-center .unread td {
font-weight: 400
font-weight: 400
}
}
.inbox-center td {
.inbox-center td {
vertical-align: middle;
vertical-align: middle;
white-space: nowrap
white-space: nowrap
}
}
.inbox-center a {
.inbox-center a {
color: #67757c;
color: #67757c;
padding: 2px 0 3px 0;
padding: 2px 0 3px 0;
overflow: hidden;
overflow: hidden;
vertical-align: middle;
vertical-align: middle;
-o-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
text-overflow: ellipsis;
white-space: nowrap;
white-space: nowrap;
display: inline-block
display: inline-block
}
}
.inbox-center .checkbox {
.inbox-center .checkbox {
margin-top: -13px;
margin-top: -13px;
height: 20px
height: 20px
}
}
.calendar-events {
.calendar-events {
padding: 8px 10px;
padding: 8px 10px;
border: 1px solid #ffffff;
border: 1px solid #ffffff;
cursor: move
cursor: move
}
}
.calendar-events:hover {
.calendar-events:hover {
border: 1px dashed rgba(120, 130, 140, 0.13)
border: 1px dashed rgba(120, 130, 140, 0.13)
}
}
.calendar-events i {
.calendar-events i {
margin-right: 8px
margin-right: 8px
}
}
.contact-page-aside {
.contact-page-aside {
position: relative
position: relative
}
}
.left-aside {
.left-aside {
position: absolute;
position: absolute;
border-right: 1px solid rgba(120, 130, 140, 0.13);
border-right: 1px solid rgba(120, 130, 140, 0.13);
padding: 20px;
padding: 20px;
width: 250px;
width: 250px;
height: 100%
height: 100%
}
}
.right-aside {
.right-aside {
padding: 20px;
padding: 20px;
margin-left: 250px
margin-left: 250px
}
}
.contact-list td {
.contact-list td {
vertical-align: middle;
vertical-align: middle;
padding: 25px 10px
padding: 25px 10px
}
}
.contact-list td img {
.contact-list td img {
width: 30px
width: 30px
}
}
.list-style-none {
.list-style-none {
margin: 0px;
margin: 0px;
padding: 0px
padding: 0px
}
}
.list-style-none li {
.list-style-none li {
list-style: none;
list-style: none;
margin: 0px
margin: 0px
}
}
.list-style-none li.box-label a {
.list-style-none li.box-label a {
font-weight: 500
font-weight: 500
}
}
.list-style-none li.divider {
.list-style-none li.divider {
margin: 10px 0;
margin: 10px 0;
height: 1px;
height: 1px;
background: rgba(120, 130, 140, 0.13)
background: rgba(120, 130, 140, 0.13)
}
}
.list-style-none li a {
.list-style-none li a {
padding: 15px 10px;
padding: 15px 10px;
display: block;
display: block;
color: #67757c
color: #67757c
}
}
.list-style-none li a:hover {
.list-style-none li a:hover {
color: #1976d2
color: #1976d2
}
}
.list-style-none li a span {
.list-style-none li a span {
float: right
float: right
}
}
.slimScrollBar {
.slimScrollBar {
z-index: 10!important
z-index: 10!important
}
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
display: block
display: block
}
}
.plugin-details {
.plugin-details {
display: none
display: none
}
}
.plugin-details-active {
.plugin-details-active {
display: block
display: block
}
}
.earning-box h6 {
.earning-box h6 {
font-weight: 500;
font-weight: 500;
margin-bottom: 0px;
margin-bottom: 0px;
white-space: nowrap
white-space: nowrap
}
}
.earning-box td, .earning-box th {
.earning-box td, .earning-box th {
vertical-align: middle
vertical-align: middle
}
}
.jsgrid-pager-current-page, .jsgrid-pager-nav-button a, .jsgrid-pager-page a {
.jsgrid-pager-current-page, .jsgrid-pager-nav-button a, .jsgrid-pager-page a {
-webkit-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
box-sizing: border-box;
display: inline-block;
display: inline-block;
min-width: 1.5em;
min-width: 1.5em;
padding: 0.5em 1em;
padding: 0.5em 1em;
text-align: center;
text-align: center;
text-decoration: none;
text-decoration: none;
cursor: pointer;
cursor: pointer;
color: #67757c;
color: #67757c;
border: 1px solid #ddd
border: 1px solid #ddd
}
}
.jsgrid-pager-nav-button a:hover, .jsgrid-pager-page a:hover {
.jsgrid-pager-nav-button a:hover, .jsgrid-pager-page a:hover {
background-color: #1976d2;
background-color: #1976d2;
color: #ffffff
color: #ffffff
}
}
.jsgrid-pager-current-page {
.jsgrid-pager-current-page {
background-color: #1976d2;
background-color: #1976d2;
color: #ffffff
color: #ffffff
}
}
.jsgrid-pager-nav-button, .jsgrid-pager-page {
.jsgrid-pager-nav-button, .jsgrid-pager-page {
padding: 0
padding: 0
}
}
.jsgrid-pager-page.jsgrid-pager-current-page {
.jsgrid-pager-page.jsgrid-pager-current-page {
padding: 0.5em 1em!important
padding: 0.5em 1em!important
}
}
.left-sidebar {
.left-sidebar {
position: absolute;
position: absolute;
width: 240px;
width: 240px;
height: 100%;
height: 100%;
top: 0px;
top: 0px;
z-index: 20;
z-index: 20;
padding-top: 60px;
padding-top: 60px;
background: #fff;
background: #fff;
-webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
-webkit-box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08);
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08)
box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.08)
}
}
.fix-sidebar .left-sidebar {
.fix-sidebar .left-sidebar {
position: fixed
position: fixed
}
}
.user-profile {
.user-profile {
position: relative;
position: relative;
background-size: cover
background-size: cover
}
}
.user-profile .setpos {
.user-profile .setpos {
top: -47px;
top: -47px;
right: -3px
right: -3px
}
}
.user-profile .profile-img {
.user-profile .profile-img {
width: 70px;
width: 70px;
margin: 0 auto;
margin: 0 auto;
padding: 10px 0 5px 0;
padding: 10px 0 5px 0;
border-radius: 100%
border-radius: 100%
}
}
.user-profile .profile-img img {
.user-profile .profile-img img {
width: 100%;
width: 100%;
padding: 5px;
padding: 5px;
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
border-radius: 100%
border-radius: 100%
}
}
.user-profile .profile-text {
.user-profile .profile-text {
padding: 5px 0px;
padding: 5px 0px;
position: relative;
position: relative;
text-align: center
text-align: center
}
}
.user-profile .profile-text>a {
.user-profile .profile-text>a {
color: #99abb4;
color: #99abb4;
padding: 0 5px
padding: 0 5px
}
}
.user-profile .profile-text>a:hover {
.user-profile .profile-text>a:hover {
color: #1976d2
color: #1976d2
}
}
.user-profile .profile-text>a:after {
.user-profile .profile-text>a:after {
display: none
display: none
}
}
.user-profile .dropdown-menu {
.user-profile .dropdown-menu {
left: 0px;
left: 0px;
right: 0px;
right: 0px;
top: 62px!important;
top: 62px!important;
width: 180px;
width: 180px;
margin: 0 auto
margin: 0 auto
}
}
.sidebar-footer {
.sidebar-footer {
position: fixed;
position: fixed;
z-index: 10;
z-index: 10;
bottom: 0px;
bottom: 0px;
left: 0px;
left: 0px;
-webkit-transition: 0.2s ease-out;
-webkit-transition: 0.2s ease-out;
-o-transition: 0.2s ease-out;
-o-transition: 0.2s ease-out;
transition: 0.2s ease-out;
transition: 0.2s ease-out;
width: 240px;
width: 240px;
background: #fff;
background: #fff;
border-top: 1px solid rgba(120, 130, 140, 0.13)
border-top: 1px solid rgba(120, 130, 140, 0.13)
}
}
.sidebar-footer a {
.sidebar-footer a {
padding: 15px;
padding: 15px;
width: 33.333337%;
width: 33.333337%;
float: left;
float: left;
text-align: center;
text-align: center;
font-size: 18px
font-size: 18px
}
}
.scroll-sidebar {
.scroll-sidebar {
padding-bottom: 60px
padding-bottom: 60px
}
}
.collapse.in {
.collapse.in {
display: block
display: block
}
}
.sidebar-nav {
.sidebar-nav {
background: #fff;
background: #fff;
padding: 0px
padding: 0px
}
}
.sidebar-nav ul {
.sidebar-nav ul {
margin: 0px;
margin: 0px;
padding: 0px
padding: 0px
}
}
.sidebar-nav ul li {
.sidebar-nav ul li {
list-style: none
list-style: none
}
}
.sidebar-nav ul li a {
.sidebar-nav ul li a {
color: #607d8b;
color: #607d8b;
padding: 8px 35px 8px 15px;
padding: 8px 35px 8px 15px;
display: block;
display: block;
font-size: 14px
font-size: 14px
}
}
.sidebar-nav ul li a.active, .sidebar-nav ul li a:hover {
.sidebar-nav ul li a.active, .sidebar-nav ul li a:hover {
color: #1976d2
color: #1976d2
}
}
.sidebar-nav ul li a.active i, .sidebar-nav ul li a:hover i {
.sidebar-nav ul li a.active i, .sidebar-nav ul li a:hover i {
color: #1976d2
color: #1976d2
}
}
.sidebar-nav ul li a.active {
.sidebar-nav ul li a.active {
font-weight: 500;
font-weight: 500;
color: #263238
color: #263238
}
}
.sidebar-nav ul li ul {
.sidebar-nav ul li ul {
padding-left: 28px
padding-left: 28px
}
}
.sidebar-nav ul li ul li a {
.sidebar-nav ul li ul li a {
padding: 7px 35px 7px 15px
padding: 7px 35px 7px 15px
}
}
.sidebar-nav ul li ul ul {
.sidebar-nav ul li ul ul {
padding-left: 15px
padding-left: 15px
}
}
.sidebar-nav ul li.nav-small-cap {
.sidebar-nav ul li.nav-small-cap {
font-size: 12px;
font-size: 12px;
margin-bottom: 0px;
margin-bottom: 0px;
padding: 14px 14px 14px 20px;
padding: 14px 14px 14px 20px;
color: #263238;
color: #263238;
font-weight: 500
font-weight: 500
}
}
.sidebar-nav ul li.nav-devider {
.sidebar-nav ul li.nav-devider {
height: 1px;
height: 1px;
background: rgba(120, 130, 140, 0.13);
background: rgba(120, 130, 140, 0.13);
display: block;
display: block;
margin: 20px 0
margin: 20px 0
}
}
.sidebar-nav>ul>li>a {
.sidebar-nav>ul>li>a {
border-left: 3px solid transparent
border-left: 3px solid transparent
}
}
.sidebar-nav>ul>li>a i {
.sidebar-nav>ul>li>a i {
width: 27px;
width: 27px;
font-size: 19px;
font-size: 19px;
display: inline-block;
display: inline-block;
vertical-align: middle;
vertical-align: middle;
color: #99abb4
color: #99abb4
}
}
.sidebar-nav>ul>li>a .label {
.sidebar-nav>ul>li>a .label {
float: right;
float: right;
margin-top: 6px
margin-top: 6px
}
}
.sidebar-nav>ul>li>a.active {
.sidebar-nav>ul>li>a.active {
font-weight: 400;
font-weight: 400;
background: #242933;
background: #242933;
color: #26c6da
color: #26c6da
}
}
.sidebar-nav>ul>li {
.sidebar-nav>ul>li {
margin-bottom: 5px
margin-bottom: 5px
}
}
.sidebar-nav>ul>li.active>a {
.sidebar-nav>ul>li.active>a {
color: #1976d2;
color: #1976d2;
font-weight: 500;
font-weight: 500;
border-left: 3px solid #1976d2
border-left: 3px solid #1976d2
}
}
.sidebar-nav>ul>li.active>a i {
.sidebar-nav>ul>li.active>a i {
color: #1976d2
color: #1976d2
}
}
.sidebar-nav .has-arrow {
.sidebar-nav .has-arrow {
position: relative
position: relative
}
}
.sidebar-nav .has-arrow:after {
.sidebar-nav .has-arrow:after {
position: absolute;
position: absolute;
content: '';
content: '';
width: 7px;
width: 7px;
height: 7px;
height: 7px;
border-width: 1px 0 0 1px;
border-width: 1px 0 0 1px;
border-style: solid;
border-style: solid;
border-color: #607d8b;
border-color: #607d8b;
right: 1em;
right: 1em;
-webkit-transform: rotate(135deg) translate(0, -50%);
-webkit-transform: rotate(135deg) translate(0, -50%);
-ms-transform: rotate(135deg) translate(0, -50%);
-ms-transform: rotate(135deg) translate(0, -50%);
-o-transform: rotate(135deg) translate(0, -50%);
-o-transform: rotate(135deg) translate(0, -50%);
transform: rotate(135deg) translate(0, -50%);
transform: rotate(135deg) translate(0, -50%);
-webkit-transform-origin: top;
-webkit-transform-origin: top;
-ms-transform-origin: top;
-ms-transform-origin: top;
-o-transform-origin: top;
-o-transform-origin: top;
transform-origin: top;
transform-origin: top;
top: 47%;
top: 47%;
-webkit-transition: all .3s ease-out;
-webkit-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out
transition: all .3s ease-out
}
}
.sidebar-nav .active>.has-arrow:after, .sidebar-nav .has-arrow[aria-expanded=true]:after, .sidebar-nav li>.has-arrow.active:after {
.sidebar-nav .active>.has-arrow:after, .sidebar-nav .has-arrow[aria-expanded=true]:after, .sidebar-nav li>.has-arrow.active:after {
-webkit-transform: rotate(-135deg) translate(0, -50%);
-webkit-transform: rotate(-135deg) translate(0, -50%);
-ms-transform: rotate(-135deg) translate(0, -50%);
-ms-transform: rotate(-135deg) translate(0, -50%);
-o-transform: rotate(-135deg) translate(0, -50%);
-o-transform: rotate(-135deg) translate(0, -50%);
top: 45%;
top: 45%;
width: 7px;
width: 7px;
transform: rotate(-135deg) translate(0, -50%)
transform: rotate(-135deg) translate(0, -50%)
}
}
@media (min-width:768px) {
@media (min-width:768px) {
.mini-sidebar .sidebar-nav #sidebarnav li {
.mini-sidebar .sidebar-nav #sidebarnav li {
position: relative
position: relative
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li>ul {
.mini-sidebar .sidebar-nav #sidebarnav>li>ul {
position: absolute;
position: absolute;
left: 60px;
left: 60px;
top: 45px;
top: 45px;
width: 200px;
width: 200px;
z-index: 1001;
z-index: 1001;
background: #f2f6f8;
background: #f2f6f8;
display: none;
display: none;
padding-left: 1px
padding-left: 1px
}
}
.mini-sidebar .user-profile .profile-img {
.mini-sidebar .user-profile .profile-img {
width: 50px
width: 50px
}
}
.mini-sidebar .user-profile .profile-img .setpos {
.mini-sidebar .user-profile .profile-img .setpos {
top: -35px
top: -35px
}
}
.mini-sidebar.fix-sidebar .left-sidebar {
.mini-sidebar.fix-sidebar .left-sidebar {
position: absolute
position: absolute
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>ul {
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>ul {
height: auto!important;
height: auto!important;
overflow: auto
overflow: auto
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>ul, .mini-sidebar .sidebar-nav #sidebarnav>li:hover>ul.collapse {
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>ul, .mini-sidebar .sidebar-nav #sidebarnav>li:hover>ul.collapse {
display: block
display: block
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li>a.has-arrow:after {
.mini-sidebar .sidebar-nav #sidebarnav>li>a.has-arrow:after {
display: none
display: none
}
}
.mini-sidebar .left-sidebar {
.mini-sidebar .left-sidebar {
width: 60px
width: 60px
}
}
.mini-sidebar .user-profile {
.mini-sidebar .user-profile {
padding-bottom: 15px;
padding-bottom: 15px;
width: 60px;
width: 60px;
margin-bottom: 7px
margin-bottom: 7px
}
}
.mini-sidebar .user-profile .profile-img {
.mini-sidebar .user-profile .profile-img {
padding: 15px 0 0 0;
padding: 15px 0 0 0;
margin: 0px 0 0 6px
margin: 0px 0 0 6px
}
}
.mini-sidebar .user-profile .profile-img:before {
.mini-sidebar .user-profile .profile-img:before {
top: 15px
top: 15px
}
}
.mini-sidebar .scroll-sidebar {
.mini-sidebar .scroll-sidebar {
padding-bottom: 0px;
padding-bottom: 0px;
position: absolute;
position: absolute;
overflow-x: hidden!important
overflow-x: hidden!important
}
}
.mini-sidebar .hide-menu, .mini-sidebar .nav-small-cap, .mini-sidebar .sidebar-footer, .mini-sidebar .user-profile .profile-text, .mini-sidebar>.label {
.mini-sidebar .hide-menu, .mini-sidebar .nav-small-cap, .mini-sidebar .sidebar-footer, .mini-sidebar .user-profile .profile-text, .mini-sidebar>.label {
display: none
display: none
}
}
.mini-sidebar .nav-devider {
.mini-sidebar .nav-devider {
width: 60px
width: 60px
}
}
.mini-sidebar .sidebar-nav {
.mini-sidebar .sidebar-nav {
background: transparent
background: transparent
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li>a {
.mini-sidebar .sidebar-nav #sidebarnav>li>a {
padding: 9px 18px;
padding: 9px 18px;
width: 50px
width: 50px
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>a {
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>a {
width: 260px;
width: 260px;
background: #f2f6f8
background: #f2f6f8
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>a .hide-menu {
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>a .hide-menu {
display: inline
display: inline
}
}
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>a .label {
.mini-sidebar .sidebar-nav #sidebarnav>li:hover>a .label {
display: none
display: none
}
}
}
}
@media (max-width:767px) {
@media (max-width:767px) {
.mini-sidebar .left-sidebar {
.mini-sidebar .left-sidebar {
position: fixed
position: fixed
}
}
.mini-sidebar .left-sidebar, .mini-sidebar .sidebar-footer {
.mini-sidebar .left-sidebar, .mini-sidebar .sidebar-footer {
left: -240px
left: -240px
}
}
.mini-sidebar.show-sidebar .left-sidebar, .mini-sidebar.show-sidebar .sidebar-footer {
.mini-sidebar.show-sidebar .left-sidebar, .mini-sidebar.show-sidebar .sidebar-footer {
left: 0px
left: 0px
}
}
}
}
.topbar .top-navbar .mailbox {
.topbar .top-navbar .mailbox {
width: 300px
width: 300px
}
}
.topbar .top-navbar .mailbox ul {
.topbar .top-navbar .mailbox ul {
padding: 0px
padding: 0px
}
}
.topbar .top-navbar .mailbox ul li {
.topbar .top-navbar .mailbox ul li {
list-style: none
list-style: none
}
}
.mailbox ul li .drop-title {
.mailbox ul li .drop-title {
font-weight: 500;
font-weight: 500;
padding: 11px 20px 15px;
padding: 11px 20px 15px;
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}
}
.mailbox ul li .nav-link {
.mailbox ul li .nav-link {
border-top: 1px solid rgba(120, 130, 140, 0.13);
border-top: 1px solid rgba(120, 130, 140, 0.13);
padding-top: 15px
padding-top: 15px
}
}
.mailbox .message-center {
.mailbox .message-center {
height: 200px;
height: 200px;
overflow: auto;
overflow: auto;
position: relative
position: relative
}
}
.mailbox .message-center a {
.mailbox .message-center a {
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
display: block;
display: block;
text-decoration: none;
text-decoration: none;
padding: 9px 15px
padding: 9px 15px
}
}
.mailbox .message-center a:hover {
.mailbox .message-center a:hover {
background: #f2f4f8
background: #f2f4f8
}
}
.mailbox .message-center a div {
.mailbox .message-center a div {
white-space: normal
white-space: normal
}
}
.mailbox .message-center a .user-img {
.mailbox .message-center a .user-img {
width: 40px;
width: 40px;
position: relative;
position: relative;
display: inline-block;
display: inline-block;
margin: 0 10px 15px 0
margin: 0 10px 15px 0
}
}
.mailbox .message-center a .user-img img {
.mailbox .message-center a .user-img img {
width: 100%
width: 100%
}
}
.mailbox .message-center a .user-img .profile-status {
.mailbox .message-center a .user-img .profile-status {
border: 2px solid #ffffff;
border: 2px solid #ffffff;
border-radius: 50%;
border-radius: 50%;
display: inline-block;
display: inline-block;
height: 10px;
height: 10px;
left: 30px;
left: 30px;
position: absolute;
position: absolute;
top: 1px;
top: 1px;
width: 10px
width: 10px
}
}
.mailbox .message-center a .user-img .online {
.mailbox .message-center a .user-img .online {
background: #26dad2
background: #26dad2
}
}
.mailbox .message-center a .user-img .busy {
.mailbox .message-center a .user-img .busy {
background: #ef5350
background: #ef5350
}
}
.mailbox .message-center a .user-img .away {
.mailbox .message-center a .user-img .away {
background: #ffb22b
background: #ffb22b
}
}
.mailbox .message-center a .user-img .offline {
.mailbox .message-center a .user-img .offline {
background: #ffb22b
background: #ffb22b
}
}
.mailbox .message-center a .mail-contnet {
.mailbox .message-center a .mail-contnet {
display: inline-block;
display: inline-block;
width: 75%;
width: 75%;
vertical-align: middle
vertical-align: middle
}
}
.mailbox .message-center a .mail-contnet h5 {
.mailbox .message-center a .mail-contnet h5 {
margin: 5px 0px 0
margin: 5px 0px 0
}
}
.mailbox .message-center a .mail-contnet .mail-desc, .mailbox .message-center a .mail-contnet .time {
.mailbox .message-center a .mail-contnet .mail-desc, .mailbox .message-center a .mail-contnet .time {
font-size: 12px;
font-size: 12px;
display: block;
display: block;
margin: 1px 0;
margin: 1px 0;
-o-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
overflow: hidden;
color: #67757c;
color: #67757c;
white-space: nowrap
white-space: nowrap
}
}
.analytics-info li span {
.analytics-info li span {
font-size: 24px;
font-size: 24px;
vertical-align: middle
vertical-align: middle
}
}
.stats-row {
.stats-row {
margin-bottom: 20px
margin-bottom: 20px
}
}
.stats-row .stat-item {
.stats-row .stat-item {
display: inline-block;
display: inline-block;
padding-right: 15px
padding-right: 15px
}
}
.stats-row .stat-item+.stat-item {
.stats-row .stat-item+.stat-item {
padding-left: 15px;
padding-left: 15px;
border-left: 1px solid rgba(120, 130, 140, 0.13)
border-left: 1px solid rgba(120, 130, 140, 0.13)
}
}
.city-weather-days {
.city-weather-days {
margin: 0px
margin: 0px
}
}
.city-weather-days li {
.city-weather-days li {
text-align: center;
text-align: center;
padding: 15px 0
padding: 15px 0
}
}
.city-weather-days li span {
.city-weather-days li span {
display: block;
display: block;
padding: 10px 0 0;
padding: 10px 0 0;
color: #99abb4
color: #99abb4
}
}
.city-weather-days li i {
.city-weather-days li i {
display: block;
display: block;
font-size: 20px;
font-size: 20px;
color: #1976d2
color: #1976d2
}
}
.city-weather-days li h3 {
.city-weather-days li h3 {
font-weight: 300;
font-weight: 300;
margin-top: 5px
margin-top: 5px
}
}
.comment-widgets {
.comment-widgets {
position: relative;
position: relative;
margin-bottom: 10px
margin-bottom: 10px
}
}
.comment-widgets .comment-row {
.comment-widgets .comment-row {
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
padding: 15px
padding: 15px
}
}
.comment-widgets .comment-row:last-child {
.comment-widgets .comment-row:last-child {
border-bottom: 0px
border-bottom: 0px
}
}
.comment-widgets .comment-row.active, .comment-widgets .comment-row:hover {
.comment-widgets .comment-row.active, .comment-widgets .comment-row:hover {
background: rgba(0, 0, 0, 0.02)
background: rgba(0, 0, 0, 0.02)
}
}
.comment-text {
.comment-text {
padding: 15px 15px 15px 20px;
padding: 15px 15px 15px 20px;
width: 80%
width: 80%
}
}
.comment-text.active .comment-footer .action-icons, .comment-text:hover .comment-footer .action-icons {
.comment-text.active .comment-footer .action-icons, .comment-text:hover .comment-footer .action-icons {
visibility: visible
visibility: visible
}
}
.comment-text p {
.comment-text p {
max-height: 50px;
max-height: 50px;
width: 100%;
width: 100%;
overflow: hidden
overflow: hidden
}
}
.comment-footer .action-icons {
.comment-footer .action-icons {
visibility: hidden
visibility: hidden
}
}
.comment-footer .action-icons a {
.comment-footer .action-icons a {
padding-left: 7px;
padding-left: 7px;
vertical-align: middle;
vertical-align: middle;
color: #99abb4
color: #99abb4
}
}
.comment-footer .action-icons a.active, .comment-footer .action-icons a:hover {
.comment-footer .action-icons a.active, .comment-footer .action-icons a:hover {
color: #1976d2
color: #1976d2
}
}
.todo-list li {
.todo-list li {
border: 0px;
border: 0px;
margin-bottom: 0px;
margin-bottom: 0px;
padding: 20px 15px 15px 0px
padding: 20px 15px 15px 0px
}
}
.todo-list li .checkbox {
.todo-list li .checkbox {
width: 100%
width: 100%
}
}
.todo-list li .checkbox label {
.todo-list li .checkbox label {
font-weight: 400;
font-weight: 400;
color: #455a64
color: #455a64
}
}
.todo-list li:last-child {
.todo-list li:last-child {
border-bottom: 0px
border-bottom: 0px
}
}
.todo-list li .assignedto {
.todo-list li .assignedto {
padding: 0px 0 0 27px;
padding: 0px 0 0 27px;
margin: 0px
margin: 0px
}
}
.todo-list li .assignedto li {
.todo-list li .assignedto li {
list-style: none;
list-style: none;
padding: 0px;
padding: 0px;
display: inline-block;
display: inline-block;
border: 0px;
border: 0px;
margin-right: 2px
margin-right: 2px
}
}
.todo-list li .assignedto li img {
.todo-list li .assignedto li img {
width: 30px;
width: 30px;
border-radius: 100%
border-radius: 100%
}
}
.todo-list li .item-date {
.todo-list li .item-date {
padding-left: 25px;
padding-left: 25px;
font-size: 12px;
font-size: 12px;
display: inline-block
display: inline-block
}
}
.list-task .task-done span {
.list-task .task-done span {
text-decoration: line-through
text-decoration: line-through
}
}
.chat-list {
.chat-list {
margin: 0px;
margin: 0px;
padding: 0px
padding: 0px
}
}
.chat-list li {
.chat-list li {
list-style: none;
list-style: none;
margin-top: 30px
margin-top: 30px
}
}
.chat-list li .chat-img {
.chat-list li .chat-img {
display: inline-block;
display: inline-block;
width: 45px;
width: 45px;
vertical-align: top
vertical-align: top
}
}
.chat-list li .chat-img img {
.chat-list li .chat-img img {
width: 45px;
width: 45px;
border-radius: 100%
border-radius: 100%
}
}
.chat-list li .chat-content {
.chat-list li .chat-content {
width: calc(100% - 140px);
width: calc(100% - 140px);
display: inline-block;
display: inline-block;
padding-left: 15px
padding-left: 15px
}
}
.chat-list li .chat-content h5 {
.chat-list li .chat-content h5 {
color: #263238
color: #263238
}
}
.chat-list li .chat-content .box {
.chat-list li .chat-content .box {
display: inline-block;
display: inline-block;
margin-bottom: 10px;
margin-bottom: 10px;
position: relative
position: relative
}
}
.chat-list li .chat-content .box:after {
.chat-list li .chat-content .box:after {
right: 99%;
right: 99%;
top: 0;
top: 0;
border: solid transparent;
border: solid transparent;
content: " ";
content: " ";
height: 0;
height: 0;
width: 0;
width: 0;
position: absolute;
position: absolute;
pointer-events: none;
pointer-events: none;
border-top-color: #cfecfe;
border-top-color: #cfecfe;
border-width: 8px;
border-width: 8px;
margin-left: -1px;
margin-left: -1px;
border-right-color: #cfecfe
border-right-color: #cfecfe
}
}
.chat-list li .chat-time {
.chat-list li .chat-time {
display: block;
display: block;
text-align: right;
text-align: right;
width: 80px;
width: 80px;
margin-left: 28px;
margin-left: 28px;
font-size: 10px;
font-size: 10px;
color: #99abb4
color: #99abb4
}
}
.chat-list li.odd .chat-content {
.chat-list li.odd .chat-content {
text-align: right;
text-align: right;
width: calc(100% - 90px)
width: calc(100% - 90px)
}
}
.chat-list li.odd .box {
.chat-list li.odd .box {
clear: both
clear: both
}
}
.chat-list li.odd+.odd {
.chat-list li.odd+.odd {
margin-top: 0px
margin-top: 0px
}
}
.chat-list li.reverse {
.chat-list li.reverse {
text-align: right
text-align: right
}
}
.chat-list li.reverse .box:after {
.chat-list li.reverse .box:after {
left: 99%;
left: 99%;
right: auto;
right: auto;
border-right-color: transparent;
border-right-color: transparent;
border-left-color: #f6f6f6;
border-left-color: #f6f6f6;
border-top-color: #f6f6f6
border-top-color: #f6f6f6
}
}
.chat-list li.reverse .chat-time {
.chat-list li.reverse .chat-time {
text-align: right;
text-align: right;
margin-left: auto;
margin-left: auto;
margin-right: 65px
margin-right: 65px
}
}
.chat-list li.reverse .chat-content {
.chat-list li.reverse .chat-content {
padding-left: 0px;
padding-left: 0px;
padding-right: 15px
padding-right: 15px
}
}
.message-box ul li .drop-title {
.message-box ul li .drop-title {
font-weight: 500;
font-weight: 500;
padding: 11px 20px 15px;
padding: 11px 20px 15px;
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
border-bottom: 1px solid rgba(120, 130, 140, 0.13)
}
}
.message-box ul li .nav-link {
.message-box ul li .nav-link {
border-top: 1px solid rgba(120, 130, 140, 0.13);
border-top: 1px solid rgba(120, 130, 140, 0.13);
padding-top: 15px
padding-top: 15px
}
}
.message-box .message-widget {
.message-box .message-widget {
position: relative
position: relative
}
}
.message-box .message-widget a {
.message-box .message-widget a {
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
display: block;
display: block;
text-decoration: none;
text-decoration: none;
padding: 9px 15px
padding: 9px 15px
}
}
.message-box .message-widget a:hover {
.message-box .message-widget a:hover {
background: #f2f4f8
background: #f2f4f8
}
}
.message-box .message-widget a:last-child {
.message-box .message-widget a:last-child {
border-bottom: 0px
border-bottom: 0px
}
}
.message-box .message-widget a div {
.message-box .message-widget a div {
white-space: normal
white-space: normal
}
}
.message-box .message-widget a .user-img {
.message-box .message-widget a .user-img {
width: 45px;
width: 45px;
position: relative;
position: relative;
display: inline-block;
display: inline-block;
margin: 0 10px 15px 0
margin: 0 10px 15px 0
}
}
.message-box .message-widget a .user-img img {
.message-box .message-widget a .user-img img {
width: 100%
width: 100%
}
}
.message-box .message-widget a .user-img .profile-status {
.message-box .message-widget a .user-img .profile-status {
border: 2px solid #ffffff;
border: 2px solid #ffffff;
border-radius: 50%;
border-radius: 50%;
display: inline-block;
display: inline-block;
height: 10px;
height: 10px;
left: 33px;
left: 33px;
position: absolute;
position: absolute;
top: -1px;
top: -1px;
width: 10px
width: 10px
}
}
.message-box .message-widget a .user-img .online {
.message-box .message-widget a .user-img .online {
background: #26dad2
background: #26dad2
}
}
.message-box .message-widget a .user-img .busy {
.message-box .message-widget a .user-img .busy {
background: #ef5350
background: #ef5350
}
}
.message-box .message-widget a .user-img .away {
.message-box .message-widget a .user-img .away {
background: #ffb22b
background: #ffb22b
}
}
.message-box .message-widget a .user-img .offline {
.message-box .message-widget a .user-img .offline {
background: #ffb22b
background: #ffb22b
}
}
.message-box .message-widget a .mail-contnet {
.message-box .message-widget a .mail-contnet {
display: inline-block;
display: inline-block;
width: 73%;
width: 73%;
vertical-align: middle
vertical-align: middle
}
}
.message-box .message-widget a .mail-contnet h5 {
.message-box .message-widget a .mail-contnet h5 {
margin: 5px 0px 0
margin: 5px 0px 0
}
}
.message-box .message-widget a .mail-contnet .mail-desc, .message-box .message-widget a .mail-contnet .time {
.message-box .message-widget a .mail-contnet .mail-desc, .message-box .message-widget a .mail-contnet .time {
font-size: 12px;
font-size: 12px;
display: block;
display: block;
margin: 1px 0;
margin: 1px 0;
-o-text-overflow: ellipsis;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
text-overflow: ellipsis;
overflow: hidden;
overflow: hidden;
color: #67757c;
color: #67757c;
white-space: nowrap
white-space: nowrap
}
}
.calendar {
.calendar {
float: left;
float: left;
margin-bottom: 0px
margin-bottom: 0px
}
}
.fc-view {
.fc-view {
margin-top: 30px
margin-top: 30px
}
}
.none-border .modal-footer {
.none-border .modal-footer {
border-top: none
border-top: none
}
}
.fc-toolbar {
.fc-toolbar {
margin-bottom: 5px;
margin-bottom: 5px;
margin-top: 15px
margin-top: 15px
}
}
.fc-toolbar h2 {
.fc-toolbar h2 {
font-size: 18px;
font-size: 18px;
font-weight: 500;
font-weight: 500;
line-height: 30px;
line-height: 30px;
text-transform: uppercase
text-transform: uppercase
}
}
.fc-day {
.fc-day {
background: #ffffff
background: #ffffff
}
}
.fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active, .fc-toolbar .ui-state-hover, .fc-toolbar button:focus, .fc-toolbar button:hover {
.fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active, .fc-toolbar .ui-state-hover, .fc-toolbar button:focus, .fc-toolbar button:hover {
z-index: 0
z-index: 0
}
}
.fc-widget-header {
.fc-widget-header {
border: 0px!important
border: 0px!important
}
}
.fc-widget-content {
.fc-widget-content {
border-color: rgba(120, 130, 140, 0.13)!important
border-color: rgba(120, 130, 140, 0.13)!important
}
}
.fc th.fc-widget-header {
.fc th.fc-widget-header {
color: #67757c;
color: #67757c;
font-size: 13px;
font-size: 13px;
font-weight: 300;
font-weight: 300;
line-height: 20px;
line-height: 20px;
padding: 7px 0px;
padding: 7px 0px;
text-transform: uppercase
text-transform: uppercase
}
}
.fc th.fc-sat, .fc th.fc-sun, .fc th.fc-thu, .fc th.fc-tue {
.fc th.fc-sat, .fc th.fc-sun, .fc th.fc-thu, .fc th.fc-tue {
background: #f2f7f8
background: #f2f7f8
}
}
.fc th.fc-fri, .fc th.fc-mon, .fc th.fc-wed {
.fc th.fc-fri, .fc th.fc-mon, .fc th.fc-wed {
background: #f2f7f8
background: #f2f7f8
}
}
.fc-view {
.fc-view {
margin-top: 0px
margin-top: 0px
}
}
.fc-toolbar {
.fc-toolbar {
margin: 0px;
margin: 0px;
padding: 24px 0px
padding: 24px 0px
}
}
.fc-button {
.fc-button {
background: #ffffff;
background: #ffffff;
border: 1px solid rgba(120, 130, 140, 0.13);
border: 1px solid rgba(120, 130, 140, 0.13);
color: #67757c;
color: #67757c;
text-transform: capitalize
text-transform: capitalize
}
}
.fc-button:hover {
.fc-button:hover {
background: #f2f4f8;
background: #f2f4f8;
opacity: 0.8
opacity: 0.8
}
}
.fc-text-arrow {
.fc-text-arrow {
font-family: inherit;
font-family: inherit;
font-size: 16px
font-size: 16px
}
}
.fc-state-hover {
.fc-state-hover {
background: #F5F5F5
background: #F5F5F5
}
}
.fc-unthemed .fc-today {
.fc-unthemed .fc-today {
border: 1px solid #ef5350;
border: 1px solid #ef5350;
background: #f2f4f8!important
background: #f2f4f8!important
}
}
.fc-state-highlight {
.fc-state-highlight {
background: #f0f0f0
background: #f0f0f0
}
}
.fc-cell-overlay {
.fc-cell-overlay {
background: #f0f0f0
background: #f0f0f0
}
}
.fc-unthemed .fc-today {
.fc-unthemed .fc-today {
background: #ffffff
background: #ffffff
}
}
.fc-event {
.fc-event {
border-radius: 0px;
border-radius: 0px;
border: none;
border: none;
cursor: move;
cursor: move;
color: #ffffff!important;
color: #ffffff!important;
font-size: 13px;
font-size: 13px;
margin: 1px -1px 0 -1px;
margin: 1px -1px 0 -1px;
padding: 5px 5px;
padding: 5px 5px;
text-align: center;
text-align: center;
background: #1976d2
background: #1976d2
}
}
.calendar-event {
.calendar-event {
cursor: move;
cursor: move;
margin: 10px 5px 0 0;
margin: 10px 5px 0 0;
padding: 6px 10px;
padding: 6px 10px;
display: inline-block;
display: inline-block;
color: #ffffff;
color: #ffffff;
min-width: 140px;
min-width: 140px;
text-align: center;
text-align: center;
background: #1976d2
background: #1976d2
}
}
.calendar-event a {
.calendar-event a {
float: right;
float: right;
opacity: 0.6;
opacity: 0.6;
font-size: 10px;
font-size: 10px;
margin: 4px 0 0 10px;
margin: 4px 0 0 10px;
color: #ffffff
color: #ffffff
}
}
.fc-basic-view td.fc-week-number span {
.fc-basic-view td.fc-week-number span {
padding-right: 5px
padding-right: 5px
}
}
.fc-basic-view .fc-day-number {
.fc-basic-view .fc-day-number {
padding: 10px 15px;
padding: 10px 15px;
display: inline-block
display: inline-block
}
}
.steamline {
.steamline {
position: relative;
position: relative;
border-left: 1px solid rgba(120, 130, 140, 0.13);
border-left: 1px solid rgba(120, 130, 140, 0.13);
margin-left: 20px
margin-left: 20px
}
}
.steamline .sl-left {
.steamline .sl-left {
float: left;
float: left;
margin-left: -20px;
margin-left: -20px;
z-index: 1;
z-index: 1;
width: 40px;
width: 40px;
line-height: 40px;
line-height: 40px;
text-align: center;
text-align: center;
height: 40px;
height: 40px;
border-radius: 100%;
border-radius: 100%;
color: #ffffff;
color: #ffffff;
background: #263238;
background: #263238;
margin-right: 15px
margin-right: 15px
}
}
.steamline .sl-left img {
.steamline .sl-left img {
max-width: 40px
max-width: 40px
}
}
.steamline .sl-right {
.steamline .sl-right {
padding-left: 50px
padding-left: 50px
}
}
.steamline .sl-right .desc, .steamline .sl-right .inline-photos {
.steamline .sl-right .desc, .steamline .sl-right .inline-photos {
margin-bottom: 30px
margin-bottom: 30px
}
}
.steamline .sl-item {
.steamline .sl-item {
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
border-bottom: 1px solid rgba(120, 130, 140, 0.13);
margin: 20px 0
margin: 20px 0
}
}
.sl-date {
.sl-date {
font-size: 10px;
font-size: 10px;
color: #99abb4
color: #99abb4
}
}
.time-item {
.time-item {
border-color: rgba(120, 130, 140, 0.13);
border-color: rgba(120, 130, 140, 0.13);
padding-bottom: 1px;
padding-bottom: 1px;
position: relative
position: relative
}
}
.time-item:before {
.time-item:before {
content: " ";
content: " ";
display: table
display: table
}
}
.time-item:after {
.time-item:after {
background-color: #ffffff;
background-color: #ffffff;
border-color: rgba(120, 130, 140, 0.13);
border-color: rgba(120, 130, 140, 0.13);
border-radius: 10px;
border-radius: 10px;
border-style: solid;
border-style: solid;
border-width: 2px;
border-width: 2px;
bottom: 0;
bottom: 0;
content: '';
content: '';
height: 14px;
height: 14px;
left: 0;
left: 0;
margin-left: -8px;
margin-left: -8px;
position: absolute;
position: absolute;
top: 5px;
top: 5px;
width: 14px
width: 14px
}
}
.time-item-item:after {
.time-item-item:after {
content: " ";
content: " ";
display: table
display: table
}
}
.item-info {
.item-info {
margin-bottom: 15px;
margin-bottom: 15px;
margin-left: 15px
margin-left: 15px
}
}
.item-info p {
.item-info p {
margin-bottom: 10px!important
margin-bottom: 10px!important
}
}
.feeds {
.feeds {
margin: 0px;
margin: 0px;
padding: 0px
padding: 0px
}
}
.feeds li {
.feeds li {
list-style: none;
list-style: none;
padding: 10px;
padding: 10px;
display: block
display: block
}
}
.feeds li:hover {
.feeds li:hover {
background: #ebf3f5
background: #ebf3f5
}
}
.feeds li>div {
.feeds li>div {
width: 40px;
width: 40px;
height: 40px;
height: 40px;
margin-right: 5px;
margin-right: 5px;
display: inline-block;
display: inline-block;
text-align: center;
text-align: center;
vertical-align: middle;
vertical-align: middle;
border-radius: 100%
border-radius: 100%
}
}
.feeds li>div i {
.feeds li>div i {
line-height: 40px
line-height: 40px
}
}
.feeds li span {
.feeds li span {
float: right;
float: right;
width: auto;
width: auto;
font-size: 12px
font-size: 12px
}
}
.vert .carousel-item-next.carousel-item-left, .vert .carousel-item-prev.carousel-item-right {
.vert .carousel-item-next.carousel-item-left, .vert .carousel-item-prev.carousel-item-right {
-webkit-transform: translate3d(0, 0, 0);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
transform: translate3d(0, 0, 0)
}
}
.vert .active.carousel-item-right, .vert .carousel-item-next {
.vert .active.carousel-item-right, .vert .carousel-item-next {
-webkit-transform: translate3d(0, 100%, 0);
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100% 0)
transform: translate3d(0, 100% 0)
}
}
.vert .active.carousel-item-left, .vert .carousel-item-prev {
.vert .active.carousel-item-left, .vert .carousel-item-prev {
-webkit-transform: translate3d(0, -100%, 0);
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0)
transform: translate3d(0, -100%, 0)
}
}
.social-widget .soc-header {
.social-widget .soc-header {
padding: 15px;
padding: 15px;
text-align: center;
text-align: center;
font-size: 36px;
font-size: 36px;
color: #fff
color: #fff
}
}
.social-widget .soc-header.box-facebook {
.social-widget .soc-header.box-facebook {
background: #3b5998
background: #3b5998
}
}
.social-widget .soc-header.box-twitter {
.social-widget .soc-header.box-twitter {
background: #00aced
background: #00aced
}
}
.social-widget .soc-header.box-google {
.social-widget .soc-header.box-google {
background: #f86c6b
background: #f86c6b
}
}
.social-widget .soc-header.box-linkedin {
.social-widget .soc-header.box-linkedin {
background: #4875b4
background: #4875b4
}
}
.social-widget .soc-content {
.social-widget .soc-content {
display: -webkit-box;
display: -webkit-box;
display: -ms-flexbox;
display: -ms-flexbox;
display: flex;
display: flex;
text-align: center
text-align: center
}
}
.social-widget .soc-content div {
.social-widget .soc-content div {
padding: 10px
padding: 10px
}
}
.social-widget .soc-content div h3 {
.social-widget .soc-content div h3 {
margin-bottom: 0px
margin-bottom: 0px
}
}
.gaugejs-box {
.gaugejs-box {
position: relative;
position: relative;
margin: 0 auto
margin: 0 auto
}
}
.gaugejs-box canvas.gaugejs {
.gaugejs-box canvas.gaugejs {
width: 100%!important;
width: 100%!important;
height: auto!important
height: auto!important
}
}
.social-profile-first {
.social-profile-first {
text-align: center;
text-align: center;
padding-top: 22%;
padding-top: 22%;
margin-bottom: 96px
margin-bottom: 96px
}
}
.social-profile-first.bg-over {
.social-profile-first.bg-over {
background: rgba(56, 83, 161, 0.7)
background: rgba(56, 83, 161, 0.7)
}
}
.social-profile-first .middle {
.social-profile-first .middle {
vertical-align: middle
vertical-align: middle
}
}
.country-state {
.country-state {
list-style: none;
list-style: none;
margin: 0;
margin: 0;
padding: 0 0 0 10px
padding: 0 0 0 10px
}
}
.country-state li {
.country-state li {
margin-top: 30px;
margin-top: 30px;
margin-bottom: 10px
margin-bottom: 10px
}
}
.country-state h2 {
.country-state h2 {
margin-bottom: 0px;
margin-bottom: 0px;
font-weight: 400
font-weight: 400
}
}
.profiletimeline {
.profiletimeline {
position: relative;
position: relative;
padding-left: 40px;
padding-left: 40px;
margin-right: 10px;
margin-right: 10px;
border-left: 1px solid rgba(120, 130, 140, 0.13);
border-left: 1px solid rgba(120, 130, 140, 0.13);
margin-left: 30px
margin-left: 30px
}
}
.profiletimeline .sl-left {
.profiletimeline .sl-left {
float: left;
float: left;
margin-left: -60px;
margin-left: -60px;
z-index: 1;
z-index: 1;
margin-right: 15px
margin-right: 15px
}
}
.profiletimeline .sl-left img {
.profiletimeline .sl-left img {
max-width: 40px
max-width: 40px
}
}
.profiletimeline .sl-item {
.profiletimeline .sl-item {
margin-top: 8px;
margin-top: 8px;
margin-bottom: 30px
margin-bottom: 30px
}
}
.profiletimeline .sl-date {
.profiletimeline .sl-date {
font-size: 12px;
font-size: 12px;
color: #99abb4
color: #99abb4
}
}
.profiletimeline .time-item {
.profiletimeline .time-item {
border-color: rgba(120, 130, 140, 0.13);
border-color: rgba(120, 130, 140, 0.13);
padding-bottom: 1px;
padding-bottom: 1px;
position: relative
position: relative
}
}
.profiletimeline .time-item:before {
.profiletimeline .time-item:before {
content: " ";
content: " ";
display: table
display: table
}
}
.profiletimeline .time-item:after {
.profiletimeline .time-item:after {
background-color: #ffffff;
background-color: #ffffff;
border-color: rgba(120, 130, 140, 0.13);
border-color: rgba(120, 130, 140, 0.13);
border-radius: 10px;
border-radius: 10px;
border-style: solid;
border-style: solid;
border-width: 2px;
border-width: 2px;
bottom: 0;
bottom: 0;
content: '';
content: '';
height: 14px;
height: 14px;
left: 0;
left: 0;
margin-left: -8px;
margin-left: -8px;
position: absolute;
position: absolute;
top: 5px;
top: 5px;
width: 14px
width: 14px
}
}
.profiletimeline .time-item-item:after {
.profiletimeline .time-item-item:after {
content: " ";
content: " ";
display: table
display: table
}
}
.profiletimeline .item-info {
.profiletimeline .item-info {
margin-bottom: 15px;
margin-bottom: 15px;
margin-left: 15px
margin-left: 15px
}
}
.profiletimeline .item-info p {
.profiletimeline .item-info p {
margin-bottom: 10px!important
margin-bottom: 10px!important
}
}
.blog-widget {
.blog-widget {
margin-top: 30px
margin-top: 30px
}
}
.blog-widget .blog-image img {
.blog-widget .blog-image img {
border-radius: 4px;
border-radius: 4px;
margin-top: -45px;
margin-top: -45px;
margin-bottom: 20px;
margin-bottom: 20px;
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2)
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2)
}
}
.weather-small h1 {
.weather-small h1 {
line-height: 30px
line-height: 30px
}
}
.weather-small sup {
.weather-small sup {
font-size: 60%
font-size: 60%
}
}
.little-profile .pro-img {
.little-profile .pro-img {
margin-top: -80px;
margin-top: -80px;
margin-bottom: 20px
margin-bottom: 20px
}
}
.little-profile .pro-img img {
.little-profile .pro-img img {
width: 128px;
width: 128px;
height: 128px;
height: 128px;
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
border-radius: 100%
border-radius: 100%
}
}
.contact-box {
.contact-box {
position: relative
position: relative
}
}
.contact-box .add-ct-btn {
.contact-box .add-ct-btn {
position: absolute;
position: absolute;
right: 4px;
right: 4px;
top: -46px
top: -46px
}
}
.contact-box .contact-widget>a {
.contact-box .contact-widget>a {
padding: 15px 10px
padding: 15px 10px
}
}
.contact-box .contact-widget>a .user-img {
.contact-box .contact-widget>a .user-img {
margin-bottom: 0px!important
margin-bottom: 0px!important
}
}
@media (min-width:1600px) {
@media (min-width:1600px) {
.col-xlg-1, .col-xlg-2, .col-xlg-3, .col-xlg-4, .col-xlg-5, .col-xlg-6, .col-xlg-7, .col-xlg-8, .col-xlg-9, .col-xlg-10, .col-xlg-11, .col-xlg-12 {
.col-xlg-1, .col-xlg-2, .col-xlg-3, .col-xlg-4, .col-xlg-5, .col-xlg-6, .col-xlg-7, .col-xlg-8, .col-xlg-9, .col-xlg-10, .col-xlg-11, .col-xlg-12 {
float: left
float: left
}
}
.col-xlg-12 {
.col-xlg-12 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 100%;
-webkit-flex: 0 0 100%;
-ms-flex: 0 0 100%;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%
max-width: 100%
}
}
.col-xlg-11 {
.col-xlg-11 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 91.66666667%;
-webkit-flex: 0 0 91.66666667%;
-ms-flex: 0 0 91.66666667%;
-ms-flex: 0 0 91.66666667%;
flex: 0 0 91.66666667%;
flex: 0 0 91.66666667%;
max-width: 91.66666667%
max-width: 91.66666667%
}
}
.col-xlg-10 {
.col-xlg-10 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 83.33333333%;
-webkit-flex: 0 0 83.33333333%;
-ms-flex: 0 0 83.33333333%;
-ms-flex: 0 0 83.33333333%;
flex: 0 0 83.33333333%;
flex: 0 0 83.33333333%;
max-width: 83.33333333%
max-width: 83.33333333%
}
}
.col-xlg-9 {
.col-xlg-9 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 75%;
-webkit-flex: 0 0 75%;
-ms-flex: 0 0 75%;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%
max-width: 75%
}
}
.col-xlg-8 {
.col-xlg-8 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 66.66666667%;
-webkit-flex: 0 0 66.66666667%;
-ms-flex: 0 0 66.66666667%;
-ms-flex: 0 0 66.66666667%;
flex: 0 0 66.66666667%;
flex: 0 0 66.66666667%;
max-width: 66.66666667%
max-width: 66.66666667%
}
}
.col-xlg-7 {
.col-xlg-7 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 58.33333333%;
-webkit-flex: 0 0 58.33333333%;
-ms-flex: 0 0 58.33333333%;
-ms-flex: 0 0 58.33333333%;
flex: 0 0 58.33333333%;
flex: 0 0 58.33333333%;
max-width: 58.33333333%
max-width: 58.33333333%
}
}
.col-xlg-6 {
.col-xlg-6 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 50%;
-webkit-flex: 0 0 50%;
-ms-flex: 0 0 50%;
-ms-flex: 0 0 50%;
flex: 0 0 50%;
flex: 0 0 50%;
max-width: 50%
max-width: 50%
}
}
.col-xlg-5 {
.col-xlg-5 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 41.66666667%;
-webkit-flex: 0 0 41.66666667%;
-ms-flex: 0 0 41.66666667%;
-ms-flex: 0 0 41.66666667%;
flex: 0 0 41.66666667%;
flex: 0 0 41.66666667%;
max-width: 41.66666667%
max-width: 41.66666667%
}
}
.col-xlg-4 {
.col-xlg-4 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 33.33333333%;
-webkit-flex: 0 0 33.33333333%;
-ms-flex: 0 0 33.33333333%;
-ms-flex: 0 0 33.33333333%;
flex: 0 0 33.33333333%;
flex: 0 0 33.33333333%;
max-width: 33.33333333%
max-width: 33.33333333%
}
}
.col-xlg-3 {
.col-xlg-3 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 25%;
-webkit-flex: 0 0 25%;
-ms-flex: 0 0 25%;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%
max-width: 25%
}
}
.col-xlg-2 {
.col-xlg-2 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 16.66666667%;
-webkit-flex: 0 0 16.66666667%;
-ms-flex: 0 0 16.66666667%;
-ms-flex: 0 0 16.66666667%;
flex: 0 0 16.66666667%;
flex: 0 0 16.66666667%;
max-width: 16.66666667%
max-width: 16.66666667%
}
}
.col-xlg-1 {
.col-xlg-1 {
-webkit-box-flex: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 8.33333333%;
-webkit-flex: 0 0 8.33333333%;
-ms-flex: 0 0 8.33333333%;
-ms-flex: 0 0 8.33333333%;
flex: 0 0 8.33333333%;
flex: 0 0 8.33333333%;
max-width: 8.33333333%
max-width: 8.33333333%
}
}
.col-xlg-pull-12 {
.col-xlg-pull-12 {
right: 100%
right: 100%
}
}
.col-xlg-pull-11 {
.col-xlg-pull-11 {
right: 91.66666667%
right: 91.66666667%
}
}
.col-xlg-pull-10 {
.col-xlg-pull-10 {
right: 83.33333333%
right: 83.33333333%
}
}
.col-xlg-pull-9 {
.col-xlg-pull-9 {
right: 75%
right: 75%
}
}
.col-xlg-pull-8 {
.col-xlg-pull-8 {
right: 66.66666667%
right: 66.66666667%
}
}
.col-xlg-pull-7 {
.col-xlg-pull-7 {
right: 58.33333333%
right: 58.33333333%
}
}
.col-xlg-pull-6 {
.col-xlg-pull-6 {
right: 50%
right: 50%
}
}
.col-xlg-pull-5 {
.col-xlg-pull-5 {
right: 41.66666667%
right: 41.66666667%
}
}
.col-xlg-pull-4 {
.col-xlg-pull-4 {
right: 33.33333333%
right: 33.33333333%
}
}
.col-xlg-pull-3 {
.col-xlg-pull-3 {
right: 25%
right: 25%
}
}
.col-xlg-pull-2 {
.col-xlg-pull-2 {
right: 16.66666667%
right: 16.66666667%
}
}
.col-xlg-pull-1 {
.col-xlg-pull-1 {
right: 8.33333333%
right: 8.33333333%
}
}
.col-xlg-pull-0 {
.col-xlg-pull-0 {
right: auto
right: auto
}
}
.col-xlg-push-12 {
.col-xlg-push-12 {
left: 100%
left: 100%
}
}
.col-xlg-push-11 {
.col-xlg-push-11 {
left: 91.66666667%
left: 91.66666667%
}
}
.col-xlg-push-10 {
.col-xlg-push-10 {
left: 83.33333333%
left: 83.33333333%
}
}
.col-xlg-push-9 {
.col-xlg-push-9 {
left: 75%
left: 75%
}
}
.col-xlg-push-8 {
.col-xlg-push-8 {
left: 66.66666667%
left: 66.66666667%
}
}
.col-xlg-push-7 {
.col-xlg-push-7 {
left: 58.33333333%
left: 58.33333333%
}
}
.col-xlg-push-6 {
.col-xlg-push-6 {
left: 50%
left: 50%
}
}
.col-xlg-push-5 {
.col-xlg-push-5 {
left: 41.66666667%
left: 41.66666667%
}
}
.col-xlg-push-4 {
.col-xlg-push-4 {
left: 33.33333333%
left: 33.33333333%
}
}
.col-xlg-push-3 {
.col-xlg-push-3 {
left: 25%
left: 25%
}
}
.col-xlg-push-2 {
.col-xlg-push-2 {
left: 16.66666667%
left: 16.66666667%
}
}
.col-xlg-push-1 {
.col-xlg-push-1 {
left: 8.33333333%
left: 8.33333333%
}
}
.col-xlg-push-0 {
.col-xlg-push-0 {
left: auto
left: auto
}
}
.offset-xlg-12 {
.offset-xlg-12 {
margin-left: 100%
margin-left: 100%
}
}
.offset-xlg-11 {
.offset-xlg-11 {
margin-left: 91.66666667%
margin-left: 91.66666667%
}
}
.offset-xlg-10 {
.offset-xlg-10 {
margin-left: 83.33333333%
margin-left: 83.33333333%
}
}
.offset-xlg-9 {
.offset-xlg-9 {
margin-left: 75%
margin-left: 75%
}
}
.offset-xlg-8 {
.offset-xlg-8 {
margin-left: 66.66666667%
margin-left: 66.66666667%
}
}
.offset-xlg-7 {
.offset-xlg-7 {
margin-left: 58.33333333%
margin-left: 58.33333333%
}
}
.offset-xlg-6 {
.offset-xlg-6 {
margin-left: 50%
margin-left: 50%
}
}
.offset-xlg-5 {
.offset-xlg-5 {
margin-left: 41.66666667%
margin-left: 41.66666667%
}
}
.offset-xlg-4 {
.offset-xlg-4 {
margin-left: 33.33333333%
margin-left: 33.33333333%
}
}
.offset-xlg-3 {
.offset-xlg-3 {
margin-left: 25%
margin-left: 25%
}
}
.offset-xlg-2 {
.offset-xlg-2 {
margin-left: 16.66666667%
margin-left: 16.66666667%
}
}
.offset-xlg-1 {
.offset-xlg-1 {
margin-left: 8.33333333%
margin-left: 8.33333333%
}
}
.offset-xlg-0 {
.offset-xlg-0 {
margin-left: 0
margin-left: 0
}
}
}
}
.col-xlg-1, .col-xlg-2, .col-xlg-3, .col-xlg-4, .col-xlg-5, .col-xlg-6, .col-xlg-7, .col-xlg-8, .col-xlg-9, .col-xlg-10, .col-xlg-11, .col-xlg-12 {
.col-xlg-1, .col-xlg-2, .col-xlg-3, .col-xlg-4, .col-xlg-5, .col-xlg-6, .col-xlg-7, .col-xlg-8, .col-xlg-9, .col-xlg-10, .col-xlg-11, .col-xlg-12 {
position: relative;
position: relative;
min-height: 1px;
min-height: 1px;
padding-right: 15px;
padding-right: 15px;
padding-left: 15px
padding-left: 15px
}
}
.bootstrap-touchspin .input-group-btn {
.bootstrap-touchspin .input-group-btn {
-webkit-box-align: normal;
-webkit-box-align: normal;
-ms-flex-align: normal;
-ms-flex-align: normal;
align-items: normal
align-items: normal
}
}
.form-control-danger, .form-control-success, .form-control-warning {
.form-control-danger, .form-control-success, .form-control-warning {
padding-right: 2.25rem;
padding-right: 2.25rem;
background-repeat: no-repeat;
background-repeat: no-repeat;
background-position: center right .5625rem;
background-position: center right .5625rem;
-webkit-background-size: 1.125rem 1.125rem;
-webkit-background-size: 1.125rem 1.125rem;
background-size: 1.125rem 1.125rem
background-size: 1.125rem 1.125rem
}
}
.has-success .col-form-label, .has-success .custom-control, .has-success .form-check-label, .has-success .form-control-feedback, .has-success .form-control-label {
.has-success .col-form-label, .has-success .custom-control, .has-success .form-check-label, .has-success .form-control-feedback, .has-success .form-control-label {
color: #26dad2
color: #26dad2
}
}
.has-success .form-control-success {
.has-success .form-control-success {
background-image: url(http://themedesigner.in/demo/admin-press/assets/images/icon/success.svg)
background-image: url(http://themedesigner.in/demo/admin-press/assets/images/icon/success.svg)
}
}
.has-success .form-control {
.has-success .form-control {
border-color: #26dad2
border-color: #26dad2
}
}
.has-warning .col-form-label, .has-warning .custom-control, .has-warning .form-check-label, .has-warning .form-control-feedback, .has-warning .form-control-label {
.has-warning .col-form-label, .has-warning .custom-control, .has-warning .form-check-label, .has-warning .form-control-feedback, .has-warning .form-control-label {
color: #ffb22b
color: #ffb22b
}
}
.has-warning .form-control-warning {
.has-warning .form-control-warning {
background-image: url(http://themedesigner.in/demo/admin-press/assets/images/icon/warning.svg)
background-image: url(http://themedesigner.in/demo/admin-press/assets/images/icon/warning.svg)
}
}
.has-warning .form-control {
.has-warning .form-control {
border-color: #ffb22b
border-color: #ffb22b
}
}
.has-danger .col-form-label, .has-danger .custom-control, .has-danger .form-check-label, .has-danger .form-control-feedback, .has-danger .form-control-label {
.has-danger .col-form-label, .has-danger .custom-control, .has-danger .form-check-label, .has-danger .form-control-feedback, .has-danger .form-control-label {
color: #ef5350
color: #ef5350
}
}
.has-danger .form-control-danger {
.has-danger .form-control-danger {
background-image: url(http://themedesigner.in/demo/admin-press/assets/images/icon/danger.svg)
background-image: url(http://themedesigner.in/demo/admin-press/assets/images/icon/danger.svg)
}
}
.has-danger .form-control {
.has-danger .form-control {
border-color: #ef5350
border-color: #ef5350
}
}
.input-group-addon [type=checkbox]:checked, .input-group-addon [type=checkbox]:not(:checked), .input-group-addon [type=radio]:checked, .input-group-addon [type=radio]:not(:checked) {
.input-group-addon [type=checkbox]:checked, .input-group-addon [type=checkbox]:not(:checked), .input-group-addon [type=radio]:checked, .input-group-addon [type=radio]:not(:checked) {
position: initial;
position: initial;
opacity: 1
opacity: 1
}
}
.invisible {
.invisible {
visibility: hidden!important
visibility: hidden!important
}
}
.hidden-xs-up {
.hidden-xs-up {
display: none!important
display: none!important
}
}
@media (max-width:575px) {
@media (max-width:575px) {
.hidden-xs-down {
.hidden-xs-down {
display: none!important
display: none!important
}
}
}
}
@media (min-width:576px) {
@media (min-width:576px) {
.hidden-sm-up {
.hidden-sm-up {
display: none!important
display: none!important
}
}
}
}
@media (max-width:767px) {
@media (max-width:767px) {
.hidden-sm-down {
.hidden-sm-down {
display: none!important
display: none!important
}
}
}
}
@media (min-width:768px) {
@media (min-width:768px) {
.hidden-md-up {
.hidden-md-up {
display: none!important
display: none!important
}
}
}
}
@media (max-width:991px) {
@media (max-width:991px) {
.hidden-md-down {
.hidden-md-down {
display: none!important
display: none!important
}
}
}
}
@media (min-width:992px) {
@media (min-width:992px) {
.hidden-lg-up {
.hidden-lg-up {
display: none!important
display: none!important
}
}
}
}
@media (max-width:1199px) {
@media (max-width:1199px) {
.hidden-lg-down {
.hidden-lg-down {
display: none!important
display: none!important
}
}
}
}
@media (min-width:1200px) {
@media (min-width:1200px) {
.hidden-xl-up {
.hidden-xl-up {
display: none!important
display: none!important
}
}
}
}
.hidden-xl-down {
.hidden-xl-down {
display: none!important
display: none!important
}
}
.card-inverse .card-blockquote, .card-inverse .card-footer, .card-inverse .card-header, .card-inverse .card-title {
.card-inverse .card-blockquote, .card-inverse .card-footer, .card-inverse .card-header, .card-inverse .card-title {
color: #ffffff
color: #ffffff
}
}
@media (min-width:1650px) {
@media (min-width:1650px) {
.widget-app-columns {
.widget-app-columns {
-webkit-column-count: 3;
-webkit-column-count: 3;
column-count: 3
column-count: 3
}
}
.campaign {
.campaign {
height: 365px!important
height: 365px!important
}
}
}
}
@media (max-width:1370px) {
@media (max-width:1370px) {
.widget-app-columns {
.widget-app-columns {
-webkit-column-count: 2;
-webkit-column-count: 2;
column-count: 2
column-count: 2
}
}
}
}
@media (min-width:1024px) {
@media (min-width:1024px) {
.page-wrapper {
.page-wrapper {
/* margin-left: 240px */
/* margin-left: 240px */
}
}
.footer {
.footer {
/* left: 240px */
/* left: 240px */
}
}
}
}
@media (max-width:1023px) {
@media (max-width:1023px) {
.page-wrapper {
.page-wrapper {
margin-left: 60px;
margin-left: 60px;
-webkit-transition: 0.2s ease-in;
-webkit-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
-o-transition: 0.2s ease-in;
transition: 0.2s ease-in
transition: 0.2s ease-in
}
}
.footer {
.footer {
left: 60px
left: 60px
}
}
.widget-app-columns {
.widget-app-columns {
-webkit-column-count: 1;
-webkit-column-count: 1;
column-count: 1
column-count: 1
}
}
.inbox-center a {
.inbox-center a {
width: 200px
width: 200px
}
}
}
}
@media (min-width:768px) {
@media (min-width:768px) {
.navbar-header {
.navbar-header {
width: 240px;
width: 240px;
-ms-flex-negative: 0;
-ms-flex-negative: 0;
flex-shrink: 0
flex-shrink: 0
}
}
.navbar-header .navbar-brand {
.navbar-header .navbar-brand {
padding-top: 0px
padding-top: 0px
}
}
.page-titles .breadcrumb {
.page-titles .breadcrumb {
float: right
float: right
}
}
.card-group .card:first-child, .card-group .card:not(:first-child):not(:last-child) {
.card-group .card:first-child, .card-group .card:not(:first-child):not(:last-child) {
border-right: 1px solid rgba(0, 0, 0, 0.03)
border-right: 1px solid rgba(0, 0, 0, 0.03)
}
}
.material-icon-list-demo .icons div {
.material-icon-list-demo .icons div {
width: 33%;
width: 33%;
padding: 15px;
padding: 15px;
display: inline-block;
display: inline-block;
line-height: 40px
line-height: 40px
}
}
.mini-sidebar .page-wrapper {
.mini-sidebar .page-wrapper {
margin-left: 60px
margin-left: 60px
}
}
.mini-sidebar .footer {
.mini-sidebar .footer {
left: 60px
left: 60px
}
}
.flex-wrap {
.flex-wrap {
-ms-flex-wrap: nowrap!important;
-ms-flex-wrap: nowrap!important;
flex-wrap: nowrap!important;
flex-wrap: nowrap!important;
-webkit-flex-wrap: nowrap!important
-webkit-flex-wrap: nowrap!important
}
}
}
}
@media (max-width:767px) {
@media (max-width:767px) {
.topbar {
.topbar {
position: fixed;
position: fixed;
width: 100%
width: 100%
}
}
.topbar .top-navbar {
.topbar .top-navbar {
padding-right: 15px;
padding-right: 15px;
-webkit-box-orient: horizontal;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
flex-direction: row;
-ms-flex-wrap: nowrap;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
flex-wrap: nowrap;
-webkit-align-items: center
-webkit-align-items: center
}
}
.topbar .top-navbar .navbar-collapse {
.topbar .top-navbar .navbar-collapse {
display: -webkit-box;
display: -webkit-box;
display: -ms-flexbox;
display: -ms-flexbox;
display: flex;
display: flex;
width: 100%
width: 100%
}
}
.topbar .top-navbar .navbar-nav {
.topbar .top-navbar .navbar-nav {
-webkit-box-orient: horizontal;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row
flex-direction: row
}
}
.topbar .top-navbar .navbar-nav>.nav-item.show {
.topbar .top-navbar .navbar-nav>.nav-item.show {
position: static
position: static
}
}
.topbar .top-navbar .navbar-nav>.nav-item.show .dropdown-menu {
.topbar .top-navbar .navbar-nav>.nav-item.show .dropdown-menu {
width: 100%;
width: 100%;
margin-top: 0px
margin-top: 0px
}
}
.topbar .top-navbar .navbar-nav>.nav-item>.nav-link {
.topbar .top-navbar .navbar-nav>.nav-item>.nav-link {
padding-left: .50rem;
padding-left: .50rem;
padding-right: .50rem
padding-right: .50rem
}
}
.topbar .top-navbar .navbar-nav .dropdown-menu {
.topbar .top-navbar .navbar-nav .dropdown-menu {
position: absolute
position: absolute
}
}
.mega-dropdown .dropdown-menu {
.mega-dropdown .dropdown-menu {
height: 480px;
height: 480px;
overflow: auto
overflow: auto
}
}
.mini-sidebar .page-wrapper {
.mini-sidebar .page-wrapper {
margin-left: 0px;
margin-left: 0px;
padding-top: 60px
padding-top: 60px
}
}
.comment-text .comment-footer .action-icons {
.comment-text .comment-footer .action-icons {
display: block;
display: block;
padding: 10px 0
padding: 10px 0
}
}
.vtabs .tabs-vertical {
.vtabs .tabs-vertical {
width: auto
width: auto
}
}
.footer {
.footer {
left: 0px
left: 0px
}
}
.material-icon-list-demo .icons div {
.material-icon-list-demo .icons div {
width: 100%
width: 100%
}
}
.error-page .footer {
.error-page .footer {
position: fixed;
position: fixed;
bottom: 0px;
bottom: 0px;
z-index: 10
z-index: 10
}
}
.error-box {
.error-box {
position: relative;
position: relative;
padding-bottom: 60px
padding-bottom: 60px
}
}
.error-body {
.error-body {
padding-top: 10%
padding-top: 10%
}
}
.error-body h1 {
.error-body h1 {
font-size: 100px;
font-size: 100px;
font-weight: 600;
font-weight: 600;
line-height: 100px
line-height: 100px
}
}
.login-register {
.login-register {
position: relative;
position: relative;
overflow: hidden
overflow: hidden
}
}
.login-box {
.login-box {
width: 90%
width: 90%
}
}
.login-sidebar {
.login-sidebar {
padding: 10% 0
padding: 10% 0
}
}
.login-sidebar .login-box {
.login-sidebar .login-box {
position: relative
position: relative
}
}
.chat-main-box .chat-left-aside {
.chat-main-box .chat-left-aside {
left: -250px;
left: -250px;
position: absolute;
position: absolute;
-webkit-transition: 0.5s ease-in;
-webkit-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
-o-transition: 0.5s ease-in;
transition: 0.5s ease-in;
transition: 0.5s ease-in;
background: #ffffff
background: #ffffff
}
}
.chat-main-box .chat-left-aside.open-pnl {
.chat-main-box .chat-left-aside.open-pnl {
left: 0px
left: 0px
}
}
.chat-main-box .chat-left-aside .open-panel {
.chat-main-box .chat-left-aside .open-panel {
display: block
display: block
}
}
.chat-main-box .chat-right-aside {
.chat-main-box .chat-right-aside {
width: 100%
width: 100%
}
}
ul.timeline:before {
ul.timeline:before {
left: 40px
left: 40px
}
}
ul.timeline>li>.timeline-panel {
ul.timeline>li>.timeline-panel {
width: calc(100% - 90px)
width: calc(100% - 90px)
}
}
ul.timeline>li>.timeline-badge {
ul.timeline>li>.timeline-badge {
top: 16px;
top: 16px;
left: 15px;
left: 15px;
margin-left: 0
margin-left: 0
}
}
ul.timeline>li>.timeline-panel {
ul.timeline>li>.timeline-panel {
float: right
float: right
}
}
ul.timeline>li>.timeline-panel:before {
ul.timeline>li>.timeline-panel:before {
right: auto;
right: auto;
left: -15px;
left: -15px;
border-right-width: 15px;
border-right-width: 15px;
border-left-width: 0
border-left-width: 0
}
}
ul.timeline>li>.timeline-panel:after {
ul.timeline>li>.timeline-panel:after {
right: auto;
right: auto;
left: -14px;
left: -14px;
border-right-width: 14px;
border-right-width: 14px;
border-left-width: 0
border-left-width: 0
}
}
.left-aside {
.left-aside {
width: 100%;
width: 100%;
position: relative;
position: relative;
border: 0px
border: 0px
}
}
.right-aside {
.right-aside {
margin-left: 0px
margin-left: 0px
}
}
.flex-wrap {
.flex-wrap {
-ms-flex-wrap: wrap!important;
-ms-flex-wrap: wrap!important;
flex-wrap: wrap!important;
flex-wrap: wrap!important;
-webkit-flex-wrap: wrap!important
-webkit-flex-wrap: wrap!important
}
}
.chat-list li .chat-content {
.chat-list li .chat-content {
width: calc(100% - 80px)
width: calc(100% - 80px)
}
}
}
}
.preloader {
.preloader {
width: 100%;
width: 100%;
height: 100%;
height: 100%;
top: 0px;
top: 0px;
position: fixed;
position: fixed;
z-index: 99999;
z-index: 99999;
background: #fff
background: #fff
}
}
.preloader .cssload-speeding-wheel {
.preloader .cssload-speeding-wheel {
position: absolute;
position: absolute;
top: calc(50% - 3.5px);
top: calc(50% - 3.5px);
left: calc(50% - 3.5px)
left: calc(50% - 3.5px)
}
}
[type=radio]:checked, [type=radio]:not(:checked) {
[type=radio]:checked, [type=radio]:not(:checked) {
position: absolute;
position: absolute;
left: -9999px;
left: -9999px;
opacity: 0
opacity: 0
}
}
[type=radio]:checked+label, [type=radio]:not(:checked)+label {
[type=radio]:checked+label, [type=radio]:not(:checked)+label {
position: relative;
position: relative;
padding-left: 35px;
padding-left: 35px;
cursor: pointer;
cursor: pointer;
display: inline-block;
display: inline-block;
height: 25px;
height: 25px;
line-height: 25px;
line-height: 25px;
font-size: 1rem;
font-size: 1rem;
-webkit-transition: .28s ease;
-webkit-transition: .28s ease;
-o-transition: .28s ease;
-o-transition: .28s ease;
transition: .28s ease;
transition: .28s ease;
-webkit-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-ms-user-select: none;
user-select: none
user-select: none
}
}
[type=radio]+label:after, [type=radio]+label:before {
[type=radio]+label:after, [type=radio]+label:before {
content: '';
content: '';
position: absolute;
position: absolute;
left: 0;
left: 0;
top: 0;
top: 0;
margin: 4px;
margin: 4px;
width: 16px;
width: 16px;
height: 16px;
height: 16px;
z-index: 0;
z-index: 0;
-webkit-transition: .28s ease;
-webkit-transition: .28s ease;
-o-transition: .28s ease;
-o-transition: .28s ease;
transition: .28s ease
transition: .28s ease
}
}
[type=radio].with-gap:checked+label:after, [type=radio].with-gap:checked+label:before, [type=radio]:checked+label:after, [type=radio]:checked+label:before, [type=radio]:not(:checked)+label:after, [type=radio]:not(:checked)+label:before {
[type=radio].with-gap:checked+label:after, [type=radio].with-gap:checked+label:before, [type=radio]:checked+label:after, [type=radio]:checked+label:before, [type=radio]:not(:checked)+label:after, [type=radio]:not(:checked)+label:before {
border-radius: 50%
border-radius: 50%
}
}
[type=radio]:not(:checked)+label:after, [type=radio]:not(:checked)+label:before {
[type=radio]:not(:checked)+label:after, [type=radio]:not(:checked)+label:before {
border: 1px solid #b1b8bb
border: 1px solid #b1b8bb
}
}
[type=radio]:not(:checked)+label:after {
[type=radio]:not(:checked)+label:after {
z-index: -1;
z-index: -1;
-webkit-transform: scale(0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0)
transform: scale(0)
}
}
[type=radio]:checked+label:before {
[type=radio]:checked+label:before {
border: 2px solid transparent;
border: 2px solid transparent;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap:checked+label:after, [type=radio].with-gap:checked+label:before, [type=radio]:checked+label:after {
[type=radio].with-gap:checked+label:after, [type=radio].with-gap:checked+label:before, [type=radio]:checked+label:after {
border: 2px solid #26a69a
border: 2px solid #26a69a
}
}
[type=radio].with-gap:checked+label:after, [type=radio]:checked+label:after {
[type=radio].with-gap:checked+label:after, [type=radio]:checked+label:after {
background-color: #26a69a;
background-color: #26a69a;
z-index: 0
z-index: 0
}
}
[type=radio]:checked+label:after {
[type=radio]:checked+label:after {
-webkit-transform: scale(1.02);
-webkit-transform: scale(1.02);
-ms-transform: scale(1.02);
-ms-transform: scale(1.02);
transform: scale(1.02)
transform: scale(1.02)
}
}
[type=radio].with-gap:checked+label:after {
[type=radio].with-gap:checked+label:after {
-webkit-transform: scale(0.5);
-webkit-transform: scale(0.5);
-ms-transform: scale(0.5);
-ms-transform: scale(0.5);
transform: scale(0.5)
transform: scale(0.5)
}
}
[type=radio].tabbed:focus+label:before {
[type=radio].tabbed:focus+label:before {
-webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap:disabled:checked+label:before {
[type=radio].with-gap:disabled:checked+label:before {
border: 2px solid rgba(0, 0, 0, 0.26);
border: 2px solid rgba(0, 0, 0, 0.26);
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap:disabled:checked+label:after {
[type=radio].with-gap:disabled:checked+label:after {
border: none;
border: none;
background-color: rgba(0, 0, 0, 0.26)
background-color: rgba(0, 0, 0, 0.26)
}
}
[type=radio]:disabled:checked+label:before, [type=radio]:disabled:not(:checked)+label:before {
[type=radio]:disabled:checked+label:before, [type=radio]:disabled:not(:checked)+label:before {
background-color: transparent;
background-color: transparent;
border-color: rgba(0, 0, 0, 0.26);
border-color: rgba(0, 0, 0, 0.26);
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio]:disabled+label {
[type=radio]:disabled+label {
color: rgba(0, 0, 0, 0.26)
color: rgba(0, 0, 0, 0.26)
}
}
[type=radio]:disabled:not(:checked)+label:before {
[type=radio]:disabled:not(:checked)+label:before {
border-color: rgba(0, 0, 0, 0.26)
border-color: rgba(0, 0, 0, 0.26)
}
}
[type=radio]:disabled:checked+label:after {
[type=radio]:disabled:checked+label:after {
background-color: rgba(0, 0, 0, 0.26);
background-color: rgba(0, 0, 0, 0.26);
border-color: #BDBDBD
border-color: #BDBDBD
}
}
form p {
form p {
margin-bottom: 10px;
margin-bottom: 10px;
text-align: left
text-align: left
}
}
form p:last-child {
form p:last-child {
margin-bottom: 0
margin-bottom: 0
}
}
[type=checkbox]:checked, [type=checkbox]:not(:checked) {
[type=checkbox]:checked, [type=checkbox]:not(:checked) {
position: absolute;
position: absolute;
left: -9999px;
/* left: -9999px;
opacity: 0
opacity: 0 */
}
}
[type=checkbox] {}
[type=checkbox] {}
[type=checkbox]+label {
[type=checkbox]+label {
position: relative;
position: relative;
padding-left: 35px;
padding-left: 35px;
cursor: pointer;
cursor: pointer;
display: inline-block;
display: inline-block;
height: 25px;
height: 25px;
line-height: 25px;
line-height: 25px;
font-size: 1rem;
font-size: 1rem;
-webkit-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-khtml-user-select: none;
-ms-user-select: none
-ms-user-select: none
}
}
[type=checkbox]+label:before, [type=checkbox]:not(.filled-in)+label:after {
[type=checkbox]+label:before, [type=checkbox]:not(.filled-in)+label:after {
content: '';
content: '';
position: absolute;
position: absolute;
top: 0;
top: 0;
left: 0;
left: 0;
width: 18px;
width: 18px;
height: 18px;
height: 18px;
z-index: 0;
z-index: 0;
border: 1px solid #b1b8bb;
border: 1px solid #b1b8bb;
border-radius: 1px;
border-radius: 1px;
margin-top: 2px;
margin-top: 2px;
-webkit-transition: .2s;
-webkit-transition: .2s;
-o-transition: .2s;
-o-transition: .2s;
transition: .2s
transition: .2s
}
}
[type=checkbox]:not(.filled-in)+label:after {
[type=checkbox]:not(.filled-in)+label:after {
border: 0;
border: 0;
-webkit-transform: scale(0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0)
transform: scale(0)
}
}
[type=checkbox]:not(:checked):disabled+label:before {
[type=checkbox]:not(:checked):disabled+label:before {
border: none;
border: none;
background-color: rgba(0, 0, 0, 0.26)
background-color: rgba(0, 0, 0, 0.26)
}
}
[type=checkbox].tabbed:focus+label:after {
[type=checkbox].tabbed:focus+label:after {
-webkit-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
transform: scale(1);
border: 0;
border: 0;
border-radius: 50%;
border-radius: 50%;
-webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.1)
background-color: rgba(0, 0, 0, 0.1)
}
}
[type=checkbox]:checked+label:before {
[type=checkbox]:checked+label:before {
top: -4px;
top: -4px;
left: -5px;
left: -5px;
width: 12px;
width: 12px;
height: 22px;
height: 22px;
border-top: 2px solid transparent;
border-top: 2px solid transparent;
border-left: 2px solid transparent;
border-left: 2px solid transparent;
border-right: 2px solid #26a69a;
border-right: 2px solid #26a69a;
border-bottom: 2px solid #26a69a;
border-bottom: 2px solid #26a69a;
-webkit-transform: rotate(40deg);
-webkit-transform: rotate(40deg);
-ms-transform: rotate(40deg);
-ms-transform: rotate(40deg);
transform: rotate(40deg);
transform: rotate(40deg);
-webkit-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform-origin: 100% 100%;
-webkit-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
transform-origin: 100% 100%
transform-origin: 100% 100%
}
}
[type=checkbox]:checked:disabled+label:before {
[type=checkbox]:checked:disabled+label:before {
border-right: 2px solid rgba(0, 0, 0, 0.26);
border-right: 2px solid rgba(0, 0, 0, 0.26);
border-bottom: 2px solid rgba(0, 0, 0, 0.26)
border-bottom: 2px solid rgba(0, 0, 0, 0.26)
}
}
[type=checkbox]:indeterminate+label:before {
[type=checkbox]:indeterminate+label:before {
top: -11px;
top: -11px;
left: -12px;
left: -12px;
width: 10px;
width: 10px;
height: 22px;
height: 22px;
border-top: none;
border-top: none;
border-left: none;
border-left: none;
border-right: 2px solid #26a69a;
border-right: 2px solid #26a69a;
border-bottom: none;
border-bottom: none;
-webkit-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
-ms-transform: rotate(90deg);
-ms-transform: rotate(90deg);
transform: rotate(90deg);
transform: rotate(90deg);
-webkit-backface-visibility: hidden;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform-origin: 100% 100%;
-webkit-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
transform-origin: 100% 100%
transform-origin: 100% 100%
}
}
[type=checkbox]:indeterminate:disabled+label:before {
[type=checkbox]:indeterminate:disabled+label:before {
border-right: 2px solid rgba(0, 0, 0, 0.26);
border-right: 2px solid rgba(0, 0, 0, 0.26);
background-color: transparent
background-color: transparent
}
}
[type=checkbox].filled-in+label:after {
[type=checkbox].filled-in+label:after {
border-radius: 2px
border-radius: 2px
}
}
[type=checkbox].filled-in+label:after, [type=checkbox].filled-in+label:before {
[type=checkbox].filled-in+label:after, [type=checkbox].filled-in+label:before {
content: '';
content: '';
left: 0;
left: 0;
position: absolute;
position: absolute;
-webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
-webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
-o-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
-o-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
z-index: 1
z-index: 1
}
}
[type=checkbox].filled-in:not(:checked)+label:before {
[type=checkbox].filled-in:not(:checked)+label:before {
width: 0;
width: 0;
height: 0;
height: 0;
border: 3px solid transparent;
border: 3px solid transparent;
left: 6px;
left: 6px;
top: 10px;
top: 10px;
-webkit-transform: rotateZ(37deg);
-webkit-transform: rotateZ(37deg);
-ms-transform: rotate(37deg);
-ms-transform: rotate(37deg);
transform: rotateZ(37deg);
transform: rotateZ(37deg);
-webkit-transform-origin: 20% 40%;
-webkit-transform-origin: 20% 40%;
-ms-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
transform-origin: 100% 100%
transform-origin: 100% 100%
}
}
[type=checkbox].filled-in:not(:checked)+label:after {
[type=checkbox].filled-in:not(:checked)+label:after {
height: 20px;
height: 20px;
width: 20px;
width: 20px;
background-color: transparent;
background-color: transparent;
border: 1px solid #b1b8bb;
border: 1px solid #b1b8bb;
top: 0px;
top: 0px;
z-index: 0
z-index: 0
}
}
[type=checkbox].filled-in:checked+label:before {
[type=checkbox].filled-in:checked+label:before {
top: 0;
top: 0;
left: 1px;
left: 1px;
width: 8px;
width: 8px;
height: 13px;
height: 13px;
border-top: 2px solid transparent;
border-top: 2px solid transparent;
border-left: 2px solid transparent;
border-left: 2px solid transparent;
border-right: 2px solid #fff;
border-right: 2px solid #fff;
border-bottom: 2px solid #fff;
border-bottom: 2px solid #fff;
-webkit-transform: rotateZ(37deg);
-webkit-transform: rotateZ(37deg);
-ms-transform: rotate(37deg);
-ms-transform: rotate(37deg);
transform: rotateZ(37deg);
transform: rotateZ(37deg);
-webkit-transform-origin: 100% 100%;
-webkit-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
-ms-transform-origin: 100% 100%;
transform-origin: 100% 100%
transform-origin: 100% 100%
}
}
[type=checkbox].filled-in:checked+label:after {
[type=checkbox].filled-in:checked+label:after {
top: 0;
top: 0;
width: 20px;
width: 20px;
height: 20px;
height: 20px;
border: 2px solid #26a69a;
border: 2px solid #26a69a;
background-color: #26a69a;
background-color: #26a69a;
z-index: 0
z-index: 0
}
}
[type=checkbox].filled-in.tabbed:focus+label:after {
[type=checkbox].filled-in.tabbed:focus+label:after {
border-radius: 2px;
border-radius: 2px;
border-color: #5a5a5a;
border-color: #5a5a5a;
background-color: rgba(0, 0, 0, 0.1)
background-color: rgba(0, 0, 0, 0.1)
}
}
[type=checkbox].filled-in.tabbed:checked:focus+label:after {
[type=checkbox].filled-in.tabbed:checked:focus+label:after {
border-radius: 2px;
border-radius: 2px;
background-color: #26a69a;
background-color: #26a69a;
border-color: #26a69a
border-color: #26a69a
}
}
[type=checkbox].filled-in:disabled:not(:checked)+label:before {
[type=checkbox].filled-in:disabled:not(:checked)+label:before {
background-color: transparent;
background-color: transparent;
border: 2px solid transparent
border: 2px solid transparent
}
}
[type=checkbox].filled-in:disabled:not(:checked)+label:after {
[type=checkbox].filled-in:disabled:not(:checked)+label:after {
border-color: transparent;
border-color: transparent;
background-color: #BDBDBD
background-color: #BDBDBD
}
}
[type=checkbox].filled-in:disabled:checked+label:before {
[type=checkbox].filled-in:disabled:checked+label:before {
background-color: transparent
background-color: transparent
}
}
[type=checkbox].filled-in:disabled:checked+label:after {
[type=checkbox].filled-in:disabled:checked+label:after {
background-color: #BDBDBD;
background-color: #BDBDBD;
border-color: #BDBDBD
border-color: #BDBDBD
}
}
.switch, .switch * {
.switch, .switch * {
-webkit-user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-khtml-user-select: none;
-ms-user-select: none
-ms-user-select: none
}
}
.switch label {
.switch label {
cursor: pointer
cursor: pointer
}
}
.switch label input[type=checkbox] {
.switch label input[type=checkbox] {
opacity: 0;
opacity: 0;
width: 0;
width: 0;
height: 0
height: 0
}
}
.switch label input[type=checkbox]:checked+.lever {
.switch label input[type=checkbox]:checked+.lever {
background-color: #84c7c1
background-color: #84c7c1
}
}
.switch label input[type=checkbox]:checked+.lever:after {
.switch label input[type=checkbox]:checked+.lever:after {
background-color: #26a69a;
background-color: #26a69a;
left: 24px
left: 24px
}
}
.switch label .lever {
.switch label .lever {
content: "";
content: "";
display: inline-block;
display: inline-block;
position: relative;
position: relative;
width: 40px;
width: 40px;
height: 15px;
height: 15px;
background-color: #818181;
background-color: #818181;
border-radius: 15px;
border-radius: 15px;
margin-right: 10px;
margin-right: 10px;
-webkit-transition: background 0.3s ease;
-webkit-transition: background 0.3s ease;
-o-transition: background 0.3s ease;
-o-transition: background 0.3s ease;
transition: background 0.3s ease;
transition: background 0.3s ease;
vertical-align: middle;
vertical-align: middle;
margin: 0 16px
margin: 0 16px
}
}
.switch label .lever:after {
.switch label .lever:after {
content: "";
content: "";
position: absolute;
position: absolute;
display: inline-block;
display: inline-block;
width: 21px;
width: 21px;
height: 21px;
height: 21px;
background-color: #F1F1F1;
background-color: #F1F1F1;
border-radius: 21px;
border-radius: 21px;
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
left: -5px;
left: -5px;
top: -3px;
top: -3px;
-webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
-webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
-o-transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
-o-transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease
transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease
}
}
input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever:after, input[type=checkbox]:checked:not(:disabled)~.lever:active:after {
input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever:after, input[type=checkbox]:checked:not(:disabled)~.lever:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1)
}
}
input[type=checkbox]:not(:disabled).tabbed:focus~.lever:after, input[type=checkbox]:not(:disabled)~.lever:active:after {
input[type=checkbox]:not(:disabled).tabbed:focus~.lever:after, input[type=checkbox]:not(:disabled)~.lever:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08)
}
}
.switch input[type=checkbox][disabled]+.lever {
.switch input[type=checkbox][disabled]+.lever {
cursor: default
cursor: default
}
}
.switch label input[type=checkbox][disabled]+.lever:after, .switch label input[type=checkbox][disabled]:checked+.lever:after {
.switch label input[type=checkbox][disabled]+.lever:after, .switch label input[type=checkbox][disabled]:checked+.lever:after {
background-color: #BDBDBD
background-color: #BDBDBD
}
}
.scale-up {
.scale-up {
-webkit-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
transition: all 0.3s ease;
transition: all 0.3s ease;
-webkit-transform: scale(0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
transform: scale(0);
display: inline-block;
display: inline-block;
-webkit-transform-origin: right 0px;
-webkit-transform-origin: right 0px;
-ms-transform-origin: right 0px;
-ms-transform-origin: right 0px;
transform-origin: right 0px
transform-origin: right 0px
}
}
.scale-up-left {
.scale-up-left {
-webkit-transition: all 0.3s ease-out;
-webkit-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
-o-transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
transition: all 0.3s ease-out;
-webkit-transform: scale(0);
-webkit-transform: scale(0);
-ms-transform: scale(0);
-ms-transform: scale(0);
transform: scale(0);
transform: scale(0);
display: inline-block;
display: inline-block;
-webkit-transform-origin: left 0px;
-webkit-transform-origin: left 0px;
-ms-transform-origin: left 0px;
-ms-transform-origin: left 0px;
transform-origin: left 0px
transform-origin: left 0px
}
}
.show>.scale-up {
.show>.scale-up {
-webkit-transform: scale(1);
-webkit-transform: scale(1);
-ms-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
transform: scale(1);
-webkit-transform-origin: right 0px;
-webkit-transform-origin: right 0px;
-ms-transform-origin: right 0px;
-ms-transform-origin: right 0px;
transform-origin: right 0px
transform-origin: right 0px
}
}
.show>.scale-up-left {
.show>.scale-up-left {
-ms-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
transform: scale(1);
-webkit-transform: scale(1);
-webkit-transform: scale(1);
-webkit-transform-origin: left 0px;
-webkit-transform-origin: left 0px;
-ms-transform-origin: left 0px;
-ms-transform-origin: left 0px;
transform-origin: left 0px
transform-origin: left 0px
}
}
.card {
.card {
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
border-radius: 4px
border-radius: 4px
}
}
.well, pre {
.well, pre {
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1)
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1)
}
}
.page-titles .justify-content-end:last-child .d-flex {
.page-titles .justify-content-end:last-child .d-flex {
margin-right: 10px
margin-right: 10px
}
}
.btn-circle.right-side-toggle {
.btn-circle.right-side-toggle {
position: fixed;
position: fixed;
top: 94px;
top: 94px;
right: 20px;
right: 20px;
padding: 25px;
padding: 18px;
z-index: 10;
z-index: 10;
}
}
@-webkit-keyframes ripple {
@-webkit-keyframes ripple {
0% {
0% {
-webkit-box-shadow: 0px 0px 0px 1px transparent;
-webkit-box-shadow: 0px 0px 0px 1px transparent;
box-shadow: 0px 0px 0px 1px transparent
box-shadow: 0px 0px 0px 1px transparent
}
}
50% {
50% {
-webkit-box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1)
box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1)
}
}
to {
to {
-webkit-box-shadow: 0px 0px 0px 15px transparent;
-webkit-box-shadow: 0px 0px 0px 15px transparent;
box-shadow: 0px 0px 0px 15px transparent
box-shadow: 0px 0px 0px 15px transparent
}
}
}
}
@keyframes ripple {
@keyframes ripple {
0% {
0% {
-webkit-box-shadow: 0px 0px 0px 1px transparent;
-webkit-box-shadow: 0px 0px 0px 1px transparent;
box-shadow: 0px 0px 0px 1px transparent
box-shadow: 0px 0px 0px 1px transparent
}
}
50% {
50% {
-webkit-box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1);
box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1)
box-shadow: 0px 0px 0px 15px rgba(0, 0, 0, 0.1)
}
}
to {
to {
-webkit-box-shadow: 0px 0px 0px 15px transparent;
-webkit-box-shadow: 0px 0px 0px 15px transparent;
box-shadow: 0px 0px 0px 15px transparent
box-shadow: 0px 0px 0px 15px transparent
}
}
}
}
.bootstrap-select.btn-group .dropdown-menu {
.bootstrap-select.btn-group .dropdown-menu {
margin-top: -40px;
margin-top: -40px;
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1)
box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1)
}
}
.demo-checkbox label, .demo-radio-button label {
.demo-checkbox label, .demo-radio-button label {
min-width: 200px;
min-width: 200px;
margin-bottom: 20px
margin-bottom: 20px
}
}
.demo-swtich .demo-switch-title, .demo-swtich .switch {
.demo-swtich .demo-switch-title, .demo-swtich .switch {
width: 150px;
width: 150px;
margin-bottom: 10px;
margin-bottom: 10px;
display: inline-block
display: inline-block
}
}
[type=checkbox]+label {
[type=checkbox]+label {
padding-left: 26px;
padding-left: 26px;
height: 25px;
height: 25px;
line-height: 21px;
line-height: 21px;
font-weight: normal
font-weight: normal
}
}
[type=checkbox]:checked+label:before {
[type=checkbox]:checked+label:before {
top: -4px;
top: -4px;
left: -2px;
left: -2px;
width: 11px;
width: 11px;
height: 19px
height: 19px
}
}
[type=checkbox]:checked.chk-col-red+label:before {
[type=checkbox]:checked.chk-col-red+label:before {
border-right: 2px solid #fb3a3a;
border-right: 2px solid #fb3a3a;
border-bottom: 2px solid #fb3a3a
border-bottom: 2px solid #fb3a3a
}
}
[type=checkbox]:checked.chk-col-pink+label:before {
[type=checkbox]:checked.chk-col-pink+label:before {
border-right: 2px solid #E91E63;
border-right: 2px solid #E91E63;
border-bottom: 2px solid #E91E63
border-bottom: 2px solid #E91E63
}
}
[type=checkbox]:checked.chk-col-purple+label:before {
[type=checkbox]:checked.chk-col-purple+label:before {
border-right: 2px solid #7460ee;
border-right: 2px solid #7460ee;
border-bottom: 2px solid #7460ee
border-bottom: 2px solid #7460ee
}
}
[type=checkbox]:checked.chk-col-deep-purple+label:before {
[type=checkbox]:checked.chk-col-deep-purple+label:before {
border-right: 2px solid #673AB7;
border-right: 2px solid #673AB7;
border-bottom: 2px solid #673AB7
border-bottom: 2px solid #673AB7
}
}
[type=checkbox]:checked.chk-col-indigo+label:before {
[type=checkbox]:checked.chk-col-indigo+label:before {
border-right: 2px solid #3F51B5;
border-right: 2px solid #3F51B5;
border-bottom: 2px solid #3F51B5
border-bottom: 2px solid #3F51B5
}
}
[type=checkbox]:checked.chk-col-blue+label:before {
[type=checkbox]:checked.chk-col-blue+label:before {
border-right: 2px solid #02bec9;
border-right: 2px solid #02bec9;
border-bottom: 2px solid #02bec9
border-bottom: 2px solid #02bec9
}
}
[type=checkbox]:checked.chk-col-light-blue+label:before {
[type=checkbox]:checked.chk-col-light-blue+label:before {
border-right: 2px solid #03A9F4;
border-right: 2px solid #03A9F4;
border-bottom: 2px solid #03A9F4
border-bottom: 2px solid #03A9F4
}
}
[type=checkbox]:checked.chk-col-cyan+label:before {
[type=checkbox]:checked.chk-col-cyan+label:before {
border-right: 2px solid #00BCD4;
border-right: 2px solid #00BCD4;
border-bottom: 2px solid #00BCD4
border-bottom: 2px solid #00BCD4
}
}
[type=checkbox]:checked.chk-col-teal+label:before {
[type=checkbox]:checked.chk-col-teal+label:before {
border-right: 2px solid #009688;
border-right: 2px solid #009688;
border-bottom: 2px solid #009688
border-bottom: 2px solid #009688
}
}
[type=checkbox]:checked.chk-col-green+label:before {
[type=checkbox]:checked.chk-col-green+label:before {
border-right: 2px solid #26c6da;
border-right: 2px solid #26c6da;
border-bottom: 2px solid #26c6da
border-bottom: 2px solid #26c6da
}
}
[type=checkbox]:checked.chk-col-light-green+label:before {
[type=checkbox]:checked.chk-col-light-green+label:before {
border-right: 2px solid #8BC34A;
border-right: 2px solid #8BC34A;
border-bottom: 2px solid #8BC34A
border-bottom: 2px solid #8BC34A
}
}
[type=checkbox]:checked.chk-col-lime+label:before {
[type=checkbox]:checked.chk-col-lime+label:before {
border-right: 2px solid #CDDC39;
border-right: 2px solid #CDDC39;
border-bottom: 2px solid #CDDC39
border-bottom: 2px solid #CDDC39
}
}
[type=checkbox]:checked.chk-col-yellow+label:before {
[type=checkbox]:checked.chk-col-yellow+label:before {
border-right: 2px solid #ffe821;
border-right: 2px solid #ffe821;
border-bottom: 2px solid #ffe821
border-bottom: 2px solid #ffe821
}
}
[type=checkbox]:checked.chk-col-amber+label:before {
[type=checkbox]:checked.chk-col-amber+label:before {
border-right: 2px solid #FFC107;
border-right: 2px solid #FFC107;
border-bottom: 2px solid #FFC107
border-bottom: 2px solid #FFC107
}
}
[type=checkbox]:checked.chk-col-orange+label:before {
[type=checkbox]:checked.chk-col-orange+label:before {
border-right: 2px solid #FF9800;
border-right: 2px solid #FF9800;
border-bottom: 2px solid #FF9800
border-bottom: 2px solid #FF9800
}
}
[type=checkbox]:checked.chk-col-deep-orange+label:before {
[type=checkbox]:checked.chk-col-deep-orange+label:before {
border-right: 2px solid #FF5722;
border-right: 2px solid #FF5722;
border-bottom: 2px solid #FF5722
border-bottom: 2px solid #FF5722
}
}
[type=checkbox]:checked.chk-col-brown+label:before {
[type=checkbox]:checked.chk-col-brown+label:before {
border-right: 2px solid #795548;
border-right: 2px solid #795548;
border-bottom: 2px solid #795548
border-bottom: 2px solid #795548
}
}
[type=checkbox]:checked.chk-col-grey+label:before {
[type=checkbox]:checked.chk-col-grey+label:before {
border-right: 2px solid #9E9E9E;
border-right: 2px solid #9E9E9E;
border-bottom: 2px solid #9E9E9E
border-bottom: 2px solid #9E9E9E
}
}
[type=checkbox]:checked.chk-col-blue-grey+label:before {
[type=checkbox]:checked.chk-col-blue-grey+label:before {
border-right: 2px solid #607D8B;
border-right: 2px solid #607D8B;
border-bottom: 2px solid #607D8B
border-bottom: 2px solid #607D8B
}
}
[type=checkbox]:checked.chk-col-black+label:before {
[type=checkbox]:checked.chk-col-black+label:before {
border-right: 2px solid #000000;
border-right: 2px solid #000000;
border-bottom: 2px solid #000000
border-bottom: 2px solid #000000
}
}
[type=checkbox]:checked.chk-col-white+label:before {
[type=checkbox]:checked.chk-col-white+label:before {
border-right: 2px solid #ffffff;
border-right: 2px solid #ffffff;
border-bottom: 2px solid #ffffff
border-bottom: 2px solid #ffffff
}
}
[type=checkbox].filled-in:checked+label:after {
[type=checkbox].filled-in:checked+label:after {
top: 0;
top: 0;
width: 20px;
width: 20px;
height: 20px;
height: 20px;
border: 2px solid #26a69a;
border: 2px solid #26a69a;
background-color: #26a69a;
background-color: #26a69a;
z-index: 0
z-index: 0
}
}
[type=checkbox].filled-in:checked+label:before {
[type=checkbox].filled-in:checked+label:before {
border-right: 2px solid #fff!important;
border-right: 2px solid #fff!important;
border-bottom: 2px solid #fff!important
border-bottom: 2px solid #fff!important
}
}
[type=checkbox].filled-in:checked.chk-col-red+label:after {
[type=checkbox].filled-in:checked.chk-col-red+label:after {
border: 2px solid #fb3a3a;
border: 2px solid #fb3a3a;
background-color: #fb3a3a
background-color: #fb3a3a
}
}
[type=checkbox].filled-in:checked.chk-col-pink+label:after {
[type=checkbox].filled-in:checked.chk-col-pink+label:after {
border: 2px solid #E91E63;
border: 2px solid #E91E63;
background-color: #E91E63
background-color: #E91E63
}
}
[type=checkbox].filled-in:checked.chk-col-purple+label:after {
[type=checkbox].filled-in:checked.chk-col-purple+label:after {
border: 2px solid #7460ee;
border: 2px solid #7460ee;
background-color: #7460ee
background-color: #7460ee
}
}
[type=checkbox].filled-in:checked.chk-col-deep-purple+label:after {
[type=checkbox].filled-in:checked.chk-col-deep-purple+label:after {
border: 2px solid #673AB7;
border: 2px solid #673AB7;
background-color: #673AB7
background-color: #673AB7
}
}
[type=checkbox].filled-in:checked.chk-col-indigo+label:after {
[type=checkbox].filled-in:checked.chk-col-indigo+label:after {
border: 2px solid #3F51B5;
border: 2px solid #3F51B5;
background-color: #3F51B5
background-color: #3F51B5
}
}
[type=checkbox].filled-in:checked.chk-col-blue+label:after {
[type=checkbox].filled-in:checked.chk-col-blue+label:after {
border: 2px solid #02bec9;
border: 2px solid #02bec9;
background-color: #02bec9
background-color: #02bec9
}
}
[type=checkbox].filled-in:checked.chk-col-light-blue+label:after {
[type=checkbox].filled-in:checked.chk-col-light-blue+label:after {
border: 2px solid #03A9F4;
border: 2px solid #03A9F4;
background-color: #03A9F4
background-color: #03A9F4
}
}
[type=checkbox].filled-in:checked.chk-col-cyan+label:after {
[type=checkbox].filled-in:checked.chk-col-cyan+label:after {
border: 2px solid #00BCD4;
border: 2px solid #00BCD4;
background-color: #00BCD4
background-color: #00BCD4
}
}
[type=checkbox].filled-in:checked.chk-col-teal+label:after {
[type=checkbox].filled-in:checked.chk-col-teal+label:after {
border: 2px solid #009688;
border: 2px solid #009688;
background-color: #009688
background-color: #009688
}
}
[type=checkbox].filled-in:checked.chk-col-green+label:after {
[type=checkbox].filled-in:checked.chk-col-green+label:after {
border: 2px solid #26c6da;
border: 2px solid #26c6da;
background-color: #26c6da
background-color: #26c6da
}
}
[type=checkbox].filled-in:checked.chk-col-light-green+label:after {
[type=checkbox].filled-in:checked.chk-col-light-green+label:after {
border: 2px solid #8BC34A;
border: 2px solid #8BC34A;
background-color: #8BC34A
background-color: #8BC34A
}
}
[type=checkbox].filled-in:checked.chk-col-lime+label:after {
[type=checkbox].filled-in:checked.chk-col-lime+label:after {
border: 2px solid #CDDC39;
border: 2px solid #CDDC39;
background-color: #CDDC39
background-color: #CDDC39
}
}
[type=checkbox].filled-in:checked.chk-col-yellow+label:after {
[type=checkbox].filled-in:checked.chk-col-yellow+label:after {
border: 2px solid #ffe821;
border: 2px solid #ffe821;
background-color: #ffe821
background-color: #ffe821
}
}
[type=checkbox].filled-in:checked.chk-col-amber+label:after {
[type=checkbox].filled-in:checked.chk-col-amber+label:after {
border: 2px solid #FFC107;
border: 2px solid #FFC107;
background-color: #FFC107
background-color: #FFC107
}
}
[type=checkbox].filled-in:checked.chk-col-orange+label:after {
[type=checkbox].filled-in:checked.chk-col-orange+label:after {
border: 2px solid #FF9800;
border: 2px solid #FF9800;
background-color: #FF9800
background-color: #FF9800
}
}
[type=checkbox].filled-in:checked.chk-col-deep-orange+label:after {
[type=checkbox].filled-in:checked.chk-col-deep-orange+label:after {
border: 2px solid #FF5722;
border: 2px solid #FF5722;
background-color: #FF5722
background-color: #FF5722
}
}
[type=checkbox].filled-in:checked.chk-col-brown+label:after {
[type=checkbox].filled-in:checked.chk-col-brown+label:after {
border: 2px solid #795548;
border: 2px solid #795548;
background-color: #795548
background-color: #795548
}
}
[type=checkbox].filled-in:checked.chk-col-grey+label:after {
[type=checkbox].filled-in:checked.chk-col-grey+label:after {
border: 2px solid #9E9E9E;
border: 2px solid #9E9E9E;
background-color: #9E9E9E
background-color: #9E9E9E
}
}
[type=checkbox].filled-in:checked.chk-col-blue-grey+label:after {
[type=checkbox].filled-in:checked.chk-col-blue-grey+label:after {
border: 2px solid #607D8B;
border: 2px solid #607D8B;
background-color: #607D8B
background-color: #607D8B
}
}
[type=checkbox].filled-in:checked.chk-col-black+label:after {
[type=checkbox].filled-in:checked.chk-col-black+label:after {
border: 2px solid #000000;
border: 2px solid #000000;
background-color: #000000
background-color: #000000
}
}
[type=checkbox].filled-in:checked.chk-col-white+label:after {
[type=checkbox].filled-in:checked.chk-col-white+label:after {
border: 2px solid #ffffff;
border: 2px solid #ffffff;
background-color: #ffffff
background-color: #ffffff
}
}
[type=radio]:not(:checked)+label {
[type=radio]:not(:checked)+label {
padding-left: 26px;
padding-left: 26px;
height: 25px;
height: 25px;
line-height: 25px;
line-height: 25px;
font-weight: normal
font-weight: normal
}
}
[type=radio]:checked+label {
[type=radio]:checked+label {
padding-left: 26px;
padding-left: 26px;
height: 25px;
height: 25px;
line-height: 25px;
line-height: 25px;
font-weight: normal
font-weight: normal
}
}
[type=radio].radio-col-red:checked+label:after {
[type=radio].radio-col-red:checked+label:after {
background-color: #fb3a3a;
background-color: #fb3a3a;
border-color: #fb3a3a;
border-color: #fb3a3a;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-pink:checked+label:after {
[type=radio].radio-col-pink:checked+label:after {
background-color: #E91E63;
background-color: #E91E63;
border-color: #E91E63;
border-color: #E91E63;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-purple:checked+label:after {
[type=radio].radio-col-purple:checked+label:after {
background-color: #7460ee;
background-color: #7460ee;
border-color: #7460ee;
border-color: #7460ee;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-deep-purple:checked+label:after {
[type=radio].radio-col-deep-purple:checked+label:after {
background-color: #673AB7;
background-color: #673AB7;
border-color: #673AB7;
border-color: #673AB7;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-indigo:checked+label:after {
[type=radio].radio-col-indigo:checked+label:after {
background-color: #3F51B5;
background-color: #3F51B5;
border-color: #3F51B5;
border-color: #3F51B5;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-blue:checked+label:after {
[type=radio].radio-col-blue:checked+label:after {
background-color: #02bec9;
background-color: #02bec9;
border-color: #02bec9;
border-color: #02bec9;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-light-blue:checked+label:after {
[type=radio].radio-col-light-blue:checked+label:after {
background-color: #03A9F4;
background-color: #03A9F4;
border-color: #03A9F4;
border-color: #03A9F4;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-cyan:checked+label:after {
[type=radio].radio-col-cyan:checked+label:after {
background-color: #00BCD4;
background-color: #00BCD4;
border-color: #00BCD4;
border-color: #00BCD4;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-teal:checked+label:after {
[type=radio].radio-col-teal:checked+label:after {
background-color: #009688;
background-color: #009688;
border-color: #009688;
border-color: #009688;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-green:checked+label:after {
[type=radio].radio-col-green:checked+label:after {
background-color: #26c6da;
background-color: #26c6da;
border-color: #26c6da;
border-color: #26c6da;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-light-green:checked+label:after {
[type=radio].radio-col-light-green:checked+label:after {
background-color: #8BC34A;
background-color: #8BC34A;
border-color: #8BC34A;
border-color: #8BC34A;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-lime:checked+label:after {
[type=radio].radio-col-lime:checked+label:after {
background-color: #CDDC39;
background-color: #CDDC39;
border-color: #CDDC39;
border-color: #CDDC39;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-yellow:checked+label:after {
[type=radio].radio-col-yellow:checked+label:after {
background-color: #ffe821;
background-color: #ffe821;
border-color: #ffe821;
border-color: #ffe821;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-amber:checked+label:after {
[type=radio].radio-col-amber:checked+label:after {
background-color: #FFC107;
background-color: #FFC107;
border-color: #FFC107;
border-color: #FFC107;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-orange:checked+label:after {
[type=radio].radio-col-orange:checked+label:after {
background-color: #FF9800;
background-color: #FF9800;
border-color: #FF9800;
border-color: #FF9800;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-deep-orange:checked+label:after {
[type=radio].radio-col-deep-orange:checked+label:after {
background-color: #FF5722;
background-color: #FF5722;
border-color: #FF5722;
border-color: #FF5722;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-brown:checked+label:after {
[type=radio].radio-col-brown:checked+label:after {
background-color: #795548;
background-color: #795548;
border-color: #795548;
border-color: #795548;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-grey:checked+label:after {
[type=radio].radio-col-grey:checked+label:after {
background-color: #9E9E9E;
background-color: #9E9E9E;
border-color: #9E9E9E;
border-color: #9E9E9E;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-blue-grey:checked+label:after {
[type=radio].radio-col-blue-grey:checked+label:after {
background-color: #607D8B;
background-color: #607D8B;
border-color: #607D8B;
border-color: #607D8B;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-black:checked+label:after {
[type=radio].radio-col-black:checked+label:after {
background-color: #000000;
background-color: #000000;
border-color: #000000;
border-color: #000000;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].radio-col-white:checked+label:after {
[type=radio].radio-col-white:checked+label:after {
background-color: #ffffff;
background-color: #ffffff;
border-color: #ffffff;
border-color: #ffffff;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-red:checked+label:before {
[type=radio].with-gap.radio-col-red:checked+label:before {
border: 2px solid #fb3a3a;
border: 2px solid #fb3a3a;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-red:checked+label:after {
[type=radio].with-gap.radio-col-red:checked+label:after {
background-color: #fb3a3a;
background-color: #fb3a3a;
border: 2px solid #fb3a3a;
border: 2px solid #fb3a3a;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-pink:checked+label:before {
[type=radio].with-gap.radio-col-pink:checked+label:before {
border: 2px solid #E91E63;
border: 2px solid #E91E63;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-pink:checked+label:after {
[type=radio].with-gap.radio-col-pink:checked+label:after {
background-color: #E91E63;
background-color: #E91E63;
border: 2px solid #E91E63;
border: 2px solid #E91E63;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-purple:checked+label:before {
[type=radio].with-gap.radio-col-purple:checked+label:before {
border: 2px solid #7460ee;
border: 2px solid #7460ee;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-purple:checked+label:after {
[type=radio].with-gap.radio-col-purple:checked+label:after {
background-color: #7460ee;
background-color: #7460ee;
border: 2px solid #7460ee;
border: 2px solid #7460ee;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-deep-purple:checked+label:before {
[type=radio].with-gap.radio-col-deep-purple:checked+label:before {
border: 2px solid #673AB7;
border: 2px solid #673AB7;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-deep-purple:checked+label:after {
[type=radio].with-gap.radio-col-deep-purple:checked+label:after {
background-color: #673AB7;
background-color: #673AB7;
border: 2px solid #673AB7;
border: 2px solid #673AB7;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-indigo:checked+label:before {
[type=radio].with-gap.radio-col-indigo:checked+label:before {
border: 2px solid #3F51B5;
border: 2px solid #3F51B5;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-indigo:checked+label:after {
[type=radio].with-gap.radio-col-indigo:checked+label:after {
background-color: #3F51B5;
background-color: #3F51B5;
border: 2px solid #3F51B5;
border: 2px solid #3F51B5;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-blue:checked+label:before {
[type=radio].with-gap.radio-col-blue:checked+label:before {
border: 2px solid #02bec9;
border: 2px solid #02bec9;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-blue:checked+label:after {
[type=radio].with-gap.radio-col-blue:checked+label:after {
background-color: #02bec9;
background-color: #02bec9;
border: 2px solid #02bec9;
border: 2px solid #02bec9;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-light-blue:checked+label:before {
[type=radio].with-gap.radio-col-light-blue:checked+label:before {
border: 2px solid #03A9F4;
border: 2px solid #03A9F4;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-light-blue:checked+label:after {
[type=radio].with-gap.radio-col-light-blue:checked+label:after {
background-color: #03A9F4;
background-color: #03A9F4;
border: 2px solid #03A9F4;
border: 2px solid #03A9F4;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-cyan:checked+label:before {
[type=radio].with-gap.radio-col-cyan:checked+label:before {
border: 2px solid #00BCD4;
border: 2px solid #00BCD4;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-cyan:checked+label:after {
[type=radio].with-gap.radio-col-cyan:checked+label:after {
background-color: #00BCD4;
background-color: #00BCD4;
border: 2px solid #00BCD4;
border: 2px solid #00BCD4;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-teal:checked+label:before {
[type=radio].with-gap.radio-col-teal:checked+label:before {
border: 2px solid #009688;
border: 2px solid #009688;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-teal:checked+label:after {
[type=radio].with-gap.radio-col-teal:checked+label:after {
background-color: #009688;
background-color: #009688;
border: 2px solid #009688;
border: 2px solid #009688;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-green:checked+label:before {
[type=radio].with-gap.radio-col-green:checked+label:before {
border: 2px solid #26c6da;
border: 2px solid #26c6da;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-green:checked+label:after {
[type=radio].with-gap.radio-col-green:checked+label:after {
background-color: #26c6da;
background-color: #26c6da;
border: 2px solid #26c6da;
border: 2px solid #26c6da;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-light-green:checked+label:before {
[type=radio].with-gap.radio-col-light-green:checked+label:before {
border: 2px solid #8BC34A;
border: 2px solid #8BC34A;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-light-green:checked+label:after {
[type=radio].with-gap.radio-col-light-green:checked+label:after {
background-color: #8BC34A;
background-color: #8BC34A;
border: 2px solid #8BC34A;
border: 2px solid #8BC34A;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-lime:checked+label:before {
[type=radio].with-gap.radio-col-lime:checked+label:before {
border: 2px solid #CDDC39;
border: 2px solid #CDDC39;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-lime:checked+label:after {
[type=radio].with-gap.radio-col-lime:checked+label:after {
background-color: #CDDC39;
background-color: #CDDC39;
border: 2px solid #CDDC39;
border: 2px solid #CDDC39;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-yellow:checked+label:before {
[type=radio].with-gap.radio-col-yellow:checked+label:before {
border: 2px solid #ffe821;
border: 2px solid #ffe821;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-yellow:checked+label:after {
[type=radio].with-gap.radio-col-yellow:checked+label:after {
background-color: #ffe821;
background-color: #ffe821;
border: 2px solid #ffe821;
border: 2px solid #ffe821;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-amber:checked+label:before {
[type=radio].with-gap.radio-col-amber:checked+label:before {
border: 2px solid #FFC107;
border: 2px solid #FFC107;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-amber:checked+label:after {
[type=radio].with-gap.radio-col-amber:checked+label:after {
background-color: #FFC107;
background-color: #FFC107;
border: 2px solid #FFC107;
border: 2px solid #FFC107;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-orange:checked+label:before {
[type=radio].with-gap.radio-col-orange:checked+label:before {
border: 2px solid #FF9800;
border: 2px solid #FF9800;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-orange:checked+label:after {
[type=radio].with-gap.radio-col-orange:checked+label:after {
background-color: #FF9800;
background-color: #FF9800;
border: 2px solid #FF9800;
border: 2px solid #FF9800;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-deep-orange:checked+label:before {
[type=radio].with-gap.radio-col-deep-orange:checked+label:before {
border: 2px solid #FF5722;
border: 2px solid #FF5722;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-deep-orange:checked+label:after {
[type=radio].with-gap.radio-col-deep-orange:checked+label:after {
background-color: #FF5722;
background-color: #FF5722;
border: 2px solid #FF5722;
border: 2px solid #FF5722;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-brown:checked+label:before {
[type=radio].with-gap.radio-col-brown:checked+label:before {
border: 2px solid #795548;
border: 2px solid #795548;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-brown:checked+label:after {
[type=radio].with-gap.radio-col-brown:checked+label:after {
background-color: #795548;
background-color: #795548;
border: 2px solid #795548;
border: 2px solid #795548;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-grey:checked+label:before {
[type=radio].with-gap.radio-col-grey:checked+label:before {
border: 2px solid #9E9E9E;
border: 2px solid #9E9E9E;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-grey:checked+label:after {
[type=radio].with-gap.radio-col-grey:checked+label:after {
background-color: #9E9E9E;
background-color: #9E9E9E;
border: 2px solid #9E9E9E;
border: 2px solid #9E9E9E;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-blue-grey:checked+label:before {
[type=radio].with-gap.radio-col-blue-grey:checked+label:before {
border: 2px solid #607D8B;
border: 2px solid #607D8B;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-blue-grey:checked+label:after {
[type=radio].with-gap.radio-col-blue-grey:checked+label:after {
background-color: #607D8B;
background-color: #607D8B;
border: 2px solid #607D8B;
border: 2px solid #607D8B;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-black:checked+label:before {
[type=radio].with-gap.radio-col-black:checked+label:before {
border: 2px solid #000000;
border: 2px solid #000000;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-black:checked+label:after {
[type=radio].with-gap.radio-col-black:checked+label:after {
background-color: #000000;
background-color: #000000;
border: 2px solid #000000;
border: 2px solid #000000;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-white:checked+label:before {
[type=radio].with-gap.radio-col-white:checked+label:before {
border: 2px solid #ffffff;
border: 2px solid #ffffff;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
[type=radio].with-gap.radio-col-white:checked+label:after {
[type=radio].with-gap.radio-col-white:checked+label:after {
background-color: #ffffff;
background-color: #ffffff;
border: 2px solid #ffffff;
border: 2px solid #ffffff;
-webkit-animation: ripple 0.2s linear forwards;
-webkit-animation: ripple 0.2s linear forwards;
animation: ripple 0.2s linear forwards
animation: ripple 0.2s linear forwards
}
}
.switch label {
.switch label {
font-weight: normal;
font-weight: normal;
font-size: 13px
font-size: 13px
}
}
.switch label .lever {
.switch label .lever {
margin: 0 14px
margin: 0 14px
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-red:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-red:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(251, 58, 58, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(251, 58, 58, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(251, 58, 58, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(251, 58, 58, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-red {
.switch label input[type=checkbox]:checked+.lever.switch-col-red {
background-color: rgba(251, 58, 58, 0.5)
background-color: rgba(251, 58, 58, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-red:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-red:after {
background-color: #fb3a3a
background-color: #fb3a3a
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-pink:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-pink:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(233, 30, 99, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(233, 30, 99, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(233, 30, 99, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(233, 30, 99, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-pink {
.switch label input[type=checkbox]:checked+.lever.switch-col-pink {
background-color: rgba(233, 30, 99, 0.5)
background-color: rgba(233, 30, 99, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-pink:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-pink:after {
background-color: #E91E63
background-color: #E91E63
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-purple:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-purple:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(116, 96, 238, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(116, 96, 238, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(116, 96, 238, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(116, 96, 238, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-purple {
.switch label input[type=checkbox]:checked+.lever.switch-col-purple {
background-color: rgba(116, 96, 238, 0.5)
background-color: rgba(116, 96, 238, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-purple:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-purple:after {
background-color: #7460ee
background-color: #7460ee
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-deep-purple:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-deep-purple:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(103, 58, 183, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(103, 58, 183, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(103, 58, 183, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(103, 58, 183, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-purple {
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-purple {
background-color: rgba(103, 58, 183, 0.5)
background-color: rgba(103, 58, 183, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-purple:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-purple:after {
background-color: #673AB7
background-color: #673AB7
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-indigo:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-indigo:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 81, 181, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 81, 181, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 81, 181, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(63, 81, 181, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-indigo {
.switch label input[type=checkbox]:checked+.lever.switch-col-indigo {
background-color: rgba(63, 81, 181, 0.5)
background-color: rgba(63, 81, 181, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-indigo:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-indigo:after {
background-color: #3F51B5
background-color: #3F51B5
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-blue:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-blue:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(2, 190, 201, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(2, 190, 201, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(2, 190, 201, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(2, 190, 201, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-blue {
.switch label input[type=checkbox]:checked+.lever.switch-col-blue {
background-color: rgba(2, 190, 201, 0.5)
background-color: rgba(2, 190, 201, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-blue:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-blue:after {
background-color: #02bec9
background-color: #02bec9
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-light-blue:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-light-blue:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(3, 169, 244, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(3, 169, 244, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(3, 169, 244, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(3, 169, 244, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-light-blue {
.switch label input[type=checkbox]:checked+.lever.switch-col-light-blue {
background-color: rgba(3, 169, 244, 0.5)
background-color: rgba(3, 169, 244, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-light-blue:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-light-blue:after {
background-color: #03A9F4
background-color: #03A9F4
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-cyan:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-cyan:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 188, 212, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 188, 212, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 188, 212, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 188, 212, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-cyan {
.switch label input[type=checkbox]:checked+.lever.switch-col-cyan {
background-color: rgba(0, 188, 212, 0.5)
background-color: rgba(0, 188, 212, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-cyan:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-cyan:after {
background-color: #00BCD4
background-color: #00BCD4
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-teal:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-teal:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 150, 136, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 150, 136, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 150, 136, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 150, 136, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-teal {
.switch label input[type=checkbox]:checked+.lever.switch-col-teal {
background-color: rgba(0, 150, 136, 0.5)
background-color: rgba(0, 150, 136, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-teal:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-teal:after {
background-color: #009688
background-color: #009688
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-green:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-green:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 198, 218, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 198, 218, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 198, 218, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 198, 218, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-green {
.switch label input[type=checkbox]:checked+.lever.switch-col-green {
background-color: rgba(38, 198, 218, 0.5)
background-color: rgba(38, 198, 218, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-green:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-green:after {
background-color: #26c6da
background-color: #26c6da
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-light-green:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-light-green:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(139, 195, 74, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(139, 195, 74, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(139, 195, 74, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(139, 195, 74, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-light-green {
.switch label input[type=checkbox]:checked+.lever.switch-col-light-green {
background-color: rgba(139, 195, 74, 0.5)
background-color: rgba(139, 195, 74, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-light-green:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-light-green:after {
background-color: #8BC34A
background-color: #8BC34A
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-lime:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-lime:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(205, 220, 57, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(205, 220, 57, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(205, 220, 57, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(205, 220, 57, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-lime {
.switch label input[type=checkbox]:checked+.lever.switch-col-lime {
background-color: rgba(205, 220, 57, 0.5)
background-color: rgba(205, 220, 57, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-lime:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-lime:after {
background-color: #CDDC39
background-color: #CDDC39
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-yellow:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-yellow:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 232, 33, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 232, 33, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 232, 33, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 232, 33, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-yellow {
.switch label input[type=checkbox]:checked+.lever.switch-col-yellow {
background-color: rgba(255, 232, 33, 0.5)
background-color: rgba(255, 232, 33, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-yellow:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-yellow:after {
background-color: #ffe821
background-color: #ffe821
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-amber:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-amber:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 193, 7, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 193, 7, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 193, 7, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 193, 7, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-amber {
.switch label input[type=checkbox]:checked+.lever.switch-col-amber {
background-color: rgba(255, 193, 7, 0.5)
background-color: rgba(255, 193, 7, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-amber:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-amber:after {
background-color: #FFC107
background-color: #FFC107
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-orange:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-orange:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 152, 0, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-orange {
.switch label input[type=checkbox]:checked+.lever.switch-col-orange {
background-color: rgba(255, 152, 0, 0.5)
background-color: rgba(255, 152, 0, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-orange:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-orange:after {
background-color: #FF9800
background-color: #FF9800
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-deep-orange:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-deep-orange:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 87, 34, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 87, 34, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 87, 34, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 87, 34, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-orange {
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-orange {
background-color: rgba(255, 87, 34, 0.5)
background-color: rgba(255, 87, 34, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-orange:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-deep-orange:after {
background-color: #FF5722
background-color: #FF5722
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-brown:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-brown:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(121, 85, 72, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(121, 85, 72, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(121, 85, 72, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(121, 85, 72, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-brown {
.switch label input[type=checkbox]:checked+.lever.switch-col-brown {
background-color: rgba(121, 85, 72, 0.5)
background-color: rgba(121, 85, 72, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-brown:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-brown:after {
background-color: #795548
background-color: #795548
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-grey:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-grey:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(158, 158, 158, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(158, 158, 158, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(158, 158, 158, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(158, 158, 158, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-grey {
.switch label input[type=checkbox]:checked+.lever.switch-col-grey {
background-color: rgba(158, 158, 158, 0.5)
background-color: rgba(158, 158, 158, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-grey:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-grey:after {
background-color: #9E9E9E
background-color: #9E9E9E
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-blue-grey:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-blue-grey:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(96, 125, 139, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(96, 125, 139, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(96, 125, 139, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(96, 125, 139, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-blue-grey {
.switch label input[type=checkbox]:checked+.lever.switch-col-blue-grey {
background-color: rgba(96, 125, 139, 0.5)
background-color: rgba(96, 125, 139, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-blue-grey:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-blue-grey:after {
background-color: #607D8B
background-color: #607D8B
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-black:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-black:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-black {
.switch label input[type=checkbox]:checked+.lever.switch-col-black {
background-color: rgba(0, 0, 0, 0.5)
background-color: rgba(0, 0, 0, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-black:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-black:after {
background-color: #000000
background-color: #000000
}
}
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-white:active:after {
.switch label input[type=checkbox]:checked:not(:disabled)~.lever.switch-col-white:active:after {
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.1);
-webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.1);
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.1)
box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(255, 255, 255, 0.1)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-white {
.switch label input[type=checkbox]:checked+.lever.switch-col-white {
background-color: rgba(255, 255, 255, 0.5)
background-color: rgba(255, 255, 255, 0.5)
}
}
.switch label input[type=checkbox]:checked+.lever.switch-col-white:after {
.switch label input[type=checkbox]:checked+.lever.switch-col-white:after {
background-color: #ffffff
background-color: #ffffff
}
}
JFIF


  

j E !1A"Qaq#2BR 3r$bCSc%D7!1AQ"aq2#R3B$Cr ?P
@(P
@(P
@(P
@(P
@(>P3=ittt{$imzCt$k3{R5Gw*SrGGxHC'mMh'ʭ Ki$>
˃vJ1}&Kl|FK2C[NQmT9nmcKSe߱dB4 ;E@z5\x9Jř*8e5c̱@I|\vT+VI b:q>͕[>]YbR2'|g8d⵫V~WQSSnq؟;8-۱2یȄ]q-O#GDpF_ [,t:^=%gUF[l8TbKɉO&$2I A$d⩲g#@KF fy`i{ -T'O":4WD{Cr%!yr__J0Ah0H`mFlz}v #$>fnB80aWi"LZ"ڪdwP
@(P
@(P
@(P
@(P
;ͮn#s"ipdy/UԼGѮŒ ݳo1dӈq"ݏ-G+q&dJB1.cknϓ^vcb | ] 39 8kf,ms^:+N,hFǩϋH\knw($s ƍ9VY2 @, ,\:C`{<%ې'}og&ǺX0;$<X*') }m\಺ +I! tԸO0XAkR-#6<,۵TN zBψ61iV t*I͵E8T)&c/M j7]&kY.@E B o98̺j5IEy4l;m,QHNFR4IUW[rOcmIc%gqݯ,nyjkr򒄪{Y'sTymnCO֯0jFb gvg}$R>[|An8;aw3V3urbJ%O%Q&ZR/U6I"5V"5$RiP
@(P
@(P
@(P
@(P
@( fQUP:CEOn1Xo7{UIy㘯jAyGu6GDq={Hݱ=,O09:?,;P8|$* .4Y3Wi)W^QbD.c9.}T[WMviia,'!ʫ @Ibjbz33{QwUɯ8޲ u:<g:Z_KEh.$)'/O@ASmx:upޙQq V~άP"g9򭧈.9;>; :'K@Ē]I菫: dV5=vHf$!':K0]@T5*6/.WЊ2ʠ[ ܃dsʴwJ6UųEvo;ibN3psԅ<U4cIri'پ8gIc,dr<s=0Mo$dk 9e ݥձ5 x5hI
_&rHH5\\h(MGjJlj-vP
@(P
@(P
@(P
@(P
|6k9? ׺=:Y].O-ڌ}(a1xGO!ZvMUlw?$Đtu+Տ&n(:Y
?@!qg[jJǒv#y8<Fvrd|*qԻ (U>$byI]%rDxyXYf-dnsv8djvKCy;h}@;rUF9"`;f^ȮH8
e #gf k9J"'~X8PT3}dܴ+ ٫RQi衬vQ-IfyiV}AW4[_VԶjrY>D#r&A
PTKg`jy5O6IZI]Hd+SbňVT
U|(s^9V&$
Y3D@x'.a($\M'\OM~:6"BOvɀX>!֫t'ηt{s]߇\VS0IˤbY0FsVd7iSh՜~I7VYR[j
F{yT[$ϗ¢Y1^D@(P
@(P
@(P
@(P
@(/72Ȩ:٢lQM*z{7sd`}ִuRn="(e3B #spQn`XϦ9dI&喺+#@α`) 䃻yr#}]|"ok0<v8FY;1li r2܎M_Tgg2fӅLQؼF1AbNkbiAa#N2<6%h9/@* i
\y`3ju!(r]kuI#)E!uvp͜mDvz_ =;ɒ
wk.S b"&+[n8xrH_aZˉ蛓k]K ',Nqzdr){dH,`9%!;Νf<5;4h-UO-- rQ$60y-5V :OvV&:! oÑh'+:&6W e4oy2e:X,$|kS=R<n8wrW&Oi#cSR$k.[ڥg}
'LҰ`,gIs׮< |΄U_7^L
@(P
@(P
@(P
@(P
@(7`Z? 9aW=6_9꺍ڻ=|4KQm#o}=s1\9F,i*mƦ鞛s#<+j jWs<#TVÑsq*l*}* ]g'b2'þKBJ2"?n 鬝0q<aSqkBqќ孚V! BF[#Xd9TTw8TdĐGĐt
NpGWcl4L[QKYeveQ88G gc8"WbIԫN+1Z2Z5U7FLeKrH+mr}ZqPl9'-LT'j]ݭirPP)Dd\Hb \=q=T~ݩ72Exe3RJ<` hWҹJ0e0y>MTzD %KMnki88Il-L1FNң͘Tu'EPj/TA|*aQ6 g=k*+reǩzao^$KY|$k!Ê *w\{@l]\(Ɏ<|KeW:€P
@(P
@(P
@(P
@(P
@W.꣩u5QEsrzC3w,m𣚣itsdDm׎[*b]u:cq=I=y Lo[ _e;- 4$c;ρsQbN.D{ 1ħQw.mif83meԺI"<ze b7#呌n0:վG+Q7<U_o z.uJp@F Q3VJ<U1K}VmЪ*όwܖ[rBfeSK>?*6ImdAVm-}=X]]ٔILPN| t4n\a‹lu3HR3)Ua󵉫]rG}¹bHș+8\#R\h4B-Jki]6xmxI{6d۹=ME8{m&50c|IgRo5horMkN=A>Dr?*[ܻF7>ܟGO;CyJ*c:Jʊ9IFp':JPKbo grXiSoΐI݋ `8ZN*2XgV‹4si' H۟ʲeԕaQgDc VrlA: Fg۟ʢ"qUރƩh,uP
@(P
@(P
@(P
@(>7)MWe=B6j}-~ާzojz}9c7'8X<p)kX0_B4f9`odg,VƫB-1\&Y9:!rE$`j9N:bf3r |L2t<<J1h[fO_|8 gHO떪#C7pvP݉ I3}k*Rōrɺ٪)HH oq[ҳtTYqWG%x Ͱú|4Hv笔t8_v綌#GQeWA:UMD6IN۞M3FF8;jru8#B![qGSa [gv}7N[Dk`6l=+c,).8̈́wh{rMAv 9P7ÙNR{4gpUoA<>-Y6?`GWNTPªVIeӢ 0ĩ`F^ӫ7Ipy}KN,b lz=pszMrF80]ވez.>c~x9(W{1wiIa@?_¡l{Q'^\ZLMP.[ xw5t-I2ΪfrGkʝQ@(P
@(P
@(P
@(P
@(( 8,&Oqd&IRF^X_F]>xmmg`+_?rgj,n2wcV߫`/;t́nFcyD3Dֵt3v#
LS@njgdO!],y5\'8v(˰\<ᓏ!Z
\=ȳD0ψ&ux[,1T[8$lK['2Dx[VYDTxsWBm{|25
ohQщn)+ 0Emi׻+ pȰ,+wadm@%c
8ĐTL8
}2O2ѤgrrO.V{>UQ
4lsT\k[~w #dǼs8fA$Mf&φXMR$GqUݛR#VFyi%uP|O<K0yJ/-X&O
O@O#??vCUw&W\U 1.ή>cLQ!)#'nQJ?})\G
IyHIKsN:Xi2.lLUf. \hT}D)XEdfRXF6:Ҵ[E#fPrWJ-^2嶬2Dk{!DdXU"TY`+ʝA@(P
@(P
@(P
@(P
@(.gqrpGzN޵?ڭgѽ khخ PyW;|q/|Їǧ!'Ca~ly3|WI9u&Pk 'VlVL{"\RmD#ϗ˕ta#lLp7#6nX݂Q,'3>#r;}wהU(K9{KAM̄nS.1>Yϋ -Tfd=(=840:e<Ԏ|NAe+1I{13j^/I$4Il޺a 796Wm
˘I2HdGo vNѓס:i^OզQAkp-u. nNnϣ{Ig_٭{[2
7 o/rha~G? 6.&n((ėSYgL`ZY5PQj3ED܁$t-j:]4t(.Eٶ̯ePzB2wm>[ Jt'dRO#aK<sXe䃂[]ǀcfp0<9'#|[Cg; oOrJPvC,q*ĄsTH==V `v?ڲkHFn.8-ֹp5`˝1@(P
@(P
@(P
@(P
@(sY^ 7wܻAFd zU~OwUv'-
c
?Jj&t4pe/ r|#]LpSl/2e@t[C,kYe6lKkVQ803NmrsɁ?-f% *nX/.m PVT3 crX\?%D9RiRUBFSyddѵg Fs0:Ӻ;ǂ@\+LBj'
W3Ken}FUdQ}v.&2*#%
@NWi}їyٰػ,,JFD<["3&qyW0;~rkEμqNwqUu6y,ssϻv'"8]Dk>V5N6ǯ?_|[NsV r'(J2q)%({7bIv@$N6W75=+D|S#u䶮ΪImo]#|:#@
l$n rrmׁp$U<Ztw9$1kkmJ"SlBp!Qe+D{P@l6p:?W009 L!\wt;Oֆ#T6>#x>_,!oڄpcJZv^|V2tP
@(P
@(P
@(P
@(3y@3ohvڒF]m{{'@2pyWSZ'Gߵ^qyqWrYgčCddoo{$b17-l1W)כۙ˯!#2@sJ@|UҍEMB=f)zG#a`I޶cejY-x9@ߞ*t3. w|oA^:@y殦=dng5q;WPyAmO pgwlJvg
95} Sq#EE KF𐀶Ftf†"uK?cCJ\1͵.8 DB" UF%I&e)9=KQ>4kA~@ɢU5: u6J碫"s_qYU""V2Ke1"zݐZ<44UoӃyv(F=n~CΧ:/vJtc5^ّem6-dbAJMD뚅I'mDZ9'N;ڄHfQa=3,a z~^.Z9ž>|2q5c5'ǎqBPϢeLA/$G cN6$'Ԓ˦72+c!TI$Yk}F,>_駨+;s~3m>=̅[)<hh񤐘cr"978$ F8q=EZ*yIwMkyAA)FIrhn4b`auiBr.k03,귃M"ֻ/&[#P
@(P
@(P
@(P
@(>?o=kj)b/eE(Ҵ5dhU7>zQ%lPx  \5+ּN_qʄd;듾u@=x[KFC
l $[u5}LZ"aO=;r>#'km`mqTz|N}yr͙J*/2 yxŘcQa|)} o(>d sVA|HDduVG 2e`v*A5E\#9FQ^1]I+Z%h$Jtbۙ$wt1}Ų7%Q$;d1bw;+D5< Q P΍,< )<U)X\$Q5
e$~쪦4BvVJǙvXc$gcxwCN #l<*בtV 8e/0OQPedR,(q&n/ 6ְKqs. KCeU Q2H_d`JXK:.E'f]&>$[{8PNGR<޳=LpúgI*(b:m" @JӅU@b\r,3};Jn@<*R-9&e|}НKu1訶59}R:YUwZ[Y0Vmcc=zw&J ̨R5WgKMXGkKX[FBBAvf83M}9ڲy-ͣK`EE̝q@(P
@(P
@(P
@(P
@\3#l@W %-Љ+/ 
%m23w>fQyj#Ҵݯ.lМVN;0N1}:Ys ;Վ;6V|"6|7]&G0AQbQF=|jS(I7u5U
XS_]خ-dyaI7~Zcr'n}6vA{.Wٟk/SIgپ s^,"meF5e#?Y=%yMv*[+JKyokșn{$+)`$8&E旳h^m#W^[9:d!1'' :y }uy]MQZ| >:jP+"9(8F:C5>gՕM?=W0J = .sU Vz33R[7}ֱ%&p"~ }N}+>Zjr.jc<.e5l01̞*6j`{ߐ>zf,Q1syTˑap[XMS'\tr'ïl8ȥ.$E,]Y\KRJ4FLAk
:j0ٻ}ֽ1ݨY$:c缓A%"Z9b KϦ_W:(W㓺pp#L\]*[ RƑ#ksaZ5<[{CKhidnq@dMޫ$hKڑ.n،c_g@]ޫZQ'+oEOǠ%GCVO{`u^zIvmLI,3nfbrK1$׫qb}V͑Xԛ6 5 ' VY2uP
@(P
@(P
@(P
@({ח9LרM28^^g= c:VϪ_M~7w>͍I9]=d5fR0Aفn 9lmYy*ry)bN^5&qͲNv=~5ѢV㕪kظ"ꏸ0ν%l?tВ*}=5߬7EFV}K?^y'k5 lF-,ܰA|M#Ĩٜfup,蠧?b{ Lq)eup_L^ְ"aQ"\Xڹ:K9N>wu{Ħ,VK:m)yX(NO%te6[;CĸfDNk{y{=z4Rl ͬ}k4k"&Г|/HMO:;~b70޵ĶվRLwZ@!Y0QqGL;
iV'yzu:ێ% `RW@ݛ:BiWЩB=x4sgG*H!:Y69*4Ϛ+6K޹}&uگ?sJvȏ* .|
w/bP.xkݯ`u2U]_\(ΏXyM[kSc0|˖[tq#sLyzq:<c9u1צ?J/K&*CPEȵ:DDz{1t<6[,+w@=GU,0 ;VU͊Ҹ=*e š9xT
^ЍôL2YT8Rvt_gr8ikDq<dՕta!S4 Hwpq&7㞢y;hgNd[
]NRuy 2G$˥b+\ \[ڋ%T@7K $_AGi,F SINh:A #c#VzBW{1|PW )$w<N4>+x"]G *w4,Okusp$Q?;wVpHnX-ŮX')e~
܊wqC~\8*g`P
@(P
@(P
@(P
@(䋒YK<# =EV_#bm3&jw|דNs;A"?/rv@H':`l%'*ޝ+Nj~Da=YqRO䅒 J!SV1!:Wł1a[dDӺ2WENcLø@ 5=LU|y*:GB<'^tYltx"Fqxۂbk0;˗HgˣOq/ks%,"nҶ֡Du͋|3+oHEC%YN!aWdܐ͉ͲtjAx#p8]N".FP,q$u4\oc=MpppfFחJ$/# q.#٣ ,%3 nQ=&{HW@fX#&VY-̅$f`$QdbŻqhk4%^Q[(煓D-Ѻ2#a +*&<]i \L4 6؜1HrpS<,۳lXAhM{dȪ+Z'#j3'ѭz@jW5\7vpE8ː#R3yvō+fyB"qU@f$SIf]%>}N2;[|\IFUda#9ˠ_Xj}^_Y~Z K</g}p d<.-!ZI_{l4d`@+e;aQBmVSe2JIBJm-W}ˡlkv >=plF"V-`Out]BEm Ȯd#Wxr hJVjdl5O3WNƶ<d*2_\714]ۺK"0鴞oۭ33jffrr],Iܞ諪5lܞY f,v:u'ѥ2XUne+4l춖1TKe `sϭa\7T"DΝ@(P
@(P
@(P
@(P
Q糆8X~?z^Z{_[ZtJҽW#nx;;Ъs*d]$`cBc0iEeM^^J#ݤpFH]~ЊHsIH=zMW9wFdR4$<e("DR\fXyo]jgm-"c 2*11>
⪮i'Us+쯽e[g.8ķI(n.„N4nYeIDѩTVfiOm>])PqIb[YIpgԏ bm{eBMx,J+IѠ{i"R,+2 -yo E ifxWHL* ,VCO,wQ@Gn5Y /jƱ&` oe^W|XBdny$eKL@B{ŝܚ4%.{/ *4m HH
#wPi3Y 3=ZRk$6DkDi>q>JlY関> ҨᕔY'*C+ I}.#|=txi*F'<LY;aʉF#M\ɕ cʤɗod\C:KuINŮ'XjWjkui~M(ڿ?Ǹ͗'uWRHbnڵ)e.d,!WzF_,vGrv'KR(;ƾ4@,1hLbFmax;wxk w,qD_res`cq|b_ 4K)g#DL6 !I}~ Uf\imz9\jaOO?u$W]J4LjbNI (WK]<E)jYoZg"[^#Uns60sjd}5t/,z~<?TRǞ"@*ߗ?*rS ܍zo|cC:*o
w*-B(G19&KK^|
@(P
@(P
@(P
@(P%\nnB׺j5Szp1on.rYdSrn@u OfeF1$Tc?f75=-#f~d,4V+2&0b#Zzbxַ|mZЬjcft:mJCj=><s%*?T.7^%wU/y9br+]d*A+^z:i/T=ûImխO*|ATsHi/]Fx;LʒpL*2Ye6t#>Wb?p{lđhQ<o#2,oJ#Fb֬jk[fq e3n,n[I
ۺ$`w>0 (;?ȮN{[.jX [w"L((-` dM1#QlڃG éFUepUeea AErJ+-`^}۸Mii$WO,j*Km滍r'ĝSOsuI$ƬS+E|eբrчm*a ^BZvgo nf/YR`rpY
#ݫk;O.|ŝs -e`4>| 1bxP*^֟徿KgcgKkhwe"B4K'FwF9iz=jKlIܼv?ȅpj: 9G7)h# ƣT+"FFG V)Ki,sn^W|gee]{ t(1HJ!BWYisrxLj6G|Lv,Ju $6=F718g%0 \Ǚ4K{N aF||vǧ럕Eޑ໖l]XɰE"(E}r1&1rSTexE[ 7'1X\tQf6<G.AOު6Tpp/>k\(P
@(P
@(P
@(P
dDycOSSt"]=}0G!]/A^W%EwgQ{waxßʼVνH-)ltd[Oɢ[tA90g?{M&r}7bi6tu2^ uB`iwP9c]
/v(R^h :KyZ;w䴪 ;PeIFFߩK~mOk=i%\֓w j#eV:VPD/o3YO%Q 8$vRBdT w Qt6t^FVhxGfQ=|n $beIFP1D@m(w65]p !Dy
s
E# 1* (IA`Xd;cmm 59 txGRd ,d l1۲reus[x,Ǎ@3iUIN~U{WZqk<w\gg 3彚VyDaTX7y&Fv!yGT=}?-ymHV;ȦT]&m3FaK]e"ڿIlXg6$+S*}r&]ڏKrJU(7O1=ᝤKtHaa n*G"MY*albJ1ӁZz[L%g== [k| ,k419v4ڥd߿{۳q//A8"QJ7z:0FU]:I8j_ t'f#,Rq3ڤS!wmդD'#z\PWop|C'a0
ko taEˏ #N'9S$F}ae#U|^9ŻߗΪ%\w2+o~X,*}OLthn/nj 玽Hϕ$N1mt_<'`<X#g'luǙ~M%=U9۶iZ&MA `WP
@(P
@(P
@(P
@( ovG@a׫*7?k!{ rZ1(zݚ>Nn$}yʏi顆_vfA$*!7'(&ՄߞL͌*:;la:mww j%u1cж,kbL׽;g$;[cQ u@]_C[$`smb+Nq7`{9FXKr}\!=Hf;{ųʶMEHd, NY#\P%%Eg1/p(E%kogyFG+HHc<i@ɛydbMR4Yk-׃N{r Ŏ 2@cDK{uE=܊Ke4XRķ63 =o8wrwn2Mgum8de;HvY/vѴ%*V
QGoxEw" 2"5ۘa|!{*kœRlm&ḽIx  gAmĊQp_.~dm QY pcHR=h2:$,91lP?+Sx{9yoywm9{Ig{08&)/x_Ԣ0 i*Uv)ɵ(xgq{xnZF@O Sqcep1^Ƚi*th]YhͱɭB;J<fu]dAY}O
װEZh] OJom Q$3bt%|InkrYpJmM̅#p8#sf>
<Bry2ƮYQ $XZ@3y!ڣ.˅FϥN>.gZƳH:śğ>Xl07ٻT0cb||%''ξUQ2y';hb]2yG5;Ixp)&6 uqM@(P
@(P
@(P
@()eg]L29+j֓I,ZQꍤ"qj~凡ڡ{6f98'V89V=*@4݈N T̸'rP&3W;`3*# -bn0u uik.9[Y6wE{it19';gws9=j߅'6F'o䶜<M[pON2kwDqDK=^2K΅J/> LeI$Drb|.5م3t}r 3+3[$Р #64>qcBLH} 'yʫ+$WR7zd5wLiε>:.K2좺A^H^2<j2ƎNHxDŽP% fçɤ;].J{# w[@:[F݂tш Ds$NWH,
Ε\U#gFswxuCkd]ht ,>"Ud*BXrUڏmopWw?E ʺkLbFS,g2'rv7ϓT=+bsh8?sqIc#_MpA<2Gv9wXB,ZBwclc$B s'h8KK8`f8cDL1@ࢲB=ϣj k|_<c/]-}p0;@Jo'8bŃh 0a9ֳ\:#\U!끌lN9o(3b >FdZKfLY$~>*2|˲|;oA|~fdVhr1G?_va'e#V?/U62]TQ+p}«<pybG)TΰI2oPE_fP
@(P
@(P
@(P
@HMQ͆zv޽EmM{7q#zVCy/No`iU\;W>0 .|kvr&! k#9p> 1鑀==+gO(I1.6'z2~VyiVx^fi <:q[}%51^&ڠee!Yo#br}CTU}t=?In_3\~M_;TF`G04 bhcELwr tS3W1$~ .gU[a? d틳0bA[+&&NhaY9e˥Y.ߜ-ċ(BvR͝'JUA8.Rz+dE9}?++ZS$t{g_:xt;G" VV*GOqxIP{dm)ǔ[T qW ,rAv4R@vP*F.OY=Ax' qw Ks FDl"φF# ǽ\K5$Q-Y蟻T+Z^B#2C"#Ȋ][JSV-r_O2<- |idOvɞE>UvkVtg]ػfoĥC6*|Xfcˡ'N,_<y ӱ';i'MAٲ2ˈQ(ffd'$ (!VCq~5ɴ$ 3|qn2t~dur6񓄖 灊PMi@rzګ/0yO,htl?:->7ʢٕnҫd=DelK7\#(P
@(P
@(P
@(P2pnj{Dd%tcRUȸƕVLyyՀO
QHO(hWb6':ī#-q+p4F' ?d]#wDG-;>/
kؖQQ.O1/,D{kj: #ݥ&sorWyo>OX<<w95a >)-T;x$y&'e%^<û=;n94eroxж~g;}WX(t>-_aO/OO_k>7b2F{dĠFeȮNԾT뚯odBHK4$˝"4=[KG,^zcmb.H%Gp$Y2lk~ uD,$S|QB*TأͷGkr}RJjy{t>R;yX6f.IOX Wnrn_a=A;acq8?'5\E $M2T|<ʪx?ҨOYUD l~|c,p;/ ~"Kp]]gd=kQ H?`|
w?ukK䵸^_*8٥°K 'C$`+tEP
@(P
@(P
@(P`,ʣ T$[SlG?=%+Gz-}2^o}ABkC2OAg҈mwoWC(0\GV x:Ϙ9&A}M|gqmˢiM 2LmVbU$8U%YX8јp iiꕓqpu SyQ84*͢P 3ץ[&WGFmxl㽢 GAs T bx='/Ÿ9C$bր*U
d<.OjFM%7d{:V:aȾ6P1rzEE'^̯Һ>]T0\Bpg`I&"wvKI1h!4 *<I4{pF\ C=;}-W%Td\9#qb{<C(rFso=wE(x磇L^u9%Pf
3o?AI,Xxg/ZqNI9w፼3\g,gqkg ژ8;8.P\yj̨rc_.XpQ)-9t6J+D"i;``sQ-Q)[?
eY*P
@(P
@(P
@(P
@N\^Ę3w(vھgܫܟv‹[88+j+*sIvIߥs)XY7o^UOwmn}j${%9|uI$y3)-59#o 鿷'An&cgGMlsB<:W;}#i&k]Ӵ|٣;cyj.fFI2ge LWW*<Kp"Uu QVʣ 78qv #G,1w`5Ƒi^r
A":źPpor=1p<{WBˮ6TryI ,g#Ƨ)ʎENm|?ު[t-{/`;vS pӑ'ًSڽ_/rSzj8$$+Xdhfe~ΐaµu3Ll^/ս=eSH!7# *mƖ2|(ܒKx\1I<1%a"Q.[<h:uibFԬf&ij3΢W=*8?ydOZ匎ybH~Dc~;d*L
3^nkH\=j̤plY:';cpwzrW&OB+el*,7$؂qwΩe).]crI@@yڠ%oF]@bN6:s<mqiGUY9ʥ%:+ۃ%$a1po% EZP
@(P
@(P
@(P
@({+7++.=kz]~Ιg;W@€?
fNQl c8lG> l.#C<󁟋0 +wO98`qcyV9-ɥ=},Hl!`FgaU"<RSBbI8:Bh4],L<lZD[q(XmC$PHdYbR::?C $Fnt^1}
_iؗ[qۈb %m1H&³cZH*E<;*U㟓,}y#zn%%Uw h4 CXyT^>6jh.@Q5ҫJ^=Zvy 2q[#y':8b\oAQkeWщӀ :l:HՎ9թj Og[_ d!8>Y+'%23.eG.J8GEv"N/f..XGG8ՙ0A1F0@e<I<Rf]V2oϫb᦮?<Qs%ETf s?O.^9;jo$i<?󚭖$S(|R%+(0y1|jad.s,wPz ېΠ#, :p6'9 MŎkXHXɌQeY,&|E\XɌaNجl!C)@(P
@(P
@(P
@(/x72ʈ>
욊(prrܪo3UUG'e܎-(WM+ѤP|'9ޙE"{푕lջ [o״,oO'uTO,q
ݼ`#cFx×Xp1KYcrx_L+bmYըz'$$dדm="N&"<F@G%(p$$Q.$`?= NfY+Tw/ [++{Dx #u;Ϊ$"€ʾUA)?YlmtE_3LUG/$dFj#~^>*xE0ڵ°{;h,LF5 yUo{XL´Kv'I#KT8WN{mٶ냧oAmzOv,"ӹq1\-Bd!S3ʚ96؋L ƀnW$3 A:[յAif*I*-%zM2jxMo,eozrg}EVwdpv'<3犃!.;@upsx>@ nKIT˲Gj-%!L6ְP1o'Okɸ*
a=\3(P
@(P
@(P
@(_!JֽOQnp}^ݵ=+Eq(zٯlS3 5LV D[WVb@0:7\#ks9z(^' 0U]Tww+@­^WU[^N{Eq*SHwPR3N bMN<}A՞qH.ȓ2*<R0dlKI$C`2eV<]ޣxxϜxFٻ ;ȌZU=N{AQH"E\DʃͺUt~OuZe,|kxraU;q'4Ťz^d=v<KXrןbjk#dtH.HP4w0;3տMEufwЉHܖ^R)V"G:F+ D?{/v:<SIbKsּXGt=n쭭#i`C
CwuYN3 aR*s>Z!7|#``N;= Ǚ5**P>9)L{=X
Xq'Cӗ"z|TQ<h<G㑟ȑ2-EgrdwHB3<s'5*8l~[R7e5'+q`H$BE}1gz^l&ϕ$~LP
@(P
@(P
@(P
@}C<s6?~ t=#)hH"7#ܿ WSCV哉8ph%ܹ$s^r~;Vmo2Ɍ4> ə;/na(V:{ŷ\u{Q==[ؖ&(36#`jVU% ~?3k"%s6#i1cv,c#@Ӭ[m_e_-(=so?_0Sk%65KS#-^h%=p,rA]-y%–?}eOrs$VȬR1 V4қN;m͜FݕUV!ث*q9nY:J<CHcaV.Ǣ1y7=b&ZFwɨ2'yokgVc\;g±ni$n$d_FZ)v{oMӵNۈ@6CA
S8'd8dVMAKicyYF>N1p^i"wi1-۾G27a+kAb*INF?ξ6B%Ia'>>UE]\:Ѱ#S:um\# <eO^LK'&:|0Rcʢġ'?b)qI9ĝjϒj|z. U
OX2V XP
@(P
@(P
@(vO#uaƷT(=k=={8eG^-أR!õ7:t꼊M垊Oj^=+.,˞$ z*<֯}wv}I4=l7U9#Gfhd=n[#:Z "'B,I'$I<<ךz<z՟4hWI;̑>^ؠr x!T6J'r09uJv.pvO`HۑyWѿ' N58S'#U2F|w Gn4 ԕ nPvz}
ֲdY @3hI2ʳȂYPRoz#vmt2uS=Eahb,\Y{;HL1%8-(P<>y46әV!hH@gUڕt ŀzZSr}#2jExZ b58P1%g%X*-c|?_. udNc֠S&"MD`Q<`usbRg'N_w$-|e'j$55TZWʰWʫ^.!@ 8X0`o
@(P
@(P
@(P
@( sw";~o'kz=dݞ[FoPutumvljh@N-WOX薦^H#|k#rYCdc y7/:3ɂ<ϱN?]BxlK5ݐyp3KkqX 4HUpzKky+:-mGd>λKuA;A}e$)8Y80\Gp!$[x҃zyq@,"JWY_y[ϟAs9zRY8qi 5`|? >&"Hc1gϝe <[w"-F<[9Rh# q;%ݖ4|* ,p>ʵW/{aøĖvv0 :5+^94L
{גDN3'ƭsB?Jۧj FpӤDb =(PKݎ=ԒE LFK<,fDt
m,UiYi
wjUEEOC3(:#ybraюq˧oưYO>@m!>GXd-yz'l_LU,8vCl]ԩ;uˑFwzoUHP%8+[T(J C_9qC"05:P
@(P
@(P
@(PBjwO[v^X#oZ+}
~Y5YS}Fym˖+ٙ'Q e(db6G?aA7,Nےv93nQ<_іF)d
dCMI"oUHzrOi񪴱ýxvRؽ|v.)1Q!=u[:e_՝?p^qحA,VG7!ar^<ꫀY\u.Ԣ5Jsϕ7ŘHg(QZ$'T678l<y`XI(GrAV{Zߵ~~Ưt A `pGPyVq:Xxovd)pl[)ܫ`c$T.+MG=^lf!|~ٯyZQ\˲1Į1V1V29r|؂!v:vG3VE^@YrDp
l$o玵C.KEⶫoŸ_ ;HB#gus3NC]*K8σzups_>}{jZ[^{suܭ H[K4hfܬ}I֗xH¹>FYs5<o_G'EbH'WFYB1쮩>elg5;}IVk)D <I%ԬGgHщ&Up9Q؞ގsOמ(v @q}::G 0Js '?*I ϙǥAeH0|ܪ$[ÙgSo#I'`H#DIVJX89"55 Py
ɂ3Id. d1 *P
@(P
@(P
@(P5hrܒ55Vu{aY[Xt+c<Nv[`N<OVb~s.y ~}ĜD8"6#ޫ6 IFtv'Ǔ:].\"3 pyeP(
Aw\kw\Jomn"K[&*+q`AU2. D3ѩ=%o.?L7g KxU bD@T FU#n]1Vtj>[c'Ͽ0Ė(HAhu`ocsMw4b),$-ֻ&qq:%b9n?.ady1N|(loLsZ6E8u5qۧҧė[~3Ϡ86M0XN}`n#,-"OixθT-0I4f4K0 W4|HzD7_2 'RW-$3:2.'1.q ͊+`y'խ۸U1~Ԝ.#U/nf#k[F/Xl42Hy.Cbpi؍ޓV~{x&[ ; }ym1:ncqZqblǦ[TYMqבUOh|Nv=9V y \z[rLPdZ֫(7Xq&hƠ̜MB\@R>Y
2j5V*s+` P
@(P
@(P
@(^}7w~
7kyX A(5A6Ɗ4Χݦ0H{x !IWxԄ7K'm#3,u1=IV\J:.(
ֶ#*FQFYUK1
NMF<2rGw= 8Us%L|cVye@?ϝ뵒[g$?X.^3wqb,'"#.|#`cRH"X~?F&(rco#cZb48wbt?zKѲ[{p!ZɎ?x7 k+t\yƕ6fW=GVJu}˩H-H ihԈ +|Px]3[ ,_dY
yLkE  #-¶Pb5RmTojA4HcՍ9*l1#?,-/S-xձ\.LeXoN<N}HHSasX%_UL)'ƢdxgO*d3È2>tyֻqSPlgǬ2HE`Ě&pq>8
X3:x:ᛢP
@(P
@(P
@(;yRIw{1v]q^x\ꥄzG-}+͹<tR.1{?s)V:Bq*w3BAɕU;sȳWWok=x圗(%sfďVxD.*9T1ZS(Kk76EIy5lYy2fF`wVbW grW:ji1)p1#Ն^A1p2d:0̽#ƿf?>/pJIS
̦ylX!2ɥN$[)^#6KFsTe|;u 1_pmH9dg~M$l%tN?>\cb&Eswx=idCH99j H, 9{O&2EDqhwsN?%
+3z4qS6|mAyC<R{YF(5|%|T|߱9FNaOlOlUJnxl;8ʱ>3rA ~;,XKG'ebq"67zU]9"ˍZ4o=ygZe+}Xn{<~J kymR. ;4h.K9ϭc%SO d Nz2zK*qxtA':ىmgT%5dx2S
42dkҤLy07P
@(P
@(P
@( 2Eohv]M]Mm{<1[mQx<.Ss'j;t06U#ڙ4xkHc쏽=p6ye|,rs<౽jqJsy'dÚQv,4C9{k¸卽̊V]=#fp,tYjqA98u˿J{np[EK3cbY%5$ᤌ;$:ED=>WI%j~ܾ{9D2Xb#kbn5 2zN#6H`zuR蔽Rdz~qkViS`EU JaBZ=*5Ԣ7;q`n
<3EHgcy2+{>q< #9 ߐTMF\0 זߏ*l$^Z܉lcB9]Ã54<М dh ;=9-%ٱÃ[wG% t
?֫fdn~#ݡ-ZKt5$*IG0? +>47 BI,nJ)*moܼ+#U56iYxmD"^>)° T bEs%^(Y=Ie
&]LA9-M }\20ʡD^[?Բgkd[>| 98u99tI)auݫ3;=@dٚr|W@ G9:ˢ ᔻ;ObJ<yŲ|PG<a+{:z=*Teˢ8_ EGqdȬd
5$
񊵃\3lP
@(P
@(P
@(P݇!k׬*s7cnJ*^ɻ8-c@1Zwf~t5m?'K(ƭ>"vOM3+|8+y")gr\,m֧X5džda}ONEv_r83Եois#䴴
! wQbrz4qP VB་)QJfלlp]
6;rl'`:ۨ' [n2]
 T1LsCOgφ\Dr>y[T8mV)m1:M&s@Đ>b؂0"L<ϙ坪&\pqH4`9
@IP*EolamrM(#?a\"s<%/[v3½I4w
dUR"_5L}DODl[[rX̅&$g
X+J9>r_
(g$}]؈!NHrSDm.PBmmI#~A"}pqs t_ӼRwEEW:Q]LYԧps}GS %b9Aul/L'8Olzy5fH݃*j] % 9̿$P}P/Qn~|)}fapp\m-c}de;yvc8lTX+%IUN$v;mNs|i,jcOZ-f\+1g?UMɲnznv%8RHՃ8>5P
Az6dP
@(P
@(P
@(>RK?ٶf](_hܾOzq%b3DR #ʂF '+ڰjV6Fo8_ ]؂?٪cɊ<)hj@f:aҸ]li۲[]ZFLiv' Pdd.<W8Jt>MujbNG̛VÊ)}rQȏir3|mzt\bK]5+Zjߗg3 2A*^j^FA#ϩQ0}OAAl>D|7USEq $y \rǞEaõ"FuE#qbY5mhFM]is,S[-8:OI'ZwC|x{YEˬD% s
Fy\KY67;*ErA_SGkxw YH#d yVɝw>V gk1.&:FN#!|<ԍ2e{Jt8cE + ^ u1ՒreUPZg Mpu!g|L.(O8m.I`9?`cc.T n9s7|±'nui#j-QsTl%2|cB@
)2|Rǰ@L He\hP
@(P
@(P
@(p$|ksI^bd=y{$r-+z_tPlsgmx}sדQݑit-͜z/]m2cؔvX<4eT|sگͭE{9va}I(:*5@
6];ոZ," J 6F4v6'#Os14J#}(.nvR?"Ė9 91ֶ5d`\蚮[\&AU$#jRGdmREtN{W#VucEIB s=kbT%}DINNGJ#E-g3VˢHw+/1lNQiyp#Q Bo/iwCC"#0ss [EV+$}*Ri>MeX4Rk
UP\O~8UsYO>9a2%E*cXc"B1|N\`H4rY.F{ rj|'r j) 9rL oڃjm!N~uCI c`珎5tB2,,.I\}Rsu !HؔVrY=
|9NJfȫez6j3P+\*>88j+,Z$5D#Jt`U`56P
@(P
@(P
@( Cu}Ot)ٽ8vG>{2-@>/+cVK.y*ϫg>uɗ &&.x ۗʽG,Rˏ\4C6_x|kBETll+~oƷzFqrK>׳dBd=dc*mDɧm*>uJXm6|" KQVLAsa5~'_#?J4!
NukoR3ݻ!rq!f&_<*~xfݎl^ yl8;9#q[[R=yIpᑾ%pm}1P\D1R.XP2"0 ?}F*ѱĄs>AECdc,Tt''b6]J\.@ , {+g`A)pl׏' n& 9%
Ɲ#;i|tƵE"A;`ځH'dbw獹֥\0Io.0~x2&"Y%©ߦXVMbB" ev;dr*d8@EܟRۜ24,^샌tc-Slo1Xe1KbNoQloKuQ*,#-q3H `GBFN*+ ,"S*$ S!(P
@(P
@(P
 >λ뤐}>K+okaK
OtvHedmI j4e$:std.u9=ӠmmdǴL&ƅČ\`?[W?'B xc]cs;@@5*no;k_㝣|r+9G
/ hBՆ
=ט><ξ$j 28X΀twi8G27,/SWƢy퀵]YmE~1sr x!Fӳoz|)2;ګ#X灁(\"$SzU̖9ɇ2~/j,N%1s꼗A޴@`ΐ@U*JC#jOF`!ʠ ;a@ٷP <&e/{Ö{`Ih%u!M9qWzs0؈CrQ6pήٛ+c#g{Yݜ)82}GA9ɚy9qy6ߑ<W@ȌjH{5|F݂|zpoVF+3lHoFj. 僶GyUȣ$xΠ_71u2_QzʢՂ53zs|C>5D h-X$@e9NT$B T56P
@(P
@(P
@\mn:[xoWܦl미LW{R~*rx"v;<Žz]Dk!݁$tr5u2L;%LWPJ"w'67S}d#t%7_$l[B̠4^G-VƒOZJs7crÉ^ZGAhgy8'|mQ6%7t{%>@bO#Q88ۥvuS?T':jvmpk2!AӕtY4:|[ud;L 9rۘry{WҦ+}~%9ۙ`C9!b)O>yxQ,l棜vI#y'MśLO[U%HLt'm_h7 #7` Z h\x)$2KL3I}wƓdZI3%%y5)$"k
vћ5[T퓌1`=|W ̈ c9l΍dɞ  OPLozv/icQ&q^~z1j rk3YVdUOcՆK1(P
@(P
@(Ph DZzF}ɾKvU{Akc"Vٺh}{!6;@9u?z "OK$/ڟ08 r# i\D8WوlG=ڌ92ذL* ";ӿs|K>Թ&3R=!B8U(XvS^ҫI9G.8{`
Iĸ+M$G D/"I *,fI-؄Y{sosg*d3F<(s.XL޹^:)ء:-N~|g396I/95M:bqps [e3I5j!yF>Gc\F&azK ws[t銯%]K},Swf
\F6 dl9E90F(?kԉ0HLdE&KX$µB=IFN7<6'ⲍ8Hv]NNOVNIv~uG lUm<#P2Z\K 劎K'lgӧ`o'< #Zf>*0d@(p>ՀV q @(P
@(P
@(P;Y=H WT_f/n j"G,(y^$UGۂH 9N뎻k,Q_pKQ9f
GUJ)Q:c|tck
JU.#mn_{v*|I{n2G9
P+a6. +sR_稓dқW8U9$`a1#=#^}7:6(bK7_3JcC.;q^._'^$ oa#sKnN~CҺKwfwg 3I6s8dVN+ >Q,_R;ugmC9 V˄$j't%6lUHwa\J<FvrdZ/TKʺ،I`grv[pOcϟ+].f3&\jdy?s{:+<rmZ,֑ Z])9#F-Dg.%bjf\t<k*%5#FXLʪ+qJ`6HǟP6@x2Ye-YەAQܟ8qOK0e>_
EJ { F5 `ɁYK7(ATa\ClP
@(P
@(P
@(*ÁVWQDg-l<=鏿e{5Ҩk~/ $Qlk1|XpwU$!Kk>- }r2\+x6#؞xګrX0{5k ;w|)zIoB0+``M\ejKZv~siلRE2͓Q'>Xdw_C-Qe~qM tEƤ\܉ ϧ#;n7ڴae/'FrQcJЖGQˠȯC_MmKy0Sob1Ywq&g'
v%ܾC7F'm'dɪK{C0'9ߘ<ܞg.U[(k#ޞzs$[+wl\o,g>
V$M!RH I']AֵSט'8s96ZI-9=jvdUF0QF˱`$Fe.LCXwny'Nw듃e"pKH<oj7YŒ?S%k/ǑΥlp!ӌʳZqEX̧zTY,o2*r1T6uǧ:}م\$$I۠2hECj$qddb2}`*@V`Yq @(P
@(P
@(vt}tnjHܚ8z`y5}g/7;ĿO7W;Vf֡H$7ۣ7a[4vɈp FVU#
fQ@cWоܮ};8[wp2Ww_?#?fG;o)A xzc!U?NmPh8߼~L~aWA&{s낸Ϟ=jKQͶgVdQgWsՄa`ۊEW+VDAϽR6x&Wf9OUK0!VaO1WZtfɩjdkVudgU3O
aRE輲>5J&g22Q(Q,F2|Jم#ª6ϰj)Id@|j(P
(
JFIFC

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


(((((((((((((((((((((((((((((((((((((((((((((((((((8" N!1A"Qaq2#BRbr$3%4CScDs&ET3!1AQ"aq2B#R3C ?R(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((\R&f)'4p=*E~j "p8jr2:K{qZtCQmf}N 00h,6Ziw'jDž|fMP5mcXdծjGZڴN@9bF.fX-,K"+M3W״҆}C+THmbYi7g95i ӏ~+rM5 r=%ǵqlBL+bz+ELY3m+(-B1[qVRGmQZ8\}*pX2jULF3X$I:bXjUNڕTn95P@w<{SAPݎ d
nBncRx!i \ܮ „GvwRnjӄdzf1[XtJz sPa}'Ek Q!ʞõiKfm-R4NXc?4*cP1QĒ{
jBA(5qRHĶqzd*Y3M O1ڊH6492wcǽ4y_T:Gu+1Oҧ6Q,S='$mWtSnģ
K%-#۽.JNVnt LTD2B=M3'/߱"2 ӚY[#UXc=HUiɮKƹ<IRvӁ
pnjw>TpxR3lqf-ajH2o$ʪ4Ԙ$RrOH/$Y;ҟ..<OjM$۠жQo4WZ! pNjte`Y%o z:b/`qU\4;GV-r
YzP$1Ao[My:r>j'vA" ;ӯu(4E2<hr}?޸O~#hb8I}qx-^U<1'|rNyQYʕ'im/XgW+
F I)U8ӎ嚽IOdC$aEx3][uYnfѸHk6Ρp-QHi.eT󷎧k(^N/chV (Â\?H ~`=Kߚi vFE^V9$pPT8ҒNZX`#}[`E<VP bX|9JkLd]FX @މE+71nz*6Kj^$œVY31nraL{P#W_.eo9eHt#$+r 9Z܆^$:x $ كilfT{f׏pAQͦF|N87qs*RӸR']WȆfc߰lM"PLs&TK-|p?&^Mn)4Q$eaa0,h6<nWi#ޙ;F9; {϶UmK]'/@*]'8iŷ=5YEWwQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@*Ӡ9P8KvE${Ud$Q"qW`'+N_jZؒ9\v1lYL{’ jZٖ cjO *(;Wd0Q,e[9#id&4I·tݜ}Rً饂 (5i 0ݷQT9[6a$iDl³@<mZk k{1d2-,*BZpwc9[{>rF*V@qX<gAf1 RmaeGb8miS 8{TȸEc,$1G$cڥXJ~OޜO=~e$5 b8.y(MKv1:֌pzw=`! ښ:0+Pc&0]K I G#"#N)] 6j%RgI4}z=*0D2Ng#`GaIFpcګ9$wvw
@VI*D6b
0$<4$
qۃTPGڕ\FX5A8$oI#It-/┐6
(@^@3z*;ҐpڮEk,bYmJӪ. YJU{4#b\m\Qp*S>TN:
p`ČaұiCDC$Eѥ,A^ǽ@ҝiqܹc@GAh9 @@*'JH?&HHoV2~ƻ'/UjfEǒ'InHX (WYFNO?JzZO45aOsJn!'v:r@2M,DAQpmn&%bRo6$ Wk'"04HȸRzegOdja.rAW:^ؔO?Ryg`8HTX
sW_4$jtM;/]k>?Ӵ qMxo;A'.T;UTr==JJƣXi0a0ƻc޼C^QVXwYF 4 P|KO;5gf` :T<Ity RB
($.w k<Қz_#N 5=)]7y=lc<Kfx4wtuHFؑ>>w"iT
…dm6sIZBpASI=({}c)6QbCUapDbSvШ/ј|V߂Ig_Gnn@hUx{}EBt P#`Kton+6amzA
${旋|Čg<
M !3‚mv;={J[ ]4Lz|u2k0K!QJSMk[;!2HC9zoRXV;'[ב3zRR6u=[mJ) A<u zT./ ++8ʒ(QKȢV2V$5bIQX
[%#5 %-ͣknڙ-Ԥb$r2=zS\'ha#{ޙ-XƄoAApxv㜜RI1#m^ݹҪ`K>TKgghNHP;B$bh֕&2 c{Uq'MYaȻn'8$:YŰYE
ǂG@ׇXfV,Jj(d~hOT(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((9TM+ञ=xuDjl$XD5kb \
շ08uC/ocZ% ؇N<}^K.یW\0Q,cmej[inzV
ܲA uG iRCV宗\.;V6bM*O[iaZia@*mZ n[iU%y[{B[ƶA
X~kZˁqZQX#*VpGڱCH3e~*[qV11ާX37Pp :1XpG<F^K-DG fUT8JZHyi3TaB sOsLf E cSxzAl14cҟ#9T p  sUŋ<aAXҫXr IjHA!qWr)ceF\w5ZyB{
Fڸ}!dը$Db9@<sA4j҅cٱM qN0]ǿS"=
<{Nr:R1zSX<M98 4{>):@ 'A ڐ(rA8aXNNq Lcɨ<)1t}jx]" \|Q,\QƛՆ=;Qv sI'ޚ@Uvǃp2qؚdY38bqEUQP,%
5*ږ8䎸i MDIĎ0 8f)$w=jhlWo8s-&e:*!RI1g54\ e94V3W5zEE{Ω%֡3H.v&OE$Tde -lMYPNAJXzHZ,%1VON}b1FK90$mwlnډd~D_^u$
,꺄vDYF k*p=r`i[ I7'`e<0Ns:Q@y1xFT<{"Ǜj5nui|Az!resua5p/DUs:Uy8ks
XI$+kl1Z_ɞG+;w$]ktLķrL >ޅ-mf*8k[_[Br 'jNCqXyR\͓7-z:?ݥ' ʡPy /G.FO"ef1ڧxq]E\G,-b~0_VmkK 0ԐNzR7ɪGV&ltEHŷ '1Ia F|$;vNEn2Ր(,85 5O49ҬuYUp8S-oo4ƛw54NG?"=oa1 mPZ0}1峁ϵRRI<spݍ;fVH7aի~eux ]!4vV|y3^uxrj>cCMw3Ikc$ !#skVJ3vݢ*f2xz zEcۊX F;Һ"EnrbF<kul+c8GjBb[wSSe"*ۥH.=jՕ;{l5IE($;+19=dvǖ>a2w覛Er#g7qzF}I5VOٝ/+/vēӚay8OU"Q(/TrPGZRX3@xޚni^S ?jHm/Z*8k_L(Z:8G}tQExQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQER➨OJiX r=XܱV<^qKFlV-N eǫ5ӏֶ H,H Ͻm[i$\vVŦC*rz]K]8+rJ# V͞snYi.Jً̜gm]4)m) -4dax-"6+=,8mGn@{q;{.e,F dZT֥(m[jptOX(hjvU*B23X!`W&XEL"+!JS45vZCBd^~!8`(NLK  ;S'rsޢf==R,=;Jb\oWz`6o' Mb{c
sdڕ եj,DP1V,r3':Y
,sxid$%I㰤,9nIaVإ g)
vQJX(<ASچ@f2~i 0f#GcD!t
V'$ӎԱ"cPdc`uQP=CƒA=)+ o,qK R(q@ R ҌNrA9ăTvL|@t9%^7*8@kAE! S9=%p>]MNT-9U*𨁳)JYi|a푄;pA5-@8zVl&rR['4-mN6Zqck9FCt8zgr2A'*V4rlJO=)$R$ZuMI g`G<}<u3[xJٮ].\ጕ^ r*g8l/xI:0"w1dMyw- E>M$4|_l`+Zr:ܗ NegLj? Í @Ac5.e*g3
t'p<,|?)y{J7\H0і%GN6g]2xWNj,f graIb2{6}YCdW$vS-Pi֍mZGB0q楴43Nx2Y8ԟQ'$T=Pxڈ,!p+Vbk WL:Ƒ"/ҲJl
G'mBiJnX( `}EPWolEn.|"<+('h=3!c]xe)AF:_'&hvKQRU8;Ǟ~;?y1o#xt$GKUDUww>@>(E@V`d:*q}gqm}F-+N{T
dҹ쮵3Ȫ !$|O+ko""> ޸ygmVbY';p:UnIINF|-c\;wy2 d
TgҽO[e;XI~ᔼK}Q+3[n^բy]Jmd6my^FA¼7Lvf#hݫe*Rvz*dRkeUWeU5:eeu QH鎠q9@W),M*Deؖ1pFzL!
N5#֫|:w`}31ƚ@Moq(¨iIݷ8'Cn'ޘYNz-0)T2#d18iS,[ӵi4+h11@}jNG9,0O5ii
NIFC[`'┡r9⺈rpLFrOZ_Q AUTDkhVG9[!-Z1@l e)&ZGQ^aQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQERznҰ4B*Vň d8%#6+bh؂܏j؂@ہ֭( V<d[X_޶l'iV垛ʒks!e+jK_C`妘kjM`WLqًfftN2ջk}^L;yȪrQ蝳Ml1M4>mcӷwFMOjԶ$z|֌VN@Ì`VmkFe8G#L"VRk$?zc QJ@*ܜ8*)G4}Rxn\S^P`@'DX<Tm'9c4 jKd'gz#xQZ',Kd.i >.OU"!b)dBe@GT@%wWd'pDR6;]crU'FNp{:jFn<h74OP&A?Zd
:Jh8gB)v8\|*ڹ@K-ښ"1ɅNI'=Bca75{m2PAZnм3HMV$c)R$Q0HF,Ƣ;v#H `(cNB7}NW{`brhfBtISYItzcj^!$'"DY\*ܖaJ0*I-
(bs}EZef{5YӌՙmRn$)  '4
,
NsBktE#ګD儸@*VVC3N֜,M{5{5}ڼwǿ:^#5 1? wGkoH)>=FTE^p^9KK' :*rq~kȼa-G[Q/d체'cc88°-ZylS#*Ez6O%A_vhV&YE{5AG@$XQu` vljI'{VdmqRs$ /WuyH[PP8I=xԔn[+v(9 N1G^ 0!a $~+'5o oB5}@?WF7"&H'Nھf;*C=q,凤|ھQ3s_+x5kI.%
BT98p*}N}qKu]N i$eO6z~[rgrt,ln_($:7E-xD)~gNI; x~kp[hH`Abفlߥyۖ)\*E<s,̨1ԅ8XoW4K%s''MPiLD1<@y
I$\zI
$011$ 'Oɮ88glRqZdHe2U01!`W_t+m8v{A)Mڥw
zZ/n@Ҋnj7]jVI܃X1FL7s±+䁯[ƶV 
5?<W?q}ma=[ssjUD!V큓y$,dNHUF=<1c5lgNOe|Uyyj[Cj08<* NNOҽ8*=vw<E+Kʚ "K F뉞b 3iECNVfM) RKVRNJP2Bg]i0H]HRN[} S]j8qS"2!w!T
КmYܐ}?ҥAg;aH\ՖD846&3m$]I@ޤIޭ[FTͷ,VAP rzdӚOR G>C2 y$8^ .;FUjD ϖjdAi4jwycI +.Gi z<Z]̖z\ܗ&\ɤ4o5!%>:X"A'9LylU<޴⨋r]RH cېĄ=Yj32;7@>TjZފL+;((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((P =PҰ=PUK {Vi[#ѶVYFZqkc,UZֲӋrNح;!Bɭ=($c+Y ]/h/&-tN0~gz@np;WBėf.mYji0[6yp1շk(ۀsީGUV``Wk޶qJ. <V2qٕk`2}i e+B+pU
Y c!
zp*œ|V!bA@/HS4^5j$hڜr*@\`cl ϽQ.@ TG~) =Fsښ䜌U$=c4nlFy*Ilqb39SRCZ()`=;
8=qR&㎆$*KF#8_sC1i Hjl)fSVHēI%4`*7 1pA jSc\8曰K,[z@c=;
`x<PIPұkH*\i!pŘu%E]Hj Nx#Lf!U2'ڤxXbp[ul{ԷR,aچT@̠:b`%95)*ZcJ0BbTí+; yfq&@S)N[sxi芼hI9Œ/'&4*w#D-¨SM:+2+ wF CLҞ@@<v:['TN9W;)EŹG)|+oZ/7D&2Iګ6XjHdSJ#9vрYc#';TE&W98=kn(E^^vu8D-RR5??^aŝ@Wb27BG^~+<{xT Ȫ=$I/AJka`ZˆX;4P]sOMS]EM)YپX%9r\g LG{|;@-G@*c8bv8\rQXzUs#sVMg 2?*2ROD[Abu9W{H6†5=sPGQ,x:03Dۙ.&Tm#s6iژh]g)!]⌒Th6K. HFT)P?ד1\[oQ'K^PD/;^*?B:vxIv"eYTvgu}Sj_ᾃMa)o(Wũ%9y@>IeiA
"h
88}kϖTzϸ3*}zW4]gT7)o!~ b KXK`|k<KOR+ep!t.#Dqvu{š:|ZZ\nTl@8".%-7LX5'M-޴0?ݺBcHj\J% HO8GB<xa G4Рu9P^Nj8=ꮣYE̤ EE泪Ame [I"˲g'lф^Jڴm9<F-R20=,z4di" 772mޡrC;}AK79|cTx_O~ʛqi{JVmwJb#$m9$V#S#.w9
O.VFUaT`J,x$G,pfYc&.5{JYby"fKd8c==WHn1&ܲ=:"hu1ɒ0In=~
&Ե> I= )nM\9(Q=[HkM6(I;FxhΨU>ky`Va;׀H[KƬ ; Gz,yiqg>T1Bg5Z'3rʢm
|dmWra+ySՀIRX}m>h=il%DҀg Lx%$n!6-V^ c*&rqښ5䵴pR}6GpcfDz_ƛӎ&&o$Qꨮo<W?LULdFsֱ^RY464LکEvbbh"6Mo1Jޖoj)ɳY|U@cۿ-׎cN/)>iqR&rse# rݜTid}vc$ծ"N7֫pm.MI
Q^9QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQERM=PҰ=#-UmKsҷ灟8!#2+R85mbHZ֖$֭Ik 2lIjֵݴkfM'У&m\Y K]4wlVݖ^mU!zvt6zp!NzV̜f/ֶ8a[_zշӀއ4`fڶ-lUTCo`H
el̴N3ZpEnb+d64q[mդ ֭$@s{
P7j5Q HpG>,q:g*ǑxPC#QsOUm4z89lt ӓMf$;:B)}1gHVH}c`TO"]5Py&bĜ*iL@=j&b{Ȧu>բIݒg'6d㞤rIBރH,riR:ERU䞔vo@jxvVͭ4H)%SdKa #JTg'ڑp͂1SNhmi! $UcpbmjG,&}tUcé4JrX5*'qVHV%˕)#/Jc|@)2 H[ vI$yjix9 sUzV H9v7u<E7 #ڕۜOj&U8Ϩ[9% NsҮ$) V$UԄjm6<&Vf:S9 jbd(/jUr3Tev~X5M9
4]{ԩ*Ds'0cʟS"񊗉՚LeEMq3ƉW$#+ңqֹ?_{ͥ]Iou5ȊPc*~k廫\uxs\͓ϤC|tZ^4]ֵ>9lRk}]91Wv"C dfI??xUev&Bŗ?dY" tBAN~9.onΧk@؀֔aH['':Qx4I#83,z6ٶxϽhZr0JsREex¾o?s\^-Tڛe6 e8cjw݂zu5{)!BVP3e '?8m֎u7S֋R*;(gzۓq+j-q#$ 
~r9{A]]ux)W&5XSF2A {j5H4KXpxֽ=%ems0in^%x补^a h. "Yp^:1Yȱڔwg&g2Z OAZ0uwK 6ןxbVv.</<r8:||28l)v~3Nf|=d&d|Iwt8<}CvT[.V{ P,T{|-x R#/Rp r#sV5+N$I_Ot;$f,ό T˓|b|+of^_\k~G%88UB >-t
N0FߖVo0"9R0 Ƿ~:X-s+9r<ن9*k759$)̨PKq,OP7?]\\H~fI* ~p>Ҧ6<q5+s@fD`1c9I"ym{9 h^jjwg!,n>+;[HbT`9''ީhYh:Kg"7Bnq^8]F $2/<q۽,PQK[am]|z 3x2?-8'
9ժ?+Scd#w!Gn~ZQ` iVmف)۲Cw1݋##ޥX|vs~@{Ͻ6i]c`hWw'Ki_ED`~kE.&x;͘qKHT(SA4sʥ OڅH,ǠZJ<7Q-DMξة]ܖ(FzqZ)#_\"c'{V\G-Ħf2I[c'0H-T Ojo 65wnwɸqZ3']}銳>wkN%҄ #ޛɕTx#59& HE:iPݢAb0^Gz4,)*ّ'3 'l$' [FzF 9eZ6@d[ElCuΐ"5lkF9'qJVWir3<VB#بB0HAqGj((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((=c,qM+R$e
ojڴ,7qkXl4ȭYpkFps[p!N}<Pucc<-sМVeO 4iⷭ,jǁ$sK%6zYʝݱ8-4@M0!]Kf.VcY+*1+8+nXo#Zh,Ȓ {1mlq[V*֬V9Z6az
Y,6  {@$UT{V!qAVc:GȩZY TQB3SQRxeRIRl]zRPݕB(i 5,QV!x@6z
u5 % cH%i@,Ic~HOJ lvH'֑=D9,MDͻKlsB[R$cZʓV:c;pG4
ElL=8
qK=*h-gADO [+ʼcVVR&HF+%ElT+6b6P@ aޭ@&~Tw&D99i%yҸ$:de
H8&摋
([*3kXK&EEs\;3zG`a`p>M{%uךy*FE;nBPsN…$d/$w<Uvs8ű7Dh/Am(
O>If`̻F Z!&`jK}2#;_0ÊBOiF; @Cޥz-WE&c6I;R 2W.U PNEVUd`3?*:}P$|Zl=zia"ATH,;ag sW3^ukv1RNGKszq\GZjxÇ$^3`յg6tvyN0B$sIL嘒I>a
Xrgj-Ŝ3~6FV+p`,0~բH
;
ҳ2I&[f\rŽ9 [G FEBb*9<+~1n`$j@\rǿ#MjwѮ.)e\`f6<וOH|tfko *1~;( l,N$ /OQ b,p-y'V9=jln/ k5\*N2qֱfknfU\qInX@C0nzaE thhRH ڀg+i-|I1D.
UNaՓx ZdIgF
DY`Km鍵n4C;"r'r$©9xNk*8vF]N s$[і8.|KF a,čy5555 lnc\3dccwU{:k!#Ң<gr;v.*p٨Ax㇎E-TFzc[ǶMv"Xפxi߈u+2 ?瑏e_KQesj 2\M.FrDhjVB?]'uwUqd&y%DXl $8$grk97!VaoO3P, ۗė#8\`t׌GQԣڛ[-zR}JI]=E <pҔ,/ n:xX 1U9=Y&m{SEU}TR~Oz4*M 3YqOs˙/*վʾwKs1"2ggsk4 "02H?vsYoB7 #u^p+IWZk}la21s7!QҠ}MƗ~eKXRD
?j:jJ#-: U_9<)ڝAv[UyCB$;նYCn+8
ᣌ'+1Z|QRg)zbE}rmyc(9?"kb(ЕcUAO5-2<,jw{Jҽ $/.JRI< ~~:i6v4 O5(TWQpyߑ= u8*Z;w<M{ֆ&w:Wji6&`Rr,OFqiI~U]7^6Ic ڮ: cڼO_VXȇS"ܗ ,\ߏP.+'2r3ZIm1$ >i%#sZVfPTcwݱ=EN!l28YcHEӯzrpAo7nЯ ?
P቙e־՟spz.:U녆&-G<< @{͹l|by5伦I/jKC5\`j՜)h u,MC0B8'޷ǒFT;px^GQ5GBK0Z]F|2ðDeaTt+p꫱=l|%BnpOJFIv1c``(M(I4qSLg]6f#,H OumL?j-* aqu'|
sw !]z
zz6]o 3LOcq‹q<tQYwVܫ@ǩF9;=i6|5EWwQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@fOjiX HI
cӥi[ ֱiZmH<MkM0Տ0SN*Ֆz'=Ҷ,սG ǁ`q'kvJ,˴`4YpmtQڷP{2m
K*r[֚hݜrEl鼀Gkb$ #NSP޵m,@dMkAdqcsZ00GCX6ҊUd
sޱCU"pGrjCҤTeTH2JPt" ا {VNEqޞv)*NzJNTM( BM8~֐֡g9N1zU|e)J#MfDoGb9fAM&'NLqua,RIQy9X9zD;4v9mZFl{8c3 G 'IT68p>Cv
x "IV@\j@9aNZia^E-D*_g3*(µHU7i„HJ#UI8'UwciWKnx@ɪ{T{0z!S*v cBwz&1L(tXa拖HJ#W88>PZU<u
-brKE-1z@C꣯J1aQ:ya֮Y75$GV Og<цkD qI`KaWZ97 ),A }H("}}遲1~iKEKDlB1$SDO v6m;f =M"2׻v&[I&RI{똭`_,Ӛ9%5"
Ēye#|9gZxz(O^G_ZۛʐUrN9^S]Ks]j
`s#a{w<da=WZĸ33O$!'RI&bAlOZm]<#3 GsKkeF7[
"=@cH1<;\]Rd[]'RY# JH:*9~jM*MR(mL v5$,,,3ŏ5[ďF2@YNoۊ+I:>PP*D\Haq^t:㖨&Tֆ1g%UJ{ ğs\/I_68@KBFTqj̑<Q̀]eV<9<},6j_JlڤI *!n\ϔGEm:HS k-fFRTd\mcl<F1^޾Emk#o!c\Oש=+6X;;qQ+\I6HȻ|Om$t=YIx(n)v]̣ =qڮik%[Ȭw7g^eŘ;;Hm'j\LrJ$e .ğajEnL$z ]yh4,(9( Oj]'N}NY#Hcg#=92XSfg24س1 I<]&{ oB6 WPFW&͛{h4K[XƱWC|W]}1ğEGV8
6Ơ=>S4 rnp{ ^aYx$vg^b Rmy%Z}j3~b~YGbb*8j1 *T*ć!>I83>Km[!総p=s,KQBDqY=f/ YDXˌ/q2Տ) VWڰڥJ^ïNkܤx&o$е˒#Uyn@87"ݼPPv%qhgQI#mHs3j^{En$S&w3X瞧:V*lƝ6x-渎'r #djUin-(T?^95R̲xNç5td5Z4f;ĒH#N:\߃- BOLmSrJscECD4x%C6
xZٗ:M^ ͤq=D; I&|Qʮ_v${6mFf8I\s޲-B{A딐[7so/_'A#\`#&ܰ
eF-2x5mz&+B{`VkM"2A8c4+)ݿa&FǃEtyF#ȯ& p~⿆V-w\L8ݞbS^&r9,j]4H0qޕ; R] nF<*RMEѪ!o G, 1dE{aA'}ܱP; SqlVRAHFX'E6W-&w54ptZs ߣ9 Y/u Cm !"|0</`*̖L$^f)֒L.EgS]qFwK+ g|ZtMJM901wBT^X6Ⱦw+D+"jQ0*$U. =Gfjѫ)V*rvZq eF7%$ywN3V-ذ =sַNl+XڇxTEoZZ4Nm= VW!.vhm'<!bWʷEk˫Ajv^wu")_9uE"FI^Vaɬ­E *iio,~Z@gQExQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQERM=#,F4M=P@1Z8jZ!#2+b֕ kY q+rL`ߣu%õӋ`n49[ZI9$s]~wAU$+vKd'Ҷ4!qT{1rl笴Wsҷ4(Vݦqߡ{kɩHYg@*0:ֵ@p6V 1ZZ# VimPĀ=#ޯl HxXƑY-{|XOj 氖Fh@T@jAOU9>ڳr'xP1ڔR'qqPc1N<IIe8#Q,}i
lji/blFby?Z|q3 B49tG3|/=*!6+<Ql`)Z8S׹sy5q!JA‚5Ұ篽&㡭R^XaH6ڕ#;vX{P"
r@9L#[Hɖs֜$Rqh2+n:SZۼAj$3H/sWC6skK#U4kc3NK$ {\ |gVfŽ=j@ /AYHY R\׳s;wO֡ny'jLdcD96<H'dF8{U~Dl1 1RĀz|nlEo^<tE;h|i}\U )*^Tv
K)y1rj#li#4VȐJ"\p*7X!i&C^%U#\ӣ[(zGP#?5]o3*08*QgM=³nXO%FI<$dGQw' AC>&p>I6#A%zI 4"Wq=,Elg4J- 26 >彝"D>sۑ^cƝ3K[h5%Yն N{s^ _j-i ܗ.!\ir=3޹%o .8Yn z.bG ׉z~!`8 W Y~i b2bfR68+:Kn/8?,iK_n%CVHř`3vMLFFm /%mh%>kpz͌*9Qie2ϓvePwg| >sIhZFFZ$d36ȇ{rgejDʴW'AlVukY`[+Vk*=3Yz۩DLD4P8sǵz7Fs{ir=!Gj3^ G\ Ǟik\j|ϢW / HҀ^z5-695h3` c'T\|mwqkx0U=s^V(QO[F<9>vpO%fἶ`?z$snp!I%=kyyYY&Rwg3J$Y-,V5FI'?'$U|?4h=y:IEhNMinZ+[hnO- 8nAsH8qӭo%I ԙۯ>YI|i֌U' qMWq,T < o6oNOlfXmagsHBNp=_үiR썐Eo[8 wOjk^ 3+ڪ%8Ba$sZqw\]^ l@~2Z$m($2Pe2Ő( B?5wbu/hVDҭZú_6̌\ 0:WՐFVKY<dT(li9_DaePDk!nVpQ.1ۜ*,>yKe [X6D?oڼ&54EGB e$qpR tf|afճmbVh ,HXԞN~Ս2u$u71͹҄Q- W%ˈ;WÇq˳`z;kC G6PHf?S^}#;X^2ov w<NHT- 6qx.6֡~Z[84>I&A$8dkZ#mq>~xbBƪW85*_DQGf^dHr;PK䩩iP\i.=H=j[Fw$ٓ-((צkY,c-%89m8$Ϻ{+h'E(aP#'>T=M)e5XoG[?r}A`qZH9_@x,x櫖Oy]=WbЯ/d妸2:>ߵugR^xZ)"2I?ޮeJcfӤt2݉#ڋ;JSGQ0,vG*AҗYu}s<Mܐ~}>VHmd(랦IdlVxeHcVOԁUPA%;+I& ѩs3T2*4ʿN
X$l&9{GDdFNHֳw5ɻ1GpZR= kj7w7.BSҢH,He#ɡ2Z(HbCeK8:sRWsuv"u|d] cU$1!GinUbcVsMØS]OgT=\hZM֫ZDa7e[H|NvnR{#`0⪚BM6=X*/cgKV5q >bIUQCV=ѿm ܬ5 GSI,@=gWPH]Tը#SI@&v|+EWwQ@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@eV1R$e78K[:֑sH̆՛VJֵcmieԚǀy~ K-5^1[6p'9I#on@ux9:n] J-'k) bt૒9=+EDɳ
MR84ͫA[VZqU޵\ԥŲ
b>0$qZڅ9#a,B 0+B+PqҮ,89h0p¬Gȫ) ڥT|V%(,c3*pPNMd] TO jP8(Ɛ~(ϤP[h7|$8P2}]~ԋ%ڜȊqҞlaFd5 g7PJj,cbJI ehQrG"HсQƠɁZ[d9^3\Qz9`{/ROZ *;i}Gj).lMèsJ2$):S—Bi[y.rGaRBxHlvIZPϹ^Bjml-"if
87J[wR~iBcٳ$`rjحDZr`eSpj䶁wdeA'2IPt)MJNJfB ,G>³
T># >_XF!$u,) +1*155# iuEnb}U@w8zTj(i6S7;֭$;TجѦӰemmf>rʥX¶fNdYM2KBD(9ϽWeP?jf-!ZlM{om ڌRB `9Ss^:]dS=;Q'h<ۉA%#*rk1IhSYy Up |Te٘Sdž\ޮ0@SX zsK
0hCxRl` "K0;\OV$2˨WKxx9k|m:^]6lcH q8F7|uâxuNajCr!Xx^.>Ke%\r8FkCqeT9[,!npNX@P:WޑCUlww%!c,HUP1'5\>Ԅ`s!9-ZqJ=kX0 P{܏EdDQswLX7Lܟ`U:FK*7F6G#W>&miɽpiQ,AJԜw}1~zq>Hd8 ԏQ\Vi_yUR+yQ}u?sک'j*N.wFf$ϿL{PVb>S4+ u=Vb I 0q:IKԖK"Ŋ1 rrx5ol眚 >RjfX Y8Uu7JW,b\3\^Hde ^GY9-aa2*sv$G uedD6l<3VOsn 8ykInCMv˻n~}mli03n-sM$z
j8m5ttwVKk:n*K0ۦ2~֝ū~{ibDB™J9gp+
]N95C`a#ߠ=[V֮Jd6.Ԍ{"WLj^ʷA%<iDa9/H ++˯Ojk##e2<<uW|MrKe_ʆ'X1;F>ߧ%NI Io3la7@\)cH?>Kh,V$$(O@03T tt:&$S71iwQng ZBp1d%C=<ki&IfH՜8>[ˆ
 &Oǐ~B|չ5M9Lz&kF8}2T>!f}O20i1y&ԞTZ"Mlq9^ zr-޷~]qE99\Oxg}Z~]\繕_lP>GH<(5MFB6 <^)߈ZkDȡF'ۊ.4}/mEcmeé a8כ\jwy`31&@mpCˏg=4f//o%{ly,q;VwO Dvom㝤|cH`ocbeT;cE\ 8cbQ?'&n.;rf\{f]n9prXS'U
`
=L,#5ߗ>'J⠛9\hK(R^\a?~սἄHFE VW ytT8SNYzq R$FNCQ~̛X囪sK}6#@ҳ0,!-S7p+6QKyEKI;zn8UI5"B#6 H<s'[V{7h+(IjO{4Ko?6n[YK՝DּBѼ(49|D;GoyC5"^_1/KE??tw $2>)n*[d75b
&waO;{k$)U翵v(G w 9?ִ*ж%OijRQЎ5غ  wjrl4dehFQ5}l'!!(dE4Ȥl'8O;42Y;uty6xy ŽIEW v<s(nԿ`]EYp̽PT4<F`j$yJo;jnY4|eKdެy#%HXiZG *xbB)]Yi"BdXMy im
z
[ IRs)6HF=(i_)B_O&FVI<v '愘2ig|JwE+jTk$RqYPfHeHǣ)oI%$F˕?U⺉d'
+Yvv9XhDj:M$70 Z3n珁ZWr\nSild$R>6+=(((((((((((((((((((((((((((((((((((((((((((((((((((((((( )`0iꄜUmhAbOA8!"6CZ@AҶၹN}jMGjK1g`li>i` oxk<s@/’t6:`]St
5g
QQ1rlȳx^9l[6nH`:Jֵ :i[24/+jZf ;sf`
Y #>qV6rG5n(A?e!ڱChH :Dڬ,x*UMYD**a
x
ȴ*
~LR@8zԶ0Nq“n <I=;9>!8Ԝe@yąAЕ7Dg< !%Cƪ+L@'5j-m"ԷS{dws$Ldؠ@q.hH߲bKs
;ULi5Kbrd3|Jd'އ$7{SKO^´I"qN
nT
G=3wEu_lol qUQ*i'vQ,D879sSnв\Fqޫ&..l ,y8ީ"juDC2# {ը!O 9Rj nKm(& E/AڪO{# vL#Y؂q5qNdb2=irMW_I9<RZRD]ځb:TX <|Ş \9 1Z˳*Y&e1kr|w=AK,"Bzkن#/)yTR _6F1 D_j '##T3=Ss)JkGQFrõAuw,Ė<ݫ8~4,GXwBy5VY2דBnXT$/?54 #8洢S(Rv{T,űڧЮ@y棝j",$|y`=)̤ߥ>MIGQ t1"%K(ϰ5bR6̘.`icAWU ۜגxl+gw XԖUp ߎ{sK\#}#}`Olu4tE:xcSXgP`2Iϗ?A3&hB`zTjKEnny.A>s{W}jO&E< n[Ẍ́*)Dܩd^~IG~jIcifh203 E9vpk1C,*r2aO9#'\gzדȉ4 H  Ҳ{4%g :I]?ңuT yaaO,=oD[ǡ[Co+ȳ#i$ʋ*߰]f6$loƝyvy0Rprk#;xES-E$,J^T4iFI=Q0t*@b]%o5<,A#@ 4gkF\sҶusq[f}ϒdu})ܕY V kA Ec?<X*Z6B|-g 1(:
$wwp0}}y_z,^UbRZF<Yzo~;9( +1['lܰ153t%1<==ɮ^X$V$.i;b F 1Z+cN9JQA,4p.%|</5+gRVF0`bCЁ}U
>k09dS$Hijzq9bke}^5zbrG1@n)Q77,:kJ-&UHn!EKQ2\!.cy2~*Vu$VyO X) |.{ )Q,(*rVLn$j7MxOZkg}H3K$9[_/=Gx|!amvЩ7{yhdֶOfk
6_oFݮW\a62^kJdʢөcYZĢ}RE-3mA? u'`[Bh?:Xшw$ְZ)ݰK:!!A8,y
=c>#?c$rXnI'=t_ͣ[͵}-2iAWVgjao5Kbf(pOs5x/^#nchGBy8t_fSRpt갂.70ہۚWK[%73!Ony&X`꒲W6WX%crZ"R{c|5+kKS,!C8IUt.L0) 01*1'EL/*ְÑIJ۶l
pǁY`P$u\zspU'50l--KL@ ~8޵ m-ӹϸN2/j7oi#sw#1g囿ߊ<!S}4vy @о$#$bsҽwMl4;tLF 'ci*roC+3=ƾci.=%Xnnڽ58b\(3OK,,Dg9]p]8# r{z$b`(".JUH$^YAZ&sin J2jX;A8Vc))ؚnq$񊦴DeoRIIAگ[Z-8YJel!b
<թvEbeg=s.60U,naKwa=zu^}bIԅeWG{TԷ){d;RhIn;DEUOJοtɑ
\=zG.Iqͳh=MM1T S(Fy9b1X'b7hq[nT,=wQ7 ! "QE'ږK$- )ۑ҅-Є4V{Tnػ82G4QxA8<z\*y&:ОZ^F.>ܚu(@Xr}ꄗ[AW}:MY$n E7ZTX*OHRw;wR\XZm!QqީEY)ۡfb~*5E8
;bRɏp(
hZȴh@(((((((((((((((((((((((((((((((((((((((((((((((((((((((9TM+SI<
1mb5q)glzVʆm4Ѵds[6f ^?0cN[6:Qi2T펒AtZO*1Wn< K9-(dn\WGaFkm4H]**&MbZC@IM0i*H{ LW@M\?{{Z@ P+ dXo6 FNGhڅW <s%8+G8ZX*`W?ޥTXh=hԊ<OOY9Yi ۅRKQJ?56:090IAHw Z+杴 w
p_Uinzom"9ZibG$1sU%v,s9rOZ8Hr&q2@cL 
TakUD[ۙ8ApjbHjV)`$~NAC0 vaABb`( 3F[<q֥YaGvDh`$á]&0'7ޤH3#@=(fnK10c8Fއ]{J:ə*:穪6ϱǠ#[Y2qk)GooߐU
[=IWI R+if'EB;C 1j+u*1qRlo5A2lFb1U%NHFzQFŲozh wƧsڬ,a\ VŎ yH;3ʡ㍳mm n*j }JDd\/mkg̮0qֲFֽĮ{rYʏ5JOK6[= 8p–s}u-qP35 1L#sE>
Qĥg(wg$ dB0 3O`05O1VI98I|"vpB4`p{T1/sQZF8
]eR
#y%S\Zs8^k] ût_,6)=$ڱUj鞑2mP/'qc|o9v Y1 RAM%1גxĚ߉cd٬k!c<'5B^Om%:,
099Z㟐5Rc-k w0(QnI>3b]Kw@{EAK8ĭvlk}_Lo}H?D@Ԟ:M8'ljHAB/h\95 =H]h_g_Mn{mrw@r#?MƲ񭒉 FPwS¯׏5<ؑRIgQm9lZA 3 6F?O^kʛ|
i7IŪ9Fh 9:-dŴMP<|Ww-pHMFi.$v|s.wgUpx+N=qr;XgT;O~{ۖeFoY<rxWaKr%1dF0>hҒ8Dnpr
qP+]PWԖ޴_哌͏L#Z0pшcX(L`癎('WIXa,0좠mK '×r$^<taA9 }B$Ӑ#`iZ0謼zu4V$w*%]$dqֹgSoU>[ t9R+r:ھMY|It$VR|gӮ+qWbӱ,]D=N?u] RHncu$,4D[kr~kOhvq5*Fqھĺ-ד Uхv2^(Yj27 ϴprnN\HcV
89rIǿֽ?F'Ppe`?̟/]C{UR#G߽^fhi9#kLʖ-#/=>yqk a$=J}n%QH,6++T =ӬmeF-#$*WMJMZK 7Ē2Jw7cӁȴc'ݻ1
pjDQrIтG')O[SN֮[&rc'J87&ƴ~]htK;$y%$81JY$@4rvvw0Nxe4m|ԺQx
.0R <nUU'ޑkBYj7<KĪ3'i<aAXHB:_hF<r[@GV' |>hfԼq[2=P4YYn|b_K Z>qvիŷ)'uaZlG=–Iig'!Ge-ۚ D_nU2d?y?<thZcdE9c(jnZif$#rn>Nv wo!9IHT3^L|^cmYؕHS{ld$Z6 ps!$qۓV<x]ӭ^ٮn PI'9{W ,tB\E#}t j*W2 E~O[ ^i> lFc˟t7JՓ'8ϵ]PLqm<tcU+iufkh=z_ }KlF$RǽzPȣnN nwt}\$48`8"n`#D<S3pʐb9TU3>;hi卒Rjoe/oДS3-=OqWm4[vrg^f=OTeS ԹI g$v˻YB`I)ܩz <1BOåJeڤ28TSGfG;Uin8Ur!6Yv?,˔<UwĶw'T丸@7.K.'c1;;VEۤWK rKghUZѻǒ*m&1ʥOZvۆ du i/g9PZ^\7gVDW5%A[4y[; y~h%3IOH-b[Wy(4[b6mm̱%1Q[sg
 *ĚMcMfBc,S8T dNJGr$22;Sr!,WVŜvߕRAiqpB \V̝?Mghwj4B
azp:Ò0Fa)m+[OXFM.zTPE%Fj}Q^aQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQERNT&槊ܶ8ZV{86rHΊر+FĒg@aM,3/]xs 06liB9ztm8[ZH P wqG4YXidS#8I$'[zH+:ݳӶ%AWTRf-aiC
Jj޶J
,IֶmUW?z.+1-tA&V;qW
c8%8J@u?jІ(
<rެ <XK!qVmVR3*tbsX%$BcjUd=E\N+'&ZB>mqޤ# M9]G刦4ߧLs*1&eU 8dX.~#9Aj `NkU!%3g2M0aQSrBl]w9cӨ`SQ_zamB*cܒry$b2zSWM=qj
NERX`UI?ҭL'܁ҳytJIn+v5<1 &@
&urQ:Gi-yBNKaixxXUAYHd`YJ%Ҵm+Q}nEHpx_+B$$=vcI\'Jo <NzSZ[+w4QzUVYrKժ$(j@*08ZBI$V2S]C;dːǨjNa~`KtH\sy-ޢevV,N\6\ytղ*3d{|,iSQ]H]HP{l9V}2$
{֜(Œfc#n‰\N.nFm ?g1!n =ɦ.9[
(Ͱ2Ofuzs qQ3d |։Yup1 ,JpEBNH9WbX`w5IupSC
2FPBi"r{Q`GH6L{VG'Cx.VKmF;r8G_g<+fċ`1j<kx\< !dF39N+Ƽ}mrCgm2UVA 2e828'h*K`yGm%/$DFTPIWO!cVtq}|sxLv(>] fs`.mΛjyb,.@hb=+W'<^k(ogggi%l9%JJbCPDNI*^F=i=Xw4|e}r0'9=5T2Xg]NeqMP6Agl?8ӊ';e۟|?Һ#m"eQ(NJ? 8]s JN1+IgaDZCrFrt<zg*)fFv}K.dU M&RFK
HgSlO6M)p6!rIxUH6ȠFe Ln9U} !;\2À09}d?J {i=|yvZ{*Nb9fznOs -I#pOj&'ojQ[L9kgv͖<zj0ye'0ҳ
2ǎ+C7@걨dr#b)eiAٌȚ4X#"B
YNI9nI9RH]9oZR5[ͩ$#Q~G$8ϵؑ=`kĞkbm8{!wT,UFaVtaXd 껊vq(a7[0"3ԟ8E^2UBr%܄09cFC#NIV\& nhHW)Eo$<^g01vF+6ЪİT­63IR-ZC諸1hf4C$tn?M| 0; [)=pkohNe|w8q]Xl;Ê,%3-RWf>ykyy-$WW;yo҃ש⾭3 3W)l6v{z3ig*䘣,܅ 9觧5H1c{YW0"o$0'sTR[h6@"&Vf#V{UK:'pRdRH8_+ֵ)KP#24S3+''lP-
^,0I*Ѧtg'>
XpOuu[WG-:V(^Ȭ"!Hl)q=CY4cG; V$UM9KcF9@uTN7
tZ2z Sz'O53*$Iխñ"$u'gy5wV-t|8J$ON*\nnc^9>l}X(v#rEhѼ78(FT`cƳxqҵ1=fGn 71cC3ɰ_^Mʺ'PD7QZC.H|Ugx+S3X&/.#- o~E{2܏;pé vM|f RH 늱}=J\/LhӒH*$PБ>VmƼI@zW7;Jv#51fY2Q['I0)m)s\1!rJ+fTHAcZ
r_fعp$1RGZ`UORfPRȎMBc9,$=׵a۵9ڢPzh49p%G˞`Ӵl+ !( |U{34hUmWH
gRCkn ?"[wQԓI~VɛڣP(޲KƤh0=*`|B{39P=A*[m܎QE 2<J80!yǨ1H^z
t-o/ƒA}@ȭk-AZ@8pXg ީn X侅ڕUbDsw=MTtӫFFi`gXOJҚX pjVWЙX|S-#m)yP3ֲ%k:R瞵U[Gn'>՗,Hߤu>kUj9by5* L5pYH!m|ӭ>`y70?U+ X(zA YTƈMٮ3<JT~r Z"ŗ'XrL'$LY1pS9" y)#bB{v1ҴGE)66S ǹXct{Is̲bA^0+b;.y{VmoFEEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE๦I4p=?_n6rHhX KK l
Տly M8JܲYO,on+҆ cJ㣚YlKYq]GzٳK8$V힚ZQV\04и mXq+jMIZQFj^J.O$0mbkN+#~գolff}7
т[Hyz8%8+$ G?a`⦍@:0;VQ02~0]<)<)r-!N
ґ6':A=0,zy5 qjl,{7LRx? Ӑ=BlMğQP%ڤSŪF5 SyHX`=4ji<V(ZMcxB $L'<q}A4B T/@C@fXۅڴaàG$rȢRmyU 2+J+(sӖ( Kv<OaX9iI-Փqr]GAPO1qjVG,{U{}zE-!‚OenAv@F C$%1YXyT?
8H^¨u;t6@,cY8OebBOvbX<Ѹo8Q4dWcojŮld8ɧ p<HꯈF{6Xpytr׎0ÅmR#1@ pqe)I)Yi%7R2FTzgdO.!jK.YLϕ*0`5(8DUr մ1n2j#tGz@yʌOkM1hܣ]pff$5"COj`
L UUaݜ HLR+OnRFM.`j,oڝ+b;UeFg#ZJ%&f\.sM]Ŏ981u}7A7zVcǗP$jNQQ"1Օ_h/GH#{zWx{È--pTʡq^@u?=+u Ff{KfIܤ3 O*A[;ҹkF5ߖ];K&Ny^+,stiN|)ENC7@y=~=Av2v <vi'$ܙi* vzM[sqr".6@$F
dL\.8Oל,0 01
Iy,xbM.OOJDҰrO=qަ+kiDzs}(NVmE$ |능g0DCA;+p?JۣU;Zj !McG&uOsPV̢ER F9Hp?~JI>Np ˛{/.4 YسzkφvZt9uMN"4dti'%fszgK'+#8wyX;p'\g_闚@+[>lkiUdfmɹ-Nչ~x75.>]ҟ9MϓV*U'ee'$u 2s^|;"$2O{cx9o<M9 "872?s^Ԡ.u<q3Vu+>Y'nǵrБkя0fTU[9R7"Flm>s&u#Fv( T_Sn%7DtUQf-o~)+]GAڪjrQZ2ݶw\bIx)UcA9OCTw7/w<AyX$jyR !IE!VuSgoUrm& +89).#U]Svd9<y'l qw  n\GN[O)yr"iV77HB1 r:w{4=%I"QnONU`\֡XDQUTgjx vׯb,׫xlfH;1/Bn@ tWqMJ+iwPA$DՕ>s1G9g+tn~3ZrB1<3|.U#YIXsQZo{p[wC\b`s
VUiS5l{km=k4X!-+wghT+B\jMM=`c5[pq$zU{
]f+0
pt ɠv ڝo`1Ntaw[ < 袬~+nt2$0;F_3O>suR 9zt7rZ`8wӓ1_bFG]u3oa1!TC#[=>s\5K[Y!e@
梽}\Gs$G$ƹb<Oҷ|'sEʁY=(?E(F-IWǏjdV,Os^?«^@H8# ~~݈ <2P55`T.CWv?G k16KҭRpzIpsOYbXveU +8aWtRJ&:I]Q!@{,G58dɥgDej vd+lIcjKlL99#]yR[E$iɷ)w!#܃Y8^ @IUK32z{֊?$6mh,[41&!@ 9?&tIGL Vm츦D #z<U`N21Z nFjiP{NՉt>Kq2g7AA-iAdK5RRJ2L=*9R]IvsV1]E>^Sw6eܤݫf'F
52iiَ3.̐\-byȇ$X^rV<61q#oNi- AKdP$aگizKt ֞ͧ{UK{Gp SɴZL5O:3=ϐ#!gq=zZ AU`ԞxXziVݱf]
[*hZFbWPQ\Ԧ@tqtsڝK;A8T
ebryQu \ZYֱٜhĕ.9,VV[\t_zE&0ʏ>O[7qZ09qibu1g^2qǽ~A޷l4K15aB@,H)4(Vkͳu%>UD
-8'ښu,ۭ*DF}}) dsޘjbfb\`I*Hl>+;(((((((((((((((((((((((((((((((((((((((((((((((()s@(\[^f֑.Ic0*$భK]7pSVݞ9q]X{0jĴtVՖ&kvJT=;KLF[]z9~Hn]8IM/|VS0lt8oZihֶmI\|V<*BI6:~2>VͭvuEi، b`Es%}XFz{Vx[1ÎqX%Ex⧊.y:DC%D#S*Ӛg{€y94Llt(Lr9fMD11BM1`2~ ?zFr tMq!.ǹV>Xpr63UB |$UcǷF
w⚋&ؽ=d Smd|
'c[F5 q8TAxwOփ]} rsQw6CD̄@H@簧o@`!@$M n+IܘOd S#'~A"YTd?X,jJQr=\d<&3$ F;6E8<u`>v'@`<k*Wgr XK]"RH֎i:B+0tQoƊV%s*B(pڽ!M.X6 <oi=MA]T jBa҈2E/,{qF%d',vF7օh2e°nti[3xb!s֫.eFXsִPs"n՞;: <mm
I'1iUhI<f#{ =jЩp :R*J R4i ~k\ښ_-LC6enȨ.2*1H!ǟr9ۭmD+ _"oyjd,( TؒE$Ř5qOb`p~*l|l0'$SJ@ni>)|BBDoNR]R HHihl sZ;I?$Ƒo9􊜒qhcNI '؜bH/99*ï)qqBq3rYÐH#jLgUYR{V?'ۚƣ g˴1(c(hQ^g4gn{{l9p2@ 1<dWyl:~{ S=a5[i|2Cn;W銀y%P7c=Qjq5F p Gpafr}5$n,@'›͡4R€gNrI3:mY{Ġ-Ցa]r|?f_Aq̶'4dy q_ESh3&v]a}XM| (+h.z5d[GoZ?Ɯ4%@ְIsq[H@$թX~OL6ݛxP,F=Si4ŶP,܉OD:8gr'THeS#1foګhB&29k ߨt} 3L3XRml$s?x[Ew2GQ{g50&sXؕmEqēE9UOxg
ʉ8<ӭ\R2 t'[Wo.f1F0<ۈdzW%gM?ZicPMbJ E,s1_O7b,@,܁W, ?U|Ԉ}# wj&U𿘜VVjc9ڧ;
ǓoF +lNq-eE1
rswtgkW/#¤$'V|P]P7Awc]~iZ41ͮW2XH=-e9' [G%zE3m*
>I-+JoXMf*1[T?,0dDz~MUuFmgnܶvcطw?1'Z~origyB F^cOj)Qq)l}xnlY[h.zp>&ýG5%kЦLB
P>k70\x& ǿ8v25Tsy2g`sҠK:c )sg FjòvLi{ⷊ]H|4:!=Ďe)
}=8Z 'YI#Q~0x'N𦓪D7vsɌbc+kҶqwEUZfuF4IL*X=Oǰsq `@Z'[ cйz^Etx 0r8%lꑛL_8Zw>UVܠZcԘ4FEP65ȧZԌz5zz(mByU%>\U@ 8 i7
XKs +U $>m1&If~}R?RMtv'ͼgVS{_ΝSp^TrN5FC QzUB9497h9A cE#[9$v73*Bh}^)qn.x--7 ݉^8 R8휳ͽ;~H[ \`.tD*:
mΪ=~Js(h`,+SHXTJ=\-B1I:w
xFVi'zvw7Q/Lu5\;G%hϘ$N:TT$^kHF2{V}B/`qd73Rjz|^-i0[F%%+5@oH'C! &
ZҶtj6Uݏ@
ެǪG4񟧁{+Q}Ԅ[6q-֝k.h<9F{;Ih#$坺栵/6PutԢwnpTut
=i Ҥg([մĕHRaP2+eH+APz}Zm%dS=zTe cܺ9*A HsRҸOܼL
[3~q\ vfDekj+GM."uxqO4$OJҒ"PPT[]\N|2 TE49IfDb@''v7:0UFw
槶FFl`E5/|'r0|^"m8Vb)V9wA\c];)rȬ|Ԭ?_jW19QҲnyYO^ sB0=HCV )
գkBY1\*VQ%HPv̪ͯ6 UQ"UVtح 6<S;7!>n
S.7
j3u@XsRgr~*,J*4qI?JiCGsI'8m*F@r܊EQQ^iQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQJh)I"U-H "DXe V@cnuc0d=?' 8,nHߊQ,X)(MtvF1ڶl*8iTdaf.m֚X88^չc VSi}K"] &ٕiӏlŽиogmBmgfs:zޯGZ\VmtWH6V,N*ujU5Q#H^(AޤU`i Xڜ04(3ҥP~?!`:}2
8%acy<&Rρ) }?8V]'{܇Վ).y`9R"grI'<ءW25pW8ӧk$bwMj 7ʞ=z}%ֺq0jKN $=>Lܰv`bx<sn+5oZ_iz>kmV4pl;BҦ7ޙE\Wq<%uKt7uM3VM$Fi.|H<o8z"E#>դsFn*#p3֖I\OU4 q4Ɋ7A"׺ImenB.UFK>H'py0tΌ^v~ k[vXjz
+:vZ[KC yd5SK;QbM? #88>Zj"3oygf`E žzWƛEnL|?w?බ!'i~
ƧWƺR+h!s''#NֲS@mkA 3$Y㼖5m}aA>Ƕߑ^\e|Euzɫ%޿hݭȉ#l=28_ď][bx.BB뎄MZ41rP#S^wn., z H+ ݸ2*h$2,qr(<撓AZ.. ]M#Bcݘ9hq'i{\h1)(60^~+Ȓ nL{"BNHzՁ=5iXjS[Fm/&bEFkdc99e<ntuŊj= |{eh!Yh:\5m{<{}Xs)fh-Q`9yY1k+ F@T䜜dsZ3E\%HZq>ӧ|k%NH(yִ՜Kl؎_&34f.H7ʇ>>mW5.#?-I?~kNWY8x.*G%qd
|4ŌB8=\ƑFd$9R %^8}E,i{W+qUiw1!}G H38aGlͽ"if%Uwv%Cqң*YwM*yҒJ<UJ 檕wmꤒ8cU!f3QA6J"jrD̹f܏/;$+6HO Wj3]v"+ӚV>4搨! 1ؚD5R<k6]1 3ϿZ$c Vͦ
A zsNlNpi0?Hˀ?섈1rrivR1ґT0'敖
ExM[H-kyxP0>ỳqXgc6ľxͩϟ_DRMWFz |ވ}Z;4K;RlTŒ?ʩIzk--lII'3~IPWSW{:A( w@x{>)(ѭ{<7a%7.Bb qsm X|S>INJcq?MـC};<{dYک&[m:tC`s>_j9rmF[۽ě$(#?Rz2!AjXC*%'n|V{I|ċXǂz*Ni&}!!A˛5w
:c+G]BdI^q,,A2V[HP3O<.R[y#+ןnIjז:]nAv.pY$4]a-Ԋd1$i`?IzD[HA,0H'q׊;vp⚖8M/wڻY\ȼu"1ZcA;E$.8ֹTƣ5I=_|v?[Iq`ppz:kOb7U|}@#^zf3VEiue\q@Q7b&KR7c8V8N[ǷNH]l rc4`Qx?ق_zn-$!`0bjp]7R& B 9 {u/gu3f[kh/5Nӌa!i%Wzd< )uڋoi*t8]-=o\5m#d|>s7 [0kp/=#Ñ3v;1$'8͋yŴD YH6K2IzF3yZ\q;1lcQgzк
4 >j(]io+,B_܌?έD ?pr^r3W4FnBT0M$v~M'5Yi<^4 2AgMEkGW 0BҶB1gj]o81T+hRBbI5iYcQd@Q7ec 8')FxNqSn/m>l݀wii d
o@hE=<Hzݫ8JV% r߽wN[M9~2J5X-y=G]1<bt7$1o#n?z/5>S/VwuS3ׁYvR#kM2P$WmzX+D:bPl?`>՗ceq}pZ9!pnkᾥťǒ{g<;r(k[VNjҥsf#<!Y:?ox\4KV 68cNifc·JJXb<;blinep[ #\8G*hB+10E1SQޡeR'Q,V PT7ɪZ,m ڷA, Ѝz5d*ӌFudacږ{keesg
r0xSֺ2t$SzމI`{}=<2pR CDQuʊ͂sz)d#&me!Z4n@.Ue+ 3bh$ۛZm %٥-nk "o44[I㠦[l12{R]r8)Q)48gXEMlZxuvhB| !GzR?)mR2PIxm%2mzR%IP,êN+Gf2iW\ n$f;,V& +ڙ$ J{XstzN1]ڪYY*o0`0 P3<r+ztP6xXpFOAMQ.Ս wqO.;Zdb̥9R[䐡{T >TrAjTJ{5maUĭ<~$LbAk4n(*yxd1w-=5{4s
sYLŋq*vW
S֩$faZ%ic'U]46+d10Q=GK6A<BOPG=6ۢjR=wN!zK]9TrGE.rd0"MH\p3JQETOJlcT$) {
CCQx IɦJPU)uExbj7sӷEaEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPS4匱n՘PlMV8W`,GZж@޶4q]86c<tdZۆ@[6zQelgh t:A* &v~1,4?A޺+-(eA\չgeȭ-/jI'k8{9܌-4zkrLTMlY酕p0:[VxV3MKH(ȵ[x8|V8-W<6\qgY{UۂYH@+㎊Î) SC*`kTHS"~Sq柎Ai
GS) *lt=ix Г`xjž$6i|=*=PJN9v<Brvrd<IGz){ޚ:dgE2lt3) FpLcpsId1簭ih`}yWHz@ 7 sRKW
dpމ4[>xj>
m:LoqjGs*+*S0vۜb?mIs_k5F@, Wxºw4Kk$1A66p
t#۞+= t
XzZsDl;7]n~N+ƚnp-lZ5Ƕ;rD{{zAɥ˶E"0ƒ;/ܜ}A—lrr` ׭;g)![Dpscsp3|_6U_xTҬ.#[9ʢn
T@ߊmԚjY<2lH#'#=橯nZH]IR+/-
l[c$O=+<i-"fƘ$A*J$g\2[ z;tm,jZ=NgGB,9's. zwm[qY\ooq ms''$t{sX6S8# i
dkg.O5=c_whXnkō*y{l?VM;MB$YT'=W$t05%xRK9=ɮx<t蚧~)Ӛ?薗Zbl"I gtX6ޛ7ztoh
*ǐ;קx{nfxL[3z e@Vn#o5$Egi[>Zj\>;& #AEWLYZiD]O2)8'9ڮG]UP#\,zH۷nzc5Ia4Deޛ=7ŗVvZds\F%㺍dw#,;M̤rW7Y2 ^ON{q] 0ɧN5 ycD,2@sI#G]҆omF=`?|bRX,o Y$kE{c i u=#pz6g?hZ_!RpyF^J.۳>''/A =Pol]\e.0'J|A\GeѼu_8ť~Jp\r8%I#޾GS踄74˧SjpvtQsճ41"XrMn 
<"rX%TFTd鼸xNu=M(ƿC<ךFG>ԖWR#mEOm"`uz{HhRBUJ% [P@Nx˩(+fvbTBwj! =hGr'5I#)9QڷJg+bI)@98SI<r1!N*N~j1r;SԝGJ[ 9*ţNsQۓ#ci#jæܴ`xGm6f2@ʃxO|)z~׿5@:++m̀s m_ڰ͒.fԓghI ]K) 3<(l)dQ׃]-դ68q"HfQy2QNl+[EY%u, /ל?~ŭ'R%ԌU\p s9tO˧7m~HAہک^Ncovoyo {q%$H:MFͼy6C [32}\wq;ij%NzD`M]VjA Gl#hY$i l*㑎}>AI'Vc'[ 2H8<ZJ*1uqqTܱi*Ėby1rUsW.obk@( ŽIYpd1HaqcWfIۓlJ'*"mN7ךFpMrrzr!7fvvbXV,2ɍwp:f-Ŵ4 FGbINw 8'YnZXvO,:{qH$121_ZrJT};?Ha3uq|½{޾7XgLo\cѵ3\՘꺔5Vk[HyY]YN1{uW*ez,Q<Fl˷i<jpsix,JCv)\2N00@n9=,C-[Hv@bG?n!en\4x'W9B
+jKSW$RHl*{7s*J΃xe*K{ɭ#[nPIjo5- ׎K23zѼܖJD'=?DrDӯn;s<OMw g']O_?4C@3*@{Uͪ/[E[ۖBKJ8Jxrq.s#b~jک V)+ aG,>r*Sh@Y' (4׹oZ$=AladXL=XBIOV1X}G$ձhpXBAҶPB6:QcJKGkai-J9e,OWs_wZw3 j{m?j)Q^FPۉQ$5l?)٦LjTm, B&!?9pF*zJvH\r2>+y13;W"2p{VWK.ǮJkӉ,$n1xUwsk"KVW30*
v?ٽu*`J$d-)9!{1ku+dE_TMQ HƇS pO,OǼ:uDX5JHk{Sp@MU|d2}k,JcP2oDLsA,taP1ܞ#[2f;$K@A%NHQ̄wV=$tK0O`Aqp AU¦@rW &d?ÊSy"9Iޚ%,t^܃"i皧kv'@U/vۊވy5Rh`J9Svgf,*{{ރ޴tɶ^gwj2zՔDeTP+FDÑUI%s1>/BjVd<@qU$,%jpW+4~I(IgS%AKө*[
'UI௾k5v w42G׭KMKZbyEN8RsL26ghU Е $RTg9 1߯z/1QtspUfh+MUc'$I9=#z
,԰BTǒڍ#1CGղnr=sJm1D/} &ncV8EbL0𵠊Tm_PE>Sh2DbzV=Rc#I*!t#UتVt?=%AJ8Xc<RFtG.qPIe m'ܚsG($ok]0;GtQEyGxQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE(IlGJ-ꅍZ՘3Z6 sٴXjǁ)eHǵ զٵIa(݋ǯG,YaeR]\ ce%pX8%0t j,˯+M,lXTUL$,A׶qZVaGO\٬qgZpQ{VQW"(U8 d7+ ֬152' {Vk1T\RI$xrl961C6晸ޔ~ I (<S]9'MHQըĶI528&qY-EHW+fOjfF{ը$Klyfs#.#SϽDd;{ը[ҙ]M.M'$UIPۗ'NKI֣v5
}G-
+yMKZƷv7n 0:
uG\]9ckşѬZ56a@}g\~OgGR3|w{4wCWQc$q Y$` '54Hn?^[l@ \\],&$)!';%W*I99ۅoOMu6\#h(3C_<t>
ljRjthu{#8VpUcdpk/↙\xqP]ʷ#G|o[_Qi*otidxn7 0[yGk<0MZ5-Wr]Wp6asqL,[qzհuuM؜^{ {+|%CުhF}C38ںyīqO{<+we 8 Fa] |G"]:H rݟ,OW.FGI>WPsָ'9j(t_ NyzV_ca]w(hfxD)[Һ.9nl(LLG -oMxԼ)Awe43V
@ʿ9h[ d!#r2I;`9EZ։h*ܳ |`?
bDԧ{bMFѡDn!Q2Nθ ; `}+I*c
Y_#G"MT_:j=@\8縯<m;:$:^'6;<*QqPX$IdJnNH⳵Hf%rX~3އ;wmB}o#s9 sג~&ďkq5Z6o $2#$0Zɞ)/=X':Ӽ%1nӭ.`bWsBEax{Ep>* n[wo%]3c#9]Kg+ޣq,Sn`{5k8"Kԣ'<I.q0FJ1xD25 R_ɼVvŐ;b;+9+뛝R xZ[0K{4q ZH'?WWm#\@ٝJԵݬDI0' ?Ԓ>IpW"}1?a^)fYS_'[LcA[c:ɯ-,Yo 2vvtvxA7;K s  ~g<\jʰX_(i/ 'N9VvhU${n-j<
zPąNT)b8r\>[YȑrkCFsTI9#A˱R*`3Z/RG'p犍ڤ)㹡@'v6O8<&Em+-*)CjCp=z!|M>y GOx5RH\ckr8,Y;jÎАT/SVuUb>ǒIZNǐ0=j{>} ZYݙ6#ʜ =#ݪoi ֵaiCGnd"2ȡG8^>3\o⧆|)a,=7 "M`m$V+hn皬חm]ɘ6ܪ cyQb@\$Fv?֪t GY8)J#;O^ޤK hY`jYʣvVcϊ,+c~$~H"X&&FD'_>d"!!m@<v󥸈-R]OqIxKwSVo6?׊ FeTj`ߝq5'֟.܁Ԙ8U3^q0f,A`0קҴ҂FEuC4`Fy>էwse=FY$Rݜ ,[aS FN:dd=-*NrG~yKNOZ5U[٩-%ˉdĪQA> NǞi*gjAWaLgV2AhղH'm>=ժF2tԟ~8_)C܌{f:Ҕ4[kVKEN!"sO^Y9`-C'2O5>UH LQW,r伹 sF$$~}LznC5 Է%iik pYb Ik&Vf <hّ_<u֜u<-m>Ew\=ͬk 39e<yN-JRmՌ6cnXz'zk7兺XrŋXēO4~+J #8JQ_2KmEgơ@OVU+&"TAPݾzt٥+ Vv*3WUinglbVHԱ,0
)b[`U-<zК6[#Fh,WNNE)+fF֣7&iy%ؓaۊnf9XyvQdܓ3D5夭1^?¨-!7zˡ~%[?1rus[n -a1OWSGjs5s5MBx|Xmj["V) $s]urv8rfsT Ty#[3XF1NF[wJ{|dMUu4PF:ތw@?OJɎ7zҺҫB70
q!Fy]~aQ RYFXא%D&bA TMB:,h+79ZhC𹫶OX1z
r_8.OF%]ܻgF T3Xϩ<RWj݉'"FzVd`ҳV HI'$&@@$/^z
[׵,$t{֫<y(mJ᧓';jH Kt͸rNx=h;z8R[!<3,&9'үF`<DGj0,O 5[$9I l.ABOұV @*3Md/US+}#R9Nދ&AsG6L*1 \;KSlqB7R{U[LGk}UefUd;6rE]1$q
H'8\I3Cw[yZys`u5! ۘg1U38 IN1ӰZ-"d$ʽ)KW2mOZ(c_"6eYYt갯=+q<8 fi2qӰ [1o54Ŷ2yXi#4jX 
ۆ.Nzdgֱne4Bi1NK{u5z+m@BP<+[LBCL=yaeUX<JV0M(ڨ\`wv \p=w4*5JA5Ph%}KQIw欫 RG"[jl1
Șޠ##j T\-sOLĺ%Bmj2~)rKc#? q&b| K,$oaQ9.zԂ<G4,}M[$ب!E0+P*>-+;(((((((((((((((((((((((((((((((((((((((((
rO4P3tjtBI㚞+vc5~ķ8;[:#:ijַIe
8?L,GtVzIf\']dsO30t[ 3oXi1[X'tN
vщiYr-t\8M3V妚25oM[6qP8kZVjY[5X3ml@8kVWcVt>,ƑZ(
gju
bCe8Q{v''I|V2IG Q{PO'8}9Hnj6P$,d="b 50@U',2yi00*"?_j<j6J\*&u4ܜ4䞄VQ-͒SM' b$ bK*$O4KzO<Ҩ8!zcgR”iruK^4`u(攰9Ȧ28ڿzb\zXAR0@ʚiR͜~)1M FigHS+S;{՜fo9j~xj;VjFB9UׇAȢ#U]wxhෟ^6IJKFrA r>ox3W4+[ZGnYaG,] P<z뵼TvI2[<Fqfm.[G9,[5SVG\qUNz܀!"x1{_?j g 8DcCi&4IVEaf20 ӀI:y?|D`"1vsɭ'՘jwWUIV6Ա{^?u 
|y[Ye[);b෡N^Cps;WD>c~iUB2x<j#*Ho)Tzm"Uea⬥^Pc\Imͬh8Bg+5I`NXAMfa5O1s84ִ'o"
a8vq23_kSzY/Nm)7owU__[:OgQ8˶Dfp%CMk/U.X.%;cp.z?_2im2>KH&/OYkRx^I7v6$mٜy=:u][$^KH ʛ+CGO&rZV;__]j::&$'HNzltM'L[gue D{r0nFO^9"Ҵ-gp)58X2'gJZ H֑LK/ؐ+ 1\Zٓm{MG]2Oi72g:eNv`cO>&mJ@Lm/1\(Hc2 `>9miܼV%ڠI,l$zW8WICic  N7+ʑcȱ6lnQg~ iFt>7dL@~+?<K?{wI teU9X“>$go_4ZMƑ/&-S$|P1I|QUCx|yRIdvѣITe2# q|_M~x;W˷cm9$߂zWκEE!3O޻m:6Aylb+c{G\bzg\{˱:1θ(<^mV6ԑ p{Sȹq\%a׳x%R͒~Ɔ@x )s]KB&688*a=#5n4rzu52tmvLT ҮɦXqҧ$n9VQ2
SgLq"
ޤQ4pUҬ4,TY+T 8˹S!Bjy;}Y S$|Swj|l֍ gޫ ʁUIc*zT[jyz9 )69͜za z^&y xq:<(O#3hnʾ^6x%@<dqNo q@
;Nwz]CZY5 95ΣX;I:ޫn.TxϺQn>+3HbX aNN3ǹJaCY$g3&r-7TOQ{vC7+SIQY/qDrŏO?zYŒ\HV|/2l Iǰ_jdKv$VnRDv>(ucYBeY}Fz5.{@Y[E+@D5R@Yt -b8 -cole?L/U5PEds^%h4rKypv2x!hQ5<1ٛ'Un5 BX\LcB[*UP`
>sV.$)
A
zp3'4lo1dX;<ag?lr~n6fbN ĹϴNYʥ
ccڭIf0ku+-7:n4ܽpce`e/^Wzli^0HR'⾅m]FS$X%U'Wgq i?EYo?:{ 8i&GhaaGּד:kaجq$ymb rXĜ>&l܂o.I?8<8DxMeefʴKpsvR+%I$s[ZB;%'I0F#$wyIDyHN=_F3^SIwۮsHO"JQcNM!dK(XTm$0;Cn=B, R:NSW6<{"NzTו  pFI?J_{LaUӠ񆕆X=I~{92yjM.b<Ig~z~jr(d?ީ*XgԪKWlqJ9;} u$US 1cJZ,znnTd PܛF Z}bmݖ#M~R'ۺ%'+JݗJ[v ǹ2Co<sNbveVxiX=hn8ƶ[eC6zzܵ@#|cb4(h&]bUp:rj'xێx4p8RLʹ, ⧂5,G\$1{uA`)=RM+DAVDc$KeϷjIl)'kKv>;R4Ql jTb$7bIXC?U@ާT%4aڔȔ< дy"0$5^Hx1h1ޥ $:8`g\QȡE^+:b߽U$ΘgJ)Ce`ˆ#)C+s Pv}TCX*Tԑ8'-@`tb؀z|TM}MG?g`@YG>>ei+;p"sXK'tFT1*׵)P2IU<65$wY ozȑ$Q®)vov3JW1V#I]1Zwv[[|INt{1üW=szOSZX4' doN^02E)_N+w=zV+<s{T2ۼ VeCcO&bY~)_J;SIv0q֯7:N*@ 5E_HĖGln|6j(gOhƥ;P HQbqڧڣ$KcHPoq.ɥxbxA$p:{AT;烊aV&0@IsHXTpF.z(4
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
(
usOHi61,p= Z-ֶ 51937#2 t9Ej 9niP+sc酻WA9UV݆WJnGڻKYóʪ5i+ճe1շiG׊V1t[Zycթgb9{{<GՔYQfl vKk ~z`8I#JY "ڭE sSG~2<Vm,]e՜S(iRc(Q=
CvUA )=Q4%adrO8c;i6Bj[%M,2Ңw9݁TlMF<S]уD3>բDH[+93cCMNfǟZD-#{ic1
r@P ^ZBv|Ԇ 2VUho@ґV %Г;N=ݪA{c%S@4 >iO njx!1MzU0Vr*+S(Hyj2s~;>ʛ-eT:|UkKG?"!TqnW=<\Y|:i6Xo/$~S[Fd{WΟimKR݇*=;rF|el}L 5xL<uy.
Kuf6)(H{B}=)nmCUc^u;
{@MPRg_hW֮tR# 2e=DzsM8ܡb>k~QmwGlmƝA BXKg3xzWU/.o@ֺ}Ԍcw を #$z5 ת_~pFҕu,[i9#!IW$(&&xGZj%IUp@OS;MNlz$!D"zyV܉cţ11{W4r
F}Y qN׾V;[D#B dUJji#bd'ǣO{y2An(V2IFs 9yL5]RGy(,㐽2AtE4[^5i7@pqrx|Ȝ %S#r+𒺗Iѷ#kn2A2 h0f<o3itȜW{>GWu]WX6I4ӌTp`sqrM}O i~+խ eRH9!p3we$H%m" GRASGZ3ydBZG-O]^a㺸V`m:v<n2dHDg$
UĹ}H|ۅ.OfzN٥zĚ~mo,UmFzϾkuoSy|<4-QudS #pڽ0}-O
+I$nMT4x_J\8;XAzW_-][^ٔ_
u]K2w\\&jG7oibYtآKT|g q${)IVw㚥5ԥUQ|Wxy<Ɯoa4q*_Yէ/S ˲H]?U{:^z\]nIݎ3ڻ}mnQI(T0JI# +JWpȣueBۀQ|%9)Kf";7D_nvlt8HZT FCSʑxSS%/]BscsUln-[xb
$Tt ^g_&]$wZ^aouu!b+ T6{}Շ⍆t/o-[bݤgC<$xe'<E۴w&$JoJK<C$Kѧ#8Q skMZ~>θA2w*"gK"=k<K]I1Hpm젶;r>kOA:2,ݰFk<2{_VoB|DRA/+:
u%bgPJt>vNȹ1GI(-l[R7#jDiDZ@z \;P]zV/5MQӆW
y#TDUugSZiQ9o5=70լentZ3zU5XW2Rb:ə3s]
.rqOFNQOj`AHR[Y@Wx :rX U#%ӏI욓WE7מ@U>,mw[n-`.-;Y\o8$9y@=dͅ'cmcD!@՛',=NC|bHA[eb$`9<8>OgNXL@'8t ޤo.[`K*!TSߌeIkT3<O=
:r,#kLgs Sc&ȷ:1P[5ԭ gw?t5q.F}ȖQ'=f^xSo%
6B( /RTpc)65<W Tj;M>8쭗d(v)=X$aK#!dcKp7qܬ{pOrVt!4~^t\۽+rxusfpZJFЙzֵ1yPdA"m=394{-!c`(pĆ;Aǽc]ں6\@TJ,:qjTkQ*J.'`^\׍p#QaSa }Uq~[-6(b.ki[+FUcڹNjLh/4hpz_^0O m
!.EϮ%kLjvPƻ<g+ޙ_0º#7mNy|AON9l.Qfir 5>k4!Rm$Hp 3`Q]9E`kWЍl".H<$dCCQYv.nBĞy8:oVM#ΌSgFHe z]w< hͽ#,Ó<^»K.mWdKʭ>3]bR0Wf?SHgPVO¾
ҴIB{;P$ >*URͅcmLq]1Jy^LÔ%=Ao8m^p#o-Uӳ|xH'\sA!AwpGZ29cNqh]@~
~@|X>x(ba;
a~xF2oI#Te1"F%;ja9<tvl\%CVlx'4N#zC.I[i*K,lbH;I$hg &sosT٘ V>S'ީJHqHVxم}f蔍V!L50aǦ
OA9GRFUN?0ڼ{;GԷcBڍT40|z;VLNFU` Q$J&`zLHTFUIcHlX ,/)‚>+VI`@5ec@ge)F}iɴݦ2Ekjp( ɬ^F讨F<851a`Ͳֈ$v'R!=yʖ=Y)hL( TbaP2FsUegS U0ªLe Hz{]sְ21\}5KfeީHˀVV9Ԓr˰I`I Sj;% 6{ {RKu[# }Rx3D'H )QhWH##xYISZAjJߒ0$V;L\ὫN34l=G";'D"AQϹ rGڝ`SK Rnƕ
YG$}) 9j9*5 Pr\(4Ҳ[E4>I)`,pk\*mt$?ido\Ulؖ(Gj̟^J# cި; aiv3w[nR|EWz!EPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPE(BǁM+S UmtkF$dimBVl8;K K];*GieEvcy1lA`
g[:fXkoNyEtH%GһaydltA"K %YW^ճe`5X.5Ъɶ[-3ܴGB+bOH
ֶ~k)d)E6mZ8[
8Y qBz"p*uN2+ d6Q"HbE㰧<'"8"84 (۱ ӸOژ́LKFh8Ȩzg*F ~j"l犉c'zc0 ը+6G\Lg5'޵Q[dpri|R(+O҂bNTO<Jѐ!5cSHTd3ސ2(i*)6 rML!E2"MxH)!;A3}p S2I#9*>$a bNsN*Jڒ4|e$*؊\5b~HT4H'CH$ t2m46 T3$?Pޡ*Iy>*6ukm 9a\^w΂ubf +F 8#9YJ۲'&qw֙{9#P?ʹ@ʔz*-Z+qoe?5cmڀNpO>ݭ<qxuUNx&$PXA `pA ?
|Y*ͤŵĄCg##*~o?(}؟^JRϰ zŕTS uz}+5Z^]_S w$`Rd=&Ty%}Bd[6H%'!0*vVv{c{-fǩKj,UbAv}mx<wk
OZtm?7
F#OP-Ȯ^ Z[^=焌yQ_8fRX.-?4Z Jᱵq8#5<A|Y\BX+֞G:h3KMCh5,7wz Hzmٴ6(Wێ)/5;x5X.$:-sʢC.¿ڶ:[]+09RWFǫ'4]JƛK|g*~$<z>Eѩ+"\^[C&.eTx#3Snگ٢<O?x&!Br:1<t\{ACub-0R9}t#։5u2[vңF}Gz/S5_xsF;CeXa8…MFOq滼u doKGxFjAPW
T8aRw@a}4Fdu 3vWD.t泓LҼ;U$a3Rx2Z zucCO ϽLc:p|vθHPYU} R<c+ 9ڱ Vuyf,ۘ"#0s&i63Om\ =20r;<1_mٯգ4kIIq !b3IwA3Ib@n!{=}ʵ/j
cԌ``~NjQ\Q'"B<>S{vӚM*( Ks&zאSMzd VNWgc|Ahp<wQJFv̸qy}F̪ 8?e|IT3N-Z\-$Y;Qhv2^[=+NO'G'=Mmz.t=ԢIrJIH;}+nha5=eO8e q`0zpq7Ab/:qxR)m,-&QFGaԜ`v
SWPkmρ;C OӥqO㼂FJV7 ;3z9Ph6[2v0aErc$fzQWXl<Ec[IK$/2CnYux^q/u- I
ŕ|3LP<Usz%xr
qrpvig
#R:Qs\Sɶ9[I'N3Jc^AI!I[Z} &41E`c#E/杳;J3hTK8$6Fcq-drN/ݷ!9 Gѽ2Oڽ/wN28򌑨ae }+ˠR[)_8,kм|<L(pT~z?"8LҪ;޵) umr\kcɾT5Tc6]I
DFYXrCP%5eԌ8fK3r3ڒ'D\ӚBϰZ(혹Z"X|"isC3GRI|pHRviKjg:'t*-#
s Ⲟe\b^<.Z9/şL4+#(Gʎ|cKZ%ȷAP3F
<lzr95łشܦEVȧg1cInz-iYxAXً"n*1'޹2GVz=3"G,г3I'y$Ԛqn<=)1+m </zLDzR90z!<10km#<Rg`=طl n[}:ɍaKLILn48-2Eߓ걾}mszHڽ˶KQ{m\3M7zx9ťdϯAbLk# ɬ'c#3wbIcOzՒZPc,3N+/?֜efsB iyՁ(ʀ8$ck;VbSH85('!JRsOLH z,QHFFfS ́YWInd|go9TϹV᝛sbAӮߩ8mU]U]`WmI]$4uF I0?=:wֆPB,+=HU񾂇%Z㿨aHҶ
{l~o&A ҾUF :_g6nOWht?a15{3?ھǺ+ŸBc
<ǀt?L׶9IHƽ`qi惛TN)8o[;|H&[I!3 0^iؤtIJ;y'ԚДJf\n3ޛo9(2Tc6˞YOMX\8QYn!Žp6Fb{)n̸W!I\LBJ#[[2}=0L@;M 4p* X!˓=`།悱ul .名jEd]360{bG=:*z<.HmR;; gXa59&.wdSXsCJ|/jk8i:Q*7ڜߣ nh+zhKC0=K"\*2;T23Ny=4V )ژ_v
QBAUFOb{SXjxWrq=l {F=@6saN ۋd*l7ޜ
3{OW! g0ޚ2A=o~)OLҨb0 88MOzRP*^QV˖26H}nF&؀2ڪ
O\'S$kM1IC ^Q LM`*t*sn4BK iszde*8+u*ɣp8?Zdd#%,l{LpN}ֱuh!X}j[#Օw|f+Y7@uQxI83rYpzd9XJZHYV<PLMC sZ@8ZĚ.5ui=ꨧ#4cLԲ-
gү FnNJ]h|-UA@Vm;)3Lc0R0&ܰvmJa*jj):/ʣӌU;J8@9gv35_ٍ$%đ `w潝9\W! sԓZ3My&֓AES˷*74
W3 F%e
$՛8 ɩRMXʾ`O~:,|IQZŰ
-QҲ.Ak As֞0*@*{U 5NQUiE6%Q5RRHA W5=ܷؐPߵ_,Tc(OD((((((((((((((((((((((((((((((((((((8)'PqNT$⦊cҴ`$8%"0< ֍$gjZ<iHyx,Y~ M9р:YGrz
ӴVMtvZP,Fx,;,tH*޶lˆ@GoXjJT [ldzJ۲v[V$t{[3d}VvGԚص1тvUVf]-U~3WbcS$\ LV2lD)GTcj@O
'54lӀ}SPQ63ҌFA`3iaQuFܟT&dzsך;y. ɨZ()rs*&qw" 䁎I @
rW(8M>00d=:w`G=Ge"0#*fB=Q(&hBHz-ف( ?nGPm5^kL8erOJ|
@3UV*2kμMg 7Y<C \s?R3הxZu[+bwĎF#xl`{{)&֑߉MZMWR~`g?FI?j~5;,^_ :-ۅi<d1762BctRp>S=N3V!34s>7Ԩ[i$~MTE#?"ռiŴ}] kP``C)fRza OK)kwS8l1kO5>uhZh9uQhmxgNQ;5zsP1J?oTIQ ䷊[)hP"0e*zGT2ȪSRUHbZ2zw5nH"NN=5wv 5"ttiHP<=6X*wg*sUغ$fpzQ lBQy2oҫ4Y媔UPg?LZ?nom %[pC}ɮ$0*zlOj/${}m?BITfZuI3 hk`S_дĭ 5]-`mFE<mT Jyiqct=9k-jOzm2eIcLt8Gb9Tԃ/gL2\_D#haw $Lrq#13c9}+ku= xk \2'=|?Ş 9;%%T1Vc<pñoEO<kmŔmDqGq^ NK{-^hvD`.}\, 5X|oDl͸Hp˦kG>Ŕ0]۱"Bg<?5hzR's𶍩Jĝ7vGb$ӮG'
RKD/2IōPI9nBL#opzԉPoԐz:}Vw@tjXmnv=j _/Gsw=BF $Zn)@ғpX+xe@w )]U8!)jĎa=S+MFD_/zJ@w=>;-NU}J{dbҹm,HY?a}jֶ1I4E'h''<x06)_s=+KQEY`cZ~.[ݺzɨ9*w|l־isfQr"0M[u5Zof<R=XY :zv˗W:4 }W7&5xL0 ㏾+M]S|R6~?z쵇ff.xkx(GQxH9!CujC+mRsS~7יrJ7xZ[25;Oh#QZ|#>e% ̠1^ #Xd62?5jk[Yˆ 2cާ/鸻WX(b{ms!?,*Wh;J݅ģ$1'0\at[,c=1R*,fEʯWE)r8oIsȫ !NLǹY60^F*f^峎O5 G8Hb/r;rkGufI4z6ĒyT#:ާ0b@c='V|Vv 36>Tʪ!aT)UUÛq1$l5FY<*8T ~mޚɕG"G<1\rsw
C`GfԪr{v33Kzb ! 1I+<)M[B*e$nHvs/NX(u$xW֝X/.KKte ~8*ÑtRiںHaNӜ`c' 8q^\+sGk03L A,iGTpo<6P6I*[>Z=3 @\iu ۽1~+ JSs׏Wt#SK&Rᤓ @$dzrPu)%ۓO}렳h+wu!-~N>[ZF
|qȖhCKo{a4wW[=x*0u9ck~ 贲\T)'$۟cz/,TSViq,嶰Dݘ'/Ǽ|0[V d ao\2:&3
;M#h+sQ#w3ɍ@^t fuK#c6Xc,1c׿_aim)g%n# =ڼ=ҍC\]FTG ~X$`7_=UгYWMY_.9"ef~桎si*jEoX:}keIR9%r|<f&P꣒{}:rsHv= JsVZtK䧨TyϵIqޢW
k1KyZ9:xqwHun4TDZl1\=J"H'+N(;m'U[dX2
$I]EZ3@%gs<;{,ʇrH$bI;i6%F?M
][ RW/V%su=h%2e;c'ڽVyW:.OV:q6G/^x`ZC+=?JZ4ew>ief+8##\gڮ]UXsPpTYIC dc8BpT{U[xeh̻P"2Iڶ3-]];z1¯aPy$r8@^ti1uȥhnu/!ƾg_#E" sN:jSFJ^ABJu]I c3y Wwc*j0ۋ9*:66p޳]ʓVei^0+2pas5pLm>Q$$Jv`z2$41,r _e1qHW#83*<I\qO!®3JsTՎ0sSsI ܖ𣰥7AR#?SB{$b
c٦f[z|S*4aW
Ь
k͜M,?
ʝPgڛ⛻<
adޝ2ry$)aqL+#tiAӹc[  ni >8QeEǪIR@;GzrV8⦸Sb65E<tUEpS@LހyFgr~kF=B;P泒5gG/Ǩ@g*ڕvϺbN9jvl7MJ$+qڨ5Dv5Q&5 {/K2b[Sڇ u,S+d!lH Iq\L;!}j[x$ CQ(e&MfsL@=-Tre}˒F=Wi1${ּ/7_Z(oO4V$'Nk ޥ1* CjSRB烞eJp~kwhcEaEE_df-!ZI!A?J]JĂH5ىfjUK[Dl}j2*6[q`y20"qVˍ%Ԏk9l tMlL$`ޥkdzДmvbM9cVVĠF} AJ͎?5M'zny9wҠ+g.1rx*&5e+dy:'q{UU &fd|p@*[ƣ
4vZ>E+=(((((((((((((((((((((((((((((((((p\iI54pٖ1ZF "pWukc?5i*@N< K*FEI
H$ Һ $x+<diH#Zi@Bf촐Fڷ4u((&+'n܌WCe0;ֵ[x`~2Ȓ$2,xjڴ#hobsZ%ͣQAW:X1ԏc,ъD):
cbT8UF9i H=E@O4sqOg?Ҳrhh <Te94?08$'Q3c#5j$L\gj2Qo'Jf㹇Z[$g#z,IʅD尠Z lyRA8?jE@9s\۵ b3d,`{w#o?s614--Cn\}ϽA`sfPIԩYd\Ӏ2I8|{m=֡q rdJ>&n`m=%r>:S'IVW'vc2i}v0,sSn>kY{{WYY.ʪa3m:0Io-Һ=j^;~)uH<,;d7ao"1˾ xo ,m9`{pOPH\<H,$}HeH*y=)HoanڕQbZKkh#`G<{cN0x5<2LAexǧ}Coi-@#8AC gIIh)eNj䐸#g\0$вƷdMnfXiE|" >Ug'8^w < SV$s#lN =A"A9I:[gJi ـ_+=Z"z)}kVZp.me8*{ɑ,F]F$pѳ|Uxښ\%<,M˸p…&B͖`SxSZw-X#fkV`d>BNGm̛iG]4U9I##wZ!UCt
904$M:yYX? F
%/icK5|+q6oiPШaGPkZ=WL=]B]<j
ё8%X^IX(`F֙j
;X˂+į籝
^צx繵9f >Q=r8]Hj:m5YTKyڧ(=ˌO'xxn"! {<_o,YR(S sku]JFi˜`y8=k:dU'dee$G 9Wxif<[Gxw%*c- @X%MtV_\Ҭ涎fY=0m&ApO)mm_NMBE߸h 0s`kWlXHn^Sk*g #9)(dm?NYk贫pѬ0Gp 02p88uV-NlMK0]*AY;šo5 <Q*ds؀]Ehl w5ּU͵88Jβ7jhwe&+z{5`Y]yR6ڙ0
 ⥴T,Aq(jT>0ZOM`?wYv̯Ӑ ]gyl|zlQFL\I՛2xu$uesej1GZ湻XsyEQrqJfזLnyvV~B$)f``'cxZ׬goCt ;xPzgCֱg 2HXF"bWL3Ҹ=ݷgl1m!l4ֶr/\>N9(Z z\!ir~t +DR2}Ta,#
wnn)}I514"O}ʋ[0bь uۍSFR
Ǩb)-iXn.ws ըե'.EQVJI}vvWZ$u슥<nbO{gV䱿.GH9ȮJ-wޢvON}Ot X4jSA ȩ ©
$I5x.\IK&9Km?X3ݫ=ǚ"Epx7A+æ/+u
}Gi}lZDcr{1]t<KfڜB̨A :t=zaMJSj<Wy.4͂@I>+*٭G9_z~յ O^4-H7zOsXw(T"p1s^fteq d丕r$*q8kyV ,]''( k7MlcjWK|ƌe13]
̺ *ެ`q|b,BJFI{+nX8z2JF[ k97
H _zm kWq5zsrI98c:*;;tD[FG!1`8 kŶmZQg p OeI8<CVX'Z„'^?=ky"[xĢ8"HuclrmzuF^jIXf8# sG
>NMeGRެd UJ1q+=.Ȱ!Rr=Ly'ZC}i|yaV7OGŴLspA
-a8-acB
H\BtQ볒y>$ q>ԬG#)Xh99L)NԎ<Hcf?x3d0'>4aiv\KF3 口j/umA c63Hh;Ǥ~޹ūIy2 Fs &%Q+;01t
V7%d; $g?۟ϝovb['KT2b<jH$G`#i%O1
F{Hћ`ַi g%#@֦Ş!JAte/Qp?ijfK 8T"IU|,N] uZ/^DcwӎGӫ[hmGK"6vOwudw )A.|:ઞӎ^nAZ*lJ7裠J-yt]\eʷ|9i-;tCVHuV"lJu,{%ޣGE$lֺQG;폐w*u+Xh! 03ް+):,<'ٌ~AM:ȨvyL;2[{S;ldFCx_=#Q]پs# T, I45iQByǚwu6ơFIZtՌwcU<<4bchan.<h} S#
7:zВlM;<ޛwjV$rr{
HZF<ssn*+Dδfx ~/@#'A M|㷽U5DMp3ǻɧˆnzu}&* (.herN(1@|A?Jq9nÊ`$ad B<QuiXdeN)%qRT3 ?jj͜y( 䟵1+x,JC$ 8QiFI8*G#8J ;urrHP$I
CEnI$䚍z)q¬YDSR57v8
 7O=h[|b*Y\0Pj., GbU嘰994+FKq67coX2Gk|ǵpaz~<ܨB{
;vF|)gGA %eþ31f8>՜]NqŢ\GVfoKaOp]l9䌜|VхX#mA`85)!X` Ӳ:y2MAlG+y>隩j\R ot$WEnH9q]L_HAVc@A
畳ULH#l>݅U'M^
BdU KIQ9NVsƐ,1*=ŹJNIJ) q9<R= dず 'P1ŽdlsHĚ
#:T!}$S5 M:!d!z1{SK`eS8Ӱq>A+;((((((((((((((((((((((((((((((()@&i'\б9$UHtr 2ݫJÑkjMf#ъe[@;yM0H y]l]<?cv] 3 (*:WAgk0QRlñ…3޲҂ڣmzbmt@ȗ@f%ӊ۵GOjֶTZ[ְK5?>(miEnAXica,тEX5i#r*UP8B2j4D0 ^qz9Wqt5Tdiz@Ɠ<{Lc$fF-3S^@N23P3♸hKdIiBN*ÞqT4 x4ᵇLPH0U,z&&qd;:*<
nqM*:j
g-HA8S8$9RHnzm…,^AVW0N{;nÚ9ܸu%fg
;wmq#W; _C0Dј6IV8=H>9\!]>xT^&=9Ww zcN z)"!-+c>[/QSݾ=ͷu<b%@*chl>ȵHb`,,=v^ C}^բD z9h4iw5,.ni)I$Vmun<s"hsaP6?XL3R ޮf!#Yd^=Ө_ҶEsnH
[}2;Sv+$r7G/Z⺄\66P cK\rFT}Q'"RJ*+C0koޟ.CI[i8#p5fj<9iڼZ}Hr׮)8z9X7,Py7$o<gҼ]>[,6o:8#8f7~~;i-r8ɊB1 <p6Ǒ2%49\1~)${u x\Hc׭ZfdwUx(9kyLjD*^Oj3$Ӯ.mf&")8pG؃ֽIvV_Hώ~ڼ.% b?̸<ZHɽq'#s2qdJ
H [TFH(?GJlB"!UM@a+}^YvH*G9%-Lx vp=C1<Iiy8f#/69a O3+BSaw6lKS0dg FEGև.7)5uF ç|gݢ 3Xq{?9d;ھъ%W}|2Ba%0ڹq3|/\ͩ4$~WZ̷H1)?z<f拪J6yN/"VN+Q"$2dbÀJ䐼%' g?"๹FdW]IyozT3*/ߚeK) .ބpp:}Mvf}c<=??O3 ǞNs <}kQKv[ʖѶrcs\+aOz|nǑ?3u9IfMjQZ0(8RvO\[_ioD1[|YcqO|ExsPIhFAЏᏊ4?PW';80jrb6u~bJ:Khwn$cqݷ9SxNK{ mbh$"<<m]c"BpzO35m[;۫};L-Ee^]o͈Y@D@F c vS6Mw#ziP5b/OYe@NsAkv.`u;uy N76yr3ӓ߷4'x/ou5HAV!MJ!q'[}=5mFǜʮUs=г 0&ӴsF:;YnonɝG\gUeF/--"x.nѮ%KXq Y lqRKWycm+~ei<儰޻[Ak 'aUH05S GN'zFf2m7HV,.#i<66^;v;T+ |!UI,71]50ڴѰ;x <,8mgg&b*~8_w %W0VF?lJ˅S mU׽giŃH01x<<6[3Y[Q:Fᅏ]Dy2 Oj,_4<:;12 N0qu&KqwlL瞃Aqn&7Pq{l_?/2Qik߳Ўiz|č%%x6:/C<3O@Y w#jlGtwBɏ{ݍiXWzRiľKFv
z>Hrkx/)Zu$KZfdq`YbGV傢ZmeB`=iI3Kp2Kvvr\)<w=pgϓ'7tmܕZbBBsx/BKq0™y AՕbT)Jc>˃Ss .*gv\еѴD5Zګ2n-xU^+4/&<0\HwH:
vJIfq :evPs_e2v<SqZC,ϓlSG|{Rc4<iƐ쀼znHy h1JW&Jc.+cH# tLcnG<vhď@=!8RUR^C7E\SW8#?oz0`H`+!"GCnRRI:Vޝ֪WJUZrX#KxJF$$>4WQ[Ȳ rI`ӓ^<=cPUx(<!ƈ:{gg݋pNI5nu8#\6t滏xKXGf;B@U\}pWGIHuNzeYmV4W+h'ih|#uz52!%(8q]zڤ v~i= S
Wz8TUDNU#j7<ܲdnTڮ
Ҥwq֔Y PҲ ~`H,
hi_4$$dYV }#Z3Nf³' Ib0N6(lصT-=.w_45sq.2sUpj;@4ooW;
YkВǽWM縨A=(P76ދ{y<`ԒO ylrڳ;@$-0X0n7йmnFw隫sy<.v1QE I9nڵ3yxқ+'v84myңwHm\TbBc)J=LNf,v;AZlP0\H0Iy& tفlq M&A"*0iNE9+)s&$/ q,c HqI)'(f>lɦ:&?ڣU$rsLvJxi
y6RFNyf9QH% E`WaH`0,9vBOڥSUz@sNi5cZ. UinKIDNJ@\K9?aj<ӊalX z[SmRIJQTۉ=M1#,ڭ A­JHW!W槀 FP8=cslXACSͼj;xpZ)ێGRk6H`bTN;kKL`FX≦
3޷QXcXͤjn~(ZgTR^jS)ʪ}k&`?DX{
kVG4< @vǩ=Lys4j=śqLld`{ӎ(c` J[Sr$!><M$
t;y9 îqPʣP6HX4B%IidfB䏒hТ(((((((((((((((((((((((((((((\P0M=PV`,GJ-+*W ,GialiĶ6]87ٔd[-4_I'x\bʏڻVrJa]%X9g ]E6s:QR2>+y+nLT`Vզ~(yU"T[f5 x+fNzykbEiAl53Xo:h\}+F p[jugX<D ,c*dmJұs"JsO
BYYt7ujk8 S,>`Lgp;i8MFI%L f{TeEjCc>j"[%84
@Z%D7`͎38zrMF6A!Y3\0HJj&m+)'=xM$v=xLN2˓(!{դyԹRb.Cd#"*zfL61*URUl4K6zw9?e+,
|$vSoMBXBKXX`}2I{R 0ힴ#m q>T{-kMԭt)"3W˞?=:{RMWŽK#DZ#?U\=:8m(䶙
IԌaxw3HJ>mBm: d$g՞6[kw"H XmB
nxO߀ 5
~f[ r<шtGԼ!ܦͬ..fb2`895͒%cIYnΐtT{"Q##o%K̅s'zsNX.wG,Gr.jj6LdU~G2즭(xg' qs 1Ʊ4!a0rC`ܰp~OiBMfI{ix?#x-k[[kk e S9ݎ8^aĴ
Eg3FknLlUy%_SV}{U]J{+xmf]E ʰ}~UbR[3yʽ<țW=Aq ;?e_xiKSj֊XBg |V4ĺUi93ۼQ2V;^
$Etdu
# _džaK(Z,w2{=5)(ykj)r:^BNԀ8*i0T9g2l9jM:XtkmDAs!r6`UNrH: Yb3BRʝ9vE?f^oAn^:a;GNzt~/N8S*@²ųJߞ9˜=爼M4mkq $U8ʕd$ڵQwrâ%y~,Qm;YgoaZ%10JA ܇1 d83\ĺ<)Xk*闰c 7cT89>n.//ujVJ|"O`XarNHtŖ Mv+4jfN,yy4F׿r>
e"'{ve/B@
VZ;5hpJ5]*?sS.VHقwd&om[F󃜫26~I_Mh
&e C|WI4EwrBGi0 k|j_dc j/-y$?'"<r9,Xon3H͹!&6=zjB.3gkݣ$?%$BPskRS4eaW*pu5ќj1]qS.pVA6J<STpxޫe}=,ꭄH#Fw{% 9cb
W/4ɋw ^[:<z=Y9>tZk0Eg=8HvOFpHeK+$&9Q]]vBG3tKW2~RV1@TÑE}9,6$ZMv
qg%OOx~_=3 c!6 QY
ܐUz%ܬ0 uԅ#Hyy!!䜜ؚV 3c 
I%nm, Ĝ' G&,Vk==$} js#_@‰
xa߯hu;Bf؈!G=QiΓ.J6*ِE!w)1sI^ {8., {>ڦ[ٳj*ݝᴃqF3'WݸP20vƧֹ!( ѳq.%M<8펿־TL /fĖfbInң>NZˆ!c~3ne$Yx$sU͞=+ۯg7A$gO{tD* @ls8;T!1=9ju9dco5NJv: b6eD` ='_TH`co-jRY
=*TOtM:$H2W#k$/[tVB E$nn
(YM&W#Ղ}N>j# YYqJ$e ǒQ*mn#r9c*5m]v"O\RV$B8 ˟-ݼϺU8 In9{2W?qM*G줐>\
#EKtuꆍC)dl[z@˴kKjH\arOuJwE}W􉷆x~rK%
BG_zO~^HY# {T O42:
$p)t) P=sL\u qJEmؤj2T@;DF@2v*ŷk?} z϶g<^-Y7:HQc9Fѿi}w#|Q@9=) |Aqkgi3CPrxO@:s !
3BЬhiY'y&=)IE<3L"X'?zݖe%n`[8)!Ua޻0߿yjXe.; #4kT=\'\gh[:Et <r]a!BﻁIcl$νIDSs%zbN8jyp,YŽtFKU%h:e%1ҩ;Ir6OSVWV Q%MHz.mYY[pY<83DM5
3p;sJk*0mrqK#$"5'3DX3p&==5pW
RN֓VRiOrCۀ*$}Y6[o#´H}Y$Lgބ#\aib2Ez5a>+{U0xcʜg~(tH,0ZP
iXhnG94 sz\ q44\}MJzg<Y%Nq@{R$z
2xZhr}$*A))jabϊk6R+4ңh$Fz{{$4XsL<H1-zo#zy)RsHXuErz ~xS 8⛜Fqx#8A`51'&vOP3j \>jbH8TL,qBeH<ՆA)pMF~I)m<~%cME0zqcE
Ur1R$%ϤdUA  mœt-P{y1$;+eO4RhV5#j<k+;O1"=MZS#qtSѵMIzg8*MbGZs9fRk6)\ RyUIRZ'ZtZP@*0fl|TaĘLԸˉT M-F1PIxP:Xyh_P qޅF\T :-9I qL(e˩'!cښ6I *R8ҠSwtX1jHlwyjv9'aͫHAr۵O%̭/:
3ʹ)MTR[bnx%Q^9Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@ 9TSElpj[M
c cȫ%سӋⷆ̥#&e䃏ڶSҤ~9<`An@NaɮH
tV:`9Vw&$(8]+bMvEmX9AqCȢfE'[VF~+RĀ8+{@q٬qg[؏H^㊲{V!`Z8@Ҭz8Jɬe"$c}jPjx\c< +7+.r)Hـ<Hɦ3u SY8?\28j6%IQHdQ;^qV4G!1GK>`|Sqʖ*[%<lI` 9fPN'8j%T$K r9pU}R,qK TrsISKv:|D3E5Tg'$6Hr*GHG$8-XQPew{cgi1v*9 5;&Z\&XSY <ZR]펍.FaI 昡A$k
H&C!3=GzŔo'8*UWIlKަV@2J 31jTT>JV+A$Ă8T
gޤ3SCPESl` f#iVW'~Ex6ylR0
IE@9dXñ5spge<O!k"o.wc}cqFiRm\ ~/NmDO"\yxN|wIp޷Xd43 Cp@8Ͽy k']gPW9<VB1%OU>J,kF-_2U':[k;K{Gr@ꈟJenE5Ξ(ô*O<䏭jZzI)ճ1 @<ĜΓ ;?Pk+ FHl dsҾ:GX=+Zj!yWl>@*0GNx5!s،<|{TӬAͮڝR)i^Ѧ\Ǖ'z<[*.B%,Гu$@+d?2Z5As^*7Ebx.`וǓ~__6i&mHE\7 s9לj^ |-sp${dN 7QMng[{}2a&37'kmFHU;ޮ3$sIvVmUO{z?CVo閖ZI5-N& 500o^>[֒KB[gZY~Fh%pUO#bq~5T+ kcy#F vʶZ/@p;[aҵF_çUGU 8 V]IArQlK`p_h54M*dVr7K.1UFUp?Ny >+f{Ng{ `2hLNy󁸪zԆ^bc`iA8*{0qkEbc|cb[k衽V F=Yqؿ4dǓ9zOT̞:vuu1<[`y&P/
Weۏl?mV 1eFGbd}Cy߂<] >R#,^rB# ⼼MzN˂ܰ-Ԏ.AV yAjuձgHN%13GZtp`QFNWI8GAk"RB^Hn/x ?_ҤFh87O|o0ݷdB Io(jg~VSG-̑(,WNZy̩# 0pOSB;w>Z3 ǽs;ȭvm*6wMgyouC*0zAھ]f K;R91uڅr7>.c6v`eU+oˈ5kh>KٙUO+Bz%zGY$VZB3X]e?4ɤE5UE
Oݎ?nNOje,cGF~n (2,@ݞy:F rs|
W˙-+Rm-rO8icvmd}*IQpƞL2G|gUK&d'U&$ʃz  XAķIc;+8g\[%-![˸u 2~*-4&V:^{qhO}e{[9d$XdE.[o[0#>dWֱ'$A Xqצ~+(
T8l3h_S"xWi_;K
<2:eG@*c&E 9>T7UIz<Ȩ*ՏڽִpK[mJs<RGPFp9[:ʲ.Z۷!g?5r bH?>f5 _ {"J,H=>jܸUXU..1b}⪥)% 昰es$Gn_\ 6r0$`8zadEfbkF8&$lp ǞbMWHH,LJxqXoVPWIOH eWڋ9 2q~VEId^8U$V)74[S8ǰޤiPt'&(捕c`ܜu'uOLtޒpxBm8Ъ$CWkkxSuVWF?FdAKg I
wGa^[#qnw33ڥeڨ3"Jj]QTYɉD ,`<$ UC*Nin,0_YdwlZ%@#RJ˥Z"* 5ZcЌS( d+^L8 ƑK,37MkhdGC@TUBLf*ׅN8a d_BteyTHq=")Z #B{KЬe}~jճw aE JR&b(^wm"*Tٺ٢{bg
I4,:0!G UK]2<څb$ŢS~LJz4 jo/*;W
ģ1ii[kuM"SM/ko2s=k.G369sGjr6vMEN% 9oBAsL.V-&Bai[k[sMaI%֑Y#%pNGxwN!ܱ47 Ni(_FP
Y@HaZ7_pvy_hN㡊c{TyE@;1;
AD&=C +R=ITQ=8TXcG1{SC@(`zbbUnsNeSϷjn=9K=aFTQz{A79H
a?M=rO<%ޙ"Xޚ۱ޓ#9eZb :v K
Fs 7FA1)@搒qgڐ ҆r稠B0 і\J1QaƁYE~=sQd@q' lrA杜 A<4,f1iJb<)$OjIA&I#H£$cHrJ|; 0Hp}nI<@<ԀP2jCy*F1HX18c@Ty#!n00H zisR3 H8{cTvzsެCn@AQ) Ns*[-&mX;1?LX)4,8,m st?1T2z]N ${U9ugcQ^[C\gcЊmܛD
W;iTQKsҢ:aO`+faTKl-u7ƙf8v[)d[\b̩=Kt6WsEn 8"Dc㹦7:K)@zqI
p;ge-RۋHe`k>٢u;fd8Fzd0*]=sTKG\z-3ֺ W
84W>⛝~HcA,3t'\#}@ʤ""㌓ޤU sFO?z\ (EQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQKRnlɩcW-Gi ٜ$e[AlZiJٱI)]%]cy~J8O7zHPWKcjtq(#ltz8謴ѵpg 3ݵvSrQZ%&[]3;F+nN "-۴qZqY a,kmg|Vcv8vi!t:5X# HojY Th!zc@0)Ӛɲn18{c<3nHcT #T7D !x8<i.K1d8<pXrJOc5ioDF_`;pqQHۈ RPq)ʀkDlU}2=y3
y<r?jq p1O# =j\#V"A*' ۅcҤG88$vLi,O<Jv.ݧ-@X, {
ٍM.9
V =%RJ$cpB[*);Q5+y=;
-ø6+c9}:V\™!'vI=3`O^+XCa,jqýDYTxɩݻՎs֔: ;**'=I9[AT ?oz)Qjlk@$,\5dYe9#Qv DS`d̈Z_L"!l⢍ g?J=?D1`ŁcLUH2,NGP:R)KZ!{&ݻP^sggeM#1\6$9+9FeGJK8ͧi4EhZ1"G</{ԍ^ƶQi*ֲƅ!<{tSůI4fmۼ[`BHC+dg,~Xj<qKkHZ]U )b@+u5y,_I5e~~g|S,qp"Ty YHI#?x+Lt2=V1夨pW /Rz<TmL]ǧ vh r#IxyrjNnZ24\ <tSSQ+]e֢j7;GAH WQiעNqXO$Nd5U€D5sm!Tq 'PUK=Ef9Ru, :?$V5tJtO?|X5ʷ<gdA`|C[Q\-[+
XwtWx'0"l7$X$V^9h
>9 Wtu *;IUut c8f_#xJ{=J="̄z:pkxVvok|ApO p?NKV-5k!Ybi$ a1D& &|oWMoMwgum+H2#Msl"ҵ)TQh8#6'~"h~#w+()9p$aN*u(u e~Bn7=&yLWF99+hͪe{k&mM#YpTtʘȪG8QʱnrݮȥaVyB1
$7I
j%2 i3ݔ1]?=k蟘dK9° `1,f+0UBON8q^qb^pά1*q^g":Hи!Պz ry
z;Ox]6!bl͜<d<r1<סjbo4n<|k#EDW*ek<TP\nՓV/\OF,m{B55?;V!rA TRAm ׯ[k&|18ȃԟ֙5;H1a` `?ڽ|97pdV&6s.s9`2Gn6BEo#,PIR+VJG;';fԏ)Xoշ5.h0'(FӸw\GFY0C |wbK nf+Hۻw%1ʕ;ڣK ߗګ@aՑOv <VbKncX\^<eA$7%.J;";zGOM;@f %fUTgqqUSv,fA (f,ǿC`[$Kj;ePCH<^p}W&Bd^IV˸䁲6p<NyUd*2Y \肾#Ck"aGU -R"rߜW8ꚍ.1{O*O`?M-8gYFq>tg&G~Qb'q Q#[ީM4l@n-*^8R4\!XN oE@e8-ʾQJXvdYPg?xQyoX֢YG&P*ps~>+v& 3F^led6q([tqb͔ fӀ+?ÎkNC(sq9r
nG~s T"Ɔ<YnH?J͎ <+i Xdgw=H#5#lߪ2);m%a_&(*1_:.<sVo!b//Au(}?46"vX(-ːd`#OCy"Q awz}</<F<iܐ9%cP۹L܄1ېytqf0t%";V 'UeGtI|nHF@ \Byg3ʴ88RXm 1׭-Z_eѴxnM0GZ2 M})%ld <|$l>j'>=ʫ:
PTG\Ԑ4dg*;:S
Ԩ>RE{a$~RW$d,TD$6!vEZEWF@ 5 ؅<ncaQ^A䲗ljIs.5iɨǛ, ǭSJy~9FGPzmP+%(vIIal:D <T^M@\.8ԳDb܍8y6vgFn=Uki `8JIieۓM*%EF۶7je\j|wM1qڜ^YU  ^i->^+ FGM@
#kKMX:0ՔS#TFCǙ槓E TL<Vmoϔ
FyaOu\*#FϖܱhMQ@Mj\$#c41oV'nxl-"[*;9zTS]ГVᙽ?P85~6e
Ú`"AZv.Mg̾c"Q'aNCBT&ӫr]=jMn⧒FVu^ҩI>Cc5jtVʜ0Ozacv=$bWfd63Q)-፣h 33v`"32eHܖS08^&X{QШ{1
<)LriǍƇ;) 3v"hHcHpsy#'m ?ڕ "}FjXb9M{;zT,@#4;eڐfN3%E8i@$M<i;S"NNxssL- pNO4FhjBpxGLP&X 9,;p8ژ#'G<csL 1Q#4I=) 8?DF?z
%$X3b'h g&ya!{TL9. `*)2br I"<G$tV nyi h=-3oGˁ5f[FdFvg
$m=3U<dޤ{(;#^#HVϐb7?+5n-=cgs8D7V2G#(!gXcQ#UQu<RWKedPT˖Uu&ߕCu TV`bUK*c0LV.중f+_vOTfP9596G=5z+dR9X"H^A+V2z@⓯@,T1-Lcg{ѥ/c)ڛ=3pr67{O0ITXuϱ4S3QE枀QEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQJi*DB*xmq[]<:ְsH΂Աilʏ,;F]syk-0ێkљ+MI
EtZPPA]—g,6ai+a@^O|WEcchaȭ-80RnXy+޴mG{ʴӇm妟8oe6֝\>Ռ6Tae(-FsWagX=8ecH NQÑX=jtjY R"HST0;@8'H)'ڞxF?r*1Hp pi zāx)%9WmcCdp(um5(r´TK`@<Sm&C8$ըئLIسd+aHj9Iz!rs=1`*6-\cNI-EK6O
=vcBޭ<PB
&Ҁ*N_ڊ,,1C4\In*HdbI47.s}?raf',zl.Kv$HIP .N}fMnzpرb:0sTIj9-T/.
rIϽ9hhQIWqޞ"3qUݤe;N1ӊOUMdSZRcQ4،z@T\cH+& jC$cVPܒO_xQCPJAI+RW,i ^塅pI*~Ԡҫ.zd/܀~/
06`qH͸2j)NԻzTJ[,rD8@w Na}&zPzN>)*<C72 -k͹dww
H8+Zit7EGGas S^2@$wVִM[O$PUs;k'.Θfi%Z<Gź,k/]#Pcub<)!A@GWON9{-Xh<2RLkԴo؝OJxӤva+RLV\rr8=NyWEoi[]vDV(bb9M y1Q_OH˓kbO-l|myxitႰ0JɂNB1fm&u4yVِ!PUqT, ήCyumt`VVϧ$pGϵ6Vކ,TVFͥa$V(H!Hnjľk"̍[w#id3|A.ycYI50Qr)i $O<aH+\Fv}ɬ85tRM;?źB_iI =:GVzwzޗ}}K7(~zukiRM[bq?F^GNGB+IF'z7!!5)JHmgmFNthc2Oh=dcOL{8DZk:Oeh<a$.&T2zsڕCpG,<kO«MFg4$m$Xվ |8 _<.d20j%L 4>\qVL>x9I6dӾ^ѣ6$1 !ݑpq\G-a;B3
0G3";Ȋn}\b ۴0VgU_sFeq=j 1ȩ.$x_la؊k8
~j2UqW'7:&K7sc>Y<E=ݯ=Smks,>pԟΧ1GIV]Km䘶G(C wq^>ӚtmYafcs!<nܔ!zA r6ST՛wt7mg2`=J!Ew,""v@Ú'tY̖d4"XL=G pTv4GmYZBpNp3;^ϋ,kyٱorzĶҫ$wAЂsEsm;V' o;qp=en Xw{ =kC$f.X@#$v=#s!G*,mUJexbx-)_c'-փK2)+
H;xؤMkpHWR;;?JeQ! fk si4ՠRyepl曥Sאjgc,1v>-VO[R ,=޴PB6SWj0H3[;OO4~?ҵ5 `<`$B;pkevW̊6
!ۻpmi>4h6nvɑJr>xQ6F2˸Snt^c?"O;dJYT@Um^&qLc⻼ O4e1ή J. QP.&2D ěWt{ok],`ܹwvc1ʐ{w?7gWiV= Y{V+]=Q䎘q4n,TQ>I4kb6y%Q
=dp:u5[%;)vRh`>bbdڤ )|sn8Si hlN8$k2R^t)Vd/fi[=.Y.F8*[tKY%*Sr1U9,1is2H#ɐ9f3ڲ=QA+m-&Sv7Fhc8 ~!-.BhĀ`9_Ao$/m xyu3hX剢V` ?^Vc
FNРwKp+NpA?ϵ'u<+soN˫KT1nxY͝'t(qڦH @p)\Ʊ튪'ھŤjORx`(O'P0}82cP왣"Fp2LT,{VYI:cǽ:%ʺ2g{re?&)m$8V<jOxHÜ榍g_9m< vK`
='I'6@-X#H."oC0\ul}3nvU$4q5:t&TڀޝoqȀ8yB5؂Iޗ5/o0g⡚r4ASi bz*TNoNz'u,NzYX95Ĥv^1T7L*IYb+#<$ԺtʮRHAG,P9&[F'v6<Զi>ʲ+LؤVQC
,Ҁ`B>Z ړV4y-h5' 綼$`2VSRsp;P,%FSIhIff%`T—lONq =U;Idg$p+ZIQ۶HE8"Gze1:8 +1*{a_ˆao梆Aq#¸Fl(Fc{U;-:$zGaK5P0AzwBK8/!1'6yA@@Px=,B!.rP]J/5& 9;iCQDrhS XQ_x#88kȠOuޢCJ*-LiT=*"'jqTc֞X*cp;mU-Qg
q !͏z]TzZ Xك銤=
ICjY@(V8[v_ҐXn=\Q`(b QvBESld*7w5=&wS^qS{--Qls튱9/)(=rITj
2O4l=i~ԚtI###͸PM$~>jG# |ڗI|" \4)S֛cM
u5&NI%0!`W994I 1'E@ cF \掌35o88 7
@{i}iPcӃQjP})TB)c։ V"C)˅'!05 œziw'{RW`j7PNp>(m z cL@,i,Bq5a+AL*'EzvӿIlQG^85n)6Ih,rCe޳`ӑ\m,H+B+W,oNkRB,x⦳!­jmxƱr~HlaY<@-K,0ʣrKhwzpJ"EвHEuU#7J@
Qo]=#2G8?S\ψNY|eƭ<ij9Qҭc6mZ-b`Oޢ3ҹ K=ne@<SzǜObCPoH|n! 8wnz' {fh`#oբ[gQEឨQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE8)&1NU'K%JmdX>դqKE-ڴlKc";[:QmoJل/F-YOw($p;Vޝ 2i%RawcG,Ytlt
\V@mM<V7FVˁZYi#Y-E8og$}6 W#ӯa)GEh킜V⇎EXHI::'%1 uj*OJx^-!
x ;h98`*Bc>y T ہyc,xI._,V؛H,Wڪ!{b%R2>ժHVPrO=c);R:9vvdasJ<y-PH $|FxQn*Hd)l0Pʭ,Ab@H} / !ҥX0ޛ%څ"%{Fmwʌ7|v'9j>;E$ISߠ& , YEƒDa$^¯G$0(ý Ы{EK)e5MS}94( ǹ5 ۧ"A,r}1ؠ3ډfFjK0?J"Vb ;FNX/5.8SC&@z%=Q1lzоJFr;0'lD"?4%bnM(pAw\sNy
%YWZi$gjG'<VeJUb42xSNT c@R{<9
H5v !ޅE+ojMTR'9j,I&Bs >vUApқHhp+,p2jȌ)LN0Qs 9(r`2KpZ T}76g5±jXafl.Ӂ1 d|ԪPR2M
`'D4W2J<Gp{USӮlS1Ά)a b kBs).K:EVU##a5I*)ݟ9xFDI:ġYxZQTچB%[ F&Pxbaz[MGNy3!hGOz|/졞F53& aӣ(;[ 渲I5OϬ<%>>-9<on'OZӼ[k T ھ^1 `S˩{&֤s+cnCF0s_Mh[j:\qiprN=Aw&g׆n;KHhRUś{B[,`̼r?uo
<elnb&k df;2T 9c~4'R7KKyDnGJ2sj-'Bi%gseiIHե]Dd =ϸgs_\Yzk &5""%JXp8*+ Li^5ZS%x$UdVhHWuimچ  ff_Mgrnz|wMݡgZŮ-;+|ٟN$/.6GǤxr&]ER`+ i,Y]$6뷯z^=mVב/GLOu?lkt '􈵙 ,R@o+ icY ns^Yf6D>n /PeX+Hr נ;]='*jpGcӽ}/m7 xko鷑`%385d-[jv{߷=|yGWֻ1-ȷ;@@펵 ;M7 dcLcWs\G,[^ )oRkv,6VtC
2Xlc'p=cFz02luNev<p ny"Ś7]4"XABFWwnpp}k|kcq$!:/,FE*r |p+Im-s $`;0eLxe.QYIN[Ysw8=Exg4ڼ;fdUϖx<pyoþ%}Y.aҥeŌ[H?[ֹ}2{$nbhwp&cу6lLD|iKM+]γC4ZW R$t- Bɑ+IxE>$Лb'6 vSf1Tpq5eƣ6֝$:nvO(ņF;Nk[+yQe?V=Q~Z`1@Nx>ji2. 8g#.zvYӻOuEpYXۛ œf85URR2F݇`qן1Ғ87p˅EG&N?iAcye)e\O(DžN@ݎzQ 5cYBHO-C<Fdvx-xnIr^ :N2_ܩGcTӸsqoZ3J,NC!ULcG|Kq4 L4K@p;|t'Ń䍒9
5<RHG"ybPʥ<1XF1OE,/6m+p dgI /R2z,y^idj3:
n>R<6x%rf[mMcoc'E^dgI]3@2r9j奊-̌T+6TJu#Ko.ݰ|1W# b=)_eէ$H#BAKsXsF!,r)<G"3bw0Dϖ-HϵP5s\~ǡIp9Ͻ8nH0ܲN@mXtL^FR-}_ֵ ?oa8|m,[IkvVLLGRLV`>+<f(ςviF.#Ax'&+˫]bE~
nrꋨHcv+K,=>kЮna )&oƩˌA*q ےNN+>՜ڌ_ɭ2<?dj}X`t_zYհU2CI`8G1|2x Qd;nB0ڡ%z ZFritO21֫x3s ?z%ǽD[q9 ފVF|ROLTnP0(F,1sMs1<moz{vUQ(' ԁR:>e9'=LR!ǨQe("xRŽ˴in\=#}=G 9MW̤D n(ҶKhAPBXIֆ#<n~yk3[YJ=Gi`egb? DoFi"[(ٮU@Ƨ,eo9UqK &Ly$NH.nD $% %[w56n- $ ?PAYm($9Ʈ(M[Gz (T/ F+Prx>wu(X-ң \R?̰p0U^GCA"#!媕wt)P8E|9U=T۶=%H89>BGS{n*(CWRǧ~[Ō{Ud41Ьgc4QƎpznCy'7 jz$y2:cxGSH]{>5,R0cR~U'&%0@;f@'=`8oP30$04얁O\ҕX2jlWuQK#Հ1M9"`I<u5l`(KtRVg(GZm9߀=V6sMXGڄ׭+:~)-(zvZy zzha`㊭+e-BT BXjŚfdX"&
6z?sqچvnshm+9ȩ'jeK2@PM$ï+1+4n`Q8<8J[-jq!kUb7 qcnzjTT/5,l2AiP
|RK
TQMV
#tj8P1!=6>psQz;~ޘ y'se^j0dǾh2n/!b@
PXtI"JvOCTE#7#h)P,Y
ڤv*F;
:*wI pENB0@8-!IHb/ ZևEh<ݠ/\UyUTt\MTgdmH!o6ppN)Gprӧg3$_,7b(YE4oa{Q)in[\%JK*lmvȵdr6QTXa "+8b;
[k6ݔ U{ՀzyѨ>f^(2~
"( {U2Ik0}V4NrQV7F.~kY?5FfppQw涎4ebX޴6'{"6%e'B#y?M"tٮzP
o7gN*ak,˾$N1H,
cv54{E&M Dq"A(S-!=Wڝ fc1fݐȥ"{W2" iWr9!^˞TQE|Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@R ӂՈ .GIX[ٖ#ibxȭM8z}&q*'ZܴNZv\SwNF>ߏ,b8lҺk /+fMA=-0TVm:notzq–մkgUqOQٛibskٌ0 ^8+S7?Rz(p $p;V2k<qڤDd Tʿ#T9{TG֍՛v4u)NFirRXJF tWy<iX'yM@zQ9,Fr~yNZ]fcCNX?;λT9>õViXXZ$==1%IR5T'2Fr0ਫ਼ը*&ig?4L9X9cqjrޑWd#Lj{3Pd{Ӗ`20O$ҡIC,ܑ=j`$ڃ,zՖ$
\$
I"x,}> aƣ|jb2EjlOH0޵ %"9'EVaĪ94ѨtruE*HYeRMBW6Wޣwf8ڣWiXJ$ErK
q<6#qګ4p{Dc"Xښ!Ǭq}u'A%d!qYivK#7$銍؆œzv)ۏ~S犴Hs$l~ڜML@
IUR4!fM Rp=b&:]
A,HTx/4ޜp4Ķ82=RF;TaBIƃI84cA$@r
{Rn&v]̀>j;ETo0PAB8EKkI v' :"Fc'y[ci8m],{t'%줒yX&ajb6 iepv<x5-]?Į~pO\N;^-x]5ާpl)郞d̖V;{^Om mNp󌪞' ޵Zj\z2e *JVnaӯa=8?zz궰ch\x^!mNڂk>ЯlgFV`D\|jz_^H~zuzkێI<cmi3IEѤӢjxcT?Mڪ%6GL [6:ޟ=lJ6KU;qWJ=``u'~\lWGzMMdGYNO\VEKiwrO1Xn!@01G8`fh+*TtW~(ot%B ڒ:~?(=YN{Cb`_$ӎrje;V]*tcޝEu$dfxkIn"94ibŮbGzw \}m+ne[9w !z%毥G[^Ѷ0+L;+r<pcmLռ+}gE{-0bP8>wCӅׅ3I5ݒ ֫ g&X:1TүzI7 ]Ap'*t9jWzX9V%12*FpXSŦW/&$cRdi68%xRT|tb&D2:C8 |_ Ȯl|HI^ u
J𦌚fa$ŋ395c 36hN)4>u;-&KN$}r~5ៈ_>afLY75P'z4aܞq#q{4>(Yp=gzַ Qa]oeY'9$);ȤFjގ^#{QI.[x3ĪLC:eP[÷#ĺ[~Y3 #rAkUwN"ha,j𯑸\쓮=-Ұϛ(|QA!z.Adf'$7R!Ԯ ]$q=y=+W,551=q\]-%w;q|- C;\I=n>Q ,r/з?#3n/HN;]G);T]KD,L*?0 u6#?_>X ؼfbICT<-_(M>F&_(H<q;T>ѴG7<ڐV9'v'=M7z4}o$#C,xجpc\tIuҢLّ
%9S+ 2k "Hfp@#8U
'Is\V[6{/xPivہs伀@SHkܮ66ZƂ{VSyIdDv >U5o(^TcVs\~Jzf3;kkXi^IZe.z[ՂE0'`3Sۏ4䷼-VŪG0* Tǫ p RS~Z;Ś oHA^Z-ݓLug>jiy 0#p d> ޭ?D-(\NF=CprTvt<+ՉHYTFbJtWN] @H ,I>)4 T8VdtKV1b]d91=񊪢O1(٥vQCxj  2 S;xRæI % G3znay_c3/?7GF b:%-y,h8?cʕ7Bެ3A<oe
ɯI_2ݏVPFhtxvQN<wH }q3)#C8B #HIoH9_ X<sެXzRNfŒ 2v?EK{u$2<ԟH,q}!jїc5UtDc<{MjCi:Uꨗ-Ǣ(ʰT\$ڛuq%ݭ͙[.N,1= dj5OZ*G槈j2N=ߒz}k,xrcvIr442
<q¨F1pz<vH@v̜x^;p丹7s 6^]IwޯFf
3_Khwf' 4 8v^"֕yo!5sۜ0%I,m(<L+4oxX S^8ZHsL>yT`_2p~^GVMxPK+|<g^V% e˟ޡ<v ^&+BMRkѝX҅1j *ps׮h$?JUN#zl ɫ`_7#8W
ڢ2WSׅi;}lT9XUtmrYNI=+B8b0,p:IѤdQۼLHHe
.8ýCUY#4Q[<doGBI+d(˧_y55x.CJg)bKZii,y'}lOEuhP( EYGPwt.⡊zTS]<Ļ7;
lI/80# it̲!V5v kc/qΜN*LI;T6$@3<( ŎcPYə/@m<n3u4+H̤z'!W ZKɋ2a8+
"1X$K#\(9qO`֍-DR K-Rivm[d/5J_3I*Ӽ$Sk7N̗HrsӠZЍ^6 '=+26rUh]U,jBKdX,ʊ [TK6;{nyiimؐӏ[͆WˁM6=#J
R0ڨ%%Ԟ@*mimyt;}zUZ@e'ڝ.XzSF~Z63z")*KvVK~a8"P9\ԶRDw j Ly ~楴&a)!zu^M$Z ф *F& "J9^<0Oؽwd?ZnyS!#gscb%*Xp~+_MD$a
U%SXFSp Qu5 Yi5r;SpB;ksRjۓX)ab~eY\A|2ќSgѸ`UdXaSV%T*Rm[ O1|'ڢRC Tք+JDrU P 7ZøײI!aD&0 hHMZt܀yNQb1vU#.V#n?j| 5RFAYCͻ,J=P:OcHI#>y˜̤FJ,i
g' TЪnT ckB"MӞnJFCu5|10#894xOzg5,-Ԕ|!ui*uEV
b7@&`\.JgM)U*_YDK3ay|9R UDInbE]tlwo&pǐެ'򕧛ڬWKlb#` VC3(\4ՙa_lH>aamAS)W|;S=5cL:0 _sT7ug@q*
H_
;xi]֭maYwz)žp+J! zӤ,i YrZ,DZ,T3x&Vv'*ҢDdwbr3֪Ȫ_'⧲X>wm>J<=M000
QT7h:PX! cN ~3P" #41RwR\j~hzc~I_I 1
7{T GP0d*Bø.OQEǮQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQE.))jh,qTb"T&HKU{"`֭s[C dK"F46LHȭ =j{ 8];H+Ǿ+s1c*KخNIUܹ?J48{]=awG)`X,jT 8ǵliON}D"j̻-0arm+k 9ZPkY5;mb'
9$<S6+PޥDh%L<S=k'+)!1O8~Ԅ)'j
C>Ի@'
9 zT+8\ldL22{T<)ױXUsVTE婎8'-ڭ:얄CX;Q%oBz $Y%Z5ݕy;%D7YgGޢWcxBPoWfm+IR%Fy=(#wbukFdV{bMX_"v8`3pO&r5QH\#3U@jʩ jL=E^w=lMAs}^¥k
/~=sֵ!ps=j@$A Ry.䞬h{Hs;859݅yf,/V!^ F(Iڜ R@8hqXrѦy
Uq
ycMbtG8#TU4λګBr?cOfli
TfT2lpOja‘`@ޗ$ݓMBJɦSPN9 i$GJI
d>PqR;}$ b=dOz.&ة p)@bsWn.r1WR8Uf)"7PFTsN^\gzllr2lA$MВ`f>b(G5jI N` D9&s<Dؑ4 ;0>}f6(qςC=xw5콒C`>Rs<.쓜gCzߌmTk@f#}..n+[E mLzP&S"! YňPa碑JEdm]\ 3u<8sK "nEIgd \@?IUMҬpc#@V5NTj506m\ԽkҞK%G^hKCn(
F}K%CQTm
n쥡ryR ր+u/Ձko {hLʳ23{)cӠ5f 2e-?J[T5vqye[X%fma{zZM#rU\i~#fpPnq+ܭ$q>ԯm?-SW.MтFsD_W*,e85ۆZ
6;9bH⤜DX5V{ I=h gݸۭm%KHFM*8TPR;R.OI2ە8=oE:&7
< R:bqT\K,F];CRErKI1ԵF:vi;Cc=yugV N+t"i–mB \9r;W#]luK\FM9L IdteM}k[MqOc{u%պm3+ cu-4C20nW~'iX@M;Tӧ]K`ЈDG!rA*>.+ȼ-[M6sfU1'㕻Hդ$+ $&Cb8>}+|g]xnѬN͂ᇞ˟N!Ntl!mzтc@998 +C\񶙥LT.#0霑9DJWBY{NeOSi@!=&^q),Gd{v ^!ԥ3klnXEzHW.5u,;ٷ<Lv =)K5k:wAs(2vh;Mq'U98g"6*]l94[+{gҮGBd9,3{1Wߌ\Z'xcMvw'tHs5|MQM$ Jem1I'\c]'ХenYa,rqx7S>z+)u?#ڛya0Q~{u\m\'eMzF_H3vlG-m+uŔɸ˷
mǫlC[Rǁ1ZƖg([bNz|8v̝CW5\Č;>oI'}La\* :|Tm,5nSǖOUem@2w~|ŧH&u1VB@rۚ;n<1b'P=M\ sׇ6 r#gW~ n2f %ՠ"C; /P{=LJN-E;YCm<~k!,/`Th'#^MX҇G$v{O :MDH VMWo~?E4٫$ߚy dclI44O0DGbyn桽iqDR>nR[aW KH]Ө`}+NvL0bVV &0
T<Zn&5r*' c|KU%T/n,W;%4=+r=VNMlCc7j.+:8#]FiivI<PeھlD /v\]C4 ~NG'qX~w-Ϋq=q+JTf9X8B_ Nj y%Jl%).*١& E4VU^}Ǩ,I c*ᥰFB^ʭDS̍pWwwu:-GF jOQ9Nu!?9@8p>ŗo)Ut\;fφ5i%y>Tv~y#!""=ߠ.O$q\|dݐa*6-$7SZ|A,;@Ь%yS?zsOm'ŏ1 8NcaA\ƪ31U 1Qf3y~9Khkjw!%.I##'{XX[87&s[MtBKޣVҴ#3Vsc*?z~ty[$*O$gpW_; X5UdgS7--`xt؅\29=W7qM-2< >X~:\Ɩ3Ԍ.ni¶ZhAiLn u97ZfH}#,I:
tXDn
oURܐ ?\9QƔ%W\/Ep !/%H
=OUH3wٛih}ˆ[f{/japm8}spI5I;RrI" ~pUHDT~ݩB!u֚iR ´-/o'Rsnq}my
` da{VzyZ}ĀI;sp\4rz:"Q9p8g>³nxvIp}2əDZyq39Iz}կ"I[Ge'S7UCb }z,+o9I)6&.16f!EV3"U[v [ƩG1=A8Җvo6Xg8܉$vw5Cjfጽ
JO>YQ˴d2Hes)e`IvRD=ZFe(d3ڢfN g(cGLPIQF2),⤱
Bjk̛@X'd-[,Zx=n2zKۓ4-[l+*[Iwq!;V{'yMJMHsqimd0F8Svp*hg=ɭ)b>dg9n>*BX'jɔ(A=K/QUveWs1BJ#yYۉb8-UFQmQLf*vʻT>Հ :U%lʽ `Hd5B=և4N{X=*{dx,3M:ڴl.2<Uqo2ʮHnF{օcHpǽ^20Taڅ*
EXWo8U'g';~jƭ3F 8jJR%HHb0:f` .x,p*Nfy%Hc e;+մcMs5 Y#9/m|g[t/)P2 MuZw&/n[ H73n>qk yq#-hY|wݑ28۽iGklxd
2h%HNBEv'j©ѡ # pf.YP@nP> bGF 9;TJw<& Iu_^O/<G''oRNjH.)cR)Fr:w5WvM`eOEO)54F`d*3e/+UݖyG[O#S}듼ԵeRimJ~Qoj&y*AXūIZri#FYl+5͏ꓶn y9g\Vݶ(kH[>\0A=7J)~K^*Qk6 (,Q[{= aG^ÏZ%hZЅ »G@@ #qҼ:>}>)5 58,j!s{LZIvR,M⻒͜[kWPYcWDd!X:؞ڮE2̛pG9Z|cXE KUHoIn$ dRPd85$~hÀ{V]Ճǹ˧9YM7ˍ/EG8z|s
,`W#iRq99OLgLBGFꌆ*kN0pýlZ1.̟Gf .,˅h&ڢrO< T+0`<#poqM.KeWzG+b[E֞
j 9RB$ynhbwlza{Q@E>6t18'e%M3i_ޑ cP:Ъ
C$RAJBNH3ޔ7FX =_֐e ǑڟGF{boe@G'<
~j*+=
,' .xKhiȇiJ#$tv5e,D{zPQExQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQEQERznV5,q5b R85kcӎ{ְf$ghIk`NK-<)ǽmcY͓1gd] ^*~韤Ǿ+QهepsJA#l4[ziP^+NJ:D6za oiJV}ZGJy*83l ը``
G`o$C#ڬȩ#
48%3T02{Bq})z+"@E.0x BH>Q}9hwT8胏ޗt1WM]dtd怡,p;G&"H(d]8Pވ'A'4~Ė5\FOi7)pAtFbt="Ks$VUc<[/BGQiwNC3?9C'QP*d{WB6I 0ԜnW$p {Uö[ڔ+ *u8z-ץ^1YrJ&݌a[N[䓌{H,*"K%S
2暅A-ޥHw8_j J'~j[qrq{PQp 6抰DpT{R]IcUWF=@Y2Fzj:<
V
cXPZ zIWadKkhF`n%r*YE)a,s;%p"؍Sɶ26pguc&:TcI+T2g8<˹ǎRye«' fʜDLp,_z8Xl=Nq֤ *1)==.@8楿WV$ˀX.L{'۹qRI/X\Tu" oYb=M>vā\8<Ո!O_i:k9Lgt>$_Y3iRåiҒFB rh98,+y{.=S>:<< f7Zw DO<Ӑk|[6&K]78[n71<w޹Yf2Z'6UfR *=DHޝsÄChyc]8㚅6/Cۨ/ʷK1mW
oJk\F#Ár84n}:Yde0J1ac'ۊǁCZ;*ɴ+s?j79[>am$ʒ`[2Gw9
sӞ B2d2 &=(8֤gF,=̧a$  ܊%θUrBz ջ+M !-FFXT98qM*.<)kc"{{M!؛\Fsa趲WBKT0@ǀN8Np+S3 jxuKuV`FBc>>O^Pi6ݼ2Psz`mhiVLczˈۅNzaZ=Ŷ^V
@+Oǵfiڬ<0<KAϮ= #j«u}-Yen}Pt(1$/s5􍾠/[Tw0$*uz|ŧjBHm2y \nP|{}kܿl5ckkIؕ%a=I6ޏ;ȗ'HܼՌQMimpDFvٵp1ֺ@8Ia\;3X mR8 d6,ǒ}C{St}Ac"#[{:l֔W\(IY'SVe,r\|]d%Ud osNC0}e!.g "lܞd7+s^Z@,+A\v޲ҊPpTT33ЌjmSTt$;0-688=p=&Tث&#:~omo<qF42HnIP1 ֆm'CީɊ33 gGs^wZcMPT1'ܟNppOn˭ẹ Ry8Unӌ^:R:OQ_6uHd2U89:~Nkxm9R $0鬓;˻[aߖ!bNb6 QC+iqwMmv%Ls9&UEL'nSQ$e ~6ִ5KmrTW
X-2eD  uK[;{[ݘsi!6۶t>gv[A^ep #9ۀ8<k֢&o&/rqGtǁ4z@3# *cH溏IUMauf43)&Ev8 +:Jj34MVDH0hx\wKz]IZjVVʨkaM XBFqsYSFum2؂G?cW8Dg5ݝԗ0#T8V&2&\}z& zmIi<S籺Ym#{W|
{ZfƙpJ&Vv=BA*F}g>_0myn躔z$xeS[Zӧt? Z/GL&{8y1*2Ron~_GǚAl*8JA`U;WH8 HIouas !/Ч8eP2>jji7SWqs姗2 U A~h<\>5jyo-u`@9'W( q<kZ(yHqR8 ZkC摲GX Dڰ// lru==?j=ﮐL$ٷrvJ6ˌ]m3̆;!I$tr1ӕ$ּS[V١PT%0:v5B/dt2}+lO֎, 䀘rn()E[%,A U zcO o]!TP`^ۊ|cnc-622Bw2Q4<fMB F9Tg+L>5y<Duŀ91<NZWi<g?߭aj3_Oqd%@1J!%( ۛvzWQƶp+{I>[<7gsi3]ĐF2wzb8ZG jhArPcbq]]ipCjE(bbûrGcz89j+FȒcZi#c\v.Bʠ~aޣpAo)8VM܆#+iڜwfVFxom}/J[1A6K$#6~0loƖ" KDrW=A5]:+P>c(*p{@M*$Evm麼\Jo#o<IcnXɊf$nGP~q4hiviM;QW*ո-Յ4ᅡ\B]-BPF>O޻w0wq&_SRyGH1W?`ֽ~Y0B z^3hϩg`B:
̒F$v6˞9>⺒VAOGDjȪ=D38QMR$gj`xKHh=jBiPNO
+.$iS*=*%:E2*|V̾1cj)dhb*V:(Pb0[$zMѺTIxЭ#s\L<u8F<sңOᜎ[ڪ)dtsGgjˏAOAT2 Y/I G,gz`3p6_;V-*-Ԛky9eFw7SEioo y;jsvhU~ɸP.]"<fc k/4:[URG=~*c
3jiSK`eU`U{K<[O:ƮzJxp94(*HՃKIE<'*ąbGtԢ d0JVFZ,iwpQX*fK[Eu?9U1o1ST.lo@ 'mRF7.Ҡ_Ҧ$Gnc۵U.C OB )9<oEg;%ti9?ǘ'گYZ ;C{tٕQ*VnH
yTb1`@X:&\MZx1QN8K>Iz-"$!S5F 4ސ-+*H<GaUc!{ՉLTo1⢵d=╺
ViZ%4dqYq,)#Ho.:+=ÛkDwQcRJtSVGu0*)'W6jEK;vm9<U骇P!F:p.+9L][ӖO"f+F1z`Ҥkref@X^&w#7O(*/Jʒ_M%Fc|B᫰_Y :a@5,?~rw2žg
ʸedG]WГw% |AcKc i%D}NIdחRE]dnT
1Uu Guw<™ҲqοG^XiZ. N3.SInZ{m>Siɵo.B6*H/&rrWٯ [IY9Rzguׯ.,g"Fivz9 rm~РTC> kk [l^1 rH|-t0KL&* \5֎^\N*$y}Jܫ(Gyēj7X"W}λJ0@<R^{Z-/1<im#;tr;u5GE%P>kY̱.f\ ' ޟګOӏzmVs{rrr$M"=j\$
ێyIJrgRsN{Χl ,,^ᛴѭB@ 8޼hI돣 I*wczQ$)5e[|'wmNiCrX
'ދT?GH#{Q3`u@;jP IX*IY^Imry+ `x{]^Oα<w\R*~xkѝVI6a).o11Xg
8qT蚜37sJIoLUsaϖC-*.Ki434Iq@<סCy%(@34pZ;dV/?j2sM{<̔8?j]9׻~Ѥ0\n"@LC-"RӤpޭą6`sդ m3yk vuRH*Km@][?LW-cѴMm+usH$r;֎/S6VB〤 "|YFUP,psYBizn3q{WyRf8 Ixe3R[խ9(7(_j֟ Fр+\2U㸮FExUAK4yȻ\nژW-;phdqS&*Ai준h$q@ f<M nSHԱŒ )@J6,n09'2)9<-=T&O@+gfت,G^2@#R &ye.)B+gltGBPdr,I9&, sNBGҦh+=`(((((((((((((((pRM:1N
ONjX-*b5q.I,kF #Ԍ֝It-4P<ޑeenWGc*6{~<sK#f&`xtVZBgӊҼ,%rqںPF/f6LPGkYiPql[؅+)律̵rk[Um<
#ڹCxHEZ!{U,h3+ d5QD)GXD0iG%k'&H`Q"0)B8GUCv4.3cHυ\`"RFH$ 9v8SښZEۛSy5Q&CKnIQ\d0j{]-I ޒ&qR7‰?Il!x#ڠe\^dy[8=i ȺExS5FIOrԮ
+n,sWD`FNLdX`uMw*wPpKcV'3Zd߶I$p<HHYۈ#J&$3CBS^5 BR[S32Ťa{pFP4(%F$"Ԟ1\uIjJQP= A46ݻcɠH\u$T%Tb.;Ui.|(j%3'tvrFzP =qKy5f Fg`yi)|܆$Մ6~v8'&}?΍/D/+ Oz(Q$`\Ti֨iY2;"cUe1UplVY;%*t70i]#5I'jgh9̌Iqxz(ݐy45@I2(x
(zmz՘T9袡5d+JXvef^`*KjnNNM$'<Ja @ ֳ5+]HI'(1f{O DL
3xW|'] U[=GΕ_7U?Z%'?`FV[o̚T 2Nْiʎ8W,w\gm-@f’z~VuDӬtkpC<rBznY'<ۥs]Clo Sjo9c͒qj<wOo#m>nV R$Ft6Fs}mWQ<䖷"+$xb c1JΨxQR tqn iHI*)K5~R0S9v̄<<Sm΅if_[ĩXfP#$n qgUlʬd & <#,_Cdè IIhGN皏SQo^8RjFGJe=dĆN<O}\fXtا6,TտR\|3'z3jQIaDH^BHapsׯjZFcm#Ep9¯P0x(C `1FV^1;JBL_a&,XW$=+*xgZNreQӠx#lSjeGc.WzUۍ!-Ɵj(RJXqqi4QW:% d-.i4H
 鞵Ұ+6==jY|;TC qzL\A8ۅޮ8w/DuX{KÆBId#ףþf"36ĂsR~A[s\Oۡ;FoM2[ܐ|S]<98'.>;_hYTP+2Le#G:ENT'${jPhE-6ܐңN^nvuXesUfX$8l'Oz?OְLlg9as2Gz/qu4d4@gAX$ ڢREdΆG֜`2#S8#x8Vv:K-v\,a'f)|U{i,*nd7B9zu J{˶}1w3|>kNRܞcKQGUy[ѦigX{n88r6sN"Sw1֞&\H ܶHX<9L>+V(cDDUT{+Hcoا8T7o-E%PIIrOm?ÐX$\Ab}lF@\t]7[85cvI8'ioi˶aE{tR2bdW}Xf'vzn"O_е?=w+0~k!Hkk# ֲͅ5pÙR<.ۋ9˕Xn]#'#zt=+SwK.Y.mJ&0;B99|]]_KD9p怂'1ycg-_RմC?NDzX8'\i;O~?c/t8QC`IꬸA⸽7Ʒvq Qg0 Fǫ {Y%3S-֜KY%O݆Pè sY)v)?G_uRKwZ8ֽfLOY H\`dr=qm:Oo,L*R#],^WlbE$(rM=^{sir,t['>皦09`0XWH? ?e<sЂ+' 2i%Gxo9u$&VOKhV"Yv(#wtz5E/2wko6S-%{0H,:qTeUPIRH*޹k~R4atY![5e1~STG=;?P?z)v.q T3<O<f H*
[v7GD2VGsRϟcu  |%kZ֩um
`X ,j}`Zwnj^I \bRma^ebK
CK/!Hl{WIpR[f_OGWVx#dwQo`@s]4nIIYX8C;]fkB59ᕌ1/~>e,m?~>+7+_YAk.FKxc6S^9 5xL}F
?Jɮ/St71BH!#=Ҩ*^gcrr3/O5䛤INvĤ+Ռ֭n$!WWn*%[iIӎY0W'}-PL38<|J$`{:Sk&zb\ݎj,}=ߖmm5]R>x r!:ףhnLno%̖n⬠zxClb#$vsd#*ysim!9xSYRޛ5-/
X@$ p[wWA Jmv\_B֑\a&M$Q8R<k%Q9lo
ar9(rzc$}-o c$ECѕ۸~s]%ⱶ{m69 @4Qa<Bѷ<u?@+9ęjQ\Ak gURr~AtֱF$ٶ2A'faEf7@353:zp?j*tsKdGsK&ApATB1ӌAMOB119\Z6䞎ƚi8ʧFP?a!yPprknqGM{I`
θ%H<7^<T{ vxjQ䥦[%F.y"eSDhWm{UWfe. 8wm?5,zTc"T'⣖k;@ q[ҺM楶i&hY'ZԸ_5.+c5X0ʌ7`wwU3DDNnlPE{.gX]n;[ϒ}&YUTnfzE}*p oi%Hv8^y
KSްHlAڛq4ɗlp nM}e(  =K,pˁbܙr=N݅B`Hpx[<3A ; HvOSڹ(:->[KPV\6BO&Vj/rm-$PQ(E#sF0mĒz 3+ы%{`Yǧ"ђ>U$BON$U,2TtufvbOSrR$9j/mO]3ZщI)RKdPV9=+9%?\*Ť>K=q
6I!]
Ί8Co;97c1,Abx|XKٴ|yG?ؤ1Sr}
YK7 {+i|'h-;YuuT n0%YBP@ `G<%7kr/; =,@b'#?ťNE7rnc=9n8cՓsⴾծhao$gr0qoL]\$'!U}=[?&)y F$SwSFQfQ
auČ1Oo^_z6|oo-*ȧU}Sƚ[ +S (\R-ӤW po sڱH>24`v8\ԗ*Q5X gR໯8>Gv= 墙Β>\ui]$V@1 QFrΚt#z9{Ok ڠ:fdsu/ibaFe2A쫷ҒIbiT9"F#xC[(|34%| N20W$]=k2 xHCf,NFN:\f]CG!|W'^ +3kFIPkM>a^*6Mk4 %pH,Hsֱ`H%yjG,PzWD6 JUHhޤ>1AHXnݓ:k$d:aqǼ]sV~٬"(p +?aG6ܨVg
&$lnn<Ĥ~24L| dة&"H^<X W9E#u՝
vEbqC,$xϮ }Ti2#Bxա686|j$Z rN>(I<"ćJ*3S^Uu]љ^H ⧺knclw\@iRN6o$pI8ϸ a)NܛF:B\I;A TrF*U sW4Ŵ jRMbG"sNk9֒.5ᙺ䏵SHG,2?֌ķqڻȼ+E̞?[T"}jGH'ocw;.m7?ҽFbq QK#{f!Yf|/"H{pNA89/MFktbV6Q9O4fcWw^Pځ_M^jR+N?(<׿Tx<1BE+B++X6ߥNp~sHGluڝ lP~﹤#<棖h\,h:.3dE^H-STI~ iZzzto:t`sþ}by>%^!^ ۽75l)~ ;]H O?<-(^7s8ȯ}hŘ?_ki CZE8cZ,|+tdyI-6!-8!;gkq0ō`NJV8$gqW7>8KPVbv5iϫ{1bOf>¿W,oL[l +t
xEuo ,Y"'W}lIAĊ?5u wGSET`z̰l"hclf&C9oCrԞj,)2 vQ[;-K
M|"gH6曀8Ai Q=#֣f$u=3S`(nğ9S0Z23ڤ d3r01@RXs@"1cAa8T=|`qCL sS29Ŕ
IPF۵E cJ،d4'=qlaQy3;T󚑣e@plq@p4QE|Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@Q@R(=PZԶ2*EtZA[ ծIPqlyR˵'n
Գ=3JhzǂYdIB]q +ԣK
@U܊PQŶ;=$?Һ ?L8t{-4)奆d [3mtJl؀23Z0Z^i0%;6?WB
TD;jq
Y ( 8Ԃ>9E@Hb\TyjUQRӯfIg'/8 ֘߫Rc,0)ޞ$]IlV>%-&O]P.RiR sM{a t84qҨD-#l RK[$`7wTR%_@{S/+d$ɖv {f`ډ[NyOzT^cс޷43s,=cZC101Uߐi"Hb.W}@e`r
j5`ޚ`${։96J j&'_(Pt E .G$XN=bOVq9l$,wtQ_a2N7/Em@C 52ƱX*)%mVؗc@oSfp R3rNyR˂@jr .@Zb:~;4,qr.8#@mr;տ+`<{
sZp(sk7+Fe$#jcڶ-%ǵT<L#:
-̲ѓT<ƚ[-6I\^Nt'A㹭Tc96d4\ԅ@$qPJsޭ.JaQ3.쌜S 
pÞ~ 8|f9bsCHJEx<ycxhA ^O f j))¨X%8Ƥ{Va!9)Z*A-z0B0@k&%H%nmngh ]2HQ|W뿊6|)rFQTLle8JdG`U`F+ 1\j˩!Fw!8NkXiH^77p.7(H8'T:-$Imocsy4abqOnl/4BIn;D~ Jwgp0c#'Z<nV`⛶[gG&rN7ӎW?ioex5 )] {u5%ͬ62f_Pm˺Ni9ڲi
ū[]B8ۀpKr~+<ї:p8/GaŤCJTߺj(P$mag/L׷FI{}NՕ
H͉h$C'O^k uvM#--$Rwfz qXwD'SwJFcfA3f3rV٫xkt3 Ic)2ƭa5̬fE
* ~Sp p (IDY#P<ʦAJe>ብGLCo.'±۩RrƼqUQ^]/I?z- d`9OK<O_`֋]æ[HDZX6$
DEFrFFrFV>L8kAflzev;vpŴNO eTkscU};QJ5r#Gq ʐUjmNٞO8o.b(ǨM9_Q4p0˱ɈսJ5Q X\~-x2!I
ǐ=@9Lc0N:CBr7 e9 >C 9(k62T7ժI*KDA`ˑep:c{)I^son: k_^iwI \y!HI;r[U/4JcQ҃<棜[%n®X.8_9->>A kq񝡰s'g+;"<'x#'*rqZ}H=p߈ַW6QCpHȒV,W
H]/5!?H$U|gUt[W?
$O6-XY)A!xQ K`ePNתx'2&A0>J;X\q_:FnџQZ}>(fS9febOJsYۑj7v3rJ%T97ᇲ;#+_NӢ1Y]vn0Iw6ap Ս-9f-/C`I4OLV|Ԯ'cОfNF~ 2)=I<S+ž6 l5(W*JAdP
MVL4NYLjͣ԰4%ԩF PEx"
Ե? ϨPkF% 2P^12QUe"6# s&ҧo |-GDCҵ 7ZV('P
aY\c=\14mo͜󰑦X0Y~G迉~a#ӣwmWkQBQȩ )+ODzTmF)cGQ~OJnE35ї̨dPCJhV(9$FT dx5߀W^ܠt12ye0`dz{go3B% PHr7l]Tƶi}o*Z] -w=6<ҹ}C]1h02N WWn]\ѓ9 3naΙLqM/
Mty__kQ <'r+\rNߟw:"fmz^@ q5r5%ʲ2d'.@AR̬.=s=EKVxq?觷#lukAď KCZHAWuFû#+ۥ+Wӧ;IUGO9UMSA/$1hu|qg7{4v+>.{ ]9,'d Bni%i& #8/Ǐ
Xxw[8ob9c1 x=%bC[:XyS]B:ڵ![XRa0zgm1qbYO<"cEb_A#x&_㲬-j{^qrLG;r=Y{V$R_VMuha3Vq\n9`b#hEܰ;O7bX:sWq /%oHHFZ3QP#GZs,R A8#+9ོWKI#k;\"Fv8G®-|JdN>,~}ݴߕCOi!e Ёr4~uľTDa%Aa
oįi4Xln,1=Jye"9Clc(8qI#M;934)gr"tߩJ{zV~bKOeWY =#$o8Oc5{IٝFW!Fq9s4_'/*H#ՕAtÂRC<H1oXFyɔ$}5Hh.Z%S
=m4,TnBH8P4wsŖRޅu
9ZzhK| 篸-tKrL68?F<\Uc[/Iͨ26HOsNGϽzGWƟuil Yv=TkNWR>⽂2WzVl|= W%p°ǜs˜UpU7~Rgt(ӴهQ rN2wU<7-7mP0$g ;֚ΩlW˛text@: Z='Kp5)Q#Gzt6CLrլ۪& dl 8 \Ԇkf,D@H-XmzQ* tu^H0jg&G"kPXuiO;9MjXufڳd#e8Pwƒ"werW93bk76q\Nّۃ.{s] R7'ӡE݄'0ZE;O900zѓ
ML0ͻڍf0/U%tǎս o%bգŞqpA©*~8ihua*jM!X%-cOVa++)鎵b4}/p
%>{j/IN]d~#bl2_jGm1Iux Ė4~~ |:v(<2+@LxO֭iZgk#du?gV.Na\&^Yp)$_<\.U暏,s1
GU?`UCߎoC^k
Y<`I.J}pE`_~gKkz<3zn&.uH"CC*c+|!sh~!v'Fd0Tש嗶5 -m5ً&mnA'gY:ϒ\pA;!Vho VKRXs FzOEsuEqs{#=Go_Vp9rzY=4I.M.m%ugn<c ;@>5KGӴ[)+vDm8+뷞m%nȼPz@V=rF+'N -R(n
#r;cߊm٢m{N-׀-'6 ςs=g!@Dw! s`q~>WzKHtPc+TAup$bOi!TnH돨U<ܒD=̷+lJV c<o$;e\c=Z:9%.:v>ҳ鼆! 0/5m%DyyCI#~Tʯ2qOjQyXd:?ޖQUu଩(UAfA.xrIR>^OSR"=4H3ʈǁQZ1B96o9]E'qHcWIf<2Nђt8WC,&I! 'n4{wg&*6(N·jbsv1a6 B|Yd<gSP+8ڽr>XqiGc񻿕kYx~+Ky`["SDY8ݥK~"mREKے ukKl =)<w|;evoV6!<qF?>6khWG!'XUQ0uZ W"Oxmm8nYdPN߂3ӕH(Hqz1FMzbbI\֒Nj4<H%8xl`jar`Eo߀tTbyHϨ;^?h D܉`m!A؜p=ҼWH6cj{^#ު$e׉g:ÁaD2|7=pQ[LCI=+s,$L,ř'z<7{܁ZCS})hȴ:ݔEijO5 Kj68HH=:k.tQыoUW}Jϙdp=>'`l!
wKj4qiaTeR}V+D9o|@Suc8?ҳ4l{6+zJiSLu;YVA
3v3wFX'J|'=??zT먑 `G?r:Y 5|J0$Nzߤ%Gss CeNw)HDV%rX둼K>lĉrI"V8Ǥ}k-]ϰI2t4zFB=*֐x-Yf`fGovbiFqڭ1QO-)2?:Jet9$j35_G8RmK@x(.$̪H<+|3Οc7=金I6VnT@j5 *Jn.0%*:9#Sk뻍B姼`:vP^~8ށ iR@݆'b.~ucJA[)>J߭I ֽ8G=TV sj&gE*Qe=EQh'X 0(z,`6nW$L9$浸~ɦ)pêȫ[Ŗ#3cV<+0w+[} PX^W!ciP {qD>4<umal4˛9snHv}G0zqJRI&{*n*1RF!LV Ȥ+ ٥szj5L 0'iC9٤,HϿjiҔ1i.NHo$"L/LwCAޫ1-Sd 3;Sx#!bdh!:l=(1r) c?J`[I{ ȯjD+e#{!HU^
9W&tauS<QG`)rݞSEWzEPEPEPEPEPEPEPEPEPEPEPEPRJ&&&XܱZod[-l Dž9dHͷ'մ9V_tz~\#ۏSIt6:6% WKC]ƢsJM:~YӀ+(Bc޶l4vO=*BI"K q[ֶTar+N*Zۅ <6m%;[0dt52EVcY  #XX3 TlVNvZsSxRdm8 Idqhi@1SMSKP~@&t>Ȋ1;(z$AWqRw?^®)7DFv O_jpʏ,zUH3NA2۽*\Ejp*c(R}hIY+O~UEɏ!OT # erkA#7"I' Hn[ޡ2퓊?V}"TvBmfR3tEQڨ 9i6" (JeP12:f#$>Bs2àhnᄲ$5/-<n?ig***vSLTDXr9+)"1W6*rQsNYMq\{!f!2Vܱj%V;r G'i# ) EP (n;FIEKjݰ!XttHK{RF8QާYaGRzg/ r*O8?ֳI"@Gf
&*aPީ!Y*.pA4ȿX$KtJClNI{Rx S[K@3MQo%p
DQvq)bG aqܟUy#s0=GI$O{N¼,{xڼƿVO C!rh.r7*d;svHW\Ҵƹn-+=ū[VV6.ȚG%Wjc# y^[?+m}]ڕ Pc@P1XYLB^DVhǤܐNy޴+#n6bs֫ ,_{XF7ULuGX20"22p1޶Uf2dr[/ #%YjYes W䂼k]p6[5`] ;\9~OJ|bRB51W5+*˒K$cӟTϵCe26 @U!9Vt1?V@pC~'iv'RǃJ:yq{nS!mfcn^ 0g UQ7!LuSTUdzjޞ&{h"trc*iV8j[CHɝ"hTm1!XсIqTU㳎k(+G+ۖ3p\я9d&JpN❡ZO}{kd8V@eϦM:d
Zr̶xD&m˅RgCh,
*S[:sگeѭ.hҠR(9U#$/'
:k=-v3e ,t^ W,rrV):[b4cC  \^clLćVsyr7v 9de^FA^,
:
l7 InČyP8hʮ.o[Kp rN⨇*PDߨ<(Fך5Ker @TT`p:Inb"$8<'3r.{L]Ll򥽹̸uRKn~Aǵwr>uĺN%X=M㝸zW16[khŲX,x T2Y1Өψ Y_OL1F3<s|癨q`oxWW6R2R+qǗyc
9$x?VJY^ys}Y$M,1JBG=p{V1}M>U#,jytQӓ6?=(>co!T 9$Eg4Gybvܠ]3TMie96G ޺va(u7EӴGG@ذ!0I8wpyl#L2ȅbp?%{]zЅ {o y<C^V{9`q"4xWT(3t/½:]Br- 2mNt!0ک-.Kd{}+'Ós:{xf˘pF3F8Em!#0SM-f8 Lhz`/QA!y@\TqO'۾#Ȭ]IbdU WMdeu5p?ީ,vEs-4 `Q<xPwby# 0H&#a+T# c_8~-xz@(&;+V 85K8\<5c8+)e۸3Z v<|N{/.Ѵ2Fqڣ$
k~eYVAȭ(FRd`S~kXE#eW1]D ykj=NJڢi:]Irٙ|#`A޾&A->`9=|ݣ~kPXj6C`%ፌEVS{`"F' pX=yy[2VZdfV$.y{Uن {i=lUygtV-źK}?{<QHZo+m=QݓAéDb;INw8#Gۊ'Qor,w/tD<QW01Ԏ%! iYc#<?ɧGUGpRܩc9~õH!WԱ9k 9j`1BOTt8i-dw9a1syhǫ fyk9c5$ =魪gW[|Ic q20g^]Z^y\"Lڸvm葴AJ 7Nޙb3tUcK}"<I%S J2KW'5bWǎi5mYNݐ\X<bC >ިX`qljP|˘f.Py$A59rTq&{Hme{4eN'M}#NQ3!rw*#q/_4.`i@l)8ퟃ/=΍jPo$*̮ːĸɫI34#G Ȑ~٬M]
D`Xg
Ke'9t[x.ne
*p9q\1<i:,,Ty3# Tt?#c6r$G?lLB $Q]j`9FToPeod :w#hpXn#h>Z\=F4'rNN8##hݞGjm\~)#A=j2[I's3ӚդI&9v؏:ۧ'+B?6ܷ8$Qu,Wj1%'.3)<'ѷsu͸pW|HI4L\7)<ZMJ<ݺ6i3ϫmgm=[U s;$0nq\ZJ)=[BɆ2,c+i-u}9t=I%h*0kG,OzןXq۽)ezc?[qX.L#R;DVfM0akJM'T䬷p q\Eu~<OqIJdsM8VqTs? $?'ʕXy¨-Y",Bw@1G}t[QK\i +Ax gRpS3<Ko˧><͸r#.Npy9inaHja ѮT;zڭ|%֡L*U1tGXL0\oqF9f=3÷\[{Ői (,Tds5U5+3  &15a2~Kqy<s;y,<9MI #1I?:~N{~>]j֍\$$dQ]qmzp99<_L4>iVmaE`?ۚï-#šޭ-0ڄ14koKTw`}g+%8tos+6$^5n^bR$!}TdG׈ƛ.`ap0`q ֹu-n&TPK}1!ߪH0jҷW,NF>i߯ߥxF~-j6DDAɅyQq ɬ5 d̷.@QUʽ|_5{ֲi%/M㽉XR8ak:[=}mqе; ^ۛ2Y LAO8<byׯ|)y\,tN8"}iѳ[O^E{-E L-P0ޤ' 󌏚mmmm}F,RӼV
FG^ _/&l c%ʃ)m|51o4]>&8jLEv8:q6RCA=QәPqiy I7I1>Ķ#5^BXE\HgN1j!gGE/"9nq13JH NsۜTk YB=kxoo~~kEamn?5xoee cy3kݦZI$CbzڮM 5LvrWE p4ӠZ5[O'X,F$wQ{Uȼ"@>f<{dM]^яx.;?w u$l፣ݘك#3.+r?\YcCxmq0ƿ_*RIqiG8A5ݴ?0zь{uTK I_;UNz ?z}k+IelImJ>Ԡsj&D`wI
'XV)b?z+;pG;i?\%߉HMd3x@?ڱ$[͸ϳHM$P3XF0Nm_NKqa^bTBB˸WAc!œcTKY.( }?qNUɱSI`f[$l% A4BKtM徯-!xHQmr [zcOoꮿ6s% 5NjBji?~zCNRf3#R[R~k,s(K r=Y8Cl7)*#;V=_EZ%fQ\XS5cVn. <8MrWr߼H\1cGLVm.u>+zVڤa~jՆSAuniad•tZsQ'H am
Wq9Yܬ2>*xW#, xđ0:}:{i*Uı['Q qolʆʷ>1h_1+H=A*4r:0US)j MFGm
F,.qdPs(1A51y
HGCWoޅ)&vXE!]OT${#zDH4t Lip2{jKhnmo$x$C9kn~-W5(+Y{qjvchr]i0pi&䮭wq҂@g^7Y{z&f#<gඅoo5Σ|h](ER6sSdH]Ys{G1_He(T/Skf tXpj4=py>dwCJHҕXwcraZ^?+jR)er?|Wї94{ 뜼Yhm<f'xhVTgk10 <[v^$I4u@EnI2N=MQ<u6"6s|}_hFISk/h_E0|WI/Ꮕ<5P Hr܄ nB9#׷/l}D{U[<nDL9pie#*&>D-7J[;ATڰNrpI$` ǃ\4ka%ϢH `sZ1\nePiNFy>⤩!iEAab}Wx
`iI_nԩ*9L:ҕ `ӏ$c=3ڤrdI,; S^21Za`9MZY(l
b| [ qL'nAӚUB۰0V=O 1-Y.˷ P6tɥhtEܣjFF&>G
NsQ4d&
,*
wm/`Ml6kC9<g>[7)3kQClR7A9.z:ʳ"g{UY}ɨp(=&(T(((((((((((z=`0 ",zU{RqZv@rG51g)PбmcZ%WCi?ZdXņq[:I.8 {륱Ka%g4ًJ@tNB5a2yM VJ=:^oYi֥Jւ02~6im `kR e^C VNCxK$d`}ß#
>MNa,*d^末ҜNE4.qO:^HȦ)[`)c9~) C@p K!&p#rNӏ7ք.ʥW9Y$bp&p94㍮\;
:R>P8Zm1OAuvsBv :$J=7IOz,Ufӹce_j-3J֡95aFN~ b15{B* ;8[k譓(GZSoQ*
vϷvZip]^X @7ɷz.e4!&[ }M9@L,1HAjIP_]dH2gLN3GJvk ;zߚVW'FqޝN[`sRȰPW3i#An@Z~@p!HNI *y*H~HoH;rlnKzhH$R 6yTg@f$`{''(9ڄp0Sۊ@=$65m$|
O# #<Ƚ \!.NGZKO_KxӪ4B)<0 4
B,rz3cp|Wj-wgah}E+b6Xc&2eㄅg~޸_~$h>/oT@`@ tf rqXeG[nꠖf8
^OO~+C=SV*[pNYy+^3 w4WW^]vc <thQQpGk`Hr-d(Pog5]/f]َ5$m?W_cK]geU<䫷V?Sioiuupv!CrC(ȯG?
+zڲDo)2O8z. -cmGElHKFXPGnsx<giz-5Ilui P6U k4½K[sn)hUݫZv:,ئ(.XC2"cv[ilucy^iLe7?zdc=+Ǵɴ~2M
94ͳ*ɻbx }Uz9뎵݅<"O,ʑB ;UKSRln=qF
$V0l?<@glҪ9v+apR;9;bGqߐqWgڐ9#9N7nIxeGO#K+6ȼ0-:G$GZhd>zOQRF+2gSӕN7g#{÷vWqjS~Yn{2;9#+3
m]&٣s2ns:r*
Bn7"S1v/5&=E+keVKY"ȯ.ݯ'w`gQݬAe'W*kykXVs;")sr+<'#AnE7b (<汕AUmE7|I~JUc526ܪ9;IiGfGq{w76Y^S^#
LՑ}?{-Ѽ3}Frg!n@G^X|<m*# K{۫6rV@KRN黀rxw{(ݽNbqxrV'KѺ{$̛BcՇ\5qELVE)=ԍǞWfi=/?Mf@;LL
{r̋F-y${J4{S$o~fhm<՝-Bk>y\8a6ʟ(d`, );r
OCV=:~yۘMvΌMHVʣ<d[[44;-db/P@99XtlU`カ8\\c֋[dИU[m3pۓ'ީ^M5ݔ1 +g!~䟥UM98e\tA+fc7M }Ox-?4w'cPΗ2M8%2&MGgn֍ bÂ<TK[YdVv`Rk0W
9Z~-YO,1rwX~)Ci[)cO
?t) l7lIS$~GJb^'k846ӊG@V>ӦkجO$`kPqi3%6 Vi /R@oPMh~BE0 0sduS׽o 
A^޺՘ϤJ15͹zjQH&ߢ3P.#{"سOdchmzc48Q)EG~.ӽ4Pwp*=HNN?pa$-G!ʂONTN9SBrGCS[ M,I33j@.O#_x1ۑ@cz(]ȒIG H2sqq:% h6ұav;2!K1{\I$^J.j5dyK{`N-{uަn|}nn#h\t<U+$R NO'$sW"ިV r/-.1biye'G$ |%S٪qo ,ZppqՑ:ʗ3JA$X ׽!+,d m~8nnIb+C =~j;XU0appx62MM滷$_[d7y5,<^eXFF
rGJ#h.ee[ ILGmV R~+GqJ% $ p3 eh)T*^dKW1m+ƚ#[*WH#۵}ق:8ߋj|y̢0`swlm*Vik2.tGcbsT˻X*Ji7zE鶿r2wG|C+ؑ2TjhvHH+G'SWTKk)XJ. H=>^.&HlC)'B࣫܊)ɤCj*(ա pT(B>O8׳~xg[e(́d9,0Ӝs]#xfgOj:c+lj2U$di)9d
enLAy玦aQjWףYPCA:f'hp걖#=+<>e$@ r*"F15iJ(w\ H'g<U7("[ģ q<O^2+kq)EvZ/3v1NÆ#ڭČ%ڛ{%w1sjҖ .Iڸж8Bft2pY6`c^FUs<ѾR2K+3/-+F4!MXjw[YZ\=nI\*tIVv}K %rH$lUwue5G 8"5b8ڜ3 _v5kړꚤ G 翧jA<|Ñ\5ռӰYHi >8-k%
0w컇\5<EU03>j&'I2UNsZ<™#>8-G>ͼo#4,1=XR^qg70'_2wt滯: ;V7r,\zcFixݳFiX-k-o\::rH?n0uQ# ;q,u 7dhV>0^>4Rң|M|^P1snrrXi޹hQhC.ӂ
)vK/Wg+][ﴽ7Am j (&M89\ v6
k>/q圁}#63W!;@>
n4r8cͶ2%dw2{btG=ݪX@V'uzd6+iykvBtX9>ZN{ <`
C>|H-U |_oc/dgbpr@~u{jͅ(l-brʻHϱ=@k / v6Z6mZƤ}޵m)!{~Yd)Ɩ%%|ux1aJM0bmq&?; ' ӣWw=Gte(SR[{kSB<;Gl'_둭ĂGb+ubRquz8'E79=~?z7=Khi%Zxn&2bx#{ ,= Vac=@?ƒLܜ_¢8F1F>v9bK'St1BHt_ c1@ l#he< 9“z%%rxHL~?jG]TAH#8놃GDmXfcgg3q\Կd_6U+=Q08mS8ȫIBRN>6][DV;yv_qּu]㗈=OlA$}`bڮ56`-tEiTp)m+$tcg\njCD4%-цy?jd1乄9R 1Os<+ol^8՘`1=Ab3r&P6wMU ە#9eF.LfB}%pW=iF>|q&1rZiSvf76|vYNDY A'Z:Cs2+ {7`$").pp JJT?ٔ#vѦpyG{&K$>F+5ynK7 DT<W,c$ ~`h^squ+JJT1KnR9Xm,)*T4&xY7i%}}LZ\P'nq2/m0
['*qۥDcV7BF8eVouh,ʢO,֮($B:d0ph(r@#r=kZ
bFG4m,F % ,b~zReFv9@α!^#ѽ׋Xn( FGPi616Z2qU3G:H- 4&ϩئLጎր#+T nN.)UcsS[)\]ymьD1I+WCN=Z{hH)WrH;3\}EH G<WS~XQYϱ85->m{ei.'Ѧ[Uݻo@8(<r+ú5W̱ =#smm͊0ʣܮIVַϫ, IYOc¨JQir!Mug4ny[ X2q4c9 p 9ҴOSy:M% U0`]3~sך<ZُWdY`[2(B:=uMk-jZ]r xEf/!4}Bgo Ii=Z+X+<rvf:oWWÞ/r»SE2xBeuEA7,3իiզ*Ӝ2cͣ%%hEtO$8H?S@GCGV&j&g}w߻|w[bC1=Jr@ ޹7]nωoa>tyf~ۇRG<SoMhGR7Y? W\fܰ[$nP`{da"n33..i\YbO*>ӥ=&65S[@Uҿ .65X JH<(%G!8ى 
PFyc%dK#}6{iWq-H-`RÁV]nL:ne F <A!!ԱD1$K)%M4z^ǫ\; m.w3 <goj_o@'#9\0՜542ո%Iݖ5w1(ݕY 8X흢0c@FAs֔akHnmȤffyXM6Tzp)Ӳf}"vq>)(ᐰR9
$ 8摁Ϸ֕GcHvchN2zS\ڇNWtg}:jWD6ݑWO7r=p4]H9@$7Ud6Ā5̘wL7
;=*FWITڙB,:
p
acX tRh
àA8'4 hnyϵ,RcV":zrzUIs"G+ toP9TO-왚Vb;ATC`۵Hd8*iX=:HI(r?SGd@i6<(R?d@㠨!wP1 dfG)Ԑ)Y5#EIXd:K{ %[PCi(4yQ^Q@Q@Q@Q@Q@Q@Q@Q@SbMK%^-ڴ6rH+{>kB ;v ћga-( Vņ8uOH W~<r!J]5K)6µ4U@룱Ұ+Q|=$*S[a/k3[V@V2]8 kfUȭъ%3xH8qZ :HsSDpGޱCT jdNsSBjEt5RCO8+3 btv.V?j|Nź
6 <a@H'1WKmLu{Ss3|:&+\;{UyIښd.ʫ犳Fw7Zm틲LI'v5$(.KWH{VsJ $dN1rvډa%xB$1\SMm%ѓ9@$j6g$>˜0p9Gޭ$ܛ?z|Qp Q+m*b]E9sCeUPU7paM#z`ԛ"Hz)Ѧe(-&H:bwn 0T l/ATI^ՉEXՏ'8Gӹ5iP%oaYpMˢ.[#+:K8^W#,A'B,IQOHWd
ܱ' 2r~Vz
ȶ0<~'=3Pd^>*x)#u@zi9GNޣSw)v%A<c1^j,ߵ; և׮ 7I9JyJH BHU!
OH>/' dj촒V +9oY,F=T}CgM M,͆
:UH9me#!u$exJ5{Г6D7L^8yTG4m-A(03X(և`RΣ' eh,z:1k<kM^ytE"Q|g8ِz i궗K.<N mYHbAs|o+5i?uzI#wҬ>aĎyIB;Xmfhc|ax 1~
SOic9і &2TyZdS<re.[88?jiI\hI\#ڻHexϽ>I՛`tRO @60(zT3b5ܜ1 r><.|8=H|7#j8#'#RDWRMƚv >Kzdv' l'9P
NGھAԐV "S-r ^{JO`f5S02'bF7`VSپ,nz=CĞ.tq0sxYw~pu]ož>S1F =ZNvp>*/ ƛyE=#݊hwd< x'tomkwimk4pQb)p[`J&n/VNW߇) .gs4HIUx+JǞJ-
SFU\IJؑ6Eyߋ|smW5}8,0-[7(⺯+TŸգ{_ʸxr^)#?Q7yVufEB‡2C Z]&{Ko,`V2z}kj #GdۉA<+ɴ [fC}l7bo(H,ɓ{".dR1{:'Vv+tO4Z" ;/_ϞR~{t|;Fۘ%[S`u#Xىv!U=$C#pA9#O4&EŎ?Q̭r9)"K7{+؅Ç20ȪI;M"4=?eO!8 Uu&XUs|Ɏ@mF]x^&3x~V| ,1/xDlھ
^[al@]ז/@’0.Ad)zcIH⹑kn L ꘘb7bIxVUFsk&kUֵv:AupKm8Ry۸=\
YVkCNH#3FA
*r9M-^d;R$PO'k/͛ jlmHA Q@Yv}^>AZu/$p8
',w(6=˸-wzqՌ~niF\ZVѧmF[MBK/S ^IrK+hU+l]qU4Hu 9S[yXVk+m܊:)?<ddҹe)$i9IB-?t\&r AMlDڵ̱]NC15,Z6iZJ[kQķ|;*EWBkhmjJQn|E==G-XEM]EˉVI吻JuU, ܁X$d@:j&Z+I=bÚƑ,.&#U g>gekqÎz;to^ۢ_ Q$b 8w\I1Hg%wvĢY)*n{|YÑ63ڪ:#'];Vz|Q+R־a"yX"Q0 .Y'
=MI$\E8d 0Pʃץm:1i_xIɒC#s08?ZܵS
EbWqjgT[F #mXv,:ڜc=H`dsP!-nˤĆ`܎~ia5])UD7葉-7$NM1C
r-Ї"Ҝ%A+)weT6vf{2dڥʍ#ʒ9X
sb܌<u=^
LQR#eDs<
XﲌV8R,xِ.ȁv5oQ^p +myfq>G Ex;PR!FU܀dUr{{Ku6C?P hdLd|Ϳ dotI'*ҕ*2HjwtkH^VR[n s局7ޮ[G(DbL;s$>*$ayrK̘}%Go6732Ic,"$}*=ΚqTq26;g:9%h]C[A>ZcbjB 1d*[?ʹs(M=‚tH*`l`NW,t#UHሯmڕb
(Qﳸgw5## O*DL}3]/$`= $:3lU]*'^[e0j+`ˁ~ԁ ,K1bk mAY*eےFV<Qm`iab$][bsqcڒj9f+)_"@Pя+Ӫ{Kvۺբ ~GzW%mgA89koQ[!va e[n$}Uv1 `^0#`r+?VZur6:u4,Di  (}t TY7hK 62A80=
]SOkK`Y30?z4.mA'MbiV"6{{|HB;w&r<v$*`8:ǃ&y,y*K bhR$sGb;"z涵xbW;|M3 rNr6<Q-!-GfmǑ
YAR5ɛk[f^ti<1G}ܑ=?/jc"`L-x[j% ~+ӵH4S5%b3ГԮ7ywi1ut9
?,c
I'ՒpMy2K"{:!xњ4C &l1`pN\Xu7wqVN'`zT0\םx7zZ=$&:l6{'
XnsOڌ^:呵HAiL[K5ˡ+drORF0W ;^M)K'Չm 4b=H}Z\ZڴzLeL28Q^Ro]#~N$;G%~)j٦p8Tҩf?E Y 1U[l/у0! w߈$n
6L@%N_ָ 2 lI5vK ! khF-?d%ɣZ:3+K)ҹ>n~k;dEOL6w]'nvz%"E',Ooڱ滞 Fˈ=$dc5*i5i WWoޗ, W6mRV#i&moTG6Ji99^y×Z=N%Җ(g
C:⽯_6KŌv23Cdrrdەs\nnmĢ/<  >Z kƭgj7sk}qq5i]\e$\3*0#kXe#ԭz0
`Ґ#dus#q޳gn@VcZ2~_>z޵<^4n!<C
o4ꗦ6rjI@~*'޵GE7w.IBa;F9G\4}~g+*1ڼ? ]C{)tAR:e[ثy`<U:H83O
탞{5ZϷҴ&x^Vsjj:VW73xIB,lD ї|׊Eeiy{ilCNpv{TGEA^+) Nh6㊵ɝ>{jZV[5zsڳΖwI&t1RHxum=*KEO ɂ8\-[I`:{Vh&$edx6T$T=Pگ(cUdbm
s Լ?]D@mJŖ21۵gJ)soI
YVE^[ ji몘}8𴩺ݭZ>}Gh8rTirPIk/yϱ[!k-Ǔ֦G$mÐ|' =3Eb9eer#BndV'!#RwO'n$KkM%YT B)j`uih dLa8N^xȡ"iڽK:1UR HԵ$N8zpq:V[.oe1-Hdyݍ _\ߛ)4o8+ lV-{9~B͆dEcnn%'l߾kѵ;UUDciHg=@Ko9<pC(Ef<{)D !@<]>t_+..L!vvsA.4֚ZDH\IT#W:|1Y_Z(Tlrx?u]G[hh][VP:c8!H<g7rI$h[V<{SbHJqsOb]oS+)' /ld3{s[4Il+G<l%Q fI 8Q<VD!(V|{gxFFI RkY\Tz+BZeE"́d N㑜v5ع/֥wڲ۱BN?yU6PUI${ ks^,e[;erx=+_vwZvX! uyUK4YWqHԖ,nBpC`|y}IῇOZHܒ\B!Kgwz-?.Z ˚Ips~o_[.򱵥@\'=8=AZҴƹy*GeKtprg+kŞBU0㑜>*iM\ɌbO~>k\x_,
|I{t𘥆H:NpI#V.ckFɍb1ۂGWk=̩mn/$rA
Jk^, ƭu'98J#ik<qfE21I<;Mli> t` '=rE\j7O-,RIk~<Yrrz%HH|wN'7HUĎ'+ⷢD*·sDcWG(C.xj^O%Qdb"9:Iog񝝂ʺ6 ,ͽK:+5|u"RQ݁>k㻴=u"`MIeXVRc>CRGe0s@6I뷎u&2"1p튚[X\ue)(qJ*|{3kִu$f #sǭt> ңQ]4;!h'p #? zSW[$O)IQɭtIlxVg "bsǵ;5(SKc?ֹuUYmI\ήC57rD5-)b9c;I;噘$MC1C'pF<C 2, cC9zhsT$bFrgBw&
횗ϕcۼS$㑏c+YlwbG@3{@<H5N0( #>Qb6A?J 6f#gtZ(Y#3I=*&Cwv.@Z+$Rh9XAݎ{ޮ4MasL}֊"CrcJNJC@hu!dvR^U0TS^^y0 )Pn>P+9Mf/ԓ0Hc8`T 3)##9&uךR@=GC BYASBQ#2OJ#}Wl6TQdݜzM"
6j{C5G{$bfE(Q,QOb56AƸ
+*;Yfs7n䪼zCkǎiHfK.x=:]0wt "sYJ>+= ((((((P3@h=S&lX5J-+ef1# K"p@z״,W=ke3lܚ׳t$9>ݏ<>*qtV:A OnH%rX0,0uًf%7.MtzX _MlXinZJ2lJ~չi`T9v88)߳h[Uȡ%ƀ61XK%<r:T#*e^88qY9$1Pn.zU^Y7lt!:Ѹ(A8# 4 ,ÜQ;`(@5iز>֒6dIuRs_(M@?4$mr0QI"CS<ի1zƖ@ǞU9+bKi% QgRʤOk B3,gl2SZ'nM{dIoeTwir1T-ܔZ_"C$q[i{TfB SXV6:L78>)ͷ=XcLF:RIƮ0wH{veQdڣjH[71OjYnYh8t[f%b\%-A%A)]@zdt= @6;V @ƛu*@ij%}'jsM&-;׊2JǀjaԖnisn(1HAP
 !<qHb'4ҤH8iY=R@yPzC3*ER{{@1lǽ(PsdԣDl"
djhMFja}Oy40ݐ~E*BMM*2 4$lʠ=UI[eHatPT~ښm=jFAkj+5<ͷqң<IE[!\Jdk:?R^"'tS`zיkC"=>vS^Gcyx[{M^{;AwAڸK5ŝcđ]e)3_sn"$P<U<[cĒ5lB'vx'sd}!m.
&$¥:frt?5XNR4ƹx.V%.#*Q犫5N%tW"2wm~;}j NX Fq?v^7ATmU?ێxxRB1n-';崔A3)ǘ"²; " :2?Raz>k[DKkyUks9l`"Έ_H±GLkj7_f.GنA;z*dewGZ ֠3FS(k9A$n@9m`@9O mIa I^C=H>N3韗ukw»Aۆ
szfX|Me!b V,2B*%U#Gpo(#upHXImΈIVq: zEWVSc:m#$q`*<Gmaѫȃ#g_3~bP5.7ÁX~tELQ.2A1d{TC4hӶu-REq ɎUO2 'k<qkvZU&vEv$F9#J ZkyL nTżxe1=Aޢ4r$1UlJM}^]gwGR9H?ҹRAr8KkL(z+.ctMBEK2glY&Eܵ$]TQʭ=DBM|мqZLv caI'3/]KyY)oy}ם~;i:&G! vNls޳ȵfMR7( G@D`br![scN;ΪFb\FD@2}YqbUL. 'D@ zr_)cP b8 HTeH$HYAe.r9~jκY# 7#m qR&Ey ̒Ma#09=+cRT]QAQnRI܇80ɦ7+2Evs탴<
3;ZIQarW
XJd)fM/#,dhbQm!w->49B Q=UR{f?:*1& oX 7z{OfX[<5L-sJd53e[)Ic9[Ҡul㰄Ao) ml,# #TOv؍!q1D2QʧWuMn[.g&}6 d=y:,3B=+ۢ5>pFLRJ7?gBq}4eϘI,PyWAߧ4pp{trqWuK+@Fx'#)bKQ'-
qv&c 9lw/#N
<✊H@<jT%NKާ-(Cbe
E
9pq[vhڕkt[qv5{}qs;lJ.НO'&\g[I ͹,AF߃X7oi>1dm<
ovԻH08q^k,)\1 {p[5=7Q# q\z ϶ &F1ɦOqVs{%A($W[j)ׁA@㱦d5f8$\%;
(^E%A57圦Tz PlX `{
A$*W"BAin&l*{nJ6 olvXV`YTTB__@
4V#M[{
l3n[MSA!/9'5ͱRI(zv$\_ҳ.zjKy띚qb{#$tMrdcwUu{V7e @t]KpKJɂWϝN azY %-;Õ2Fadqn:{
i'{rY㯫瞂ZKSF  8 8Z*B(zx2p95t^(cvmA郒xz2*t0HH@=xکZ
cKY$'`|c^X?,ѢYnYW?PPd/`P1:=IЂAc4I}j 1%X"67NGq$Uؤ  G?ԙHOk8:>sT'ZL70а'#ܐ:,K75`kK)^{\2Bn1m^fUI$; gCtJ_x{ tHo6 Bx<4ܬU\Ww/Cڅ IMvB 2#⫤ӬWwWp͍f=cvQ^n'yaLyfG',
[ gJ@Yee@l-b{4,p9<MiXi)yRL^7hU܃JqMDɥݨ }kP2y/9H@<״n׳yX܃t$ ^/QM&Jri Շ^~I[`&k@3+
9n8#Wڭ=5;KoV3imhe
;.XUĺ?:i<Z[mo2kvϧ
NUԬ+*i6isݲ58ϩϋZm@HӱYx9(`=~N5N)p ZhԣD@ew﹟xǚ!GҞ*ʰC31+3bI9'{ $9SSTvSIBę8!8q ټIA
:u5RX8GhWcÔX8c^h(N1x?Z>]=B@x?OjF1m2G4 DCGFSG4F viZ"9#)uS1
I$AzFB n'֖X%N{W4 ]^H^"q>;}kJm s\į v$m^" {cvu[@`RĶqz{M,SFm\BsT9O}S1Aܑҧ}%guq;"lU
)4ޑT'{p 6S#is.tJ˔}Pk4Y[-݈nm'*ȔO"\7;^Gn uQNVl( {NI*.eKobIX: B=+𞰚\s|sXgp;\0__PCFQ>% 4 4S~gڠp=<kfmQ*N5K󼫇X&zI'cWw톷XխI8,Xcd5s%kMV o4_,/nrF;R_hvW[me#+pHF9 n 2~]WKKk^-3IIV^ct۫-2;}NW5~^A&' )5gd}B3J8ٴӭ%k7Щp)AU9CN*[KMM$!Va62)kb6rNFx_<7wVv[ Ku@TTڸ˯ċHu*mfHJӼIKNGo,qqJb#?~zҖXFJ-*ʹ^i\hf+q!x=j;M:M9&%88 AǿzaEBa܋?I?Q8_~./Px Ab1F |Qڇ$ݓK'I͔sa1e6ţR9qzmV"g[{"3 {A<dGRc?w_WV|T7@0*.ՕFc*"ns[pV/<vKxÉYj&GE
H3Ю<n?-?fܦ jэGx{AD[+yoѸf81xz}3[("㔕:p^IWlg#Nwv O"16HPIb
+o ΋mpH=}`(߃\6Og vж0VJ8ۍ<n_M_os\ç۟4m۩PHKyÛV^6Zj (Hp܏yspx[kFeƒG<mS7~T,%ImU-&.-~aV#(V*[9`t۞}RtWS#]рH<m[ڥڙMQᥑ[Dn~x8AHĢU6,lp\()Q"]$922 fQa*TC zկm?9,;B< 9j~E&':hx]<5qa}s! 85n+\O0C2Y%Gwgh &H.Ѵ/1*6K{
ΛQHҟY廖Kt
ܣTn5XD\<qқ=P0EP Up!IuU^3R IAڠT- @2I`Z3`}]|
I!5G1R
ir}DA3ɤ$T2
uM3 xvEuj~;֜6`7sR4 .S5Jh-&6W-e'ɾi
)&`8!*jP!8'ZHCҧ欃xoQLȨ\<Ǝoa+u.C395.Y<JAfɅ<SZ]۽eXY:B/;r暬U;{ѶַkC*(;0*Ř0O53ȫ+ܴ *pMf!'zB{`ѸҠgQ#47اIp>i
@HN*a(E8RO` Zn}A# 2'zԫ8s6|P446 H\JbElFjB. 4(^sdGsJ!zi<sH;PwKBY x
Cdo4e{*3?p# .yPƴ4)): d4-fMuҐT4,.gWDQ՘`# WV!5
U$FQ b,xk .Ip}+)84c_բG#$8}3Lf|6k2%JKVQ.VW`}L6XϹՂHQW'8V=b;cycV#ӢY7UZcfoP}jeҘ1!EeHb$sYZ+FN $"+=(((((5$q<RM (K1VrymdN
m M"E {,PZ$iYi!yH+ïlWn?SMoI kF;zqZznPPs޺;J.W!ك~\!tZvIfKڸWAe%Hʲ03}[֖@hY8+N`味HVjiE`Vc+ L0K8)a|ԋ(5hS1H3NNUȬ) )phM+44~ iU!98&y ޜ"–`j8KcդI`,{n q1$1J i/bz9횣<M, )M> ;bC͙<oF@kUY;6[$Ii]\:UH>NJF\'A4o|ъZD7펐!'qڣN7g5I7}
㓌Rd@4hXd~YOwV P`Gi<!K~jSdu?hφ
,flpRz҆Dc39^Rerb<c$A=RŅ\UԳ1ڕ eE$,03Oi(\18ci6==;Tež@˖RDn3Zs[>C0j NN3B<1>Sl/>抢vơ` bH<wX`t#F᳓K4DPcz dH^&UBɤCZɧ,e9/ exlODb"A=;P\!=`!U¢2x<SU 2x*)0UA}Tnnw,vU$8d4VtL)*PAkhWkfi\*~O8iѴv{_ƚfۣ1̙8qFk|G g^lcҸ噥QE7Vfv`i ]਼I#͎y^wsM#BL..6U1ہk.CjfK8
`۷qNJsh&W>!l핚A.N9{+jrs_זsi3dXfK`\P 0A!fg]98UxsQ^YOe|PJ=%d<R;45sY#+1`ɹ1))A%uxcnOlh?"[1|+` `z9=&2uSL6s} `ƩgEdd
3n *$߃PZ֫s$,x8E_`:Xm;(xM:'.-$Oh]ClhAN}miHpD2 Yr;?
#sͻ[sVIaz
ti[~ Im8T(tGd#rUC$E307pF[$o$bmdKk%9q'xRzWU{saûKVi#$PxⱚP1r1޼'#jAsWK3P2̄,{Gaj:mL3Mux$ڰ( )Y9gOu5*48K"mEs޷SsUj⢮OL.ظ862FO?Zu]i<-FE9vq`R2z͎XQ㷚H pN}9梍$ߨ3b}(olUKKXU.& TznlapӃ"}"?$z* La" 9es֟ɜp ym%IcX<8Psߥ8H, 9;8A?5\)1,T] F9's^ ZX]M v1Z`p2gڻBinaa?ៃ:<eV8R<.Lk19.:
4rMJ·_"_F=$ʧi߈zCkl s'~ު0M7]XǷ?Wg%Y@c645IϑOL\dAE%X<!(lQcZ~&ӎmgKRReϸqYHά(rO9\΄d No y
R2b#'9+_J; ex̘6S\T(̧R6Np>IkIso biڿCԨɵWnCZv( $nJ 3)&{svZ
>no(iF@!ya}7T lBpHcmFdv :Wx,Ztե}Ag}
yM#|0M&%Ω2XbH"MyvAW~^@KoK9IT O\Bzk&Cyzzx$Yz2?EUGU89wɮ~Rm$i6)0V yl~>+[vZ5n;pҠ$NSgn>bU̳Z9P;WbAOL|[NQhM&rŴ1VxAbL*.p>r>fiV5˸8?N}޳|߁ߡxƺ&?ckJRZDvҺVŋa:;}
yz
nInK{#-rdž9޴t&{ΛacKn>zd#!J3u<wzΞ.4ۨ*V)q (>JFك.,ekI!h#06qԃE-,$@rUO lkږk\Жڬ[
AI9VVi\~mtmt{DŽoM.9i-w?Bc~^<`kPOX}Ia^7qL =a8j鑜Ijzt x$j*8[+tH(䷸vKSZK#QSڪL0qJl4⹜9wS;8
_QDB34IYm6\oc?FdbqMD
N>}kAk|`4Q[S!-182bzf0`EëU+6բs\JĒO\7WJk(WcI%]˞qQwؒK'AYZ~fxe8o>`A_wo=r5736j䬱[=*d1ʂ<nX8+] u=-~'%$%Fd3vj4-2 Wt8<|k"Ҧwwm(˭ӃUo `czUTe.aYc_^'=y+Hlt)`qi=h=6rJF[J9}D:g ]g#2:?^GxKlKxhg{UUI{\ sj[<!"u1Ld2~O{<ǁч{κ۬yj}$5kZܷ3I}1h'FH_#˖ N| YGVH{QCq,z⽷
G#5NH=)װKo71W
rR}x e p
oC$!7Rf]fhe ڻxym_<Xd AQ74ĺ^)5ޭp2WJ;_&=wM^F_]YxRA#i<ϸa|6`-i wY$T-ceyE2o fh.#ޯj7w?ztZ/&iildƩxyh4[뛴r#+ 2G~ФqJVDU`O߽;RY9Y#2JFG@HX"PF@ $}.[uGl!J%2qY<@ TF]2sߟj2 "iM^e9b'q$#o
a(G[N{Qi? S118)ޜ̇W84y6!ڤrֶ
H޹g?,0r1,o
1ȕ'Ev4d2^ e@YASN0r;[mE?I#?q㴈m%6zd n G0Wy5u7smXWGIKظ|5Oo)[w7gtFH#~h>_b_AVv8V'ʕ9 '=Jӂ:8[S<8$dFIiv[_'t<rIz}lnk+]O6N9+ƅg_^VʡS̠;g95}MokcMI]Oq4m6r$L33*M}0;=Z. 98\t砯v:_h,4SŸ*0N~Xmz.oh'1Wn,o"6s"^#ό [ m} &'OS4k{=aæ2Ub5xJp÷' ޠ:Vꚥo#p0:
8]xt✞󻤴X~1%MSqhE(`(PJ|]S>UHn'n/{y[aChVð2TQc`+չH?R
7W-Ꮔm{Ot^ =%ZH76X8?jt#3=6ہZdʱ?Vb]'6e-wKUʥC=]kB?5GJo'؀:wE%DVz 3޻ !
yG
Tx88 abPF1Pu[ɤyK9uH?VJ,уDEC*Jm;M# sbzOP'j"̡oÐ?Gp#d4ִQk}fG}ZYH,G}ETU`{Hy8O$= HR*M$i\ymf 錌~Pq`b}+i˅?ޣePD$nJH0evw+z qEsPlb9$Չ1#$gǎUR*>
HZM$Jķ܀\>u%nە\`(
˘Lެ4Ï_@EN]s)g-<q4&B
-pāҌii\}L;E+8%y4G#.A>ԏ;6CsQ67y;@<42Iu"{?AMR31>(^Iv\,U+BsU=sNY3Jq1LmO>=Zk6NX(NI@=Tc g
GrnlLIF}Ų{
,Bښ#zd (!NS)ZZ)%{
eK.XUhZtDj MŜOz9nFmΑ>LQijpߥhE~#'"ԞyFv
-[ʺrʪ=Nx5+h ::_SA]`
s$NFiFN6b"2ǹ*lJrN9i t}BDQ
v<qMfJ) >})GjBOSBr10H擌{|c@*zWN)IfH C~)IHO?0:٦JH0sMG<sIc.xd@' 3ʰ:ҕzi~hn`pO|3 >ŒϽg40hHN ^OBaI<P4=)
7 nq7Qav%BNME )SYrNwvJөP:sTddwf&@$\TYqET3V{Lv vKjRHtg5EWzAEPEPEPE.)ʤOD,x,FkF8inLI"ŏ5mf28Y*qҷlX)n+s*24͐_߱s~kcN8aq]&n<5F]?Ic=s]5F>MlWCk҇zݵe='8N cqZQ@\BHH[kV p`sVb1Y#F+3x.#*pjD'9XJf |g#p^0Ede@9=}G.qךU lhP02h:~Ԅh& O&dU`Ts1eŒS\}dR@P2VXL
-Ȍ ',J($V[,zTAPOؗ>ڟݹ1ڴqHY~^dI\bap)c4B*7li Y$rQRA A()8Fb:Vm,T)%-]覒F[`H<sڙ1
1
r;T `]ћM7"TvE[C\T
"<bfs'&t $g:C8+:x-mV@,Fᙄ<)T{!m'/t?f|{2K')B-);lI%rϖ$M<~¦*6 KFGɥ6{]'➊bcAaya֡r8UN%.Ǹpj)<Q*`RTCĞQIlZĄ E-g H';D6bUBscڬ pc,W-Xpev#HdS]ܱQS)
X(;TBTy)?Z+bH-F( cޫJwQ"<
zM3ޒtSVCmYG=p皍$0\4J K{
li$O#&™*b$F@$}L ^s1^Ҫ1dh{\pOVT5{8:f)3~~a9~†,;sWVn񦿦ˤjז)X⣃M 5󭥻$SU@?x5+PRyS1y0,Ĝy\r6 ZL\[,b68;;t TC K;}`7[.U'N>F*
54as45ͳY%gZ6D~u*]^shaÖ3~Q=ƚàhWA@YfEeZRhz:o/on⸟k*Y3WAh\jw-vѬ38VY^)C僃yi_ɥ[q j}%0~qQiD:}z)9NwuSq㚚{_UOmyj௸j!UB1h}߲O$py 9+:bk`kh2Ka8\+IzO,ֳm۹FH|fjW'KDFR<*6V~ f),}_[ƙuciϨGMkYT0,$`G|V5Ŵ3C,aǥv#ߚ29\_kC70!@4,jUFNOP>Gjf\קfoa/ <Upftd񫊶o9i߇3ç;70Yp3gH=<+QmNtǓϨ)< sk/[_ߌu9|IcirZ(zKqzC+5yu՚H,죉1[} urXĚ$I(Rg'ܩ T?
@SX~~M3K YH#99^}ץz)6[C{]EfRӡ2>$wAc o<k*R7_8嶏=5&E*$ XԗS𙷓jc3CCL MmT1&65Qs"7f+كVru Ȁ8=C@{gLXxG;ޫZ&nv[I$GVK!/4mz M2r'5 @F$1^W7IORb~zy*fvy\v2<OԞz
jR7<Owj;6LdE%>%S5C|AA{([;5LwKjȪXr~[h5(%Ս'H!rB͍=Y YN)lkt֗}Ce%vBYnp;f,vv-bo-|v-SI9*ϮZ_OL*\vnj+7WBH$$qA֦dni9>!!fMz(+yA(VCqgԜا+r p{yFq Xq[f)sKw3[_H#&?4YZ/-K1e3FQDZ
j̑ 2ʀ㞼²S  'ߠI@P}]u=ZqSV8}ܚn]O<#%%8sVnaf8Ԫrk2k(#gnGzOz?OD+B7QV\#!m&y_ˡO,B}bQk1b*?ӲMz1Z"aUBy%GA|Uǽv>*rfJU%쥣Z5db2Kuf<kF "c]nc9'ɘ3MRs'E.۽cjfI)${f=ܚř u4wlMR.@!J tm"c9Yޟ1;N:]'TdD\Ϲ7I?mbQT֩-Pnb#޷G𢸟$#+oNC9 I~f摣fq_2V
Ŕ5sQi
:&3i8c-۲S O5-m\v0nrj7kdbKTo1PsY7әǒb9=1Nԧ{!sKon ǃf[&ol+[KHnJG!yLBd*='=dXq]ⶖ$: ǤKKpGk[wh捣IVVH#qpLa%( :n'$dC1G|W~ jj~a{w,R2=Gھu*Hs^Z]t#KFsڴ&bM"1T^Qwp2ڕ%KxIHtZ>& vI,ydȦ<F!CNA8{>&%mg P#m
Z< ߏGra$b<9+:։&8ع+–u87ruO(C2> avsY-
ЈU62;QLa8QZzm-J'$S [ܡF[h? Q5vDEQV)1לסGIx,X`3.>G+|lQZ,QPwy-c۷T)V۱Iq?^
!!Ͽo-u2%o%Uܜ'3ҽU
5ܝ -4ˉK xZwmizΜow<Uʞ, [X]Jh,@Ԑ8A~ $101K0S^w5):[;A6WI:Ou;wMnUyXW <e`V 'K}k6afy
m]P{-x 
޼֊t L+ǡCE1oae*A=ziqnk^a2S3$9N6_O2tQ&fR@owZO-$L7.[;mGí-
G;Yz1;[LܘnS*#A^^3$aK+C*32/ۂkM%G4G-+pn O"bE%$\t Gۑ]Ŧe$6[)
e`8b8c\<)WfTUldt[9iG-r4%R΋ `yĩꆹ^ZĖұmD =-/E1{⥳?cRգ*)[&6`p3W=6+6I탕+1Gqi1cֶ_uxܬ)p2<~Z5t{m+I&VX-yi GzuFcsoe mtm hng[c<GsM6+аP #ikwmީxFۀ`ǸC~]Z/QTcjY1BU.3 @8 &Xy$y1{$I7m֩ ձp*y"
* omēR{[9i3행3jTyT1TqQd
ON<q~g$ӊX'QVE: $NI==7|SN0]LCUy?JTm!>1H*N:Ӡwol:2GI")PIz{TFW 925̋<j**rM*ep ]U@E;*wS[S+.s4uąqQi|;#?jz'[o_"]x&d1zzޙ<i(+c9B'kI=p
hK˜di<jKc
nn*ɄqM0*H|(Y/RzU #+ ,\DPJ PށK-qǽS܈ٲ
ؽK (w!Wڥ662$y<R67q֦=A).vOjbl{nS y ~) 2zvHdHPj8-M{P:H*Z7]@9pi;T`@, P0x#( M5'$T۹v O֐>'c@|lrzaӭ4 'y 16N3=ƚ3@"b}9'b\apN1Hp(@)3ޥSZv $98"yғ@ ``}!I#H1B& Pw(< g zQ9n!#4t-iBۜ`R;EJ=i iIev8Ƞ
{NI%ғcN4~)A</zVPԪs4И'$S3Hy @X *9A |LK1ņ;{
a\ Kc Ą1VbIJiu)YCJn86Q9(#
(
( ➨XjGq+c#pg5k`5Տf3]DҶm,3ԲI+LҘ6J}vG4YiDʍN _ӧYO0Vvf&XEcٲB!x[,K/J-6M +jUrW VUzȡ8W<fƑ0\(Q{ԱÁVR0jh8?ڦXb1de@<ӱF Vv>S7r:әv@ 22EOz;SvZu])*@ǹT ='?Z#)Z{
&H"m'8Tegrqj 2FF\TVTRU?Ay*}Gn.03a~v9%6Ij X(;nNO<|Jj$k<1zA`iRC g5-އI4aPX ׎亮 Yع 5Xȫ%v6.[ }]ݍޜƨwl#Zۦv=-k;@`^yJp=Bdˠ¯.JN9YJ pı*n q©M#Z4LA<ڎ65*4PacUbNTuTyB.F=BSߵƑ.~[^NHdFiQ G5im,sK1mA8E
MXhveMʙ,V`C\)dS ԭ(15 t!10F)
04ɓޥ0$
&yQK=+rUuY%8'J XaH$<YnYcLGBQXˀO֪4NXfw/G>õKVRi/ 2\$8J`it8Աy*8cEyg@DշX:q皉N8FRz=+{W?\A{`^G-YxͯNuÓdW:o#m`e,,)>q\j3="w?V?gշ\]5*ɩYVbpy 1猟ৈt < ~thV$qҴY[!nF\g:TrZȠ ub*4Qt,{T1Px,(p:ЭG2tљ"8 >LH0H9ߵ~8
%s_!<190-/qbycRbQ\#߯JFNy4vorҕ!# voM>[[.mBu22ȭOmzkKAz&nK,8;Yuf!bFIAw5ؽƟ7 Ƅ/;ܠi$ޞN۾jm6[/JG叓vFH%Ǻkip\Ð}rq-dv,9h}e+VBn:qmmu--ݽdv,V%/$*1O LG,Q]&,641 6nۜNG2z] ͭjVzdFXǨ[JHʢq)M%M-s(9?ަ{Y{9 ,\nA@8=cPO /#Zժg;UyW-29?~5Ln/̺Sa+s·k bIP*8ڥP[<$[r{^kLNmjKmJ#YX~QI
#!lpy x, +I'gc&W'|aF4E3#UQ*[@I RJ6{u\Xܶ9/R"MόmQϱC3L^霫«p1IQjIte/F9X5)5SzI"F֗)Ot[cELD-rcrGLNRe1]iKw "h=T~Ԛu-B;ae= s]gXNHY^3`r͌O5nM )Kvs{L$iHT>x#W~Iexsk[2ePX'p3jW:mmC4E 1 qӚsa{BQμNO*=g)vc8M&ڣinSU{'fl’.zފT)-@"VPFAexو%%џ23G*mM#"/b`N{H {I䃒N@<#i uʨ3F~۟ڼ;I:e6=RE+HUm4hvs8'8P1)^D8*H u[``nW*}_Mu+x⻖6P1ٺi$i5<&lVkrRUe\p%NaDIO-|%;zAڡ#޵R#/D1_—EB#|Raְ}-#wD,=\Vռְꑀ;y3*%P=XeCҮ5{X-Жm
[BxQI,oAuiyS%6$6ӓڱ=tsK/9'&-e'Us1%`28<tQ^iq^_ Ӭe!Ua^yU5Է9"vׯ&Fei[\Tyr7ڮk1,Wk"6+! ,緤)KiNJ 7\zvկ1vlgjd5Jً(Ck,*Y `dz<;&Ա grO?8A<7h52Òkapsһ!J{͓ɌuYi@l@\~x̤@aֆ4#Rrb< z ġP7&ե
c'GSOedF*= j $&s1: i J%މ.s*X\b}`CgB'TՉiw5:z`NSTPŞ胵xpaߊ~cdW6}HA#szs'$JhS&J_$/H[",Hp:y@8CK_D#VK &x=Z+Ij3SI.văGYUfvZV^T9dR9N#H㽜'֚'3K[̒"88sv>i6$LfX.Ts) ԞqֽCu/Lڶo仳1Uas^!L 2**0h'lgxr)fG5Am{mj
̱es''ˤMಃ b0@j//Ug0,X1*MNXnr(XNCr21RZ4p @M#1Yg9R{u銮G1P
)B|N
tj5RpUaHpnjqBt_b.dxPmrtKsߎCȌbpiۙLjt/QRF sR`*{Sc2ΑsOJl<b]`AH&E6+?M۱ӯ5zm;G w vO޸m^ hxJ[_lR;ie\(F4 Rv֍o:Y=ţQm *^y ø&1e^}k5]J4ٜ$T)A lpG־v r6ARAs\sjI:<5НrɆQ!pBӜ溟 kvn&J$ɑO zե$7̳=lm㑘F<~6uM4{/w4"7g XnNCsyGm/7J4@>0#Wݖc@q]6mdݙ"ǫ=mBJYۉI.Pp}Q]@mY&B| uCJô-.m<lJ?vݛ`ĉ#k3ofޣ18bI-.g,1g?xwwpVgpE _NⰯ7h\"B&yt,y8tZ^ci=NNʐGBAJj"uA,gb~+ٔ[gL.lm獲 \yO# ~*-/S mi2B&Hۑ@ss~)R:q{Yb㐭"q)wW5,[Y]
D\p;ڛ=kڬldgw浠nrZMrK*~eH)'k.X7--]bFW2NMu'Fr^I [;%Vfud/0O\/8 k⋿/6&3†9'McB IFb'\('־}.C ;[x_|> t`+왿m5ԍrD%@{< c Ym]cifX5 =w.-EjKCqB·\վ]G
hL
%ӯ5BMI5$S\' EDє#kQwpdo9'+Wbv^䮏:q{4@($5bd$<ʜPV 0:vgޘ&`
za98l`W~aԎ\Pq@-֜fiM*d@_iq<jm$x$d 6SztJ<l&El'3ˢcՈMn#U¨֒@Q]),W
8f=Au)aNW}@ EP0 #Y=YJF8 ǀi伍Kʠl#P$ސA2pĜVCf?PTOzB$UQ=hr@#Rj7`NI9%
܊Vb
|S NBA J*3{PUNpf’Q0{QaDЪ|`e5V A=" 3FևoH ɢh{R3FKwSzJ=!/i
8A`MiO94 `@Q`+`tL S_r=D K6'0z6C|d⤢R8e5 Py={
FS;0M8}(yC/9i>Ӛ:9ϵ;hy 8֥(m @ȹ;fKzvoQ;LsbJNsӥ(= E!@a M<yABņ}"FřsCL8['H(VbϻM4图}饺P(*yf19yCف#h9iqV1F:s@<Ǧ(Pi9?i'#=E~:ރ 1~ qMaK@ H8?zPЀ袗榎"q֩+tDYܱUk2y`MjY<M"F}##Vͭvգe䌯^Yi%JjDŽK2,NVkY@^ֶo@CWOa +v1t mL/{=+vIN*BIeYiH\V妟Ӄӊѷ /hE \٬qmB㊽<M<⬢0?bF$I8z+"`
F^ӃҔmTqE8M'N)cHH,;cڔW3mClN ޠA$Su=Zd@rABT'h
,xdsJd.:TQfSjke!Jd8IOJuVib¶ⵆ=k\o*[1ssSRIv I"2ñK̥2rS:҆U78\ӢS!me֍Hؐ1GiEaMyڃv#,'5d$;F9+%XݓTGr2΀[\AQ+}سZW${Uy:n߀j;x)ס қ$D=D@+rk:XN1VfrH-h_lVF=6f$;X :!\Z+WhH}D~V)IRzTDVf "V.ެZ]"*(!B&OsjќO@`SnZPI?)Z*6e?Grzm1"),]W
0@1OSk<gOHǠwWU!$;ǷJ{F.f|5ZH*[{{԰كavH A!x>U+4;j#;6%GSRn," !qd@=5=E$3c=jSQ'-#䃀zx[i- c ӎ8^$ZYabF?dOI$a6YR$ '$ObM8(wx:NJN56,- HN;HORm+Y*P⢿DU3sW4&[?L@ʹ2 @-$gܝh'-t"m
&Fk6>HU2 l{̖6h=>ziK 5ՒMc*c3W4yH Us4, v?I%Z|? ޜBj6^*pT_Lx}<Q<A5=ZF:MF eXڮxC-
6z~ָo}JLWjdzoy7)&I $v+؏]<V_70!$p?~Zl+7'uNJ""yY0B䚥%dgpDx#NOUEҹ32X?җ}tLW.Rh,ʪx\T`\;\򋋦njЇNq3ַ#\G&#+@u71Ӧxcir:SH.i_6WΐM3/FAAtK+YOipY@Hxd
ѻ!ǹ+Uhvh?3Q&WEm'cSsW]WR1 ODӴѮ7gOy,wQIw}8 VզʖX3P$\'ЏT0道_Q;XKdY. Js k
Kg'$=zsRIkdIܖў0"_;qrCSpGPOZpKIon٫9Q|Ej$D1̯(O[_!V)d$86p8sYأ ݻ[`pc?zIڷW{hX-
#,z$lT r$F$̧==zH$`rs[.uínXw\J?叮p>qǾӣ.i8C 3xo.ep7"1վ* =aGXO\I=]%Hݳv\ԋiMvvLy'n:#\޺ dݭy3 >1J)=>:ƑeF1,+56[y6 h<OҰtάZVhZ^i  @A+@Op2|fA=9oCPBr*Oq.lE"o~ƹ<\M<o6엕=c~hmQ9.Ki!$kw.v^Xq]Nk'76)[҉ <>eDI-) '<q]d50ʿrkҌTU7gm*(xF)R &y}yf3\V?vd);m'ϵwPJI&5t-o-'96)%VRj4T
Q84 #q#Oo1Km v )eVbYF}'~k#|[<~8SZ3<* a>r/#5fd)) s=I )uhnfk9!X+䂻@s!ͫd𶉩*&12p89ڬkVi`ShiYWr2Haק_zmnmZ)ϻ QkBDԠ+#LK6n#IbgTs%JMNu+خ%tO\8Q|;}H"+עi3]UUX,۹n=ֻXE`*WVsJy1MtXi̒ (!ܹ~m
@àKP341lN_dž8Ey)LO;׷\9'H͐P;IjɁ$NqNp˃@6j7q(3M,Aq֚I2 bP#<M95j=cI;$2 r;S#{Q4‰0GFUXqNbsКC 9zV2%Ž:Ӌ0sSDzjES_N0) tH0|b *}$We` 6֬de :j `ǨiDqW!FTxx&',yoE-XvDj;Ax</jzV* GjÞ]ynJ::VҠ7&<ph$>a99V\$9uԤKRi@K,>V:tx ̮D{Jݗ¶ϫZxڲHP6rr2A' ;r<IxC+7=Y 3#aէY- )YIl٪ k6ٚāD;L>RWLHY
6Ǡ8?] Y0/u=?Q6%Y*:ܧNI82-4m)ў9׾+ԡXNk $2yeePӐ:gv%ԠyP\`q Q.u,/+zf1c?J0rG?]Zn yeIB6AP'C\|v CnѓRېƸ".#³h85fdu / f0(!T`gtVE4YEbw}Y> idxG 1+tAQ<}k^WH2OosFs۽T/<Sl0GXT1UgO<uzגLwM殡)EƆ2v=4;ķZ}V#9^8MXux<]6F-2r}Q`yy~%١..7;l\2enu5iYPYJPYHQԜvc:&yΐ`s{sY7-м_I`py9ȯQu}-t6--&6Í.H!2W8P <z-Ѣ
Ws>;>iӖXys2fHmweW߀8xH֞LkxM.H,$}5mC1,\̢51W<c'QK%S܌-Б~A;M*);=Y ssZMmagrvsep ۧQY}[JiwLbsay5lR(P-muҡ}&`2fއ+vbԒmrdMr`7{M}MF sRoй=XqؚxM'ѣȪη÷ŝ#[Ӹ`<bѵx/ V6jxyO 5KoAB qcҮ'p2\ p^< Ab*pcuB^֯E'B$&2X$rNrBdcMK\ڎvhQRyu{tȴխWKfV0;1gT_~JErxD#l5] XxXQs ۇbFN;fO;I `Fizt<HZT $((& !!=ݞO׏kΩ(C*s۫x¼xr^(:o-n^}*5ԏ[+"A8$~:ʂ\l1qO$R;K#]t5]̄AX3vǿsߎ.mEMIeyEOWUX)bMױG)[oqz/4tcuȪDY1S@=,10
I4#H0$ ڃ9ض3)sxo`H) H3<0~jx9谛HcjD3.I9 <{Q@d ^RO`;Th7s>b<b V`\liI9-=5 r)Jp\H L'hf3GaQ+ű * ǰ١g'6ZaeKbz 2RFi'9_sK>ڟr6] nvt'48Scl]+_ :-E-@vg8QJ倿֩8,@T:#3:,ր sR[i)@P1mM<+i=jXb"Sö,2 n("P@<b-`4(@9zNlc n(BH2G
F bR۽ Ҵ{uGtVA·z"3a|ַTIh@]>
>=N$ȋb5VH=4KrByG2WVZjI-='h4PH%CEFW!I\t6QTz9=*I
T*/LwI0Hx9g<u0*ESrPɠ$ MϿZpbc9NBE31ԚVx!#SF9?0F|g M䎴L4بBS#GZBHYT L?(>Ԛ$ojBGAA9z_|nq@4t9?ZLs@ U>sA㨠aHN8@ 4sT֚߫qHH5qHAqK&rR$ETۖ iYs^L1wQГҴ󀢴-,wܱ҉QǀS2O 3ni#5aNpkӴqϽwc‘,~TWKc*9;I۷=뢱ֶ2,tJwtvhPiYب(޵`r9XO#fe+[$cZ0[j(qYX0H8G\qV# qS* `Ԫk2ԊF2M8 Y7e4)#x'I{Rd08,ǿ7IE94UI2h b˴m}'~pozpY_!dR3  FObi8>WHӊoPzI'Z5<?.it59+b+*!
:Yc$p݅ij%!ҰNF*6`~hbuF}{i}E5z%df|b jkD@U@$y*zcAv|Lgd$)by<jMęb)rIգ>"p3lsT']G^*${*)řI2rAjUTH㰨FoOCLY}PPqDq$@#SmhƑtCtRMS("dTr"dUrU@;U8I6*`1jB_%OwrIST噐R {զg*Y`qPg]hI"b0IqB+r]DKT~i$ԑY{SH*Re,~j(!H4ȍڭ[B cE'%A5R8˩[Ԃr7+N{-c޲5faX(&HqJ/%ܮ=֦6B=(<ś9QeU5v̞]TIdW'i=OSQIP lԚZ?%KV?vP3j(l)M輫$,h8
++*м#xvӱ<ӿ_&⾻M.>}"< +I#c޸,(.H?w I'@:/VtB_ZyUEkY n68= p"[nMVTL<ϪCSGei0IΟ75I8 G$*WjdW-<Q z{mːFr򫃎Le dZ%B ua+79ɝ.H-H#o<x˲p ]#CQTq [(/, *9N1z;K{حlQTky#BJ{ ޢ[h$py_WcB-Cm[7?S^J5 :?:Uyi2(-$[I`aIcJǷoVu0e-m9Ԝ@VvPqAw6:FDaM`^y5#X\5mmn#Rb#Nr{"sp[ZܕV<{3ǶjִaM}Ě c9_ު^6B3xS?zO-J]6 Inhwq9> zVW)v޽<83ˑ'VwqYvX2aD9 FP28*FBzMDQLq.eps8OuK[) 2X u13qS]j:RrV6dCZZp1ɴp>9yB9־d4)l2DZW7
e?{:y7~ sO@' qE'8Nw22^
v Edʾb?ؤg4覒)b7),L Vνje"-Qn
X0Rt)H*O$_{qP]C=V."SURTuv#dQ[$u'!aB+}q8s{Kxf-(mSM0էG !nnQ
F'c\a0EJA=NzU H}CEubl_S01?'_͘Nڑaqzuz-חqZ}-G"5^s֩5Γ|?
ۡR3TdPޫ<+*gr|GAeEj}=6iD/m3Nd.@ys鈃ݾErM%<$ӹHř\~*э®-NV^>3FZ./Q,s qOHPO=ߊGun{Wks{##vBӶ8KHR%.=\{bk^q/DQϾpZMt"t}6[ O7 d*IbNzv Q$RNN AȪ0_Kڋ*\d%7 t=^[ m&KvhW<}q4k$e|t=B?+2v $a_H), Liھ^2v 'ҽZ:ǁt3KEdO%j-8Һ:ہ0HT{;XRn`1jS.Eq1` Su$BOv[Ӣ{z--ʜ\g=.J+H>w+27kYLl?޼Ȁrŏs"gV7& 8fw9= (%P'oMtn5YnCEn:d?z֚mKQ,*OR?jFy?k汫8 x"Inu2wS5eH0$?E1Tǯj,JjV15)p>) AHc-sҥ暱rj)Zmr͓ޚHBj'l7wҐInmȤ$N>0V8=鍀&-ji!'7E Ҋd))ЊjcjCdT0K GaSC!P9cA9Vɍ[O-.$ ( /l:C86pۭ&I${Ԣлc`el'~*OH=M$p",߽m(U$Ⳕ aX4U39;ոEɖ#?ީy*BA c:aEgM*C/ͳ6{tUqpFMzW Wb!.,I&m626G>As8<crpu?J-byQm2On3?.aTFVbUj6:;$QHY}{Nq W5t˴!2 =DI%A黜[ho4֦8di &8wxL|tڛKK[.W!G @ x {;pj͊gmjrtO䲖fcGkѼeiKǦKaD!ǒyC:$lDb<Td>kKfbJdB[5Ilx-di zngo!y!ٽD`'ڻ}&;17K_{9Hn'ӕM(lP㏧z5- ,+:MvxZ]7>b:pk%+[\,Km{ds7u9;k&6nDD1y8z/Ϩ]̞_HCoYXq\Mk qGҸmĐ'5(8%[<$֏^}K("Oxb9Ť(v #WL4[_ *49 ck?z5,y1Ǩ ;$񷆵#-Ee&kdBTѣ9>8bi2.Kv^ث \<玛I lӫfc$ۏ?zв. ]^[
$a`3+{)FKNNcVg=2O{ rj 5\H` -eֽ}C÷M0is'r
1kY-ü 8<׳VerRD` `Ҷ>WG%ͩq
BsPYgIIڨMzOfO\*ḅ ԅ<:q-|B=Oi9Z2~BK嘚W-=3Nz8Em;f6`ǷsJ8kTrK$mOItiK~NFUnx֬k&N:m7$&fP'ckFm-fhXosV-8l!Q`{^OC]3sɦuxwU:^ x\;c֟P-kdC9-#^QjWzp\Jac_eQ>Ԝ/^٣IZEff%9'{P#LA[zWC; 1=^k*1n$^4i<-Hc/WD„*79<ӚLG+RG۸rE&v&GiB jf 999 ґB0E4f!AzSgޢ:PI94VcM=y<͞Ҡ$NlW]L H2frI9PG-Wtf P8<c<R>H g5u&0$1t@#.BcQx =M+UWQE*A&-®ĉ@rXH1OЭ$9<Pq=)3>abym#4cr @QJ?O4:a>҈ [Po,l6`CL֣SD0$chWj1ޝ<hvdLU pZ[€J& .Oڔ } E8O zyTLT #JCzUY^rji@桂]0Y3j2 ޒ[  RЙ]Q<at&$
g=AZ:n/K"5lZ_mF ?W.aG>2MT$ǵk_fوVg WKVEh؇`jN99RG=EXm~ _kVy]âLs؊Ieo#ҟ)9= 31\~TmbtHUoKhB2As|2r=@:ea!=Sl wBu#Dq?zbn2A  r1HځSۧz|(ɠXՃdC
2?:"`2go|S%:槲&Sc+*v'aMfy̑xlr;RX5%`:%ʏP{UKɁ7Jgs'l'#@@@C}z4{iCx1GLBH
K.qaN[hyFNYYDbՑ4 53d8㠨؏0naQ;RȤ彅B4 I'g̀(U-~sNV*3&3BܡH99
.܀*;Y?Ҕ9O&
Ny9'QzaӡRMpiF*\x) ;Ԁg/EyEO+x mlrJٳ8^-?J.}+vNJǂ,k +iR@5af f'Pqt~ t(vdl1tX=RN
:`嵠qg<Qfu%GҶ-GVhpjpssfEx*O|bXdhGS*NX*@Y9Yi
ӕq4 g5c# i2`@ފ$^0*c)E9oz+$8$(*-jwYRXjGBVr a*O[E)gSXL{T6"F`dI#9*Ƣ7aG:ɀs,үJدdJ /(K?w›{rF"C~ ir.UT*O#XpG=id}Icdɸ}qZfI|!*z d/OՉ08k:y''?jƽT<:
[HTFO]8U{uUerF0(KgI*핚"n||K<m0;Wu%hF2j'U[yM"[?JiQ\f,?֬ sR$M2`TQģE
y$+V,Zc"cI"$PpO4[-*#ps%P+0,2[i7B_L?jI2a"li 'rxhljGKbn[}VEX j8=py".DJ^ )sӦ&y )5 8,jA4bBBBtaʇIxLYVP*URwY~IMje"P!vOɫ2 Ip&V0KK+ r*lÌhl7 Rk7~b׺:}V=G'߁Ѓ^s9%/Fo$@>TgN'"{QYɽ#j\Y|GTZS{~~ P;iǁVJ6tT'#Жڜݽڍ69or57^{ 8%A4-|Ff{VdV7"yq\vM~бv.+gl)ۻܞIMQo%!RI >~j-qE ڥJ=A~kEq▇nфX^'& 90"O\ْ9abupެh: w!J7=ַo&@Q  Sq}2P˭)m~̆ m`qQ3GQ(gI(A*A)ڀ2sgɾKA v: 'ZڜxFhfb޳Z^xZD7ќ;qY4ͱI?60y [ p0Fөj+}*:S79n[uވwװGuncfi
A棚$ "9Œ%.Jk\]7yU a8B9@-,Hg%`rzw<t˳$IVuӏm(y-#mbEe`l08mn4.``` ؞%$hwǞ7y,ؒG")H)VX6R=n>J7u=;]t!.#t]캺h$A{ܘ?jhU\ x~m<Ca^ᛸl]Hsbi##A[>$@zp>XV>d8+T{Ґ7 Mܤ;\vv0FIp%UF%o,L`r}t{y/^(/yI_0H@u
8Rks s\ŵ͠KYZ5ʗhug;bƙC8f+UeH*v EfѪJWlsf,9qKeӴV0$,Ռux+Vt+tԗ[k_ϖƒ'9ףQlmml@v#<ҊTĹIaЬ=@73SbfG`y5vھ,i+HPp?tOU9 aV*Yw ]$֐ KM6x}nm>V2^jU6 ݽu&E!w"JVx?sis.evп RnkHy*z54w$3, )rp>՘cxⓇgխ.I%a_ ßsK{1Fp3(N{gꬣP?dmI{Ee(ˑ?SS~BFy7BE gepsN~P9ẩ<lҒssiފM%@P (/i/R~ګ;A)N?돷JjЛr{dl%Lz
Ko5}&٠plᕄ/|{[~֗Wnf-rcd]Ty_[ N˔gUƔ͘:CAI
ydtO'{?j;p>5?SԵ4x-,H }@N_8m+_E+)&V`*O|7_?!\iEq_ݽġ(?|y]@<|l S^S̽~5]&g!fB+/C2%;7|WI68Y[q1DBmJJq8*NQ(e Tq:rOҏ5ܓqU_myIrs]#?FЀl01ɠtǮ)rڐ A=4([ )zILdSa`98/0-%Elg⫳1V.7#MjKdBN(ݎO_jj 3ivH>ݨ1$j2R6N2GQUbXcjҡF}L>"aT8b/&2kE-$+rԛl%Ve2>Ӯl wVhYtw>lRVm$!Ia=*O?JCI+_HX2(QWV0*+$I\/<w6py҈\m^PqO=Y_zf"wHumm8tUfYlyVئ 8,hiH{H`vuL Q?,ʩX@)z yZ%j<2Q=~in\VMISc\R$a:"kED.*\ (]Ǡr{OZBmx:4:ZA EMNmI'Q4ɶ,|c%ޗgns-Ġ`3*xBbMa[׈/mt-n% 3cn&Iٰ %mϖ |@F.65@n![3j;t5:JU亞Y&~\A] IfyxWQN[gH&({rlJc?9{XzP4j]\!aTN9~MzZO;hQdnZ̒@>0;RKɴ-:U0ٔ~k']"pF=迉^m !nW9>WTA@?Y%vgֳ3'w.Nzul皣n-./%kTՇWfjڙ(w `1jZMKTI]&#k};SGCS|?yi>tP;
3"G8]pVh5.I '%H8p{zB1K!mS<7MJHX&VdXe[8lv=%խURݽ<rSpqIG}ۻS[{DXte0If8S檚ڔ B%ڶ.óS4ҢK"}@oka8@ j?<MtҌlxOeSբh"!d0. ,:kk].Lcjă9# M#5 *9Oc c?jaH1M#r  })zN3ހ9vpY!NۛWTݏNvugX $?Q +q@R[M'hSW8>FG|e0I`iE֤TĂ8WeaWcj'27_Z
P`
L^/89g4/`:)<1rFs!a)a (]fb8F@cciPެ)T:ݕY41 ,yAc,x}`E2,d{
YʡUAzH S'$=]['x4nޤ2nQdg[4b@+=gUhي@:Rnp?8 B회1;SHoA<qJBH @P3P>M,0Ab QI, aQVvڣCN(GW^) B SK)n)⁰,FN:Q杈xGZh1ڜ8 WqɠN> cR)9='9>&#ޤCLH0G4yULbYغ@*Ym (8fMHǽ!IEqq#mLmr>?ĀO_z)cRE2sXV&Fu;P
z9'+;+08"_J$ܑUʁ6j{*+aOҫr NQơB8*=)< K$)%@[J{5 RҶrjH8I'E ,g%$5K;D#G sK#qԅ1>i4k䀪qRϪ`
:qgWbUe+*#,GJ֖ UOM+IWRIڤ g@Yy1S@ BQ[tCe&L yW<x8'1O<$'U\JJO5AEQIo !GBjķc*uPRK$;{S ZSqlʹ1ZiSjapE&; S ( N椼EiE]!BKcݶdbXVĐ)F86jg3UP+FY{(m^Et 0Y3w8HTc$9ʩ#CbPU6>h@e85v =#St UQ,3Б֚v2ޟq2@=Eg]Ġ2^ ~h0b;{J[,Bs9Lm̧۽0:;},zQv\c g1$Tf$d=@+H8 j8<u<ye
}j&< )i`g8)jF4( sq3M@ ~Rq"pzd@{Fy8)'PO>)z\Ҁ)w6g9 =I8R=].ֵXtvrL((eYi`m$coY؅*@~ P~(p2s#fU`
 HqV#6Q#H9<➫Q֟5iAR(#
U:St)!UI)тNɤs#|T
 # ޛvgi*clh]@w$jvѿLe;{
&BNU+H>~;U"1!܁<*x]Q$`gz`NGz+ `{ȸŒ5 _E&9|d*b,1,d&no$3cj+'8.Kg#ZӎӅ i&T= Z@g;
sZLI^wvr@pqޫIfyq=C<OAYww;*m"eI-15yz),&ure8@ Tc;FIvl=!_C9i!n4JZF4۶YPq+IfH•fN2sV%3of\!A9SL.ͺF;O<S$.;=fډMJ[I?҈QTm̾IJT6KĞ۴1 S+@GSU.0;AW.M*l9VXg$g۵[so3&-~%
1HRl\zOSQ[M z
'x˷OZQMtr]J8#(ES["fk  lS=A16HN1٥|D X 皥%̏ϽW3 ^[[3sIFY.pU)$u\czNXv\\[UEY('8MJJpR$M< <DA$s>΃%[ܤGSW83xk׆=jP9T1O< g c&~+McrGxF[O $z1Qus#3Iy?-v_W{q);q*p>|X1]:m˖;ABgf[躭<lNY'㓞GrtU~}dYq੓H>`5<BgLE3_[3I1ڨNsktml`"-{(`0(8‘y憢H(ٝx}MKTT-'q$XZ:|kcj-ͻFxX U[Fz4^ku;Fۅ+ʆՔU{rQmv#£ `'N7`Ҵىi-CF-yV,H>a\Ҭx2:aHZxWVvfBT@z+6(
&b9~~{:)A]ebΑ<ȷVϹFqӡq{֛m [4dG;\@
ޛ].{+,#?l$@:&ˍɽ(,[LL!] cpEJ<E&IaV0I']iWk@r 䑑Ojom%bL{H<I$N:{m`[DFD!rpi;ktv+1',~YB*l\t~f3ҵXs4&r7eEwt:~yӀ
Z FҐ1<:̘d?9Hd'oq'I_+w>!F+vKa-zoEIgZUWp;scU-"xg\+U
5xZ+w|Y%J+~}U;lWrVy\]$a!u4j2Q19Rq5[͋S\G_CFKnd:}[<~$EU "B;m=W+°^ǡgmĎ?z\~(O`;Z.R
Jz֗O48'??f W>nar^֓T%D$Gߊ<,7 owc1 c~湟 2Mu6;PO$$oWukA$w 2E=j"]{l]8&c^)LZ(dUlsdul˭JRlQ^;KZkh@1w UpwxVlj*9=78ǰ1~oi#7Qt~jდr۳Gb;($A(Rܯӯ[Ciyy Xom "lgY]V"]ڬ2s-n#>[PR^FdfPy=H; IYrwH8o&}<r:g<~ӵd!|R2BM r^ {sLhh4xy ^]X0ueERռ_s5ζI!s08sXVs]:i qO~[a#%#lw#j7'I[5Y8$#EfWI)˰ vO'@wwaeY ="ɯSӢd*Y1f<)ʀ5݇Ť8<-NMR#b
2yc)=*74<HRHnܓJW
gڡf*cڥI+qzUe6BcMVri<oz4M"H'K*$qCLH)%$p$;A*}2]H 1Ѐ I;wD'A9<J~MDX
i],*GB Ojfm;?Vowl(='**0q>JN*F H~0@7a:
˓6ਭhx_%'h[[={rLH'8]%DRF;I#EW-'L)E<RCd*1n!lv ۰f;K灊df@OA*c[U+ J{Kk)3$qJwLܯٕԴZN!MobG 1;Vdn’K2p=SmA#Q8ɬٵ6Ldֳy_%#Y,E\qdCqc5 J-ʭ U9>*2NR{
r!q<pZn3Ny(Q?͚PA24mʭ_ ­\NW9W9\yIڹ %t9 IIT5 RCl!aow/v9s(R}Г-=Rn0,8!
(1x/$ݞ8"-tZkIe> 6NIf鶆 Ip-QV+XӒXSWO
G|QfpOlH"5-ϩSRncQ&..' "@p1PX%ҖN+(2O?_GxF}#F> #
6^~Ž;WqY4xWL\#9 u&cV\c'n_VN21M*TU["x÷k"AZHfBDYO>jp*s1<dtlҢ8B]B&JFw98EG% x湨C!eMFebz{y?A\:9iXؕfcR1U.6\䳖2sMb<>Z(#$v*11=2|Ggi!t<:՝.{KchS* BLQH=f9#XQU^Pc?K-G[V[an
z`N^+a
?m3Iҭ]Ug(ë; > ZɑE<ph|݉b@T*ÂcjYd2,ijܓQ1@xB0I%NNp' $S7csV@ (lЌTiY=ޞ(C{I uTEir@3Hy8;Аib 9/)7'8iN98=zg'$Hd9<曷#Nh ?4n4H:Sepɨ*v_31-8=*(,ňdޘHTqVH<' ;r5=)f#waګNj)ddY7q֛ ol/|R;{P"U`JfV$jpjR> wz9GKU*w0f s@PBy8jBCsҋ
zRG)qҀ\⌌sH@aH3y&Ih#w$f804)9t=ҲXǽXH`v\튊&mTd¦dH|JB%K49uRPwF6M>O[H^9K0(VR2GAPȌJ#CΎ
pH,;Qƙh-3<5VHdܮGc,%,W'' S9lgZ:tC4wH]Y @>íK H64l'=,(CQ>^ћ*0G\,@n 1r&|_Ӊay,O OJT];i5Mj(YK$ ~4IC9
l@7/j,JNcWY"ܐXstr ZYQO
se5˰\wKtH\hNpG(⹻sBw|wkgУG")%apƈBF"q]1p}#OAiu0 Gozѿmy@eֹQa@e=*3 5b8F$<.I9
_lq;>Q >ա$2;Sm!PĈ`ڛqq4Ali$zL2$9 3v3JRGh%kjLq@PŤK8byHXV'ޝ* ӭ( ϸea0*-nEM<XHNg$C!+;Li&kOH3D\׉-FP:b MbFTB
[Y. q l,C |1ҬO1
/gDoUeV/8EEnQM%AvdI + M.OaQIV!-yԲK#>rO|e&aR;g Ǔ98cQ`CD
0$x1vsIh$c HȤ)8iSMZOii!дc2Z`<Rn*X+ZIN]իc,Y
0=NR
9cRO,B!HC*qt擑DQqV#>"F{ԡpEe)犙M)o֗>fݔ ^zT()!<*v/
f ɨnsZl>zUcFf98HFOsU!̤)Sz h&rߦH*| g['济5vC$'hϽ'ET/|.6\kGnrWGzrGP-V+zgiݜ޲s])6>x=OP2Q]< ڬ~VXI&i* 1튵kOrpv0Ĉ\sIJ:fa~3V#*6{V–dj߻S/&?& #{b)sڵIElͷ7ؕ
KT29+T "CeRn]^ՓѢ¨΂ xmpOaUmWɖUa,P
JnTc%{TW'5`41ϵFJvy*$_Q1,
;$-%Py\("KtP3&*{c-LP1Z:^Ku
:Ҷ
Vzʻf`r3ҊzZ]HDcDs(-EojARhvUkN
:AFijyoVckhoddy({[."_d)Zs1bW4nBG/)Mڡ/u#UfRm(KS{U4ۉ
IWFTn*ڳ:Bvj-$O^:TG#Qx-cdPbϪS뎦e%F:q[Ȟq@QlnŤRV>\Cq9^oŜykgsbďnQЎHhU$Sn>v|uU[+s4͆_5\i̹դPDbAq\ķM#)\LNz^M6eы@f7
G9cYݭK0vz(,OcSW
X?QCIv_ⲷ69 6 Ep?殏H-@?*HP9 y\Ek+ k|v=78Sg X˹V)"XpWj\SEE:Zrdkk)v,HW kmfK)oE
h`ExI$ucu%ļ܃nk·o )Ք
#CXzn˸9Tvqkx$;oUuba?J`1s"8 <J7HQl6nO4ngԁq nRFAw9jq@b[\8OqeًE-UpN=y*l$RLorH׆fVF_,Z,o08$9@{U$msk/NEą y*ysX?E(Mu.g8X?zl%ZXJlu9t-\XK1g$cx+]2c\7-gi6es)12kkx.{um([8?}f)!{=CXm+!a5)YbAIU6j1(HEy%4S͸;xPw& X^
B9=G߁qpԷ3]]Isy<\JwI4g>ǓMhYMz3pۖàS@"bp8?K㲚cB.>@I8=d8=Cijet]bwe<W¤z=|K<3Jsb{`W αYe?Lá8`f<N$vj3[3}"{h%!/
Ԗ`хCݩWu:tEHHپ{3 Qbk5)'*~W}$l :$VsyR@_g^ԩ<XCuZcp<OzYoX%KoilWv(r׈7"dGr(6䒳(0 Fn-[(xfbT)wv\z5aDwFWg^0tqj#W "hmơkoHFy;-umѪI$ك or~fw@!ub#;/֦灥%b598;NO<jc/cʨӹqTɦZ%t Rd)*WS08#$)`Ny?WUo>-m-qp $.qKѬBeAun"HdsSꨧ'ml};s:OnkzҤo#V]z*HkSe=#FzgQC+ z*2Mjk L2d+ʲ~k?q<8$~Zkm$V FG_R&ߨmZŴ֗7Td k-ά vCm-#?JsLѢiaI[-#6nܚ쇍)~9F?۷#F`X|V A9<V<DE-ʈf(G$)<[bީ9~JYkTɻ%` -PJvIόH(Yd,OiID@(aW6‡ N%TܷGʜ~:oP-
NY2FG!
Xc$tD 4F6:rw('5dBU9"xH 1i6@bF@9OHӐN#rBXO`*ռ/rszQB'*|6&SEؙ`)'cb%N꼒N=\bB0VpAWR9 M2 )nƨܐzIfIstereY OnBG i9&@dZ]Y*BR0 9sگƌJD2 '">Ŝ)LUiF@a@]F78/̤3u#rn;DB55ub{R6?j$u;r1a4oOSPVaO#<c,~?JXm''ʷd=[J?aZs ^II.%قwҷ 6/g`pacdr#$-?]s腆"(i 䜱sɯ?>NnÎ}smeĥm"K{hhdUQ2kK<Ԁ+ĨW QZv=z$hIe8q'$y`IhTJx?j7#EKQc[nͷVsz9u~>}LJ<+>(EC 8O3`OZ,ui$"r<޺]>ƞ+Hע<, F=%}Tf.1{]m{koxVG"Fgfԩ >#)NNsmZ}D *yzߎf?H˲Htj1˳Ns{W,x4]%&٩^FBrs_6C.˪ꩦ0h4sǸ856_RMG)3vjtf,ʫn{+b3Þ
ӵB%.ߖ 3
.<7Os+pwqϤI8.S+.'UDFV03.79u^&Mj”fp7ߵr(%H@t }N)& ^oT+N~½WyAi]Vc~FJē w}~9c?gMmzB(9cH[Z飜W>E# bLt<a'F8},0G4 ?zn8ɤOڀ
Ri׽&xM=9'(2}á@'=~9(C}RIqC ji8Oցݓɦ QL'$҃h,~K$6;'4BLҡ38^=BW~٤g<Pܸv
3Uz>1$!LHt.A\(u5BIS1$=@lpO2=7=hF|)O4h8 NAiI#@Y+7P:S#9N~1ޗ#S
:8$ fu$AJ|lIaz
c0'9B0x5,[Tlҗ zQb&bTaI0$J=(+9S1WdO2Cx=hmVQڪNBt"`KP$4'敶ʏދ
#eeFYzVȦMM*X2Ǹch5[q{ż6Kqݔwdݰz
飊`qW"U1ۀ!Jwz5JtS:j0o1;҆sN=ibSFwTY2})=oRK{{֙qV vL!RI6DF=Wڳ#ھZeU ǁtT^ OiM?i1pƍ+OqM?J&֎2Բ.Kwoj3n,l`EÌkE$BND!`B[=*;TJꅔ ¥U
PXYN;dQ#mՒ>)0Y6\DUcL/|SeQ"V1 wsC>FUpqV3j/}r)X5I{vlL.I6\fȦm}QOsYSoMBHՙ
ٲ@ pk*,W%1ݻϸ%m0c6X5i4uD"c ~޹{ 6vw=Ŵ)_KӞEQXU,0@䎦&5KITaާo )"r
p aI#=V$ $)ՋZteM26d21#õge])ZvWV(HOBzv :ZZ u "f튠9~i<j=4sJ9fr)R&3OfA1Պ~ԙ%:}hJ0zґ'aU$r
7CZv;I(ćh!rG5!p=&(iSTjp\ v@^&ΤUȥۅ4@<@
1w
r{b99'ڠy? jz%,TeNJFےHj4 )ޭG-yCޜU -C"őSbNTJ6&ɧ`x8#UI$f$M M0ndHX[#}ZNhzgf2 0sR%[3#IB, j*›qT.n7jx+ncO.LiP~R1zhrIEh@X(Rt2ڟ5պ b#sYϐ0AW':DrJtdV[[pz\餍BN5yV wffq{gH
+H9I$2H{Sc' 1ڛt#SKӞˌucZ1vߘXڨ@ԑ$`{$IIiIu5acZ3UFrYHyQ[J%3㡪>TGozwpelS)nKLޓ ӵM7B6Ԝը삱rKc*Dʱ %XQEtvr(UܫHd4Jtp݅I!>{yj:gUȤtC\R=*S2oxy4Or@ v|UOEZM`/\ɩQ-4<d9Qv%ʠrz%["cp*X&]C1O>‚``Ӥjy#d5`<y wk Pg$=?JQhnp$8=9oHuK]5K~I'gcoԊu5=&YC2,X18&}P8%VH2K0O~MkmF@3*%&n4ڭ-_$Cwn'{
MRq"ܩx0u
{=zȶ,ˍ&8E1yEGP{m3)(AP40#5
7rIl&u
=)ԴIOG%5+[W?*cӯgֿ' {Xlq gX'3JĐ<PTRruMF>sמJ<M4:kB9V `rXwc¯RkԺx}Vvth`ɓpI ƥ]{-A9&oN `dP>XV>sjdeyRV920Ny cO n@ 5U]H2HLsPӒ|\ZM(f +%v"tHĉ%|ીq c`yR@Q}572ӎW<tn[^%M2V; ZO8BFeGX@.n@Es!OCmn=^+iǞ%tع,FWnæ?+S  *Xj.yƶHZ2Pru{WibV$Ssx&T'W“&йJl+" G0+1G ?swصK͜Jb \_ʸMIWQGpO~N9e8,y8l)"a)U]Ou2u<L`AqҖ+G's2>S$oγNfvH!q9I-՛=hbB,q
OPFZLRIEVXU zSRsUⰚ;ЌqrTʩNK,(F$FH6Ɵ@8'洴PʈC;!&n%5vjqA<vS![61<4Ue,o0U.%sX- >cAcǻgZ6kkʱj`r\#*cӓQ$ҿM4'%֢im4Ko!szG;?`3[ڜכoʲp2 <Ei YVRXJ"AU6Zm݈A"'ne[dV+S2܌*&Dhލ]r iATÃka`,.n QᏆnAץ5Ό]ًY\<2.
?fRT[Nnm.# +cR~OXLa+6s(~~3ԧrC[`xP04eZgE{^yY=<Es,C$pϽvW<@p^0qןq@:aqfrǬ1 ZoMma]}X7##5Tgz8%7~y+#D&luI۹Trq'@K{]@4rFI;VV~qm>U<ڱ'?w+CK,G2;YZ2ܱd~@8泚FVu4о~C-fXӺ0J}eō)m x$Qx rkWwy4A͐'m Ժ&}k> i80zzY[[\jWܑ9 {~kW@Ƨ.Rф2zC0|pZB@
n~k+dT5aBdžy96eQ\("̻'s]t*™Tt,d`sIFkKWj(cUrO,{;٫'Il=?n4&Af%V c'2^w"BGN+.w,H {ӌh=djlAUp1f>'#jN1T* ޜ7c>Y|p FRy'=v8> 1P
3C1eƉKu ~kd`y*;"h9K^X"屓D!Փ )N $F Ns4'PWږVURКdmPaUՌ8a@S)K&#>@aAV:
K1g#YlڒNE6mYd{%5 5X~OjG_sZ(ћ,IIb=]ujsj2Z@M,#4 ͏z1$*BCڥ/NN{b'MZ
$ӴZ=o0dv^J7V9&eHLܒ,y#MDx4p9MgsMby=2Fr8 3"'rqbF>ҽۨ\
Բ\G)n'mO KtRg.%2L 돓o[KYO - 1H+6N*чkɠДmf25Ԫ˵r$Z*Ҳ]h59<1v<{tExnk/ƅ3ǰۙkq,+zczflJ2.`K`,'A\鑠-w!eQN2t韥mu-ht<.7O5?,|!|.Ek̸'it2m/Mx3Zxf7.b?tC$
.JѺmZvicj !@ (\<?5fN! s,ĜrrzfJ1K`ߡ?TWS%$QYbq^W$"s1n HPr܌ <t=KE/kKS][g.{V!JeK#CeY@tEqNz,^7 dyJpHc– 𥮑jDq/_6sIkԮ߶Z[:ZSB,tfFX[cj<hԭgҮ=.zc}@ <ᶞܜ(gx'Lj6WdL\EX<`A) jPV|!f1 I;}'tX4kG pv nC:{Ofu&8E讇;FT0q=oG[+w@O$}}>o'"iv_f=zs4b ޓy`ylt}ޚN&<rzivޔ7JMj24) =D_<{vO#IuT8 !mLff:Nih$4сސ?֌9@8i gLi`;3p*9Rdc f#
x{OS.{Jc#g ~ ;&2sgzdjCp :S!$A89=u簠}QM4w"l0ZVzLry,M{g5<!7ԙ5=Ojj$lFmIP֓  9)Hp:RAu $C 52nOAH[jh>z;>WjڒƱ9I#ړž*I-줇6睾]A'iʯ"T8P?9V #ZXd3~显O>0=>C0sWcĖ9 8<H5)럊[TKGeM,Cey\4 9#4wQ_ZC#BF&gyk5J
줺BַӚT CO4e 5-OkhQ1>a~e)#;iȧri:cpL-iLO5zo:l-;֪vpX~j~F@8j.oV'q5J-΢PĶ=`^Rߨ+5-P`ը*&M,r~i)Gܧ 9Ub*<Sm-BTv&N0I5aN7ST$v4!h1&[<HC8݅=t˒ƧѮdk X@&y$jIPGW[kZ@jČ*
=po2J1UE:}0;hxKIzVeHI*Խdh$LrpX2
kr쳨
XR3Pp;`2, qWZ@79!{*(eF:ӁL<
ByqwLҖElȡسdjkOB P<Ҷ?=iqrSGb~M(R1K&p?z4c 6kF;>աi08$Զ'ljxPVb:c|8~*;󞔬0p
t3cK,!q!B;<MګI*؛H',p?ȼF9= Wf, 1ۈ$i.Ę
)=1\iS+J(U'{Sol۲rF*6FI5$HKm*#,ODmf*l-'^zUVfCנBZ4ؐ9𣢎*cje }GڧM
SQGe[eHMIiew+dY
(<}Hy= ޭ! 0b}' yu%Asa%[S=Q~DXKyؚ"T*ܓ0,rW4ŵ2O=Hͫ5 I$OUbR>VOr-%fM6 k JڮN >ȭ|P{sQKtVL!=ְsFтUfQmERq
ϻ$,[hsK*a8dFO5[fƥ([2՘3Jkh?S5!lęBji5b/;c5`d
’Y|j㇖ٜ%m,D=SV=cYK4-z4"YH8Tq`6%Ѩ
x2[ݸc uC?YI 5noJQ[$m,3$uI+>Ix9QUeC;8Y> $'}G{@ą w#ym4p (P:}HKĿ^lY;(?EV9Ϩ{0ȧ,(BSgUqoknws:jb` 䓐>A߉Zv.ѣ/$ Hz-$=sּ+|;1wkQ<pV1(%kk)'Q~^Ie'y?~?9uUzƽ릞$HX/}˟᫨;gp/͖Uħ
OTA€z<W_iGly 
9neM%ks&k6Qn z`T7'}#?ÚG4mzdXYW,p9޵;{ؖDc '`FX3_;KIlV$`3c j}nfRffiǰZI4ޕ?mڶ 8 $#tbw/r'q߽xޣ_*@qb=|`|1$MN#AT p~گE~ bm_G(YT)7cŐ "#C]wwTy *28r7Uy[?B=?zf0Ɖ P?',ORF}S?+'㳸3#Ӵ`;n[nq^=`jxXHTp'(<qiE;#$ա
pG 2?EEEQK‚1<Im%
zx'梕lf] i U$r=S0SA`m/DY5 W".T$cY5i2Yʦ^K>GQR"ieT:^9S;s,v*$JRAeR:dqH82Yn`'B$flߩk|H(6i$C,9늫nvZ﷽UD?*Ap8O5r7bk֫;n
U1
>dD /??ޙ \\Y](YmswS~1ÊV&ݴ8T7kkr^@Usfd1 7 *y>*5 %S&2qjKS6^*zFJ<G
_ EPNMw4R;}C!?ڬ RIKyP!cÌ<+P24I)ٛ&_ 3GU+Lԥx`2v8Tw,I43ElW"g6OSY%}Ur~k?T֯5vJsObGV?$]34>0vkWFV3?k_u L ng2,c^Tp1UtsIݞG#ғvkLM.x, lI68gw`70*|Pqqb+<[hzz hѰFs 4[mVXAiF[ <
Ŧӥgi}Ac{m!G@f1iC{sǽr2jsO Gc!bVN3v@>PSqg"Dp HU'i fI2F1H:z-I/".*O3OlW@f<<$if '!S!Sw
[mfbmYTb<{}<'1J04O'2q&,b m;@gi8at<+~?j9/ jj{&:u om#k%T0A8*zzZ)мIwl,'V|?qy+|I3@ <|
h;}@'SmAm%l-XזWR 2pgzqڢak}WWbFbܨqcltteI*av^D!,|1{<¿R51 2,9dz6i R?Mҵ&g\|)h/:<U3xX# NYrT]RBnsP<1DyDd.jGYÜdgMtE3m!ד3eGGAU0I8Hj'n0:}z֩Qv+G''K#( waZG2NA9O¨8隈9z}1p zoA
r@+Ng'$“зAUp7
sԞOC>vs;H ,&s=}@w{Ә<䟊a<qXة{CbCŘ1֒RGUrϷ;In0p{_3pMAr@SPr<ME0&brjU2
d'SXR""O_jt!0lp sGqL@ 9ZteT= Ye] (=OT PH*ķRzRE;1DvO`N{fU $ұ<IrǥSbdSKgXF@LBsn9*́HH 06l䓃rj6$:Vn^!+~? 7}e%*1ri"fcg Vn.%!&=p*9,{UY-54W3ɩZhY8Q`(S
mK5ɖ[Eg#$m sT !Ys>o W:Laz/$ܝjKn-]nC(! 9'ߎvFfbHec d3վ-rB@PcvQe F9'YwضI Aj$QGE2q<q,jRmoEk\ hlp}!^\xI3xoJ(ms=2O g${W 2k> (`֧}LY>#…\Zº<=ciK8«$k'SN޽z*cINzӚCᛌ)ߧ4`ZBX9Ͻodom<'{-|.ːH|.mk,<ż+[<ἓ!,8QHko{oi]Zi/hd ;6A9y-EӼ˧mE y8j>ON4W캣?G2Jћ 0$[h ̠|T+/se<u2ywOTNcj$VrLffy+K[#(fPB`qe[v<"iIX<l#LIƳ]b2I$?15 ӵ⵶11UPX (zu_D.=-nTJL]?HM:|[̷CQHa\<v8 #ff2KcI= {xaE$rMVإ4 y4}RE=O<b6F48ȨzP XyHɤ8S!#J4Aݎs@c@4Ȧ;k Ňiy)IqK?X^c5<@$?q4M#>-m go/$`#)'sARWZl'c8)qcJC ҃?z$tJN9Jy=P͞q@ӱZbթņ9<O֐0<cAҐpIV#! <R3v
2H)=Q =hv7sC1?4ax4)n)x!hSOP()M9VR0*x-ʑOjMtBI ژ<5kP#߹ϵ%Q9v4KA@d"7浴4edWT5J^=j9l+W͖53j 5u*-$7wUX$JY9iђ˖ۥ9mp >:
k
(mX M7_Z[x]"aҩShI0EvޛpH'S!@9ϰ8 PWU;,xJ贛 #[M$8ܢ&/U 2Ugol<~i
8[Dz8ǽ#Qګw9si n&QxS2&H,xuX{."d#%Egjx"%u4Ҳ^ESOfjp¹ɵeӭS33p_ 6] dTY#$ilII$NrPm8}1N4EjiVK"iݡ,eѫ^J?Y= qOf9㚇&ĢԜ wTd!jɓz%G@i-:g&u<e>\jwR6U$o4VzGe,*(湷[Z\҂#3CNŲ0&oRojjXؚ֘q5Hdo-f^tNPjf5uddRP}d1_Ʈ#")<j2)C0)n9xq)jXNQId`uIa4JE UդN֠HsA-EHYюWff='L j&ȻI~ :(*hKpkFbNhϊًٵgژ"g&M3UIqږ| lz$_ / M.VLim%+(,x)՟H00T}i'`zu'zV0 n'$\r9 sKDSc-SWlҴ*Xm݀f/j@?T9+--@B͂;̪0{֔V˱ݚT(O RШX݆[ӈsV.@X9||U%,>#sQc܊[9U,z)4tuE"O:j/UUr15FM>ZϏ'oKM$ێSުK=L5@Qy=g’I۞Ztv[Rm" esޥ XEw4!OLJj7R0R<f93[CR5^TN!N{jSJ6tÑ-Ȍ/u PsVyjBAt&h '6NOU%a$o}&0 (7$4(pR;i^#;SLϒTnڭc̞_LFsPؐڢkn+I(%ZF eoت+ 9& 2犥") 5? PrM)Kƣ܎z[VGyȧ
{
adDaҵ-RKq+NOrj.Zi%a֡[( 1pE_Ya.2;.tvnO0;# I:9٪1r~s\N='FhfRc21wdw⼳zԆ-=d@X62{p:gR|BHkmFbaоGlt%$oIvz.]N8ia&+u^>^+w6)VdRߗgH9C +2]<ȁlU@T0R&Y]RTUUWGA\dqJ1⑈ǵt%FG)gCiaSL H|d|RODE4*L#<Y%˸U'+ʵѴWS[kW;Cޭ?Jdcץqy)E#ǹiu K[]>K(1󲴨˒6S9\ƹ,@I8$oZj5&׭1mDlg#<g]d6PMX* ä0lxRAr$۷ GoO;ߨ?;n069ېt_²mQ pU R[0'/ҵ-\JVk<Il$ݻ"`ZMȍ1)`ypƫI4e)6{_WfOcӯ:ƙ~ßk<Uhp=fbHNx ?/-X=9W8ʙ N:{q^-R ha>jF˸9]رvp^jf^@">6<Q8 Lҕ.$r4O<+pAVGYZ30+vld8R+[و Z_08_N +Rt\>+SYЧ&RUl<>_2][Me}5b9b`&*[jXD9]8 X@~@sBբM'W?MGoqJA~qԤ8Ƕֹ{;D>?܏h $ub6I? X#wzhMRT2CGq0ïT%W(;P79V真jtӤ^<3"E$2A3ʸ^rxGjvvnL~eo"˅׍ǀp98M-UC{nWX}2M1[[=VӃ4ؖ%] V ~TB vSR~<9Er_Kms(C89YnA7fJ${XեgbU;A1FvTPY
==j@d+jiMWKM(p5,;͹}W2lՌF?P>KTr6>7pWT > D*T/HsW.E4]xgH 'MًBS+\8mXrI${y+$l\BL2ǟ,֕Eԇߠ1*7JCO{zD6%aN}j9#85X&Qv.IaߚALH Lu?TYV39!eoJ1d6ZM"6/Fǯ*k)ͭ) b'xj0 L*t~$2H7rXp[CuZJ;{e7RQL7;#l=YS$}>il|6i#< unW#p;9;Մj~ ]F <p?A74]'K9P'VNxr
qpv^ivl2, l2hirC\5UvlzÙ)́=ZFgGz(
TͰBNd, vML
:Jޑ[k苽d"BA=z}
OF)VSсy&R<><A佴B;w'^\PFmUQ5ь$x;絥BDͮs:4QL%9+a @]Iw%i7nBIbO\
͞PAAV*< l`fI( }8fV@ޚOkD۱wOԅ-֪sQ4[
z.G1Ҫ`3jd̄lԚ .x>)B;pO5+ W(26~(Ag*=Āz|I ^bS+HOf$Pyɦ`eF~hL4><l}'4AtTai(V#{Qێ6LRF3ڕcqqln>)\ps*v9>, D+d=e# <@
ʪX9
58n1\)Ž SB=*fv<HBGI6AQJ(4Ƙ8'42{w`sڀXzS7 'Lr *cX(/`TM QGJy (Ug`:ȨރmsڊyvJNG<{ H]7OR>O!Gv?sJRQVʊHuDR*I8D6ZHZ6 YTsT.OE~^/
g:Geo6wœXϱ8_=X uHdݤ2jy.XQɯ;'zŇdxg-igk4.ʐW=Inh}j&ioi34K\H OH9<aA%p3xk9 (c&(
xd}mCXh<gHYYSɬM5Ld-HaeV
x;O߯Qwī$v"DlJ|@1֞^Lm[ R?8Nup!Kӥ7ͻf9:[ \dvTF%_W z#C&7+^h*U0>1
R@tzZ@؄<~zdv4_נAQ{no"Gԓg ǀ5xXpSFB0PHȺ|U|dʪ\Gl:{u5V#Nf4"H)3$Xq bbA=I޽†PHz[Py-e2N͖/<:gCÚ6\Nivǥ}p R<ɯ%{d820p1M>-7L{hfexRQȍ[VBi鬬V:zMa`A fVC9xwMֵy‚0aEg NڤTSK5yNjGdbdm%Q'ݘXkcGe$1f"&o*Ͽ<9R}FI#LnܚצrUI#4zO֔5+8s,i&L=zRHq >H @42N= `<4,G=(lӥIj:i$zR8N=FI9f0)94n Srpx=X{7jhb٤8랔PBF=Gjx`GLw$x 3sh}i@-i7Aރ3 :4w}$bx4{)3H:!H  4$@iq֓s4y43hNF&NyJB񎴄drE'~istӭ *A`'#R#R[d|JZj,bumE5BFTgjF2ݣ:Ԛm(Bj;Ւ+t4aDS\w[#A4.GV>RAT>Ʈ!.&\)TQ~<]6W,
cF<|ƠKdNoV=P]OOzYZPK_L{SP%E=i$@AoqdP8ZaTisEq1o"eZ~>ZZ[*J@ yDи?X aD2
>v`D u8RT3A9 &=@Y
Ktz}"F=i-`IG֦bi} iIgAknĨa@Q=U'H1Pqu9M eZ ڡ(,zLR
ej֤rXvV-~ "r@]"g넻y^V-vXbRFT좨O!'БM82)::~N~ BXf;kw}$U~
#A4T%}!'? ( Y;A=adA!~*%:9SXqh,5 3=Ґ!V^M2=w=Ib*Pm#m>B {
FvU~hcpvĜ uUD8K{&HًTnC` _hgG˞=Q$J7k3Nvw3q~&T'VX䜞֔:ibc8WPlB T):DZp!@aIvX* Z+8mAY
#S,y=j 6Y\g(e R,c4*B398$)Fi rqME!80m>Y)U,{T s1,*?{IJ-k8^U7
f&Mz+nK'4!E+J
fG Ywa2H't~9>[I)
~n;2}jLU@汖J_i08')$9N:=;u;{
FN*.Ieނ08Űm"ܷ$Y-#g8ު9'媣3 =+0'48'標=#y$=HT,;{V$n1h`d &"͐qs:GV|'e$?%,;UyooJf f`*f/
bI>03
cr2$4">šDJsj];}:Ip
N3VZv6V6:V6nXZ;a"eڙtoH4,;n.c;
ww5ddzG9doXQ ) ('#<V"A|\֖2Ʀv{w0BUZ\ϵv.jhL략QWu>{ځǠȈpy"Զ2E&#<uci;h pI?]0C:G*sTi6@$1d?Qy)7;VŰ3QG<Oa#,&&*98=+MOgDFcQiqI\ysM}k-.#/H*ǒs:WLRU'[#w #[D$ j%=7I<<; kqE4a@U˲ܒztX4ȞF!p=L'+?HE+ % ;U=q_U*SWT2il)e%J
Q/0ű]DN|;~3^wbԬ=h;98^OUEK ^kAoOfյǞzq"=cHE%&ea1W-7H|:nun퉊m8W M8c ' 5[_zgY<L8U\}kּei,
8F`?}.MƗݣSpj }kB1~O]?RsYs]?\ވQ#8sOGVMg@{khkqKbK*={6^c!{=ba T gN)N>>U&TC 5h,Яf51‡ۏW88mj^)Ŷnf4"7'pਮbm4k'
|ȰpTvԑ׽w-x4˸@ cXK"7'Huj+rȱ%`yd`1ysڷ4
Xi-aKȹQ:E*(ªt1:n?GrG._%TU"8n8'&5~ZVdG{`i=c)6zZ9dZZh*<a訹~Gk;:tk:yHz2}-d :Jtp0 QZ*siIMgw!{\(cH[e5_SK}WO\!GYyv^i㙭_SZֶ\8da094VhWg; <OFC}Sl!q2j?/ mFق1RFdߎ|`Pm ZB f1dqBĜ* '
Vۈv%`VI<p=k0t;Qv<knh\{f9`I弲wv`k
:u7v49(̡ k{eik).m%K#!=FY@SQKum奤ghwWg87W$:^~5ii4^_B5]MCr2 IXp⫹(\)OJ
WqfR,'1Yy$Brɮ$hu,JNw3!bXǖ=|87),ˌu3$'˻w:>27uMjIkVY@P[KUazp Mct֕#oNW*,$|I/VemHjY lמ)aUyQ$o,c }ֵG=v_V3"$$hR1P 

#G(|htKJT R%ܯ8y,Άd?Rs+\&]2%;U+uc溚XaYxV<F mQU`GN~{Qrzcm]u^#<|ޛ#.O}dRq㞂ʭL[ɦJ6<;^k ȦOcl)c]AOymZ܏!䆍e?5o)/^ ;$$gߣ`+[X4ۛkcŘ7c9m#JiUELG$^ WN+K[%Uyp6%K|sG}AVK*Hᗰ9$1 $~Xғ/ط ooY>L?voںN^u_OBKJUnAs@q]ǻMYdi?;GE#f :|R ɂ=_2] esҴKͺnĥ\ǟ;uP5N+ww2@aکDNv^#+;'Rjc#.6˵yJnVC]O5%y\Տjw뚕%L :m|\*Z⩙GSI4ל梉K>oaM*V 珎zDǁD_#zmo\ǿzMdQBYC`Vha"V;q=i@

&-$^qcTVq,U·QL2x @=źEcUޤg&uȫ!hI 70Y0GjyRsM$oQ*I=HI9M qX#߽:=ܱLf֘A$搱1Hѐ40$4*W$p~jIU2qI!>GRj $PNH݂pGJc[9i7sL5'Fr@4`X bXg`?x- A8iJ֐L`U''SrO8h'4G4c#]{҂rxf6i,si!  [FKMbG(1 IcU1-.;-kPȻ\FBFkgmڢy=̶VIdmF`qo$$zu7rXH- O4#)@9VF=yc$@r0:WhP\FE9p R{UƁ=ڣH\m4RJ dg}CLےh-Jy;ۘ<{y ԑl=B/ݝKC=zU/w~x(^iw\7fS<Ӓ=
ΖR %w<0"pA-z9Vb:]w:/m%[Z/ZBpHl5w!Omײ6eyH5KWTҧm,,6:DH@RU]d`J߯h0-.1 :tʒéyNG@A댃kм{tZyxo*F|xXA ;ƅ
|edgֲ`N)7y6u Z\~HDp09$+ͤ庲pWO&I%sj+GRԬy#-Z2d\.=M061L]:\2_܋X3DLJzȱ ('w98Uwsw&MV努ih ifb8qӁ<W{D>mm`k4f\DZ?5M<R[iFi?1#Ȩį;bx<pҨw͜*($.o큑қ{IťMI2\¨ d\}ǏuGUQ[yIiz<[8/mFKɋyyzT̶'a^MY&E$1o#$]҈EIEX%m,,f<S֚69k׊kv-jod$qA$gU nx3oڔSK`sH՜PXoih9b_C1Ͻ9#=)s@`x4qӚBO=h$9i`P84DXoz] @2(qWX-V`j`*l
z8Z3X\1^xzjv'wZL'BrI数d`GCs=h'B4񞂑@L zlQ HRFiH?j@9<R}''&8tڙá&:1Lc(8ړq<:z挑Iw4
H4cFpoN=jltK &%rTUH*Fݹ֬ZN#l#I{,[XʶrJ6p<[vl7'={԰b\N^Fho^A#Ԇ_5@R}t,'sȖq1d TVЎy699<Rjkt!ףٛQFlDNRY|4ѷc vӚ̖cnaZ6ƮHytW+#o&!;Q'$bdq*WTmٓާŦKxń+H} yǍH'޷!D[>-g*~jy"ѐ
=-?Ekxk[(Y𣨫F[kbi<FoAY2è8АAbJ֩K8FmI`mež<`7*. R\)i2(U
_ qk.,Ӏqڤez(wbϔRI>5pfB8 t ;璣`X9)?cHL*էBl--eeDB͟ZEգee.udryN!ßhrO fJ1i9bx$e8"q0+tזgQڒvZtsqDXVŎ<1ԚڰO%&Gw 9P7vql`T'Ժ-]\BB?Zu _*x/m$α`5x#Ss9^6B VO2%%#d'vVwwg_ϴ{Hs5&S%!E^3J&.KR^cgh閑cL0=IN'C =D>bhǵ<)j@swl8n=C+RߓKmn"L$Zjij(,QX@zd($I
9EkڳZZFGм?ZTR9V#O9
*4FOJFpSF*
Tl,q&hoDL[P(Wf%ONU`X{ԏ9Lg
{ӿS@wB<qQ60Hs1= N
M(C4ʴ8cRc4;JiPXy1?py"eWL+[kU۷UVpٌb3t Ps9>qM5á<ʑk*#s{727Q]ެ` zǖr,{0o%*$$Ē{Vtޒi}Y<j#"ֺR9
/Ҥgq16 ,N{Uf.t[yq8w+IN%Kg'R:0UTB쑮J6SMV.HR~i<j?'Hi9 '#vQ!^X$@\>-٬cDHHRv¨"YW26}˃Mݺd[d#sWeQn}Sl94RNOJM^qu(;{*aA9[k!xڅl}j44Po"-8̄{w5<zj2;V;u !GO'"Gq{P<n5q+/)V2 j*ilqr$TT)žAbxU| kU(aU.U+) jg2MUwf8 Ve6:\v*e%d9>k? h+FPK @Pp:1S^lnMu=鱴c1?w#LN;`v?{=%K<w0@$rqKk/pu 6 MQ=?GQr囒Y!N=v5?PB! 3@ 5Ҕ,on_ltVg@^-Wy${_AԥI&VJU ԟ+$MDWZ2B1MpܽH>YU7z]r"ʐ<CpCtۓb\PjĖ({:[_jm)pUUlQKHev2$g5tӨћm[J˳ ` Ny;On8^X.Mۨl
4mHA\ι{msj&ԃ'iq<`NMӱz: kZTw(
KDz R^$C3NCs!TrOڼSAֵ۝Nt#,39޻ 2;u}F;V H WiITUs<I;nA*jmn$
ys ˌ_Pɦ: G\u={סf;xekN{k"ŤC N4F)*+$|2IeJPԗGyžш 6ګzn6vƣs7 rktдx-uSsN.z)?j\=I;w]+̞NC1q+W8[HB-rQW~f ɡcj-4Ȭn=TO ʤ˪2$9ho|YhZ="R=DX~ZGK?X/V$8<Ԥz=)qEt$[{p)h(\d~:/G4%2*=- I8梸('p '<$ rI84kņXNvl7@D <$W3YFF &?ݑHXa}ХFrn %yb?-k#|F'}U?"/ { iQh1$q$$qOM+4\6S ea | K_\钂 Im!4G0TT"`)#|x? 9M{6̉Ր}G>JͱC$ $ N#!}R>s<:g;#ԴYZ2VIzA5WprT5Fް30jKYdh9`V `} 7WLcӵ0#f`XFr02>]]&ma[ʬ2)،umN,0 bG=6GgFSG9`?YSkѢKgx<6#S9$-swKqE.Ē 幂KI<$P܅\O l#J5Ŝ֞7l#*Pw4)J
Ksߎ{qzg?&AAn>9+o[0m?PJhW;\|3֦De$ڹͩvd~TdӎHO~ jqDr.NNxH|cR3;'y[?OS!6"rZ5'8jf8c |ZMz1 zqM+Ny9'ԶWV<6?[`K,O$m1: U/M.pYGoA]]IʞYUmrqR:dקnV(E$֘&ꐥ8 YY,w9G
VFxZVDC$.Uy<w={VqTr]ǧRkCp'W*9%Q +*ȪO"+t[,]ޫyo_OaPHۉ @Y¨I"n&pAҚH^q0$屑
B 'P1sRMD)A?4 $vU= ❀ ҕ1,8K#lb-M ^w4ƀ*)F˰g inCJ( } 1{-U*O'z*蘲)CeÖ$;9Jc4qڊ؛-0mUPH?j|$sH9؞7?<ic(=zpH=Czz'Efu=j19Z5b2OZQ4Ubriٷ~A7?Jn2)NhBCd UpgڐsAaRaxzL1d7ZBJ 4A3L$499`󀢚:%bvzSwUEPà4A=(*E#10E?''Sg46
H>zhlfJ`<OԶ050B$wUŸs{Qk6>bH\?PADE^ ׭<#Ei_5C٦ͳɀ<cn<K\ֵ;4obfI'<
Hx5'P7q^^~_d$r7)m1ilf9uA!(<%<6z0Ķ iPya$2Rn<`q(m:mNjV$
\eͼQ ^wSXs[VK\
c7%V&)Q=#=i˕'RvZ^opInf޻a%:(үImbxaS[7! V^:2 e2^X$e1vIÚd_U$pUm0S=XѺ?J/Eu<幰H.
z0tm-1I1mHbʹ)uha6 ݷol<DYYx~E{֑IQ8jڊJ?K >K5}#F͔- Ǩ0F:Tux-g1ycDQpysֶΟyyjWL iR.݂%OaX|?wek?Q bmeO8^HN[Co.Hwt=@ݹ$qGU]c5ĊYLܞ>;U]oOZ[FvR0W0#$׵i
-Zڤ6+gb ?\|rEV=`^^H!#ok=<E >Xe1e'pぎG7-{K]ۜ*H pƒo#䢖+8_Gڍ܈/ob꾶_Ie`#AUU#U@u߈XMzvv[Ƞ3HPǽrr8KĄbJ86lw?ҁx>9~s Mc81!ŸzRfzR@i20Wځ@q`$ԅi{xLtn[y''I8JA B(
x'48V v6:#D^wS.,"<E")Cc{SDhGsTR[frMɆLyojK!(t`Z|jKtiCa sI&q^2XH)ց l8'y'n31@,'(#rpGz/P#NÚkg;>ߒiރ@!< ӭ&;qEvGJ@ !<rqH84uސF֋zA')8ӟ#giECJhCv>){/lHScY >%$L i6/Dɹ Go% ;Բ _ޣ{@PvAx
HNI2ĎTo\ښ`HKWڔx w!*t88_{VnbrMPxdڮT:L$ަ
rCRoAI-O3V<V0GZOZyC㐦 Q9mX;pR0#C\EB̽r*\K635#.egZ: ,Nf2NI\`$ގlQm 7X#szWsqk҃*޲. 5q~V36_'Qв̙Vz3n?3ZR *'&&׳nYXɌaֳuƟ IIRGX<NA8iz=sq YGozI"5ys jޅڹb#`rA5Y]~UH=C8i :LTuzP8%tD*|ԆYr#[#sIj:Q t.4L(C*IKzyRB;{ fEp`Gڳe>{><ͱB"l'vzh,.msGi# fW0liPMly {Qh_C
ɧKp_'$*|a}[!ۜn[!&c`ʭx$J0⠺Xa.v[MJ0*G`>spP$)?n⌎NcnOc(M #YWӕi^n?zøIP9-iOoȐ*)YchiDnB U9$#9'oqR5Q'=/$qBF SX5$QN+^Ҫ&z" Աƣ&0)瓚4YR1Q0*•!pi8:5y4HDR͞եe ?5ln)0(!٦fc U1i $[xK6pvүbPs63ڨ]])k,~U.N
z Р[Cq:TQ#K0oS <S}hƎl-$Vyڇ%âsSʢc'ZI=i,rHR]T5-#jд=R+yvS[= M8ަ;ۑKa#٬`BؖnO=)MJaRW㹨s].+ag9[ sZRE/ziSjN251nT1aTc&n6#QZp\nDcrv,GkT!su0bv+7'#e5{U+@.U9wz⣡)m)dH=#‰Fk&G,qҢ#y뎦P^gz4YD
:sYU4VH/Q's<@( I%CbvJ7WF9 g{kFVۂ۫CVq[`E) tٺ ~>meTm] ==yoYYId2O5© _=<')E^ښ3
)]* I,H C'zVwth5.Xpcۆ(0Af8ǰ26ZN&q>ԏHa6۸чЊ~۬qBu F4JmF՞ޒ <֗|+G)앭<g Vt[-7N6l lr%:<\nwtd>[rO6yi [Ex JIX9V?1LWQpk=פVҍþyyzZ6_ɸFy 5,s\9Z=K,_"8"ʃ=IΘ9޹=ƐX¦["o2 czohzz@r<3߽vpl}r딽L\g4׊&խaynzO+#"+rzy b7IxvfoħAXS,
QԂOz݋@dAd4c0>W xb[}VHڃEVi$n8X@#t]M`Q@x
1M8 |zumm%7g|
ķ^p a-m2\JyamCHEqv/\{aXgFqu#o?֏xOH$G*wlc>Ew'lt{/>tz'Yg}&1s']NA9 wz Gf?'V<3$9x[X:#%$^H!ߌ^~| tɹO>Uf`}M׏rV^#MtbP{'B84iygk%+L1V$x'oih#N@UD@,I?5N}
\da躂jztw*1Ȅ?Њ󺫨8 ɚRB8ߣ:q|kg|fD <b1*o6;0}VݬL(slvjgiydю'EH[ބ#iHʸ2'@>CWwzG?4k&ƺ<2\'?UafViF_.IIcpG<)&xχNɥGc|QO>Eq
#pW^7Z%ŤHy3@3S߭]5jnxybiVk3ʒAOT98#$>~k{Y'=-dڛåD*Y@;\Vn46|)6cpRb
ca+0,7ZXUAǰ5"\\[hRGBp:{Vƻ66fan˂@`٬͔z1g3]7UG;`{ `Qg;^ZE܄`t$F T *}~ͩor[GK'Kwq$TM$xg^X[ <LVDP޴-<+i^PcSǦOǽvFrFXM1,Vˮހ`gN;փ%N^8il2gVcIMCqg>U9zlU[wC^@p;lm<vӉwn#)p3=OV1jtMɺe2ZTdQR}6ydc…$éW? ZkP@J@E(S+=-&0矏$PZaPޟvp=a.moA1I}?I# n#ban¡@He$^/0w-')j:E\`l6I9T*&S=j {QX3ouaQJsnbF8zBc<PB sTI H M-$:W^J<
U㰪*9'9NU|=C#Fv=CM9X}D <@$JX3QAsڐaǶjV&TC x*&ط1jJ]I(bOsQ6xd2zQI#
8+3grj"0ڜdzG&V0z4f)E8z%$ sSg#P)VcDΫ@^Y {ErSӶ *B#|~԰B[9(ݖJ%!^)!j T\9'\A=~iS4#b1Ͻ^ 6CHP8 epzk9+0ޘ[j  183!%NG?ZZNܓҘNx%e{TaghXPICza?Jk $)_7qf$)w HOS@!bF)("9S
T: `5Sq{r>wqE3N;ڛ:ڀlR:˨qŪK.tb~*UgD:,-:GO:<||'߹坘$;Ԗ(5܀n+18ҨCu&6RJHx' .%{z%uYs rYXnqI9#<4eX3$6qX\ۖ?CP+Eio
Ԡ߃';(N==|e&s$Y.nzx:`5}+{HAvzP[Ua?;K@ 9&'.~x?w9Q}@t: ^˨h!Ό#\i!񗅯w~(-©ECLdN@_J:WL_:95Ҡq-nS%1`}?53#g h:yr!)Yne]{q;VaI uI䴊$Y$?YP-kdmqX(p5v{.MlmΣy;V猏srkXNJK9ۘiS>m)ɸF7u(a#zP8:՝rMH,kDe8l)ӫiQjϯ4QX@PCdgXKc5I&rUfasZirn3Gxe=>k +&6W]Tcq#=+6>\\(stPõ4hYT.Ou.kcQf;2F.I==*rA>4 ^]ADhD;6{q JT1A\ג]R@ק"G՟r`^ܭL_q{Wfrn/ƒM y?Zkzrzdښ Wqл13;sMHIցM8jL3L#q֕ F3Lf&dIp:
<(Q(4cۏjDܢ:&*RdH9w_j$`c@Z4xzfG XGEKF$QNE)&2Ҋ%H-ڞ[e*2yi\$ex RtN]Xڟn\ 称 ܃L<2:C
+ګ^ ZuA~.az='c 
;ԗF*D2eN2~xM-GZc7nրI9A8sE/ғ'AIFsҐ}hzBFz~) {QГL@#gA|P0&`r*kwHՋ 01a N1W,H#U$R<4ř1dc #*GA3PAf%nbW"&8b+wQ- %u'sFA%Q,y95 64YsS_jOw&XLVzaԟkUxզ.*9Q 'ig$$hcP= Ec]gG% V;f O$!x8BT<HTq(&>ibY.lYv?+ě<jtQ ùiH#Ea9Uk;N֒v"b@:UTMS-m\I-HBy"S{kÎBfQ>PHYr=6x,ƚVH?4XS!CA^gV.ŏkoð̯̇A:TUFb c # -T 1MI.hѷ*:T By Wsrf),}YM`*t%Ob+E$"5;@!I b%9b1UnL!y7<$9EYR[+ƁytI-l^'eF@n3UR;jmX^^V$MB6/w-h#nJQGO1c5Ov]c++Fdvz{KupSWst$խ:I*PrAcO5*VTpz~m-#?Nun`HwDz$nsֵr:}:TgÒ`V6ͤz)5q},W%'7u<XІ cNyXSx^Չqp!r@<
mc&g''1ݼUz(`b$sL \ǶzSUx<@qqRm8'5Mxr3R+0h a1I0cjPHi
1PiXxI"\ʁA(}`ATn;j&)X=vf`͖$0}j.*
j^6R4?֦w`+4i {iإzZ@IXi
I4m$fԥTح!PzoZZ(1.
n}t*$,=w?5>".x7`HnzmSY
K-*۳۴R!YH]+jp`ڒ)v繮
G,9=KJ
>jəao⨆,ĮA=*URSvp/d& yd,I$Kt9'j* P`5kkRd~ԜZ.0sd:u0PH,QcgS۽<L<kw6L{ڽB\vCJF OL@8'M;#@cUkԩ[Tc>r*\Z[mP=Rm!#R`SږcQUBaqa)4^CGozPEކPdz90ڬi =J*a
Gڲ//i(rcsQF$H
k[ŰEydJOil&S+hDG>0
I'HT Ҽ(<fJĂ}@wFnn8gHb>[V?OUy+EQzk5tJK/=UX3IޯΎ ( Ѓ._I3= t5*(WԴTլ.@wDd5f3ǽ( < ̟o=A"٨NΊ7sN߃@ib#9h\=ӃޙׯOڵ:vPBoXpXZ5]JU:vYGIAq`_'YXs1+e[KoA&"񞛤H]/#`}9?iqP[]Dz-dA *zIJëxO.^V!fV+p)Nܨj$%\#|SX+g6O>o:YZܡ)$cϵw:߈liC
cqϮV6Hwr9 18 ]Z{ot..ZC(owrYcŤr⌥ṁzVL -]LgvwpsՃZZ"!>
+NJj'͡ɾ̰:t`\WiD^ѥ'#%X yqpV)dtk{U75ů|?5|W&/i@yW38?cڧ<hxd9r:ykQE3Z,Q8< d ۯJ/}1⹝!(ܟ
%綷 ШҜR2 }q]t^(M:Ѥhˈ3 :'}W?c^֎sXzb pL @3Oa.oۈ5$شl1 y\jk\_ފDŽU$
:ֿC g2ɸUګ#?V5RԢiv pwQVvo!JD*'q+j(圔 
,Vk,+U^euO:ҽז5^^/-&RZY )n`1
U,1? &5ODeA QF<g=kiUǜwo:Nl^MNYw^QHd:z黧JXe91eraxDfXFs00+_GZK!&6,J'qۺ4rM'cvlo/[Nd;*2
GgVx5ZW\۶RE Xhj4V,&#Pÿ? E˴Z^0E/ K =Pr x=[xtgq;yJ$V kqNg՞kzf9=#O6эQy;:&G<1Of;g'*~zWzm6vLY&O=O^+mC ̞rON-|>Rǖ[<3cv#*9%rVHv8J>y*`2I ̻rz8٩B0HRE=q .W;I#g ]֟[K+czLFL\e|Gzrw @=Mm)\dtKX$1dbHS z6(ŽԖR`08-3Ċ5Y\}]A4JTY:jxU %c` 8~~ՓI]E6rYdH/U@\2E' 3Sź7Gƾ99nÞՓm_k7Q#$N nj9nG%ց+nTN[<s(RAXu8-#B\Go }Zx*NuQpH1-?<p{cnJ.ֽ ^RyW/HhQ
@~*XOSg<}kEEQ)9;dL[ᇬQG(\LD$*2ĦT{V`Jڕaz
`1X. K<"=!]n6;!h>e)&`OaҨB\H&)Z@Ĝf sx<{S$`!'I= &= 1ڀ'Wjr'7^0I!
9==]vc8=i0\ 55TӞzHiWaJ d91NNA0#cdОxlGJc ޣ'0,2Dvi uiS'(*Fx(]LbQHHCu-㊁A~d(PŔR14'3japNq@xl L9_㸠$c+F!8\LD`duQHrAiA~i~ю>٦,q@ Tg`#>,6Q<ӛ#̂8z`ڸaqIV/leX"zA6ʄ\H^Ӡ-69S&~:s!g3Bv=<V/\8U{F#<j_ׂ1`$=XEE$C Hr`3;c^SSQH$aur~~i%
ZG4cuJ-Lܟ"L` q({w5# <djSh2?0b'Ck)&xyX>ץP*o`z]N].g;8OqV
 Hn*0`z/m/-&IvazY? \"k<w@R@$sӭ|˫i]꺍'̱Eyvƽ\{ɪ֥] oo,b~U1Ԛf}*kCV[*$Ҳ@PA?$
Ьf\^ib/EKbIYprǎ`wcږX}nI.ȈT .!(u'簬Z ^K좻&Xt֤u-knak$NMPk.ʰ5<"VWXU#ګ{PFvsyduga ߴ3NA:
:iFn#ϵTrq?kg$߆b;"P鐡I95.I.M|<Wh[,?$qe D2,yjy9 č\\R.n.`\N
(~ D
s0>>{
蟅Ny.:Jf)A"B8mq؆?ZJ)'ڝ,I Qju6f9s<! Lɤb zd4I7wS*F9O@PI9M) OO:N49֓>HH#X `d4J̞u>!v W c48H [֑
s*w
c7NX09sA$F%e#hlL*$ <gϻs{2v|~LCcW^{H] NQBjcCh^*IEzX38Ҵ8',yg9ɢ֢$攜qM8i884ޓ 4 3@>;;u&ZByizFl! (?'1$qBxRdu=&~h9ڀ9ъ))՛Hei!ڥ=%=*Vf`6PH!
$S@3 -C8WAԞV/eYY}ZGzBk7qtTIS) n#:PŒ ´FߚDS`%99P90*t!,Nzի-6XYGOaY7D#
.3"巰=k'RAQ#s-gO3$,hV:HmPIJ<͂yb;@㓟V.,.S&Gă60&^!P$^ޥc+x5VAU6[FB2N+S+tr`@!t1:
%Jf݂SpjEQKc2)JQ*39SMVXyCv?SMf+ D;aFM41D72 2jY\bE1=)wU Ք)\ll Y"Esfqc=OzΏSC=U.Y HSqjYѡVeϼi"Pv樌\(zhn)tl]C,+)@O8K5!"Y@7qNJ$IQچ݈RBkimaq˓yltdW}IQo,%d
9$+Jim2lz+R gB.-&+qRKm<uXO Xf%ghPx[-OBZ
eƿ)u%IT$v9%sF+3<4RT&q C8cޫ/?Ri ױt1={1¨ȫa2}'Ueʌ`PnrFXfѐ-;$ 28a8sE{RhEbAAyTV!7:%y]N#45yl9&IWy¶Pp{t dFsN)jYs|Us [w"s!{ӤRl"V`j0;犖FjIU(lgINBZMԄ&*[A{ќъP3HbR$ҎM!6*j`gg85bF**3 rOr@=+)q(lT}yR>p g>ЃvHv$jRY*VXD[5j-@Y7FVH/N}o
:棵!G|VʹLsZَĐ!ڻ=0G5×zaWb(>H0FpbmTS0QX@>9s`OsI$;p9&M4E1􊋖l)\[G5WI2=U6+F#Rz=ך"<fȅ
?Yݞe ;wDH%$޳-KoS69&̻NK`0%tj6PU.L},ۘs\36ȁ$ޭAݙfH"XW<⧖m[wE5^8r6=kXoLdlMYazX)&M.6ȭo=>y-ʞ{օe3vMI=V6wW;lVʱږ+;AU%U%A01YB sqIe4F'm<D&P."Q̱|Pȸ
+C)a0K.[Cw |q9Ңӯ^+C$oXju0lwR\g5G?C! SV#_>,]Hlo*Og|LӭŽmp!8iA&b]Ȉ&1ѧα{l c5JV\K 2[FQ{1H9bī8_gُo<>$_C,\J\ak" O\3Ijo%4ŤR|1ÎSp*ymoj_JP;Epyt}}^)/wqe^U Ո T>',+Ǟ+Ԓn恎vv\Nmr8'M|N[!z.qǒyni:5K(3r1-#vc~j7BPβȯH6;gux);]9u9xfP0*zz%"PX .8ti-!/^AZUUӞOӶv>nn`0Jo)cx<`㏯u5Г] ^Bw۾z8cR'kmQ<IeN >g)%h_`(bV5"TbxdfmaomM̀fpkuhbA,N\[,sRZG^~V+no\1Q?2{h(~5U'I>idh+0mO3Eg,p@:|Vᾮ.h Rud82}dc{r2N3Ӹ><-C⤾WiK6Չ 9_#Ѿ:fY^jPwbdhTpxIcCMM:2V $bhT,\璣ުk}5Vo9ܝ^s&Ӊ7S>hOņ=Zʧ&M;G]­s+(oGEsZxYMCz\σ-p$ kZN"hI`cuHp4<fԞ˶ױ!G_=W4&2zV9S3rvrMc?޺9Z9YPEPI*N]|Zi'^8U%BL
$u4Ʉp?JCMJ埍BY6rg~11c <x_E_[A}e5/ce=ZkMKծ,'$@a08=k6>.P<0#؁|cNp[CxJU+,61g\ܕ:(YdhY~ݾO 0leI+=an#, <'kҺ1xi| E[+im=9®iz8TU#Y%ܝL\% R; L۽QR$H 3&:g@rR RqJYT`GRj6b( Q95\gBGژHʼ~ 3i(ۜ~n 2O#(Ȧj;  j Kg,:v={Qb]`oV3{R`S7h{S `S #F<`PR̂y4sB84CgY{MiI$N(b8pGz@U⁴4`j(
eO򮪲`
$DsT7}]ԊQ9>A9% q M aSҝ2T1z|SZE-ECt
k:4x`,-0s֘ &b͞ǭ1яސ1n|Swr<SH 5DxL's֚HQ@n9SA={R%sL(sM݅I1G5<#y'֛ IzFi Oj3 I usL=:H}DFTR7Rzԓ5k:>݄J6BqÜݫGėog"M2gp<=rp\$͸3̦\b\]I8!Ku[b[Fٶ6Z4oJ) J0^9RTvpdRğ6=nYH+Ly'?N 3c21Q~>>kgi}Bq%b ju:o + `?zp;—lu?z/YmIp !41I!7v7(o)HTn''~+|VL4a\{$jjtգ𾭪hC-"I@#XNH+SֵOY3JdAY;{NHݤ"2QQ9'i Ge)0vÂ|g{3ZS^RER̍)s Q]]۔'QKiah-BC4nwd %WZmHKI9/I[8vC| ϾFoNuv6XZ"ڣՆ<p;{մo-tc$HaP'ݺ*/ i oUf."S1'tjCս'SIWG3\g6|}A0I5$D(Tç4D0G +osګ6ws#4g'ސ;gsLT81WzN <) Szԝz}iۊinXR$ bF{Rrp 9z}mVQڴqU?zEk40p܁
{UjX ݜ<g5$Q!zI
%f \#@9{
I*F<
P)ZjEe%$1rqH<Sk bʉE99*LS ; V#911'A=Y(ziR1!@$JyC`iF z\P~h8֐qցtҜSgړ' Ͻ;a* #icDEl?֧$1fjnA? !:3G܄Z}@JcI Y0wW<[{tLnVQBY`^Nkf;ا`jE# :>OTb8$\ղFQj0{ݖ.4%3F;`ԓ _I+kZ-!DWQH/&GRi+GP[iYTXrإiWnIdbT;INuZܴjdQ`{VմNa!6![KNՋ:,5f=Q.IcAh{b"$=m *X=Prf}b$:[u cӓC`Z-grN{vUOr9aCkp,{TvWC<ykv1rJI.%c%I֭]@#N3Te H1f=0٪j3TrE|z 硩ne8 W_cI D%6!G|*{HM[]E؀@5 2G8=)-E)0ɐpzf 'q.2rzSWT@y!QjIA>KdI~+JJt
1U.^VlI<UbKNO֓<uQHqbIF@9'$Csaޜ@ {&%0Ȩ||$HжN8jYcPTO:DM)>H\BpĞHTBw&XIh1S Q`*hŽLUP6sSĤ iz;T9IPDi*zT,Ď++ҜjS6XT7+9RˌU$PfȤ@bHzO0 _DfOVzsQ'~FXSӁ1i'e!X qNv9etZLp?֑ iM$&I; >IIGMBj^A(OB?ڌq\9W4ZM,-"Ā 7"댎<p8)7`}PUȡ N;f,$pW&$mPlt\tZ6G4o1G&bPHֹgcUe[[r/he!\.0;6,(T؏ɧ-kKԗ[^\] H'U+A
BzΚFB2!dKUKYz%U nKH 'i ;V`^bbB ga'=)^a4QܧvEhVF(thK2-
cco0Qu :bKFx=̫%Kl]"g/Vge%c;V=tEIa+#Tk"frMߵۂc2Gk,lS+JbA曷*^[Vs+7cvr hD=| _j:T>Ehm]_sW2)1qV WPt3Pfn)<]2#U;dc+PG;vbi@dfv<[۽"n%Nu4v$x@{ԖpX)@YVV}$1D*CS.5 ,Ҽ ,Go떍ܣA|$o&C{*߽z~ET`
}:}B{h&נQ53mՓK+b0Hc HHܚ;1k6#o෤`1aJo0 RR8 pE1dwqJa`9#j㑎@AB
})w2 0W=£9+O*@TøRi7cOФ}Liَw1T5^GUyStLOhzr+5?\O4k#LɄ;r56ǂSHMOKk8. )AH+:9`OOt~6GN$HIH28,Xxrjw*ҘdA34  펼} ÚӚw0qlr9à5 ;\&K=?Jɢ0LkSsb(۬L  I梒km-^fu) cT'ATJZQ,";?\WAk8ȓRC=*`dԷcՠK'3 8`{˘b Uպz'q<srT],A5}^6'?ڽ:Xn-t2(d=?^OWZzjP'W>b0x#Ou_^d0u#){`z\2<SpOǚ ;O㑃4^O=Č^ Tc4c85鶒fn`nI#&-Z#&=1$MVY=<rێ63\{W&X ;T A*~>c\UGsخI,<Cb ;aO t&[?Fz8={M)89=)}ܝϨG2â_:䮝+9$ǺLO[$"OoutlBGCaО{w&DZInVc8n=N1xXMKhVX'-43QoRX 3"!ĠrN;
 5î&;Z*z?T~Ue4H[\`z'l)ZI<;.^ Bw4@A1=pHqtHN3߽PVc=VduWS# V,s⽞co8?^Ƹ?M͎xDCF{Mu\jYNrii9G=x7LWMUZIN@nGa̐¨QTfm=2F27XCJɚy;bI1lҜĂG*rmV6r2F=g!O$}fU ` OCNwdqޡyO# 6Ow$S׵SިGG,9
UlwCp@'8wtٞ)@ޚXc
t M<W 43 ;F9R)~bN('N3Jd╏sɠ݌@%[9;y=>)$R%[*<a}FdIQcciz昧iɡ
A!KKÜ3Ɯ) Ht"KR\#Qx 'Rn \9\h+.O<ӹ4b%szԹYi@c,VQ Ԟ{>X
Fk>i%`r”[IE\O2p8i͖ w&s7cҽ1ީm#iF>@'c,I tJi}YϪB'$1A$p*(T?z?Ҙ c
h,OJ[4 ǿZn@ȨgsqL4 (lϹ 
bGl?F[FӓDN<zBp8H cM\Һ
9 q4<grTd`?8cabM)  =9t|yp91{ ,jddDf89 oHc`Bq$#`pz3}5Imߤgyonny-QcMk (V)?'J٢YLoV-ݲ1$ny,.jCl!*0b$*˸|ڬ޽Z]l~٫uZO#v]H,xϾi6Ҵ]-%-2#~s6XCm"8h>{zŎ՟R! q9ޟԦڶ:o?rNRqGMӈBE3UvMxRHnBNjO}6dB)UHuDR0ˋ]gDGpHys۪EZaiLpFҸcU'Rvm\g<z}=@ t` Iإƥv^"_3*'BM-a];1d@rqj]QKY ;M1mCq4K/8]4eYEurx@>(rdN\Sbىa[g:p\ltjj䴤e}|+;1Q 49,:3woaztbp_'BK3I!v3vvTY@'Zi$wIݱ98o"4 ӱp3LpiA=O҂qI9>h$ .x:qN皏< 4u'/N\ A AR1<s((UwCTAc %2V
]Wz23 B$h I3ޗN;Hib"=39<մ%#4t,iI $S#s{2R$ 89&R*0!ܞ)QG쨏8Ԁ1'g9=
>†4518TX3f h Cr8zzWj63@-23Jn@ւ.f?j{SA8TAQ3ng⁒0Tq߮M& ݁+`= 4x4 F 1Q'8RAt7w=j@8aI
bx(C 3;ޥ\$tSi2h[V)2z\`cCae]^]*_a>['׹cv+W QP/ !^u5Any=*،օyEHn/z=&(P5цlqV5)$&0x5s/LhB~j-}wRIȂ!.vV3yj*VR6j,vyAuunU.㎦s)0&]EJT+Jg[$|mVjXV5;Үj`G6㐡G%ūm(#`8zqT`S>؊ ڥ>=8NsҺ"9-THіBog/0_X<dVPdvI߱*;Es 6k>6Tw]`"Ya'&ũ~jʌ⦊Y`iU2nc ]ϐL'qC;~l0kw6\ {j[-#W}9)cCօOaɭ3)kH]=[kTb4 ȫ ǽ:R+~9 F*nifG8-V4VOЌ{X. A
6 T?JDTa>*AW!x?-~j*ǽNTҫQa@p9j2aAw?֕8Cnu0>3 ~j24%`[#V|1M(-ؖ=h褶9[t,Ig$4sߵ6)$
Bo^VbI<R0&|ךp9oaZzio)KkIIe5TnCSP'Xyܖ8A4QXE$=-:8~yMz$&'K\c[
}"U<dԉ'=XEEO>-ԓqVW c0U㏡E<TRm>ℨJ*UHK<"Q!G Sg{WCv`ٲ.ϸ X5N5
sMvsOOcXʖ$+ +28'Ri bXzU䔒+Eei9C b>HJ JV|6dS(9p;Is(roJdU1p mElJ.ODZ]pF aTntV'8@b\jOGT-~h=xs<G}j)"Bp*#`'_$9H%VHIfgb<,b[SLaBV)lRoDvFR硭J
s2c{U7^“$
X RIO@)Ⱦ{cBkFdC@y55}Z] 2:e[=Y;Cz&뚎mA'Ri 46mn摽9YH%ޘf*cj/9e~ٹ'{3NrA5VI,3Uf Q2rlk.1SSc|[O=RzܒNI?'`xZ#n?-ʎ`c] A [K4L20Ct j.-g.c RIޛwg&vIQCczVgJbѝc\G<A}Gm$|T,Kn#+OW[wiԐIdGsMUq' .8zoqqҲIT]3LRPv՜?mo<K^iJ֗iO I~ t/Xi bIfS}*=H9VTX4UF_`;
]V<YHP?NGL`i[4w+Q rLbBXuGasVVZQ]OTԢ#԰ɀOQ/[i%, i
mR{$K[Ib/ G @@V#Jy&UN-lx`)^.uuuls` ݘ [zl.mSR&[ؼ D 0s{օOK`6܈ =rvq4uhΗef[2;p~ƣ?͟z&nο⨒+An-b-PmtP(pk ;]OR{[,Ec,kd*'KhQM;LcP,@|vGtّ0BSP>mH \.+02$ a^&! ?A\}+KݶB8mfDr|r0~V>^0I<r^Nr/;.#'8>C.1m5InpEm-Wj7:=jKÜx+5&7W`zV&ƥ3n:$ơ@H}p?\Q>r1|KoaN䝁8=>3cD]{G\) <azVybZFN٣ki]x̣ݎA>X{T-ZLNT<
Z2ZKp/VaӰoV+dcQxҕ7Z;i6lFe$oU`3Ar8Z}smF;C3OӥaW%TN<F[#(Dx30(?]^,.j֑s[Uެ 1n;ژyNRʓbJ?K}X qp#hRDh
y<4r@*A20ǧ$0r}g'4#ۏUbr}>FlIJ%!F~sM qL⠑@Nf!}rrNWڊ
%4eO4@zBJg`+0U4pJT{Q@? 2O&A9H8'A*8=i G ~ivfq~nQJvPOjNy(P 81֣◝ChR3}V7$)^%vǵDdqbOCǸ3DjpΧC$)6D4]GP\ۜ{2YnFH<F<9Q6ImU ¹@Fy,iK#J|lT*⤎2`~v*+Wj
evI-{UAVYblA)D GF zo`ig˦9QtG*Wv>
PN*Dy-R^pZW9Qc@P#5$/ڀv9l X49I
@ALP7i98~-M>a7vi,9&4^ sc<[搶;Y@ :-0qND,DhW|;(>G=JJ*"#$H]ލt-A3F2V9¶/u).\*(>
9# =1ߏxr9やh_8$ ܚ%ӄY\2N ; ib .x>}i,хQHmws("4;) mLHZ%ֵUIkKcc.~߰5=仸mۙ`?zVťC@:?ڥCE;9)zr?ۊ՟ ' p0DPYRs\/kMr-b6+d0?]b8d ē+-eHPo=8<`boYwJӎAjT>޽QQU6:;b'+O>b{{zR8Ok~]XY;c7gJW#G"=^6O"#+լ^$`۬!+ OAjRJӴV$\B9$st3r2yQJH
>&Fb(%;}1Ik 2dI1?8=;koÖnN%I=D}7}@9b[빮

;P=U#5}z~~iGp^B&N/N3H1@$u8c@ݨBr~y␃*§ 30Ҁ =!¶ ȡNG\QEZWN[iHB38r=vn,A<t4ך\hғ#=H8 f0l)uMlE'N46 ZI6 4`RqF4'Zqs/8?JBp#Aeۨ#K
}@{v'hAbW$*,H^Q0Oj/iC @Xg$ gdL暬C5 qHg➬?<ҋ8=sGbN:9Z 掼3sHj̫BYۨȱ2zsP6Fqҋ du=irr)dR2,8n1My \f
Ai'>M"PŜ.?X+Th]q*u$u -l]Be5G@ajEр 8㩫:j9ަ{ i&ƶ@8ɩQca`IAFiPm*ȝ ݟR[A݀<݋ @._yV#h+a8WQ]7"#r2&u""W.3B*E\[^Ri]:QC(vȢfs֥2]?20* 81I6]%I=DI_D9u0\ [o֣\*XeOpqOD4XV9+DpN)Mf]L]H#}~
ѐÃ\aǽCEqL3 m[%+T$@1:
3JM7qHVcp⛀&@)_+3}A#nZ^',niEGU!GQR؈͖S)78PJD`UIyNiTUaE6[ R2ܯ'ڨ }]7 |@eiCl@ \ѕV[ڳm^Հnt(\RÁ4ݜN&oTD('\5<✐= u-0GLX#^g@rfRX28Y\ZNqC̛GNϣiAM_EyFH#e<sCFk2:ъPv4$2Ƥ1⦂]Bʠ4D9oD)(E!z@ųDqd1vt24-J! s֘pPdUiKQE5mSbXj)N)Kzi4-(b⠖f-sJƭlF1(<$tSs3a=ll5<EjpFirHPe
~I#77!v$IHɂx#79yJi)-gNTUce
[QX#>jar"0ƛ- -h+&.w=KP&56Ϸ?56ogr"9434V~jĥ%QN09j8aSn2 @;֚hqB`LVk%v M\S3 Tw23cZՙ6PV qQ7BWdЯb0zyERqT>2^i}C8-ZKޠ-%lN!%VU.e?A3U_-.'Cc#[œݍiG :~ֹÅ4۶g~PO
j+BF~Un%ŜF8=A&E YY<޳nؿzFj$ZF-,hJ=ycMY]vRy''7Fe\FjHRIXgl5as޳D4&3&* g֔ř q=*)d5&tpI$
5-TnJ8@5̲< x[l>KT\\t[f].GYcG:eR,}JwN@Xd::զA1 p |90J9#?T HM`q@E^>7ZZrE“- T>4`k:Qaed}K{v@tRM~HA5~nuor%HGF8|ˆkly+O.Rn!m>2em5Dltn1d3TNA|mR1j(19G"UAA=57zme;8 "U#8'@ltbڤjzŦnv@ rGaZ:|siI (`e0W#Udv*8>3IsV9EAoVpN2I=W[kUA*Fp{ (Hdg91[ժ1Ne-.:,`g2ׂ5?&Fh\S'rAcWm r5 Rdw+>ErX , &5),]z;x;jT_ɒFz?qW##przפ$qNKs{L"$=</q!LYS33Z:Gi##rjSJezVsj|3kNz]ߞ9poA@!@s/ye?'UD \`T }2<M9WtqI#llA4Ɛ3Jϱ<,ИPVo%IPV_z@ Xy7146[hnHP̀xLb:1#0*9>{8ˌnbySޘ"=i}@䊍JлF|lRHG;j XSRݳR;M$.឴9-* zp5I]p=I)N~NyrhXsӽ)l'r@qMlgXݓPFMX
XyơrpɩXl``ld /B)
8>PYIP9=T(IBBID!
,P#SVF8<NAs>,fmrƣP±V6!IWB[#1ǐrI4A+ޑa;duFFʃ#M-ӱhd8$FxjڙQQ`}XQ74ܨ79<S[ 8?q@A<TH95QH'';' g՞)$sҥg r8$z,GA@2dp)`zp-SlzQ'ssc*6I1KMf+ȦpnH4yĨ.rp)XP'9 d)8 ufޑ׭41+'
}T9y~) qތ֐s^&%'Pdznͥs3X[ =b=ؒv:ןN.LShYV)q|\ܶUYXriH#&Ubێ0{սjZA5VI̲jZIc*r{ՍJR`U!=*dT1v"k
HIhG⺲rx?ZHcR%
9@?z>UMJ6[J@vF3#v_s*n~ [GiV?ģs<nԹ$ol*swVkҹ,圖<uI][C\^Z?>~‚x0х MtVpH'ܦM'G\|V+gL<$K}3wqّnS_nӵ[Eі$5!j]Ц$طw#pñ$w
]^k6 P(XרHZ],^5<ԟɌ?AP鮏2s\֨<5oXԔ 3]ܾIp'TM{'>CJ~6iLVڨ771.:ذ?Kf`xn+Ҋ]%Itq7_5 Fj3Ԭ籦"z@'4 YXpإT7ڣ˝ĒO\<M9 h]?'ڂ'jzm(``^j]03QN2 U1@ `UXKP9=ǵ$lQM6NN9zn8vJq(_hcCONG'<R3
[HIzL$3٣ riAϽJ…CcO4FhUq \zZs G4dԅU~tEF( ?zFax0f91zO'~ԁ"I$i@<Ɛh< !ZF(m1r<Iq(8h'2T1KP 3$|}*1sh0 r=
)lm@1R;nb}appv03hR(,p0UY
5˒)rP$g,rM!+M@"7Jq z6zR {s  :(˷fՉN#R8LP.I2FlV۔IqqTke"d7=[U(xRؚ0gx'!fO;БaҡysI6tg*ēR1HezS˱$N{1OH@px攀 z]4g@4z
Ppx)z|P'U,Wi8vBu|8<b.Hk iO~=VL,rXw46X} ITv3׊ǽ!oV4Hޢ'=MI4\otRD)SFjq8:ޅbi{.[Ho<vޡǵg7a#YR㩤Č3pyH.BAA8N@97ǒ;0\NG@-CI9a.XEJ%@4XAP =Ap)8'&w#HhBjEP($Px`OIYB.X%bɨL[5=Ӱ.NrCiUT=G #Jr%@,J%Fyi@RGR*`BQf*(#6*۞V2A늵䜊hRO''5h0qW1*jPFlZCĜ c;Q6U\ʚ nB&Tc3JR Ǖ֕ce֚69pQbeFE"[ 5eT(zRx㏚VU^.r ('jmH=kMUP͖1VT0>)sXK0jK--T(`O6#FrkJV<'AY95׳:K8UBğjٶЦM.]ZfK+ÿRkRy7b&9h[+j\Oi!%ҳ'3(R*&J3%5z.:X^!^G7wߵ+@{j4/ۤ>[cէm3o˷ao hK {Rjm^2OLʸfS)}=s֥Re:օB ܻ02)y(m|t<Bʢ]]x[dlM%f+Pyb\\6d>ܜBBo$Ò*7sBg,H̬H^Tyم'y%r#hb C6&ET>rj+}kVsޔQ^KSeaךupڹzֹ҄x ,C
1ϸ;;w;
z ^U Xc)BM6 %^I{#dxǽs&er>Upժك̗FqYRϼ圌{UI5qS;#An2bIz7o} +ml #>6" &˜w2.DXv~@!r7g,;lX,3Ok`n<cɩ-H:>j?:Zn"IC;Qv\FB<U=SCԮ{.1oI==Gۭi[(Bx1^G޲jR~fqfD&7GbPۉ-oT*ch^*%U^_=@YX2E4$;R%;}oF0l&b-H0HT=vWis XEK;FՃu\V8a)097,\ g{QJ[4foUkBA*c,Ap͸=3A8%m[LxCo&cBWtl~[h a=~u q=ynUs#8^~oQ8cUV0iq^#s`p:)rF.=Qі
2w;Fޑ?|(c'U5r- p9zp[g6)8t =eX&{Ku$0H=$oi/v )?Mf0Egnf>vBޫjo_Ys.8ᵍcR1¨|SSd)8ޫIj#IR8''rvLBd66E7hRAf$raX3/Hӕ #
sQ`IX%}9b[h'BrÎ .8/xU
OcIc?Zk1#3U9:%$(Mi?T|;w Xg1rAJRr y')R{p-iN ddfڣw`f$  i:B2Hg49@8^h(s2dsI8-zV'
qi*ɦ fBwÏsCzgv@%qOL[<R-ІEj#v2JX^:yTRӹw%Z GR1=lSВ[=8_=8
:sB;Wr%d1dm'=ӈ a#Ft`ُ\M,z1ӽY-PsJā79{RH4@@94{1@  *6+p2E$"0<R(xbhHiF3jl0XLqL9(Pqߑ@m'JcۊEž dyJM,sB4PIzF>iĜrMMfFi#ZL<`?8S Dr*I>drOu9E$J|w=G$i>,JjA/eFtrlsq buVe#`='vom_FUk{|ő͘PTt؞ԋkahYrGߩ?ZYy
($ʹT?-! МGd!A>;vT.$IyG{߿5W&f=$*|io5dXgjH +N>s42&܅P7vzl$id(Ԛ|) GR7, 6HI;:g 9-i`iOaN܎8lp!KH0|(Fuy4E)Qdt,\\Ikm`%o7ۨuk{sJq[jĽ|0F&2-pڃYFNV>åU60=Kq?Be\zGL8=i'B-H>J1#<Vgz}ɓQbK;=4{ummaиU{xQaT@g瞴XI-v=l'[E#aK^|eGKH{9{[j& ׯXaPTv(?YKi̪ >K2EQ{WI$yvexddwlff=rj!#皿onY+;w&c%xI-DTv+8RXX/pOTtw(aNDFzݰj^Y'jC@(mʌdX i
OC@ F'ҫ`;L# QġA&Ƈ*O4ߞ+e8xA_ j(X"If݀GaQ@P={{SUH4&Ȑp[bI'<9=X擶c6 -scֆ:AatF@=PiZM!&Rg“=i f(ȣ9)3GQҕ7sR1!9DO0W~ܯޖLq 4УjI&wEV</LTd@Wf@iFz{l|\G.C9{sҜH4ڕ f=z
|QAܚq*:RRwzHjiFFdE9dҠL`<ri qREsR6il.$d 8;9U)PNh쉲$8?ZwRiAc-;9 қ56[CaV9 A#vrqApyDZMib9 f,1@sBjҠUjs7w{qVllB>未X$l̪OEi$VJ%GsRدIJV#wlIjꬮ3 ީ+lFd`{u6eZi+/B+{ux~7m*jB0"MQɚRe6UV2P f?iLA4͉c4RODrx.'KVZTR±Qn{|*%fTV6VX7AMF:B= wB PH*@
3D,F--(͖8Բnwڤ3M@\)=*&R=*rH$'c PƙRǀIXJ B0ƒND냊oz#U#p? §Y-Da#cm":g⬕ @;h1Oj${S8ZTp8IRpsO06WfAJC?,l*hUQ[xMJ@NztH%f~ F=)Żwy
Y}#-Rޢe2~4½ϰ<Է\~C<RMURg[(w;Oi) &sNH2DQ3z='=XSՎrZ3jˏ"v< |K"yrGC֙)1<j9$^LX,rƕE{e=p)p
sP MA.M A2٘"WU sIɔL<jՍ 8;~$[v̅0ќ2PI)95 1P36sV}cyc+u&,tnKorzV=^me"^jĩKe؀ڷyD8Tw"{-:Xw=iaPOAYP<q<Ful46%>rH]"۬PӤn}ݱYW2)8*.MDsrKw2vI0$+NӊE#SlU-dGQNbN`R46 RNQҝeCZB4HJ Åf]ޤ(T%) $*̃v:CMEѻ2( TّRp!( 9&ij7yA :f­(0YdjO b;ƭpc
HNN}⯳9= , cj6% bUkShժI#Y, =+WOdΥ#Jh)Y&sUf+HDFҲKt㊕
q #@p*Ą( 9g;\
B2j[2n#KOYާ'!GjA)AL4Ն\zۡsמۓ['k!#کk@G޹psP^>j+3o䳞;U#ru5Mܖނ jAD|o8ΫFq֙-dVDZ}*& "1U(=]jKtlH@I?̻ITx+zէZ!=}^M5 yXANߵs$58,}CDd##ۥNH3ڹ8I7!==yٹ5~+tMF
v#TITKl# e3<8C4N?<TdrOѐHe;%qdPz#\t> K$2Fq:8WJ[}
/AӚʅ$~Jr:*/<[V-,d lrI9R9烒;TWem)p2!Xߢ3Z~mn@D^8<#ߏIEt;li"YPs#@?_'Zڬ<sd{Md$2!F~k~j3* K#v;]U,G}kU $h(
tkn9& FN[ڿ3$~+Y@i`1C8ڻ0UpO$BLvFq89ZwޑWGJ{)#zK103$Ka3 Zk3JFq֜zBǹ%TǾ)FrNAy(YjTIYls$LsLW,H#z\Ӱ)2H8zv5~n {JFю!ܑS0y
8?j`'qu3qN,i$1۽CqM`'AH
hlނ$1x~ʜs@S*Ay,0)8@?56b6YH/zzU
܁OV(1= h|YvGQɪѡ%Y۞sS1RƈgUUх YS1nf&'?Ml A(TznB94%?5 2i2x/_8Q@[c0昨H.Uc+_WTL.07P%W%]4<7ͥC#@ m9\RHjځIi񂤖 ϵK>MFnu:ޕa٦h
:u4 d#ؠsrn_zBNpO3AHiOrzqM=*}ڐ3LNiĀ#H砩1擜sR:ݴTDW <̨݅6r=g#mĊd(nPWQN0m|'$uG4 [ Zy^=I_Xh1ϯDpAoVzqҵC~%]: 8 vLT}yN-#)[2<nOi%ţGWFYqte2\JéTbݷ,Fxx5Ks$nG$aqW Hv@.<'rS+s؋Ik,7hǴ1'ںZnMEYOn޾ raZT£F 9gթ-cn%8YFpxziāy&'|s$誠r \2+$ۃ3=՜eݼ2Bt8
;6oE)O<T;_՝ee F6bz&;ye|
x'q隝4e
uR`eD6x)`OR+񶭏3NF^i`3'].D@EI?jDEgT-f;c~i-[צ?>Hw=@^̄ZFr?ޢUR`;A*8)_263L ) -"$;KvAP-C).? )8 QޘQ18*)$[xIC]!:uáQ9='?C\t䛛O~>1]"n\C=ï]j|Lm¼7lEBV}"%cZ},',FsԚgy ƖVwB8X_z\23ƫ41;y=ce.@:G
ޝ4I!,aEd3H2kh2>Y@'aO(Y g-wqibj<4(5%C̪UG
XȡI~ `͸ Hs@p'9WvɐOBP.ryXo'j;cw46:H9(֘[
>6 'FN8F$o@! 9ɠqABghu4I4t&xsM98cr{м Ijin(RGZVK4硤>wAl3҂q=(g-ҕRgFN @xjRĜsL#?5#Mޓ<` }'=X) c&qvb M x Ҍ9ڑf€Irj퐷p| p;e!ڑ(
gp LliO=" pRpHXV )c!C!>}Ji1)'n,0u5/憝@ҀHmV# ?Bg}Scd1YWNvؽ+*j ]5ϛ]BQؚ'eڡfēM3K{t単eGާ̺1,<C9e<mVi#'QYuBn$4 {
P ╈E0K)*
\Q:@XuVUbRۨWV~ܨ#6-9ɫ&%Qs E58gr][*})?
""h(UJ`⟰ jl`/5`TI.3ϰ,E卲 8QM.p:S4B)
IsQHFE4ǀ(i"o'X,rN)rީBLcȐ/ccy$i.
[ Wx^~+8݀y⧆dqwɠ{.3fl MYz8R@ V6jOO8=EzZ(
Mn,9&(
s}I{o) md*MF: UFmUbR(`OOdP<KFJGH=Zuͱ)ۼ*2(VCNGkx,FsIF6Y(L7%F׽G-E."$d¤d&0ŇҢl_Br8RyFXij%om.ʪ毥iN)Tfg=IcL2ӌg}xoT+B#?ٴE xYWw\ŸaUeKr0qT]Y/Hs\ 9梐y 5Ki XԒyC?H ~i)#UmA5s V>Btbu*9oHN ki.d_Bbj4PY3ccq119䊯[ڤ[~7V6VfljwZo&@jvS*zֵ11D0_&:mMzT_<Ӱ^k.d̎Krw'܍) !{Nm<4ycSarHTGaj;~^^Uޑ2J@D.<jݱB79MYpPAպ#`>R󎦉85F \uY%5oaQi"q_sWDۓR2I$jױ?^u5[[=~,䂪{*t#[9$&%1"xe;T*ڣBYA$ !$sVt"!O6i`qpŝz҇4(of%-E!s[n^j%$Ip+֨^$2Z.^FIZqMujط =s,4FϨf;v.Cuvnnٵx6K/]!C䊚Mr@1LMR_!a E8əvڹ۝kHeI-f^<[A"*ĬVCA hN)3! 3HK9#$`ҹSg6 c'ov9_DQlb@V(Zi:@ힴAGS_cZYoEߥsIˢ03ڪ]߬*ԅa {֖Oue6,'J M6*
!'{Zs "C2y2DWGo VP^qUF,Kp>яa9fAF=xRh(qec='d蕾{T;t&I,jv*&a
{iL8ۜC1Nq)_zc'$ۀ*10*ՁOUv6=[#{[c􎸥M1ک3Ϧ{+jcrwTd29ⓒA<{ӢGg99p^cNv8LOK)pp:B:c&O"@~ԧ=*03zF`2W JLfC
F$({KܚB;1[zI= AMEԎ(+=EVl`ޘO-ڤi0){PN|G$fb#lg* M tY$W$f\ZDÑ^@=*KnNXp/K0B=zNI펕6I{ eNGi 6%i)b% O UpT"IXnݟ!R97<gC}LrN*`
AbGZhrOZLe H*bdR@S
\(ZvwA :Iɐ8UIX3dM0#89*FJ!T<{
`HӜ FXgtH\ }sIH(8_jJ=zЪXҤc1͌♸M$w47⛐Gzx Jp4 + #V\LK>{ұI 0,vF<
5+Xv3Ie6:+B<FWBj1;Vvʨ{U)<T/
=&[lS$$zbTYiRT3.{m#|?'R](O$qZkwo4QI(fx`]׎pjun4#}0#fR@:8^/=J[f4ch`{hGW)m]goe<1(HnN=r%5'NUK[<\x<s^;cc"W3C3!+h Y c=9>PjV%Qv,ֿ箦-wV(LzC=zs^y-v\BTHVRq32y8wKY%Wdyj*HؖwXFWfߣ $ʧhn5u XȖyp\,CitHIȖVnA*}>Wh؏!MSN$BzmqJ}Z4bm6KɡkX֕_+P<{t5盡yT#'`֌P${./KA/Ɠm8D
gA{IZjrIH;
]cfE'<qZi\GԖɴ901鵳ҨCp@8AR4IL[(ۙ <5 ڙ4#-}*9%dBޢGn:V"KD\a>K~;>. 6q2JNՎ5,ǰ\E )*# {kxkEu~R!﷌dz43ٍ_Zegm<=@_p07m9@K 3>"x,z/QmN&r ۸_SJ8Ơ96%cb#A94:4sه&٢, gh=y;dV2{vEhue3E /AZ.&@-W`1Y CV5Hw09&wr V r})k6OC޵n. +7+:D>R<AM VS=SIlE,##iܒU,0 { `CU[՛DG|C`h6^]GTX&%ޙ<C%^/ RI4 椉6PDGKri<n)>V-8Nr;Mps*6ԁY#;{he\zQ &f p1IM)2M3<q@4c3i3Ss&xR@/42rR4w4w挌sL< p:H,O?ސ)2MڤcO<Q 8M#x&@jv>)sښrKXj']!H=A%FE0M1ɵ&@]i+?A<f鏡P:Ԏ]/JIg SCmx!Cy@<ci
4'cN=qR[*UJτv2ABh{T7sҥNP&q<
uK(ebYIhݓmk>(`dҳ
b0 ROi:;C׊CHR>w8<
8SŀBRnI=,rNM3?4ёR/B]$#.לRdӈhPK \ҍ 3KKvR$Ibخz}*34{GjjS&SӼ#fgbbBs4% )
i~W;;TYAM- m++Us,
0vj}ZLU#>“d2 Xϵ,=G vlT895Ӱ#9ał^94nZrE94 Csib }c=3QӒM ~Y*3YrK8Zq† G5^M>%siD(FE#09SI,P1GuɪܿII+}<)5M;H\憘3t<ɤfzY?j7@ݥ։m,Ƭ&u&1E)h- }ijԅqUty6p*5CDcsW<G{D <ԊH6Iǵ[>ªldp!#?ZaqHcEy0 ԀP=7`Cc$g})(ۏWiW!ٮ9e%RJkc“,r4*1>ͅҎ;cr4J
OJ1*6NIz!ųJ3<Sʌ!p:Lŏ$- >Ӗ@vO7ymZI,Yܚibbyc]Ni oeKpqmmZ}2A
]Yqw8D.k#PDi")`955⠶^lu*ȸ&9fjΕ~(R{1rx-t4ں0[|W'K7U
:Ս^(d6}=hjhpi1dpRϥO]# g[{KD8cұ]E̯oBI[+Ormc!Y&x9PH=vnvΫLP&`:kNkhpOw,i-乸r.3 r7TFMblY5m^քVna23ZKH[܈4Z!}-v(mזkXY;S=MP,n%XIU6IR" +1Rzֶ~}*95BU rjc~\S0RiӽW{VE8Q]MG8޳bA!97I4.?JձYnH^$'*;u5h_ӝw}RYkq+ڲ['Y"&zg2A'fQG?w1j-##5j{x8)ʁH=5О`cUF8s>ǓMv*rp:f"t]ެq)#! zUᅤ ݹ4o4gH^~j;6IH<sC*DI.dUfvj*J#J8-jKJ-6mIpp}֗Hmt萬bK^w<y=j}9jzx`F{2.Ml9&4"2X+)Q}OMMO$TdnV䢉Qr(A9ʩIf8S֪=Zn 0zg''RACBGj<͖$C2pݺRK*/֩ݑNHzJi9'5cV1L<pC7p^`?$  O9wA#7.sӵ ;РՏ:DUb2{
V4Db9U2g AڐLT?jcT( NHXc=`FAYscd;c8#'ޕpB<|"Rz2&3`+`N”1L;YRBzH:a`Hhs@ր䁸@Rdn>iY rqa4ސ4 ,HdnJQ֕۞0Oiv2sژ1 `fओ &X\,0qLv,̓W:Y"c*bI [ ԳXd彽Cg3ORzҭ`HJap$sHH4l
, nrܟ6G#!-ǽ*##ڔhұ8T`qRPvK#h 9 1Mw!?T%I'L >Թ'%GQɒb Yxkb$@KQAݎ(R{> SG OZFq'X  LF@3 ,fCI;pI'T۱6gw*S b})V*" `Ӄ``~qAoV &IoڐTEAfO_1P(nC<ަ!«L+nzLMb$9fHVI`Kc
AnV9]dƧ,i5A'%SBnqDS*$*L1ԜޡIB~M2=D6Yw$$ggc(q$b*m!-Y,l-!8}yNȹi˥%_XBcV0^>Udd\Ycɽ{RQOS^CZG,VW7N,RHr tW4eU, g0¹,Pޡ%] LI)0>*J5̯:ZZBʣvb\ӭUllbU,A{gT666S=w[hXӃzn!OhYr <ڛtr+MFNW)S[g8zDF1jƧ؋ ?CߡX0.os pJ?cTTrQ]ͱ8<t?LSp] F\?nR[NUɲ'B' VV)2zd?ޜ_$AUzLJl-׶>~/.!i@RFhpY`ydM2!wl$4u\ZHRrDrA }Gi;kk"C,r) Ws'Rrm-4'u{)h!U*<cijB#kT-a*`9^m$Liʄ1H"|8FӁy,G j%J<@K1#c?}j.Hd' hRK\~@ZRnInb\HFIvG>s[zMjS}[+cv>8V(aB+sܟoazŝMB̾9 +\OsNh y|,yc7KG6`nN<T E<zVv)e`K\3VmZ[d2^ٺ
7m d N8 $PG
9%;L/t,xH]̋u;pVf 0yTB0VE~h JJ(UU SaS 9"Y"4n h `@V[¦9QSKiŹ g`=qL;POslx[phRc'iప=3RC¯z7
qޒy PFG=h $
|P*264$($4{RV04G?Қ94ri 9ҐRzR;Q`; u&v{sڎh<4M'ni%#ڤ̏ݿj*
yɦ=PsL|Z n9n$KQ}J n%`9n<4UTX<{*l0A߃4EBw4 KNqƆe*4ty]Z QZQ
{I_=Ԡ
Jبd\eقު3i^Vs$p3LQPt>vL/Q']ǔYSɥ#Ơ>ݩ'}F6HڅROAW%60:T#E&F ,qco-j3#9O`y&?d12Pނ[ټpp0j
@=(8ځR(9z)n=)74 4q9ڪKj&H}&ƨh4{(=YBi0q &N:aChړnAS4#3MQV'o'vHT>v4 @$.)vRJײvB9EZLvvTA*[z7j ~ȶ#=[YNѸ{TtP tƣ+F]6>Pd~I+(b)h4 _ޒA9n> F夙 "Ȼ+~ip<gib OִjqXsN*?Zx;x {2$c,s2k+:{O 6˲\ õgpX8琓*6P94*[K{i7S/ 1 iFGe__<'V{\רOJM]ܱO4Tߢuu=CEIѫ;ZR_,"[J}ku.#PXqJg6цJR*X-ZB 5-0֒9u!BH6Ȣ$/?92c?G@F{SVGf=R"WzVrNB''ޢyjC-sP0QZf?jDpXi~US^Q4I%PbO֐楳EA}7#h-BǠ4@'hM&2)ʦ #u&8$
wy@$*qwy2vh!mXq[bJ5kMINsH]I赆\AA)vw;VOTu]]$8H¯ܗ?=hRe{w5bp]sc`ޑ&&`6)Zյr.0r9|㜀+6{fw<լMdZTfaުKpDcIZ7;a{Ip%JM=ñjE$l(5f%3ܷպbFVos[WX|5seBc.
f}ۍ^_4Js*`Ą듁 XԔctd;tr
`-FW5U,d9T!*H6S9MDjGAܞgHc;zn$TVIybVdީ d8<zQ-M8c֥+*03zOG#95pGm5
?L]eoaW,'Urhi=S&kCԯa+6pq6 Z
WpR݈iR#FH'& zR `TlR€tb33SXu T=jlq)T+Ihm⒀jxGYjZˣX.'P՜oʃǶjbNOP 4(Y p}-=\*p GCS1g+2> 0))q e5ɷqb~?Zt+iێ֋ E!x c☉5.ЃϾ) sN\H
PW$N>(f 89 dž 0)<.zA=jkۂ{"&b 2NT ii`>DPqN .<S֒F`y sHX( sD cR8hBn,9H`Rt曁ՏSҕhbUH2i n;{a<H.K}{_QQzDpHOu
ǰmR |@-<j@2=꫶԰#${w4Q408\dMp[jrzt>`AUK1T
7=*Wh$`uv>ڣ`[bq^Cq桑 4!s'p0{U)c
ԊRy* Bc#
T#ڕz)cx bY?LBDk$E_P;T1tbOJ2p=P3#h`:Nd#ÑҩRF~sJPsH8gh gڜP5zńڡBY][Tެㄫ
H/[*B\FETEN$W=3*Kx͌5kB{0ޗ:vEIUvJUD9u8Fes&OT@P3֓жa<Zf, t…N| z}W-i0i:1E%absBFbTۂOZl@z +4\F<HB ۿF brj9fA#Hܓ>H{U.Rħ>Z/@ǿkcY #d{2z
Ͳgw`3H,{9+>*fKFPo rWWЬ$ ף7
LBMb@|ulc=mMNNl72.WvL`T՚ݍ&b&HKu'VMeL$#@ uHxo^{gp%* v Ï=FԹ@9Y@{㩢kD|#Kkd.IkۅRwrR>osWuX2Llgʌps؞դzrx>H
0H0ԥJSIqn4k@
ہBAQi:DsX቏'3aQwxWۻ$12P5sOS &!ֵ[JmـUDwRe~fTܙ/JUvnWh
74DbIt6ЂHFڝ(hg W8[jL^E?z=k0[?<OP6>AI#AP>sUoЩ=34):[(LHȅ6m}AsWo{[XHXO 4o/'\]NR]7vdr1 s]4oeNK #{ pxaZb}9:Fwѯ`del?kCUDbWvvֱkԮ&aTg%
_{|ENWmd檨{1yi$0]]*"0}Dշn@3kŒFwH.G"K&NH֔=9I{t9ab3/4b 2ǵe<0$ }o_sb2sک\yʨ*0:i;+Z3@Kء"["W#[ NOCDP3HXcM0 ρ[Ұ=kK vv
mGbZ=Ry dĒbXO@)^#+1p*"2r)ygM1JBJA&IjH$<H@"0>0Nopi9)n94HM(=1@
=~n9(\9 AKji84jv*IJA81׊1Ih '41ړO IwրA
FC1\CRD&k8E=DısN*7zN0#>VGeP2AE4#,riX~,rO5nAŽP8Wh9=jm<17o !!ڮ<N{PdXrǯqv*64*m*\Ja@ZhFv*մ9,vAStR&_EecC,ަ(1GZyS>@p)Zxeݴ˖"NsHe)RpzX%[s1OwRgެ]\E4V @L+EVA"쐫W^Q<zz;]YIm&%#*EJW簩71Q4
}^lnKrq@7),d\
u<RBT@$OsHlxO/2M@?4RT*4ЌARt8ҎbvhtJ?"h؟AF8-Tz!]ec,(F=2sVqCtKvWHH:TȤy#=)g>)Xr8<|SV,.pYҞX=#K`ʖ={Ӌ^9ɨ,q3E5qjgz=EHTzԁB-JE 19銛 7[x"f4  A<CUK{҈Jdl{
i!5^MYA&;c塤4QӭV܍&XS$G_z1f$L#T/!c7-$<RL)BڐMFy4qޔA</jiX `DV<Vjȓ*]*tyAE9"pr)OD،Ǧi 韭L֧0)$Ѩ#59qO5\#\gYr)M,'FUe3QԶJ}Y #ry4֐}
RBNہ֚:`M FҌ`R߽9P88q 4c@1H3^)
B:KG#9.Υp3,z
euvHX硩;yɋvjwgf-vuE=԰a3`/]Cs)f$rQ!I sMS$@HG=A.QlNdn nQӂ:[dfv ⶌ[3m,,2sMX1zXD'=MG2*{ *9';$U[Y&0ڝIjh)-:[xH *[|O{F$Yr,pOJ-f;"BX֕{`)Z_I@޼ZvB<$
c`0smW)peG3p1)@BG5spI.z'bˏT?ℐ۲)fRȸl
G=PvQ pI#&|/sN TClC/®r(H0 |T<*nʡ㨫wHR z`;q67JeEF+Xk֔n}@囩W9ykgFi#n
&uLk{&m`_,\vf! (<(+A}? k]5`x>84SG1" u4`Wd !F#T
F:9f#CԒʲȄarL ڃ'&tbP*d~O+HU4j1ck2I]c'撷ii^]lrOZ1*@簦qARWVHc8lS@/!I`{P1eGҚؚ$f54;^q,4p3WR>hE.r.IPEfrjuFfcHshh7vjx;3U8"c T1Db9C$ɡ+T$b}"\p9jdpϵ R~ZJ%~* g*UP劮IBc67ԑ)Xxpy
y0}#2XHH~h
;O=)rJ~I'q`jTT'n:Td@9"r(
$f۹9ޓ<d/,rhޜϽ>-j6 M&´.?Rh*\ Ԇ/%IQcEY;u#֗*A=$Y^\*^2pA
2'Uy%,= TdHNUO~jFb2Iǒ<I#*2>iA'(]͐2~v.IFAPX =T0,dv(q\''
Pƣ$R}Eb$d⥰E!@G2Q c6vvv;[
N{j෨ޥeOڙ b=1l8$11$t=钓I;GOj%,'"GpFGJXԠ϶i pC=+ICe2[cBݪ+ˢwbT>˥,FAYg I+Ds`zaQM?5Am?UHWcH!{&
Gj8<j68FeERF&bZmSE `rGojVKffd7FPea ##j'W.Y'zU@$!EpTJ@ {Q3!9$=(e g\ 7N{#bZ)(<GmiQY=#Q'?s޹jjc3I$\N^ ebN9֞V h.ƌA!UaQ
}sJo',HEQn{^jt{Sg{=[=6w < cUlH#xm㝙%EPŏp}<Uujz1y `T)8QTE<U%&ވt:Tӭ{B_.N5?<]-86u\~L{
k^&&\ݺT׻L $LP7$8qһꏖ@?;eS0zCyuw<W<z('|}]6ܝ?=qqvsm:rd}S^Our7|UZ)P;Աjaz!OzaT<{# >rxVĤ;R2Fh,y}ܜ\BD/d6 ?JӺDbu#q:I :+ϩ'`kQ#/\<h騹:Bm%l赹t
YZiZ9yow$7.n#9Y渎O9nϟT_#ĺhYI8}NWGDxc'4'&IWV[WdKxL8`  sWC=O.rڨLs<)kbh۬62d}2M>O<68&Y3 4cE#;T[lN#!Ƒ2 .O({֬6ֺgM ;SݝJ*TsY""c]0>*B1bI15"% 8֯ZyR̻<{y\V 3\$E@TOwGTec ޠĸx$>]ޖM
s [ZWc`GNxQ2d䞂d 0B@=qL_㹡&eB <urO&v{ұ\pG m$3NI4XP:
V840('9a@9=~t|){:0bAF ?j@ *@Q"i2?)nyڗwX zR0SA&N(qbh&G5Q$ QjN8"`
[+v%$i~bX5B1aj= 鐅?9yxPsDBjށHg ז0ro\'jaN~GzVi/O<T  4zWe%Dt́
tv#hY^qJA*M=2)F3gyci׽ fUeH8C{WWoq/iV /vvERwPl } .Q@ExPU,= | 45(u{7UlѸaʟzlӶ`X+
C̤ GAMai,vp{QcHY_s;R#ix7=zRS{--$y'Z2ۥ+
N
59)I=Cӌ\>&3043$֕WJzd#Hi0=RF95FvJ,sjrҀ;jPH ; 0NUiT(D9?Z{9+"I'棖mYFA1@,sr'#Eap[]ޢ`D"}괊ː9%¦XTvOS$q
n;"ѠBe@!(<;H.zWD1fU'#VpH#6KC)F<v\d48iILɦ8O4~pcW`OIOsECI⌒F3N=xcpXӂqɥU?Jp^АTFN3H{BI/ Ա)c"XgI*TOD<Y/^b`9 Q}`wU5Y}\{楺+M6TcڢVc$by*[ݔJO(tPH*kX BV"
_Y
6Gڶ"#WR=>:TGJQސMZU-*Rۥd+ڧGkHjt'TFnl,S$楎$ ?Z":ӤG&4 ) C%l0 VnIWIJMڲ#
sV֫ȼgچϷMɰ$[r3:I/igiJT 랦kwwq9=~+eiYnK[dYIiY2G$ۊ&Qւ &~[8j918?^j%HԷ:$ȑۓ#⻫mcj8@dqUdOӏ4~m"F㞵4@ʿ]|&D sW5wgn ֘&D9yY\Rsƭ̄vE2!0+49f.fzc9'V '9=i6' pzNTE63ꪡvL*zzgҢ;RcӁ2~*2y5
4 u<ӊ9#sMh6RcR0;w4 -&zRPOT63&x5$v sRF0Tg(.C],%[$.U[-6NL< i|k/zb!dɮ3[ٵ ޳]hu;k(0A^u^|W9Zi2esa\o|)IސyI9*%aOG+^_T^褙S+F9gIH郚y,ȧ9Xv$N-K=|Ӗ9~õA)%p$zg8:`p:,0n=*
v'ޙ)
֓V4f-
G2z-۞I UB+c S,d q4U~Crp(BvsdFsyf
@4H$5+ Rri"X4`H=D#j(<Qv`0yKHcT6-$!5NzA*Y>pcs9I ȑ7*GJ[5C,}Ud]˃me=-Oz|9= 9;7n)Hۏ*FFI=ē i@No^}Alny8&uR"sHbS:4X)bTd,|;T64QASE펵"edI0ノqQ
h\-d=H5VI}$!PLOjnqLbz@MnO5:)ex(Įza _P媤H*rX貎
+ w#J'U^+`03&'RXxwrؕ"AzjNIVQ0ՏAC h\6cI=U$r0ވo2Vvݵ$>*%HڥbrwB#6m*4n{֨3f!H4]\%GQSNʱ!BM-΀g= 9ʞ;vfbXd՛y0$
YDSP-kj'{U#vޤ1:{in%I ` <j@Xׅ<U08I[I j#lRY4AO4U Hg$֍j0ʯAU#Pȩ*@nXŜM$dҡH@S?J]Ğ<F&r2~iFsOya듨AQ\bQ)QG{-v@yuSoԏr=XAGp~=Ҵfg^CrO&*0#+^Dz1=H{ƻ g?zP
W=T9aٸ'wޚJf3r>1zM*).ʋiu
w~gywoOݘ3=ÿ́ڬ[4b c!q=!W+s"Lp(އRTՋg!jO?u-B}:W#0?׌~2ˢI *Čß8W1^Yu Fޘ~4^Ƌ&o:0~j_jKXkrwp>K;! x^ec圶سß`5V}_P{PrwIki*"]vB2Ql,rI3KWS=GETVϥI֘ z\##V
ăF@SڒB?ޘ *̖wu5f4 N vj7f8_QfgeU$v'ɍd_SWsRn]><$mk4'}&n`jԣQy&"%<tK-#?\l`a]9UW-/AjA w#|#'J@LS !.G{h$Td{VՍ:J#(^2k*I7Kq$9*JP⾳r⳧`Z%s|Şa*ǁMim29fjj\j eخKD:繪fez{
|8So QZB'p:ؑ4@1F :V;rF{+H]Gڋ>Ի>{RIZAJB0$Ni?s֚į l0)<cRC czPyA9~ L{O;BxI4Aj<^:u"pN14y=iĎz}DdBPd.H d;[Oh9 B4@78M(+B 3I1E
M'zeP4ڒ
 Rrj,J *X?LoqQ)95$ (i@B11-'zp^Qw(M3RƒQQw>%sH=9M
r)Y&x5/lnf0*piL FO UM3dХw)PT99=)=i%] EʼnJMڡn Oj`RTzvH(ڟ$%E~;L6Ҡel@ w`K}$5-ѢV?9AGLR
M NP7Sz:sKG^sLǽ(`2i=a{{PЛn<
PRB*#4 DIڕ,='x~`d+9K'늳tlp*Ltcn}U9.QiI{dҲ aUnn\PF)%zD_b)fUԶClqY/I [Z bDT  Rag jZN@G Mr7TǦ+*Y$ L,Xi_S޽E#u'(PG4Ѣ)
OԠ,iJz<S8$)ܠb~j-<},Tc8F-U*uI$dS4='PXFZFUV +ޔTݪ)*)3OLH(Cץ)!E, *Im!$`NM0旷#t2P09= zԐGz=-ǵzVUHeL͓Hsf|MLz|I/)&n$qڇmIB1M'irà &i8g^EE X=X<{bLM2`94gIǽ#xSypHirҕ)Y{Y.Ž9s< rH<OUK9'<TY>4i2Tp+j>Mq,;,]zj۶PTPH8os m,F U-Jx$sK$6!&ݡoyWV<ZI\44kj4֧--]#`f=p5V`fXtfKIOCc&yr\k{f;N'u $sK#lyr:`p'D-oK0_2(9Vlp7\V$dJkp~84ŀ9ڗBSH-i,zRs@"F$in8Q=J|A*B9*[)"?!ʖ~ANy{2pFT$T5:InHQT/ekT7E6\A3 B5wKtpնd`9>Q *,<-p8MY YbI +{оszߢ~J#$S@TvǓM^9S[ Hْ#1AT4N3 4\b+ts=9߁Zrbx=.;%?No+l
mOmF"Vé4"6$7Lc gb86Xk0Q?z pj Nh/J69Ȧ bg&8&$@
\F[IҠn ,K`M rqPČ5.N1hR1Ro#
lcz]2YHl8N7nT0EIڜ[x%9bNsSE
@SJe AnU]'t <緵4N%wa)6ÀzwĂzӠ, 9#J:bpiwm90G~rOM}Gf)P|zV44Ф9UHa@P*s,[ASlp}FHY@sPI!LV.l$NzW'9zc2wM/\gIWH} u=Aw8`s«S,p:gT-w%Gp + '4+0"ci i ߽ILdaM]^5gnn*i=L8VN酮9<YHFSv_u\$KvQAAJH/MZF584"Hx'*M[u)V_#Z:HOzmYPT܎԰,l|wkЯ)P ~;ԁht8'<Tw=I;= WاiHQ:ګ `=O>8Nq7@{|XVZ_ogy5nhK!gl Eryxl+G޲<\'ު3Alihf;P~FnGz I]kQo
<O;o@k~h-YfMG@YڵV8bz{SQeigՍ,AQݕdL6@pp;!x_aRP <UzOI~*%RqĤY)BQo7֋Msfq qUpAMfݨ8<-Ynnc}ax.[X #rqwRkO.2Egp8)<o?v].d'#rvKs2}I #"LF>T!=@sӞiCbJ':Q!n]Xdw7V+fp}rm/ VivP]睨\lZ:iW`0I-֍Z; UV4w0a5tdz+8mFzr~OZ7kT\P3fkh'RCZ-oQzRߵe~J҄M'z b@WIK(~ƾBjZVCJI϶u ѯ^N=D{`U-?I'|Ajs,P^07aGN0p 5^-fY[8Pq:OJ:|?^^?VnL܎'1Z~΃eo}Bb!)7(u?j|U쥥g]{g4.F2#jS@$n:#q^T2`
# ;cJY6PXG r?qt g!ԙdʎFԍyvf5 UmVu0FYP@e?* "=I0Fh <⻿ hqZ~+'[Pb qpKU)R,[鿜0$d
'䚡rX=+5'SFӃE2d$7R[{{.kV rq
qpjiU˪p;K[`1CZD迚3-Ub^5cҷ/m4Cz6C1RbCukƆR˵ 1Q|F Rr5E kg,As7sX{NշB߰w0gZY򤣑Z%0cc#esҋOwa*A3+rml(\'Uh$#-0OӰDT cTـs$q _z(}" T<h!<Vam0m\5XeSOV#%[&ZsbFz7zxl.=hoR8""
+1#&H<
@>”ڐ)8b􄁊^ sA()K2:ڐ(z3R$B1*rh={P:0N{0'ALOjL֘'gECHq&sA:A4zS'A4
?ڔ}8ABgy<S{Ԏ]@Zc>T
fx`A cuR5;zA+i9\@l@Nñʥ
9AJTa5,W%'/-rzF}OZz'?$Q|2>(D[pÜW,Ff8@zE:(fBЛMlzUHE2j(pȬH m'=Ew\ȤwPX⓯4`N ږ)&n?ښLi8(
ERͅ;D#E@3V#GaUKqI~h$(L/z#d֑\GjZkLH҅^3Y^t5q"E[͞|rCOZNTQ<{L$TPoEK3/<nfI$.FkFE
7Z3Hhd/1Ko:(q4[?;F%ɵEy%\A&D IN31,3WM99jX S):)2t2*~֐hc9HNprM"=x@cŠc=M8Nn sLFA'H9aRFd$"8rm=jhm"gқMR{OCkҭ f&RЧ$QM<Vܖ nT更ԭi4P&4
p#'5,+`-<c
t NAH05Lk+)\ǵib˜f|YB"UEGm0u1hp
3NbtOsFf~d_S(4j,(?U+SF>3q֦-A-͖bIa_>յ9SLNX\L R67E |Sz,G t: ^*dJik-BX̦IXpx@{Mr;Rrwx'=kJt]NI+`t\.H3ң˻INEL`yIg)y$ڤdU8BY~c!I;2S[TN܀xZY- V dfr:hVb,Fql2}lOXGCM*ɬ۱cSsJI-Ѕ~M\wC sTmn ކ@@$ϿzY1Q) Ґ$x
X}KH6%[Ψ,N'UlqLe
IjIQѱ(!@9v5{(ߌumJ5ckzY)4pmҾm07ŤgP7֖(vXft 9#V-4US 0c^ps9i
WSq)>٦u9aǵWHVe)H`p{@r0uDUbcQO*a+VED86 %@4)PQB+b
.;Գ8E7T)>eL/NlMPŇ'H$3T/`= q׽ 89c;H>;ÐE5ذyy3j6|cHWvJIt=)=CiX%'yN;2' [+ұJA`ܱ}85
VL`͕<S9PGg5O^PbC)"N20+ymZgF;qsu-tb{ӏ ҅
M
9T2 KsYiSjh]b)%I 0 u zqbxDǹ<Vv:C,E9&tc`c9݁*kqb`7Z#GskdV ,2OS#:tdx=iQi
KbX0SP'$NĈ] %܌AW!Y| #K ,ؐO\R{ YAG=R{%YPRƋ14)f)pUNAʑC`pjG6S9|&#I]I#Ek C_擻qһ3d=ZM˖`D@d:$KK9'<f46 ZY$+"5G+&(T^<R<$S
;WE_jЙ!N]aY<`ݏJ"&Mq)XJ-F ag ߨZy\ޠf6:դ"<L@.F9UMĒrMA+Di& ҦĘQԖ\BXƍ}
ͳd>?pZ4 ywB̅<+Fv~dlŔrDWԘ
gzEPy'~1֢q?X84^ct\
L_Ms@.I*EϽD?In7sڜSX :@lѢ$Sͼ q$M;* bB^I'$0f,Kw;u3ɮr:n{8 =ET fŘ0@rOcA`xe zWg7Cw'Q߂Hqұ qJsrUyƽG?;:sr X~x[LT6QiY-+ӔL
JW&Nv^vHjz/ rddp|Gd}ꨓ^^Yh7rK,mRw؆Cpq
[mFSs$3s+׿|r)\RЬw[U1#9<aGy.si$QVά,ltaj"=p{VfRcd@}G>㮎',(-1n{1`-4o(Կ4Z%؀W`2'z;ѕ @Mݱ3/iucyza/pXYe[:K0U9ɯ/Eiw_1Ty㞙FDڤ{k˯EəQ$Mijޡsl np8kO Ccnw7O6G\:km$[ҹ~xqser|kV}=J jm dGj&2S.J]rF>{[w[H"@FWs_P!OJ+[hLy h6ˢB7ry>5FRgsJKMy)T-<7CjAu r@)Z2@ _[.p% e8lgBP*^i5i#n:yt`HrGucϾ<nJI:[L`e7nk-M&I-#w5b2~=Qĥcil~Ŷ ˴3ePNOqtb(nXwۆ0ǧؒqʟَp vsޥ ޥe(H=j0J)<BaJiocJPRHnN(liY#zb/s0%F@@`
E=K!tHx84JO<($t4&(>(R~9#JWӒh{߭7w'yjGbHݠ'4v⓾3@ K:@(]94:b:(V4$ѡwdtۀiAl(?zozCHs>(Ͻ I=)(#JR蠁
isSE?85 jrbڄК+{
sV}3aY ٌ䎕eu'[_$8cֆB_4#d^e<HsLS;S[>j/zSo=n=Ժ^ŗ|*;Tڮ&u{Ԃtd
LL2ޫ.Ѫi8QE(<ЁƤ+f@>*E8<Y odarxcF<ofF SȥME
n~<a31[y`sI.JTjp*i
FZclsM,I?Z8&i$)rAaj9Fxu)>9$Ҫɥ J3QsSNmhEkź:$\yda I\q p ^&krOzs fhN
:R b1csNrhޫқIAIN?jg<AaaF95+@ÿ*&50IOV;Q÷&i`S 8&ұ,Nir9˓Ь̀E+*K4#mL,jb@<SFdO9j4BCEWweG.2K#o"'VEUvB8vhcqRۄiuC`E!rP;S4֪I:ӓN<I쥡;9.3QaDTd
^jތz}Uُ$ӎLQPKȩR=㓏;#8M{On8NR ( ?;!'psDrOOjW12\Sd8֑7ȋj6q`bz9|^3x楍\کFHq?\k-b38e %G.ȥDL)2I$C+vcl1QEW.`s
5U uQY6~c9] 0(bC9ԡF~( V#i#ފ),-iUXVvavE۳xF4̡iG9UI1IݞAHnE?UV}=-ϞzRC#Q[]7dPBH=}Yŕ=}P$ϒW&p>QT<+HpR$aQE&4Tg.7ýkdrS E*=ml5d"Rn4QRْ̛)(>Ց+Ei}'ހT5U1/CMP$J
1=z(hrH` 㹨w08aE #ܞMJE˜E>eR"?5 csފ(CbiJ(و'<w<QEggMPAE9Ҋ(cD
(*w.˶J&
!Sc &AQY4WԯA9QUF0GNQMʬO'DX9ETb^!%`z(},rG @&((%T9䚹c1(}ZfGjEm{EPz$fB'Mh6.THj}FUpMRm_"!,EgF};BOzZ#L~S#&8L3Ͷ/qz -NzSB)_]33AU;{`Eh2*`櫇CE5 0 (,r#r#q"8RCFGZu=xk:K8mY$!Eg7јhK28B͖95Ioz(#N1E@q( acz3Ҋ(%iv|D AXxF'ṙ2q"MaIEP}YczvZ( Gm
{n@^u%/$*Nx6)tHдȴ6;h[HMݿ|
?Z(+]ُnT+5<$QOf/ll5J/jiP\8R RAs`{Wݦ)?ҭLgLym8,Eʥ'u+7 6'FK!zbOQފ+ oO V 2epWґ\Gޫ v+>Q<!w9ETu!k9$d,Q,A4˽8Z2dzEzpUG1(vjHQW E H^Gs|,oJÉpÁEvmqˌt^X$.9h"mFS2.NF¢a 3E@_D[Pw3KYkdC=#袒ِgl0tACdE>Eqd(ʭ%cTdEK72 Rc}ޢNj6=A4EzMKrhx,zgQH@0#9(Z'4QK^҃E0]D p84q=3Ez'Rͅhlsފ)z,h(2xEBsV+ʧr;QE$U{pOQE!JW'$vbdlw 4QRW;u时(1iO1I(
^vZ(Ҥ7Ao($lAj"l EQ4%Ș jEpJUqަ,dmkY4Q25uH\w8r3RĠQE@#4ݣ0P&dބV`&qE6kzA(/_f$ET! QE';vqD+$PH}˅S_w'j(׭<QELcc8&($z94QC)xTe 0zO=gڊ).ƻ#zbQLD;+jYnFT
phaȢbE;\3oQɢٴPjO(3Eihݑ0I֊*_e.IE F'4E
i2hZ$*cCE1.`#4QRCJO(И((%zqJZ(H=TU@ԁE
JFIFC 


  
C f"
}!1AQa"q2#BR$3br
%&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz
w!1AQaq"2B #3Rbr
$4%&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz ?" < W~ǕfNs@~б^_/zh׈;I`
uw6մ#ebޭ7g
#2Ox uݷ]߭H/ֽ7J?_%"{ g']Hbow32)bjSz5dc'/N KD w'?
~5_ɿ¼ uVd `Cgg$"{f&
~0Bɯ¼u|cSe8N_xϿIDe&
|ShZZ?߬%Øe?b^3!Ȟ>'aK 4&
赿VQ}2p~/OXPO(PC?yzʞUnIy.}מ!$?:hyš~(7k o"nR 8­3|s/b?J7'Y7W=ZW߉>+$s[zxl?WyDŽk\Ħ{Vp zqRq_%?@ߛ]<iU h}B!QL{59pމHWU<+TiG<!1%?@qN0g-chds8hvLAYW~8E?Q]܊_+Ď&_$"]ν¢7Joۆ sq+D#:V/ҽ:Y?4#z~&gjIDZ T\4o?05ysvr.s -ڏO?HFq-Oa
%qьܵ^O(L^ }Rw߅$RuV˃r)mG&$z@eodRhdZও'ܕ׆sYWad(|qz,'__s%DTYWhG\_#ϡhYK.iGd81cG/MV%OYcVmƐA?%a> ʖԿiO1ާ>ѓ
,omͽu Δyk:M0AZj_4ĸoS_}W)m?6@WO|Uqݬ?¹zڟ/:o?`*a\ͺU%^*4g/:ceG3bܳsqTMep[< Sӯ>G~/bFoiU^_dC_clJ/?F[ 4Gw^?L?Yo^?_2[TFڰIOH~/Ve]li @Gg^?_BVrɰ~/Yg~-)m_y 4jikUٞdY,8گ~-ay 4k?^_2Z9RsPIqޱymYTM6pOԏ_1*"WV&~-lz'>/O
E?O'/Oղa>ߘO?yVpWZiZK෸b)l_z~]L#/ OJp16pR
#ҐD_X`(հlF)T{vԣ^I`+֚E/cgg?/_5,ha9_(կgIKD9_(կeQego?/_VpWICKGs~?Z^_Qإ+ ~OZ^_4bHw?T??k{+Ȃw?/{/oVpWyg?/{/oVpWuP~_Z^G?/{/o(@~׿
?k{~WQG*GVpR?
](ծ[J9P~gZ^_rj~?
?k{~VQG*?~gZ^G?3w/o(AsOVpQ]+9P\Sծ?
T?s4 j_HϷ}=뼸n7}%yWLS{EC(jG?2HW?q KsU_B ~Hۺ?x[ Bd~ IG)ovf~;8OkV{,HZC)4F= ?A[\[}G`- E[M7a?5vK<cTH)ݛT#)(OjJA]M q֊6<'x[?*oST'@$¤Bj]B銸)&sR
pGO[[#R R?:GA(:oПιuR-zFN&ާc5 nϭe,*} Vըp^?ީ2&g*Mt;8cَ*z1WrRsCZո<\zTNkyr} L(Xao`aWǫb?b'a:/ܬӷ)+Uy-V[s5JT׹r=R'EbԏCRdX{U=@1A&*KtaS8ӞȟE|}.¶WY0HcSַ <oy\֣NEW5C%0AFsZ|<qj G򯨧mGY7 סTqu|HF&s?
úîwWzD9[Rw~UQ(ѳp>g.sYZ ?JQ!+<*?zJў >]hk'"g_`^xiԟNd{43dS>@ҳ.4;+B 3գ'Y?ɦkЮ4B3~6F~_Ҹ=*Y}N}?T%?ݮI#>skicrTّںp>SNGd1\WG-B8-q RImU[Lvr{W-L1Osֿf?W_ZWohIy@)Ӏ1U"G)2;8' ?tguM9jv;}_j11 Ŏq0g xԑ]nܭ4#$'?>Iq--Y픥uF?jhyQ4>ՄFDQEL1Vjw)4=*ښ4kc=)SܤSڣer#AѭܮL+V
{S
{VNՋ-6mDȖDpGp=OfZ)z
Lk7DFFi6ԅ}E&JQ&*LQSa܏ғoII6ѷޟޓF(c4`ԴH6Mja)KAI'qQEfՆ!HANhM4;QJøQEQE!PqF :eL{fE?
hb(%???b 3+7Hk>+
uƏm4?D=z܁}5'
эLkq'2jIG[kՄm"R?*&вas\b_1o>KYy
cײtEBRIII!VxRw"i8k \7,C{KFMPomEVsnzØGY/[<ғ[p<F3~8Ztf9ZKOV TaWuqki?5Gg6ƛxv4'~ pH'8\jG-krqs٘
=Ybӗ/O4]\Ԃڪߋ()a<^V7tC8a\@ԋsdSӚ9Ca>"汄[;ԺF/m-R-EÛv=jd>` ;nRe,2: ~5j-QRֹ o= ŪULt*𞦦[\&d5;8fGƸ= bŨ ~<
d]:#"ìԃ\j {>Jcc!zf
]:Wֈ<NGaiOj[ v-a湥BLM=qT VO?QV#A
^6jN΁m0;YUݔV4Xg` Ծ#n+>?} %~QT4xehaڐF?4<ϖ/JڹH_Y_xNpv?\Χ{|#kR>S.sX^e1_Kjn+
?9UQ=|>tS"3{~OҽPʹ 2|~'dO6@?J͸HW]hsV=ֆGT'LI<],it}6A?-gi$ qzt 8)9Yww:_5q+cqRiҺٴj~@:ir5Xe>h&)AI@PpGy`Lи:؏b9\YFڿhPkSIj$1dguH@|P{<+P~Zڢh;O:vkF.VEPe|p1d̆h.Z+pJ",G|^Dkѫhv:u ֖Ed!X8VUKvL :z>aF(R鿡'>Y+A"PۥYDFehLʜqU晣Ntm_miѤ8>ƾuu&'Gzw?<E
u⽷d8gWV_
GSk}Zdw2<gx]>k |{k;[`N9 B9㯊|jULUg& P @]aGY*;_NFR|NũܨLV AYdP4R4)VڎIT*$8Oγ4Ύ;8Dy`s,u(ˉ]n@< W-Ve՚C_CL$dzmu~2'{Y%dq:4p>lc5kQ S+\s4zzq)H4ilQ#4)%&0QN#"Sa#
TinG!JNq)ԛEKaIKE@ HFh1Jqm+QKGNԬ;EQ`QEQEQE$αE;
'yH.?{Qr 1ȤjõH >kns. K-ҵ 7gGLW{Ei70yi3C8fdkT3А'!8i!CwjxN}E~KEKWF_wIFR<4?3_HEjmCu
qZЈH=+:Ӗ-L<gYF6m{yzd<sVWXu' L= SVi&5J=AO WkFJ6=3Q+cɁadsFZ&wRx{AW-Hހ?6>0jyׯ^}8k>jyo3oF/H+xX&Y-ioA|v&L<_)~b-Ih=I)qfeEΓ,~t rsھ,ե;JN~tuu\zb?I6wr.n6kZxLE9]Ƥԍ,ɝrpA)EU(?tSSܣm QOcAn Fk3ǯNe@xzYԹQj SR-׽e ٩jM37H[RG Xb=i9nluvZJdʂKVw*U# aVRzĺ#4wB*jū0ƹqnR8u05~ i5wZ[䩂0 v;5:RrMyʸ?'U9k]%GGu'.eZLp\=-$U!W;J{TB{\R 2V='1jFMhviSٜ524<T 2R!
5o+GҽU+.9A ʴw9<E u?I##[POJ¶ ҹ]Wr_AigEҥ'i,qXz+_!lAW2HWOJў8Owz)~u^Ǩx^Db+.sZqǻyEƒF~ZɻH^ym>&[K (q(kʎ;C1<JvKi6m41Ƿ=5O:yV.fDި6enqR ^{X>XR(8c|}5~*t]j]f~skӃnl rS<M//.'uMZ}Ը͒p$WO;wW {VZ>&H7+ݼu9]{?|maމtvHFfg+dNI%tm{R.J@߃kD(ˑ ne8}uؼ ny.SCмg9n#ѭo5`ĆI@^8я7Lj>ݞVKwW NGlՓO%v Hݶb:~unxծKfu$Z^BA'V [ᕧ:ɨibC+9k{.pc!V2R]A~?:kko>`,a%կNP+1>SyUGH 74ΟK WR0(2>¾$å\<t?*6m#POX:e]aFyucˤk6<Fʪ
8!Y1_"8sa!hiɣݲ\Y#=6?S~5bkkIAN<ƝGj%U^աn "h}٩+9]@=𵁋>#եh,w-Q2 $rBGҦ&-i[YYi[C#,8'dyJ-٭U$dO*,q *BV)ڮ4g<ғbԒJS
ՆJc-e(\iT̽2+'&BF)b"Efhb2)f+M#ڲqY!0i}*,U`Si1V
B=)i*ZSB;;Ғ) уN*鍢FO( LVhR<ƅ$RV~ )bq 㐇#j^-o/.nl'Z)t2G5W,OPS% 82mk,t}'Al&ಎ-{t\>euգ] y=Fp^+Xự:9iᗐLu! }CqW4K\ %Ą#eLm>Ě#i6;d?42'*qڟz(+sgD.$uQ8qߎkEJ2jƺl ǘM2{, +
퍏ʟ 5m"f#/"7'h#n΄G٧q3LWy͸A>Oؒx.SZB'3J>~
K{I5-N8LE zuK*5߱$E+0uz/UҡU2L&!1>U҇~4G`+yƊbE*rlcV4WSISlf2l>jT\}Ez3/ Fsbs_pN\#":IFs֝9GΏi xBMȐ=1_B=ƀtqGOjŐ >8)ͽڗx UEY]!9bnV2l{]F:iq5Xx}'01Zƪ{m_U#d pn3d]c wQr.4 rO[XKxݎjXRpW>?hg} pK~vwO֯fйSR-ž'3Rsb}́)'H[^~t ?0QS\AoXNYzM4wu;d^NꯜL%5j(šH=jW(74zTzO/T6}e"$:}?uهđqY3M:x
jz:^+xK+ piM܃=:3:(zy˟Z[kAqOaK VRd;5j徥v Y]E6<=aʓ;{}F >BQ;+]RaqZYH,۱XK֨Sh|'z)F=+[$H~T8u#HTa==BTѵc$*wcۭOW,[XwZ+֔: ם%2[ȍ^[IOL$\-=N[x낦p˒-+ۆW6r^ d7
ӵ;J )9dKs9`aY򥩉s(! G dz[A%(S~<T>
5?5z~TI$2,yFp׹M^z<5 lI^Ri/V|#c[`82=/\zŮ/T@ʘ
13Ş6LXZ.H9>>ּgn>6{|ך-y _
Vǽxg<£7vGFQ+ }_wӷ;<Uun.4"cODtr3^u!7w3٬wz(ܤ~1ӭo|L֪K>\Gr}{DXG <22CJ>:k9u}v fBOL
x+ZnŞc-8*f= $ɯiWŒ$ZI/sHX׍Ǒ@##>|:hSOK:tr7ndgq.6N.oz{_2v1XxNk|񐨷7&M卥,3FteiF@?>S|><3oj:U:pizmȍY!.`)k E;@QUQQI9EUUy#}rrM$18R,e+xS8Vb=)NMS/_1u 8.["3%>3u>,xGVvv5\Db\ؑ>l?̠.-?*WZ~|e:,Ӆa0AG^/kgukCu$yDHPy SP:%Q*QܵP^C񵦁IR)Fimv¶w+ G.X&06U~A3Gs2_[
hWmϙ s\TDGcmGL&K>"U8DK?A|H#]Ҽ5⩴IQ"E2#eF'Ѹ#'5T,9}wB׭
J8"P|=|Aܪ½JcʾaY}i$ic\8*FO
N{rh;d/q[z6&v-a{7(+GG׮tV_V3ulIǸ<ִcg|;~FS抑~Y-b 9f32[yRw$t$lۏV2}t~ВpbsW}x}0AEFKFcEPVU?jӱQQdjPW,7ʌ-Yd\򁲑X4X)Ld\ R +M+SMH4qL+PZҾ!ԅk7!
RG~A_JV + fE8T:}tZ}3pąRGK k2kNFb-3MV-;caԎ hϸC6TFPԊNJɒXڦca<ʿy@>:'1B|1=znkյXaϖ,L8ع+ۨ*&mR WԀ2HBE-ُeǙs! ZcMd<C`#)Gl U;'9OJ%m
8l^{MGTFD.Op:Ӓ)hr::4耀1Nň1Ob:*Xo! A\yG&CpޕK=3. 2p~w @
2?dR[0էUVn%.{,åUۤZ>e! &<t te[*p%M;dol`#Gr ^EU< T!jS+ #L-oa~a#e ͣ*_[awVzX"A#}#\~BĚ?lx父zg0MG> =ݬ`T̛HAX瑓VM^u)!2RRL%r}=imgG-mϘ~eT5S ?hwg##=dg#l1f-dN7,vo}Z|wљiZ\eǖ҃p}q?זqh4fQa$dj߹yeu$9 m pfܿ&ڇ[^0 _^`cgV(sIkISZ֊joo#LSmkA/bM}zoq/L={
VSA]OZcR_{JR^_Jg5aqƒyɞ ?ϱB{G" Tkw8[, Z9=ci!4-&dfEdg}/7frclrʱ.!tKxq<ԃUDiՍoPw΢Y<¶]Ga5fJK$Qw3 r?T(+&RM'Vjn6TL=D3z%Ü=Egqik SE O F9*74/nNYYs0z8Kp.3{T|YR RcMf9fg,O)cMn;f[޲S %hƥKzYR-ӱ &i '> L]jX;6xFfx_Ʃ#һRSYF\Ϋor˸bD[>ljQsϥtFNyՓ鿵`FT'|6@TuZ{(o4}T9>ƢJ[{ԫ8=XKׂHxS{#݉xPYzԺk{ڷCY.H V'b ޥK^k)Q؎[huh$ښ$8{V=yl64yEHuSZtj뱤JKE HhB@=s Z>VҳJol+!nUd way$yC)`ZNF3; m]$!sҮ}n+]V.>ga IaMZD#)!=*dxkKP|Tw308ᢵYt?3= ,bi$>\x:0 U y"Ny]<T9x,N#-w/$өZeĒjz1$]ѱu_T.Ih+ӵascw $qЎ;ך[ꎧxl!ylom:଀u/ysʼ*+=n!}r*Ƨ,[GaJ#szpYfŚ Jq2Wrc$p#>0_\4,+&yd<Wp<W esciN4 Bea]ދo̓N5HemSf%X˒N;_ڞ:Y|D[2G+c؟Tc޿A>4|d< s3P6fNb@%v`85WZ3=@~]yrp75՜{V{~LThHe {-+Ѽ//xIt&Q6L+NpF%r`ƺsڍl-&ȑ HHsg&z|M[/RhJgs"N .Vs=w^ÐxB,Wmn~-x?1*rYߐOT _<cikY{(\p9* 8d ,;[7jXɽm9B\H<0T z%'Z2<.xfn`p k_<SῼDx+uNkg%4mk6==]6'˴l"(O`<_ɼEC7ZxGPR0qn2BccEzڝV-PÃpd}ִ|B֬u o.ֿ  t
d}lq0JKc<7pxI=s"IT,7r{O% ;JF71?}q*KCW{LuNwlg<;WG WӾ <fdžp:ٮde\_w?!,wZeIJ(MSR`ۇ`=E~<m
袼ƛ;@byJޖ
YGO3ɭ#-|u{Y}l\uk>-Gb%^5~(M-hc]sǕB~ՕZxkލJU16{fj2me^%Rc+vxY#a">j:a}fW>JDc+5Yk7Ssc):eB"?TQ$^jp ?%
n&<sQ$1/jWUwa:65C5uxڹgHBGQb4uG\mܨL(*GL1X4jc2Ԋ{bNPRjE}Z6zHq)Hu#ҥ+Rz6}q;4,ǰp/1>j:XV3HpBֱ79m:o*
}#׻x_~1JҴt˘WL8d8*y99]Z^<P՟7x7xoEQ:VpOArM{¾=?HD]DCLxۯV;mN8̒E3xUD"]B -<= |ҽZ8ZXuizi$vT& DqFHI\{A\׋<o⹢tk[&nbNc?vˬYK&̺r qPFN:qLk]*ɅS[tɶ=85il_۟/j^i2LX^^9cJ)yZ^(~XL:}3xn\#M?tC=Jx]S֎Wi2}xt4~zy8˛=B)uHҙ=6qQlѢXn.J!$i٧5\ dn0w0;"rCipeƒF3,ork(ͤ-qe[Bd9aA&
ͨjX"&y{;Ҹd .|#af%c,*Hʲ\ܶrt?Es*F MwI˂7 9V֣yַ QG-~ 9fi$>b=jj:QNY>FW
VCV ;0[!
M6;i-/LMWt3K%,U[syrI c;A'k^KX R73F/8sT/m=^7ۢ.feqUh;3H՘~_Mpj[in T͸htO ΀qHfccwTJqjbGZ4`nh s9e#)/V6E"xϭsz|EG^jy+"xZ@M7'rcccJX<qqLQTb 3+ϛ6Z#/
}AD6Lj$z`2$ђ?Z
?+%[yVWIL=*/O%..mmh?5z>V]6/lnN{Hhyl~(1Nti0h#h$Qc4dKNbHB+xQI8F*WПfozf9FO"EHy-:Ic5JŅ~p ZU֑0 ; m#HyԹ9uVX~5!,6"$>LIyK_:ݓSR jpRe1iQ9R4%R6/ oz% ?ڦK4^7=j+nL$[0랿U)6j.Ws9E 3n9gzQzy5UeޯVnetyu)r3In H+0MZ\0To;AAuTjZCz)r#u$NB)`}ET+_QJ5ަ[zjE;8$l隕nn=E'ݎcS ׌V
\Y4} rFTR$LwEn$PqZAu g7XԨظrD7S# {yIHGqR $`[b--cJ;# t]6\ ج8v}G8ʭ ᱌E)RR{r6R0~V8Q_یW>cҥKPLR/& 5H=eO/`\;Sc\'BjS6(CJҹEC= ii79O~5Zjq&oT^y<ը]HTa |4 aѸ`?j-k 8#mAYd#UuKdLa2g';svau=^G.-SE5kg?<E|4OЇ;]JFR0[>wwb?M-<3(󮦵ӤvX ] 2RE*T!ozԮVķ_K?"n$PPqOWዋ:-BpH%Xp;aUZ(?=d~EKЃ^4;?[]SP׵A#ڕˣ(Cb઒Hh_/Qj~lMMy–2yh ,oZ?|~MfQ3b1Nv7gv<QG@t[^ٴ[|:Sj&[0C3s3)slrrE(ۡK|s'cR6iRԑ
K$ 4 BT |*-x KKM$KĞ$ C!|TŘd`UT~E>aԾuj:,kVd.eBGϏ(#Sg6Isusj {(F~\&E5Õ8ޛᏞӼIug,O+269G\<6mG\D$;pqxeujG/t;Y.R7`d'$z)땯G};&cxgB$rq2A>`1B;agRv?ٷ?Ԯ<:]K!IO`$m ƿV__~X`$/#u8xNh^ ,PD>byyό<bM>oj/V'yq:tG*PvRu^Th(l~+uq3zjGekξ&K]OS]Hݏ@^z<u4x )YZLgּ1uyfSWxo/>gɎktHG { wZ__xYĈF.nnIQEUڹm}tVksTEέ# h_~׵e\H,nG-wD-NqFsU >a}?<!&cU9#4>U~gji&^fR+橣$O$~iL'5^;]HO/4sg31 ?cLO,q{έcy-v]zHs&d*E6|-}?Uav\'ވ!pkϴȄWp=W?2xvqqfu*G_7:RV0'Re^C^tqV>8z}?.VKs]*֞p>~"{Uwڶ#<Ui-pTówhkjtFTf*h}'TTh]h&Kr&)qV*6JPEfZiZʰA#,O@z|L(C)=Tpu1R妾}Evp>kh8{88!Nk?Rx3KѿM|q?:H?\`tcKTkX@@PA1<Sn,)xBdcB0}JL6UG .il}_9ZR}/
|MOE^9L1
I #}ǶZO 1[mWNH`F03ywpjsGsa)=?9:v 6Š|1‘Ǻ $r:Jg|ޟ~]ZSZo}cjڌ[a㻅̃f\sd=@5oֶ%2ڪI/L y<Ikob.i4%䜸{AlGzry6/:$j=R8*yy~(ǚXG$o ȉ YPzrˑc-q\'29>1[Y%nڙ |{YG$w2GFfWa,_jUW{[ͷk SV|{]ɡ)tFm%ع,m jCG>tyϞN{˥45}&'E#ZW$n ܾGe,~%Ѓgp #=wml ʶ1 `)նy67Ƒ-hBpg!!HqT,Gf[$Q\ar=>N9Ԭ4C..N9[v2 zx/"[31uc 7(9_/eA#qX)oC"_fVTIpJ-nrqJq{X:<G[5Ǻڳ>$.bo.Y@)X`' /(xa!U*;_dnW)=NԤޏ=w:iUdA|(v^N2ڍ֫9S3$|?ּvgJپjU-AgSxIl,"rH<Tk+꺝NΕ/UZLV-$@4QPh#B1Nǰo%??b ?3+[у <d^?_<O-0_WW[S_O_S?>_J%qӥWSc>ʜ4gt ydaӄުR =]9~zqh& FG;*& {P\`y!|E>v,ShUpކ*O$KsUiwR -8?ZYpMZhMN[ld8w-NUPNUG"e%(w=󋐲]JHR0k.Xh~usyⵅw AOs I *H3XV'C]Muº8j[K3޳ħ֞$81qfYqaOYjPEfozYjA1U!4z;ڲRaWœۅ;ataT[A*WiGy# [xJ`ԨNx%'4ggXFcrb9*{4.l.rF81VXxѳv,;Q\NC/hRdaJU#&llf d=?w5p²LIeJ;k~us
%8j^[wck&Xu`2"PIKo[-W(3U&C$T1^d*]jnSvb6R~W-yX`80HrcRQCL "A*3`xrȫۇ>V63;XC9
._Ii[FY`xYbo95KmA9 9yCB4ˌ˅%,];90ѭn ;S5k[tk˥OXW,İ%y,df_
Ixb%W
Hb$)E޹'3)]o7o\x6vlߘTUgNi^?^ m7wMCP,WdId8JY^SJOOki~
+սm.@dHL!{ö|A񏃾xL{[Ic
d-N5KrW *ogFG
M>${wEDPΥpA9ٻں/=i{&l*YS$0XsYj]nuJܐwc~0{j*<s4:%,w06;]=C.b,E<"ě۵<u%ԤBI
0o@i :5Juytnhۄ9WPz r(R0t^oŽ[{7(Je.R8<,H cedj#AĒ{eK {{Uj c՞&~_#؍(ayW4`O5>$Wps^N[M?Jxp|7W 7641ƤkOX{c8F9b.U_K(=hqdW"Cy$ϭJqrCЁzk<7Aqe\D#(ccc^u<Wߵ<k^o?u[GVuY:mԐ2\c !1kSS3NG/㯇 _Z\0A%ÜpXgֲj5%4;k= K'c, 30pI_ CQioo&fsp9ϮڽgJݖUܵ2"?y)U.H{R|XЄ <HYHB;2~x5{& ^DI^Lt_C`Rc k>*xGo%֨roj癇۷ \jopS6feKQ`s
ǚމ-i!.03uSľ3]fx¤iD^mE. nQWR
t*+z7yҚV,һߓX:E"Iw F8p m#pWSV}i|Y $gqifQuMH:Y]bvq3%մWq)2,Eg\i'aT2ٟY"[ S.43=_K,U^[\g%;WG=3)mz^u\5u`<]xmҸjP;!XxڠxkVH*'+tluF9gWI/[{_n / W,Jm`sR;~#ڴ]#MFALhb3!J3_2| CF٢ȿ0C~:~ۜ3Mo<@wc#?h >\sX\L3مf"5EsfCn!F
0V^[Oyh+rhoEwI, A] #)7`_c5[+[l?/=0ߐS|~J8ѳ/ <[|ϼ ,`W$/|=1
$"kg^_}9cvEŮaFÂ6acC# ?oz7R_W[ ?|7]TKKf#*~z\dtҾϊ:wx<Ak%ݜ'+?hSW'<9 g簲\
}qHma-K &xg`}R+Q@O ЎO zux]W|QSs웻RPm8Vm"߽߃>V'9#N~͢[epZ;̇1Rzr9s88!Xbx5Zy$aΤ9 ӥ񎷣
-JgV)5 !Aʁ!'?3XJ>/Nߓr=ʐX荩ڽЄƂgir;ƤCC>;eOC̬A^0ĀC_h\'-^xF%o}݃6IeEEoZBE{
kT~_qK 9YWkmcM&;1EP. 8$gh|MOxXo zG%})z׉^\Cӥ
_
#"RI\##4bE%+3HMJiQIJF)*J~/gOQiq<^\9o(#11o7WQJ{W6233?䇆=r{T@srNK`Wݏ%+d硥:6s8?3Qā7:{&QbPA֣݌]ҭ_h?'(bj<:?1=j==qNV$}zPjӃh s@a$#>f+n4pf)bqJpS~Jb%Kޡ M;':~ОB]Zz,'HNchs@QSBi o|*LΨۈˌja,I>#6S1!&uU*̽݇X zfHgkЧYIXR0V0Z$4B+oh\KLu4/SY?ΞTKu%=sxTVSӄU Yw5(#q5sjO3iVh,VYjf=ET5*ʇG*Cu7-g-%<Z.H*\#'̴)Mftnң<e #M@%pNVBg#ڭ/L1 z<Ⱦ52]{{AwA}qn7Vt5Fy3Xw9rRŜ7Wc0+<5yw x?h-[O13>
RFK9~A?J*fIw;ǙG3O>ǽ[QgsKN[m]]4s[*6O5$-Fx qR ={7Ȗ5[i]@Χ"0?M6Mmzo'eEmɴ]`"UX]Í6$q% m˂vN3@=+g]m;r/Z|WV%R+W1*4cs,p*s_~ ou5_Mf"ma[h/X9(= &mn±C1^!-Em
iTiˤ)"#E3V`$ ~U9{9+?Iy>ԾUG:o i[Ԁ]>`O|n|o"GF<{Bi)"A~uV!l Fb<f@㐮?o\6s!{ Ԟ凭i^HeBNQNOj(arNp]y̥YQ!F ?HYZiVPBDUTtv|56 ŤZ$+*6HrQNUx* MoC4"M>ah{]ź(D*}qW2ŁwF 2I=vZցw6<.ZO ?bb%ne#伙 l0tRVC]͈e//Fi0~Mu-Arx" &%M$c_pHS|w?Vo~$V,e\ v~RZ EӣJQyhQ"x;K^}k6ksc[D{=z+s4+ҹ <ZҕoG{U'acp5# 4,Idũj40VfHΈlwG9>o|1(u[=O&1e1 j0~0Zӵ'Mky\Ŏ׳K(Rj;wxpѝUͿnwվxyn56pM1_.<Vr##osWR10sªFz2Iv7}S BA2kϢ \5qsmdժE
4}S׵vom
6{+euǼ۱+7g=|%jr2i]˅gUlgHv#OT>u7ۢ2QHp/8<``x=9gY^Le
.<jia8muqЫV+g-IHA'm߳~5wӡ_inUcPTHY0+Χof_PK]2s2ʃ}NTjNJO-qU"zGx_M{ #
n$~J)N kgkk?WōƱoI*Epy$Ҽl~Rp:+:WC+.8,o~kne1Ji~Vvkɭ*1nt3פhg+(\)ׇǧ-gOdrxL#?-e\i^e\)Q\&j-uwV8k{v3\,T l$n6;v 8JJ~pQWӿCмvKgTB>UaɯQï}>g/eQܪ^tFaQo`(G;g`oOڬ"a73;u[|Bj2z_=8~E}=N+;1%ݔVh@uen9𺐽G͵מGgxHHytxa"acz84Xq"V^ +{U+Iuk6I'vC 3IQhdyROԎuOw7Q18鎟N+"mWFD,̶V?39ОH[:6V}t2zC}i-ߟ?<+&@ 3 GT#ۭq-m@67{z0\]>y 7ʨ;<9K8`fnZ =W=AǶk->. a`,3Z F+8t~x +sF~9" d[]Mϕ<Cz9ǘ'=߲_uov$NCr =>~g;鍵ܲZݡ ! N?<c<aMgRayS.Tm[qlO~]=w(Rs4?8>ɉ.k**ߌ~ [iՖ[vmNն7Q'l<O<Omb}ź\1i'gVyLv_+*s^J$$bGJE0ՍS"#4ԤzSHhDF)cwHG<mdՆ6ӈhaE6O#5-iq<^Kiq<^\RࣀŽ ?Ҿ-1K
8O[cbҾ+zVi_) <l_SI>zM׶[i7{SN=CN䁇n.J (O./)`zP/AF}*bJ⌞sv?<w$S7dNM>d
#0)2 ךr{݁Px907;qK],G~`z<?>d.RMi~5P9lKSV8 G:TE<4՘/1ӄjIpEd5;x܊wG|ӸAi$r5˟O΃"jVM'N};[1 GXsU-w CZH橇OXN=S' rHLjiRsڤW'Ud4f#hkeY9檆#SR.%Y;TN3OsZ{ByQpJ{ԋ/Q3ɧjdj" f֥YIjGb}.wrGf# ˻PZmχ|#aUe\Wb "31Ss)k+^bo2d`%Hի5|'M9BoF[ٙx?[#Il`U}'^1l# 3 .hHfO/I((qeg-OI-&{ەPF+ P&pl'z=jmRo.1&U'^Q%\Gҵv斖ﱞ%;}'okm'HC^Z&ە)q̹d0 AyCp,uO k+vi=`A,aX 2QjF?BUvMqkF/5}_BcwzG"mЕ_W$ȳD2XA+CMY 2 V2 ƭ86:jDԵ=jV-ZC/#UHqZ8m!f~|:tۀ=庤0R&FF|yYƩx]ex 돣1\Gӥgm':~hXsv)5º-նj1Lb UK^ۧojwa{_flvN
uek>^cq4 <ts;|_u |ܼ7ڊvB'^[=t Ex->?P`(p8>[ZuWڽK6Y|ǂ!duPKz"D1[xuok &jcpn)b0NCNhьyo[}Z}/s׼a;_͕|gz\轒)Vhddt!:k~<l"5+IN+Ap[?ޣlWJ eU|ǿ6^ "?o>l"6#&aPvre}-t`կTI5[1l -7Ku>m̦[pG<`\B5TtKRTu>eνĚ4 ,iNE9bIY3x7^u@LzƔ^;gFl9BFe^f~eز2jxcG< |é1{'NS˒{2HWH`)FOmtrҎ߁ITO<5߳/^O
3MsveVW{);T^k[?2YYx@xL]ωO LqwĞ<Ee4Z"gӦ4REpA,^Ѯe}/V%Mk 0u+f>*5$Z^ǵVIN:#|+"Go~%ӭŽƃ * 6NɌ"ߵ^JJǍ4KXz#VgvH&09Q5'ö'|/xde01c{c _ _x_WJO[<mwGOz?SQs?w˪0ny *zLNhc0$S&rH^{⧋<Ac\qk*1}c GNI' hwSZyk5 i ]@v_8\w|^縷asi" \ӱ#}sUkD8|g[=#Ėβ|X'^6!pQ-koKՄl#c_` ӿ/_?Zhѧ١Kʫ ǘܓ_H # >n෸]bSymEɕ!'qnʥ,~93G]U?CfOdu+A8hS@n oE?{Skq愀zɜ_Cxv-dօxr#S!%Ɂː+워pمb$qEaO&^i$Qd3DqFIMc}we:m'/M'y-]ZOx;ĺ>M>;خ.q,cwi8
+ 6=ᩧ䜴tM붗hpj5-9Qj?ͫ]|iPi+\o0c*Ѐ?>nC I>$%1#wX)u $m2 d=9#i<|P3l9|=>''ZM^>bUKSM3hl=7.QZ5(KXEHqN2PA'<}%ՑK&sh7# <=e4F#͍ *1ZnQ@b+L9q[1`DIKŎ&[>ms78K0!{B=H z@Gp %OfMZ_/~G [|5~wʃ^𷪑o,/9mdo6N 2FNGGNy萉<(񐧱8$1`C4$PדҞU׷;\xLYQo2P 0G4X[;`Uۑb]Atj\6~KPQpGL"XVV^E.-! xد9Շ'Vk~ޏ!m9l2G\`ezw5ƺgKq81&=T㪂ys)6ǚ i8ywzW*I$y&bnJZ._2=.z^w&W<*DpYLqҡdq2*leҢeiFEr)jvZ5d$wS2
2!"Ƥ"EfIB;ԄzHfhNVB3N#ҒI#SԴ3 &1?x%O#!8?/uf;{_R<g/u>3~í,3s$H\@b:EӨkCW$ZRfϭ.*[(xlzfu5֦dMHJ3b cN=An@$1HI(
;NS1Oq Қ3+81K|8Q֒WNqϥi
M*VGsҚ1qrF G3{!J (qL -h3>=7fH=Zn[<ԑXdp=M>k-  ֚jɠHq7)ʄʌrF3vF9E *2F*q')HS㠠]\!oLR%ʣ?(搹PͣaF $HEmQb&~}ߥ5S. @1#4t7 I=ƻ='5]wb[*7aƌs\gpp{bkZFm3T2=PU#Z*j鵣DwNu0?z|FH}1]
rf6#"WM
ٜթ_TPM8=E$K7JR9ylJ$4ñ}*O.*CEx$0gP58H{kt-r\$rTfPI0ASkr5m>+n˅QRvi9lZ6payDyGᗱ9$
**N_ rӮ R/\*jLg%`qpݶ 
|$1+K>#;[$\dShY %1rHJpdV!z#QlC;+y$q}qWC]Ա61[`Aϧ59pU>);XVqjo _sĶזVE\$
W|rFEp ?cI}:W/ͫXPDt8|EmRΊFxd=###Q_O'Vݔ:{') ey^>ɪj{ue׳G<d=K, k'^WMV+/`%\ewȪ,ԤҞV-`Ppw=>_gϴøIsGs^- ]81n/,=!zF`\o>X V(VF*)+^}Qu0ı)
%=NeVXV&b?ѮxX'|D>/[?\rCWCOY? rQiX1(e~:xvgx>#Ggii<v*
C.K9|eWB;jK=2c>EۮG$H q&YN+WYsû3QveG > \.uk>Ө\R:/pU^ʣܘuKL9-%ͦZ^CBzpO<{ῶ^j3-v`q kT4{I{w6y^`y&a *UWs.01]j˗Pzټ7!Mu/d-%/0g>}7~U GC: ڜB8`pZC@ּe>y ȷ+BiFt
}R]:fN:UF񑞠A5hU%=UR>+ ~.|,G[uuj7V.OѐҼ/Wu j}SGެT7m>>61r$
cgE|W]qcem/`!0K}_^m,_A"ʋyjHɘ *89E*#eSt5gۺ?.fG'n5?
r-݅g9ܶ;pAۖpJ䂻[վh|I/,j錗VKy/7!=j/|A2$/a|7$nN@@Gd8,OhğVUїYn*|c
$ .q׃<TydG=x//gO 5-/AB(]p!`=z]=O@[[{\6' -@穅9w.мdF7ZL)>g]q..5U_\W'm/4OPA#"XE$p72<택)5'x0(K,/|IħĚus 25$Xg pDz?C·:akq&%Ttǘܲ+ !|sR=Ri KpdᘨP7z(p+k˶ien:<qnԞ+'YBv}l:̺Ѡ u&D N%|WcS2lB9!_k09;;|\Eѣ2D<dgugƾ]|G"b[bF;v>׸}V9'/g'5|C>#N9mmbUu)89?|qk%EV1ppu 5Z<ql^|++>/Ӽa!uKslXy~_G@9ʊ 7^ڧ&|w<dn* +[k^\|Ci<hn' 0r>^}Tls_*kw- ͦr`c5K?.ZՔ-еYi
yh$^~7k6Nھ_Ow 0I * |,Q9)R JVLr>"lNqpirnIbźE
y WO{7=}Gk[yՍJc"mgsO} ԉi$k{+\RN%
ܐG=NkxHX#><:QkW>T #$P!-?+D=a37sFYI_x@{7!][PƳ -\Of2Y=3J<=}uw֬S:֎tLOʤXZvȅ>mGn|&+ԓ$dd8zyx!kW41\7(ÃG#kP-9-"{"8ލO+gw]6+#]o8ǥ< VSjվs10)={u-j! C</wو8zc/n[.pL1tϩ5='ϚWn_叕wrCU%ڪK rTmNThW:HJuҠtI:#"%DVj&Z-dWejvZc
D8S0X&n=jB)fhȍ!M ; & daޞGzJE&~/>gOR0?~gOW? c»y9?ࣶ\(قkgJky 8
W?/N|>rg*ҙ^g<34m#GNGj.1dG㌑lҭ8vUzI TۑNy_p;W<:s1q2tZD#cמ)w+h;kiRQʇrsҲr@㸡]'?W~,s{FQP[ZЖJnjmr=={SQp)#=h9& O!YS8jźCydzLH[u#b^rVb-NV}Ut}9(\3n4mBOp eI~sU).ZO6/` 9u8ʀ1P){xFDJK*1mR}=^Ov6=OvSʷ_Jm@tgY7=*J,
`%Տ9>mqfe"< DME>e2p"ʕ<g ځ78޿wU1<XqF5EѪ_.2 'y$*#7>[@+i4 HzXx4w J,[S].ڡJ!b<E9VGN3WY2E!Iv,AZvp8xqYL)(SqBNtpԃ{SՁÊcA?ƣ+^~|,R0~4gUawfKp)d4OP ؙZo.GBrk{N񆹧9odk|cl`Q\DD|&8klÍV@gS֦UOII}Эc3h;\gUseԷ2mAf i-ėPy@q#>Oem72;ad9
}A̿ixdnFPA\daNvu{ʷxtN;$aO xb!n{`%w78㞔? ?#<%[x!`ϸsN|+c Z3^q/F"5l.|7;ak1>p`IC~L&Q H?qG,'og/<8T&02:Ysmahw10y7
2N2+ӾVյy /]F#}h7 D7(Tp2*)ʢ!C,T0ש\Wk׾DZ[ y#KG#i?> jFQXko{&78Kyu#>c UA>|Cܷ6ڍ奦8M]=畬|7ee ёYv"'̟K?#O5V+nKc.ldk0<Hv~$pG^:y;!H=Z)7[ 6m$4W\e}Fۿgh5o|qeoV[$N[vG@pf$o˳ V_~ĺTUkm +b`ZQ,sl?|oo2NӼU374~\o2mF`>(x;No4ZWԧV "6vM%X@ON{ºK۪>ߊg&DZmKIى$)|kt37_[A+5ַ-5is*]{wHU&H19p\xź-]a|K-ϤEaڭ0f8@5eFp>+hS(꿮R.e-?-|? 0:}o U4FqXeTG ֟hxtլ5+ [QSC2+,wM$aF9{w4Ihv^5cWe:5B>z1FIU,x^xk=q-xաa$s',ۺT0T~g5J*Fy<BtM[ -GFѠdL+ېa]Y_GpU;PigUm.x 7>˵ȜIwy!_xپNX|[qјgR*H-3|O;JZF]At е«uz$[Y7Lٴ:?%~~Xjh7jksEs!#/؛͈1ı"m|~.1kv_|6vݮUя7æqez ]k/)vϧ^H  $nM$x6DoQ%A;ĉiY#L}΂!( T-O,r9'bOZ-躭ͧ-1-s;fR)bJ-/ |Qn 4xPFWp7߃Kp|Fw4Akڶ1.o൸3;>|cx9U/Mմ"P 4vЌj6S(RgW-J-KU0&U'j~_uJO
7uF$q\F#_j ŽhK)d)h#*7<ig{cvZżA"NXmc6GO3? {⇈Lcw0OxL$͒x%[N-|tKi-<[<Zظ;rQV#0:SH56Dّg}kE:4( Eku9$(Iq ~"q-o4) uQwwQMrCk6_6F^7 z ìXqmu$SªDlVhzMJA'Du;K wNdYhJ0 Ձ| j}?^h/R4HrYHҢq*.*N8 :kLckoaRFz^[S5;m@yޣv#v^eZϧK]J;uF:;*y*yaj zh_f$RxæJSP࿉^Kq3%;W9= BM|UFgAl|?VšlD>ѪSm+ʟ#%uc"CiѭEHw|w[MSzήw=7AеM*}#GYmu7V.\)~Od%IOqڧWnno4 ܪA-3E|k>arј<FX ^3@~.x/þE}FxQ#XK#8.>ܞ:O=\\BׄuY3|xԠRdzi<}FK9?jTRMH ]6UR# g$*ךtUfx8y!׼ ʱXk˼Uk[UTC_k+qj[^޶H-/2RĴZvNӥ> [MK9U|}$ (}xiKfX1:t-0>5|"м1uqycds31mT82MfZ.~CW^WpkRe|ϯ/N1_<KX&cXz-A?%sYk*acdy1擻g uiYw=+O?-cXf{t1I*⺋#EffFx.,B9a>ZHkvkLg-WV=
uukIoZH=u¡T-i<>\stƥJ4UG\Ҥo&J\h6J,jT+L+VS+E"SM+V
N6-H4SMRRPRw?{?c_ ?3)_c 3+ʩS;#O,E!Rם|M51&3!PR~YeS>8}DjC iJM=q_wr"cz5B:a` }*KKyn$XýlNKkɃֺWϸh%xU9j%VȵNC]2pV5ӧُ溏iiG5E'Ƨ\\FRI7$.mQM[B՚Ŀ:CUBin>F̴dP3=T&nʇ*pOQi./r zvU(3nx,>{rU'u"rjHJyx{]=vzhDA}*Fdx5؏jz|h s2٢G#XNoG/da{K5Q̒
+CORs eTl~5)
AB\Z+n:ϕN
?S.a]t ]r P9.63s鎵j:2% GՌV|e+=X$sr>r3
'8#sӊls7ps <cԂzW/k4><s .%dnpBk9bY4=Iu6S$1qƛ-y,ꊡy у}>OJ94,Vy݃ jfxzI9Ksjyn"j13i.XJvJ>Tv$wKd}ʃuYrܐB =y)y|M#K[YE.|"Mߋ>(iZLȉawIoҾwMΩqk:-*gbz?j>Ԯ`k=NߞB_ZgU*S/wiw+^膹BtsZiX2F\.zp~?c>M2˅$xU y'+3kiLDsj;7ϳhZUz֜K(Ȱn\4
vʹmKS(5{k>Z!kwd Ϩ q689:++^-NOof?Ĺ!0`]QԿj0g ,xnuI0k  >%Ěr|ĠdUXJ5G:J06=?U|?Z.lifAe lvu51u[]{V[ݹK(@l'ZErHY1Oƪk:1WHJ! N>v_?=_|c]Cڕ.iW~HR<2@H_mt]?U4_}"ũ_[87~8+i{?kyŖhl +0'Z>'ŎnelJ'kp2Hdn G~K?ߊ/ĭ+Z'߉ 4_D:`GGMFҾмG8^y4מ-M $[GM̶RbQ7(t/<jL(gq 7O1~<u x Xq]Og\<PAthfXq\l;vA*qu"w^L>Fz_>ʶim?$:3R+jvLAڲ%bh2^xkC%ti:GVB#A
T(W-LJceZ}c R}Eȵ,A`exI+K"t_{ LKK `>b+^9̬~ xKx+z,n'brkk7,Rs)O(}e{m?Gz<HYxyfu2qxy9F#4NY>e=>Y5k<#HVݶnIFa!ek~;]Wz{ow lKF&l.Ǜlbm%{oR"קy׆~0Oi??}?P{5clLC9 ;A!$de%7r(PC*{}+qi#R,V@*Z_Z⿄ۼ%]h2Dv|!"%Vi#v)j:[m^~WסӬEfHIԮ̜x\untΪ.}u_?5Zu֮ ϛN,m( sMO7-o[>[N[-IL9di#˓xIcᯎ~ &NJ8EDJJs/ѪQg*t_5o[=[<[%rCW
J2R]=m9'<Z4PXÉ&us÷b\bY!ʡ
<mZ^9>'բƃ Mc}*{Yv7X'/.uk?ڠu{hEe#JbVE;5IymqhVʝCl9-k,{?=~=kF+1&+l1GR76,$u|xx
:][JܡO3y_hԀG B?|Gt LLM>{ 4>p6ha#{5<)z%&g~@G
YsvWZuyyB\ϳ=H׵{__5K?ڍ̖-EWD9U1P !Yũ6.-!MLJKRh"fVc /!|qľuKm.V[vbK! =_Namu{mXgmi d2>)ʑj'/u_-Cw{mu^><Z]3Z+Hpan "dCc?vNūK<0G2%+Q:y?x]vO q V/@sVX7ojMx~O}˕%T|.ʪjpOK~LftڗKRDm)vC0Gl K 7HO_gD>|Lҧ7 .~.yH4\"X:Ud-|gZҢz֖#m,>F$ "ZUҴ
Ƒ+K1,,pزcrLw.N5𪪺m_ƴq]n}Yu3M%,4ySzxRMcHT&6,Hf,rȕtc? _޺ï ׅLi"L <i[|]4fH<+?cIs[c6WᾸuohI1
/m>y M$$gcדm^[5֛z/gs[@Q5(UI_E#Pqu;kΤ#EnuX-">VkY#FY0[po5"hč| i'J\ iW:Z6ww!cr8Tn"C$[>HFE7#;G ַ{iH|u^-{/]O 갛i֥O\e4BHbul?v΁]<4<g(Io]V|}y!j"{fRl"&9YH$"R7_O |[-O@ҿ:_^kَH@< 1ud'3?Bm}NjUݫsk}-81 dUg%:b߻zě[/WO_I0xtVyXnJq BH 3cbO,o~?o [N湩vl8e >PV6~)K_lH.M9锝4d$,NQ(:3RWV-;;y{>L텞~NU확"vp A񎷡>m3Y5+3#O$bV=ʬTq+~lG[ k@)-via٩PIXdG+KZMj>1h ';ۯ.0dd#eJzgu_ש oiz{kZlIx[V42n?F* 8wOOSmB?
VjɵbU dJE9),y]$O"č%Z Ie:eC#8*H^*Oi`U4[9vWV `S|a!nji};h&ݧ_C/oVҼ9]Ls'V2!s ؖmH |$tx^IF -.Xu$BI?6:ll2_\(Ծ$z}ՄJ&@B w7πu |?[q$Es tU)kd(cV 7gNNJ>sa3/#vtOM׭<5ܛk v.ydmqS <:ukз')YI_"5jUedsz-F;o Ekikf,U<
K3`Ųv ZU$np8c;M+3&|G|+u#%(UlK>q>OxV]C];R{&k{] U.q1PШ¦=#ծuooeϷhq#yT,L+E_1Wp%XOfGVr$w +uH(͵ӡṫnwǞ<ItE3_c2s\Mk_z"'#}ý8Z΍>5Hp*Fʩ̏cfT(flsWт]ϗBg$Wy{=4_KO4I=1,aG%zdF0G>77~!sai,G1HUXU[PY(\IOy$[<8e#io:VI8-޿=U$g$ND`=Y|ĽP^1'ZA0W:Ueҵ:U)LR,rxVpcڿG?dSDCϋB"Ϝ_3yAu_?CYYsA}8鷥x8Wx~¾s±\+~:3?,VV{(j!lW+hW"Kb#^qxe-¼n8,k'+L?-z~Dg䨩AH.>O7ӱnlq+HXwykͭ>SxO<W]udy,W[{q T傺+S52ӥX’ZHfh=WR
2:ҴUR
3*&Lty:̦QզJL2*L"2ekT
NVV !#֚EJVGdIL>?aL_1φӽ|(ࣂ/CmzWn=q־B7WXǥ|çJx!ryP"־#o>JgF[[-\D fK->nq*i4IaPAS]җ+z9cett;{jvy`uX^\kOvĹmp$Qyr6caؼiݏq7tuC教X|$o#nevƼ[G*A?{ޑm%mOFSBi $*O8|EIO޻.(hqn>#i3?:+oj61Ax t^&/5O HZ0|隶sX!>]*h&SD<VvINks٧fa؉&>H۹]VMLڮ(pʹP} 8Wϙ"x4m
.A!7eUg׊4߈65mI19. =Y`?/izֱzdaMePŀ:ө{ba9'hP7Kۭ&.~5,팎cN[?Jm#߈o嵉Xm\ZG5&[kEH\꺝Ҿ΋&he{K%q-a*¥~j7eLNN+*hlm -3HH$bu<gnS|=hW1yV pr߁5lUJQsNXUï૛x}r)8\L,ۙ
5mn\Z-,Zt-1c, TsҾki# T6L '}ECvYKqNIh%CF1ီ)浚leTO׾=ZϧxoE WXςƣ\NƏE]CkxnQ76XeH \hwp"}?PXrYHAsMOo
X^(2pAPAH\1؊9Oa\I=GVn/﵋ C4!UD r@=zyѵGO)&޻u =jK;]^|3~[/9;Fzl= {  4[eL#k'vuE(#S>!ebI kFFOf\cZ\/qNZ$\0ޱ^sqq{G6g'zTc{{%/4$F2YsQ
OSZ:}7;E[k '̄7)Hy㎕j\\Igfn[ƞچovS*@=D݉(i&M|uU9k
r=29h+N t rHo&G 'J^Σ}&TO4|h*#^|5ޱao5Nfܠb O `iO+و`@<+.<9g(#kيIB2G9<hѬ:*Mkree*89^yA?a yAڪr>J)n?t|28~\G3wG{} g TvlCm1iuKf\FuV8#u3==բ?2Z8jjwz,W7*%cA\$<V#oe=jz%v 3FsgsS=G$j=^~|ᡝy>`02Acv.JnhcMَۗ3?kŽ"q(@$c»iZ8Z.5m1ͦ"W!YՈʜp3>!֯'ӎMGebH=՘`ųkk5k8'# 8#<O5&֫q:W%z`zZ)_ N/<G.#EdDDlaۜpF|;y-Y-yD$$`e@8XVaO\_E-T
,P?>0*?f6%$@eBq)P W=D٭f<gTuw>'))5vNv,yai 8n:pψst~b<qZYi>e݊n:s< ^UmطBOVt_5]#x=?ٗwM'm|kkOcZay]6Yt"@wjqTJz;kPu_G|4*OCE,S2F$[q UX7T}vw_]Ǎ%-*W%,{S# ~݈f<awJh ceYi5"0Ēp?u0hĂ5GgD?K~ &Lo7KI8JFҪf7lyWLc:g8ŭ-Z_(9o_Q?٭ׂuxWs3Vb,4; 2m@t"r|@~/ "GM$Q&[*BgKt4m+"œ31yfE,#(! mENTP<+~0Kr<O<Kh_at,ErLeJk{i_'|PMĚG~A. mn&i$_3*8bHr}O[VC5Þ's^[0\[6[Osuhמ S^:1Yͥj_:uXQ.͓C*⦣#xW;|;ԵxC^}G5,'>SCe\SDr\; [?PO{=E>gۛong!sț$,1%U'UҾ xnm*OUkk[Ťj ;A gNkio*υ-[kZmwF2x
N@M ysyR`,[bjx{Fe<CqַdcDž1󝯅R]b[||F xK?xu=vKuS1X8P˱RI<)<OG4$Y)B^yWup11+.~"Ǣ\xW~2昂,5G䄹ڒ[v2LLN$ѵrbv]N|%x/g?|rAt8lB꫅{wڬ?d')F?CQg|9'L|1yi6[xQh\E'*2aмkoM0HMMjy6M#pOu}w\Hm[95ݽűʛckfP$(!%AM;7#@|qu[T/GL W20ehTߗy1k7O?/=%݆s6E$e=:v{]O8ʺ4 3i2_p6K nwK.Sv8G1+u&h:s@["2v+<k|.5}ja.juKN IT,sg{E}gY5 G棫۴:MA w={A) ;k.)Aj7L~o}jZ>~nBQ|72c!u.Z~c?a5Ť#!+7`۶:5 a_Z4inm̌X(
~B,7Fzm??^hm}/K?t9|5hh5+-XuhHL*Jo a$m}Qú#:}6ͪZyy.@͝IJ>|KrXФՆ$%G(W)d|Y7r7 ?#Gk)fL.*;%x`rb0҆Uv5o>۳z?x6C-6VMSr1^h%%gXgLmύDZVuKGt TTk5G&ekH9H>MᏈ?-u %m 44iU _Y)RVCN^eI'k ivvE+HW
hXm|Vom:}~K=SUKú&u/K[ޫmth|j)q~-,|_uy=VhSHS0*1dUg=Sy^7Ku ]߶[8VsCFrPV2ZFO=5]o=^QAoP̍z =>1j65Wašͯqo*U^pd!22ƞ[[մŲ}[xHhuM^i"`1=%N{oRlKE{2(&c%1bdc^x$,xWxaKO씩VKC*D*wF3Rמ Ezmu&G=6 s$:Tm(>wAdr fM+f+,hgan!GTe$9±a#եeI5חAeOA IJAIZ!$^k6L?-g>Po!|@t^F|y6U3\W6g!*n#3qU6Ckú6؍?(یx8(G6$_ExF[}@L˙y2+yCd6I|>2Ll1 |1p{RuSE*mn]xK?bܛ eXXr7@sFI2m?:'P[j2[&U!a`qd~ ҧE4cbJQmܱ#'xwDVYro*YdH.,E+[rέ<ߕ+.p۸aul<sab`q
@8k4ԴmF.¦1.~GB9Gz/)Q"EeҧU$}ٗ񧄵^'n1;\-G~=4, Nö7:(MoXby$WCv96SFReԆlؠ GΤ]J^ Q/lua$\{Kl:_F`T#χ|;=iZVQlmis$T%[ܹ߻~/'XR%:(݆̲1!.5ܞ$`[}ҍ݂ޠq1uIKd1NUI>Wl'w?#sJ֩FR|O; y@(/nM ! u
[icE}i-a$rA8qTΟm'գ &ls̹tV]J:b NGݐz{֍N0o.mbwRx xa`g"}،$GԱ6e!;GSovIO xZR0$˩(;W``#?~i?t]oC[k<r*GPA_i"&gK;uֹX6xP '<W_>OG^U-`mSgH VU(m.F'6~S<#Bt^aKuWok=
9T^ Y4q쬉2fiI*W9vlNT|Ef\_Wpٌdy<Y>>X<fusS|>s4idgfּ6?J5-?%zN*jS˯43-݆3עdg~N#?-pVL62 sgxˋ^O]d]Y<W[{1799zUm륹foÞ*0%+jh=^mJ'N$^]9"GJ\*BW*LWQIdn -rљXFVekQerSQYJ%~1~cNR1ǾcNW$YFWjouv^!Tǥy>xx[#rT9'KxRVGgAgD6ЮvRR }.aNֽx*.s#BNkI3xgCɽo*M6P HhS}Ha+x3n:^ZI2% ȘIι%Ӎ^m
|/K\D$/.4b0 Q]1MNh]K*E̺zjv72HV%*{T[kYfʈ
Vu?
ٷ͸rF.XiIY9O-+#FkU5[{[1]A_Nj^X ooJ}SL0d
幍l4klp1ݛdl\v*׎%- {,H}k'm?Zb#PC6x5GP8&דknPө<jW0բ%~w v'| w2ǩXog4٭gv@}Zi5ݒ85LL{v(F*~GVlSGa4.xfHUgpq'ֻit20Vy|0T*m2X$=X5Tnzݭ|Q`挜cWG%_O£$Slglcv@X:Qgot91J9V9_bK -;}C4sdea:}Au+G5)K.yIM/Q_-ϗ?+=T[KHp#w(1=W?lmm閖p-veS
HyUOU=KW\ZLs`%'jSrsץUV:Ewo/G"y L=@pͪiDy)xJrARwuJ\ui-`<r,w r G}w !4I2"F>YSH=~#B u sG Ֆ"v#9CWޛ[B1Cs*\s |d>uaEazh`1$~F[M?BQWUc zR)>W:e&HFR4*H969*3xcY48Ƥ I'aqi /Mo,3l<~BÿcLxi!F?eڃ)(l g=@`][m`>+kbF
ǃ$L"Ifle7gf &BFr?*5֚*"1Ux$ SN'H5ڔѣtX7O5W^-zT 5ʓKxHa/6o9:X~lbKmfTUq>R߇`g3ϕcPgUaܩ͝ m@̲I#d'0~sGֵ2[ʟum6
^jYfkXVp%S[O]WO|N qc/ dzOB1ؤz
Xdpރ *<-]gT<fM-z ԉ~FCxnxqm*~l f]V'SE b>2W7P^_GSK8<cmjrEy.O9|ϕԌ{֔Ln< {A%ו:Bkr!yw5by<ܜd'<dZ=va~'X}j{CQf`Wc#׵_=Ðq}Mo8#Uê
=G.q6Fҹ)u[8\eR؏R;Jt6!3DY_yb7Q+jV1*(+zkqgg⏇.̺NԴ[r F#ks^= 8Xqb5e8nj #k_Ke(6f2
)i3Hn4φ)~J "B}U(hwݩ&,K1ܮA/6ͧ*]XvᏉįDWd;cetC 4[s2~To
ڇOk_[_xoZ]L#+VR* [ uƙ<5m6+ZoKv1"Cf@6$9Z6`l*WDoG]\|6~7OVԠ4FI<T[r8HCWuC\
4O PI׮|It4'O.ĉE9t"_*`)_7}{:Ɨx-m2tk;=xe222s6igRLDreݎ0e>fxo4^qWO><Qm3I5*K3.9a.FF>&|>ք{'^nߖB#˩ؒcn
 ί\ v-[KX'(p\͏Q"!iOim_ "EεJA*UEuG!+ˑ]v<ޞO? ~!P͢|t/2q6u=kBaVH< bbÔܾ Kڞmꎺ7]?
IHPyMt`іq$_i
|ykIib5#H&# АsSj~+޲K qu4KOe+ tK!M)+ZG;AZMl>޷m7Ļiv7B 0ꖫyn0IrK&nZ7vOhڃi.܉V,jidw*K8U<k?i-u4 |;R1.pVeq7:~Iqjd_0k逸ms sl Mvfo<]KϨ/<-/q/|K %-{hԬ-aBqnsrl+ ."_xi+%Y l̬&f\UeHe`ggGu+,ŒGV~'4]"< 烼CymwavU㼳F#m
HvTt=K;"`4&QmwofN (cq qpðBY-bBFBSjvISW~3R1vhɯQҵUK90ѱ$!KuMyF,o&Ү$< ۱, 7(qk7yr;WTrZ_jO&s8bs^qahKig !$\cwC-2k> I,nŽf!uC̑H>~VuUR+
U鿛,sO4Kf~=3j x>-wZ;(72t ]69/>ݟh:g[BvQ2! 6>.c=zg}j6xgԖv,:]V\6 X<qBLY2hp9/eWO|%MfmRFodSpLjxʝN%qr񒧵v9[k/Χr:K{[L@7``ה7z%%9Lr>} Wڼc̘Iwd=Ag_ݦ}lmǾ1ᘼHbZ[xRVPs%lm$ngYv(E>-ł̹
nj0IL? kR-nѮ,p! d0~HEh|6>,;$fRv\r F pqՇ-}Sm(8-D FP zBZg2,A'E! HuXVձS6v42uճBK/*k9 21]^Lg_Jў4^Zvgk(K 2sO{IJ z8j3yYͽv 4Q E{&ݣ${mn&|dMO\X .#32 ?墐sj)!$Vpޥ7/G4S_8PT@lQ\WFm{EG7<IGۓJ˄wqUȼ]Yַ!Q$i!Hx:_wr#oۺDڬhgWZ!#ۧ'1跺;Ef4Q7Rjp #;I#EŻJTҼntx_].1--PQB=/~KZOIj0EJ`<gt<??:Ʒെ8n0+۬y@ Ϗt͑>b4b~Ͼ)yaWӯƫ1XJoZo)VWaf%dQ;#c񧂴 ZGrEo9ic/U
g~ao</c<=L<g*1uq8~MW1?sN8'h1>L;4=vNԢ״`VG̞$L~e+ѵM68kG\B1 #כ6r^YNѶcqDñxMjtN??)E\fTimNH N9>,|Qī둭YGb[gr0w|ۺ1Ν_l}1ݣeeb@q=juֲA=NQW36Bǯ95Zp}Z_#9^{=q~z_ >*yZn!
_cG9ȯ#9 ']fIo1Y V `#~~_-׉Oa~-ZWPvc0I1U[QG˸ǃ,/y.MոU+t75m,j,s/nkާZG䕰CEđ]g ?
PPNεk[1⾫/6Zujae|Lj:I\G<їaχ6oS
>mOӈX7g-KE+'+.}VWvDg嬛C^gK8Vl}+>kj.lOYw'+ɭ=z8fhOT#]uBkS^eZ :Ē#U:ז܎VHy(e<fd)!>^Ht j6ZJY:#2-1uG\FW?w?<~ 1{)L؇(Yz֧/Cپ&O|_**'7|5Ń$0һ9V>n?d{`Ovo$rK6_8efvK0#fǹtbBTzdUkqˌUى4P3e../^v5-U#C!S:ZY`-I,;Hʐ0
)Z3j7Zo-QHTҮ2^cT{ 5[J4rxmBʽk[0Y($d?
Zk$n88&X5ߺ9ZВzՋt2gEsU/ ũ[&2 vAxTR1ϗ
HЩj\ȏd#7þKV'<WUɅ#$5ִF" Wu
.MZX29j8Ls5yN1~+Ҡ5hf-tؾ!GȦꥰ;rû^ "7 rV>c yV:tRcֽ;ʹԭMr$y1XYh1H`J.9('Qz=˝u6׼cex"~myrpRCp@?| |0񮡡k$HMncx#$ `ԦUE!MHjҼ[}@Y^mEw. 8C[D:.JQN?-_xɦ>uXhzi {+
3gtMʸ8?^t.?v'ABiMmiol[t2D%mŢXqpsMKP4}nX%XS$$NO؊g7PhF9[46!}vVv5{"!BͰdh~=KڞcQW-+yyܓ,{>ޣQ1Dцߝ݅!_iӵ-,Vm=ޖQ312AqIO%Ƶii ";)@v^ᱻO>%][N+͉$Q<{W' ITO 6w"FxRd fgKm(Q ?H;a5ᵞkھ(dq>Y\Y6W^9wjYk>>iV3qzAx#)aK0{VzExyʕ6}/eKYZRbg򩢿-(X2WGvQۥvRDy$f*G*>'*9P'f|SJ9>.RiGc͖qQMݞt֨c x3 lgi.=z.mﮣo 񎢻mUF
l+oyY19#5OGN uYD[‹̜1'5zTnփyH,}X
넳tHzvro8q y|K2liU\9\\jţB(?s9}n# zn\exZIsy*NRŕac՘oS}8tl|.PNG.XmϧL5?txMM?Άe58<ƭZ#ZN 8ȥPZ I 5HiR
,WE%dm}ASӯ*cL0VdlTsϚ[٪%wqI+X8.OerdV=ƉيܼҢ:26?Jַ:|,xaOD'=N}#)SFWg8]@[{7[EHդk&$J̡)"ݶpn`ibeͬQW#ʘRXM}:3 G`yCЩ"--z"}GsPo.Kt)"[ad9ޝ0ɈԷiY=Җ$ByYϭH7lRù6&*I:Lvr2UchI:2b? .h6-Ȯ.xtj( }+ZM:owFeWz$Ό'A=*QGFLިzU|?v"%?cPe<l ɫU?5麵ߋ-ev`s%rָ% F$;n+b90Rr]xs^iυ,}qXKd>=|^sM7_=W/ *8fR-e} vrFe0<g\kjYs5we=ᤍT"PjXb`1rITOtSc}|}XdYn-e°2FAL/&dd
qA?y4tTIdPl;yrnrI?:2N3;hR9nPء* H<J_iBn"wcpZ022 zg_$͹RH^)@⼋TShT7< 4[{bO 4ѻey >Tr.:Ob*[{zWGmqoˍU8;dՏԬ Rh*`ZevhCZ݂}kէUTSKCDdE;YEm$R,K Ü9~6jx;?? 55T3*qáۂ7#Q-=U$աIla%ߟyEi2FbKf{tg,z^N4ı,@Y <о V*~e"S'ϥq<eᾉ./% ^/4XduH2eV~0xZSӬ~whV _IͧNBc0!]c%[}w$W5hax׬G|#4L.#Y$R2A^oz#ne>3O|t&]gm)cdy9-~bo:;/x>T\ " nIr8 S*%u~)[Cƴ=vVL՛u ՝Ҍ- G}w/<%I>qtSC=s|v<Ƌ_-g߈sJCemy~|g}cĺ7n|4-0糕Rz>yl3\ K]%zzO:]yc0| Ѿ8~~Ɲ=қ3IS4T8 25kqisiq4g7@s{t5gG"]WB]%d
I_22
-c':IbuE;M)ZK9&/s%19zxMl:*amo~ `{ KK+. nNEq*| :^cְ \Iuk[P6>BpG97߱V8gⷂ<)4\edfa蛉זx&/.^.AY( 0<6qɭVmr$iA;Ŷck63_y>"\. x·I85V0sHK0U{GcmίT>匍HrIN*zxL
!s.on?xb57GBL*ݚJ ƿ _^"$xf&aYkSXpç9`W^UM3l^tg*5ci-g3QN5%pm׷
Jbj:JȤ}+rlBt_45 LَOEe'䯧C$Xc/"ca磃]xUA?-sf3׫!9X]3c;4s?-zwuc0Ã?ݬ5]Xc#me\サV]:kB;U)mz\YY{WW z5-Uں 9*ޢ,wӮa<[2[<Ui- pd<DvZ*x=}+T?roIcNSoQ_NהWUMy
.?Qn{Wku0X\mi՗e`O'ך|1ۅxTm3+fcP1:Z=r#@c9>%eAxJ*ˏMW#Y`h"ypF鎦>w>g6]n?_&C2F<g*0(Sִi"ѿ%Pޙg获 `32P>6sNNAc'}3XD9#bW.j}Mo.97q<V권gM'ɭ:MRtL'^w&3[W0~]|]1ww9塉m*F25lȮYEk@hܾ4WV?O$zWM=+K{BQ*(ηDr~,hQX`Pzʯ'NK{)n6cH==H,H-eNw*}R\!c .oi+,ms?Υo mfDCJ
v #e^7ny_1bBCF{FO<_X JmOE56vyO,%YTgxw–z q.d[RFԮܳ8#NMٴ?E+ٟ>ֆֶ7vi@ ß/ŏ*//y<Ycq :vdx$wѽwi.<ki +:Yz<x/"d\]uqR#3t|ɣk^,]o.&9n#9lc<;O:_${#oa3rNJEw뙡9F3q]n|ILxtkСMRI?8~F8kxoC#=,b0iPt no&MR7f7`+՗>motH_Ιxw(ĄleXVA+RZBmޭ:> eRO4A>W߃&Ix9k&2 )ȥX h̨pg]iw9`)IZ*BuLj/v_1ِ:;$RDpA-KԼ]F[h{>\̘К~"h:\{q31d7׵K;t{D<œELDwf&d^VR`@YM?F8bAD=9R5.ľU?0ٞ6!
r~?6AJ3Fm *r?$c£pzDC;c8Bɐx=iV=jy*^7ޝT؏G0rH}je#?+rXu7IJC*( Yk^HSaHjkupl^i]B+?b|u³rܴ<m$g=G̿TKʭTs<hzekI}=ղ :0OSиKĞ9[Pn,#k
eĈpr3Tq/r1*[F8v 3AONN&}SAu,Sh 3 |ٰ?U@McU&owm?ݶ1IKx67ᾔ)5SRЮvⳊ2sxo y'5Rg”;չ"b6.{gj3Zf<7zT]H
gU@)7{Uhۃ!R;6)XΝwRē}XaqNGJ9#|ϩf\Om-33CGֹ*:4rdco,RO h2HPٌ}~::⼣Zv5vWG]7ßy}¾#t·o{e{1oN^3ŸrS\2i=G /L+Z};A1mcᖵٝ&YRy$q!ܪFx)Iſ4F.;i|Օ"BFrrF2OV/\\*n:nF}k {3ޟ&g|a _xƑ(
Nn:Kn-VHLr} _|.񖓨>!jM6wе'oe#67O~S} zsi`_٦B2psU ߼
s[3 Giy%F l\@&eWzz5uF8(c_kVf9-s^e ˧Fns-%m5r:3EyV7Vn~h<aAj]SGеLb[9%#3mGگۖ-"6@8gV262F+Ǿ Y{wxeQ0VRURyC+BG#_ڎ{nsNq]A 2
p9<~>khr3L`}64r^re Z+?ݮxw[K7U4+cul9^4{oOߍ~?#nhX܍4L%Tp>\Y?&6uLҭU4Ѣqg#$t<g%mk:)ʊNOtSN:h_`sN7'UuK_֗7]ۮu3_j$<;w9eHC{ddt| ad. ,3pO#_\u|e:|뛦> 0 r=i$ExE_qzֳ> oF <m f]yD08L 8`g+gF^d^iliv(ʄlN֔簪|o PxK."T} U%sFG~*|RZkbkR!x')T8q\*=n:/]xyuvM䴌ܜROQ߭qA<+yz# i *CW#U7Q/\Vfyr+ΜB\f-mq"InruS<gs>%"/,ı;qϯ]]]^r.EVc_|kz΋x4]09\}<sQ{?~$>!:/+Í*U1-\;W 1?VWUe2r xM(°w'e>xRS$G'q?57Sq%ӹlhʖ.֓__;Kl 0\-tzl|W8;AMotppG\W
A+s֢I(燑W >x7co8?Jx@̱u摪P΃ (?-sqa<6ZAR~J-\&9>ukȌig gBaW8Ok.Ӟ]<VE͟5֠{T1')=Qں[N=;WVүsu&کKy()1ګ<#ҵڪpTvBmb߇cvcu;+bj/?>a#>!Ja:{ ^⌉$]U޶ |޿
HOC]d9k[3} Hc,Gk:{q~ q!KBsFI=3S}=}*uTLzTP
x fYua zљCRo`L)r-3q=#/ʘA')Xk"GDF.EsUZUHMHѰ=i#;eSu=,pW#{p vFd]{ְ+u<k"rDCtVeލHe+y߱lm9mg3  2̗Z\UBeOֺ9A۵s"KG% f݌Er +&K
}Zױ,7?N? RvwNiCjGDzzu /a|N{3mY.a$jOa\]|=43 Mw e+6 ϳgj0k&k/-<E \1@{;s,x<SmW6F->7gh)n5lb$H) /Hgc} w4[Rw6mx]f8nPz;uN'IjsNm\PQ$*]:Otf?,~`Tս#EMr8Vq#"X1湜&t(vAP>t
D>7{Hxӥwl[HO-SmnVXq{iBicfci( )$RW5[SB8o,g6Z`IɎz4*M7`>ى巾n]}kʵO \MNW0Lrq^slrOu usيXIe7]kJWR{g[ktHHlsO݊nRN:WOgԵ9#HsܵZQSÁх}&1[{HS2 m^hn%XxжA*K[+8go1miWuP1?s8K- #*x@EPx}_ vSpsXBT,|ƴZ_^A=$b!SZ4f/n FfVfn.OW 05+p ֳ7HO<+&)2#&V6l:TD ;PAsJ-j 1YMKWHff(ҥ(8Qo\ui"ET9$gkF@99#$QoFm~X^+>jQ4d $dk*# *)!+X|ZT1nH{G}V2Y#Q:Jh{Ogsn|ӧgG۠l8!ں]{:5[k~-&(j#E?i 8kgQF=G4;ꦻkYC|ɟ;q}CNL"5"5pΟ<KysxӯF-l;Q'h$cU-uD;!̡HeoݳZb;TnDZ2br~U-z֗W!.gcKJ_KyOrcFè9b;y_7dBOϥZxSH)Z)ʌ#FdZkq5lz~p2>^;F}=~թɧpϥz]hХ}"S\
uM#SѮ䷞.`B8j8|/.Zw[F֗ F7]GU81 8>ájB>1J(_]k"KB%$'8y8>#MᴾŻӮvwc q^_XgoML:M`~YFI6%VBWs5#wK_eyU~GjZ}ޟtK#Fq?{'_=u7Aؙ3zrs?|(%+m#*O+lp.@ r ?8m͝լne9|S#H`Ty|MiT$PZ.Vvo<e'M.It[ˉiAB݀1<G|@ݟ3v.l/c $20R#Wޱ_:%tہO9_o/+?SŞj֯dU"բg)zW DFRj.h;K}msl18VNKIW-l^؆1V ݛDŔc(.
dGo6vw']=Y\MR@kZsqv{N*ZՀϥxw/xrjZj6vʂ\bp# .HM6~7ny,p˝7c P° /*W{_oٷ@.a V0Yu|#1ǭkRhz[‹+Ekj<--^Jip(TULB/
; rMw3Ix]u͢hC֩!/5(0/荻'@[<wVTncw%X`5$d4*+NUCF<cEaχ./f7GwBFFG U#Ea Ԯ2Ӣ{TA>WWvGxJtA?#hbLl̯! Ġ/vs=H@ֵw$ͿmmbaU*H<ĞyQOw,#1$vo,}'זkv +t*lD: ŞW_ėCNY^W~3qcPA9Vuc_UGF0Dщsj1qr: rIވ>E_,n:dՙ!(ʰ!1^}x~ݞ N ;#[ :)r l?Zsſ.S̑fWd }ē?Y48Ѓxd`>aJonvG,-m ~ԟz4efrZ)mxv&'!n?
6,^x|s }:r}k]fn'5GQX:l&gYqn[
q};5W^8Ì|R6O dgwe
%Av.7e+@ӐPx5ٗur-^vkf= ؍WNOz:n43+WIj|/ t;趺 A4@˴@Hc^,ֵÚ^ [%@; 1$ch@詶ԞxC*pKm+J?ϷQ@CgC6GLًu KB|Ÿ|&_L4AM>L\@#КƿzΣ/VZDXoJb"7)A\m`>yhUݗkkYH Q^f,|{>ޫܼ0yN_g(٫۪v󵭦4I(<W)[ DEzuȬWIeXn# qf|=_F-_B
rΰ)1+u7/ujRw0F IDVd%#UQRI֮&sorbutJ7o_y6iiuo0иtqpkͼAwJWV>ú5#Z-Ń1hbG$b3m&V!?J:uO<L+^3J׺_&2
/ k<CbG^}`c+R5Ѯsˮ3%݁wn kOxѹx|]Ց>Z:XV^m\9l5uwXYdg*=j8xR}+PWVFkNu=_Oo:R;gw}?wE~SV_ޗϽ»Ѓ_
/ Oq*3'&+k҂ y%q\ɷ A|V?OxѦR20ϵ*ql,윷"_ V34G!>@K*
=3T$Ɲ$<^.9|֚6lcS(4`ǖgK`abyw sT$Dpש["F_曏`sEfF
$Ӛi #5Tq@PpIw,r3L`cz8hv|܎Ԍcc@^C,6yk-Y#GDpҶŽ9#PʳBçq[.s]aLa1uze063\݃?.:g30\HĝR~hߕj۰M[t i+wOb$يמ0EZքKfv4$XdWSӴ ^<Jˡ^}T1uXlG( kFoi8Eehk=J[[s)Ϩ$TϨлy3=sJyqKCVfiI»wuk<M__:|'}R-,$c:#Q^aYñ=<U#.e} ; ^%A#O io-]̠g`~o`t~J-nr!n#YiP-~CqդzD42*Wf )# SMK9_.6z6Cy5rN@cz3v^1s]=+f]85f"@H8*{619L𥵑1w?mFnqz<[YRؘ\=+2YccȘv^KI]H:nx3y>X\n;Wku5+YXo$q({K:zτԑ[*?{Jj<\Utyq]FgǡF𮤱ITKq,ˊb[FI~SmtW!?=+V9cxvYc>1ڼH%׫7p³,Xns^Gg=uAҮD)1 `e8S W}2hn-d!idUW8'Zj֢M ⥎M(ƫYshRuЩxe#ob85<;N g7:,؟u"\;#qtn!8<k$NqJ[xbOƋy20Gu aZLo e#O*T[zh DOq["[lanL8ƥY=qM,g㊧!)80{A(WMڂ$;硖b"4 E \HqkjW;k\Fɼ Ek607Qy_;Vc$pNeki %*=)ntwg('J7-#p -WQ$6S~cfBONT>Yla\z֝:ioJ+;xՀ$W$
؄[f%V~<}GZ}UΫ&tƋJەn%OgC)끪u\bJ(MPҡ,vSV!LVޏ)>VYwPsW-m&XOk{9#$ǫI|MvռkwhPqWN'ͯxRe//"}X\aA^VQgm6G<L.<H6bcDXɆ?:"\~hݶ63S#]WZ1ԌjŦmIc RD#*GFVtY׎+|ocei񵲴vT"D~dPHʆwq %5{$A,SX<r w ž"$>3˺<`jXfm'>6_O ZaoBmL3ld4k ~+G]ǶE5X$e+|d0y_:N>5\t2z%i}3D1~G"mo\n6KO;n7rS: n =^UUiy$]+O _7ڜخp3 >`u7>=Բ2H9x# K ՔɥKU[tb+=EnAέR];ľ"Ҭ$ҭbG$F+}8hϞ T[/3׍-׭-5I﵋d"ﺷupĖyYpI89=j5Ʃd U|`QsOPx=y5φz徻?MK{m-͉gB7y>`F6R?:Uljm|Wvq"uFd][QIM|:m???Tz}ZzcuM x¬RV9ovB{A/[i_4kmL[lX䎃Z7 ƋAq]VSw$&to|Hm#ɫ{c KfuBK'GoiI꺳-#蜤lsm 33EqX}څZo*97 RIugz\2,M_KC g6r$UE$98Fn8|+f|SKuUEޯ~i[ԟh;EuOt: T<xN~P Oj'i֥2jG8# &8Bt:~dQv!(vӜ(;v{dUJ7jzB[u俭h_v7WY,Ћ?hQzͬ`U sf1?!Y|Us| u x~Ye'`"'( 0H`0Fq~SF㌶>aNy>5|,A:<!g')i~l @alFMJ/SAM[pMm٥/)FAt&w6
*$ܶG5ʤ)#g&?ji5ƍ*[ ݎwnF]'ះ>C'#PH %cLnq^T֝.(ϙoDž_yռTQ4]I0[Xɏ2x98f|SxsGξ]m7S#
ujCGģ `p;g|yt4!,ĒI^N'W=aVҞS_Se]ۭE YDHa޹#^<gv{0Fsk},xvw\ʐF#ª}{ÏĺzϊbCI",F84%-5r*׎</O-܁ףxKb⭓64V<1<4 ߃CмV|%2V5 R9խޥ6I/c>*Xn*͸ #WC)?3ʯVzQG>|5l#Eg>$WG›' o(|Zw9$1@{UGKZ^ꚋWm7dUR>/=#>Kc) +Obspz8ס
y}#|fC~2ykktji'Sk:$EpgL[˾ OP} ׀5{9u ?Z,0!C)1I˞:.Nx;BmcҚ x\&(ԒG XJxWijj9suZY_\0pr~XX2̬{CVwc/,.1l~ύ<.-xD*0Qp;G;+oê\چ+Xh$>ݷWŧJz[33.Qۆٵg=o.zM%̧t`6:d[P%R qAt]KS'RrovorZׇecy(FⱜڽhU< sھN̊>Ytʛ<LB?
kxP6#+̵,߻#𯭡xmx+ǯaB~Zy?-T馏qV]x>]c<VEͧ'DbFvgYqk׊̸fZ u}&KK*o</;+,[Y~_?T;i?GfE^~#w}!㶠'C q}Ƽ&L~t"ןqbfH+Z:n{
uw;7кNH%k3/
nFR"]OXHwHc^Iq)&iE3pVlWqM*_25$QʑI$*}<
jT4@d;鎴#Q
<ըv܁ET1u#ӊQrc
Rh-(OZ`{iHX=Ȭ=ŏV5unQWF{8إ+Vϸ8}LO"DW`
=i]}hר^LAܟZc/`e FcA$V0Dgs- cPg^|?n-.ʰsSP2%rEYA6/x\Alեog)Uy%=tnuP|d4cv"U{?eMt<t_l l͋yJh$Xk.x4Ad.kb h7VfG`64,AR;0<We 2EHqֳUo>^;F5s NT3!T+Te"XƆ:G9;]1~otKn*S9l[\+]gBǽe:Tq؋&md.ߍ>] \Gyfy tC4H$Էsmp&J B-%w<|o}( &
:-Ln b먜سpR&PהFUܑ6dmJYov5j/9>ۆN\CRV8 ou5Ni`0TU ,Q \Ļn(Q׻AVM)WCg4I\<gq?̹I\VDS6!e$ơ Ա$"K$k$BJah*q?20~.{! ɍ+ZBi'(tƂ<p=TkyvȀqȬx7.v"i7eG5&uY]2'5 iZ 6Ϯ+66 n2?#^u7
h)I-t9H5J=-i+}?s!
1\tEikǵHVB>1Ҧp@%ADJƵOFzӃIF} D@A(,Pj,J0zZdlRMϱOAMV$;5`H߽60xzMmU$o*+bqȮ E9tގRqf_sLXHf̬yV8ʦ1 kCq-H*<{U5KȴifxNG=le]r~T" ,Rm)xm䰻GcsɫvMOCIMLv᫛%v:V^XxNҘʓkOLFӐCSY7j=t81 &r$v6Ybk&;\ۻH$c(OietI%ܖ0 y NBw3\O/ԥ ^]j[|eƽsB5+t}VyU\-?*g#HJq4kK'F*=48Op*ʲ~ms:BzFO_74=it`ocC_] krn//
+oGGw-R]/QeA 8RpI>N7c{ WP9eRêĤV1Ϊ2J=iz|ot+SVH
ߞX>\Pԯ^wo3&J{? ᯆ mO=],U[[id CA _>-sNsyoa-_^!@$A ϯ~Cm೛@* L{Hc>1Ɨd4sþ3'_.+\A:"J+zUo UI77O]6Y-'m5>st6_NHX^3188tχ~>o鸶*K|uN^WbJ}[w+_^ʫ͸Pf|` ¼wwxmj>!Ӭ-ܹ '8_,aYEb[ӯ(Bn[+\7ѥ=
\MȷA`S+p@l|Ü]K c)ZE!Fʖ'hbw+><~ ]j+wV:f:y2$0]pH?t-_*a"֮?A0YH\pN0P22GΫ6ui^Iω:<oLa㍘lTfybImk^o Y dgLAOBqjW:&|/o߳" mKḐ[ U'>c? |_qk#Du6UHm-ϡ;wgn3:
Z7'
J-+]Em[NThkwVFFzOo[kI~7[[[L+t#:pbA9֏/|IV4Ζ1S$/!2G
VL| oSo3Ro^/Q68GDbl'kiFtz²G-m>&:O7{^{s:\)ddQG|3oL H\? mO;[f˓#tPOEQ:쵍SY 7ShM6(7΀3]G,QNj>`15yYۇyno|8HdN닇$0X+zm;1,{O9.LtȭȸMG247Vli#r0XeKﺪ˜~K 7+AEh=ޣUIZ-H5{qslv;W|C^Ѵ)5MVoZ wtE9's2KYMs2q!`C+Beݖd^|$ JN =ƚ>h wocr9T|ϖ#w<[e᜹8}oA~뗚}^iSiwl+s0A¶~8UmŮ{3;6vcc'=GUqd0KIMyDٞP96ǒ;K[-yitpzodx$tBqyg4z֦QO"0Mo '&# [ۯ7ױ|"$ĩ%tqx>yC[Eäi|ua#uf=?R+ :m#جQ(/^
gKYR0V6!GZo
Ojno&97 mb8UNoxZ"4}*Az3_y䞵/|1CwBy8{;??9>Ɵ,}ĕNi{JϙSxf-'%̀O|C+ !]k*ֺ&cL[<~K^GaIu+
%wy(9yQu>B-m96j?yR}I$qWtIsK?ߖ>_|wa"Y@ oBL!g_߆4ܷB?Q_dm9k(<k[Ъ$ί~Z$~|=iW>h|Hz{ |u4̺'ĽRO~]DKI2HQܚG-ot/b E|74-#s'hkМHßjꂌR,ܣzuuF}cAZ(!1MpFFAX {mdeJ?* _ arO?ҼEi4p~({Y=9Al3x_,vґvZ>Yj`s^k03[Z&2
zv]ַ՗Tr+շs=D0+etL~\ ,؏T/i2 Vg-J7kx|R ?JK_H!FU?J&6Ѿ*n<jǯXvx'-SId,
cnr()C\nme+x{>W Z'C~ S:iꊛO/ZRzi7V+Jgyc
$P5Yt|%"_y^k%lnFFO?<Cco񯝴D8WeX~| %n>1ˌoGG-/kx!@ioR3^io W?6kBY>2~=jz{FqֶZDn+ǠB2A\!#ڹ'T_YQyG5b+/fl٭}OQ@=Xd:#] p:fU vN=둷6ϰXy°&F}N,4!`6h0'ݘNsQ~،c \,s5'S}Ҿi84W:fw0B2KI}k)o UҦY`v]JL҃PP>iqҮ3HkgCaԘG *C)IQ<R={)9Gqa_Bw$i8e翓w֔U.3Qn OԀ*tRMAhV9#My^TO9j[* &<_.K5~=QżR;Ȭ]CH.T$ySNڣ(ڼi7Y^A +P'Şk<hN^j1S>~St)#wc;XW-)*Ei'@q*=9\ԢfY7DOsҴA&eR= nKG'sw 3pQk]= U]Iל]ڳٸeƽ<!8Yȯ9WLپFuoqvt<ؕPk=^؝#v^ -: IpJ9Vz⋘UI(QZ)I{}V2qF@
r]C\Âsj>nx<{b\ZFyDQ|GZlu&L #5h_؆I7d57Ψmw.xBXm+Br+֞,/xp:͆G-89ʞ;kFRl<[GJ5nk];RjFA&,`k;V׺yp_H$KJ/ }k8V&|ˎ-,8~@ug]jM<Z#YͽRݜ׉,V)c#\yk2Ge$unQy%>w;ZfUm:Ůy&pHNb'lh  Kʗ1%~nPNWwJP'Z=?vO0FVW9'㔼AS#0N5)Q+VAg%JG@ JؓH -3C?:V-<ZLm һ?mmd84|}UmpkYCk6\[+hRkdw5jKy k
,ZjH\4'ʳf̮ }(n!"Ρ}Zv.IQUhV}yULF8Z܋k;0>fo@;('%ѴҦxf,rVA +c'
c֩\6`$62F8nvY3UFsδ7joo
PTiOSu*GҢ|PF4U'l[="?x]W!״-ӒUE!O5wdPT9"O߶W_l.iCc_4qԐrpq_񎿩|:Ҧ^<$7pTvyfı}68h{4Xofko=7<SO.E2O*r=FkF[S{]FRHH,Y3gQ}Ex?G4#xBrQ.7^XBq#6s^·`5{?/UM6b&Xd]êiXŦo I4j2WdEbf림pjM骍N<"1W2Z9ˍ$ UsgCH0EUF%ìY6z[i֑[ y$n^Y坏rNOW~њEZX܄b$TrVkZk?h |avkmđB~I/  $Oxs^|+K-JH$ u_(m"vpr+$FX|a}h1:>scrgC)VV Gz8ve_Nu295s鏋?G?ágp_y>؃)$Ar0>a^
]VVwR44Ly68 u="iɛUZ\ppJ9p{|oWTFLFy2C,x@XW=L<,&VqYyxc_~Lg߇>-oItt2D<1^)J|f7xQV1[=[Lʊqg1z6_ ~/-ƒYZGm2$# :xa_ x?σ쮴M{@ẴP_" ('hdy؅'N?}FJi:~_CVS]\8(aB#_n ?hR[Lݝ7c _@x+j]cz÷V5ԋ= <
$Vm{s|$-C]Œ܊xzx kU$&,v2P9GSź&ỡy]l,ndJG;d x|3^|B5#i2%z?b5p7ֈI3bt1N9@׮>߬q]ڤbh&I#܎'rO508M)NOxt
»c;3RtzE𵎟;yF5Y܂w!̎~yoP~\{}aᣖ?V5XcV02#pzuOz^>K<O,;<3%E';ql?Y-nE߄|qYjlfY;bs#-eO5zjQa8Cee<a`W>swv׋k&eo !!pD` њyfy.h4׵~#CFh텞nd,2ɽ R#+(G5kE.rN=lW|zxghNXPT5
#q ^pfbNzס\輑|1jُ}Ɠ4rsW4Y'`Ҹ=GQwS2
#E#5 {;jNf_4ļĚn+n+$oᤵG_ڎW:rZYea$`ZGUss\dW}2okpĴ e l-2R01;z
5I|Ux׷0"w`;?|Kq݌Ib2HFzV9 In#-ZYu+uǟD=OyWg58_Y;#P˶a^r:cۥz΁)ll!bck[-ĄAUy?|a<[xx-L5a?!F''@Hk_
h
᷼W*[˄WB&s ' IP c}ߺ?w|
][\]8!"##un9n.皠O$Nkyr.inzQQXl\7z$5QB "KtpxHAy#m&[UFW6h<O]I{J_
k:׋4 'FDk #\lH/9 ;ۧMv"*Ej0Swdsg^ˁ?ywYqoyNc`~CS[_K}Օb2<\/ORM_c&u\7@c޷[G]?N9wZ,:sb5oj s\,z֝\Hev: |իJםXje0 WGa毞]RؼIGָw@Y|pMEuj)s\kO #)R<>+uі 8b>劧?J>5RL)Tfxkϯ^i-bR,ga7?IbfO.hcTf/Q_ιҶg_S?rw|%/Կ?ƾ7Ra$oZ
t?ZQbH!zWd <Jggr>IGZPkNtɷ57J@*^_CSkfz՟`tzm;5_ƯׂǫN _D@\7ֲ¼>r1[6_FU<Is µ kxoqBL+b| M|ʁZv-ڹgt0}O6!
3浬-:R?{־tڶhGk]% t^Jl7(]RR끉Ҷ\i&kұp}\ 0j4zf/O
iCBM,D^礤1{Tm8{_HgSVo%FKto}NoڭG,ln`[jvW\3UpA=\:XJAߖI1j:̀GPOC\jrr&U;U{\ ýE-Gm$u&5c$19xrjDgյ3~ȸkQFf^kǾ)&'^A+jtLZU2,}τpXJ$@pFp¸O٥cJsǟWXH;r):h3\Dyܼz⧈홭f퟼?j
RxBY5+pUakGs{^0o̚}ԛm 5rϛQF1*}I{0%דmO06<kwtȘvNz7,cT ('tu%-.vZQ/.a\~?elcuE2}Ӓ1M`qjgܬؗK ʪz#Rʄ3Ԝֶ FaI0^@<\S%4UsU;3ZjHWti1*٪^REk)?4qܚ;1.1A=iWGQ,6ff d
JHKm]66ڴC)瀤-?LR}ACؑQ(r+lv> Das`A 9'oye,.Y@#ǽ4x^NA4G!q[>$~-Ⱥ6\<l`xaR޾%mn0kJ ;'85x+QΉX)`q\/i:To:DEaBxf![qn<Q;OjĞ 2wS(z5<\ iZF2Fs<Sҥ{}2HeAއڲ|Q_FGs 2 ]txY+'kqWe%tFvg-I|nE+5tdc3꣭tP^YKMila@YUFW5Ù`c
62jY3]Ƌ,w1$)Nޫ+O`M§F>`)Taг}ᖇ+;;mB&i,7ԿkIHZQ#xϭy'Wy:f^/Ɓu 2[,jѴ7nY#`Ub:) C[Zx=>duVᷙYMdFn2~ަ]!`b!bG+1Td1r+>iW:eLR[[h;}jJ uBJZ\FǮ]q5O|KaM%s- >0+$MꮅBk?NgmƧ,*OHO%"wW_lmF^Z0qC=R:֛$xRk{cZ8>Tr 22$Rgjտcش#I,$Ǚ3t0+✺>W-m81ߏ6'
HWKfPѺA<<U,5WN_/Cل^V[K60|s,}ȿ|CVҬ$-gD,
u/xxvZk].<&;=͊ygrŝV'>eCNk
CVbRVxՆ\6;S*ӭWddoֽ{hyq=s>W~ӨͧNkKEH"7S̋ "@p$-}Ksh >4 VvgR9%X<fe3eSa!S_K~z4Zh{^x\ rU5g(=.5ٶ]EGmw=U%}] ,zoJIo &˸(D$D`) <FMh&#`Gʣt9?M[iFA]3=\<>d_g_Ӽܭqj:w WWg,V4#˴3:؊>٧Ȼl:Xz5?Σ
jq=NI8nݽ:W?'7z>Oss"JӸf ~ETE\~Q`F|A|1ҡrZ۷!#%r)!Vwxkr,aj[C3cBu^7vy4FeJ#s\1¯OA< Զww7p^Ho"A~"VN^OaK QM|cxZVecC,_0<“jOw_[ -;ө_*U`H'CpH~x3[/Dc+(aԅuC"waХM"ҮIr/!qT`Z9sQne:QNV"Ya!_+îxY#Gac*?Gn <(SP-3y7@:p}Fپ>
lBG~rZWowc QN}ϓ6e 춱Dqv|ȧ2N2ko<AkJK'&ψo/Je6yu<-%־a鶞&څʬm {ҹ߂ &u{pf؆S!?p5,A 9-<6WoA˝߀_SY(eb*~|G隖M6j7ӲA7xğ9<ck&{v,#..%I\fϷ~*<6vܖ{*s<\==@aOFv`MIke\@JTF|WT+s*Ra~&/J&<c v󐖈z1Ӝ8o6/5{2.IU9 'r͐N>MX ;h+s0><wKzSʫHFF17m<-:ֳst]~]VQ\EtfRb@< X]0UaQE5vmEIX9y$KIּWZ[r%ړP+QOoD ٬ 9b7*&7
0\Y!~KŚ"e-#1xImpo<E 49g;y'>t (Ž>LPyQg2LF2KrpX>)u FU):v7c%5}H2|vk6pgG NXwdF}BW%.ܻg ?ӵ_0asWpaHRu:ݛMZ>i$3j F Ir~Er텮$V ^8x *=hٿ+NkI-?rE~1Te=PPhFZײouӚʶI<鵱Xj[-Á^wg|P-?Rx8D}p=rZ6k[MwI.2WE
Hs%^y7_Ik>~k~2n_Ec5i2`I\~Q_=Vft>#3{ch͙byL3pQ<X< [~:n/_&z' }mIx 7PyۦϳuU1cMHz0<x_͞k;OJOm+ q]xTO6=N&QI}KBo&EXنHRGZe1,2ק{<`TGshv1Gu9u=m_T~͟#F>o?f&=50V1x
_ miֻ-gMƖ6S.;/}"6pV-Q8[f?kY'ZƁn>\-jV:w
LIym)ִ9\^m%|}kN{He D=O WWm2F{ڸ ʛGc]ޏcy1\wmP1کKF9u"[|{5k2Lg8qE3NV7Sʷ,|SHIϸ/ kdX5tek>4HT洡H`ǹ<bA21ֺ @i,bk_$u{ԝt8\IN}Ƭbr3] rO 8tnz:yas垍ֱm<uetZ|L_k
sⳍ)ZHVW5ۻ#DǑY'ŹۼW5ύol& EF~ȯ?Nt:s,Y-vQsX嫉W&ṍ xt\Dmds$%HW)+X#WFi+-zҜr*ƱR v K=Qyb:!\3ҕy>ѻadh1}ꥼ|l{öFeʃ[kqZd<%;jz"VCY7e6p*;zT>QP%޸h<+u4rbO|)G0r@as<b* $rޢ{#n1SDVqѰ^(A}ytDJ/k`N;zR٢^a n󎵿iVW=À
Β@>3ړW|ܿ엪1u[=H\5gu#vE8E*xo"F=ںBrw k $vE5R]PtO_EC
FnC~Mr;=2Y.%P#3(xϯQ .`#qްEU֝gM}; {E[[3C^[4ϲ)FޕFִ1yjF7::c ;ﭟKjʕ9SVJJOvŨY@hި5jq^6,%4"vv$)] [7S5-r6QyZ3yr[̈CPO.WFNAV"GK\:%idaʺYrkrǧ9'ŷDl/ \a\sXW1|Qx{▣~|IȞ{i^v_?T5x*<G}j]CWjI*SϓpA*ϡRO$`3~^o+w'}hϵg?28`9JONFSv2LH8x5y }3ֵ[ᛍ9[%Q.؋k_d("ʟb2'GZnӃ/=d50rk~McJlrE1JÆ`n˟
B'ڦ"6M^t]wuo^"c;heM8S 'sa#֭XV$P $v{HDw8%ot֐Fr~NWʍ#;ZUÿ֫UcpE:9OjBtFѹ}rsbHg񹽗Zú-VF[+rpx"Iw' b2giKW<1lyWKa Gp
e<W<Wk"<Ms4^_<= Waca+%W
tvl}^# sxr08|_^3l<;|$g2cd`zW1}yK뛩16>O pm<&ae/C+ Gt7O^!7xPpXlW8ÍåB 籯J8Q\Ց9ʣ"s0EB2=XOj"{'C7eMKډQi& a{օ?[3ł-b,G= Fu),GLV hiE8SϷփvYŰ6ۣ}C1(f|pPR\z3Pe]uic-mq`(bhLnjp|(x-.t;Df.Z>EO[ģ"էUد4+\tMB_kf-5ݒQ8 |<VMWZRRvZ=j<o5W||uyo!*mqy6wLwJq,
;-K O-Ҿ]2_LS\@=0QXnJ/Y鶚4BibJ3zNOvWW9%A-lH(Oޫ1ѠLsɯk7dx{D04䣦 X;|́Vժ(_Œ%;[y0n"T!Zi-{.Wa}xQu Wtۃ} Xa-fB(*<3,Q\ɏMfҐm-lE6/GW፩;U' 3`1x!7PSyPHB7OSּqHnuU\ɮwT>Tρ_~:.f_B0y8v}OEҼ@LNFkl/mKPUq^g{i9<v~)US!ۚuh_T*U=s5>aq lYI"‚Yo&"]QOa\'_7b/auvs<c_BO~'x9!xM & inxPZqouCfu <oi=0}Eż O`8y9Z*zkV<{Luum2:}O6I=ɪܗҴLK9Ik</]O]f2XulkE7\bXpը<s_A
(
;Jгh&Ycl9\SgzLd`-Ir+ѾdZ9[0~]<r*1ݜohZf#\s;W5u4~[kwO;zcO ֥ծyN?/ofȯi3C!5Qrɋ¸eowӚִ*A \9{zε EJGug#殆\j< WTg5;X PO3ϵSs]6s`1|xΎ:R=i6`GCh!ak_助'OgF;6\^j+{+(|<ҹo,K [ |;Wh?i_#id7ɿ=I<Wu?ϔ~H!$Ymu&v_+Ӿ5Q,LKEXOwpz`q/ÇKG+^9#*5ߴ-,Mt6u[Ȉrym&;[mV2PMcTbwɬkC͛Hwp+fv-/Z. N":z=NSҼ=p[ V@te(ŋz cjzltY WYxEf>{cyWs.hYxCK%Ԯ26g@gXz?4T/Qq9ͯ$9:שOCjHYQV[J+ gO.0*pA-uXO55>Ml$˵P\7Y0zԲqe`ꥴQ*Rikir`JnQ2 ߎ\xmꄳ[\Ez42zС)~Uf%gZA,-SWltה奈grٌ][ʮI Oerjё6ӎ6Ib;Xzie^+MM#w7>O|'ao-k+/i/mFz8"-KZ큈[ȁM3$5ibP(5Ki#rJTkrҾg~f)sCl{wZՠke$*ͨ(^oc͖4$8幙Ip}MXӥI:Y-X/`]Xq#FI&Bgk
p1;GOWfaF})܇+臣ylf"; \X-
ltkb-b#qQIu{V[ܫg4MZՊņ~:'m*K)RDR?%+'F4񚁝O@fE 0+H94f9 Jtd8.{~f$:&4G>Ǹ9t@UE!Fci[JlqR2 SO 1 ʫ!g*[%R9) PGl秽Y[ۏ295#Id^r;T|nnFz7^%܏j :Y5 ~KHG{=y9FiSRN$R7{ Ai[p{чQ%1/Q&Rn~WwU4hM"DV:{&$nZ[e,EPf+KQl]yHdC-4x113ky`u#*E*)0ȤݖZ ܽ΅fŀ(9,N
J{V, _ſ {kM6Rz7ۯ`kb[޳Bpp1(Dҧ?y~Iݿuxխ<CC C#4>hW3,:_/zUgqcJKi?C/x~ k4 '/ӳ|JoC |av"kkyU1 1Wu)~ Jw>K WK lYå;GOҋ߉7 GEnooO
俖+8嫓O]b/ }yzark=k^7 kid?;MUq],Ncr8#ޢuI@#c4]?2=TjJ7 zz҃Il$c%:I * ]A 6\O*[#loR:Jk,cܯ V ժ&;B*R
PT%U;3G lN5w/tiv*=}rejӻ ?G*no<CJƹXإ$'E¸cq<^=G~y{X%MAP^.şf $H%, 9,ۉ4l<Omekw:e-V g `.e*0:0
;OB|6uJWgk)&`Xm#Y񵭶{kg@oK0\ª([8_"?+7TУmTIdU2 Bj?ϼ|;w<76}+6rF'#1}9L3N ;_bW;SoO#1xwBk(*a~_^}oi1mOdqxd©T' )P;|[llϡ9ύn4RΌRiXF$^۴"3?-]HE-W ޴XlJr@y.|>j}—I 6>u>2П }hs{dxu#iY1VTV̓rȊW=0{ʚTPPnp
[7]J|+,Ek Sw^ (HܷLAM3A<IdhpH (z.q
i>%b9qHmb^sZfR[]6AN$iѕZ1WrV0WKZ`\2btE;=z1u=^ZS$rOT NUvY %𨕫8E-ey#qb,~vaORTV, <|ǥ{<JAG5af$5s֧IO茭iE7hZ:)!<I1V޺c+3[ASZ]n#S*Ű AQA\srsWoeU[qGWmLoV<[8W/ilIp38SW3iLaFv=ջJ۶~ɩuS?]5*5|K˷9SW-#\:wM]~EtyU4t\ZԶ '.1ҹRiR2ھ1W]5k,W)1Mzf*>w IQT~K.e?J+<9~lȝ3pQ_d hc,X_M|GG:=Ʒx W7Zip{aOgtR3_WbOrkЩgѭupdA]bF:^42:j~J}J)>=L 7Oo/{EΓm&!< "Ti]xVIX_[Y_0u8FO6;p:pk@q^qRgfSRGR,mLpj?Α/+EE Dz!Bk^tcSΣdO\O?TfU GֽG:l u
܏Hv%zQYJFѢفŬGhXC+7WKhZ!Is[H܎T#`@A;F+vN_!:bsR]iWbBĊд֧4jDIϽr9?xPZe3]2a<3[C^.}j6fH;n!a[^#MTstTU9.lcQ)ԩ.06GmzDht߭kAi<yZ Σk@g'ֹ'Bo]J6j͵,#`q޹k\wG\^vwȬ}mc#Z]JR-< ξhg aiusQ\Kw>X\
Ҏ0%-np Pҭ(NHЯdaG, uzsF(9+խ\#ZӬ̧IExr^KkvYv v
',5^B52d:6x^:)9; V{*M-AR=omHdC+3X=
F_iOS$ɤm/MdnL
7CHAY_dVd/CVUl-ghE{U"t֩EmGָb"ǫt[fnVe6OhI G&'!Q][w KnHrtX$uf=%Ff3ї5/_qJ݃bvoR' n:I]1Hǐ"rX SvҾUzgSPnx9Jm6α۩`{C$#t",.6r5\.pe`W#]BžYm~d"ǂ * Nįߞ:+VEBtegHpTy.1&|Ǯ*α^qZ mxΑYzAM+9Ǩ4^J5"<jG'*[d_%k wR:Eȁh;Cuk.@b΄Zՙ+rҚ貟ݸi7xJF!I%dPySЊzD+''nDZgk92BѩNv4#s`u=ECՕzXbw\87 Yo"HVa,Ef\2~⤖HHdYAIُtgiiȭHOJ֚$fLw9̧Q8Tdp FZHIQӞ?4^#Knz8a511-yj\QjNy+1N${⸷u =+ע0ޅ#F$EܣX7ŧCt8p\Vpv.e4Hz1A|LUR;70y52xB4Ե+??OsU9 kxV<E9T,23kRգ?2?J.=Kx#ЊK^cHRma͟2FqՓwpFvnsIv5̦oS Kk2w0:G+B?OMZ;;rZ X*c#q5
JM7-sIժ{+?Y~'|"_:$/yC 7P qҬ|2EaaSq}FN^}%εmgxK}VAz$`3Õ5>BԴ}dtr_Ĉ❸bǠp2k«V_ 
RQotS[^dyKr%gQ_|o]*-[rqчV'$PKWЪۛC "`$8q+RNHoNgO"U)(8(~Yé[F'6l`_UxකJi++*#._Jijǧz\IXgw<V19?A_Gi~ cWo?ֹ&<?jn}BNT|oud` cך#5i~82zcra}7<W=ź%wa;v
~rUdArFO=yIJ۰tB|ˆ!Or}{P@NuOۀ=^kB!enec oڠ{ף1mI8b*t-{=ssxଷ:v!oT-WŶi7(-}ːhRrmc$z4P3JrC_EOJ9aCƞ*-Wn$!9Qъᕁ)ة xUMܤ|<vɕ+2waZjZ4A2oB#O92K3*WߦUT㿝7ew TոNR`O$¹ VD5غV#~}j:㌊32q4OJYOe$ tv0Mk{GCAW%<r^V+8#t\^kLu <2~7f$1&;Z㭮T(rAMab.-@s*sї^FPInSoz s&h r/l{SឺFV+ArF98g8ܧ\7l }뎭7h-*uq'TWtb3/"VIG~:ӣ_K\}kf% }5O5`c:+!w0c`_MLmc?$z,;cߵt9yWke^Ok;Ofc8?۸ק:^Qٞm8 8+n#%IOU#t^ :\u(luQ繡{i, e}+Fѱ98l/e戓Y(aV4tyUw@?aؙt W$` 8W ۣ+59POX]Qֺ=3ZYz8nX B9***i<{7Nĥ8=NH$w[E!F3\ kҮ#l{W5HrPhqoYuV`YFj R|5̤mmD{Fo4Y'kץ55 *T/SJBm&BDzՈ9NapW&ј[?t[ &xz]NҬTUϘVڿJm<WqpUzjxc\oJԋӒ4|jWìXݟ=rji.{{B##o' `<DZnǦ:4K8Rv/ߊ66Dqf#^QZ鋖RÒvmEh4`66t`es9JGh+ zU[[7eO|ӆcr3bwVfĜTukc 9+΅#Cv-KiB꣋vl筅9i7FDl-d\\B!ӡxo\4
X^"DGCsXy%s5XOSY}C0=XOgSJE6yT6BRy$w3lOgt#Is/n-sTifҞG^*֥X$!*oAhm|p #:Y>}'MNc+E24w }^Wg}.(I&@& jz6GZ|-{0{AamWN@ōʰE
JE+ZWf2 9d
k$}h@}x, 0\,݄?x9;aLpnzʧgex~BZhAw⣳eąv6G&BO\u7v-d Hז:xA^ Yc QOG5%,: E?rE8ʖ<^iؖ2ɦ1.鞠n"vWo5%wLzV. 0hnSEr-bmMٛ^ [1[\ɍF{Agc4RLQGb}*+"Z3
AS\ez#`#5i> ӱ H2<g20aRN= +Nئx ?o#F8ZxwB.,A8;Dp~Y}bw*iE7W)-{J)n/c36pO;vb SMJm
̸<E1ݽ)03j-_r4@<BUٞq֭C48rH'<G4Gh^ҡ`_OJwZn\$H(n;5;L]oPcsRʵ).gduVEMk%k*7DB+Zxzݵ6Dw})tc'hmc;pdkj[pno%R8G ZK-6$i.=V|IewIi[#ީv[n ^TݮZ+ܻ3X樸1Xny+`jդ%Й"Nph%w2jは?gڣ@gG_|6g vd1'cd0a+Cv>&:<Zlqv۷ł\33:vo<nۆFCYqGF~^AVl52n٭^D[ߑzu*#icjBno/
ZM070Uvq|\ux<=nRĒ $CԟU◉?.?X6
Ҧo׍ѬkƩbGozj J
5?h-? .䰋KcA8,B_~cS&*o-!
`}->.p!KKoEb^:Yo \\GV-J_?ʦkJM__̲|kK$f%K$^*ό';@I-=H}9iAz\ +q$%iػfcI4E;wzrn ޤ'9Iv/c_5TJosI jz{BaicJ> u _
ZttY9P9~4" p8}izwծRֆᴷNZ➭^w<ʵMAOj0N]އL.x۞">GT˂;SE22zz3m$[eΤQ2 t)4h̄85U䮪r<j|*}ONԝ_c69:V֎x';wQWE>W+4o_D-E\]O̾)}֟{ T\8 WFq0ѵr)sҭG/tJ78e ~Mে?j*?ٍ|,iU\Jҙa?yqx=B|w-2DOr1]*۞Vk.[>a<2}$|g{{rчzVri,+Cφl?JᵯZxgTAԊfth]RxĒ/8dT0`203\>l[V\4د<6᜶ZPF3燗} bSƭlvX̥[tyo>"Cpo%ڃr5ԡ:r)WE LW4Pꑰ<aL9W+hiF)RG\XĄ$vsh :zdWI̿:Y+.U3k53 Py3&\$
#`E1iۭA &381)-*73,Gu#ac[zBW .XXp*QK&֭Q^+7\Y_4?ޱ`dbņ>UOw/%~G}Z|E˱@xU5L)P:t;.pd$Jtn0<KL VW_,^4VZ
d/&iy
q)t%qaڴQȱ'޻;-Jŭb׎xb ^մQ;<{Uԡ4;33YH*9[u#) =+ɼ?|z+ Z@WWZFe5\cF>@>%C{
r0=ZA;I BpzdEۙH֪+pkb"J{qY`Apc9|Üm)u.=ч8R:}ifx;հ^|k7Iu,0B9ɩn|5^Bc1X-4Sp+X  *$N-jjWeŤ`xD glɨApqwmTδuj!RS Cp:f0jy< 薑5Bm Bmp [+}z<
JI;]c>x'QgB]K[[lb2d~3,wqCeU<[hpq _({Vpi|m2il'B3*{m~ݧ Q7čKJȏAIy ڌn-6f5s v&<gFhWď> p?Z]sʉL)dǶkxAhc)JlZ*Bw+Vn?/`<m)g2n=)d8vVke&3QLgNGte"
;~{ G!ܼ,Jqp̸wu5b5 " bx4(c ;@ENo TUXÔ²)B9jśNor "iѥCkn:{6J7q (?9=đr# 25~(i$ b72qE-)鹔n"DeW=E]EB$޵4e(*!YO=G@A,N9+5OxWZXHmsP'D.>Z^~l5qnZ9Y9ONzZ[餒虋5͂mdtn`72uPԯ#Y[0XWCYKw)m!"N&݃ZϮA[Io,rNH ֺgz}[Aq)5SK,~]uS=Υjch0>۾DV0yg6GZxkZj3jQ5Vq0\]›dz7#@Gd$qEYZ!J>Kdk}F?:>l$HFʲ6
ַ(G嶎Bb 5^Z=I7d8ҴSVfszvWZ.MwW96d=Yz5ؼоܫl~a ;e= uZu<:w("'cYjoSFȋ[ŦC8=~E%ô'%Xr+usrq\ F'M:{=1MVݜwjA<Jw1hJUtN)A=MD8u8)Ib̝Jҳ$ 6:t$'+wFX7ܔzg7hEH+Rw ?ײj ӵx4Kmd! Sz֋KLH`ңYKAդ㩘0'<ny'9fU@N3ѳgk2۠t>zS9W쐘pSꊿ6TDpi}XͮAgR+VW!*t52HOsUEjܖp-{z#~pMTVFASE_$R>1!QFM;(,b8= O(e
qSPa;sǭtfj)qk-$
@/nS$QPˁ㺑a͌xW97 uk+G" u]խYm&eb'q*InI﷩"mTmV"jvm1|qڒ)WFZ
2i ɨ~ 7~dWn}#\O|oa%gEL|&%>
U\R6Rc#=q?40LI&&ƮߟϞqrdq˴8e5FOw<NX]}bO zVs#f8=%*=(i׷Y=ER5M/WNXp |k;6˨=tPx<c0&O礏NK~mdӶ|S{+|Mi6atpfx朠C5
0Nr mpĨGnͷ| 5xS^,7 G3^n#= >.IUc!oq=ꞑMQe%=kZ]NBѪ(M[c\>=<#!.2iv-e}TNjQ!,ѩkHs9]kbpo?uoo..7@+]ЪaX9W ,63޵GhJAHnbEb ^@c ,anIW\1.4)hyO/r4$U|Р۞UM(\jXg=w:E8ko-e&l6z^I2@+f(iШW&ZA;oBn.e {Y[Eky!+XFR8F;{BK-j٭s[wmr2Ark_ I1֖૽V_Eny'$K =GQ]ƅy/bk tjS-#DDZNƠWY3v #cRڽsvYW% g$w/ iM^;rORVRyRWZސ_3У)}F%Wv3\ۭΝ&՗nt%golvNs"TOG:MVҵo[ ;';j;2dF7,risM8|IvS<Ðs*W58[[kt'z\1d8#ߑVBM_H/'ߥtp,|nSvɒ&Xq$7[x5sԅ7<hIus:<,Eե] speRסGTզ]L`N=Yp*t}qeh0cyֿ۱OyU`&9-;5 LL ^&i=D8-/W2ZŃ:RKk2f`y2TdKJpZ]Nko屄]kn|Hvmk"9r 4ǜTUf|ӓY9 .H&uO=x+,c
pyY%?MX7oZ,C95iXQy0BcGR7ړgM}nS{ rxw9]F)O5AjH030ܪ#+TYX.@[EJ1֦@{*dd<UH:8iUCM84})t<־:MvyМf#$Un|X'Q2:X^ y'Yt]1QZ6-ƚHq"u8=?^/޲5{jedbFilSqǏjddkhƙũ!z-&[>~P1qʭ"ZRAC]^tmoth&0oz¥FԚZ3&]J!+f泧$ _*9rO#ֺwxU/:}ԑB0K˨?ʹ'O-6}O^}m*spj K[OV߽QHzωꐘx#vjOJ[P]209Yۈd!W՞PA<UIխnSiݐޞ+XȰ~Z_]U4mX_}mgKmLtlFqһ/
xNHRj%;2OFs|ֲ^6R:dU=sun'k֭46$D|δ z`Q1ft-Qxm.b7I,lFGzӲ?Ց{M%+&>\}5j멛(=kpio,.oCR 僅+koj9^ٮ~?l>%C*宭&2Ҫ5c-&c `$}3Tc sbbC@ OgwdϋT-,fE^7OܫD@G+ -^8/!t{UBzw6ύMky) n\{K+o5ߋY㸇X3=濉MQuym\ʟc^0YÊΒZA)e#hO7JӕGP'BX'֝5578u>ezwe;XԔ7:S%lSj%tjx>TjԬjZW&js6aUz,u μY(11dN2>bJz1%O]?m%_}.pXc}jOb:\mkjՍEj2#F9{֎^X>KOZǵHȮЊ&VcgZ[TΞ$l忳_xײҠcY~qc:[LѰ*zJҼ`v`̱mյ)r{=pS\s_Pm|,޿nd|.wkҙ~Q"?4᫫`:n%_d;
ce=|:0O}ߏ¾%6fH'SL _?lΛ/QT.y ٕ%yayL~|L~+<- o옮a0Vl;.G<TJŕcbE]kQUvE099}Fu|7s KzO%HWm"XX<2#۳9ۚtwW3K ER͍ť9<6W,lqh.Gp)⽇sּIuH]R) $\dJovHڝZOi^75V,C~ux%_W:W5k"$nu8Ǻź&WS.gt3 ={Mͻ }v! 7q0}f4{Vp8= Io WZa v.gSt=I-[kw B^kij[bEeR*E[\Fm7ː栋Y . bػ&(dMۭJNQGHmgWݍh M:OҮ?jRj2!uy 2+5:J.T_> ʹ^c"9K"c5Ыץ˪-V,H'Mt]Z*}5 /LZ2 vE7ʙjqȟsѴ>.+7\IȮFӵXLWZlq"
frrGvopMv>7v8xjBOcjs~#յnhNcXi 65ԉĞj׈]ءa_k(,b?*r='wWyV]$d+ GGnYMJ6Ҽm+EJճom<O+兟`R޵麝ա;ɮ{WL#\WJٞK5tfSxsڲ{G21\ײq1ps޹b=km+#sN,J@Fqskxَm;syβ.0yZ׳T`aƷyg]2 Y'g^- -O7FhYGFzOOt6HjҞ{'^= K{rwc\N4de5c<%XKr EuENv<QQ{xƥNH^AwO #{mǟ`ĝ%Ӫܟ-Z8QV iWOs&bD2)91 q]
i,b|Ѻѯt5ͳ=UV4Ӹn23j F5QqE唺bN_6Њ
d#(hij]_wՑpŜ=*fc'&1nUN=zӑv*<VI69d+dRFFzU UaQJr(#$ i4=IryN o!R05Q/eݽ[iqPe-΃]ٍ7LЦ~M~U##e̓DkYj3nĽfӹiSTG"N1~gbL%[|qz%勩')*MkR 6:ԙQڜ T+v-;|1^ܵ5ɘ6Ɍ] zhɘ, IeIX4Pa_:U='pZ3*դVvYdk-Vɮxyb~p+ FOo&HyVEwTur0sWe$Fg(F-񵐋_qSw9imbXO_L@VhWOSM椃%~f\gEƹΝBJk.4uI"\^^gsXyhxYٷ˞?Rtfwڶ`vr`iŢl5cљZzBo&H@JΆY<Cwih<CхnXxP_[ gUԏbkm s+4ʵ֠IRb v~д +T,7r~펿[zLŔ+ǯ^eS֣>W?;u rڸXܠq-PF鴛y6ꯌO}[ylM+z<dq)n+ ,;3{VKގ>`{gύJ"H|t6mޟZkАs_ݤTFF@o\zF55aJh H,7:T:"$8o޷kohHsYNw8|ew7#!Oq); V/;pn7O_(ccQr<3Fo4~ӥ117!W)/?<Sy}_>x6=2e4F`T8e^#WI~O;oǝ6"}iF9űcrޢɴy2Vdj-!`1g)}z;iЗ$Twy yI=IiAy'NRdL82O|Uej<U'f+\6*E~E9[ֵ24F pGFO!}svz)J`H Z;Zz9:fxڢ<[ρW\ϧOLt}.@/m ޮZ܈ rWYJN`envBi3Q9E𰴘Xog[?;gO +:2S?mʵPyèEकsK:70F\࠷vKR@OM\Z{>;kVpNJ e||pRu2]Z9<vۨآXGJ-#Yӳ<jk'mD^xR)>Y50*w<]cPUT
O!+ҵ/gG6k/6+мY<5u]GAIA{GS8DKe|EVd#r6׸ؠd$$gnGسpzד(ԊV_[%o|W=g/^ڷ_|Iij28EqVj$ 9*i5fsTé߬We®q)wsyk^"VPӅդ^j/P#x.0pFz RaNj75MbۺT-dZyU ׹])txaIG k5ZK;wCgwQ
HFtgcmK.Bk;t?fX\#aEoY 2[2NYYFt<Z枅FuS}kVkYO=V- W#A!{p<w7k3bxY\/)kz͝j\5&.,Kn6=*ExdF,d5ZP"ի$UՇ$|v8jGe- %OJ%/ WAO^%IkڄI-UUku$_co:b2zU:qNjJG'R;@:]]/^+d\Nɕ @`ַ/_ZXigT>#+"EEKH<ҽѭvtev Wfr뎦 8Ou.UtIx@@ϭv:yoOf%~T&4eY5TKXu8+%g_"k6M.A=H?+ZмW}ܬݢ3ciI]fzKVҧ'HXn;Wz ]zW;\o,)wךփxySnzTkN/OG־eb08{ik* U&6e/FU!Xz4rȵ=FYCn%X$1W/#7Q֥Ulj_ Ŋיs.U}c z&,hCN+U3=ԧӭmEiNRNԊj8+~K0=1֒m*Yoo<ɸw{N@p5Q^'t&s^'SoqŔFH{xçsa bu#7|cko)s=mxgQEQgɠd䰧e#*O ֽ7Vl5 '\ޭ1rdn)O1tK6z=ډǏGj
$v ?Jޭ޴
ﵾVյ4rWUdC0e<zVll_*ds]kEFF
cx5;)M_;D'Wtg(Њ;$>3&heO\[3@<qќc"E|lToަ%<TY;ֈJ ёLEo2 f|lQ VRYE,mdJzt"`v$4X$|ne4m*i=WrHۼͺ}\|tsٶ<r,T5xĎ+'CY56"TSk׬W%BNp# xnRHN.XqB+ץ8ʐhI wq )M @9R C(Ǧ*[{W-d>ǭI&q$ #"2(cGoK<"R\ ÜVV:]+ כۭ%gH" `|޲m6;Oj7p둴sޟx&fk|v21_Q~Ԭ9k~(bhK^:VjDUkiз@C;Uuџ,ZӵU} 5 ֵ`12]>xO7oDx'>7d 2XTWa%nk>}+k./P}¸PdvuR:+ֵ3ß(cQQx@O;`?=2kxԱⳤ;F^6A) Ϋ>D+rv6_Tʀq+O_ii>*xnl,rvV-X.ާK&}) W.+ Od>*xw}BwAo^Mkn7%5yN{@kKjv׏*6 IBKZkgxVt*9|?rZuqѭH5M xQ*v=ѠEM|cvz<~mF ĺ vv%dGVqVzq_Km/i,ǔ~cרxOM̗!{v9!O.zм,r2:}s[3kXlMh.%XZ_C5KX+H_>|A[1?%?⺏x[kv&'aKkYտ}R;y] 4)`?q :VVӐv]^X]I^[MFPO^^*HᢕU=Ԟֻ/A°M!ܨl{G(gT{n{I(?|j__~!?ڕA4:ޯtx]
0#C]4q0:os
yЗ,nǥ8c[ M\k:`NAJޣBp}iw(OQBR`G,99:Ȥ7"7hJ=R}bJ\0QjlS\^4N1R+TK&S#><Fn6ط-ӵY(cUrt#5T&YrFߚl_F.q5,rr:lGQVVL%c[B __qE'n _}6rb3LLGIG/di`H1+h躄1@8mFK|RiFqqǞ,>pWuo^
UmK&n>c^k!!wzB#3^^Y-) Zҿ RMwØ&7zӬQ/C`Ԏk"cէX&FO iVgL#t]NaɋjE+h<s39^hQzNiepXו^ɤN(W_xvx@+Y˫>Șq^yo泥>u`X{;ĭjɓE]R7"2=j,;dn^I5 +7xII41oΑ8dAk񗄵xucjJ!FR7?dav ibgMXBEyQcJM^&طD5z޺UY5cxwM&sF9W7TWEjv󌌊|FFzGH9w`* V47w&W\cu |,OW2Cy=+QC29?Ͳyl+Cs(Wx[;c ʜ+cdک⮄HEh(KC/PY'ܳdz] yZDfPñ2?zսsXMZXgi!k<JP^Fy9,
HxNr\\ s
gbyuk>F ZH?ˈm./L]O$mE2UbF}xeI
*kkY!&Ak|W'b5'5vs˷w[qR7NcdIm#%z|΁[J+gHj<mU8zI]q{O!VT׮+ԼA[jh2;>H3^}i ֒%54Ӯ|֔x5-&RsE${6[j:HG!;sRpeGyg<M-ŋX\"?{^y8$W!k4ҟk]}!d ˯CmFS޲Bso7ʿZmđ"bc5ȡu9y^a&:WxZ> V{;_#'+ծȅVkjqWw+k\3]Q_>p$Z.R-%$ՅjYJk\rvgG,wJ+<S}mqJNGPcp+Ҵd7x9ޥ:t`]2[ӼOk&ܑ⡽X尹Q]X&Z:Qo ՐHpz㹗Npx`GjlGČwn *_byg}(j@,cEbNw:
q=ՙ1'Ϋ>_Cak\e{Ok3XB+jֱXBPqU//ca=g…)5%iZ oAֳO7.x#q\*[k688?YҦEDE$8ȭ;c(i;nlMI56ce>jb;8FyH<lnH{QiE&;w rr:Ճ#tnW.2.<xRm;è@̅~}=r7 <֕k"}^NzIt*/%ӡȊRz]߰*wB}+q.xڷ4V_z>g=cwarַP4r!AFA}+-Mi+_*XZ(x*2v$ 7_Z<+ <Kr-];%-GLww |5ǡY x#&k_|uừ{,|2zWSeONAujѸe85kt*sG/7!+
ےWOzH>>Cd.O T#HVPG{J<gq^5[s\NӯmehK p'T%SI^ktޝK#R@r-^c^۹&5Oåy&W+j%xƧ>, =$d{RxYХwP_it=j+BJnl|9 _D&4G|.޸潸ǝ]r啓5ZtG2mwT'fy6/'u?51-[9E:ͳwhAkc9^ ҈%o_QUCd#ҷ%Ӑ 2Np}e]ZJTqɭфE798<t44rDܜAx:[' SUtq>]Tߎ8*3ʯ=:/e<GkTL<H}w:m-hU| grcy-n=^?J<5ҫ2N5#N4.>+
&Av cׅ:=,wL"X݆A kB.?ntd;ig)sGŝ:SS[;v˟ɏ.q֦N^u#!uN"gF Oqҽ#cM.58b{]Vc0E `z>#Ic ˧&iw5 n_K2889Ei8!'M'$u4װcޘdlÔr?ʭj|W}5PBH]\rⱭ1^\:c>`˘ڨ?Pm.m<Q5eR"(U JZ= u~+usqnK
>"Qh)ԭ"Ԃ\6fS6NC>ԵP&k+=yS"}GW'wu5̷W ebzdF[cӇ#q7S,e ćֻdqxn*X%0ʲr?zzP*R[P$O5igo$}V!|%Op=>08WكBT
v{zT@duiUZX#*M5MIzD ASPx+ջzUu5fŐ.{Jմ3Iv7x1}5=z\k&|{[bOL?Č"rz
Z~g?ReF t㡢c5x9O_ UyL{-G1tQEpEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEP
var talukaid;
var talukaid;
$(document).ready(function () {
$(document).ready(function () {
$("#cityname").keyup(function () {
$("#cityname").keyup(function () {
var search = $(this).val();
var search = $(this).val();
if (search != "") {
if (search != "") {
var response = getTalukaByName(search);
var response = getTalukaByName(search);
console.log(response)
console.log(response)
var len = response.length;
var len = response.length;
$("#search-result").empty();
$("#search-result").empty();
for (var i = 0; i < len; i++) {
for (var i = 0; i < len; i++) {
var id = response[i]['gid'];
var id = response[i]['gid'];
var name = response[i]['talukaname'];
var name = response[i]['talukaname'];
$("#search-result").append("<li value='" + id + "'>" + name + "</li>");
$("#search-result").append("<li value='" + id + "'>" + name + "</li>");
}
}
// binding click event to li
// binding click event to li
$("#search-result li").bind("click", function () {
$("#search-result li").bind("click", function () {
setText(this);
setText(this);
});
});
}
}
})
})
});
});
function setText(element)
function setText(element)
{
{
var value = $(element).text();
var value = $(element).text();
var userid = $(element).val();
var userid = $(element).val();
console.log(value)
console.log(value)
console.log(userid)
console.log(userid)
$("#cityname").val(value);
$("#cityname").val(value);
$("#search-result").empty();
$("#search-result").empty();
talukaid=userid;
talukaid=userid;
}
}
function onclicktaluka()
function onclicktaluka()
{
{
//alert(talukaid)
//alert(talukaid)
var data= gttdatafromgeom(talukaid);
var data= gttdatafromgeom(talukaid);
loadtable(data);
loadtable(data);
console.log(data);
console.log(data);
}
}
$(document).ready(function () {
defaultTable();
});
function defaultTable()
{
var data=allTableData();
loadtable(data);
}
//for datatable code
function loadtable(data){
console.log(data);
if ( $.fn.DataTable.isDataTable( '#getASIReportList' ) ) {
$("#getASIReportList").dataTable().fnDestroy();
$('#getASIReportList').empty();
}
var table=$('#getASIReportList').DataTable({
pageLength : 5,
dom: 'Bfrtip',
buttons: [
'copy', 'csv', 'excel', 'pdf', 'print'
],
'processing': true,
'columnDefs': [{
'targets': 0,
'searchable': false,
'orderable': false,
'className': 'dt-body-center',
'render': function (data, type, full, meta){
var longlat='['+full.center_long+','+full.center_lat+']';
var lname='['+full.lllat+']';
return '<input type="checkbox" class="demo-checkbox" id="checkbox" onchange="Myzoom('+longlat+')" name="'+lname+'" value="' + $('<div/>').text(data).html() + '">';
},
}],
"data":data ,
columns : [{
title : '',
data : ''
},{
title : 'Layer Name',
data : 'layername'
}, {
title : 'Satellite',
data : 'satelite'
}, {
title : 'Sensor',
data : 'sansor'
},{
title: 'Date Of Pass',
data :'date'
}, {
title : 'Path',
data : 'path'
}, {
title : 'Row',
data : 'row',
}, {
title : 'Center latitude',
data : 'center_lat',
},{
title : 'Center longitude',
data : 'center_long',
}
],
});
}
//close datatable
function getTalukaByName(name)
function getTalukaByName(name)
{
{
var data=null;
var data=null;
$.ajax({
$.ajax({
url:"/gettaluka/"+name,
url:"/gettaluka/"+name,
method:"POST",
method:"POST",
dtaType:"json",
dtaType:"json",
async: false,
async: false,
data:{},
data:{},
success:function(j)
success:function(j)
{
{
console.log(j);
console.log(j);
data=j;
data=j;
},
},
error:function (error)
error:function (error)
{
{
alert(error);
alert(error);
}
}
});
});
return data;
return data;
}
}
function gttdatafromgeom(id)
function gttdatafromgeom(id)
{
{
var data=null;
var data=null;
$.ajax({
$.ajax({
url:"/intersectbygeom/"+id,
url:"/intersectbygeom/"+id,
method:"POST",
method:"POST",
dtaType:"json",
dtaType:"json",
async: false,
async: false,
data:{},
data:{},
success:function(j)
success:function(j)
{
{
console.log(j);
console.log(j);
data=j;
data=j;
},
},
error:function (error)
error:function (error)
{
{
alert(error);
alert(error);
}
}
});
});
return data;
return data;
}
// let url = `http://localhost:9080/intersectbygeom/${id}`;
function allTableData()
// fetch(url).then((response)=>{
{
// return response.json();
var data=null;
// }).then((data)=>{
$.ajax({
// console.log(data);
url:"findAll",
method:"GET",
// })
dtaType:"json",
async: false,
data:{},
success:function(j)
{
console.log(j);
data=j;
},
error:function (error)
{
alert(error);
}
});
return data;
}
}
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<html lang="en">
<!-- Mirrored from themedesigner.in/demo/admin-press/main/index2.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 04 May 2019 05:15:32 GMT -->
<!-- Mirrored from themedesigner.in/demo/admin-press/main/index2.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 04 May 2019 05:15:32 GMT -->
<head>
<head>
<meta charset="utf-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="description" content="">
<meta name="author" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon.png">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/bisag_logo.png">
<title>Admin Press Admin Template - The Ultimate Bootstrap 4 Admin Template</title>
<title>SDIS</title>
<!-- Bootstrap Core CSS -->
<!-- Bootstrap Core CSS -->
<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- chartist CSS -->
<!-- chartist CSS -->
<link href="assets/plugins/chartist-js/dist/chartist.min.css" rel="stylesheet">
<link href="assets/plugins/chartist-js/dist/chartist.min.css" rel="stylesheet">
<link href="assets/plugins/chartist-js/dist/chartist-init.css" rel="stylesheet">
<link href="assets/plugins/chartist-js/dist/chartist-init.css" rel="stylesheet">
<link href="assets/plugins/chartist-plugin-tooltip-master/dist/chartist-plugin-tooltip.css" rel="stylesheet">
<link href="assets/plugins/chartist-plugin-tooltip-master/dist/chartist-plugin-tooltip.css" rel="stylesheet">
<!-- morris CSS -->
<!-- morris CSS -->
<link href="assets/plugins/morrisjs/morris.css" rel="stylesheet">
<link href="assets/plugins/morrisjs/morris.css" rel="stylesheet">
<!-- Vector CSS -->
<!-- Vector CSS -->
<link href="assets/plugins/vectormap/jquery-jvectormap-2.0.2.css" rel="stylesheet" />
<link href="assets/plugins/vectormap/jquery-jvectormap-2.0.2.css" rel="stylesheet" />
<!-- Custom CSS -->
<!-- Custom CSS -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet">
<!-- You can change the theme colors from here -->
<!-- You can change the theme colors from here -->
<link href="assets/css/colors/blue.css" id="theme" rel="stylesheet">
<link href="assets/css/colors/blue.css" id="theme" rel="stylesheet">
<link href="ol/ol.css" rel="stylesheet">
<link href="ol/ol.css" rel="stylesheet">
<link href="customol/css/customOlStyle.css" rel="stylesheet" />
<link href="customol/css/customOlStyle.css" rel="stylesheet" />
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<![endif]-->
</head>
</head>
<body class="fix-header fix-sidebar card-no-border">
<body class="fix-header fix-sidebar card-no-border">
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Preloader - style you can find in spinners.css -->
<!-- Preloader - style you can find in spinners.css -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<div class="preloader">
<div class="preloader">
<svg class="circular" viewBox="25 25 50 50">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" /> </svg>
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" /> </svg>
</div>
</div>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Main wrapper - style you can find in pages.scss -->
<!-- Main wrapper - style you can find in pages.scss -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<div id="main-wrapper">
<div id="main-wrapper">
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Topbar header - style you can find in pages.scss -->
<!-- Topbar header - style you can find in pages.scss -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<header class="topbar" style="background: #1976d2;">
<header class="topbar" style="background: #1976d2;">
<nav class="navbar top-navbar navbar-expand-md navbar-light">
<nav class="navbar top-navbar navbar-expand-md navbar-light">
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Logo -->
<!-- Logo -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<div class="navbar-header">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">
<a class="navbar-brand" href="index.html">
<!-- Logo icon --><b>
<!-- Logo icon --><b>
<!--You can put here icon as well // <i class="wi wi-sunset"></i> //-->
<!--You can put here icon as well // <i class="wi wi-sunset"></i> //-->
<!-- Dark Logo icon -->
<!-- Dark Logo icon -->
<!-- <img src="assets/images/logo-icon.png" alt="homepage" class="dark-logo" /> -->
<!-- <img src="assets/images/logo-icon.png" alt="homepage" class="dark-logo" /> -->
<!-- Light Logo icon -->
<!-- Light Logo icon -->
<!-- <img src="assets/images/logo-light-icon.png" alt="homepage" class="light-logo" /> -->
<!-- <img src="assets/images/logo-light-icon.png" alt="homepage" class="light-logo" /> -->
</b>
</b>
<!--End Logo icon -->
<!--End Logo icon -->
<!-- Logo text --><span>
<!-- Logo text --><span>
<!-- dark Logo text -->
<!-- dark Logo text -->
<img src="assets/images/bisag_logo.png" alt="homepage" class="dark-logo" style="height: 48px;" />
<img src="assets/images/bisag_logo.png" alt="homepage" class="dark-logo" style="height: 48px;" />
<!-- Light Logo text -->
<!-- Light Logo text -->
<img src="assets/images/logo-light-text.png" class="light-logo" alt="homepage" /></span> </a>
<img src="assets/images/logo-light-text.png" class="light-logo" alt="homepage" /></span> </a>
</div>
</div>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Logo -->
<!-- End Logo -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<div class="navbar-collapse">
<div class="navbar-collapse">
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- toggle and nav items -->
<!-- toggle and nav items -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<ul class="navbar-nav mr-auto mt-md-0">
<ul class="navbar-nav mr-auto mt-md-0">
<!-- This is -->
<!-- This is -->
<li class="nav-item"> <a class="nav-link nav-toggler hidden-md-up text-muted waves-effect waves-dark" href="javascript:void(0)"><i class="mdi mdi-menu"></i></a> </li>
<li class="nav-item"> <a class="nav-link nav-toggler hidden-md-up text-muted waves-effect waves-dark" href="javascript:void(0)"><i class="mdi mdi-menu"></i></a> </li>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Comment -->
<!-- Comment -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<li class="nav-item dropdown">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="mdi mdi-message"></i>
<a class="nav-link dropdown-toggle text-muted text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="mdi mdi-message"></i>
<div class="notify"> <span class="heartbit"></span> <span class="point"></span> </div>
<div class="notify"> <span class="heartbit"></span> <span class="point"></span> </div>
</a>
</a>
<div class="dropdown-menu mailbox animated slideInUp">
<div class="dropdown-menu mailbox animated slideInUp">
<ul>
<ul>
<li>
<li>
<div class="drop-title">Notifications</div>
<div class="drop-title">Notifications</div>
</li>
</li>
<li>
<li>
<div class="message-center">
<div class="message-center">
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="btn btn-danger btn-circle"><i class="fa fa-link"></i></div>
<div class="btn btn-danger btn-circle"><i class="fa fa-link"></i></div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Luanch Admin</h5> <span class="mail-desc">Just see the my new admin!</span> <span class="time">9:30 AM</span> </div>
<h5>Luanch Admin</h5> <span class="mail-desc">Just see the my new admin!</span> <span class="time">9:30 AM</span> </div>
</a>
</a>
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="btn btn-success btn-circle"><i class="ti-calendar"></i></div>
<div class="btn btn-success btn-circle"><i class="ti-calendar"></i></div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Event today</h5> <span class="mail-desc">Just a reminder that you have event</span> <span class="time">9:10 AM</span> </div>
<h5>Event today</h5> <span class="mail-desc">Just a reminder that you have event</span> <span class="time">9:10 AM</span> </div>
</a>
</a>
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="btn btn-info btn-circle"><i class="ti-settings"></i></div>
<div class="btn btn-info btn-circle"><i class="ti-settings"></i></div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Settings</h5> <span class="mail-desc">You can customize this template as you want</span> <span class="time">9:08 AM</span> </div>
<h5>Settings</h5> <span class="mail-desc">You can customize this template as you want</span> <span class="time">9:08 AM</span> </div>
</a>
</a>
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="btn btn-primary btn-circle"><i class="ti-user"></i></div>
<div class="btn btn-primary btn-circle"><i class="ti-user"></i></div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Pavan kumar</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:02 AM</span> </div>
<h5>Pavan kumar</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:02 AM</span> </div>
</a>
</a>
</div>
</div>
</li>
</li>
<li>
<li>
<a class="nav-link text-center" href="javascript:void(0);"> <strong>Check all notifications</strong> <i class="fa fa-angle-right"></i> </a>
<a class="nav-link text-center" href="javascript:void(0);"> <strong>Check all notifications</strong> <i class="fa fa-angle-right"></i> </a>
</li>
</li>
</ul>
</ul>
</div>
</div>
</li>
</li>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Comment -->
<!-- End Comment -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Messages -->
<!-- Messages -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<li class="nav-item dropdown">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" id="2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="mdi mdi-email"></i>
<a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" id="2" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="mdi mdi-email"></i>
<div class="notify"> <span class="heartbit"></span> <span class="point"></span> </div>
<div class="notify"> <span class="heartbit"></span> <span class="point"></span> </div>
</a>
</a>
<div class="dropdown-menu mailbox animated slideInUp" aria-labelledby="2">
<div class="dropdown-menu mailbox animated slideInUp" aria-labelledby="2">
<ul>
<ul>
<li>
<li>
<div class="drop-title">You have 4 new messages</div>
<div class="drop-title">You have 4 new messages</div>
</li>
</li>
<li>
<li>
<div class="message-center">
<div class="message-center">
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="user-img"> <img src="assets/images/users/1.jpg" alt="user" class="img-circle"> <span class="profile-status online pull-right"></span> </div>
<div class="user-img"> <img src="assets/images/users/1.jpg" alt="user" class="img-circle"> <span class="profile-status online pull-right"></span> </div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Pavan kumar</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:30 AM</span> </div>
<h5>Pavan kumar</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:30 AM</span> </div>
</a>
</a>
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="user-img"> <img src="assets/images/users/2.jpg" alt="user" class="img-circle"> <span class="profile-status busy pull-right"></span> </div>
<div class="user-img"> <img src="assets/images/users/2.jpg" alt="user" class="img-circle"> <span class="profile-status busy pull-right"></span> </div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Sonu Nigam</h5> <span class="mail-desc">I've sung a song! See you at</span> <span class="time">9:10 AM</span> </div>
<h5>Sonu Nigam</h5> <span class="mail-desc">I've sung a song! See you at</span> <span class="time">9:10 AM</span> </div>
</a>
</a>
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="user-img"> <img src="assets/images/users/3.jpg" alt="user" class="img-circle"> <span class="profile-status away pull-right"></span> </div>
<div class="user-img"> <img src="assets/images/users/3.jpg" alt="user" class="img-circle"> <span class="profile-status away pull-right"></span> </div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Arijit Sinh</h5> <span class="mail-desc">I am a singer!</span> <span class="time">9:08 AM</span> </div>
<h5>Arijit Sinh</h5> <span class="mail-desc">I am a singer!</span> <span class="time">9:08 AM</span> </div>
</a>
</a>
<!-- Message -->
<!-- Message -->
<a href="#">
<a href="#">
<div class="user-img"> <img src="assets/images/users/4.jpg" alt="user" class="img-circle"> <span class="profile-status offline pull-right"></span> </div>
<div class="user-img"> <img src="assets/images/users/4.jpg" alt="user" class="img-circle"> <span class="profile-status offline pull-right"></span> </div>
<div class="mail-contnet">
<div class="mail-contnet">
<h5>Pavan kumar</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:02 AM</span> </div>
<h5>Pavan kumar</h5> <span class="mail-desc">Just see the my admin!</span> <span class="time">9:02 AM</span> </div>
</a>
</a>
</div>
</div>
</li>
</li>
<li>
<li>
<a class="nav-link text-center" href="javascript:void(0);"> <strong>See all e-Mails</strong> <i class="fa fa-angle-right"></i> </a>
<a class="nav-link text-center" href="javascript:void(0);"> <strong>See all e-Mails</strong> <i class="fa fa-angle-right"></i> </a>
</li>
</li>
</ul>
</ul>
</div>
</div>
</li>
</li>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Messages -->
<!-- End Messages -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Messages -->
<!-- Messages -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<li class="nav-item dropdown mega-dropdown"> <a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="mdi mdi-view-grid"></i></a>
<li class="nav-item dropdown mega-dropdown"> <a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="mdi mdi-view-grid"></i></a>
<div class="dropdown-menu animated slideInUp">
<div class="dropdown-menu animated slideInUp">
<ul class="mega-dropdown-menu row">
<ul class="mega-dropdown-menu row">
<li class="col-lg-3 col-xlg-2 m-b-30">
<li class="col-lg-3 col-xlg-2 m-b-30">
<h4 class="m-b-20">CAROUSEL</h4>
<h4 class="m-b-20">CAROUSEL</h4>
<!-- CAROUSEL -->
<!-- CAROUSEL -->
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
<div class="carousel-inner" role="listbox">
<div class="carousel-inner" role="listbox">
<div class="carousel-item active">
<div class="carousel-item active">
<div class="container"> <img class="d-block img-fluid" src="assets/images/big/img1.jpg" alt="First slide"></div>
<div class="container"> <img class="d-block img-fluid" src="assets/images/big/img1.jpg" alt="First slide"></div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-item">
<div class="container"><img class="d-block img-fluid" src="assets/images/big/img2.jpg" alt="Second slide"></div>
<div class="container"><img class="d-block img-fluid" src="assets/images/big/img2.jpg" alt="Second slide"></div>
</div>
</div>
<div class="carousel-item">
<div class="carousel-item">
<div class="container"><img class="d-block img-fluid" src="assets/images/big/img3.jpg" alt="Third slide"></div>
<div class="container"><img class="d-block img-fluid" src="assets/images/big/img3.jpg" alt="Third slide"></div>
</div>
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a>
<a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev"> <span class="carousel-control-prev-icon" aria-hidden="true"></span> <span class="sr-only">Previous</span> </a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a>
<a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next"> <span class="carousel-control-next-icon" aria-hidden="true"></span> <span class="sr-only">Next</span> </a>
</div>
</div>
<!-- End CAROUSEL -->
<!-- End CAROUSEL -->
</li>
</li>
<li class="col-lg-3 m-b-30">
<li class="col-lg-3 m-b-30">
<h4 class="m-b-20">ACCORDION</h4>
<h4 class="m-b-20">ACCORDION</h4>
<!-- Accordian -->
<!-- Accordian -->
<div id="accordion" class="nav-accordion" role="tablist" aria-multiselectable="true">
<div id="accordion" class="nav-accordion" role="tablist" aria-multiselectable="true">
<div class="card">
<div class="card">
<div class="card-header" role="tab" id="headingOne">
<div class="card-header" role="tab" id="headingOne">
<h5 class="mb-0">
<h5 class="mb-0">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Collapsible Group Item #1
Collapsible Group Item #1
</a>
</a>
</h5> </div>
</h5> </div>
<div id="collapseOne" class="collapse show" role="tabpanel" aria-labelledby="headingOne">
<div id="collapseOne" class="collapse show" role="tabpanel" aria-labelledby="headingOne">
<div class="card-body"> Anim pariatur cliche reprehenderit, enim eiusmod high. </div>
<div class="card-body"> Anim pariatur cliche reprehenderit, enim eiusmod high. </div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card">
<div class="card-header" role="tab" id="headingTwo">
<div class="card-header" role="tab" id="headingTwo">
<h5 class="mb-0">
<h5 class="mb-0">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Collapsible Group Item #2
Collapsible Group Item #2
</a>
</a>
</h5> </div>
</h5> </div>
<div id="collapseTwo" class="collapse" role="tabpanel" aria-labelledby="headingTwo">
<div id="collapseTwo" class="collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="card-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. </div>
<div class="card-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. </div>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card">
<div class="card-header" role="tab" id="headingThree">
<div class="card-header" role="tab" id="headingThree">
<h5 class="mb-0">
<h5 class="mb-0">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Collapsible Group Item #3
Collapsible Group Item #3
</a>
</a>
</h5> </div>
</h5> </div>
<div id="collapseThree" class="collapse" role="tabpanel" aria-labelledby="headingThree">
<div id="collapseThree" class="collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="card-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. </div>
<div class="card-body"> Anim pariatur cliche reprehenderit, enim eiusmod high life accusamus terry richardson ad squid. </div>
</div>
</div>
</div>
</div>
</div>
</div>
</li>
</li>
<li class="col-lg-3 m-b-30">
<li class="col-lg-3 m-b-30">
<h4 class="m-b-20">CONTACT US</h4>
<h4 class="m-b-20">CONTACT US</h4>
<!-- Contact -->
<!-- Contact -->
<form>
<form>
<div class="form-group">
<div class="form-group">
<input type="text" class="form-control" id="exampleInputname1" placeholder="Enter Name"> </div>
<input type="text" class="form-control" id="exampleInputname1" placeholder="Enter Name"> </div>
<div class="form-group">
<div class="form-group">
<input type="email" class="form-control" placeholder="Enter email"> </div>
<input type="email" class="form-control" placeholder="Enter email"> </div>
<div class="form-group">
<div class="form-group">
<textarea class="form-control" id="exampleTextarea" rows="3" placeholder="Message"></textarea>
<textarea class="form-control" id="exampleTextarea" rows="3" placeholder="Message"></textarea>
</div>
</div>
<button type="submit" class="btn btn-info">Submit</button>
<button type="submit" class="btn btn-info">Submit</button>
</form>
</form>
</li>
</li>
<li class="col-lg-3 col-xlg-4 m-b-30">
<li class="col-lg-3 col-xlg-4 m-b-30">
<h4 class="m-b-20">List style</h4>
<h4 class="m-b-20">List style</h4>
<!-- List style -->
<!-- List style -->
<ul class="list-style-none">
<ul class="list-style-none">
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> You can give link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> You can give link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Give link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Give link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Another Give link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Another Give link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Forth link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Forth link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Another fifth link</a></li>
<li><a href="javascript:void(0)"><i class="fa fa-check text-success"></i> Another fifth link</a></li>
</ul>
</ul>
</li>
</li>
</ul>
</ul>
</div>
</div>
</li>
</li>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Messages -->
<!-- End Messages -->
<!-- ============================================================== -->
<!-- ============================================================== -->
</ul>
</ul>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- User profile and search -->
<!-- User profile and search -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<ul class="navbar-nav my-lg-0">
<ul class="navbar-nav my-lg-0">
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Search -->
<!-- Search -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<li class="nav-item hidden-sm-down search-box"> <a class="nav-link hidden-sm-down text-muted waves-effect waves-dark" href="javascript:void(0)"><i class="ti-search"></i></a>
<li class="nav-item hidden-sm-down search-box"> <a class="nav-link hidden-sm-down text-muted waves-effect waves-dark" href="javascript:void(0)"><i class="ti-search"></i></a>
<form class="app-search">
<form class="app-search">
<input type="text" class="form-control" placeholder="Search & enter"> <a class="srh-btn"><i class="ti-close"></i></a> </form>
<input type="text" class="form-control" placeholder="Search & enter"> <a class="srh-btn"><i class="ti-close"></i></a> </form>
</li>
</li>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Language -->
<!-- Language -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<li class="nav-item dropdown">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="flag-icon flag-icon-us"></i></a>
<a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> <i class="flag-icon flag-icon-us"></i></a>
<div class="dropdown-menu dropdown-menu-right scale-up"> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-in"></i> India</a> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-fr"></i> French</a> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-cn"></i> China</a> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-de"></i> Dutch</a> </div>
<div class="dropdown-menu dropdown-menu-right scale-up"> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-in"></i> India</a> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-fr"></i> French</a> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-cn"></i> China</a> <a class="dropdown-item" href="#"><i class="flag-icon flag-icon-de"></i> Dutch</a> </div>
</li>
</li>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Profile -->
<!-- Profile -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<li class="nav-item dropdown">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-power-off"></i> </a>
<a class="nav-link dropdown-toggle text-muted waves-effect waves-dark" href="#" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"><i class="fa fa-power-off"></i> </a>
<div class="dropdown-menu dropdown-menu-right scale-up">
<div class="dropdown-menu dropdown-menu-right scale-up">
<ul class="dropdown-user">
<ul class="dropdown-user">
<li><a href="#"><i class="fa fa-power-off"></i> Logout</a></li>
<li><a href="#"><i class="fa fa-power-off"></i> Logout</a></li>
</ul>
</ul>
</div>
</div>
</li>
</li>
</ul>
</ul>
</div>
</div>
</nav>
</nav>
</header>
</header>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Topbar header -->
<!-- End Topbar header -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Left Sidebar - style you can find in sidebar.scss -->
<!-- Left Sidebar - style you can find in sidebar.scss -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Left Sidebar - style you can find in sidebar.scss -->
<!-- End Left Sidebar - style you can find in sidebar.scss -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Page wrapper -->
<!-- Page wrapper -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<div class="page-wrapper">
<div class="page-wrapper">
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Bread crumb and right sidebar toggle -->
<!-- Bread crumb and right sidebar toggle -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<div class="row page-titles">
<div class="row page-titles">
<button class="right-side-toggle waves-effect waves-light btn-inverse btn btn-circle btn-sm pull-right m-l-10"><i class="ti-settings text-white"></i></button>
<button class="right-side-toggle waves-effect waves-light btn-inverse btn btn-circle btn-sm pull-right m-l-10"><i class="ti-settings text-white"></i></button>
</div>
</div>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Bread crumb and right sidebar toggle -->
<!-- End Bread crumb and right sidebar toggle -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Container fluid -->
<!-- Container fluid -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<div class="container-fluid">
<div class="container-fluid">
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Start Page Content -->
<!-- Start Page Content -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<!-- Row -->
<div class="row">
<div class="row">
<div class="col-lg-4 col-xlg-3">
<div class="col-lg-4 col-xlg-3">
<div class="card">
<div class="card">
<div class="card-body">
<div class="card-body">
<h4 class="card-title">Browser Stats</h4>
<h4 class="card-title">Browser Stats</h4>
<table class="table browser m-t-30 no-border">
<table class="table browser m-t-30 no-border">
<tbody>
<tbody>
<tr>
<tr>
<td style="width:40px"><img src="assets/images/browser/chrome-logo.png" alt=logo /></td>
<td style="width:40px"><img src="assets/images/browser/chrome-logo.png" alt=logo /></td>
<td>Google Chrome</td>
<td>Google Chrome</td>
<td class="text-right"><span class="label label-light-info">23%</span></td>
<td class="text-right"><span class="label label-light-info">23%</span></td>
</tr>
</tr>
<tr>
<tr>
<td><img src="assets/images/browser/firefox-logo.png" alt=logo /></td>
<td><img src="assets/images/browser/firefox-logo.png" alt=logo /></td>
<td>Mozila Firefox</td>
<td>Mozila Firefox</td>
<td class="text-right"><span class="label label-light-success">15%</span></td>
<td class="text-right"><span class="label label-light-success">15%</span></td>
</tr>
</tr>
<tr>
<tr>
<td><img src="assets/images/browser/safari-logo.png" alt=logo /></td>
<td><img src="assets/images/browser/safari-logo.png" alt=logo /></td>
<td>Apple Safari</td>
<td>Apple Safari</td>
<td class="text-right"><span class="label label-light-primary">07%</span></td>
<td class="text-right"><span class="label label-light-primary">07%</span></td>
</tr>
</tr>
<tr>
<tr>
<td><img src="assets/images/browser/internet-logo.png" alt=logo /></td>
<td><img src="assets/images/browser/internet-logo.png" alt=logo /></td>
<td>Internet Explorer</td>
<td>Internet Explorer</td>
<td class="text-right"><span class="label label-light-warning">09%</span></td>
<td class="text-right"><span class="label label-light-warning">09%</span></td>
</tr>
</tr>
<tr>
<tr>
<td><img src="assets/images/browser/opera-logo.png" alt=logo /></td>
<td><img src="assets/images/browser/opera-logo.png" alt=logo /></td>
<td>Opera mini</td>
<td>Opera mini</td>
<td class="text-right"><span class="label label-light-danger">23%</span></td>
<td class="text-right"><span class="label label-light-danger">23%</span></td>
</tr>
</tr>
<tr>
<tr>
<td><img src="assets/images/browser/internet-logo.png" alt=logo /></td>
<td><img src="assets/images/browser/internet-logo.png" alt=logo /></td>
<td>Microsoft edge</td>
<td>Microsoft edge</td>
<td class="text-right"><span class="label label-light-megna">09%</span></td>
<td class="text-right"><span class="label label-light-megna">09%</span></td>
</tr>
</tr>
</tbody>
</tbody>
</table>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-8 col-xlg-9">
<div class="col-lg-8 col-xlg-9">
<div class="card">
<div class="card">
<!-- <div class="card-body"> -->
<!-- <div class="card-body"> -->
<div id="target-map" style="width:100%!important; height:435px"></div>
<div id="target-map" style="width:100%!important; height:435px"></div>
<div id="latlon" class="latlon"></div>
<div id="latlon" class="latlon"></div>
<div id="scale" class="scale-line"></div>
<div id="scale" class="scale-line"></div>
<div id="location"
<div id="location"
style="width: 24px; height: 24px; font-size: 24px;">
style="width: 24px; height: 24px; font-size: 24px;">
<div id="popup" class="ol-popup">
<div id="popup" class="ol-popup">
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<a href="#" id="popup-closer" class="ol-popup-closer"></a>
<div id="popup-content"></div>
<div id="popup-content"></div>
</div>
</div>
</div>
</div>
<!-- </div> -->
<!-- </div> -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Row -->
<!-- Row -->
<div class="row">
<div class="row">
<div class="col-lg-12">
<div class="col-lg-12">
<div class="card">
<div class="card">
<div class="card-body">
<div class="card-body">
<h4 class="card-title">Sales Difference</h4>
<h6 class="card-subtitle">Check the difference between two site</h6>
<div class="table-responsive">
<div id="morris-area-chart2" style="height: 335px;"></div>
<table id="getASIReportList" class="table color-table " style="height: 335px;"></table >
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Row -->
<!-- Row -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End PAge Content -->
<!-- End PAge Content -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Right sidebar -->
<!-- Right sidebar -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- .right-sidebar -->
<!-- .right-sidebar -->
<div class="right-sidebar">
<div class="right-sidebar">
<div class="slimscrollright">
<div class="slimscrollright">
<div class="rpanel-title"> Service Panel <span><i class="ti-close right-side-toggle"></i></span> </div>
<div class="rpanel-title"> Service Panel <span><i class="ti-close right-side-toggle"></i></span> </div>
<div class="r-panel-body">
<div class="r-panel-body">
<ul id="themecolors" class="m-t-20">
<ul id="themecolors" class="m-t-20">
<li><b>With Light sidebar</b></li>
<li><b>With Light sidebar</b></li>
<li><a href="javascript:void(0)" data-theme="default" class="default-theme">1</a></li>
<li><a href="javascript:void(0)" data-theme="default" class="default-theme">1</a></li>
<li><a href="javascript:void(0)" data-theme="green" class="green-theme">2</a></li>
<li><a href="javascript:void(0)" data-theme="green" class="green-theme">2</a></li>
<li><a href="javascript:void(0)" data-theme="red" class="red-theme">3</a></li>
<li><a href="javascript:void(0)" data-theme="red" class="red-theme">3</a></li>
<li><a href="javascript:void(0)" data-theme="blue" class="blue-theme working">4</a></li>
<li><a href="javascript:void(0)" data-theme="blue" class="blue-theme working">4</a></li>
<li><a href="javascript:void(0)" data-theme="purple" class="purple-theme">5</a></li>
<li><a href="javascript:void(0)" data-theme="purple" class="purple-theme">5</a></li>
<li><a href="javascript:void(0)" data-theme="megna" class="megna-theme">6</a></li>
<li><a href="javascript:void(0)" data-theme="megna" class="megna-theme">6</a></li>
<li class="d-block m-t-30"><b>With Dark sidebar</b></li>
<li class="d-block m-t-30"><b>With Dark sidebar</b></li>
<li><a href="javascript:void(0)" data-theme="default-dark" class="default-dark-theme">7</a></li>
<li><a href="javascript:void(0)" data-theme="default-dark" class="default-dark-theme">7</a></li>
<li><a href="javascript:void(0)" data-theme="green-dark" class="green-dark-theme">8</a></li>
<li><a href="javascript:void(0)" data-theme="green-dark" class="green-dark-theme">8</a></li>
<li><a href="javascript:void(0)" data-theme="red-dark" class="red-dark-theme">9</a></li>
<li><a href="javascript:void(0)" data-theme="red-dark" class="red-dark-theme">9</a></li>
<li><a href="javascript:void(0)" data-theme="blue-dark" class="blue-dark-theme">10</a></li>
<li><a href="javascript:void(0)" data-theme="blue-dark" class="blue-dark-theme">10</a></li>
<li><a href="javascript:void(0)" data-theme="purple-dark" class="purple-dark-theme">11</a></li>
<li><a href="javascript:void(0)" data-theme="purple-dark" class="purple-dark-theme">11</a></li>
<li><a href="javascript:void(0)" data-theme="megna-dark" class="megna-dark-theme ">12</a></li>
<li><a href="javascript:void(0)" data-theme="megna-dark" class="megna-dark-theme ">12</a></li>
</ul>
</ul>
<ul class="m-t-20 chatonline">
<ul class="m-t-20 chatonline">
<li><b>Chat option</b></li>
<li><b>Chat option</b></li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/1.jpg" alt="user-img" class="img-circle"> <span>Varun Dhavan <small class="text-success">online</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/1.jpg" alt="user-img" class="img-circle"> <span>Varun Dhavan <small class="text-success">online</small></span></a>
</li>
</li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/2.jpg" alt="user-img" class="img-circle"> <span>Genelia Deshmukh <small class="text-warning">Away</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/2.jpg" alt="user-img" class="img-circle"> <span>Genelia Deshmukh <small class="text-warning">Away</small></span></a>
</li>
</li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/3.jpg" alt="user-img" class="img-circle"> <span>Ritesh Deshmukh <small class="text-danger">Busy</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/3.jpg" alt="user-img" class="img-circle"> <span>Ritesh Deshmukh <small class="text-danger">Busy</small></span></a>
</li>
</li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/4.jpg" alt="user-img" class="img-circle"> <span>Arijit Sinh <small class="text-muted">Offline</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/4.jpg" alt="user-img" class="img-circle"> <span>Arijit Sinh <small class="text-muted">Offline</small></span></a>
</li>
</li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/5.jpg" alt="user-img" class="img-circle"> <span>Govinda Star <small class="text-success">online</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/5.jpg" alt="user-img" class="img-circle"> <span>Govinda Star <small class="text-success">online</small></span></a>
</li>
</li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/6.jpg" alt="user-img" class="img-circle"> <span>John Abraham<small class="text-success">online</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/6.jpg" alt="user-img" class="img-circle"> <span>John Abraham<small class="text-success">online</small></span></a>
</li>
</li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/7.jpg" alt="user-img" class="img-circle"> <span>Hritik Roshan<small class="text-success">online</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/7.jpg" alt="user-img" class="img-circle"> <span>Hritik Roshan<small class="text-success">online</small></span></a>
</li>
</li>
<li>
<li>
<a href="javascript:void(0)"><img src="assets/images/users/8.jpg" alt="user-img" class="img-circle"> <span>Pwandeep rajan <small class="text-success">online</small></span></a>
<a href="javascript:void(0)"><img src="assets/images/users/8.jpg" alt="user-img" class="img-circle"> <span>Pwandeep rajan <small class="text-success">online</small></span></a>
</li>
</li>
</ul>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Right sidebar -->
<!-- End Right sidebar -->
<!-- ============================================================== -->
<!-- ============================================================== -->
</div>
</div>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Container fluid -->
<!-- End Container fluid -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- footer -->
<!-- footer -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<footer class="footer">
<footer class="footer">
2021 Developed by BISAG-N
2021 Developed by BISAG-N
</footer>
</footer>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End footer -->
<!-- End footer -->
<!-- ============================================================== -->
<!-- ============================================================== -->
</div>
</div>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Page wrapper -->
<!-- End Page wrapper -->
<!-- ============================================================== -->
<!-- ============================================================== -->
</div>
</div>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- End Wrapper -->
<!-- End Wrapper -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- All Jquery -->
<!-- All Jquery -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<script src="assets/plugins/jquery/jquery.min.js"></script>
<script src="assets/plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap tether Core JavaScript -->
<!-- Bootstrap tether Core JavaScript -->
<script src="assets/plugins/bootstrap/js/popper.min.js"></script>
<script src="assets/plugins/bootstrap/js/popper.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/plugins/datatables/jquery.dataTables.min.js"></script>
<!-- slimscrollbar scrollbar JavaScript -->
<!-- slimscrollbar scrollbar JavaScript -->
<script src="assets/js/jquery.slimscroll.js"></script>
<script src="assets/js/jquery.slimscroll.js"></script>
<!--Wave Effects -->
<!--Wave Effects -->
<script src="assets/js/waves.js"></script>
<script src="assets/js/waves.js"></script>
<!--Menu sidebar -->
<!--Menu sidebar -->
<script src="assets/js/sidebarmenu.js"></script>
<script src="assets/js/sidebarmenu.js"></script>
<!--stickey kit -->
<!--stickey kit -->
<script src="assets/plugins/sticky-kit-master/dist/sticky-kit.min.js"></script>
<script src="assets/plugins/sticky-kit-master/dist/sticky-kit.min.js"></script>
<script src="assets/plugins/sparkline/jquery.sparkline.min.js"></script>
<script src="assets/plugins/sparkline/jquery.sparkline.min.js"></script>
<!--stickey kit -->
<!--stickey kit -->
<script src="assets/plugins/sticky-kit-master/dist/sticky-kit.min.js"></script>
<script src="assets/plugins/sticky-kit-master/dist/sticky-kit.min.js"></script>
<script src="assets/plugins/sparkline/jquery.sparkline.min.js"></script>
<script src="assets/plugins/sparkline/jquery.sparkline.min.js"></script>
<!--Custom JavaScript -->
<!--Custom JavaScript -->
<script src="assets/js/custom.min.js"></script>
<script src="assets/js/custom.min.js"></script>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- This page plugins -->
<!-- This page plugins -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- chartist chart -->
<!-- chartist chart -->
<script src="assets/plugins/chartist-js/dist/chartist.min.js"></script>
<script src="assets/plugins/chartist-js/dist/chartist.min.js"></script>
<script src="assets/plugins/chartist-plugin-tooltip-master/dist/chartist-plugin-tooltip.min.js"></script>
<script src="assets/plugins/chartist-plugin-tooltip-master/dist/chartist-plugin-tooltip.min.js"></script>
<!--morris JavaScript -->
<!--morris JavaScript -->
<script src="assets/plugins/raphael/raphael-min.js"></script>
<script src="assets/plugins/raphael/raphael-min.js"></script>
<script src="assets/plugins/morrisjs/morris.min.js"></script>
<script src="assets/plugins/morrisjs/morris.min.js"></script>
<!-- Vector map JavaScript -->
<!-- Vector map JavaScript -->
<script src="assets/plugins/vectormap/jquery-jvectormap-2.0.2.min.js"></script>
<script src="assets/plugins/vectormap/jquery-jvectormap-2.0.2.min.js"></script>
<script src="assets/plugins/vectormap/jquery-jvectormap-world-mill-en.js"></script>
<script src="assets/plugins/vectormap/jquery-jvectormap-world-mill-en.js"></script>
<script src="assets/js/dashboard2.js"></script>
<script src="assets/js/dashboard2.js"></script>
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- Style switcher -->
<!-- Style switcher -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<script src="assets/plugins/styleswitcher/jQuery.style.switcher.js"></script>
<script src="assets/plugins/styleswitcher/jQuery.style.switcher.js"></script>
<script src="ol/ol.js"></script>
<script src="ol/ol.js"></script>
<script src="customol/js/clear.js"></script>
<script src="customol/js/clear.js"></script>
<script src="customol/js/identify.js"></script>
<script src="customol/js/identify.js"></script>
<script src="customol/js/exportpdf.js"></script>
<script src="customol/js/exportpdf.js"></script>
<script src="customol/js/measure.js"></script>
<script src="customol/js/measure.js"></script>
<script src="customol/js/controllers.js"></script>
<script src="customol/js/controllers.js"></script>
<script src="customol/js/navigation.js"></script>
<script src="customol/js/navigation.js"></script>
<script src="customol/js/scaleline.js"></script>
<script src="customol/js/scaleline.js"></script>
<script src="customol/js/mouse-position.js"></script>
<script src="customol/js/mouse-position.js"></script>
<script src="customol/js/layerSwitcher.js"></script>
<script src="customol/js/layerSwitcher.js"></script>
<script src="customol/js/findbylocation.js"></script>
<script src="customol/js/findbylocation.js"></script>
<script src="customol/js/LayersGroup/indianmapLayersGroup.js"></script>
<script src="customol/js/LayersGroup/indianmapLayersGroup.js"></script>
<script src="customol/js/LayersGroup/satelliteGroup.js"></script>
<script src="customol/js/LayersGroup/satelliteGroup.js"></script>
<script src="customol/js/LayersGroup/commonlayersGroup.js"></script>
<script src="customol/js/LayersGroup/commonlayersGroup.js"></script>
<script src="customol/js/LayersGroup/transportGroup.js"></script>
<script src="customol/js/LayersGroup/transportGroup.js"></script>
<script src="customol/js/LayersGroup/IdentifyLayerGroup.js"></script>
<script src="customol/js/LayersGroup/IdentifyLayerGroup.js"></script>
<script src="customol/js/addGeom.js"></script>
<script src="customol/js/addGeom.js"></script>
<script src="customol/js/main.js"></script>
<script src="customol/js/main.js"></script>
<script src="customol/js/services/services.js"></script>
<script src="customol/js/services/services.js"></script>
<script src="customol/js/Base64.js"></script>
<script src="customol/js/Base64.js"></script>
<script src="customol/js/geomForm.js"></script>
<script src="customol/js/geomForm.js"></script>
<script src="mis/js/services/misservices.js"></script>
<script src="mis/js/services/misservices.js"></script>
<script src="mis/js/customscripts/search.js"></script>
<script src="mis/js/customscripts/search.js"></script>
<script src="mis/js/customscripts/tables.js"></script>
<script src=https://code.jquery.com/jquery-3.5.1.js></script>
<script src=https://cdn.datatables.net/1.10.23/js/jquery.dataTables.min.js></script>
<script src=https://cdn.datatables.net/buttons/1.6.5/js/dataTables.buttons.min.js></script>
<script src=https://cdn.datatables.net/buttons/1.6.5/js/buttons.flash.min.js></script>
<script src=https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js></script>
<script src=https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js></script>
<script src=https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js></script>
<script src=https://cdn.datatables.net/buttons/1.6.5/js/buttons.html5.min.js></script>
<script src=https://cdn.datatables.net/buttons/1.6.5/js/buttons.print.min.js></script>
</body>
</body>
<!-- Mirrored from themedesigner.in/demo/admin-press/main/index2.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 04 May 2019 05:15:40 GMT -->
<!-- Mirrored from themedesigner.in/demo/admin-press/main/index2.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 04 May 2019 05:15:40 GMT -->
</html>
</html>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<html lang="en">
<!-- Mirrored from themedesigner.in/demo/admin-press/main/pages-login.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 04 May 2019 05:15:31 GMT -->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- Tell the browser to be responsive to screen width -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<!-- Favicon icon -->
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/fbisag_logo.png">
<title>SDIS</title>
<!-- Bootstrap Core CSS -->
<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- You can change the theme colors from here -->
<link href="assets/css/colors/blue.css" id="theme" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- ============================================================== -->
<!-- Preloader - style you can find in spinners.css -->
<!-- ============================================================== -->
<div class="preloader">
<svg class="circular" viewBox="25 25 50 50">
<circle class="path" cx="50" cy="50" r="20" fill="none" stroke-width="2" stroke-miterlimit="10" /> </svg>
</div>
<!-- ============================================================== -->
<!-- Main wrapper - style you can find in pages.scss -->
<!-- ============================================================== -->
<section id="wrapper">
<div class="login-register" style="background-image:Linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url(assets/images/6.jpg);">
<div class="login-box card" style="background-color: #09162ac9;">
<div class="card-body">
<form class="form-horizontal form-material" action="/login" method="POST">
<div class="form-group">
<div class="col-xs-12 text-center">
<div class="user-thumb text-center"> <img alt="thumbnail" class="" width="100" src="assets/images/bisag_logo.png">
</div>
</div>
</div>
<c:if test="${param.error != null}">
<p class="card-description text-center"> Invalid username or password.</p>
</c:if>
<div class="form-group ">
<div class="col-xs-12">
<input class="form-control" type="text" required="" placeholder="Username" name="username"> </div>
</div>
<div class="form-group">
<div class="col-xs-12">
<input class="form-control" type="password" name="password" required="" placeholder="Password"> </div>
</div>
<div class="form-group row">
<!-- <div class="col-md-12 font-14"> -->
<!-- <div class="checkbox checkbox-primary pull-left p-t-0">
<input id="checkbox-signup" type="checkbox">
<label for="checkbox-signup"> Remember me </label>
</div> <a href="javascript:void(0)" id="to-recover" class="text-dark pull-right"><i class="fa fa-lock m-r-5"></i> Forgot pwd?</a> </div> -->
</div>
<div class="form-group text-center m-t-20">
<div class="col-xs-12">
<button class="btn btn-info btn-lg btn-block text-uppercase waves-effect waves-light" type="submit">Log In</button>
</div>
</div>
<div class="form-group m-b-0">
<div class="col-sm-12 text-center">
<div>Don't have an account? <a href="pages-register.html" class="text-info m-l-5"><b>Sign Up</b></a></div>
</div>
</div>
</form>
<form class="form-horizontal" id="recoverform" action="http://themedesigner.in/demo/admin-press/main/index.html">
<div class="form-group ">
<div class="col-xs-12">
<h3>Recover Password</h3>
<p class="text-muted">Enter your Email and instructions will be sent to you! </p>
</div>
</div>
<div class="form-group ">
<div class="col-xs-12">
<input class="form-control" type="text" required="" placeholder="Email"> </div>
</div>
<div class="form-group text-center m-t-20">
<div class="col-xs-12">
<button class="btn btn-primary btn-lg btn-block text-uppercase waves-effect waves-light" type="submit">Reset</button>
</div>
</div>
</form>
</div>
</div>
</div>
</section>
<!-- ============================================================== -->
<!-- End Wrapper -->
<!-- ============================================================== -->
<!-- ============================================================== -->
<!-- All Jquery -->
<!-- ============================================================== -->
<script src="assets/plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap tether Core JavaScript -->
<script src="assets/plugins/bootstrap/js/popper.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- slimscrollbar scrollbar JavaScript -->
<script src="assets/js/jquery.slimscroll.js"></script>
<!--Wave Effects -->
<script src="assets/js/waves.js"></script>
<!--Menu sidebar -->
<script src="assets/js/sidebarmenu.js"></script>
<!--stickey kit -->
<script src="assets/plugins/sticky-kit-master/dist/sticky-kit.min.js"></script>
<script src="assets/plugins/sparkline/jquery.sparkline.min.js"></script>
<!--Custom JavaScript -->
<script src="assets/js/custom.min.js"></script>
<!-- ============================================================== -->
<!-- Style switcher -->
<!-- ============================================================== -->
<script src="assets/plugins/styleswitcher/jQuery.style.switcher.js"></script>
</body>
<!-- Mirrored from themedesigner.in/demo/admin-press/main/pages-login.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 04 May 2019 05:15:32 GMT -->
</html>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html lang="en">
<!-- Mirrored from demos.creative-tim.com/material-dashboard-pro/examples/pages/login.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 20 Apr 2019 08:06:55 GMT -->
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=utf-8" /><!-- /Added by HTTrack -->
<head>
<meta charset="utf-8" />
<link rel="apple-touch-icon" sizes="76x76" href="assets/img/apple-icon.png">
<link rel="icon" type="image/png" href="assets/img/favicon.png">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>
Material Dashboard PRO by Creative Tim
</title>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, shrink-to-fit=no' name='viewport' />
<!-- Extra details for Live View on GitHub Pages -->
<!-- Canonical SEO -->
<!-- <link rel="canonical" href="https://www.creative-tim.com/product/material-dashboard-pro" />
Social tags
Fonts and icons
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="../../../../maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css"> -->
<!-- CSS Files -->
<link href="assets/plugins/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="assets/css/style.css" rel="stylesheet">
<!-- You can change the theme colors from here -->
<link href="assets/css/colors/blue.css" id="theme" rel="stylesheet">
<!-- Google Tag Manager -->
</head>
<body class="off-canvas-sidebar">
<!-- Extra details for Live View on GitHub Pages -->
<!-- Google Tag Manager (noscript) -->
<noscript>
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-NKDMSK6" height="0" width="0" style="display:none;visibility:hidden"></iframe>
</noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-transparent navbar-absolute fixed-top text-white">
<div class="container">
<div class="navbar-wrapper">
<a class="navbar-brand" href="#pablo">Registration Page</a>
</div>
<!-- <div class="collapse navbar-collapse justify-content-end">
<ul class="navbar-nav">
<li class="nav-item">
<a href="../dashboard.html" class="nav-link">
<i class="material-icons">dashboard</i> Dashboard
</a>
</li>
<li class="nav-item ">
<a href="register.html" class="nav-link">
<i class="material-icons">person_add</i> Register
</a>
</li>
<li class="nav-item active ">
<a href="login.html" class="nav-link">
<i class="material-icons">fingerprint</i> Login
</a>
</li>
<li class="nav-item ">
<a href="lock.html" class="nav-link">
<i class="material-icons">lock_open</i> Lock
</a>
</li>
</ul>
</div> -->
</div>
</nav>
<!-- End Navbar -->
<div class="wrapper wrapper-full-page">
<div class="page-header login-page header-filter" filter-color="black" style="background-image: url('assets/img/login.jpg'); background-size: cover; background-position: top center;">
<!-- you can change the color of the filter page using: data-color="blue | purple | green | orange | red | rose " -->
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-6 col-sm-8 ml-auto mr-auto">
<form:form action="register" modelAttribute="user" method="POST" class="form">
<div class="card card-login card-hidden">
<div class="card-header card-header-rose text-center">
<h4 class="card-title">Registration</h4>
</div>
<div class="card-body ">
${message}
<c:if test="${param.error != null}">
<p class="card-description text-center">
Invalid username or password.
</p>
</c:if>
<span class="bmd-form-group">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="material-icons">face</i>
</span>
</div>
<input type="text" class="form-control" name="username" placeholder="User Name">
</div>
</span>
<span class="bmd-form-group">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="material-icons">lock_outline</i>
</span>
</div>
<input type="password" class="form-control" name="password" placeholder="Password">
</div>
</span>
<span class="bmd-form-group">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="material-icons">shopping_bag</i>
</span>
</div>
<select name="role" class="selectpicker" data-size="7" id="format" data-style="btn btn-primary btn-round" title="Single Select">
<option value="admin" selected>admin</option>
<option value="user">user</option>
</select>
</div>
</span>
</div>
<div class="card-footer justify-content-center">
<input type="submit" class="btn btn-rose btn-link btn-lg" value="Submit" />
</div>
</div>
</form:form>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<nav class="float-left">
<ul>
<li>
<a href="https://www.creative-tim.com/">
Creative Tim
</a>
</li>
<li>
<a href="https://creative-tim.com/presentation">
About Us
</a>
</li>
<li>
<a href="http://blog.creative-tim.com/">
Blog
</a>
</li>
<li>
<a href="https://www.creative-tim.com/license">
Licenses
</a>
</li>
</ul>
</nav>
<div class="copyright float-right">
&copy;
<script>
document.write(new Date().getFullYear())
</script>, made with <i class="material-icons">favorite</i> by
<a href="https://www.creative-tim.com/" target="_blank">Creative Tim</a> for a better web.
</div>
</div>
</footer>
</div>
</div>
<!-- Core JS Files -->
<script src="assets/plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap tether Core JavaScript -->
<script src="assets/plugins/bootstrap/js/popper.min.js"></script>
<script src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- slimscrollbar scrollbar JavaScript -->
<script src="assets/js/jquery.slimscroll.js"></script>
<!--Wave Effects -->
<script src="assets/js/waves.js"></script>
<!--Menu sidebar -->
<script src="assets/js/sidebarmenu.js"></script>
<!--stickey kit -->
<script src="assets/plugins/sticky-kit-master/dist/sticky-kit.min.js"></script>
<script src="assets/plugins/sparkline/jquery.sparkline.min.js"></script>
<!--Custom JavaScript -->
<script src="assets/js/custom.min.js"></script>
<!-- ============================================================== -->
<!-- Style switcher -->
<!-- ============================================================== -->
<script src="assets/plugins/styleswitcher/jQuery.style.switcher.js"></script>
</body>
<!-- Mirrored from demos.creative-tim.com/material-dashboard-pro/examples/pages/login.html by HTTrack Website Copier/3.x [XR&CO'2014], Sat, 20 Apr 2019 08:06:56 GMT -->
</html>