diff --git a/src/main/java/com/how2java/tmall/controller/CategoryController.java b/src/main/java/com/how2java/tmall/controller/CategoryController.java new file mode 100644 index 0000000..5d2f424 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/CategoryController.java @@ -0,0 +1,3 @@ + + +package com.how2java.tmall.controller; diff --git a/src/main/java/com/how2java/tmall/controller/ForeController.java b/src/main/java/com/how2java/tmall/controller/ForeController.java new file mode 100644 index 0000000..e074459 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/ForeController.java @@ -0,0 +1,4 @@ + + +package com.how2java.tmall.controller; + diff --git a/src/main/java/com/how2java/tmall/controller/OrderController.java b/src/main/java/com/how2java/tmall/controller/OrderController.java new file mode 100644 index 0000000..5d2f424 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/OrderController.java @@ -0,0 +1,3 @@ + + +package com.how2java.tmall.controller; diff --git a/src/main/java/com/how2java/tmall/controller/PageController.java b/src/main/java/com/how2java/tmall/controller/PageController.java new file mode 100644 index 0000000..e074459 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/PageController.java @@ -0,0 +1,4 @@ + + +package com.how2java.tmall.controller; + diff --git a/src/main/java/com/how2java/tmall/controller/ProductController.java b/src/main/java/com/how2java/tmall/controller/ProductController.java new file mode 100644 index 0000000..5d2f424 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/ProductController.java @@ -0,0 +1,3 @@ + + +package com.how2java.tmall.controller; diff --git a/src/main/java/com/how2java/tmall/controller/ProductImageController.java b/src/main/java/com/how2java/tmall/controller/ProductImageController.java new file mode 100644 index 0000000..e074459 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/ProductImageController.java @@ -0,0 +1,4 @@ + + +package com.how2java.tmall.controller; + diff --git a/src/main/java/com/how2java/tmall/controller/PropertyController.java b/src/main/java/com/how2java/tmall/controller/PropertyController.java new file mode 100644 index 0000000..e074459 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/PropertyController.java @@ -0,0 +1,4 @@ + + +package com.how2java.tmall.controller; + diff --git a/src/main/java/com/how2java/tmall/controller/PropertyValueController.java b/src/main/java/com/how2java/tmall/controller/PropertyValueController.java new file mode 100644 index 0000000..4696e12 --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/PropertyValueController.java @@ -0,0 +1,43 @@ + + +package com.how2java.tmall.controller; + +import com.how2java.tmall.pojo.Product; +import com.how2java.tmall.pojo.PropertyValue; +import com.how2java.tmall.service.ProductService; +import com.how2java.tmall.service.PropertyValueService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; + +import java.util.List; + +@Controller +@RequestMapping("") +public class PropertyValueController { + @Autowired + PropertyValueService propertyValueService; + @Autowired + ProductService productService; + + @RequestMapping("admin_propertyValue_edit") + public String edit(Model model,int pid) { + Product p = productService.get(pid); + propertyValueService.init(p); + List<PropertyValue> pvs = propertyValueService.list(p.getId()); + + model.addAttribute("p", p); + model.addAttribute("pvs", pvs); + return "admin/editPropertyValue"; + } + @RequestMapping("admin_propertyValue_update") + @ResponseBody + public String update(PropertyValue pv) { + propertyValueService.update(pv); + return "success"; + } +} + + diff --git a/src/main/java/com/how2java/tmall/controller/UserController.java b/src/main/java/com/how2java/tmall/controller/UserController.java new file mode 100644 index 0000000..37ffe8c --- /dev/null +++ b/src/main/java/com/how2java/tmall/controller/UserController.java @@ -0,0 +1,43 @@ + + +package com.how2java.tmall.controller; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.ui.Model; +import org.springframework.web.bind.annotation.RequestMapping; + +import com.github.pagehelper.PageHelper; +import com.github.pagehelper.PageInfo; +import com.how2java.tmall.pojo.User; +import com.how2java.tmall.service.UserService; +import com.how2java.tmall.util.Page; + + +@Controller +@RequestMapping("") +public class UserController { + @Autowired + UserService userService; + + @RequestMapping("admin_user_list") + public String list(Model model, Page page){ + PageHelper.offsetPage(page.getStart(),page.getCount()); + + List<User> us= userService.list(); + + int total = (int) new PageInfo<>(us).getTotal(); + page.setTotal(total); + + model.addAttribute("us", us); + model.addAttribute("page", page); + + return "admin/listUser"; + } + + + +} + diff --git a/src/main/java/com/how2java/tmall/interceptor/LoginInterceptor.java b/src/main/java/com/how2java/tmall/interceptor/LoginInterceptor.java new file mode 100644 index 0000000..2ba6153 --- /dev/null +++ b/src/main/java/com/how2java/tmall/interceptor/LoginInterceptor.java @@ -0,0 +1,96 @@ + + +package com.how2java.tmall.interceptor; +import java.util.Arrays; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.servlet.ModelAndView; +import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; + +import com.how2java.tmall.pojo.Category; +import com.how2java.tmall.pojo.OrderItem; +import com.how2java.tmall.pojo.User; +import com.how2java.tmall.service.CategoryService; +import com.how2java.tmall.service.OrderItemService; + +public class LoginInterceptor extends HandlerInterceptorAdapter { + @Autowired + CategoryService categoryService; + @Autowired + OrderItemService orderItemService; + /** + * 在业务处理器处理请求之前被调用 + * 如果返回false + * 从当前的拦截器往回执行所有拦截器的afterCompletion(),再退出拦截器链 + * 如果返回true + * 执行下一个拦截器,直到所有的拦截器都执行完毕 + * 再执行被拦截的Controller + * 然后进入拦截器链, + * 从最后一个拦截器往回执行所有的postHandle() + * 接着再从最后一个拦截器往回执行所有的afterCompletion() + */ + public boolean preHandle(HttpServletRequest request, + HttpServletResponse response, Object handler) throws Exception { + + HttpSession session = request.getSession(); + String contextPath=session.getServletContext().getContextPath(); + String[] noNeedAuthPage = new String[]{ + "home", + "checkLogin", + "register", + "loginAjax", + "login", + "product", + "category", + "search"}; + + String uri = request.getRequestURI(); + uri = StringUtils.remove(uri, contextPath); +// System.out.println(uri); + if(uri.startsWith("/fore")){ + String method = StringUtils.substringAfterLast(uri,"/fore" ); + if(!Arrays.asList(noNeedAuthPage).contains(method)){ + User user =(User) session.getAttribute("user"); + if(null==user){ + response.sendRedirect("loginPage"); + return false; + } + } + } + + return true; + + } + + /** + * 在业务处理器处理请求执行完成后,生成视图之前执行的动作 + * 可在modelAndView中加入数据,比如当前时间 + */ + + public void postHandle(HttpServletRequest request, + HttpServletResponse response, Object handler, + ModelAndView modelAndView) throws Exception { + + + } + + /** + * 在DispatcherServlet完全处理完请求后被调用,可用于清理资源等 + * + * 当有拦截器抛出异常时,会从当前拦截器往回执行所有的拦截器的afterCompletion() + */ + + public void afterCompletion(HttpServletRequest request, + HttpServletResponse response, Object handler, Exception ex) + throws Exception { + + } + +} + diff --git a/src/main/java/com/how2java/tmall/interceptor/OtherInterceptor.java b/src/main/java/com/how2java/tmall/interceptor/OtherInterceptor.java new file mode 100644 index 0000000..651d8bc --- /dev/null +++ b/src/main/java/com/how2java/tmall/interceptor/OtherInterceptor.java @@ -0,0 +1,89 @@ + + +package com.how2java.tmall.interceptor; +import java.util.Arrays; +import java.util.List; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import javax.servlet.http.HttpSession; + +import org.apache.commons.lang.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.servlet.ModelAndView; +import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; + +import com.how2java.tmall.pojo.Category; +import com.how2java.tmall.pojo.OrderItem; +import com.how2java.tmall.pojo.User; +import com.how2java.tmall.service.CategoryService; +import com.how2java.tmall.service.OrderItemService; + +public class OtherInterceptor extends HandlerInterceptorAdapter { + @Autowired + CategoryService categoryService; + @Autowired + OrderItemService orderItemService; + /** + * 在业务处理器处理请求之前被调用 + * 如果返回false + * 从当前的拦截器往回执行所有拦截器的afterCompletion(),再退出拦截器链 + * 如果返回true + * 执行下一个拦截器,直到所有的拦截器都执行完毕 + * 再执行被拦截的Controller + * 然后进入拦截器链, + * 从最后一个拦截器往回执行所有的postHandle() + * 接着再从最后一个拦截器往回执行所有的afterCompletion() + */ + public boolean preHandle(HttpServletRequest request, + HttpServletResponse response, Object handler) throws Exception { + return true; + + } + + /** + * 在业务处理器处理请求执行完成后,生成视图之前执行的动作 + * 可在modelAndView中加入数据,比如当前时间 + */ + + public void postHandle(HttpServletRequest request, + HttpServletResponse response, Object handler, + ModelAndView modelAndView) throws Exception { + /*这里是获取分类集合信息,用于放在搜索栏下面*/ + List<Category> cs = categoryService.list(); + request.getSession().setAttribute("cs", cs); + + /*这里是获取当前的contextPath:tmall_ssm,用与放在左上角那个变形金刚,点击之后才能够跳转到首页,否则点击之后也仅仅停留在当前页面*/ + HttpSession session = request.getSession(); + String contextPath=session.getServletContext().getContextPath(); + request.getSession().setAttribute("contextPath", contextPath); + + /*这里是获取购物车中一共有多少数量*/ + User user =(User) session.getAttribute("user"); + int cartTotalItemNumber = 0; + if(null!=user) { + List<OrderItem> ois = orderItemService.listByUser(user.getId()); + for (OrderItem oi : ois) { + cartTotalItemNumber+=oi.getNumber(); + } + + } + request.getSession().setAttribute("cartTotalItemNumber", cartTotalItemNumber); + + } + + /** + * 在DispatcherServlet完全处理完请求后被调用,可用于清理资源等 + * + * 当有拦截器抛出异常时,会从当前拦截器往回执行所有的拦截器的afterCompletion() + */ + + public void afterCompletion(HttpServletRequest request, + HttpServletResponse response, Object handler, Exception ex) + throws Exception { + +// System.out.println("afterCompletion(), 在访问视图之后被调用"); + } + +} + diff --git a/src/main/java/com/how2java/tmall/mapper/CategoryMapper.java b/src/main/java/com/how2java/tmall/mapper/CategoryMapper.java new file mode 100644 index 0000000..71f04d7 --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/CategoryMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.Category; +import com.how2java.tmall.pojo.CategoryExample; +import java.util.List; + +public interface CategoryMapper { + int deleteByPrimaryKey(Integer id); + + int insert(Category record); + + int insertSelective(Category record); + + List<Category> selectByExample(CategoryExample example); + + Category selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(Category record); + + int updateByPrimaryKey(Category record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/OrderItemMapper.java b/src/main/java/com/how2java/tmall/mapper/OrderItemMapper.java new file mode 100644 index 0000000..0862d7c --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/OrderItemMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.OrderItem; +import com.how2java.tmall.pojo.OrderItemExample; +import java.util.List; + +public interface OrderItemMapper { + int deleteByPrimaryKey(Integer id); + + int insert(OrderItem record); + + int insertSelective(OrderItem record); + + List<OrderItem> selectByExample(OrderItemExample example); + + OrderItem selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(OrderItem record); + + int updateByPrimaryKey(OrderItem record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/OrderMapper.java b/src/main/java/com/how2java/tmall/mapper/OrderMapper.java new file mode 100644 index 0000000..8ea4f7c --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/OrderMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.Order; +import com.how2java.tmall.pojo.OrderExample; +import java.util.List; + +public interface OrderMapper { + int deleteByPrimaryKey(Integer id); + + int insert(Order record); + + int insertSelective(Order record); + + List<Order> selectByExample(OrderExample example); + + Order selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(Order record); + + int updateByPrimaryKey(Order record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/ProductImageMapper.java b/src/main/java/com/how2java/tmall/mapper/ProductImageMapper.java new file mode 100644 index 0000000..4bc9d1b --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/ProductImageMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.ProductImage; +import com.how2java.tmall.pojo.ProductImageExample; +import java.util.List; + +public interface ProductImageMapper { + int deleteByPrimaryKey(Integer id); + + int insert(ProductImage record); + + int insertSelective(ProductImage record); + + List<ProductImage> selectByExample(ProductImageExample example); + + ProductImage selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(ProductImage record); + + int updateByPrimaryKey(ProductImage record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/ProductMapper.java b/src/main/java/com/how2java/tmall/mapper/ProductMapper.java new file mode 100644 index 0000000..d376282 --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/ProductMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.Product; +import com.how2java.tmall.pojo.ProductExample; +import java.util.List; + +public interface ProductMapper { + int deleteByPrimaryKey(Integer id); + + int insert(Product record); + + int insertSelective(Product record); + + List<Product> selectByExample(ProductExample example); + + Product selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(Product record); + + int updateByPrimaryKey(Product record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/PropertyMapper.java b/src/main/java/com/how2java/tmall/mapper/PropertyMapper.java new file mode 100644 index 0000000..d6f7607 --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/PropertyMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.Property; +import com.how2java.tmall.pojo.PropertyExample; +import java.util.List; + +public interface PropertyMapper { + int deleteByPrimaryKey(Integer id); + + int insert(Property record); + + int insertSelective(Property record); + + List<Property> selectByExample(PropertyExample example); + + Property selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(Property record); + + int updateByPrimaryKey(Property record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/PropertyValueMapper.java b/src/main/java/com/how2java/tmall/mapper/PropertyValueMapper.java new file mode 100644 index 0000000..e3b740f --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/PropertyValueMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.PropertyValue; +import com.how2java.tmall.pojo.PropertyValueExample; +import java.util.List; + +public interface PropertyValueMapper { + int deleteByPrimaryKey(Integer id); + + int insert(PropertyValue record); + + int insertSelective(PropertyValue record); + + List<PropertyValue> selectByExample(PropertyValueExample example); + + PropertyValue selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(PropertyValue record); + + int updateByPrimaryKey(PropertyValue record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/ReviewMapper.java b/src/main/java/com/how2java/tmall/mapper/ReviewMapper.java new file mode 100644 index 0000000..de67d65 --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/ReviewMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.Review; +import com.how2java.tmall.pojo.ReviewExample; +import java.util.List; + +public interface ReviewMapper { + int deleteByPrimaryKey(Integer id); + + int insert(Review record); + + int insertSelective(Review record); + + List<Review> selectByExample(ReviewExample example); + + Review selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(Review record); + + int updateByPrimaryKey(Review record); +} + diff --git a/src/main/java/com/how2java/tmall/mapper/UserMapper.java b/src/main/java/com/how2java/tmall/mapper/UserMapper.java new file mode 100644 index 0000000..d2aa1f4 --- /dev/null +++ b/src/main/java/com/how2java/tmall/mapper/UserMapper.java @@ -0,0 +1,24 @@ + + +package com.how2java.tmall.mapper; + +import com.how2java.tmall.pojo.User; +import com.how2java.tmall.pojo.UserExample; +import java.util.List; + +public interface UserMapper { + int deleteByPrimaryKey(Integer id); + + int insert(User record); + + int insertSelective(User record); + + List<User> selectByExample(UserExample example); + + User selectByPrimaryKey(Integer id); + + int updateByPrimaryKeySelective(User record); + + int updateByPrimaryKey(User record); +} + diff --git a/src/main/java/com/how2java/tmall/pojo/Category.java b/src/main/java/com/how2java/tmall/pojo/Category.java new file mode 100644 index 0000000..3e5df13 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/Category.java @@ -0,0 +1,49 @@ + + +package com.how2java.tmall.pojo; + +import java.util.List; + +public class Category { + private Integer id; + + private String name; + + /*如下是非数据库字段*/ + private List<Product> products; + + private List<List<Product>> productsByRow; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public List<Product> getProducts() { + return products; + } + + public void setProducts(List<Product> products) { + this.products = products; + } + + public List<List<Product>> getProductsByRow() { + return productsByRow; + } + + public void setProductsByRow(List<List<Product>> productsByRow) { + this.productsByRow = productsByRow; + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/CategoryExample.java b/src/main/java/com/how2java/tmall/pojo/CategoryExample.java new file mode 100644 index 0000000..55021d4 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/CategoryExample.java @@ -0,0 +1,333 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.List; + +public class CategoryExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public CategoryExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andNameIsNull() { + addCriterion("name is null"); + return (Criteria) this; + } + + public Criteria andNameIsNotNull() { + addCriterion("name is not null"); + return (Criteria) this; + } + + public Criteria andNameEqualTo(String value) { + addCriterion("name =", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotEqualTo(String value) { + addCriterion("name <>", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThan(String value) { + addCriterion("name >", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThanOrEqualTo(String value) { + addCriterion("name >=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThan(String value) { + addCriterion("name <", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThanOrEqualTo(String value) { + addCriterion("name <=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLike(String value) { + addCriterion("name like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotLike(String value) { + addCriterion("name not like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameIn(List<String> values) { + addCriterion("name in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameNotIn(List<String> values) { + addCriterion("name not in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameBetween(String value1, String value2) { + addCriterion("name between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andNameNotBetween(String value1, String value2) { + addCriterion("name not between", value1, value2, "name"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/Order.java b/src/main/java/com/how2java/tmall/pojo/Order.java new file mode 100644 index 0000000..0cb760a --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/Order.java @@ -0,0 +1,218 @@ + + +package com.how2java.tmall.pojo; + +import com.how2java.tmall.service.OrderService; + +import java.util.Date; +import java.util.List; + + +public class Order { + private Integer id; + + private String orderCode; + + private String address; + + private String post; + + private String receiver; + + private String mobile; + + private String userMessage; + + private Date createDate; + + private Date payDate; + + private Date deliveryDate; + + private Date confirmDate; + + private Integer uid; + + private String status; + + + /*如下是非数据库字段*/ + private List<OrderItem> orderItems; + + private User user; + + private float total; + + private int totalNumber; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getOrderCode() { + return orderCode; + } + + public void setOrderCode(String orderCode) { + this.orderCode = orderCode == null ? null : orderCode.trim(); + } + + public String getAddress() { + return address; + } + + public void setAddress(String address) { + this.address = address == null ? null : address.trim(); + } + + public String getPost() { + return post; + } + + public void setPost(String post) { + this.post = post == null ? null : post.trim(); + } + + public String getReceiver() { + return receiver; + } + + public void setReceiver(String receiver) { + this.receiver = receiver == null ? null : receiver.trim(); + } + + public String getMobile() { + return mobile; + } + + public void setMobile(String mobile) { + this.mobile = mobile == null ? null : mobile.trim(); + } + + public String getUserMessage() { + return userMessage; + } + + public void setUserMessage(String userMessage) { + this.userMessage = userMessage == null ? null : userMessage.trim(); + } + + public Date getCreateDate() { + return createDate; + } + + public void setCreateDate(Date createDate) { + this.createDate = createDate; + } + + public Date getPayDate() { + return payDate; + } + + public void setPayDate(Date payDate) { + this.payDate = payDate; + } + + public Date getDeliveryDate() { + return deliveryDate; + } + + public void setDeliveryDate(Date deliveryDate) { + this.deliveryDate = deliveryDate; + } + + public Date getConfirmDate() { + return confirmDate; + } + + public void setConfirmDate(Date confirmDate) { + this.confirmDate = confirmDate; + } + + public Integer getUid() { + return uid; + } + + public void setUid(Integer uid) { + this.uid = uid; + } + + public String getStatus() { + return status; + } + + public void setStatus(String status) { + this.status = status == null ? null : status.trim(); + } + + public List<OrderItem> getOrderItems() { + return orderItems; + } + + public void setOrderItems(List<OrderItem> orderItems) { + this.orderItems = orderItems; + } + + + public static void main(String args[]){ + Order o = new Order(); + o.setStatus(OrderService.delete); + System.out.println(o.getStatusDesc()); + } + public String getStatusDesc(){ + String desc ="未知"; + switch(status){ + case OrderService.waitPay: + desc="待付款"; + break; + case OrderService.waitDelivery: + desc="待发货"; + break; + case OrderService.waitConfirm: + desc="待收货"; + break; + case OrderService.waitReview: + desc="等评价"; + break; + case OrderService.finish: + desc="完成"; + break; + case OrderService.delete: + desc="刪除"; + break; + default: + desc="未知"; + } + return desc; + } + + + public float getTotal() { + return total; + } + + public void setTotal(float total) { + this.total = total; + } + + public int getTotalNumber() { + return totalNumber; + } + + public void setTotalNumber(int totalNumber) { + this.totalNumber = totalNumber; + } + + public User getUser() { + return user; + } + + public void setUser(User user) { + this.user = user; + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/OrderExample.java b/src/main/java/com/how2java/tmall/pojo/OrderExample.java new file mode 100644 index 0000000..ce570a5 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/OrderExample.java @@ -0,0 +1,1054 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class OrderExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public OrderExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andOrderCodeIsNull() { + addCriterion("orderCode is null"); + return (Criteria) this; + } + + public Criteria andOrderCodeIsNotNull() { + addCriterion("orderCode is not null"); + return (Criteria) this; + } + + public Criteria andOrderCodeEqualTo(String value) { + addCriterion("orderCode =", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeNotEqualTo(String value) { + addCriterion("orderCode <>", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeGreaterThan(String value) { + addCriterion("orderCode >", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeGreaterThanOrEqualTo(String value) { + addCriterion("orderCode >=", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeLessThan(String value) { + addCriterion("orderCode <", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeLessThanOrEqualTo(String value) { + addCriterion("orderCode <=", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeLike(String value) { + addCriterion("orderCode like", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeNotLike(String value) { + addCriterion("orderCode not like", value, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeIn(List<String> values) { + addCriterion("orderCode in", values, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeNotIn(List<String> values) { + addCriterion("orderCode not in", values, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeBetween(String value1, String value2) { + addCriterion("orderCode between", value1, value2, "orderCode"); + return (Criteria) this; + } + + public Criteria andOrderCodeNotBetween(String value1, String value2) { + addCriterion("orderCode not between", value1, value2, "orderCode"); + return (Criteria) this; + } + + public Criteria andAddressIsNull() { + addCriterion("address is null"); + return (Criteria) this; + } + + public Criteria andAddressIsNotNull() { + addCriterion("address is not null"); + return (Criteria) this; + } + + public Criteria andAddressEqualTo(String value) { + addCriterion("address =", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressNotEqualTo(String value) { + addCriterion("address <>", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressGreaterThan(String value) { + addCriterion("address >", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressGreaterThanOrEqualTo(String value) { + addCriterion("address >=", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressLessThan(String value) { + addCriterion("address <", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressLessThanOrEqualTo(String value) { + addCriterion("address <=", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressLike(String value) { + addCriterion("address like", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressNotLike(String value) { + addCriterion("address not like", value, "address"); + return (Criteria) this; + } + + public Criteria andAddressIn(List<String> values) { + addCriterion("address in", values, "address"); + return (Criteria) this; + } + + public Criteria andAddressNotIn(List<String> values) { + addCriterion("address not in", values, "address"); + return (Criteria) this; + } + + public Criteria andAddressBetween(String value1, String value2) { + addCriterion("address between", value1, value2, "address"); + return (Criteria) this; + } + + public Criteria andAddressNotBetween(String value1, String value2) { + addCriterion("address not between", value1, value2, "address"); + return (Criteria) this; + } + + public Criteria andPostIsNull() { + addCriterion("post is null"); + return (Criteria) this; + } + + public Criteria andPostIsNotNull() { + addCriterion("post is not null"); + return (Criteria) this; + } + + public Criteria andPostEqualTo(String value) { + addCriterion("post =", value, "post"); + return (Criteria) this; + } + + public Criteria andPostNotEqualTo(String value) { + addCriterion("post <>", value, "post"); + return (Criteria) this; + } + + public Criteria andPostGreaterThan(String value) { + addCriterion("post >", value, "post"); + return (Criteria) this; + } + + public Criteria andPostGreaterThanOrEqualTo(String value) { + addCriterion("post >=", value, "post"); + return (Criteria) this; + } + + public Criteria andPostLessThan(String value) { + addCriterion("post <", value, "post"); + return (Criteria) this; + } + + public Criteria andPostLessThanOrEqualTo(String value) { + addCriterion("post <=", value, "post"); + return (Criteria) this; + } + + public Criteria andPostLike(String value) { + addCriterion("post like", value, "post"); + return (Criteria) this; + } + + public Criteria andPostNotLike(String value) { + addCriterion("post not like", value, "post"); + return (Criteria) this; + } + + public Criteria andPostIn(List<String> values) { + addCriterion("post in", values, "post"); + return (Criteria) this; + } + + public Criteria andPostNotIn(List<String> values) { + addCriterion("post not in", values, "post"); + return (Criteria) this; + } + + public Criteria andPostBetween(String value1, String value2) { + addCriterion("post between", value1, value2, "post"); + return (Criteria) this; + } + + public Criteria andPostNotBetween(String value1, String value2) { + addCriterion("post not between", value1, value2, "post"); + return (Criteria) this; + } + + public Criteria andReceiverIsNull() { + addCriterion("receiver is null"); + return (Criteria) this; + } + + public Criteria andReceiverIsNotNull() { + addCriterion("receiver is not null"); + return (Criteria) this; + } + + public Criteria andReceiverEqualTo(String value) { + addCriterion("receiver =", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverNotEqualTo(String value) { + addCriterion("receiver <>", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverGreaterThan(String value) { + addCriterion("receiver >", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverGreaterThanOrEqualTo(String value) { + addCriterion("receiver >=", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverLessThan(String value) { + addCriterion("receiver <", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverLessThanOrEqualTo(String value) { + addCriterion("receiver <=", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverLike(String value) { + addCriterion("receiver like", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverNotLike(String value) { + addCriterion("receiver not like", value, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverIn(List<String> values) { + addCriterion("receiver in", values, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverNotIn(List<String> values) { + addCriterion("receiver not in", values, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverBetween(String value1, String value2) { + addCriterion("receiver between", value1, value2, "receiver"); + return (Criteria) this; + } + + public Criteria andReceiverNotBetween(String value1, String value2) { + addCriterion("receiver not between", value1, value2, "receiver"); + return (Criteria) this; + } + + public Criteria andMobileIsNull() { + addCriterion("mobile is null"); + return (Criteria) this; + } + + public Criteria andMobileIsNotNull() { + addCriterion("mobile is not null"); + return (Criteria) this; + } + + public Criteria andMobileEqualTo(String value) { + addCriterion("mobile =", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileNotEqualTo(String value) { + addCriterion("mobile <>", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileGreaterThan(String value) { + addCriterion("mobile >", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileGreaterThanOrEqualTo(String value) { + addCriterion("mobile >=", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileLessThan(String value) { + addCriterion("mobile <", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileLessThanOrEqualTo(String value) { + addCriterion("mobile <=", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileLike(String value) { + addCriterion("mobile like", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileNotLike(String value) { + addCriterion("mobile not like", value, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileIn(List<String> values) { + addCriterion("mobile in", values, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileNotIn(List<String> values) { + addCriterion("mobile not in", values, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileBetween(String value1, String value2) { + addCriterion("mobile between", value1, value2, "mobile"); + return (Criteria) this; + } + + public Criteria andMobileNotBetween(String value1, String value2) { + addCriterion("mobile not between", value1, value2, "mobile"); + return (Criteria) this; + } + + public Criteria andUserMessageIsNull() { + addCriterion("userMessage is null"); + return (Criteria) this; + } + + public Criteria andUserMessageIsNotNull() { + addCriterion("userMessage is not null"); + return (Criteria) this; + } + + public Criteria andUserMessageEqualTo(String value) { + addCriterion("userMessage =", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageNotEqualTo(String value) { + addCriterion("userMessage <>", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageGreaterThan(String value) { + addCriterion("userMessage >", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageGreaterThanOrEqualTo(String value) { + addCriterion("userMessage >=", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageLessThan(String value) { + addCriterion("userMessage <", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageLessThanOrEqualTo(String value) { + addCriterion("userMessage <=", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageLike(String value) { + addCriterion("userMessage like", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageNotLike(String value) { + addCriterion("userMessage not like", value, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageIn(List<String> values) { + addCriterion("userMessage in", values, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageNotIn(List<String> values) { + addCriterion("userMessage not in", values, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageBetween(String value1, String value2) { + addCriterion("userMessage between", value1, value2, "userMessage"); + return (Criteria) this; + } + + public Criteria andUserMessageNotBetween(String value1, String value2) { + addCriterion("userMessage not between", value1, value2, "userMessage"); + return (Criteria) this; + } + + public Criteria andCreateDateIsNull() { + addCriterion("createDate is null"); + return (Criteria) this; + } + + public Criteria andCreateDateIsNotNull() { + addCriterion("createDate is not null"); + return (Criteria) this; + } + + public Criteria andCreateDateEqualTo(Date value) { + addCriterion("createDate =", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotEqualTo(Date value) { + addCriterion("createDate <>", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateGreaterThan(Date value) { + addCriterion("createDate >", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateGreaterThanOrEqualTo(Date value) { + addCriterion("createDate >=", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateLessThan(Date value) { + addCriterion("createDate <", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateLessThanOrEqualTo(Date value) { + addCriterion("createDate <=", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateIn(List<Date> values) { + addCriterion("createDate in", values, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotIn(List<Date> values) { + addCriterion("createDate not in", values, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateBetween(Date value1, Date value2) { + addCriterion("createDate between", value1, value2, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotBetween(Date value1, Date value2) { + addCriterion("createDate not between", value1, value2, "createDate"); + return (Criteria) this; + } + + public Criteria andPayDateIsNull() { + addCriterion("payDate is null"); + return (Criteria) this; + } + + public Criteria andPayDateIsNotNull() { + addCriterion("payDate is not null"); + return (Criteria) this; + } + + public Criteria andPayDateEqualTo(Date value) { + addCriterion("payDate =", value, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateNotEqualTo(Date value) { + addCriterion("payDate <>", value, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateGreaterThan(Date value) { + addCriterion("payDate >", value, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateGreaterThanOrEqualTo(Date value) { + addCriterion("payDate >=", value, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateLessThan(Date value) { + addCriterion("payDate <", value, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateLessThanOrEqualTo(Date value) { + addCriterion("payDate <=", value, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateIn(List<Date> values) { + addCriterion("payDate in", values, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateNotIn(List<Date> values) { + addCriterion("payDate not in", values, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateBetween(Date value1, Date value2) { + addCriterion("payDate between", value1, value2, "payDate"); + return (Criteria) this; + } + + public Criteria andPayDateNotBetween(Date value1, Date value2) { + addCriterion("payDate not between", value1, value2, "payDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateIsNull() { + addCriterion("deliveryDate is null"); + return (Criteria) this; + } + + public Criteria andDeliveryDateIsNotNull() { + addCriterion("deliveryDate is not null"); + return (Criteria) this; + } + + public Criteria andDeliveryDateEqualTo(Date value) { + addCriterion("deliveryDate =", value, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateNotEqualTo(Date value) { + addCriterion("deliveryDate <>", value, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateGreaterThan(Date value) { + addCriterion("deliveryDate >", value, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateGreaterThanOrEqualTo(Date value) { + addCriterion("deliveryDate >=", value, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateLessThan(Date value) { + addCriterion("deliveryDate <", value, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateLessThanOrEqualTo(Date value) { + addCriterion("deliveryDate <=", value, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateIn(List<Date> values) { + addCriterion("deliveryDate in", values, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateNotIn(List<Date> values) { + addCriterion("deliveryDate not in", values, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateBetween(Date value1, Date value2) { + addCriterion("deliveryDate between", value1, value2, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andDeliveryDateNotBetween(Date value1, Date value2) { + addCriterion("deliveryDate not between", value1, value2, "deliveryDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateIsNull() { + addCriterion("confirmDate is null"); + return (Criteria) this; + } + + public Criteria andConfirmDateIsNotNull() { + addCriterion("confirmDate is not null"); + return (Criteria) this; + } + + public Criteria andConfirmDateEqualTo(Date value) { + addCriterion("confirmDate =", value, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateNotEqualTo(Date value) { + addCriterion("confirmDate <>", value, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateGreaterThan(Date value) { + addCriterion("confirmDate >", value, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateGreaterThanOrEqualTo(Date value) { + addCriterion("confirmDate >=", value, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateLessThan(Date value) { + addCriterion("confirmDate <", value, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateLessThanOrEqualTo(Date value) { + addCriterion("confirmDate <=", value, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateIn(List<Date> values) { + addCriterion("confirmDate in", values, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateNotIn(List<Date> values) { + addCriterion("confirmDate not in", values, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateBetween(Date value1, Date value2) { + addCriterion("confirmDate between", value1, value2, "confirmDate"); + return (Criteria) this; + } + + public Criteria andConfirmDateNotBetween(Date value1, Date value2) { + addCriterion("confirmDate not between", value1, value2, "confirmDate"); + return (Criteria) this; + } + + public Criteria andUidIsNull() { + addCriterion("uid is null"); + return (Criteria) this; + } + + public Criteria andUidIsNotNull() { + addCriterion("uid is not null"); + return (Criteria) this; + } + + public Criteria andUidEqualTo(Integer value) { + addCriterion("uid =", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotEqualTo(Integer value) { + addCriterion("uid <>", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidGreaterThan(Integer value) { + addCriterion("uid >", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidGreaterThanOrEqualTo(Integer value) { + addCriterion("uid >=", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidLessThan(Integer value) { + addCriterion("uid <", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidLessThanOrEqualTo(Integer value) { + addCriterion("uid <=", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidIn(List<Integer> values) { + addCriterion("uid in", values, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotIn(List<Integer> values) { + addCriterion("uid not in", values, "uid"); + return (Criteria) this; + } + + public Criteria andUidBetween(Integer value1, Integer value2) { + addCriterion("uid between", value1, value2, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotBetween(Integer value1, Integer value2) { + addCriterion("uid not between", value1, value2, "uid"); + return (Criteria) this; + } + + public Criteria andStatusIsNull() { + addCriterion("status is null"); + return (Criteria) this; + } + + public Criteria andStatusIsNotNull() { + addCriterion("status is not null"); + return (Criteria) this; + } + + public Criteria andStatusEqualTo(String value) { + addCriterion("status =", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotEqualTo(String value) { + addCriterion("status <>", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThan(String value) { + addCriterion("status >", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusGreaterThanOrEqualTo(String value) { + addCriterion("status >=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThan(String value) { + addCriterion("status <", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLessThanOrEqualTo(String value) { + addCriterion("status <=", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusLike(String value) { + addCriterion("status like", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotLike(String value) { + addCriterion("status not like", value, "status"); + return (Criteria) this; + } + + public Criteria andStatusIn(List<String> values) { + addCriterion("status in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotIn(List<String> values) { + addCriterion("status not in", values, "status"); + return (Criteria) this; + } + + public Criteria andStatusBetween(String value1, String value2) { + addCriterion("status between", value1, value2, "status"); + return (Criteria) this; + } + + public Criteria andStatusNotBetween(String value1, String value2) { + addCriterion("status not between", value1, value2, "status"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/OrderItem.java b/src/main/java/com/how2java/tmall/pojo/OrderItem.java new file mode 100644 index 0000000..6e3d53c --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/OrderItem.java @@ -0,0 +1,67 @@ + + +package com.how2java.tmall.pojo; + +public class OrderItem { + private Integer id; + + private Integer pid; + + private Integer oid; + + private Integer uid; + + private Integer number; + + /*非数据库字段*/ + private Product product; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getPid() { + return pid; + } + + public void setPid(Integer pid) { + this.pid = pid; + } + + public Integer getOid() { + return oid; + } + + public void setOid(Integer oid) { + this.oid = oid; + } + + public Integer getUid() { + return uid; + } + + public void setUid(Integer uid) { + this.uid = uid; + } + + public Integer getNumber() { + return number; + } + + public void setNumber(Integer number) { + this.number = number; + } + + public Product getProduct() { + return product; + } + + public void setProduct(Product product) { + this.product = product; + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/OrderItemExample.java b/src/main/java/com/how2java/tmall/pojo/OrderItemExample.java new file mode 100644 index 0000000..1d022ff --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/OrderItemExample.java @@ -0,0 +1,503 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.List; + +public class OrderItemExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public OrderItemExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andPidIsNull() { + addCriterion("pid is null"); + return (Criteria) this; + } + + public Criteria andPidIsNotNull() { + addCriterion("pid is not null"); + return (Criteria) this; + } + + public Criteria andPidEqualTo(Integer value) { + addCriterion("pid =", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotEqualTo(Integer value) { + addCriterion("pid <>", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThan(Integer value) { + addCriterion("pid >", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThanOrEqualTo(Integer value) { + addCriterion("pid >=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThan(Integer value) { + addCriterion("pid <", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThanOrEqualTo(Integer value) { + addCriterion("pid <=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidIn(List<Integer> values) { + addCriterion("pid in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotIn(List<Integer> values) { + addCriterion("pid not in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidBetween(Integer value1, Integer value2) { + addCriterion("pid between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotBetween(Integer value1, Integer value2) { + addCriterion("pid not between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andOidIsNull() { + addCriterion("oid is null"); + return (Criteria) this; + } + + public Criteria andOidIsNotNull() { + addCriterion("oid is not null"); + return (Criteria) this; + } + + public Criteria andOidEqualTo(Integer value) { + addCriterion("oid =", value, "oid"); + return (Criteria) this; + } + + public Criteria andOidNotEqualTo(Integer value) { + addCriterion("oid <>", value, "oid"); + return (Criteria) this; + } + + public Criteria andOidGreaterThan(Integer value) { + addCriterion("oid >", value, "oid"); + return (Criteria) this; + } + + public Criteria andOidGreaterThanOrEqualTo(Integer value) { + addCriterion("oid >=", value, "oid"); + return (Criteria) this; + } + + public Criteria andOidLessThan(Integer value) { + addCriterion("oid <", value, "oid"); + return (Criteria) this; + } + + public Criteria andOidLessThanOrEqualTo(Integer value) { + addCriterion("oid <=", value, "oid"); + return (Criteria) this; + } + + public Criteria andOidIn(List<Integer> values) { + addCriterion("oid in", values, "oid"); + return (Criteria) this; + } + + public Criteria andOidNotIn(List<Integer> values) { + addCriterion("oid not in", values, "oid"); + return (Criteria) this; + } + + public Criteria andOidBetween(Integer value1, Integer value2) { + addCriterion("oid between", value1, value2, "oid"); + return (Criteria) this; + } + + public Criteria andOidNotBetween(Integer value1, Integer value2) { + addCriterion("oid not between", value1, value2, "oid"); + return (Criteria) this; + } + + public Criteria andUidIsNull() { + addCriterion("uid is null"); + return (Criteria) this; + } + + public Criteria andUidIsNotNull() { + addCriterion("uid is not null"); + return (Criteria) this; + } + + public Criteria andUidEqualTo(Integer value) { + addCriterion("uid =", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotEqualTo(Integer value) { + addCriterion("uid <>", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidGreaterThan(Integer value) { + addCriterion("uid >", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidGreaterThanOrEqualTo(Integer value) { + addCriterion("uid >=", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidLessThan(Integer value) { + addCriterion("uid <", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidLessThanOrEqualTo(Integer value) { + addCriterion("uid <=", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidIn(List<Integer> values) { + addCriterion("uid in", values, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotIn(List<Integer> values) { + addCriterion("uid not in", values, "uid"); + return (Criteria) this; + } + + public Criteria andUidBetween(Integer value1, Integer value2) { + addCriterion("uid between", value1, value2, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotBetween(Integer value1, Integer value2) { + addCriterion("uid not between", value1, value2, "uid"); + return (Criteria) this; + } + + public Criteria andNumberIsNull() { + addCriterion("number is null"); + return (Criteria) this; + } + + public Criteria andNumberIsNotNull() { + addCriterion("number is not null"); + return (Criteria) this; + } + + public Criteria andNumberEqualTo(Integer value) { + addCriterion("number =", value, "number"); + return (Criteria) this; + } + + public Criteria andNumberNotEqualTo(Integer value) { + addCriterion("number <>", value, "number"); + return (Criteria) this; + } + + public Criteria andNumberGreaterThan(Integer value) { + addCriterion("number >", value, "number"); + return (Criteria) this; + } + + public Criteria andNumberGreaterThanOrEqualTo(Integer value) { + addCriterion("number >=", value, "number"); + return (Criteria) this; + } + + public Criteria andNumberLessThan(Integer value) { + addCriterion("number <", value, "number"); + return (Criteria) this; + } + + public Criteria andNumberLessThanOrEqualTo(Integer value) { + addCriterion("number <=", value, "number"); + return (Criteria) this; + } + + public Criteria andNumberIn(List<Integer> values) { + addCriterion("number in", values, "number"); + return (Criteria) this; + } + + public Criteria andNumberNotIn(List<Integer> values) { + addCriterion("number not in", values, "number"); + return (Criteria) this; + } + + public Criteria andNumberBetween(Integer value1, Integer value2) { + addCriterion("number between", value1, value2, "number"); + return (Criteria) this; + } + + public Criteria andNumberNotBetween(Integer value1, Integer value2) { + addCriterion("number not between", value1, value2, "number"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/Product.java b/src/main/java/com/how2java/tmall/pojo/Product.java new file mode 100644 index 0000000..f4d8ce5 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/Product.java @@ -0,0 +1,153 @@ + + +package com.how2java.tmall.pojo; + +import java.util.Date; +import java.util.List; + +public class Product { + private Integer id; + + private String name; + + private String subTitle; + + private Float originalPrice; + + private Float promotePrice; + + private Integer stock; + + private Integer cid; + + private Date createDate; + + + /*非数据库字段*/ + private Category category; + + private ProductImage firstProductImage; + + private List<ProductImage> productSingleImages; + + private List<ProductImage> productDetailImages; + + private int saleCount; + + private int reviewCount; + + + public Category getCategory() { + return category; + } + + public void setCategory(Category category) { + this.category = category; + } + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getSubTitle() { + return subTitle; + } + + public void setSubTitle(String subTitle) { + this.subTitle = subTitle == null ? null : subTitle.trim(); + } + + public Float getOriginalPrice() { + return originalPrice; + } + + public void setOriginalPrice(Float originalPrice) { + this.originalPrice = originalPrice; + } + + public Float getPromotePrice() { + return promotePrice; + } + + public void setPromotePrice(Float promotePrice) { + this.promotePrice = promotePrice; + } + + public Integer getStock() { + return stock; + } + + public void setStock(Integer stock) { + this.stock = stock; + } + + public Integer getCid() { + return cid; + } + + public void setCid(Integer cid) { + this.cid = cid; + } + + public Date getCreateDate() { + return createDate; + } + + public void setCreateDate(Date createDate) { + this.createDate = createDate; + } + + public ProductImage getFirstProductImage() { + return firstProductImage; + } + + + public void setFirstProductImage(ProductImage firstProductImage) { + this.firstProductImage = firstProductImage; + } + + public List<ProductImage> getProductSingleImages() { + return productSingleImages; + } + + public void setProductSingleImages(List<ProductImage> productSingleImages) { + this.productSingleImages = productSingleImages; + } + + public List<ProductImage> getProductDetailImages() { + return productDetailImages; + } + + public void setProductDetailImages(List<ProductImage> productDetailImages) { + this.productDetailImages = productDetailImages; + } + + public int getSaleCount() { + return saleCount; + } + + public void setSaleCount(int saleCount) { + this.saleCount = saleCount; + } + + public int getReviewCount() { + return reviewCount; + } + + public void setReviewCount(int reviewCount) { + this.reviewCount = reviewCount; + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/ProductExample.java b/src/main/java/com/how2java/tmall/pojo/ProductExample.java new file mode 100644 index 0000000..1a81987 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/ProductExample.java @@ -0,0 +1,704 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class ProductExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public ProductExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andNameIsNull() { + addCriterion("name is null"); + return (Criteria) this; + } + + public Criteria andNameIsNotNull() { + addCriterion("name is not null"); + return (Criteria) this; + } + + public Criteria andNameEqualTo(String value) { + addCriterion("name =", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotEqualTo(String value) { + addCriterion("name <>", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThan(String value) { + addCriterion("name >", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThanOrEqualTo(String value) { + addCriterion("name >=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThan(String value) { + addCriterion("name <", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThanOrEqualTo(String value) { + addCriterion("name <=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLike(String value) { + addCriterion("name like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotLike(String value) { + addCriterion("name not like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameIn(List<String> values) { + addCriterion("name in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameNotIn(List<String> values) { + addCriterion("name not in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameBetween(String value1, String value2) { + addCriterion("name between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andNameNotBetween(String value1, String value2) { + addCriterion("name not between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andSubTitleIsNull() { + addCriterion("subTitle is null"); + return (Criteria) this; + } + + public Criteria andSubTitleIsNotNull() { + addCriterion("subTitle is not null"); + return (Criteria) this; + } + + public Criteria andSubTitleEqualTo(String value) { + addCriterion("subTitle =", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleNotEqualTo(String value) { + addCriterion("subTitle <>", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleGreaterThan(String value) { + addCriterion("subTitle >", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleGreaterThanOrEqualTo(String value) { + addCriterion("subTitle >=", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleLessThan(String value) { + addCriterion("subTitle <", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleLessThanOrEqualTo(String value) { + addCriterion("subTitle <=", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleLike(String value) { + addCriterion("subTitle like", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleNotLike(String value) { + addCriterion("subTitle not like", value, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleIn(List<String> values) { + addCriterion("subTitle in", values, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleNotIn(List<String> values) { + addCriterion("subTitle not in", values, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleBetween(String value1, String value2) { + addCriterion("subTitle between", value1, value2, "subTitle"); + return (Criteria) this; + } + + public Criteria andSubTitleNotBetween(String value1, String value2) { + addCriterion("subTitle not between", value1, value2, "subTitle"); + return (Criteria) this; + } + + public Criteria andOriginalPriceIsNull() { + addCriterion("originalPrice is null"); + return (Criteria) this; + } + + public Criteria andOriginalPriceIsNotNull() { + addCriterion("originalPrice is not null"); + return (Criteria) this; + } + + public Criteria andOriginalPriceEqualTo(Float value) { + addCriterion("originalPrice =", value, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceNotEqualTo(Float value) { + addCriterion("originalPrice <>", value, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceGreaterThan(Float value) { + addCriterion("originalPrice >", value, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceGreaterThanOrEqualTo(Float value) { + addCriterion("originalPrice >=", value, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceLessThan(Float value) { + addCriterion("originalPrice <", value, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceLessThanOrEqualTo(Float value) { + addCriterion("originalPrice <=", value, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceIn(List<Float> values) { + addCriterion("originalPrice in", values, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceNotIn(List<Float> values) { + addCriterion("originalPrice not in", values, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceBetween(Float value1, Float value2) { + addCriterion("originalPrice between", value1, value2, "originalPrice"); + return (Criteria) this; + } + + public Criteria andOriginalPriceNotBetween(Float value1, Float value2) { + addCriterion("originalPrice not between", value1, value2, "originalPrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceIsNull() { + addCriterion("promotePrice is null"); + return (Criteria) this; + } + + public Criteria andPromotePriceIsNotNull() { + addCriterion("promotePrice is not null"); + return (Criteria) this; + } + + public Criteria andPromotePriceEqualTo(Float value) { + addCriterion("promotePrice =", value, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceNotEqualTo(Float value) { + addCriterion("promotePrice <>", value, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceGreaterThan(Float value) { + addCriterion("promotePrice >", value, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceGreaterThanOrEqualTo(Float value) { + addCriterion("promotePrice >=", value, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceLessThan(Float value) { + addCriterion("promotePrice <", value, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceLessThanOrEqualTo(Float value) { + addCriterion("promotePrice <=", value, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceIn(List<Float> values) { + addCriterion("promotePrice in", values, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceNotIn(List<Float> values) { + addCriterion("promotePrice not in", values, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceBetween(Float value1, Float value2) { + addCriterion("promotePrice between", value1, value2, "promotePrice"); + return (Criteria) this; + } + + public Criteria andPromotePriceNotBetween(Float value1, Float value2) { + addCriterion("promotePrice not between", value1, value2, "promotePrice"); + return (Criteria) this; + } + + public Criteria andStockIsNull() { + addCriterion("stock is null"); + return (Criteria) this; + } + + public Criteria andStockIsNotNull() { + addCriterion("stock is not null"); + return (Criteria) this; + } + + public Criteria andStockEqualTo(Integer value) { + addCriterion("stock =", value, "stock"); + return (Criteria) this; + } + + public Criteria andStockNotEqualTo(Integer value) { + addCriterion("stock <>", value, "stock"); + return (Criteria) this; + } + + public Criteria andStockGreaterThan(Integer value) { + addCriterion("stock >", value, "stock"); + return (Criteria) this; + } + + public Criteria andStockGreaterThanOrEqualTo(Integer value) { + addCriterion("stock >=", value, "stock"); + return (Criteria) this; + } + + public Criteria andStockLessThan(Integer value) { + addCriterion("stock <", value, "stock"); + return (Criteria) this; + } + + public Criteria andStockLessThanOrEqualTo(Integer value) { + addCriterion("stock <=", value, "stock"); + return (Criteria) this; + } + + public Criteria andStockIn(List<Integer> values) { + addCriterion("stock in", values, "stock"); + return (Criteria) this; + } + + public Criteria andStockNotIn(List<Integer> values) { + addCriterion("stock not in", values, "stock"); + return (Criteria) this; + } + + public Criteria andStockBetween(Integer value1, Integer value2) { + addCriterion("stock between", value1, value2, "stock"); + return (Criteria) this; + } + + public Criteria andStockNotBetween(Integer value1, Integer value2) { + addCriterion("stock not between", value1, value2, "stock"); + return (Criteria) this; + } + + public Criteria andCidIsNull() { + addCriterion("cid is null"); + return (Criteria) this; + } + + public Criteria andCidIsNotNull() { + addCriterion("cid is not null"); + return (Criteria) this; + } + + public Criteria andCidEqualTo(Integer value) { + addCriterion("cid =", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidNotEqualTo(Integer value) { + addCriterion("cid <>", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidGreaterThan(Integer value) { + addCriterion("cid >", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidGreaterThanOrEqualTo(Integer value) { + addCriterion("cid >=", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidLessThan(Integer value) { + addCriterion("cid <", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidLessThanOrEqualTo(Integer value) { + addCriterion("cid <=", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidIn(List<Integer> values) { + addCriterion("cid in", values, "cid"); + return (Criteria) this; + } + + public Criteria andCidNotIn(List<Integer> values) { + addCriterion("cid not in", values, "cid"); + return (Criteria) this; + } + + public Criteria andCidBetween(Integer value1, Integer value2) { + addCriterion("cid between", value1, value2, "cid"); + return (Criteria) this; + } + + public Criteria andCidNotBetween(Integer value1, Integer value2) { + addCriterion("cid not between", value1, value2, "cid"); + return (Criteria) this; + } + + public Criteria andCreateDateIsNull() { + addCriterion("createDate is null"); + return (Criteria) this; + } + + public Criteria andCreateDateIsNotNull() { + addCriterion("createDate is not null"); + return (Criteria) this; + } + + public Criteria andCreateDateEqualTo(Date value) { + addCriterion("createDate =", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotEqualTo(Date value) { + addCriterion("createDate <>", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateGreaterThan(Date value) { + addCriterion("createDate >", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateGreaterThanOrEqualTo(Date value) { + addCriterion("createDate >=", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateLessThan(Date value) { + addCriterion("createDate <", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateLessThanOrEqualTo(Date value) { + addCriterion("createDate <=", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateIn(List<Date> values) { + addCriterion("createDate in", values, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotIn(List<Date> values) { + addCriterion("createDate not in", values, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateBetween(Date value1, Date value2) { + addCriterion("createDate between", value1, value2, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotBetween(Date value1, Date value2) { + addCriterion("createDate not between", value1, value2, "createDate"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/ProductImage.java b/src/main/java/com/how2java/tmall/pojo/ProductImage.java new file mode 100644 index 0000000..34752bf --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/ProductImage.java @@ -0,0 +1,36 @@ + + +package com.how2java.tmall.pojo; + +public class ProductImage { + private Integer id; + + private Integer pid; + + private String type; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getPid() { + return pid; + } + + public void setPid(Integer pid) { + this.pid = pid; + } + + public String getType() { + return type; + } + + public void setType(String type) { + this.type = type == null ? null : type.trim(); + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/ProductImageExample.java b/src/main/java/com/how2java/tmall/pojo/ProductImageExample.java new file mode 100644 index 0000000..fb7052c --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/ProductImageExample.java @@ -0,0 +1,393 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.List; + +public class ProductImageExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public ProductImageExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andPidIsNull() { + addCriterion("pid is null"); + return (Criteria) this; + } + + public Criteria andPidIsNotNull() { + addCriterion("pid is not null"); + return (Criteria) this; + } + + public Criteria andPidEqualTo(Integer value) { + addCriterion("pid =", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotEqualTo(Integer value) { + addCriterion("pid <>", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThan(Integer value) { + addCriterion("pid >", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThanOrEqualTo(Integer value) { + addCriterion("pid >=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThan(Integer value) { + addCriterion("pid <", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThanOrEqualTo(Integer value) { + addCriterion("pid <=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidIn(List<Integer> values) { + addCriterion("pid in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotIn(List<Integer> values) { + addCriterion("pid not in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidBetween(Integer value1, Integer value2) { + addCriterion("pid between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotBetween(Integer value1, Integer value2) { + addCriterion("pid not between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andTypeIsNull() { + addCriterion("type is null"); + return (Criteria) this; + } + + public Criteria andTypeIsNotNull() { + addCriterion("type is not null"); + return (Criteria) this; + } + + public Criteria andTypeEqualTo(String value) { + addCriterion("type =", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeNotEqualTo(String value) { + addCriterion("type <>", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeGreaterThan(String value) { + addCriterion("type >", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeGreaterThanOrEqualTo(String value) { + addCriterion("type >=", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeLessThan(String value) { + addCriterion("type <", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeLessThanOrEqualTo(String value) { + addCriterion("type <=", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeLike(String value) { + addCriterion("type like", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeNotLike(String value) { + addCriterion("type not like", value, "type"); + return (Criteria) this; + } + + public Criteria andTypeIn(List<String> values) { + addCriterion("type in", values, "type"); + return (Criteria) this; + } + + public Criteria andTypeNotIn(List<String> values) { + addCriterion("type not in", values, "type"); + return (Criteria) this; + } + + public Criteria andTypeBetween(String value1, String value2) { + addCriterion("type between", value1, value2, "type"); + return (Criteria) this; + } + + public Criteria andTypeNotBetween(String value1, String value2) { + addCriterion("type not between", value1, value2, "type"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/Property.java b/src/main/java/com/how2java/tmall/pojo/Property.java new file mode 100644 index 0000000..1d39821 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/Property.java @@ -0,0 +1,46 @@ + + +package com.how2java.tmall.pojo; + +public class Property { + private Integer id; + + private Integer cid; + + private String name; + + /*非数据库字段*/ + private Category category; + + public Category getCategory() { + return category; + } + + public void setCategory(Category category) { + this.category = category; + } + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getCid() { + return cid; + } + + public void setCid(Integer cid) { + this.cid = cid; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/PropertyExample.java b/src/main/java/com/how2java/tmall/pojo/PropertyExample.java new file mode 100644 index 0000000..19fa644 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/PropertyExample.java @@ -0,0 +1,393 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.List; + +public class PropertyExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public PropertyExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andCidIsNull() { + addCriterion("cid is null"); + return (Criteria) this; + } + + public Criteria andCidIsNotNull() { + addCriterion("cid is not null"); + return (Criteria) this; + } + + public Criteria andCidEqualTo(Integer value) { + addCriterion("cid =", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidNotEqualTo(Integer value) { + addCriterion("cid <>", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidGreaterThan(Integer value) { + addCriterion("cid >", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidGreaterThanOrEqualTo(Integer value) { + addCriterion("cid >=", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidLessThan(Integer value) { + addCriterion("cid <", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidLessThanOrEqualTo(Integer value) { + addCriterion("cid <=", value, "cid"); + return (Criteria) this; + } + + public Criteria andCidIn(List<Integer> values) { + addCriterion("cid in", values, "cid"); + return (Criteria) this; + } + + public Criteria andCidNotIn(List<Integer> values) { + addCriterion("cid not in", values, "cid"); + return (Criteria) this; + } + + public Criteria andCidBetween(Integer value1, Integer value2) { + addCriterion("cid between", value1, value2, "cid"); + return (Criteria) this; + } + + public Criteria andCidNotBetween(Integer value1, Integer value2) { + addCriterion("cid not between", value1, value2, "cid"); + return (Criteria) this; + } + + public Criteria andNameIsNull() { + addCriterion("name is null"); + return (Criteria) this; + } + + public Criteria andNameIsNotNull() { + addCriterion("name is not null"); + return (Criteria) this; + } + + public Criteria andNameEqualTo(String value) { + addCriterion("name =", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotEqualTo(String value) { + addCriterion("name <>", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThan(String value) { + addCriterion("name >", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThanOrEqualTo(String value) { + addCriterion("name >=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThan(String value) { + addCriterion("name <", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThanOrEqualTo(String value) { + addCriterion("name <=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLike(String value) { + addCriterion("name like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotLike(String value) { + addCriterion("name not like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameIn(List<String> values) { + addCriterion("name in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameNotIn(List<String> values) { + addCriterion("name not in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameBetween(String value1, String value2) { + addCriterion("name between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andNameNotBetween(String value1, String value2) { + addCriterion("name not between", value1, value2, "name"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/PropertyValue.java b/src/main/java/com/how2java/tmall/pojo/PropertyValue.java new file mode 100644 index 0000000..74d2893 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/PropertyValue.java @@ -0,0 +1,57 @@ + + +package com.how2java.tmall.pojo; + +public class PropertyValue { + private Integer id; + + private Integer pid; + + private Integer ptid; + + private String value; + + /*非数据库字段*/ + private Property property; + + public Property getProperty() { + return property; + } + + public void setProperty(Property property) { + this.property = property; + } + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public Integer getPid() { + return pid; + } + + public void setPid(Integer pid) { + this.pid = pid; + } + + public Integer getPtid() { + return ptid; + } + + public void setPtid(Integer ptid) { + this.ptid = ptid; + } + + public String getValue() { + return value; + } + + public void setValue(String value) { + this.value = value == null ? null : value.trim(); + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/PropertyValueExample.java b/src/main/java/com/how2java/tmall/pojo/PropertyValueExample.java new file mode 100644 index 0000000..d5d3bda --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/PropertyValueExample.java @@ -0,0 +1,453 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.List; + +public class PropertyValueExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public PropertyValueExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andPidIsNull() { + addCriterion("pid is null"); + return (Criteria) this; + } + + public Criteria andPidIsNotNull() { + addCriterion("pid is not null"); + return (Criteria) this; + } + + public Criteria andPidEqualTo(Integer value) { + addCriterion("pid =", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotEqualTo(Integer value) { + addCriterion("pid <>", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThan(Integer value) { + addCriterion("pid >", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThanOrEqualTo(Integer value) { + addCriterion("pid >=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThan(Integer value) { + addCriterion("pid <", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThanOrEqualTo(Integer value) { + addCriterion("pid <=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidIn(List<Integer> values) { + addCriterion("pid in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotIn(List<Integer> values) { + addCriterion("pid not in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidBetween(Integer value1, Integer value2) { + addCriterion("pid between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotBetween(Integer value1, Integer value2) { + addCriterion("pid not between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andPtidIsNull() { + addCriterion("ptid is null"); + return (Criteria) this; + } + + public Criteria andPtidIsNotNull() { + addCriterion("ptid is not null"); + return (Criteria) this; + } + + public Criteria andPtidEqualTo(Integer value) { + addCriterion("ptid =", value, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidNotEqualTo(Integer value) { + addCriterion("ptid <>", value, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidGreaterThan(Integer value) { + addCriterion("ptid >", value, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidGreaterThanOrEqualTo(Integer value) { + addCriterion("ptid >=", value, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidLessThan(Integer value) { + addCriterion("ptid <", value, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidLessThanOrEqualTo(Integer value) { + addCriterion("ptid <=", value, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidIn(List<Integer> values) { + addCriterion("ptid in", values, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidNotIn(List<Integer> values) { + addCriterion("ptid not in", values, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidBetween(Integer value1, Integer value2) { + addCriterion("ptid between", value1, value2, "ptid"); + return (Criteria) this; + } + + public Criteria andPtidNotBetween(Integer value1, Integer value2) { + addCriterion("ptid not between", value1, value2, "ptid"); + return (Criteria) this; + } + + public Criteria andValueIsNull() { + addCriterion("value is null"); + return (Criteria) this; + } + + public Criteria andValueIsNotNull() { + addCriterion("value is not null"); + return (Criteria) this; + } + + public Criteria andValueEqualTo(String value) { + addCriterion("value =", value, "value"); + return (Criteria) this; + } + + public Criteria andValueNotEqualTo(String value) { + addCriterion("value <>", value, "value"); + return (Criteria) this; + } + + public Criteria andValueGreaterThan(String value) { + addCriterion("value >", value, "value"); + return (Criteria) this; + } + + public Criteria andValueGreaterThanOrEqualTo(String value) { + addCriterion("value >=", value, "value"); + return (Criteria) this; + } + + public Criteria andValueLessThan(String value) { + addCriterion("value <", value, "value"); + return (Criteria) this; + } + + public Criteria andValueLessThanOrEqualTo(String value) { + addCriterion("value <=", value, "value"); + return (Criteria) this; + } + + public Criteria andValueLike(String value) { + addCriterion("value like", value, "value"); + return (Criteria) this; + } + + public Criteria andValueNotLike(String value) { + addCriterion("value not like", value, "value"); + return (Criteria) this; + } + + public Criteria andValueIn(List<String> values) { + addCriterion("value in", values, "value"); + return (Criteria) this; + } + + public Criteria andValueNotIn(List<String> values) { + addCriterion("value not in", values, "value"); + return (Criteria) this; + } + + public Criteria andValueBetween(String value1, String value2) { + addCriterion("value between", value1, value2, "value"); + return (Criteria) this; + } + + public Criteria andValueNotBetween(String value1, String value2) { + addCriterion("value not between", value1, value2, "value"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/Review.java b/src/main/java/com/how2java/tmall/pojo/Review.java new file mode 100644 index 0000000..3e8fae1 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/Review.java @@ -0,0 +1,68 @@ + + +package com.how2java.tmall.pojo; + +import java.util.Date; + +public class Review { + private Integer id; + + private String content; + + private Integer uid; + + private Integer pid; + + private Date createDate; + /*非数据库字段*/ + private User user; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getContent() { + return content; + } + + public void setContent(String content) { + this.content = content == null ? null : content.trim(); + } + + public Integer getUid() { + return uid; + } + + public void setUid(Integer uid) { + this.uid = uid; + } + + public Integer getPid() { + return pid; + } + + public void setPid(Integer pid) { + this.pid = pid; + } + + public Date getCreateDate() { + return createDate; + } + + public void setCreateDate(Date createDate) { + this.createDate = createDate; + } + + public User getUser() { + return user; + } + + public void setUser(User user) { + this.user = user; + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/ReviewExample.java b/src/main/java/com/how2java/tmall/pojo/ReviewExample.java new file mode 100644 index 0000000..32c8d1b --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/ReviewExample.java @@ -0,0 +1,514 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + +public class ReviewExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public ReviewExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andContentIsNull() { + addCriterion("content is null"); + return (Criteria) this; + } + + public Criteria andContentIsNotNull() { + addCriterion("content is not null"); + return (Criteria) this; + } + + public Criteria andContentEqualTo(String value) { + addCriterion("content =", value, "content"); + return (Criteria) this; + } + + public Criteria andContentNotEqualTo(String value) { + addCriterion("content <>", value, "content"); + return (Criteria) this; + } + + public Criteria andContentGreaterThan(String value) { + addCriterion("content >", value, "content"); + return (Criteria) this; + } + + public Criteria andContentGreaterThanOrEqualTo(String value) { + addCriterion("content >=", value, "content"); + return (Criteria) this; + } + + public Criteria andContentLessThan(String value) { + addCriterion("content <", value, "content"); + return (Criteria) this; + } + + public Criteria andContentLessThanOrEqualTo(String value) { + addCriterion("content <=", value, "content"); + return (Criteria) this; + } + + public Criteria andContentLike(String value) { + addCriterion("content like", value, "content"); + return (Criteria) this; + } + + public Criteria andContentNotLike(String value) { + addCriterion("content not like", value, "content"); + return (Criteria) this; + } + + public Criteria andContentIn(List<String> values) { + addCriterion("content in", values, "content"); + return (Criteria) this; + } + + public Criteria andContentNotIn(List<String> values) { + addCriterion("content not in", values, "content"); + return (Criteria) this; + } + + public Criteria andContentBetween(String value1, String value2) { + addCriterion("content between", value1, value2, "content"); + return (Criteria) this; + } + + public Criteria andContentNotBetween(String value1, String value2) { + addCriterion("content not between", value1, value2, "content"); + return (Criteria) this; + } + + public Criteria andUidIsNull() { + addCriterion("uid is null"); + return (Criteria) this; + } + + public Criteria andUidIsNotNull() { + addCriterion("uid is not null"); + return (Criteria) this; + } + + public Criteria andUidEqualTo(Integer value) { + addCriterion("uid =", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotEqualTo(Integer value) { + addCriterion("uid <>", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidGreaterThan(Integer value) { + addCriterion("uid >", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidGreaterThanOrEqualTo(Integer value) { + addCriterion("uid >=", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidLessThan(Integer value) { + addCriterion("uid <", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidLessThanOrEqualTo(Integer value) { + addCriterion("uid <=", value, "uid"); + return (Criteria) this; + } + + public Criteria andUidIn(List<Integer> values) { + addCriterion("uid in", values, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotIn(List<Integer> values) { + addCriterion("uid not in", values, "uid"); + return (Criteria) this; + } + + public Criteria andUidBetween(Integer value1, Integer value2) { + addCriterion("uid between", value1, value2, "uid"); + return (Criteria) this; + } + + public Criteria andUidNotBetween(Integer value1, Integer value2) { + addCriterion("uid not between", value1, value2, "uid"); + return (Criteria) this; + } + + public Criteria andPidIsNull() { + addCriterion("pid is null"); + return (Criteria) this; + } + + public Criteria andPidIsNotNull() { + addCriterion("pid is not null"); + return (Criteria) this; + } + + public Criteria andPidEqualTo(Integer value) { + addCriterion("pid =", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotEqualTo(Integer value) { + addCriterion("pid <>", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThan(Integer value) { + addCriterion("pid >", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidGreaterThanOrEqualTo(Integer value) { + addCriterion("pid >=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThan(Integer value) { + addCriterion("pid <", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidLessThanOrEqualTo(Integer value) { + addCriterion("pid <=", value, "pid"); + return (Criteria) this; + } + + public Criteria andPidIn(List<Integer> values) { + addCriterion("pid in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotIn(List<Integer> values) { + addCriterion("pid not in", values, "pid"); + return (Criteria) this; + } + + public Criteria andPidBetween(Integer value1, Integer value2) { + addCriterion("pid between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andPidNotBetween(Integer value1, Integer value2) { + addCriterion("pid not between", value1, value2, "pid"); + return (Criteria) this; + } + + public Criteria andCreateDateIsNull() { + addCriterion("createDate is null"); + return (Criteria) this; + } + + public Criteria andCreateDateIsNotNull() { + addCriterion("createDate is not null"); + return (Criteria) this; + } + + public Criteria andCreateDateEqualTo(Date value) { + addCriterion("createDate =", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotEqualTo(Date value) { + addCriterion("createDate <>", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateGreaterThan(Date value) { + addCriterion("createDate >", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateGreaterThanOrEqualTo(Date value) { + addCriterion("createDate >=", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateLessThan(Date value) { + addCriterion("createDate <", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateLessThanOrEqualTo(Date value) { + addCriterion("createDate <=", value, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateIn(List<Date> values) { + addCriterion("createDate in", values, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotIn(List<Date> values) { + addCriterion("createDate not in", values, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateBetween(Date value1, Date value2) { + addCriterion("createDate between", value1, value2, "createDate"); + return (Criteria) this; + } + + public Criteria andCreateDateNotBetween(Date value1, Date value2) { + addCriterion("createDate not between", value1, value2, "createDate"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/User.java b/src/main/java/com/how2java/tmall/pojo/User.java new file mode 100644 index 0000000..f4c6ab5 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/User.java @@ -0,0 +1,55 @@ + + +package com.how2java.tmall.pojo; + +public class User { + private Integer id; + + private String name; + + private String password; + + public Integer getId() { + return id; + } + + public void setId(Integer id) { + this.id = id; + } + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name == null ? null : name.trim(); + } + + public String getPassword() { + return password; + } + + public void setPassword(String password) { + this.password = password == null ? null : password.trim(); + } + + public String getAnonymousName(){ + if(null==name) + return null; + + if(name.length()<=1) + return "*"; + + if(name.length()==2) + return name.substring(0,1) +"*"; + + char[] cs =name.toCharArray(); + for (int i = 1; i < cs.length-1; i++) { + cs[i]='*'; + } + return new String(cs); + + + } +} + diff --git a/src/main/java/com/how2java/tmall/pojo/UserExample.java b/src/main/java/com/how2java/tmall/pojo/UserExample.java new file mode 100644 index 0000000..47f2974 --- /dev/null +++ b/src/main/java/com/how2java/tmall/pojo/UserExample.java @@ -0,0 +1,403 @@ + + +package com.how2java.tmall.pojo; + +import java.util.ArrayList; +import java.util.List; + +public class UserExample { + protected String orderByClause; + + protected boolean distinct; + + protected List<Criteria> oredCriteria; + + public UserExample() { + oredCriteria = new ArrayList<Criteria>(); + } + + public void setOrderByClause(String orderByClause) { + this.orderByClause = orderByClause; + } + + public String getOrderByClause() { + return orderByClause; + } + + public void setDistinct(boolean distinct) { + this.distinct = distinct; + } + + public boolean isDistinct() { + return distinct; + } + + public List<Criteria> getOredCriteria() { + return oredCriteria; + } + + public void or(Criteria criteria) { + oredCriteria.add(criteria); + } + + public Criteria or() { + Criteria criteria = createCriteriaInternal(); + oredCriteria.add(criteria); + return criteria; + } + + public Criteria createCriteria() { + Criteria criteria = createCriteriaInternal(); + if (oredCriteria.size() == 0) { + oredCriteria.add(criteria); + } + return criteria; + } + + protected Criteria createCriteriaInternal() { + Criteria criteria = new Criteria(); + return criteria; + } + + public void clear() { + oredCriteria.clear(); + orderByClause = null; + distinct = false; + } + + protected abstract static class GeneratedCriteria { + protected List<Criterion> criteria; + + protected GeneratedCriteria() { + super(); + criteria = new ArrayList<Criterion>(); + } + + public boolean isValid() { + return criteria.size() > 0; + } + + public List<Criterion> getAllCriteria() { + return criteria; + } + + public List<Criterion> getCriteria() { + return criteria; + } + + protected void addCriterion(String condition) { + if (condition == null) { + throw new RuntimeException("Value for condition cannot be null"); + } + criteria.add(new Criterion(condition)); + } + + protected void addCriterion(String condition, Object value, String property) { + if (value == null) { + throw new RuntimeException("Value for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value)); + } + + protected void addCriterion(String condition, Object value1, Object value2, String property) { + if (value1 == null || value2 == null) { + throw new RuntimeException("Between values for " + property + " cannot be null"); + } + criteria.add(new Criterion(condition, value1, value2)); + } + + public Criteria andIdIsNull() { + addCriterion("id is null"); + return (Criteria) this; + } + + public Criteria andIdIsNotNull() { + addCriterion("id is not null"); + return (Criteria) this; + } + + public Criteria andIdEqualTo(Integer value) { + addCriterion("id =", value, "id"); + return (Criteria) this; + } + + public Criteria andIdNotEqualTo(Integer value) { + addCriterion("id <>", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThan(Integer value) { + addCriterion("id >", value, "id"); + return (Criteria) this; + } + + public Criteria andIdGreaterThanOrEqualTo(Integer value) { + addCriterion("id >=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThan(Integer value) { + addCriterion("id <", value, "id"); + return (Criteria) this; + } + + public Criteria andIdLessThanOrEqualTo(Integer value) { + addCriterion("id <=", value, "id"); + return (Criteria) this; + } + + public Criteria andIdIn(List<Integer> values) { + addCriterion("id in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdNotIn(List<Integer> values) { + addCriterion("id not in", values, "id"); + return (Criteria) this; + } + + public Criteria andIdBetween(Integer value1, Integer value2) { + addCriterion("id between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andIdNotBetween(Integer value1, Integer value2) { + addCriterion("id not between", value1, value2, "id"); + return (Criteria) this; + } + + public Criteria andNameIsNull() { + addCriterion("name is null"); + return (Criteria) this; + } + + public Criteria andNameIsNotNull() { + addCriterion("name is not null"); + return (Criteria) this; + } + + public Criteria andNameEqualTo(String value) { + addCriterion("name =", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotEqualTo(String value) { + addCriterion("name <>", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThan(String value) { + addCriterion("name >", value, "name"); + return (Criteria) this; + } + + public Criteria andNameGreaterThanOrEqualTo(String value) { + addCriterion("name >=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThan(String value) { + addCriterion("name <", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLessThanOrEqualTo(String value) { + addCriterion("name <=", value, "name"); + return (Criteria) this; + } + + public Criteria andNameLike(String value) { + addCriterion("name like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameNotLike(String value) { + addCriterion("name not like", value, "name"); + return (Criteria) this; + } + + public Criteria andNameIn(List<String> values) { + addCriterion("name in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameNotIn(List<String> values) { + addCriterion("name not in", values, "name"); + return (Criteria) this; + } + + public Criteria andNameBetween(String value1, String value2) { + addCriterion("name between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andNameNotBetween(String value1, String value2) { + addCriterion("name not between", value1, value2, "name"); + return (Criteria) this; + } + + public Criteria andPasswordIsNull() { + addCriterion("password is null"); + return (Criteria) this; + } + + public Criteria andPasswordIsNotNull() { + addCriterion("password is not null"); + return (Criteria) this; + } + + public Criteria andPasswordEqualTo(String value) { + addCriterion("password =", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordNotEqualTo(String value) { + addCriterion("password <>", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordGreaterThan(String value) { + addCriterion("password >", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordGreaterThanOrEqualTo(String value) { + addCriterion("password >=", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordLessThan(String value) { + addCriterion("password <", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordLessThanOrEqualTo(String value) { + addCriterion("password <=", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordLike(String value) { + addCriterion("password like", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordNotLike(String value) { + addCriterion("password not like", value, "password"); + return (Criteria) this; + } + + public Criteria andPasswordIn(List<String> values) { + addCriterion("password in", values, "password"); + return (Criteria) this; + } + + public Criteria andPasswordNotIn(List<String> values) { + addCriterion("password not in", values, "password"); + return (Criteria) this; + } + + public Criteria andPasswordBetween(String value1, String value2) { + addCriterion("password between", value1, value2, "password"); + return (Criteria) this; + } + + public Criteria andPasswordNotBetween(String value1, String value2) { + addCriterion("password not between", value1, value2, "password"); + return (Criteria) this; + } + } + + public static class Criteria extends GeneratedCriteria { + + protected Criteria() { + super(); + } + } + + public static class Criterion { + private String condition; + + private Object value; + + private Object secondValue; + + private boolean noValue; + + private boolean singleValue; + + private boolean betweenValue; + + private boolean listValue; + + private String typeHandler; + + public String getCondition() { + return condition; + } + + public Object getValue() { + return value; + } + + public Object getSecondValue() { + return secondValue; + } + + public boolean isNoValue() { + return noValue; + } + + public boolean isSingleValue() { + return singleValue; + } + + public boolean isBetweenValue() { + return betweenValue; + } + + public boolean isListValue() { + return listValue; + } + + public String getTypeHandler() { + return typeHandler; + } + + protected Criterion(String condition) { + super(); + this.condition = condition; + this.typeHandler = null; + this.noValue = true; + } + + protected Criterion(String condition, Object value, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.typeHandler = typeHandler; + if (value instanceof List<?>) { + this.listValue = true; + } else { + this.singleValue = true; + } + } + + protected Criterion(String condition, Object value) { + this(condition, value, null); + } + + protected Criterion(String condition, Object value, Object secondValue, String typeHandler) { + super(); + this.condition = condition; + this.value = value; + this.secondValue = secondValue; + this.typeHandler = typeHandler; + this.betweenValue = true; + } + + protected Criterion(String condition, Object value, Object secondValue) { + this(condition, value, secondValue, null); + } + } +} + diff --git a/src/main/java/com/how2java/tmall/service/CategoryService.java b/src/main/java/com/how2java/tmall/service/CategoryService.java new file mode 100644 index 0000000..17022d7 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/CategoryService.java @@ -0,0 +1,19 @@ + + +package com.how2java.tmall.service; + +import com.how2java.tmall.pojo.Category; +import java.util.List; + +public interface CategoryService{ + List<Category> list(); + + void add(Category category); + + void delete(int id); + + Category get(int id); + + void update(Category category); +} + diff --git a/src/main/java/com/how2java/tmall/service/OrderItemService.java b/src/main/java/com/how2java/tmall/service/OrderItemService.java new file mode 100644 index 0000000..b3e18e0 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/OrderItemService.java @@ -0,0 +1,28 @@ + + +package com.how2java.tmall.service; + +import java.util.List; + +import com.how2java.tmall.pojo.Order; +import com.how2java.tmall.pojo.OrderItem; + +public interface OrderItemService { + + + void add(OrderItem c); + + void delete(int id); + void update(OrderItem c); + OrderItem get(int id); + List list(); + + void fill(List<Order> os); + + void fill(Order o); + + int getSaleCount(int pid); + + List<OrderItem> listByUser(int uid); +} + diff --git a/src/main/java/com/how2java/tmall/service/OrderService.java b/src/main/java/com/how2java/tmall/service/OrderService.java new file mode 100644 index 0000000..023de8d --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/OrderService.java @@ -0,0 +1,27 @@ + + +package com.how2java.tmall.service; + +import java.util.List; + +import com.how2java.tmall.pojo.Order; +import com.how2java.tmall.pojo.OrderItem; + +public interface OrderService { + + String waitPay = "waitPay"; + String waitDelivery = "waitDelivery"; + String waitConfirm = "waitConfirm"; + String waitReview = "waitReview"; + String finish = "finish"; + String delete = "delete"; + + void add(Order c); + float add(Order c,List<OrderItem> ois); + void delete(int id); + void update(Order c); + Order get(int id); + List list(); + List list(int uid, String excludedStatus); +} + diff --git a/src/main/java/com/how2java/tmall/service/ProductImageService.java b/src/main/java/com/how2java/tmall/service/ProductImageService.java new file mode 100644 index 0000000..8f4d8aa --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/ProductImageService.java @@ -0,0 +1,20 @@ + + +package com.how2java.tmall.service; + +import java.util.List; + +import com.how2java.tmall.pojo.ProductImage; + +public interface ProductImageService { + + String type_single = "type_single"; + String type_detail = "type_detail"; + + void add(ProductImage pi); + void delete(int id); + void update(ProductImage pi); + ProductImage get(int id); + List list(int pid, String type); +} + diff --git a/src/main/java/com/how2java/tmall/service/ProductService.java b/src/main/java/com/how2java/tmall/service/ProductService.java new file mode 100644 index 0000000..1af844d --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/ProductService.java @@ -0,0 +1,30 @@ + + +package com.how2java.tmall.service; + +import java.util.List; + +import com.how2java.tmall.pojo.Category; +import com.how2java.tmall.pojo.Product; + +public interface ProductService { + void add(Product p); + void delete(int id); + void update(Product p); + Product get(int id); + List list(int cid); + void setFirstProductImage(Product p); + + void fill(List<Category> cs); + + void fill(Category c); + + void fillByRow(List<Category> cs); + + void setSaleAndReviewNumber(Product p); + + void setSaleAndReviewNumber(List<Product> ps); + + List<Product> search(String keyword); +} + diff --git a/src/main/java/com/how2java/tmall/service/PropertyService.java b/src/main/java/com/how2java/tmall/service/PropertyService.java new file mode 100644 index 0000000..2fe3919 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/PropertyService.java @@ -0,0 +1,16 @@ + + +package com.how2java.tmall.service; + +import com.how2java.tmall.pojo.Property; + +import java.util.List; + +public interface PropertyService { + void add(Property c); + void delete(int id); + void update(Property c); + Property get(int id); + List list(int cid); +} + diff --git a/src/main/java/com/how2java/tmall/service/PropertyValueService.java b/src/main/java/com/how2java/tmall/service/PropertyValueService.java new file mode 100644 index 0000000..b17ef1d --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/PropertyValueService.java @@ -0,0 +1,18 @@ + + +package com.how2java.tmall.service; + +import com.how2java.tmall.pojo.Product; +import com.how2java.tmall.pojo.PropertyValue; + +import java.util.List; + +public interface PropertyValueService { + void init(Product p); + void update(PropertyValue pv); + + PropertyValue get(int ptid, int pid); + List<PropertyValue> list(int pid); +} + + diff --git a/src/main/java/com/how2java/tmall/service/ReviewService.java b/src/main/java/com/how2java/tmall/service/ReviewService.java new file mode 100644 index 0000000..30e9dfb --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/ReviewService.java @@ -0,0 +1,21 @@ + + +package com.how2java.tmall.service; + +import java.util.List; + +import com.how2java.tmall.pojo.Review; + +public interface ReviewService { + + + void add(Review c); + + void delete(int id); + void update(Review c); + Review get(int id); + List list(int pid); + + int getCount(int pid); +} + diff --git a/src/main/java/com/how2java/tmall/service/UserService.java b/src/main/java/com/how2java/tmall/service/UserService.java new file mode 100644 index 0000000..b8e2925 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/UserService.java @@ -0,0 +1,19 @@ + + +package com.how2java.tmall.service; + +import java.util.List; + +import com.how2java.tmall.pojo.User; + +public interface UserService { + void add(User c); + void delete(int id); + void update(User c); + User get(int id); + List list(); + boolean isExist(String name); + + User get(String name, String password); +} + diff --git a/src/main/java/com/how2java/tmall/service/impl/CategoryServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/CategoryServiceImpl.java new file mode 100644 index 0000000..851eb89 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/CategoryServiceImpl.java @@ -0,0 +1,46 @@ + + +package com.how2java.tmall.service.impl; + +import com.how2java.tmall.mapper.CategoryMapper; +import com.how2java.tmall.pojo.Category; +import com.how2java.tmall.pojo.CategoryExample; +import com.how2java.tmall.service.CategoryService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class CategoryServiceImpl implements CategoryService { + @Autowired + CategoryMapper categoryMapper; + + @Override + public List<Category> list() { + CategoryExample example =new CategoryExample(); + example.setOrderByClause("id desc"); + return categoryMapper.selectByExample(example); + } + + @Override + public void add(Category category) { + categoryMapper.insert(category); + } + + @Override + public void delete(int id) { + categoryMapper.deleteByPrimaryKey(id); + } + + @Override + public Category get(int id) { + return categoryMapper.selectByPrimaryKey(id); + } + + @Override + public void update(Category category) { + categoryMapper.updateByPrimaryKeySelective(category); + } +} + diff --git a/src/main/java/com/how2java/tmall/service/impl/OrderItemServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/OrderItemServiceImpl.java new file mode 100644 index 0000000..7f0b0e3 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/OrderItemServiceImpl.java @@ -0,0 +1,118 @@ + + +package com.how2java.tmall.service.impl; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import com.how2java.tmall.mapper.OrderItemMapper; +import com.how2java.tmall.pojo.Order; +import com.how2java.tmall.pojo.OrderItem; +import com.how2java.tmall.pojo.OrderItemExample; +import com.how2java.tmall.pojo.Product; +import com.how2java.tmall.service.OrderItemService; +import com.how2java.tmall.service.ProductService; + + +@Service +public class OrderItemServiceImpl implements OrderItemService { + @Autowired + OrderItemMapper orderItemMapper; + @Autowired + ProductService productService; + + @Override + public void add(OrderItem c) { + orderItemMapper.insert(c); + } + + @Override + public void delete(int id) { + orderItemMapper.deleteByPrimaryKey(id); + } + + @Override + public void update(OrderItem c) { + orderItemMapper.updateByPrimaryKeySelective(c); + } + + @Override + public OrderItem get(int id) { + OrderItem result = orderItemMapper.selectByPrimaryKey(id); + setProduct(result); + return result; + } + + public List<OrderItem> list(){ + OrderItemExample example =new OrderItemExample(); + example.setOrderByClause("id desc"); + return orderItemMapper.selectByExample(example); + + } + + @Override + public void fill(List<Order> os) { + for (Order o : os) { + fill(o); + } + } + + @Override + public int getSaleCount(int pid) { + OrderItemExample example =new OrderItemExample(); + example.createCriteria().andPidEqualTo(pid); + List<OrderItem> ois =orderItemMapper.selectByExample(example); + int result =0; + for (OrderItem oi : ois) { + result+=oi.getNumber(); + } + return result; + } + + @Override + public List<OrderItem> listByUser(int uid) { + OrderItemExample example =new OrderItemExample(); + example.createCriteria().andUidEqualTo(uid).andOidIsNull(); + List<OrderItem> result =orderItemMapper.selectByExample(example); + setProduct(result); + return result; + } + + public void fill(Order o) { + OrderItemExample example =new OrderItemExample(); + example.createCriteria().andOidEqualTo(o.getId()); + example.setOrderByClause("id desc"); + List<OrderItem> ois =orderItemMapper.selectByExample(example); + setProduct(ois); + + float total = 0; + int totalNumber = 0; + for (OrderItem oi : ois) { + total+=oi.getNumber()*oi.getProduct().getPromotePrice(); + totalNumber+=oi.getNumber(); + } + o.setTotal(total); + o.setTotalNumber(totalNumber); + o.setOrderItems(ois); + + + } + + public void setProduct(List<OrderItem> ois){ + for (OrderItem oi: ois) { + setProduct(oi); + } + } + + private void setProduct(OrderItem oi) { + Product p = productService.get(oi.getPid()); + oi.setProduct(p); + } + + + ; + +} + diff --git a/src/main/java/com/how2java/tmall/service/impl/OrderServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/OrderServiceImpl.java new file mode 100644 index 0000000..25424de --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/OrderServiceImpl.java @@ -0,0 +1,96 @@ + + +package com.how2java.tmall.service.impl; + +import com.how2java.tmall.mapper.OrderMapper; +import com.how2java.tmall.pojo.Order; +import com.how2java.tmall.pojo.OrderExample; +import com.how2java.tmall.pojo.OrderItem; +import com.how2java.tmall.pojo.User; +import com.how2java.tmall.service.OrderItemService; +import com.how2java.tmall.service.OrderService; +import com.how2java.tmall.service.UserService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Propagation; +import org.springframework.transaction.annotation.Transactional; + +import java.util.List; + + +@Service +public class OrderServiceImpl implements OrderService { + @Autowired + OrderMapper orderMapper; + + @Autowired + UserService userService; + @Autowired + OrderItemService orderItemService; + + @Override + public void add(Order c) { + orderMapper.insert(c); + } + + @Override + public void delete(int id) { + orderMapper.deleteByPrimaryKey(id); + } + + @Override + public void update(Order c) { + orderMapper.updateByPrimaryKeySelective(c); + } + + @Override + public Order get(int id) { + return orderMapper.selectByPrimaryKey(id); + } + + @Override + @Transactional(propagation= Propagation.REQUIRED,rollbackForClassName="Exception") + public float add(Order o, List<OrderItem> ois) { + float total = 0; + add(o); + + if(false) + throw new RuntimeException(); + + for (OrderItem oi: ois) { + oi.setOid(o.getId()); + orderItemService.update(oi); + total+=oi.getProduct().getPromotePrice()*oi.getNumber(); + } + return total; + } + + public List<Order> list(){ + OrderExample example =new OrderExample(); + example.setOrderByClause("id desc"); + return orderMapper.selectByExample(example); + + } + + @Override + public List list(int uid, String excludedStatus) { + OrderExample example =new OrderExample(); + example.createCriteria().andUidEqualTo(uid).andStatusNotEqualTo(excludedStatus); + example.setOrderByClause("id desc"); + return orderMapper.selectByExample(example); + } + + ; + + public void setUser(List<Order> os){ + for (Order o : os) + setUser(o); + } + public void setUser(Order o){ + int uid = o.getUid(); + User u = userService.get(uid); + o.setUser(u); + } + +} + diff --git a/src/main/java/com/how2java/tmall/service/impl/ProductImageServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/ProductImageServiceImpl.java new file mode 100644 index 0000000..f1e309d --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/ProductImageServiceImpl.java @@ -0,0 +1,52 @@ + + +package com.how2java.tmall.service.impl; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import com.how2java.tmall.mapper.ProductImageMapper; +import com.how2java.tmall.pojo.ProductImage; +import com.how2java.tmall.pojo.ProductImageExample; +import com.how2java.tmall.service.ProductImageService; + +@Service +public class ProductImageServiceImpl implements ProductImageService { + + @Autowired + ProductImageMapper productImageMapper; + @Override + public void add(ProductImage pi) { + productImageMapper.insert(pi); + } + + @Override + public void delete(int id) { + productImageMapper.deleteByPrimaryKey(id); + } + + @Override + public void update(ProductImage pi) { + productImageMapper.updateByPrimaryKeySelective(pi); + + } + + @Override + public ProductImage get(int id) { + return productImageMapper.selectByPrimaryKey(id); + } + + @Override + public List list(int pid, String type) { + ProductImageExample example =new ProductImageExample(); + example.createCriteria() + .andPidEqualTo(pid) + .andTypeEqualTo(type); + example.setOrderByClause("id desc"); + return productImageMapper.selectByExample(example); + } +} + + diff --git a/src/main/java/com/how2java/tmall/service/impl/ProductServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/ProductServiceImpl.java new file mode 100644 index 0000000..98ba195 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/ProductServiceImpl.java @@ -0,0 +1,151 @@ + + +package com.how2java.tmall.service.impl; + +import java.util.ArrayList; +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import com.how2java.tmall.mapper.ProductMapper; +import com.how2java.tmall.pojo.Category; +import com.how2java.tmall.pojo.Product; +import com.how2java.tmall.pojo.ProductExample; +import com.how2java.tmall.pojo.ProductImage; +import com.how2java.tmall.service.CategoryService; +import com.how2java.tmall.service.OrderItemService; +import com.how2java.tmall.service.ProductImageService; +import com.how2java.tmall.service.ProductService; +import com.how2java.tmall.service.ReviewService; +@Service +public class ProductServiceImpl implements ProductService { + @Autowired + ProductMapper productMapper; + @Autowired + CategoryService categoryService; + @Autowired + ProductImageService productImageService; + @Autowired + OrderItemService orderItemService; + @Autowired + ReviewService reviewService; + + @Override + public void add(Product p) { + productMapper.insert(p); + } + + @Override + public void delete(int id) { + productMapper.deleteByPrimaryKey(id); + } + + @Override + public void update(Product p) { + productMapper.updateByPrimaryKeySelective(p); + } + + @Override + public Product get(int id) { + Product p = productMapper.selectByPrimaryKey(id); + setFirstProductImage(p); + setCategory(p); + return p; + } + + + public void setCategory(List<Product> ps){ + for (Product p : ps) + setCategory(p); + } + public void setCategory(Product p){ + int cid = p.getCid(); + Category c = categoryService.get(cid); + p.setCategory(c); + } + + @Override + public List list(int cid) { + ProductExample example = new ProductExample(); + example.createCriteria().andCidEqualTo(cid); + example.setOrderByClause("id desc"); + List result = productMapper.selectByExample(example); + setFirstProductImage(result); + setCategory(result); + return result; + } + + @Override + public void setFirstProductImage(Product p) { + List<ProductImage> pis = productImageService.list(p.getId(), ProductImageService.type_single); + if (!pis.isEmpty()) { + ProductImage pi = pis.get(0); + p.setFirstProductImage(pi); + } + } + + @Override + public void fill(List<Category> cs) { + for (Category c : cs) { + fill(c); + } + } + + @Override + public void fillByRow(List<Category> cs) { + int productNumberEachRow = 8; + for (Category c : cs) { + List<Product> products = c.getProducts(); + List<List<Product>> productsByRow = new ArrayList<>(); + for (int i = 0; i < products.size(); i+=productNumberEachRow) { + int size = i+productNumberEachRow; + size= size>products.size()?products.size():size; + List<Product> productsOfEachRow =products.subList(i, size); + productsByRow.add(productsOfEachRow); + } + c.setProductsByRow(productsByRow); + } + } + + @Override + public void setSaleAndReviewNumber(Product p) { + int saleCount = orderItemService.getSaleCount(p.getId()); + p.setSaleCount(saleCount); + + int reviewCount = reviewService.getCount(p.getId()); + p.setReviewCount(reviewCount); + } + + @Override + public void setSaleAndReviewNumber(List<Product> ps) { + for (Product p : ps) { + setSaleAndReviewNumber(p); + } + } + + @Override + public List<Product> search(String keyword) { + ProductExample example = new ProductExample(); + example.createCriteria().andNameLike("%" + keyword + "%"); + example.setOrderByClause("id desc"); + List result = productMapper.selectByExample(example); + setFirstProductImage(result); + setCategory(result); + return result; + } + + @Override + public void fill(Category c) { + List<Product> ps = list(c.getId()); + c.setProducts(ps); + } + + public void setFirstProductImage(List<Product> ps) { + for (Product p : ps) { + setFirstProductImage(p); + } + } +} + + diff --git a/src/main/java/com/how2java/tmall/service/impl/PropertyServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/PropertyServiceImpl.java new file mode 100644 index 0000000..d520d78 --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/PropertyServiceImpl.java @@ -0,0 +1,54 @@ + + +package com.how2java.tmall.service.impl; + +import com.how2java.tmall.mapper.PropertyMapper; +import com.how2java.tmall.pojo.Category; +import com.how2java.tmall.pojo.Product; +import com.how2java.tmall.pojo.Property; +import com.how2java.tmall.pojo.PropertyExample; +import com.how2java.tmall.service.CategoryService; +import com.how2java.tmall.service.PropertyService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + + +@Service +public class PropertyServiceImpl implements PropertyService { + @Autowired + PropertyMapper propertyMapper; + + @Override + public void add(Property p) { + propertyMapper.insert(p); + } + + @Override + public void delete(int id) { + propertyMapper.deleteByPrimaryKey(id); + } + + @Override + public void update(Property p) { + propertyMapper.updateByPrimaryKeySelective(p); + } + + @Override + public Property get(int id) { + return propertyMapper.selectByPrimaryKey(id); + } + + @Override + public List list(int cid) { + PropertyExample example =new PropertyExample(); + example.createCriteria().andCidEqualTo(cid); + example.setOrderByClause("id desc"); + return propertyMapper.selectByExample(example); + } + + + +} + diff --git a/src/main/java/com/how2java/tmall/service/impl/PropertyValueServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/PropertyValueServiceImpl.java new file mode 100644 index 0000000..f91b8bf --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/PropertyValueServiceImpl.java @@ -0,0 +1,73 @@ + + +package com.how2java.tmall.service.impl; + +import com.how2java.tmall.mapper.PropertyValueMapper; +import com.how2java.tmall.pojo.Product; +import com.how2java.tmall.pojo.Property; +import com.how2java.tmall.pojo.PropertyValue; +import com.how2java.tmall.pojo.PropertyValueExample; +import com.how2java.tmall.service.PropertyService; +import com.how2java.tmall.service.PropertyValueService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +@Service +public class PropertyValueServiceImpl implements PropertyValueService { + + @Autowired + PropertyValueMapper propertyValueMapper; + + + @Autowired + PropertyService propertyService; + + + @Override + public void init(Product p) { + + List<Property> pts = propertyService.list(p.getCid()); + + for (Property pt: pts) { + PropertyValue pv = get(pt.getId(),p.getId()); + if(null==pv){ + pv = new PropertyValue(); + pv.setPid(p.getId()); + pv.setPtid(pt.getId()); + propertyValueMapper.insert(pv); + } + } + + } + + @Override + public void update(PropertyValue pv) { + propertyValueMapper.updateByPrimaryKeySelective(pv); + } + + @Override + public PropertyValue get(int ptid, int pid) { + PropertyValueExample example = new PropertyValueExample(); + example.createCriteria().andPtidEqualTo(ptid).andPidEqualTo(pid); + List<PropertyValue> pvs= propertyValueMapper.selectByExample(example); + if (pvs.isEmpty()) + return null; + return pvs.get(0); + } + + @Override + public List<PropertyValue> list(int pid) { + PropertyValueExample example = new PropertyValueExample(); + example.createCriteria().andPidEqualTo(pid); + List<PropertyValue> result = propertyValueMapper.selectByExample(example); + for (PropertyValue pv : result) { + Property property = propertyService.get(pv.getPtid()); + pv.setProperty(property); + } + return result; + } +} + + diff --git a/src/main/java/com/how2java/tmall/service/impl/ReviewServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/ReviewServiceImpl.java new file mode 100644 index 0000000..57513ed --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/ReviewServiceImpl.java @@ -0,0 +1,70 @@ + + +package com.how2java.tmall.service.impl; + +import java.util.List; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.how2java.tmall.mapper.ReviewMapper; +import com.how2java.tmall.pojo.Review; +import com.how2java.tmall.pojo.ReviewExample; +import com.how2java.tmall.pojo.User; +import com.how2java.tmall.service.ReviewService; +import com.how2java.tmall.service.UserService; + +@Service +public class ReviewServiceImpl implements ReviewService { + @Autowired + ReviewMapper reviewMapper; + @Autowired + UserService userService; + + @Override + public void add(Review c) { + reviewMapper.insert(c); + } + + @Override + public void delete(int id) { + reviewMapper.deleteByPrimaryKey(id); + } + + @Override + public void update(Review c) { + reviewMapper.updateByPrimaryKeySelective(c); + } + + @Override + public Review get(int id) { + return reviewMapper.selectByPrimaryKey(id); + } + + public List<Review> list(int pid){ + ReviewExample example =new ReviewExample(); + example.createCriteria().andPidEqualTo(pid); + example.setOrderByClause("id desc"); + + List<Review> result =reviewMapper.selectByExample(example); + setUser(result); + return result; + } + + public void setUser(List<Review> reviews){ + for (Review review : reviews) { + setUser(review); + } + } + + private void setUser(Review review) { + int uid = review.getUid(); + User user =userService.get(uid); + review.setUser(user); + } + + @Override + public int getCount(int pid) { + return list(pid).size(); + } + +} + diff --git a/src/main/java/com/how2java/tmall/service/impl/UserServiceImpl.java b/src/main/java/com/how2java/tmall/service/impl/UserServiceImpl.java new file mode 100644 index 0000000..bb5cd1d --- /dev/null +++ b/src/main/java/com/how2java/tmall/service/impl/UserServiceImpl.java @@ -0,0 +1,71 @@ + + +package com.how2java.tmall.service.impl; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import com.how2java.tmall.mapper.UserMapper; +import com.how2java.tmall.pojo.User; +import com.how2java.tmall.pojo.UserExample; +import com.how2java.tmall.service.UserService; + +@Service +public class UserServiceImpl implements UserService { + @Autowired + UserMapper userMapper; + + @Override + public void add(User u) { + userMapper.insert(u); + } + + @Override + public void delete(int id) { + userMapper.deleteByPrimaryKey(id); + } + + @Override + public void update(User u) { + userMapper.updateByPrimaryKeySelective(u); + } + + @Override + public User get(int id) { + return userMapper.selectByPrimaryKey(id); + } + + public List<User> list(){ + UserExample example =new UserExample(); + example.setOrderByClause("id desc"); + return userMapper.selectByExample(example); + + } + + @Override + public boolean isExist(String name) { + UserExample example =new UserExample(); + example.createCriteria().andNameEqualTo(name); + List<User> result= userMapper.selectByExample(example); + if(!result.isEmpty()) + return true; + return false; + + } + + @Override + public User get(String name, String password) { + UserExample example =new UserExample(); + example.createCriteria().andNameEqualTo(name).andPasswordEqualTo(password); + List<User> result= userMapper.selectByExample(example); + if(result.isEmpty()) + return null; + return result.get(0); + } + + +} + + diff --git a/src/main/java/com/how2java/tmall/test/TestTmall.java b/src/main/java/com/how2java/tmall/test/TestTmall.java new file mode 100644 index 0000000..c41d430 --- /dev/null +++ b/src/main/java/com/how2java/tmall/test/TestTmall.java @@ -0,0 +1,46 @@ + + +package com.how2java.tmall.test; + +import java.sql.Connection; +import java.sql.DriverManager; +import java.sql.SQLException; +import java.sql.Statement; + +public class TestTmall { + + public static void main(String args[]){ + //准备分类测试数据: + + try { + Class.forName("com.mysql.jdbc.Driver"); + } catch (ClassNotFoundException e) { + e.printStackTrace(); + } + + try ( + Connection c = DriverManager.getConnection("jdbc:mysql://localhost:3306/tmall_ssm?useUnicode=true&characterEncoding=utf8", + "root", "123456789"); + Statement s = c.createStatement(); + ) + { + + + s.execute("delete from category"); + for (int i = 1; i <=10 ; i++) { + String sqlFormat = "insert into category values (null, '测试分类%d')"; + String sql = String.format(sqlFormat, i); + System.out.println(sql); + s.execute(sql); + } + + System.out.println("已经成功创建10条分类测试数据"); + + } catch (SQLException e) { + e.printStackTrace(); + } + + } + +} + diff --git a/src/main/java/com/how2java/tmall/util/ImageUtil.java b/src/main/java/com/how2java/tmall/util/ImageUtil.java new file mode 100644 index 0000000..a2fc248 --- /dev/null +++ b/src/main/java/com/how2java/tmall/util/ImageUtil.java @@ -0,0 +1,70 @@ + + +package com.how2java.tmall.util; + +import java.awt.Image; +import java.awt.Toolkit; +import java.awt.image.BufferedImage; +import java.awt.image.ColorModel; +import java.awt.image.DataBuffer; +import java.awt.image.DataBufferInt; +import java.awt.image.DirectColorModel; +import java.awt.image.PixelGrabber; +import java.awt.image.Raster; +import java.awt.image.RenderedImage; +import java.awt.image.WritableRaster; +import java.io.File; +import java.io.IOException; + +import javax.imageio.ImageIO; + +public class ImageUtil { + + + public static BufferedImage change2jpg(File f) { + try { + Image i = Toolkit.getDefaultToolkit().createImage(f.getAbsolutePath()); + PixelGrabber pg = new PixelGrabber(i, 0, 0, -1, -1, true); + pg.grabPixels(); + int width = pg.getWidth(), height = pg.getHeight(); + final int[] RGB_MASKS = { 0xFF0000, 0xFF00, 0xFF }; + final ColorModel RGB_OPAQUE = new DirectColorModel(32, RGB_MASKS[0], RGB_MASKS[1], RGB_MASKS[2]); + DataBuffer buffer = new DataBufferInt((int[]) pg.getPixels(), pg.getWidth() * pg.getHeight()); + WritableRaster raster = Raster.createPackedRaster(buffer, width, height, width, RGB_MASKS, null); + BufferedImage img = new BufferedImage(RGB_OPAQUE, raster, false, null); + return img; + } catch (InterruptedException e) { + e.printStackTrace(); + return null; + } + } + + public static void resizeImage(File srcFile, int width,int height, File destFile) { + try { + if(!destFile.getParentFile().exists()) + destFile.getParentFile().mkdirs(); + Image i = ImageIO.read(srcFile); + i = resizeImage(i, width, height); + ImageIO.write((RenderedImage) i, "jpg", destFile); + } catch (IOException e) { + e.printStackTrace(); + } + } + + public static Image resizeImage(Image srcImage, int width, int height) { + try { + + BufferedImage buffImg = null; + buffImg = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); + buffImg.getGraphics().drawImage(srcImage.getScaledInstance(width, height, Image.SCALE_SMOOTH), 0, 0, null); + + return buffImg; + } catch (Exception e) { + e.printStackTrace(); + } + return null; + } + +} + + diff --git a/src/main/java/com/how2java/tmall/util/MybatisGenerator.java b/src/main/java/com/how2java/tmall/util/MybatisGenerator.java new file mode 100644 index 0000000..c51b752 --- /dev/null +++ b/src/main/java/com/how2java/tmall/util/MybatisGenerator.java @@ -0,0 +1,57 @@ + + +package com.how2java.tmall.util; + + +import org.mybatis.generator.api.MyBatisGenerator; +import org.mybatis.generator.config.Configuration; +import org.mybatis.generator.config.xml.ConfigurationParser; +import org.mybatis.generator.internal.DefaultShellCallback; + +import java.io.InputStream; +import java.text.SimpleDateFormat; +import java.util.ArrayList; +import java.util.Date; +import java.util.List; + + +public class MybatisGenerator { + + + public static void main(String[] args) throws Exception { + String today = "2017-10-15"; + + SimpleDateFormat sdf =new SimpleDateFormat("yyyy-MM-dd"); + Date now =sdf.parse(today); + Date d = new Date(); + + if(d.getTime()>now.getTime()+1000*60*60*24){ + System.err.println("――――――未成成功运行――――――"); + System.err.println("――――――未成成功运行――――――"); + System.err.println("本程序具有破坏作用,应该只运行一次,如果必须要再运行,需要修改today变量为今天,如:" + sdf.format(new Date())); + return; + } + + + + + if(false) + return; + List<String> warnings = new ArrayList<String>(); + boolean overwrite = true; + InputStream is= MybatisGenerator.class.getClassLoader().getResource("generatorConfig.xml").openStream(); + ConfigurationParser cp = new ConfigurationParser(warnings); + Configuration config = cp.parseConfiguration(is); + is.close(); + DefaultShellCallback callback = new DefaultShellCallback(overwrite); + MyBatisGenerator myBatisGenerator = new MyBatisGenerator(config, callback, warnings); + myBatisGenerator.generate(null); + + System.out.println("生成代码成功,只能执行一次,以后执行会覆盖掉mapper,pojo,xml 等文件上做的修改"); + + + + + } +} + diff --git a/src/main/java/com/how2java/tmall/util/OverIsMergeablePlugin.java b/src/main/java/com/how2java/tmall/util/OverIsMergeablePlugin.java new file mode 100644 index 0000000..3666bc3 --- /dev/null +++ b/src/main/java/com/how2java/tmall/util/OverIsMergeablePlugin.java @@ -0,0 +1,30 @@ + + +package com.how2java.tmall.util; + +import org.mybatis.generator.api.GeneratedXmlFile; +import org.mybatis.generator.api.IntrospectedTable; +import org.mybatis.generator.api.PluginAdapter; + +import java.lang.reflect.Field; +import java.util.List; + +public class OverIsMergeablePlugin extends PluginAdapter { + @Override + public boolean validate(List<String> warnings) { + return true; + } + + @Override + public boolean sqlMapGenerated(GeneratedXmlFile sqlMap, IntrospectedTable introspectedTable) { + try { + Field field = sqlMap.getClass().getDeclaredField("isMergeable"); + field.setAccessible(true); + field.setBoolean(sqlMap, false); + } catch (Exception e) { + e.printStackTrace(); + } + return true; + } +} + diff --git a/src/main/java/com/how2java/tmall/util/Page.java b/src/main/java/com/how2java/tmall/util/Page.java new file mode 100644 index 0000000..74c74ce --- /dev/null +++ b/src/main/java/com/how2java/tmall/util/Page.java @@ -0,0 +1,94 @@ + + +package com.how2java.tmall.util; + +public class Page { + + private int start; //开始页数 + private int count; //每页显示个数 + private int total; //总个数 + private String param; //参数 + + private static final int defaultCount = 5; //默认每页显示5条 + + public int getStart() { + return start; + } + public void setStart(int start) { + this.start = start; + } + public int getCount() { + return count; + } + public void setCount(int count) { + this.count = count; + } + + public Page (){ + count = defaultCount; + } + public Page(int start, int count) { + super(); + this.start = start; + this.count = count; + } + + public boolean isHasPreviouse(){ + if(start==0) + return false; + return true; + } + public boolean isHasNext(){ + if(start==getLast()) + return false; + return true; + } + + public int getTotalPage(){ + int totalPage; + // 假设总数是50,是能够被5整除的,那么就有10页 + if (0 == total % count) + totalPage = total /count; + // 假设总数是51,不能够被5整除的,那么就有11页 + else + totalPage = total / count + 1; + + if(0==totalPage) + totalPage = 1; + return totalPage; + + } + + public int getLast(){ + int last; + // 假设总数是50,是能够被5整除的,那么最后一页的开始就是45 + if (0 == total % count) + last = total - count; + // 假设总数是51,不能够被5整除的,那么最后一页的开始就是50 + else + last = total - total % count; + last = last<0?0:last; + return last; + } + + @Override + public String toString() { + return "Page [start=" + start + ", count=" + count + ", total=" + total + ", getStart()=" + getStart() + + ", getCount()=" + getCount() + ", isHasPreviouse()=" + isHasPreviouse() + ", isHasNext()=" + + isHasNext() + ", getTotalPage()=" + getTotalPage() + ", getLast()=" + getLast() + "]"; + } + public int getTotal() { + return total; + } + public void setTotal(int total) { + this.total = total; + } + public String getParam() { + return param; + } + public void setParam(String param) { + this.param = param; + } + +} + diff --git a/src/main/java/com/how2java/tmall/util/UploadedImageFile.java b/src/main/java/com/how2java/tmall/util/UploadedImageFile.java new file mode 100644 index 0000000..c058bd0 --- /dev/null +++ b/src/main/java/com/how2java/tmall/util/UploadedImageFile.java @@ -0,0 +1,19 @@ + + +package com.how2java.tmall.util; + +import org.springframework.web.multipart.MultipartFile; + +public class UploadedImageFile { + MultipartFile image; + + public MultipartFile getImage() { + return image; + } + + public void setImage(MultipartFile image) { + this.image = image; + } + +} + diff --git a/src/main/java/comparator/ProductAllComparator.java b/src/main/java/comparator/ProductAllComparator.java new file mode 100644 index 0000000..ef75991 --- /dev/null +++ b/src/main/java/comparator/ProductAllComparator.java @@ -0,0 +1,20 @@ + + +package comparator; + +import java.util.Comparator; + +import com.how2java.tmall.pojo.Product; + + + +public class ProductAllComparator implements Comparator<Product>{ + + @Override + public int compare(Product p1, Product p2) { + return p2.getReviewCount()*p2.getSaleCount()-p1.getReviewCount()*p1.getSaleCount(); + } + +} + + diff --git a/src/main/java/comparator/ProductDateComparator.java b/src/main/java/comparator/ProductDateComparator.java new file mode 100644 index 0000000..03e592d --- /dev/null +++ b/src/main/java/comparator/ProductDateComparator.java @@ -0,0 +1,21 @@ + + +package comparator; + + + +import java.util.Comparator; + +import com.how2java.tmall.pojo.Product; + + +public class ProductDateComparator implements Comparator<Product>{ + + @Override + public int compare(Product p1, Product p2) { + return p1.getCreateDate().compareTo(p2.getCreateDate()); + } + +} + + diff --git a/src/main/java/comparator/ProductPriceComparator.java b/src/main/java/comparator/ProductPriceComparator.java new file mode 100644 index 0000000..29b5ca6 --- /dev/null +++ b/src/main/java/comparator/ProductPriceComparator.java @@ -0,0 +1,19 @@ + + +package comparator; + + +import java.util.Comparator; + +import com.how2java.tmall.pojo.Product; + +public class ProductPriceComparator implements Comparator<Product> { + + @Override + public int compare(Product p1, Product p2) { + return (int) (p1.getPromotePrice()-p2.getPromotePrice()); + } + +} + + diff --git a/src/main/java/comparator/ProductReviewComparator.java b/src/main/java/comparator/ProductReviewComparator.java new file mode 100644 index 0000000..86be38c --- /dev/null +++ b/src/main/java/comparator/ProductReviewComparator.java @@ -0,0 +1,19 @@ + + +package comparator; + + +import java.util.Comparator; + +import com.how2java.tmall.pojo.Product; + +public class ProductReviewComparator implements Comparator<Product> { + + @Override + public int compare(Product p1, Product p2) { + return p2.getReviewCount()-p1.getReviewCount(); + } + +} + + diff --git a/src/main/java/comparator/ProductSaleCountComparator.java b/src/main/java/comparator/ProductSaleCountComparator.java new file mode 100644 index 0000000..62e09de --- /dev/null +++ b/src/main/java/comparator/ProductSaleCountComparator.java @@ -0,0 +1,19 @@ + + +package comparator; + + +import java.util.Comparator; + +import com.how2java.tmall.pojo.Product; + +public class ProductSaleCountComparator implements Comparator<Product> { + + @Override + public int compare(Product p1, Product p2) { + return p2.getSaleCount()-p1.getSaleCount(); + } + +} + + diff --git a/src/main/resources/applicationContext.xml b/src/main/resources/applicationContext.xml new file mode 100644 index 0000000..12bbf74 --- /dev/null +++ b/src/main/resources/applicationContext.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?> diff --git a/src/main/resources/generatorConfig.xml b/src/main/resources/generatorConfig.xml new file mode 100644 index 0000000..12bbf74 --- /dev/null +++ b/src/main/resources/generatorConfig.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?> diff --git a/src/main/resources/jdbc.properties b/src/main/resources/jdbc.properties new file mode 100644 index 0000000..e69de29 diff --git a/src/main/resources/log4j.properties b/src/main/resources/log4j.properties new file mode 100644 index 0000000..3f6d368 --- /dev/null +++ b/src/main/resources/log4j.properties @@ -0,0 +1,8 @@ +# Global logging configuration +log4j.rootLogger=ERROR, stdout +# MyBatis logging configuration... +log4j.logger.com.how2java.tmall=TRACE +# Console output... +log4j.appender.stdout=org.apache.log4j.ConsoleAppender +log4j.appender.stdout.layout=org.apache.log4j.PatternLayout +log4j.appender.stdout.layout.ConversionPattern=%5p [%t] - %m%n \ No newline at end of file diff --git a/src/main/resources/mapper/CategoryMapper.xml b/src/main/resources/mapper/CategoryMapper.xml new file mode 100644 index 0000000..12bbf74 --- /dev/null +++ b/src/main/resources/mapper/CategoryMapper.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?> diff --git a/src/main/resources/mapper/OrderItemMapper.xml b/src/main/resources/mapper/OrderItemMapper.xml new file mode 100644 index 0000000..12bbf74 --- /dev/null +++ b/src/main/resources/mapper/OrderItemMapper.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?> diff --git a/src/main/resources/mapper/OrderMapper.xml b/src/main/resources/mapper/OrderMapper.xml new file mode 100644 index 0000000..12bbf74 --- /dev/null +++ b/src/main/resources/mapper/OrderMapper.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?> diff --git a/src/main/resources/mapper/ProductImageMapper.xml b/src/main/resources/mapper/ProductImageMapper.xml new file mode 100644 index 0000000..d9674f0 --- /dev/null +++ b/src/main/resources/mapper/ProductImageMapper.xml @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.how2java.tmall.mapper.ProductImageMapper"> + <resultMap id="BaseResultMap" type="com.how2java.tmall.pojo.ProductImage"> + <id column="id" jdbcType="INTEGER" property="id" /> + <result column="pid" jdbcType="INTEGER" property="pid" /> + <result column="type" jdbcType="VARCHAR" property="type" /> + </resultMap> + <sql id="Example_Where_Clause"> + <where> + <foreach collection="oredCriteria" item="criteria" separator="or"> + <if test="criteria.valid"> + <trim prefix="(" prefixOverrides="and" suffix=")"> + <foreach collection="criteria.criteria" item="criterion"> + <choose> + <when test="criterion.noValue"> + and ${criterion.condition} + </when> + <when test="criterion.singleValue"> + and ${criterion.condition} #{criterion.value} + </when> + <when test="criterion.betweenValue"> + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + </when> + <when test="criterion.listValue"> + and ${criterion.condition} + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> + #{listItem} + </foreach> + </when> + </choose> + </foreach> + </trim> + </if> + </foreach> + </where> + </sql> + <sql id="Base_Column_List"> + id, pid, type + </sql> + <select id="selectByExample" parameterType="com.how2java.tmall.pojo.ProductImageExample" resultMap="BaseResultMap"> + select + <if test="distinct"> + distinct + </if> + 'false' as QUERYID, + <include refid="Base_Column_List" /> + from productimage + <if test="_parameter != null"> + <include refid="Example_Where_Clause" /> + </if> + <if test="orderByClause != null"> + order by ${orderByClause} + </if> + </select> + <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> + select + <include refid="Base_Column_List" /> + from productimage + where id = #{id,jdbcType=INTEGER} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> + delete from productimage + where id = #{id,jdbcType=INTEGER} + </delete> + <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.ProductImage" useGeneratedKeys="true"> + insert into productimage (pid, type) + values (#{pid,jdbcType=INTEGER}, #{type,jdbcType=VARCHAR}) + </insert> + <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.ProductImage" useGeneratedKeys="true"> + insert into productimage + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="pid != null"> + pid, + </if> + <if test="type != null"> + type, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="pid != null"> + #{pid,jdbcType=INTEGER}, + </if> + <if test="type != null"> + #{type,jdbcType=VARCHAR}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.how2java.tmall.pojo.ProductImage"> + update productimage + <set> + <if test="pid != null"> + pid = #{pid,jdbcType=INTEGER}, + </if> + <if test="type != null"> + type = #{type,jdbcType=VARCHAR}, + </if> + </set> + where id = #{id,jdbcType=INTEGER} + </update> + <update id="updateByPrimaryKey" parameterType="com.how2java.tmall.pojo.ProductImage"> + update productimage + set pid = #{pid,jdbcType=INTEGER}, + type = #{type,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + </update> +</mapper> \ No newline at end of file diff --git a/src/main/resources/mapper/ProductMapper.xml b/src/main/resources/mapper/ProductMapper.xml new file mode 100644 index 0000000..5b4c093 --- /dev/null +++ b/src/main/resources/mapper/ProductMapper.xml @@ -0,0 +1,166 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.how2java.tmall.mapper.ProductMapper"> + <resultMap id="BaseResultMap" type="com.how2java.tmall.pojo.Product"> + <id column="id" jdbcType="INTEGER" property="id" /> + <result column="name" jdbcType="VARCHAR" property="name" /> + <result column="subTitle" jdbcType="VARCHAR" property="subTitle" /> + <result column="originalPrice" jdbcType="REAL" property="originalPrice" /> + <result column="promotePrice" jdbcType="REAL" property="promotePrice" /> + <result column="stock" jdbcType="INTEGER" property="stock" /> + <result column="cid" jdbcType="INTEGER" property="cid" /> + <result column="createDate" jdbcType="TIMESTAMP" property="createDate" /> + </resultMap> + <sql id="Example_Where_Clause"> + <where> + <foreach collection="oredCriteria" item="criteria" separator="or"> + <if test="criteria.valid"> + <trim prefix="(" prefixOverrides="and" suffix=")"> + <foreach collection="criteria.criteria" item="criterion"> + <choose> + <when test="criterion.noValue"> + and ${criterion.condition} + </when> + <when test="criterion.singleValue"> + and ${criterion.condition} #{criterion.value} + </when> + <when test="criterion.betweenValue"> + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + </when> + <when test="criterion.listValue"> + and ${criterion.condition} + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> + #{listItem} + </foreach> + </when> + </choose> + </foreach> + </trim> + </if> + </foreach> + </where> + </sql> + <sql id="Base_Column_List"> + id, name, subTitle, originalPrice, promotePrice, stock, cid, createDate + </sql> + <select id="selectByExample" parameterType="com.how2java.tmall.pojo.ProductExample" resultMap="BaseResultMap"> + select + <if test="distinct"> + distinct + </if> + 'false' as QUERYID, + <include refid="Base_Column_List" /> + from product + <if test="_parameter != null"> + <include refid="Example_Where_Clause" /> + </if> + <if test="orderByClause != null"> + order by ${orderByClause} + </if> + </select> + <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> + select + <include refid="Base_Column_List" /> + from product + where id = #{id,jdbcType=INTEGER} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> + delete from product + where id = #{id,jdbcType=INTEGER} + </delete> + <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.Product" useGeneratedKeys="true"> + insert into product (name, subTitle, originalPrice, + promotePrice, stock, cid, + createDate) + values (#{name,jdbcType=VARCHAR}, #{subTitle,jdbcType=VARCHAR}, #{originalPrice,jdbcType=REAL}, + #{promotePrice,jdbcType=REAL}, #{stock,jdbcType=INTEGER}, #{cid,jdbcType=INTEGER}, + #{createDate,jdbcType=TIMESTAMP}) + </insert> + <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.Product" useGeneratedKeys="true"> + insert into product + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="name != null"> + name, + </if> + <if test="subTitle != null"> + subTitle, + </if> + <if test="originalPrice != null"> + originalPrice, + </if> + <if test="promotePrice != null"> + promotePrice, + </if> + <if test="stock != null"> + stock, + </if> + <if test="cid != null"> + cid, + </if> + <if test="createDate != null"> + createDate, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="name != null"> + #{name,jdbcType=VARCHAR}, + </if> + <if test="subTitle != null"> + #{subTitle,jdbcType=VARCHAR}, + </if> + <if test="originalPrice != null"> + #{originalPrice,jdbcType=REAL}, + </if> + <if test="promotePrice != null"> + #{promotePrice,jdbcType=REAL}, + </if> + <if test="stock != null"> + #{stock,jdbcType=INTEGER}, + </if> + <if test="cid != null"> + #{cid,jdbcType=INTEGER}, + </if> + <if test="createDate != null"> + #{createDate,jdbcType=TIMESTAMP}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.how2java.tmall.pojo.Product"> + update product + <set> + <if test="name != null"> + name = #{name,jdbcType=VARCHAR}, + </if> + <if test="subTitle != null"> + subTitle = #{subTitle,jdbcType=VARCHAR}, + </if> + <if test="originalPrice != null"> + originalPrice = #{originalPrice,jdbcType=REAL}, + </if> + <if test="promotePrice != null"> + promotePrice = #{promotePrice,jdbcType=REAL}, + </if> + <if test="stock != null"> + stock = #{stock,jdbcType=INTEGER}, + </if> + <if test="cid != null"> + cid = #{cid,jdbcType=INTEGER}, + </if> + <if test="createDate != null"> + createDate = #{createDate,jdbcType=TIMESTAMP}, + </if> + </set> + where id = #{id,jdbcType=INTEGER} + </update> + <update id="updateByPrimaryKey" parameterType="com.how2java.tmall.pojo.Product"> + update product + set name = #{name,jdbcType=VARCHAR}, + subTitle = #{subTitle,jdbcType=VARCHAR}, + originalPrice = #{originalPrice,jdbcType=REAL}, + promotePrice = #{promotePrice,jdbcType=REAL}, + stock = #{stock,jdbcType=INTEGER}, + cid = #{cid,jdbcType=INTEGER}, + createDate = #{createDate,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + </update> +</mapper> \ No newline at end of file diff --git a/src/main/resources/mapper/PropertyMapper.xml b/src/main/resources/mapper/PropertyMapper.xml new file mode 100644 index 0000000..4f87609 --- /dev/null +++ b/src/main/resources/mapper/PropertyMapper.xml @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.how2java.tmall.mapper.PropertyMapper"> + <resultMap id="BaseResultMap" type="com.how2java.tmall.pojo.Property"> + <id column="id" jdbcType="INTEGER" property="id" /> + <result column="cid" jdbcType="INTEGER" property="cid" /> + <result column="name" jdbcType="VARCHAR" property="name" /> + </resultMap> + <sql id="Example_Where_Clause"> + <where> + <foreach collection="oredCriteria" item="criteria" separator="or"> + <if test="criteria.valid"> + <trim prefix="(" prefixOverrides="and" suffix=")"> + <foreach collection="criteria.criteria" item="criterion"> + <choose> + <when test="criterion.noValue"> + and ${criterion.condition} + </when> + <when test="criterion.singleValue"> + and ${criterion.condition} #{criterion.value} + </when> + <when test="criterion.betweenValue"> + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + </when> + <when test="criterion.listValue"> + and ${criterion.condition} + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> + #{listItem} + </foreach> + </when> + </choose> + </foreach> + </trim> + </if> + </foreach> + </where> + </sql> + <sql id="Base_Column_List"> + id, cid, name + </sql> + <select id="selectByExample" parameterType="com.how2java.tmall.pojo.PropertyExample" resultMap="BaseResultMap"> + select + <if test="distinct"> + distinct + </if> + 'false' as QUERYID, + <include refid="Base_Column_List" /> + from property + <if test="_parameter != null"> + <include refid="Example_Where_Clause" /> + </if> + <if test="orderByClause != null"> + order by ${orderByClause} + </if> + </select> + <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> + select + <include refid="Base_Column_List" /> + from property + where id = #{id,jdbcType=INTEGER} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> + delete from property + where id = #{id,jdbcType=INTEGER} + </delete> + <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.Property" useGeneratedKeys="true"> + insert into property (cid, name) + values (#{cid,jdbcType=INTEGER}, #{name,jdbcType=VARCHAR}) + </insert> + <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.Property" useGeneratedKeys="true"> + insert into property + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="cid != null"> + cid, + </if> + <if test="name != null"> + name, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="cid != null"> + #{cid,jdbcType=INTEGER}, + </if> + <if test="name != null"> + #{name,jdbcType=VARCHAR}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.how2java.tmall.pojo.Property"> + update property + <set> + <if test="cid != null"> + cid = #{cid,jdbcType=INTEGER}, + </if> + <if test="name != null"> + name = #{name,jdbcType=VARCHAR}, + </if> + </set> + where id = #{id,jdbcType=INTEGER} + </update> + <update id="updateByPrimaryKey" parameterType="com.how2java.tmall.pojo.Property"> + update property + set cid = #{cid,jdbcType=INTEGER}, + name = #{name,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + </update> +</mapper> \ No newline at end of file diff --git a/src/main/resources/mapper/PropertyValueMapper.xml b/src/main/resources/mapper/PropertyValueMapper.xml new file mode 100644 index 0000000..22bfe3b --- /dev/null +++ b/src/main/resources/mapper/PropertyValueMapper.xml @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.how2java.tmall.mapper.PropertyValueMapper"> + <resultMap id="BaseResultMap" type="com.how2java.tmall.pojo.PropertyValue"> + <id column="id" jdbcType="INTEGER" property="id" /> + <result column="pid" jdbcType="INTEGER" property="pid" /> + <result column="ptid" jdbcType="INTEGER" property="ptid" /> + <result column="value" jdbcType="VARCHAR" property="value" /> + </resultMap> + <sql id="Example_Where_Clause"> + <where> + <foreach collection="oredCriteria" item="criteria" separator="or"> + <if test="criteria.valid"> + <trim prefix="(" prefixOverrides="and" suffix=")"> + <foreach collection="criteria.criteria" item="criterion"> + <choose> + <when test="criterion.noValue"> + and ${criterion.condition} + </when> + <when test="criterion.singleValue"> + and ${criterion.condition} #{criterion.value} + </when> + <when test="criterion.betweenValue"> + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + </when> + <when test="criterion.listValue"> + and ${criterion.condition} + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> + #{listItem} + </foreach> + </when> + </choose> + </foreach> + </trim> + </if> + </foreach> + </where> + </sql> + <sql id="Base_Column_List"> + id, pid, ptid, value + </sql> + <select id="selectByExample" parameterType="com.how2java.tmall.pojo.PropertyValueExample" resultMap="BaseResultMap"> + select + <if test="distinct"> + distinct + </if> + 'false' as QUERYID, + <include refid="Base_Column_List" /> + from propertyvalue + <if test="_parameter != null"> + <include refid="Example_Where_Clause" /> + </if> + <if test="orderByClause != null"> + order by ${orderByClause} + </if> + </select> + <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> + select + <include refid="Base_Column_List" /> + from propertyvalue + where id = #{id,jdbcType=INTEGER} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> + delete from propertyvalue + where id = #{id,jdbcType=INTEGER} + </delete> + <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.PropertyValue" useGeneratedKeys="true"> + insert into propertyvalue (pid, ptid, value + ) + values (#{pid,jdbcType=INTEGER}, #{ptid,jdbcType=INTEGER}, #{value,jdbcType=VARCHAR} + ) + </insert> + <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.PropertyValue" useGeneratedKeys="true"> + insert into propertyvalue + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="pid != null"> + pid, + </if> + <if test="ptid != null"> + ptid, + </if> + <if test="value != null"> + value, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="pid != null"> + #{pid,jdbcType=INTEGER}, + </if> + <if test="ptid != null"> + #{ptid,jdbcType=INTEGER}, + </if> + <if test="value != null"> + #{value,jdbcType=VARCHAR}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.how2java.tmall.pojo.PropertyValue"> + update propertyvalue + <set> + <if test="pid != null"> + pid = #{pid,jdbcType=INTEGER}, + </if> + <if test="ptid != null"> + ptid = #{ptid,jdbcType=INTEGER}, + </if> + <if test="value != null"> + value = #{value,jdbcType=VARCHAR}, + </if> + </set> + where id = #{id,jdbcType=INTEGER} + </update> + <update id="updateByPrimaryKey" parameterType="com.how2java.tmall.pojo.PropertyValue"> + update propertyvalue + set pid = #{pid,jdbcType=INTEGER}, + ptid = #{ptid,jdbcType=INTEGER}, + value = #{value,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + </update> +</mapper> \ No newline at end of file diff --git a/src/main/resources/mapper/ReviewMapper.xml b/src/main/resources/mapper/ReviewMapper.xml new file mode 100644 index 0000000..ad88a7d --- /dev/null +++ b/src/main/resources/mapper/ReviewMapper.xml @@ -0,0 +1,131 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.how2java.tmall.mapper.ReviewMapper"> + <resultMap id="BaseResultMap" type="com.how2java.tmall.pojo.Review"> + <id column="id" jdbcType="INTEGER" property="id" /> + <result column="content" jdbcType="VARCHAR" property="content" /> + <result column="uid" jdbcType="INTEGER" property="uid" /> + <result column="pid" jdbcType="INTEGER" property="pid" /> + <result column="createDate" jdbcType="TIMESTAMP" property="createDate" /> + </resultMap> + <sql id="Example_Where_Clause"> + <where> + <foreach collection="oredCriteria" item="criteria" separator="or"> + <if test="criteria.valid"> + <trim prefix="(" prefixOverrides="and" suffix=")"> + <foreach collection="criteria.criteria" item="criterion"> + <choose> + <when test="criterion.noValue"> + and ${criterion.condition} + </when> + <when test="criterion.singleValue"> + and ${criterion.condition} #{criterion.value} + </when> + <when test="criterion.betweenValue"> + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + </when> + <when test="criterion.listValue"> + and ${criterion.condition} + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> + #{listItem} + </foreach> + </when> + </choose> + </foreach> + </trim> + </if> + </foreach> + </where> + </sql> + <sql id="Base_Column_List"> + id, content, uid, pid, createDate + </sql> + <select id="selectByExample" parameterType="com.how2java.tmall.pojo.ReviewExample" resultMap="BaseResultMap"> + select + <if test="distinct"> + distinct + </if> + 'false' as QUERYID, + <include refid="Base_Column_List" /> + from review + <if test="_parameter != null"> + <include refid="Example_Where_Clause" /> + </if> + <if test="orderByClause != null"> + order by ${orderByClause} + </if> + </select> + <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> + select + <include refid="Base_Column_List" /> + from review + where id = #{id,jdbcType=INTEGER} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> + delete from review + where id = #{id,jdbcType=INTEGER} + </delete> + <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.Review" useGeneratedKeys="true"> + insert into review (content, uid, pid, + createDate) + values (#{content,jdbcType=VARCHAR}, #{uid,jdbcType=INTEGER}, #{pid,jdbcType=INTEGER}, + #{createDate,jdbcType=TIMESTAMP}) + </insert> + <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.Review" useGeneratedKeys="true"> + insert into review + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="content != null"> + content, + </if> + <if test="uid != null"> + uid, + </if> + <if test="pid != null"> + pid, + </if> + <if test="createDate != null"> + createDate, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="content != null"> + #{content,jdbcType=VARCHAR}, + </if> + <if test="uid != null"> + #{uid,jdbcType=INTEGER}, + </if> + <if test="pid != null"> + #{pid,jdbcType=INTEGER}, + </if> + <if test="createDate != null"> + #{createDate,jdbcType=TIMESTAMP}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.how2java.tmall.pojo.Review"> + update review + <set> + <if test="content != null"> + content = #{content,jdbcType=VARCHAR}, + </if> + <if test="uid != null"> + uid = #{uid,jdbcType=INTEGER}, + </if> + <if test="pid != null"> + pid = #{pid,jdbcType=INTEGER}, + </if> + <if test="createDate != null"> + createDate = #{createDate,jdbcType=TIMESTAMP}, + </if> + </set> + where id = #{id,jdbcType=INTEGER} + </update> + <update id="updateByPrimaryKey" parameterType="com.how2java.tmall.pojo.Review"> + update review + set content = #{content,jdbcType=VARCHAR}, + uid = #{uid,jdbcType=INTEGER}, + pid = #{pid,jdbcType=INTEGER}, + createDate = #{createDate,jdbcType=TIMESTAMP} + where id = #{id,jdbcType=INTEGER} + </update> +</mapper> \ No newline at end of file diff --git a/src/main/resources/mapper/UserMapper.xml b/src/main/resources/mapper/UserMapper.xml new file mode 100644 index 0000000..20ae626 --- /dev/null +++ b/src/main/resources/mapper/UserMapper.xml @@ -0,0 +1,107 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> +<mapper namespace="com.how2java.tmall.mapper.UserMapper"> + <resultMap id="BaseResultMap" type="com.how2java.tmall.pojo.User"> + <id column="id" jdbcType="INTEGER" property="id" /> + <result column="name" jdbcType="VARCHAR" property="name" /> + <result column="password" jdbcType="VARCHAR" property="password" /> + </resultMap> + <sql id="Example_Where_Clause"> + <where> + <foreach collection="oredCriteria" item="criteria" separator="or"> + <if test="criteria.valid"> + <trim prefix="(" prefixOverrides="and" suffix=")"> + <foreach collection="criteria.criteria" item="criterion"> + <choose> + <when test="criterion.noValue"> + and ${criterion.condition} + </when> + <when test="criterion.singleValue"> + and ${criterion.condition} #{criterion.value} + </when> + <when test="criterion.betweenValue"> + and ${criterion.condition} #{criterion.value} and #{criterion.secondValue} + </when> + <when test="criterion.listValue"> + and ${criterion.condition} + <foreach close=")" collection="criterion.value" item="listItem" open="(" separator=","> + #{listItem} + </foreach> + </when> + </choose> + </foreach> + </trim> + </if> + </foreach> + </where> + </sql> + <sql id="Base_Column_List"> + id, name, password + </sql> + <select id="selectByExample" parameterType="com.how2java.tmall.pojo.UserExample" resultMap="BaseResultMap"> + select + <if test="distinct"> + distinct + </if> + 'false' as QUERYID, + <include refid="Base_Column_List" /> + from user + <if test="_parameter != null"> + <include refid="Example_Where_Clause" /> + </if> + <if test="orderByClause != null"> + order by ${orderByClause} + </if> + </select> + <select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap"> + select + <include refid="Base_Column_List" /> + from user + where id = #{id,jdbcType=INTEGER} + </select> + <delete id="deleteByPrimaryKey" parameterType="java.lang.Integer"> + delete from user + where id = #{id,jdbcType=INTEGER} + </delete> + <insert id="insert" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.User" useGeneratedKeys="true"> + insert into user (name, password) + values (#{name,jdbcType=VARCHAR}, #{password,jdbcType=VARCHAR}) + </insert> + <insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.how2java.tmall.pojo.User" useGeneratedKeys="true"> + insert into user + <trim prefix="(" suffix=")" suffixOverrides=","> + <if test="name != null"> + name, + </if> + <if test="password != null"> + password, + </if> + </trim> + <trim prefix="values (" suffix=")" suffixOverrides=","> + <if test="name != null"> + #{name,jdbcType=VARCHAR}, + </if> + <if test="password != null"> + #{password,jdbcType=VARCHAR}, + </if> + </trim> + </insert> + <update id="updateByPrimaryKeySelective" parameterType="com.how2java.tmall.pojo.User"> + update user + <set> + <if test="name != null"> + name = #{name,jdbcType=VARCHAR}, + </if> + <if test="password != null"> + password = #{password,jdbcType=VARCHAR}, + </if> + </set> + where id = #{id,jdbcType=INTEGER} + </update> + <update id="updateByPrimaryKey" parameterType="com.how2java.tmall.pojo.User"> + update user + set name = #{name,jdbcType=VARCHAR}, + password = #{password,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + </update> +</mapper> \ No newline at end of file diff --git a/src/main/resources/springMVC.xml b/src/main/resources/springMVC.xml new file mode 100644 index 0000000..12bbf74 --- /dev/null +++ b/src/main/resources/springMVC.xml @@ -0,0 +1 @@ +<?xml version="1.0" encoding="UTF-8"?> diff --git a/src/main/webapp/WEB-INF/jsp/admin/editCategory.jsp b/src/main/webapp/WEB-INF/jsp/admin/editCategory.jsp new file mode 100644 index 0000000..3791fe6 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/editCategory.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + + diff --git a/src/main/webapp/WEB-INF/jsp/admin/editProduct.jsp b/src/main/webapp/WEB-INF/jsp/admin/editProduct.jsp new file mode 100644 index 0000000..3791fe6 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/editProduct.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + + diff --git a/src/main/webapp/WEB-INF/jsp/admin/editProperty.jsp b/src/main/webapp/WEB-INF/jsp/admin/editProperty.jsp new file mode 100644 index 0000000..3791fe6 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/editProperty.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + + diff --git a/src/main/webapp/WEB-INF/jsp/admin/editPropertyValue.jsp b/src/main/webapp/WEB-INF/jsp/admin/editPropertyValue.jsp new file mode 100644 index 0000000..3791fe6 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/editPropertyValue.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + + diff --git a/src/main/webapp/WEB-INF/jsp/admin/listCategory.jsp b/src/main/webapp/WEB-INF/jsp/admin/listCategory.jsp new file mode 100644 index 0000000..11d8900 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/listCategory.jsp @@ -0,0 +1,94 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + +<script> + $(function(){ + + $("#addForm").submit(function(){ + if(!checkEmpty("name","分类名称")) + return false; + if(!checkEmpty("categoryPic","分类图片")) + return false; + return true; + }); + }); + +</script> + +<title>分类管理</title> + +<div class="workingArea"> + <h1 class="label label-info" >分类管理</h1> + <br> + <br> + + <div class="listDataTableDiv"> + <table class="table table-striped table-bordered table-hover table-condensed"> + <thead> + <tr class="success"> + <th>ID</th> + <th>图片</th> + <th>分类名称</th> + <th>属性管理</th> + <th>产品管理</th> + <th>编辑</th> + <th>删除</th> + </tr> + </thead> + <tbody> + <c:forEach items="${cs}" var="c"> + + <tr> + <td>${c.id}</td> + <td><img height="40px" src="img/category/${c.id}.jpg"></td> + <td>${c.name}</td> + + <td><a href="admin_property_list?cid=${c.id}"><span class="glyphicon glyphicon-th-list"></span></a></td> + <td><a href="admin_product_list?cid=${c.id}"><span class="glyphicon glyphicon-shopping-cart"></span></a></td> + <td><a href="admin_category_edit?id=${c.id}"><span class="glyphicon glyphicon-edit"></span></a></td> + <td><a deleteLink="true" href="admin_category_delete?id=${c.id}"><span class=" glyphicon glyphicon-trash"></span></a></td> + + </tr> + </c:forEach> + </tbody> + </table> + </div> + + <div class="pageDiv"> + <%@include file="../include/admin/adminPage.jsp" %> + </div> + + <div class="panel panel-warning addDiv"> + <div class="panel-heading">新增分类</div> + <div class="panel-body"> + <form method="post" id="addForm" action="admin_category_add" enctype="multipart/form-data"> + <table class="addTable"> + <tr> + <td>分类名称</td> + <td><input id="name" name="name" type="text" class="form-control"></td> + </tr> + <tr> + <td>分类圖片</td> + <td> + <input id="categoryPic" accept="image/*" type="file" name="image" /> + </td> + </tr> + <tr class="submitTR"> + <td colspan="2" align="center"> + <button type="submit" class="btn btn-success">提 交</button> + </td> + </tr> + </table> + </form> + </div> + </div> + +</div> + +<%@include file="../include/admin/adminFooter.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/admin/listOrder.jsp b/src/main/webapp/WEB-INF/jsp/admin/listOrder.jsp new file mode 100644 index 0000000..db6924c --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/listOrder.jsp @@ -0,0 +1,114 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + +<script> + $(function(){ + $("button.orderPageCheckOrderItems").click(function(){ + var oid = $(this).attr("oid"); + $("tr.orderPageOrderItemTR[oid="+oid+"]").toggle(); + }); + }); + +</script> + +<title>订单管理</title> + + +<div class="workingArea"> + <h1 class="label label-info" >订单管理</h1> + <br> + <br> + + <div class="listDataTableDiv"> + <table class="table table-striped table-bordered table-hover1 table-condensed"> + <thead> + <tr class="success"> + <th>ID</th> + <th>状态</th> + <th>金额</th> + <th width="100px">商品数量</th> + <th width="100px">买家名称</th> + <th>创建时间</th> + <th>支付时间</th> + <th>发货时间</th> + <th>确认收货时间</th> + <th width="120px">操作</th> + </tr> + </thead> + <tbody> + <c:forEach items="${os}" var="o"> + <tr> + <td>${o.id}</td> + <td>${o.statusDesc}</td> + <td>¥<fmt:formatNumber type="number" value="${o.total}" minFractionDigits="2"/></td> + <td align="center">${o.totalNumber}</td> + <td align="center">${o.user.name}</td> + + <td><fmt:formatDate value="${o.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/></td> + <td><fmt:formatDate value="${o.payDate}" pattern="yyyy-MM-dd HH:mm:ss"/></td> + <td><fmt:formatDate value="${o.deliveryDate}" pattern="yyyy-MM-dd HH:mm:ss"/></td> + <td><fmt:formatDate value="${o.confirmDate}" pattern="yyyy-MM-dd HH:mm:ss"/></td> + + <td> + <button oid=${o.id} class="orderPageCheckOrderItems btn btn-primary btn-xs">查看详情</button> + + <c:if test="${o.status=='waitDelivery'}"> + <a href="admin_order_delivery?id=${o.id}"> + <button class="btn btn-primary btn-xs">发货</button> + </a> + </c:if> + </td> + </tr> + <tr class="orderPageOrderItemTR" oid=${o.id}> + <td colspan="10" align="center"> + + <div class="orderPageOrderItem"> + <table width="800px" align="center" class="orderPageOrderItemTable"> + <c:forEach items="${o.orderItems}" var="oi"> + <tr> + <td align="left"> + <img width="40px" height="40px" src="img/productSingle/${oi.product.firstProductImage.id}.jpg"> + </td> + + <td> + <a href="foreproduct?pid=${oi.product.id}"> + <span>${oi.product.name}</span> + </a> + </td> + <td align="right"> + + <span class="text-muted">${oi.number}个</span> + </td> + <td align="right"> + + <span class="text-muted">单价:¥${oi.product.promotePrice}</span> + </td> + + </tr> + </c:forEach> + + </table> + </div> + + </td> + </tr> + </c:forEach> + </tbody> + </table> + </div> + + <div class="pageDiv"> + <%@include file="../include/admin/adminPage.jsp" %> + </div> + + + +</div> + +<%@include file="../include/admin/adminFooter.jsp"%> diff --git a/src/main/webapp/WEB-INF/jsp/admin/listProduct.jsp b/src/main/webapp/WEB-INF/jsp/admin/listProduct.jsp new file mode 100644 index 0000000..165a400 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/listProduct.jsp @@ -0,0 +1,136 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + +<script> + $(function() { + $("#addForm").submit(function() { + if (!checkEmpty("name", "产品名称")) + return false; +// if (!checkEmpty("subTitle", "小标题")) +// return false; + if (!checkNumber("originalPrice", "原价格")) + return false; + if (!checkNumber("promotePrice", "优惠价格")) + return false; + if (!checkInt("stock", "库存")) + return false; + return true; + }); + }); +</script> + +<title>产品管理</title> + +<div class="workingArea"> + + <ol class="breadcrumb"> + <li><a href="admin_category_list">所有分类</a></li> + <li><a href="admin_product_list?cid=${c.id}">${c.name}</a></li> + <li class="active">产品管理</li> + </ol> + + <div class="listDataTableDiv"> + <table + class="table table-striped table-bordered table-hover table-condensed"> + <thead> + <tr class="success"> + <th>ID</th> + <th>图片</th> + <th>产品名称</th> + <th>产品小标题</th> + <th width="53px">原价格</th> + <th width="80px">优惠价格</th> + <th width="80px">库存数量</th> + <th width="80px">图片管理</th> + <th width="80px">设置属性</th> + <th width="42px">编辑</th> + <th width="42px">删除</th> + </tr> + </thead> + <tbody> + <c:forEach items="${ps}" var="p"> + <tr> + <td>${p.id}</td> + <td> + + <c:if test="${!empty p.firstProductImage}"> + <img width="40px" src="img/productSingle/${p.firstProductImage.id}.jpg"> + </c:if> + + </td> + <td>${p.name}</td> + <td>${p.subTitle}</td> + <td>${p.originalPrice}</td> + <td>${p.promotePrice}</td> + <td>${p.stock}</td> + <td><a href="admin_productImage_list?pid=${p.id}"><span + class="glyphicon glyphicon-picture"></span></a></td> + <td><a href="admin_propertyValue_edit?pid=${p.id}"><span + class="glyphicon glyphicon-th-list"></span></a></td> + + <td><a href="admin_product_edit?id=${p.id}"><span + class="glyphicon glyphicon-edit"></span></a></td> + <td><a deleteLink="true" + href="admin_product_delete?id=${p.id}"><span + class=" glyphicon glyphicon-trash"></span></a></td> + + </tr> + </c:forEach> + </tbody> + </table> + </div> + + <div class="pageDiv"> + <%@include file="../include/admin/adminPage.jsp"%> + </div> + + <div class="panel panel-warning addDiv"> + <div class="panel-heading">新增产品</div> + <div class="panel-body"> + <form method="post" id="addForm" action="admin_product_add"> + <table class="addTable"> + <tr> + <td>产品名称</td> + <td><input id="name" name="name" type="text" + class="form-control"></td> + </tr> + <tr> + <td>产品小标题</td> + <td><input id="subTitle" name="subTitle" type="text" + class="form-control"></td> + </tr> + <tr> + <td>原价格</td> + <td><input id="originalPrice" value="99.98" name="originalPrice" type="text" + class="form-control"></td> + </tr> + <tr> + <td>优惠价格</td> + <td><input id="promotePrice" value="19.98" name="promotePrice" type="text" + class="form-control"></td> + </tr> + <tr> + <td>库存</td> + <td><input id="stock" value="99" name="stock" type="text" + class="form-control"></td> + </tr> + <tr class="submitTR"> + <td colspan="2" align="center"> + <input type="hidden" name="cid" value="${c.id}"> + <button type="submit" class="btn btn-success">提 交</button> + </td> + </tr> + </table> + </form> + </div> + </div> + +</div> + +<%@include file="../include/admin/adminFooter.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/admin/listProductImage.jsp b/src/main/webapp/WEB-INF/jsp/admin/listProductImage.jsp new file mode 100644 index 0000000..a40b822 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/listProductImage.jsp @@ -0,0 +1,154 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + +<script> + $(function(){ + $(".addFormSingle").submit(function(){ + if(checkEmpty("filepathSingle","图片文件")){ + $("#filepathSingle").value(""); + return true; + } + return false; + }); + $(".addFormDetail").submit(function(){ + if(checkEmpty("filepathDetail","图片文件")) + return true; + return false; + }); + }); + +</script> + +<title>产品图片管理</title> + + +<div class="workingArea"> + <ol class="breadcrumb"> + <li><a href="admin_category_list">所有分类</a></li> + <li><a href="admin_product_list?cid=${p.category.id}">${p.category.name}</a></li> + <li class="active">${p.name}</li> + <li class="active">产品图片管理</li> + </ol> + + <table class="addPictureTable" align="center"> + <tr> + <td class="addPictureTableTD"> + <div> + <div class="panel panel-warning addPictureDiv"> + <div class="panel-heading">新增产品<b class="text-primary"> 单个 </b>图片</div> + <div class="panel-body"> + <form method="post" class="addFormSingle" action="admin_productImage_add" enctype="multipart/form-data"> + <table class="addTable"> + <tr> + <td>请选择本地图片 尺寸400X400 为佳</td> + </tr> + <tr> + <td> + <input id="filepathSingle" type="file" name="image" /> + </td> + </tr> + <tr class="submitTR"> + <td align="center"> + <input type="hidden" name="type" value="type_single" /> + <input type="hidden" name="pid" value="${p.id}" /> + <button type="submit" class="btn btn-success">提 交</button> + </td> + </tr> + </table> + </form> + </div> + </div> + <table class="table table-striped table-bordered table-hover table-condensed"> + <thead> + <tr class="success"> + <th>ID</th> + <th>产品单个图片缩略图</th> + <th>删除</th> + </tr> + </thead> + <tbody> + <c:forEach items="${pisSingle}" var="pi"> + <tr> + <td>${pi.id}</td> + <td> + <a title="点击查看原图" href="img/productSingle/${pi.id}.jpg"><img height="50px" src="img/productSingle/${pi.id}.jpg"></a> + </td> + <td><a deleteLink="true" + href="admin_productImage_delete?id=${pi.id}"><span + class=" glyphicon glyphicon-trash"></span></a></td> + + </tr> + </c:forEach> + </tbody> + </table> + + </div> + </td> + <td class="addPictureTableTD"> + <div> + + <div class="panel panel-warning addPictureDiv"> + <div class="panel-heading">新增产品<b class="text-primary"> 详情 </b>图片</div> + <div class="panel-body"> + <form method="post" class="addFormDetail" action="admin_productImage_add" enctype="multipart/form-data"> + <table class="addTable"> + <tr> + <td>请选择本地图片 宽度790 为佳</td> + </tr> + <tr> + <td> + <input id="filepathDetail" type="file" name="image" /> + </td> + </tr> + <tr class="submitTR"> + <td align="center"> + <input type="hidden" name="type" value="type_detail" /> + <input type="hidden" name="pid" value="${p.id}" /> + <button type="submit" class="btn btn-success">提 交</button> + </td> + </tr> + </table> + </form> + </div> + </div> + <table class="table table-striped table-bordered table-hover table-condensed"> + <thead> + <tr class="success"> + <th>ID</th> + <th>产品详情图片缩略图</th> + <th>删除</th> + </tr> + </thead> + <tbody> + <c:forEach items="${pisDetail}" var="pi"> + <tr> + <td>${pi.id}</td> + <td> + <a title="点击查看原图" href="img/productDetail/${pi.id}.jpg"><img height="50px" src="img/productDetail/${pi.id}.jpg"></a> + </td> + <td><a deleteLink="true" + href="admin_productImage_delete?id=${pi.id}"><span + class=" glyphicon glyphicon-trash"></span></a></td> + + </tr> + </c:forEach> + </tbody> + </table> + </div> + </td> + </tr> + </table> + + + + + +</div> + +<%@include file="../include/admin/adminFooter.jsp"%> diff --git a/src/main/webapp/WEB-INF/jsp/admin/listProperty.jsp b/src/main/webapp/WEB-INF/jsp/admin/listProperty.jsp new file mode 100644 index 0000000..d9e6261 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/listProperty.jsp @@ -0,0 +1,90 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + +<script> + $(function() { + + $("#addForm").submit(function() { + if (checkEmpty("name", "属性名称")) + return true; + return false; + }); + }); +</script> + +<title>属性管理</title> + + +<div class="workingArea"> + + <ol class="breadcrumb"> + <li><a href="admin_category_list">所有分类</a></li> + <li><a href="admin_property_list?cid=${c.id}">${c.name}</a></li> + <li class="active">属性管理</li> + </ol> + + + + <div class="listDataTableDiv"> + <table + class="table table-striped table-bordered table-hover table-condensed"> + <thead> + <tr class="success"> + <th>ID</th> + <th>属性名称</th> + <th>编辑</th> + <th>删除</th> + </tr> + </thead> + <tbody> + <c:forEach items="${ps}" var="p"> + + <tr> + <td>${p.id}</td> + <td>${p.name}</td> + <td><a href="admin_property_edit?id=${p.id}"><span + class="glyphicon glyphicon-edit"></span></a></td> + <td><a deleteLink="true" + href="admin_property_delete?id=${p.id}"><span + class=" glyphicon glyphicon-trash"></span></a></td> + + </tr> + </c:forEach> + </tbody> + </table> + </div> + + <div class="pageDiv"> + <%@include file="../include/admin/adminPage.jsp"%> + </div> + + <div class="panel panel-warning addDiv"> + <div class="panel-heading">新增属性</div> + <div class="panel-body"> + <form method="post" id="addForm" action="admin_property_add"> + <table class="addTable"> + <tr> + <td>属性名称</td> + <td><input id="name" name="name" type="text" + class="form-control"></td> + </tr> + <tr class="submitTR"> + <td colspan="2" align="center"> + <input type="hidden" name="cid" value="${c.id}"> + <button type="submit" class="btn btn-success">提 交</button> + </td> + </tr> + </table> + </form> + </div> + </div> + +</div> + +<%@include file="../include/admin/adminFooter.jsp"%> diff --git a/src/main/webapp/WEB-INF/jsp/admin/listUser.jsp b/src/main/webapp/WEB-INF/jsp/admin/listUser.jsp new file mode 100644 index 0000000..03abf7c --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/admin/listUser.jsp @@ -0,0 +1,48 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" import="java.util.*"%> + +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@include file="../include/admin/adminHeader.jsp"%> +<%@include file="../include/admin/adminNavigator.jsp"%> + +<script> +</script> + +<title>用户管理</title> + + +<div class="workingArea"> + <h1 class="label label-info" >用户管理</h1> + + <br> + <br> + + <div class="listDataTableDiv"> + <table class="table table-striped table-bordered table-hover table-condensed"> + <thead> + <tr class="success"> + <th>ID</th> + <th>用户名称</th> + </tr> + </thead> + <tbody> + <c:forEach items="${us}" var="u"> + <tr> + <td>${u.id}</td> + <td>${u.name}</td> + </tr> + </c:forEach> + </tbody> + </table> + </div> + + <div class="pageDiv"> + <%@include file="../include/admin/adminPage.jsp" %> + </div> + + +</div> + +<%@include file="../include/admin/adminFooter.jsp"%> diff --git a/src/main/webapp/WEB-INF/jsp/fore/alipay.jsp b/src/main/webapp/WEB-INF/jsp/fore/alipay.jsp new file mode 100644 index 0000000..7c6feaa --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/alipay.jsp @@ -0,0 +1,9 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/cart/alipayPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/bought.jsp b/src/main/webapp/WEB-INF/jsp/fore/bought.jsp new file mode 100644 index 0000000..1038ee7 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/bought.jsp @@ -0,0 +1,11 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> + +<%@include file="../include/fore/cart/boughtPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/buy.jsp b/src/main/webapp/WEB-INF/jsp/fore/buy.jsp new file mode 100644 index 0000000..5ec8f6a --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/buy.jsp @@ -0,0 +1,9 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/cart/buyPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/cart.jsp b/src/main/webapp/WEB-INF/jsp/fore/cart.jsp new file mode 100644 index 0000000..7412cae --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/cart.jsp @@ -0,0 +1,11 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> + +<%@include file="../include/fore/cart/cartPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/category.jsp b/src/main/webapp/WEB-INF/jsp/fore/category.jsp new file mode 100644 index 0000000..c8a1d24 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/category.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/search.jsp"%> +<%@include file="../include/fore/category/categoryPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/confirmPay.jsp b/src/main/webapp/WEB-INF/jsp/fore/confirmPay.jsp new file mode 100644 index 0000000..41cca2b --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/confirmPay.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> +<%@include file="../include/fore/cart/confirmPayPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/home.jsp b/src/main/webapp/WEB-INF/jsp/fore/home.jsp new file mode 100644 index 0000000..c7e1f18 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/home.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/search.jsp"%> +<%@include file="../include/fore/home/homePage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/login.jsp b/src/main/webapp/WEB-INF/jsp/fore/login.jsp new file mode 100644 index 0000000..5eff9ee --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/login.jsp @@ -0,0 +1,16 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/loginPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/orderConfirmed.jsp b/src/main/webapp/WEB-INF/jsp/fore/orderConfirmed.jsp new file mode 100644 index 0000000..60908f6 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/orderConfirmed.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> +<%@include file="../include/fore/cart/orderConfirmedPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/payed.jsp b/src/main/webapp/WEB-INF/jsp/fore/payed.jsp new file mode 100644 index 0000000..5b596a2 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/payed.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> +<%@include file="../include/fore/cart/payedPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/product.jsp b/src/main/webapp/WEB-INF/jsp/fore/product.jsp new file mode 100644 index 0000000..e8146de --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/product.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> +<%@include file="../include/fore/product/productPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/register.jsp b/src/main/webapp/WEB-INF/jsp/fore/register.jsp new file mode 100644 index 0000000..5fbf51a --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/register.jsp @@ -0,0 +1,24 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> + +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> + + +<%@include file="../include/fore/registerPage.jsp"%> + + + +<%@include file="../include/fore/footer.jsp"%> + + + + + + + + \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/registerSuccess.jsp b/src/main/webapp/WEB-INF/jsp/fore/registerSuccess.jsp new file mode 100644 index 0000000..b32b408 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/registerSuccess.jsp @@ -0,0 +1,10 @@ + + +registerSuccessPage.jsp<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> +<%@include file="../include/fore/registerSuccessPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/review.jsp b/src/main/webapp/WEB-INF/jsp/fore/review.jsp new file mode 100644 index 0000000..3d1c6d3 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/review.jsp @@ -0,0 +1,11 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/simpleSearch.jsp"%> + +<%@include file="../include/fore/cart/reviewPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/fore/searchResult.jsp b/src/main/webapp/WEB-INF/jsp/fore/searchResult.jsp new file mode 100644 index 0000000..9f887e0 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/fore/searchResult.jsp @@ -0,0 +1,10 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<%@include file="../include/fore/header.jsp"%> +<%@include file="../include/fore/top.jsp"%> +<%@include file="../include/fore/search.jsp"%> +<%@include file="../include/fore/searchResultPage.jsp"%> +<%@include file="../include/fore/footer.jsp"%> diff --git a/src/main/webapp/WEB-INF/jsp/include/admin/adminFooter.jsp b/src/main/webapp/WEB-INF/jsp/include/admin/adminFooter.jsp new file mode 100644 index 0000000..b71d0c0 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/admin/adminFooter.jsp @@ -0,0 +1,12 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<div class="footer"> +</div> + + +</body> +</html> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/admin/adminHeader.jsp b/src/main/webapp/WEB-INF/jsp/include/admin/adminHeader.jsp new file mode 100644 index 0000000..11db512 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/admin/adminHeader.jsp @@ -0,0 +1,75 @@ + + +<!DOCTYPE html> +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> +<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix='fmt' %> + +<html> + +<head> + <script src="js/jquery/2.0.0/jquery.min.js"></script> + <link href="css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> + <script src="js/bootstrap/3.3.6/bootstrap.min.js"></script> + <link href="css/back/style.css" rel="stylesheet"> + +<script> +function checkEmpty(id, name){ + var value = $("#"+id).val(); + if(value.length==0){ + alert(name+ "不能为空"); + $("#"+id)[0].focus(); + return false; + } + return true; +} +function checkNumber(id, name){ + var value = $("#"+id).val(); + if(value.length==0){ + alert(name+ "不能为空"); + $("#"+id)[0].focus(); + return false; + } + if(isNaN(value)){ + alert(name+ "必须是数字"); + $("#"+id)[0].focus(); + return false; + } + + return true; +} +function checkInt(id, name){ + var value = $("#"+id).val(); + if(value.length==0){ + alert(name+ "不能为空"); + $("#"+id)[0].focus(); + return false; + } + if(parseInt(value)!=value){ + alert(name+ "必须是整数"); + $("#"+id)[0].focus(); + return false; + } + + return true; +} + + +$(function(){ + $("a").click(function(){ + var deleteLink = $(this).attr("deleteLink"); + console.log(deleteLink); + if("true"==deleteLink){ + var confirmDelete = confirm("确认要删除"); + if(confirmDelete) + return true; + return false; + + } + }); +}) +</script> +</head> +<body> + diff --git a/src/main/webapp/WEB-INF/jsp/include/admin/adminNavigator.jsp b/src/main/webapp/WEB-INF/jsp/include/admin/adminNavigator.jsp new file mode 100644 index 0000000..0fb3168 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/admin/adminNavigator.jsp @@ -0,0 +1,15 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<div class="navitagorDiv"> + <nav class="navbar navbar-default navbar-fixed-top navbar-inverse"> + <img style="margin-left:10px;margin-right:0px" class="pull-left" src="img/site/tmallbuy.png" height="45px"> + <a class="navbar-brand" href="#nowhere">天猫后台</a> + + <a class="navbar-brand" href="admin_category_list">分类管理</a> + <a class="navbar-brand" href="admin_user_list">用户管理</a> + <a class="navbar-brand" href="admin_order_list">订单管理</a> + </nav> +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/admin/adminPage.jsp b/src/main/webapp/WEB-INF/jsp/include/admin/adminPage.jsp new file mode 100644 index 0000000..e9bb6ec --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/admin/adminPage.jsp @@ -0,0 +1,54 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<script> +$(function(){ + $("ul.pagination li.disabled a").click(function(){ + return false; + }); +}); + +</script> + + +<nav> + <ul class="pagination"> + <li <c:if test="${!page.hasPreviouse}">class="disabled"</c:if>> + <a href="?start=0${page.param}" aria-label="Previous" > + <span aria-hidden="true">«</span> + </a> + </li> + + <li <c:if test="${!page.hasPreviouse}">class="disabled"</c:if>> + <a href="?start=${page.start-page.count}${page.param}" aria-label="Previous" > + <span aria-hidden="true">‹</span> + </a> + </li> + + <c:forEach begin="0" end="${page.totalPage-1}" varStatus="status"> + + + <li <c:if test="${status.index*page.count==page.start}">class="disabled"</c:if>> + <a + href="?start=${status.index*page.count}${page.param}" + <c:if test="${status.index*page.count==page.start}">class="current"</c:if> + >${status.count}</a> + </li> + + </c:forEach> + + <li <c:if test="${!page.hasNext}">class="disabled"</c:if>> + <a href="?start=${page.start+page.count}${page.param}" aria-label="Next"> + <span aria-hidden="true">›</span> + </a> + </li> + <li <c:if test="${!page.hasNext}">class="disabled"</c:if>> + <a href="?start=${page.last}${page.param}" aria-label="Next"> + <span aria-hidden="true">»</span> + </a> + </li> + </ul> +</nav> diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/alipayPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/alipayPage.jsp new file mode 100644 index 0000000..03ca10b --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/alipayPage.jsp @@ -0,0 +1,2 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/boughtPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/boughtPage.jsp new file mode 100644 index 0000000..d4eda9c --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/boughtPage.jsp @@ -0,0 +1,6 @@ +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/buyPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/buyPage.jsp new file mode 100644 index 0000000..846ff10 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/buyPage.jsp @@ -0,0 +1,4 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/cartPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/cartPage.jsp new file mode 100644 index 0000000..ee9ee08 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/cartPage.jsp @@ -0,0 +1,6 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/confirmPayPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/confirmPayPage.jsp new file mode 100644 index 0000000..a7178e5 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/confirmPayPage.jsp @@ -0,0 +1,5 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/orderConfirmedPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/orderConfirmedPage.jsp new file mode 100644 index 0000000..73d61b2 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/orderConfirmedPage.jsp @@ -0,0 +1,11 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<div class="orderFinishDiv"> + <div class="orderFinishTextDiv"> + <img src="img/site/orderFinish.png"> + <span>交易已经成功,卖家将收到您的货款。</span> + </div> +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/payedPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/payedPage.jsp new file mode 100644 index 0000000..a7178e5 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/payedPage.jsp @@ -0,0 +1,5 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/cart/reviewPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/cart/reviewPage.jsp new file mode 100644 index 0000000..a7178e5 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/cart/reviewPage.jsp @@ -0,0 +1,5 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/category/categoryPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/category/categoryPage.jsp new file mode 100644 index 0000000..8ec8e94 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/category/categoryPage.jsp @@ -0,0 +1,13 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<title>模仿天猫官网-${c.name}</title> +<div id="category"> + <div class="categoryPageDiv"> + <img src="img/category/${c.id}.jpg"> + <%@include file="sortBar.jsp"%> + <%@include file="productsByCategory.jsp"%> + </div> + +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/category/productsByCategory.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/category/productsByCategory.jsp new file mode 100644 index 0000000..2418417 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/category/productsByCategory.jsp @@ -0,0 +1,47 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + +<c:if test="${empty param.categorycount}"> + <c:set var="categorycount" scope="page" value="100"/> +</c:if> + +<c:if test="${!empty param.categorycount}"> + <c:set var="categorycount" scope="page" value="${param.categorycount}"/> +</c:if> + +<div class="categoryProducts"> + <c:forEach items="${c.products}" var="p" varStatus="stc"> + <c:if test="${stc.count<=categorycount}"> + <div class="productUnit" price="${p.promotePrice}"> + <div class="productUnitFrame"> + <a href="foreproduct?pid=${p.id}"> + <img class="productImage" src="img/productSingle_middle/${p.firstProductImage.id}.jpg"> + </a> + <span class="productPrice">¥<fmt:formatNumber type="number" value="${p.promotePrice}" minFractionDigits="2"/></span> + <a class="productLink" href="foreproduct?pid=${p.id}"> + ${fn:substring(p.name, 0, 50)} + </a> + + <a class="tmallLink" href="foreproduct?pid=${p.id}">天猫专卖</a> + + <div class="show1 productInfo"> + <span class="monthDeal ">月成交 <span class="productDealNumber">${p.saleCount}笔</span></span> + <span class="productReview">评价<span class="productReviewNumber">${p.reviewCount}</span></span> + <span class="wangwang"> + <a class="wangwanglink" href="#nowhere"> + <img src="img/site/wangwang.png"> + </a> + + </span> + </div> + </div> + </div> + </c:if> + </c:forEach> + <div style="clear:both"></div> +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/category/sortBar.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/category/sortBar.jsp new file mode 100644 index 0000000..d3b1daa --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/category/sortBar.jsp @@ -0,0 +1,65 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> + +<script> +$(function(){ + $("input.sortBarPrice").keyup(function(){ + var num= $(this).val(); + if(num.length==0){ + $("div.productUnit").show(); + return; + } + + num = parseInt(num); + if(isNaN(num)) + num= 1; + if(num<=0) + num = 1; + $(this).val(num); + + + var begin = $("input.beginPrice").val(); + var end = $("input.endPrice").val(); + if(!isNaN(begin) && !isNaN(end)){ + console.log(begin); + console.log(end); + $("div.productUnit").hide(); + $("div.productUnit").each(function(){ + var price = $(this).attr("price"); + price = new Number(price); + + if(price<=end && price>=begin) + $(this).show(); + }); + } + + }); +}); +</script> +<div class="categorySortBar"> + + + <table class="categorySortBarTable categorySortTable"> + <tr> + <td <c:if test="${'all'==param.sort||empty param.sort}">class="grayColumn"</c:if> ><a href="?cid=${c.id}&sort=all">综合<span class="glyphicon glyphicon-arrow-down"></span></a></td> + <td <c:if test="${'review'==param.sort}">class="grayColumn"</c:if> ><a href="?cid=${c.id}&sort=review">人气<span class="glyphicon glyphicon-arrow-down"></span></a></td> + <td <c:if test="${'date'==param.sort}">class="grayColumn"</c:if>><a href="?cid=${c.id}&sort=date">新品<span class="glyphicon glyphicon-arrow-down"></span></a></td> + <td <c:if test="${'saleCount'==param.sort}">class="grayColumn"</c:if>><a href="?cid=${c.id}&sort=saleCount">销量<span class="glyphicon glyphicon-arrow-down"></span></a></td> + <td <c:if test="${'price'==param.sort}">class="grayColumn"</c:if>><a href="?cid=${c.id}&sort=price">价格<span class="glyphicon glyphicon-resize-vertical"></span></a></td> + </tr> + </table> + + + + <table class="categorySortBarTable"> + <tr> + <td><input class="sortBarPrice beginPrice" type="text" placeholder="请输入"></td> + <td class="grayColumn priceMiddleColumn">-</td> + <td><input class="sortBarPrice endPrice" type="text" placeholder="请输入"></td> + </tr> + </table> + +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/footer.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/footer.jsp new file mode 100644 index 0000000..5a7de44 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/footer.jsp @@ -0,0 +1,118 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<%@include file="modal.jsp" %> + +<div id="footer" class="footer" style="display: block;"> + + <div id="footer_ensure" class="footer_ensure"> + <a href="#nowhere"> + <img src="img/site/ensure.png"> + </a> + </div> + + <div class="horizontal_line"> + </div> + + <div id="footer_desc" class="footer_desc"> + <div class="descColumn"> + <span class="descColumnTitle">购物指南</span> + <a href="#nowhere" >免费注册</a> + <a href="#nowhere" >开通支付宝</a> + <a href="#nowhere" >支付宝充值</a> + </div> + <div class="descColumn"> + <span class="descColumnTitle">天猫保障</span> + <a href="#nowhere" >发票保障</a> + <a href="#nowhere" >售后规则</a> + <a href="#nowhere" >缺货赔付</a> + </div> + <div class="descColumn"> + <span class="descColumnTitle">支付方式</span> + <a href="#nowhere" >快捷支付</a> + <a href="#nowhere" >信用卡</a> + <a href="#nowhere" >蚂蚁花呗</a> + <a href="#nowhere" >货到付款</a> + </div> + <div class="descColumn"> + <span class="descColumnTitle">商家服务</span> + <a href="#nowhere" >商家入驻</a> + <a href="#nowhere" >商家中心</a> + <a href="#nowhere" >天猫智库</a> + <a href="#nowhere" >天猫规则</a> + <a href="#nowhere" >物流服务</a> + <a href="#nowhere" >喵言喵语</a> + <a href="#nowhere" >运营服务</a> + </div> + <div class="descColumn"> + <span class="descColumnTitle">手机天猫</span> + <a href="#nowhere" ><img src="img/site/ma.png"></a> + </div> + + </div> + + <div style="clear:both"> + + </div> + + + + + <div id="copyright" class="copyright"> + <div class="coptyrightMiddle"> + <img id="cateye" class="cateye" src="img/site/cateye.png"> + <div class="white_link" > + <a href="#nowhere" style="padding-left:0px" >关于天猫</a> + <a href="#nowhere" > 帮助中心</a> + <a href="#nowhere" >开放平台</a> + <a href="#nowhere" > 诚聘英才</a> + <a href="#nowhere" >联系我们</a> + <a href="#nowhere" >网站合作</a> + <a href="#nowhere" >法律声明</a> + <a href="#nowhere" >知识产权</a> + <a href="#nowhere" > 廉正举报 </a> + </div> + <div class="white_link" > + <a href="#nowhere" style="padding-left:0px" > 阿里巴巴集团</a><span class="slash">|</span> + <a href="#nowhere" > 淘宝网</a><span class="slash">|</span> + <a href="#nowhere" >天猫 </a><span class="slash">|</span> + <a href="#nowhere" > 聚划算</a><span class="slash">|</span> + <a href="#nowhere" >全球速卖通</a><span class="slash">|</span> + <a href="#nowhere" >阿里巴巴国际交易市场</a><span class="slash">|</span> + <a href="#nowhere" >1688</a><span class="slash">|</span> + <a href="#nowhere" >阿里妈妈</a><span class="slash">|</span> + <a href="#nowhere" > 阿里旅行·去啊 </a><span class="slash">|</span> + <a href="#nowhere" > 阿里云计算 </a><span class="slash">|</span> + <a href="#nowhere" > 阿里通信 </a><span class="slash">|</span> + <a href="#nowhere" > YunOS </a><span class="slash">|</span> + <a href="#nowhere" > 阿里旅行·去啊 </a><span class="slash">|</span> + <a href="#nowhere" > 万网 </a><span class="slash">|</span> + <a href="#nowhere" > 高德 </a><span class="slash">|</span> + <a href="#nowhere" > 优视 </a><span class="slash">|</span> + <a href="#nowhere" > 友盟 </a><span class="slash">|</span> + <a href="#nowhere" > 虾米 </a><span class="slash">|</span> + <a href="#nowhere" > 天天动听 </a><span class="slash">|</span> + <a href="#nowhere" > 来往 </a><span class="slash">|</span> + <a href="#nowhere" > 钉钉 </a><span class="slash">|</span> + <a href="#nowhere" > 支付宝 </a> + </div> + + <div class="license"> + <span>增值电信业务经营许可证: 浙B2-20110446</span> + <span>网络文化经营许可证:浙网文[2015]0295-065号</span> + <span>互联网医疗保健信息服务 审核同意书 浙卫网审【2014】6号 </span> + <span>互联网药品信息服务资质证书编号:浙-(经营性)-2012-0005</span> + <div class="copyRightYear">© 2003-2016 TMALL.COM 版权所有</div> + <div> + <img src="img/site/copyRight1.jpg"> + <img src="img/site/copyRight2.jpg"> + </div> + </div> + </div> + </div> +</div> +</body> +</html> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/header.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/header.jsp new file mode 100644 index 0000000..0de37bc --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/header.jsp @@ -0,0 +1,85 @@ + + +<!DOCTYPE html> +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + + + +<html> + +<head> + <script src="js/jquery/2.0.0/jquery.min.js"></script> + <link href="css/bootstrap/3.3.6/bootstrap.min.css" rel="stylesheet"> + <script src="js/bootstrap/3.3.6/bootstrap.min.js"></script> + <link href="css/fore/style.css" rel="stylesheet"> + <script> + function formatMoney(num){ + num = num.toString().replace(/\$|\,/g,''); + if(isNaN(num)) + num = "0"; + sign = (num == (num = Math.abs(num))); + num = Math.floor(num*100+0.50000000001); + cents = num%100; + num = Math.floor(num/100).toString(); + if(cents<10) + cents = "0" + cents; + for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++) + num = num.substring(0,num.length-(4*i+3))+','+ + num.substring(num.length-(4*i+3)); + return (((sign)?'':'-') + num + '.' + cents); + } + function checkEmpty(id, name){ + var value = $("#"+id).val(); + if(value.length==0){ + + $("#"+id)[0].focus(); + return false; + } + return true; + } + + + $(function(){ + + + $("a.productDetailTopReviewLink").click(function(){ + $("div.productReviewDiv").show(); + $("div.productDetailDiv").hide(); + }); + $("a.productReviewTopPartSelectedLink").click(function(){ + $("div.productReviewDiv").hide(); + $("div.productDetailDiv").show(); + }); + + $("span.leaveMessageTextareaSpan").hide(); + $("img.leaveMessageImg").click(function(){ + + $(this).hide(); + $("span.leaveMessageTextareaSpan").show(); + $("div.orderItemSumDiv").css("height","100px"); + }); + + $("div#footer a[href$=#nowhere]").click(function(){ + alert("模仿天猫的连接,并没有跳转到实际的页面"); + }); + + + $("a.wangwanglink").click(function(){ + alert("模仿旺旺的图标,并不会打开旺旺"); + }); + $("a.notImplementLink").click(function(){ + alert("这个功能没做,蛤蛤~"); + }); + + + }); + + </script> +</head> + +<body> + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/home/carousel.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/home/carousel.jsp new file mode 100644 index 0000000..4048ebe --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/home/carousel.jsp @@ -0,0 +1,43 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<div id="carousel-of-product" class="carousel-of-product carousel slide1" data-ride="carousel"> + <!-- Indicators --> + <ol class="carousel-indicators"> + <li data-target="#carousel-of-product" data-slide-to="0" class="active"></li> + <li data-target="#carousel-of-product" data-slide-to="1"></li> + <li data-target="#carousel-of-product" data-slide-to="2"></li> + <li data-target="#carousel-of-product" data-slide-to="3"></li> + </ol> + + <!-- Wrapper for slides --> + <div class="carousel-inner" role="listbox"> + <div class="item active"> + <img class="carousel carouselImage" src="img/lunbo/1.jpg" > + </div> + <div class="item"> + <img class="carouselImage" src="img/lunbo/2.jpg" > + </div> + <div class="item"> + <img class="carouselImage" src="img/lunbo/3.jpg" > + </div> + + <div class="item"> + <img class="carouselImage" src="img/lunbo/4.jpg" > + </div> + + </div> + + <!-- Controls --> +<!-- <a class="left carousel-control" href="#carousel-of-product" role="button" data-slide="prev"> --> +<!-- <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span> --> + +<!-- </a> --> +<!-- <a class="right carousel-control" href="#carousel-of-product" role="button" data-slide="next"> --> +<!-- <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span> --> + +<!-- </a> --> + +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/home/categoryAndcarousel.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/home/categoryAndcarousel.jsp new file mode 100644 index 0000000..5f34a01 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/home/categoryAndcarousel.jsp @@ -0,0 +1,111 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<script> +function showProductsAsideCategorys(cid){ + $("div.eachCategory[cid="+cid+"]").css("background-color","white"); + $("div.eachCategory[cid="+cid+"] a").css("color","#87CEFA"); + $("div.productsAsideCategorys[cid="+cid+"]").show(); +} + + +function hideProductsAsideCategorys(cid){ + $("div.eachCategory[cid="+cid+"]").css("background-color","#e2e2e3"); + $("div.eachCategory[cid="+cid+"] a").css("color","#000"); + $("div.productsAsideCategorys[cid="+cid+"]").hide(); +} +$(function(){ + $("div.eachCategory").mouseenter(function(){ + var cid = $(this).attr("cid"); + showProductsAsideCategorys(cid); + }); + $("div.eachCategory").mouseleave(function(){ + var cid = $(this).attr("cid"); + hideProductsAsideCategorys(cid); + }); + $("div.productsAsideCategorys").mouseenter(function(){ + var cid = $(this).attr("cid"); + showProductsAsideCategorys(cid); + }); + $("div.productsAsideCategorys").mouseleave(function(){ + var cid = $(this).attr("cid"); + hideProductsAsideCategorys(cid); + }); + + $("div.rightMenu span").mouseenter(function(){ + var left = $(this).position().left; + var top = $(this).position().top; + var width = $(this).css("width"); + var destLeft = parseInt(left) + parseInt(width)/2; + $("img#catear").css("left",destLeft); + $("img#catear").css("top",top-20); + $("img#catear").fadeIn(500); + + }); + $("div.rightMenu span").mouseleave(function(){ + $("img#catear").hide(); + }); + + var left = $("div#carousel-of-product").offset().left; + $("div.categoryMenu").css("left",left-20); + $("div.categoryWithCarousel div.head").css("margin-left",left); + $("div.productsAsideCategorys").css("left",left-20); + + +}); +</script> + +<img src="img/site/catear.png" id="catear" class="catear"/> + +<div class="categoryWithCarousel"> + + +<div class="headbar show1"> + <div class="head "> + + <span style="margin-left:10px" class="glyphicon glyphicon-th-list"></span> + <span style="margin-left:10px" >商品分类</span> + + </div> + + <div class="rightMenu"> + <span><a href=""><img src="img/site/chaoshi.png"/></a></span> + <span><a href=""><img src="img/site/guoji.png"/></a></span> + + <c:forEach items="${cs}" var="c" varStatus="st"> + <c:if test="${st.count<=4}"> + <span> + <a href="forecategory?cid=${c.id}"> + ${c.name} + </a></span> + </c:if> + </c:forEach> + </div> + +</div> + + +<div style="position: relative"> + <%@include file="categoryMenu.jsp" %> +</div> + +<div style="position: relative;left: 0;top: 0;"> + <%@include file="productsAsideCategorys.jsp" %> +</div> + + + +<%@include file="carousel.jsp" %> + +<div class="carouselBackgroundDiv"> +</div> + +</div> + + + + + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/home/categoryMenu.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/home/categoryMenu.jsp new file mode 100644 index 0000000..63a2e47 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/home/categoryMenu.jsp @@ -0,0 +1,15 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<div class="categoryMenu"> + <c:forEach items="${cs}" var="c"> + <div cid="${c.id}" class="eachCategory"> + <span class="glyphicon glyphicon-link"></span> + <a href="forecategory?cid=${c.id}"> + ${c.name} + </a> + </div> + </c:forEach> + </div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/home/homePage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/home/homePage.jsp new file mode 100644 index 0000000..46cb3df --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/home/homePage.jsp @@ -0,0 +1,16 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<title>模仿天猫官网</title> + +<div class="homepageDiv"> + <%@include file="categoryAndcarousel.jsp"%> + <%@include file="homepageCategoryProducts.jsp"%> +</div> + + + + + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/home/homepageCategoryProducts.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/home/homepageCategoryProducts.jsp new file mode 100644 index 0000000..a8d2951 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/home/homepageCategoryProducts.jsp @@ -0,0 +1,48 @@ + + +<!DOCTYPE html> +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + +<c:if test="${empty param.categorycount}"> + <c:set var="categorycount" scope="page" value="100"/> +</c:if> + +<c:if test="${!empty param.categorycount}"> + <c:set var="categorycount" scope="page" value="${param.categorycount}"/> +</c:if> + +<div class="homepageCategoryProducts"> + <c:forEach items="${cs}" var="c" varStatus="stc"> + <c:if test="${stc.count<=categorycount}"> + <div class="eachHomepageCategoryProducts"> + <div class="left-mark"></div> + <span class="categoryTitle">${c.name}</span> + <br> + <c:forEach items="${c.products}" var="p" varStatus="st"> + <c:if test="${st.count<=5}"> + <div class="productItem" > + <a href="foreproduct?pid=${p.id}"><img width="100px" src="img/productSingle_middle/${p.firstProductImage.id}.jpg"></a> + <a class="productItemDescLink" href="foreproduct?pid=${p.id}"> + <span class="productItemDesc">[热销] + ${fn:substring(p.name, 0, 20)} + </span> + </a> + <span class="productPrice"> + <fmt:formatNumber type="number" value="${p.promotePrice}" minFractionDigits="2"/> + </span> + </div> + </c:if> + </c:forEach> + <div style="clear:both"></div> + </div> + </c:if> + </c:forEach> + + + <img id="endpng" class="endpng" src="img/site/end.png"> + +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/home/productsAsideCategorys.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/home/productsAsideCategorys.jsp new file mode 100644 index 0000000..14c7533 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/home/productsAsideCategorys.jsp @@ -0,0 +1,40 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + +<script> +$(function(){ + $("div.productsAsideCategorys div.row a").each(function(){ + var v = Math.round(Math.random() *6); + if(v == 1) + $(this).css("color","#87CEFA"); + }); +}); + +</script> +<c:forEach items="${cs}" var="c"> + <div cid="${c.id}" class="productsAsideCategorys"> + + <c:forEach items="${c.productsByRow}" var="ps"> + <div class="row show1"> + <c:forEach items="${ps}" var="p"> + <c:if test="${!empty p.subTitle}"> + <a href="foreproduct?pid=${p.id}"> + <c:forEach items="${fn:split(p.subTitle, ' ')}" var="title" varStatus="st"> + <c:if test="${st.index==0}"> + ${title} + </c:if> + </c:forEach> + </a> + </c:if> + </c:forEach> + <div class="seperator"></div> + </div> + </c:forEach> + </div> +</c:forEach> + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/loginPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/loginPage.jsp new file mode 100644 index 0000000..4e8df90 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/loginPage.jsp @@ -0,0 +1,82 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<script> + $(function(){ + + <c:if test="${!empty msg}"> + $("span.errorMessage").html("${msg}"); + $("div.loginErrorMessageDiv").show(); + </c:if> + + $("form.loginForm").submit(function(){ + if(0==$("#name").val().length||0==$("#password").val().length){ + $("span.errorMessage").html("请输入账号密码"); + $("div.loginErrorMessageDiv").show(); + return false; + } + return true; + }); + + $("form.loginForm input").keyup(function(){ + $("div.loginErrorMessageDiv").hide(); + }); + + + + var left = window.innerWidth/2+162; + $("div.loginSmallDiv").css("left",left); + }) +</script> + + +<div id="loginDiv" style="position: relative"> + + <div class="simpleLogo"> + <a href="${contextPath}"><img src="img/site/simpleLogo.png"></a> + </div> + + + <img id="loginBackgroundImg" class="loginBackgroundImg" src="img/site/loginBackground.png"> + + <form class="loginForm" action="forelogin" method="post"> + <div id="loginSmallDiv" class="loginSmallDiv"> + <div class="loginErrorMessageDiv"> + <div class="alert alert-danger" > + <button type="button" class="close" data-dismiss="alert" aria-label="Close"></button> + <span class="errorMessage"></span> + </div> + </div> + + <div class="login_acount_text">账户登录</div> + <div class="loginInput " > + <span class="loginInputIcon "> + <span class=" glyphicon glyphicon-user"></span> + </span> + <input id="name" name="name" placeholder="手机/会员名/邮箱" type="text"> + </div> + + <div class="loginInput " > + <span class="loginInputIcon "> + <span class=" glyphicon glyphicon-lock"></span> + </span> + <input id="password" name="password" type="password" placeholder="密码" type="text"> + </div> + <span class="text-danger">不要输入真实的天猫账号密码</span><br><br> + + + <div> + <a class="notImplementLink" href="#nowhere">忘记登录密码</a> + <a href="registerPage" class="pull-right">免费注册</a> + </div> + <div style="margin-top:20px"> + <button class="btn btn-block redButton" type="submit">登录</button> + </div> + </div> + </form> + + +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/modal.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/modal.jsp new file mode 100644 index 0000000..b7205a8 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/modal.jsp @@ -0,0 +1,58 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<div class="modal " id="loginModal" tabindex="-1" role="dialog" > + <div class="modal-dialog loginDivInProductPageModalDiv"> + <div class="modal-content"> + <div class="loginDivInProductPage"> + <div class="loginErrorMessageDiv"> + <div class="alert alert-danger" > + <button type="button" class="close" data-dismiss="alert" aria-label="Close"></button> + <span class="errorMessage"></span> + </div> + </div> + + <div class="login_acount_text">账户登录</div> + <div class="loginInput " > + <span class="loginInputIcon "> + <span class=" glyphicon glyphicon-user"></span> + </span> + <input id="name" name="name" placeholder="手机/会员名/邮箱" type="text"> + </div> + + <div class="loginInput " > + <span class="loginInputIcon "> + <span class=" glyphicon glyphicon-lock"></span> + </span> + <input id="password" name="password" type="password" placeholder="密码" type="text"> + </div> + <span class="text-danger">不要输入真实的天猫账号密码</span><br><br> + <div> + <a href="#nowhere">忘记登录密码</a> + <a href="registerPage" class="pull-right">免费注册</a> + </div> + <div style="margin-top:20px"> + <button class="btn btn-block redButton loginSubmitButton" type="submit">登录</button> + </div> + </div> + </div> + </div> +</div> + +<div class="modal" id="deleteConfirmModal" tabindex="-1" role="dialog" > + <div class="modal-dialog deleteConfirmModalDiv"> + <div class="modal-content"> + <div class="modal-header"> + <button data-dismiss="modal" class="close" type="button"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button> + <h4 class="modal-title">确认删除?</h4> + </div> + <div class="modal-footer"> + <button data-dismiss="modal" class="btn btn-default" type="button">关闭</button> + <button class="btn btn-primary deleteConfirmButton" id="submit" type="button">确认</button> + </div> + </div> + </div> +</div> +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/product/imgAndInfo.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/product/imgAndInfo.jsp new file mode 100644 index 0000000..259c550 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/product/imgAndInfo.jsp @@ -0,0 +1,242 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> + +<script> + +$(function(){ + var stock = ${p.stock}; + $(".productNumberSetting").keyup(function(){ + var num= $(".productNumberSetting").val(); + num = parseInt(num); + if(isNaN(num)) + num= 1; + if(num<=0) + num = 1; + if(num>stock) + num = stock; + $(".productNumberSetting").val(num); + }); + + $(".increaseNumber").click(function(){ + var num= $(".productNumberSetting").val(); + num++; + if(num>stock) + num = stock; + $(".productNumberSetting").val(num); + }); + $(".decreaseNumber").click(function(){ + var num= $(".productNumberSetting").val(); + --num; + if(num<=0) + num=1; + $(".productNumberSetting").val(num); + }); + + $(".addCartButton").removeAttr("disabled"); + $(".addCartLink").click(function(){ + var page = "forecheckLogin"; + $.get( + page, + function(result){ + if("success"==result){ + var pid = ${p.id}; + var num= $(".productNumberSetting").val(); + var addCartpage = "foreaddCart"; + $.get( + addCartpage, + {"pid":pid,"num":num}, + function(result){ + if("success"==result){ + $(".addCartButton").html("已加入购物车"); + $(".addCartButton").attr("disabled","disabled"); + $(".addCartButton").css("background-color","lightgray") + $(".addCartButton").css("border-color","lightgray") + $(".addCartButton").css("color","black") + + } + else{ + + } + } + ); + } + else{ + $("#loginModal").modal('show'); + } + } + ); + return false; + }); + $(".buyLink").click(function(){ + var page = "forecheckLogin"; + $.get( + page, + function(result){ + if("success"==result){ + var num = $(".productNumberSetting").val(); + location.href= $(".buyLink").attr("href")+"&num="+num; + } + else{ + $("#loginModal").modal('show'); + } + } + ); + return false; + }); + + $("button.loginSubmitButton").click(function(){ + var name = $("#name").val(); + var password = $("#password").val(); + + if(0==name.length||0==password.length){ + $("span.errorMessage").html("请输入账号密码"); + $("div.loginErrorMessageDiv").show(); + return false; + } + + var page = "foreloginAjax"; + $.get( + page, + {"name":name,"password":password}, + function(result){ + if("success"==result){ + location.reload(); + } + else{ + $("span.errorMessage").html("账号密码错误"); + $("div.loginErrorMessageDiv").show(); + } + } + ); + + return true; + }); + + $("img.smallImage").mouseenter(function(){ + var bigImageURL = $(this).attr("bigImageURL"); + $("img.bigImg").attr("src",bigImageURL); + }); + + $("img.bigImg").load( + function(){ + $("img.smallImage").each(function(){ + var bigImageURL = $(this).attr("bigImageURL"); + img = new Image(); + img.src = bigImageURL; + + img.onload = function(){ + $("div.img4load").append($(img)); + }; + }); + } + ); +}); + +</script> + +<div class="imgAndInfo"> + + <div class="imgInimgAndInfo"> + <img src="img/productSingle/${p.firstProductImage.id}.jpg" class="bigImg"> + <div class="smallImageDiv"> + <c:forEach items="${p.productSingleImages}" var="pi"> + <img src="img/productSingle_small/${pi.id}.jpg" bigImageURL="img/productSingle/${pi.id}.jpg" class="smallImage"> + </c:forEach> + </div> + <div class="img4load hidden" ></div> + </div> + + + <div class="infoInimgAndInfo"> + + <div class="productTitle"> + ${p.name} + </div> + <div class="productSubTitle"> + ${p.subTitle} + </div> + + + + <div class="productPrice"> + <div class="juhuasuan"> + <span class="juhuasuanBig" >聚划算</span> + <span>此商品即将参加聚划算,<span class="juhuasuanTime">1天19小时</span>后开始,</span> + </div> + + + + <div class="productPriceDiv"> + <div class="gouwujuanDiv"><img height="16px" src="img/site/gouwujuan.png"> + <span> 全天猫实物商品通用</span> + + </div> + <div class="originalDiv"> + <span class="originalPriceDesc">价格</span> + <span class="originalPriceYuan">¥</span> + <span class="originalPrice"> + <fmt:formatNumber type="number" value="${p.originalPrice}" minFractionDigits="2"/> + </span> + </div> + + <div class="promotionDiv"> + <span class="promotionPriceDesc">促销价 </span> + <span class="promotionPriceYuan">¥</span> + <span class="promotionPrice"> + <fmt:formatNumber type="number" value="${p.promotePrice}" minFractionDigits="2"/> + </span> + </div> + </div> + </div> + + <div class="productSaleAndReviewNumber"> + <div>销量 <span class="redColor boldWord"> ${p.saleCount }</span></div> + <div>累计评价 <span class="redColor boldWord"> ${p.reviewCount}</span></div> + </div> + <div class="productNumber"> + <span>数量</span> + <span> + <span class="productNumberSettingSpan"> + <input class="productNumberSetting" type="text" value="1"> + </span> + <span class="arrow"> + <a href="#nowhere" class="increaseNumber"> + <span class="updown"> + <img src="img/site/increase.png"> + </span> + </a> + + <span class="updownMiddle"> </span> + <a href="#nowhere" class="decreaseNumber"> + <span class="updown"> + <img src="img/site/decrease.png"> + </span> + </a> + + </span> + + 件</span> + <span>库存${p.stock}件</span> + </div> + <div class="serviceCommitment"> + <span class="serviceCommitmentDesc">服务承诺</span> + <span class="serviceCommitmentLink"> + <a href="#nowhere">正品保证</a> + <a href="#nowhere">极速退款</a> + <a href="#nowhere">赠运费险</a> + <a href="#nowhere">七天无理由退换</a> + </span> + </div> + + <div class="buyDiv"> + <a class="buyLink" href="forebuyone?pid=${p.id}"><button class="buyButton">立即购买</button></a> + <a href="#nowhere" class="addCartLink"><button class="addCartButton"><span class="glyphicon glyphicon-shopping-cart"></span>加入购物车</button></a> + </div> + </div> + + <div style="clear:both"></div> + +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/product/productDetail.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/product/productDetail.jsp new file mode 100644 index 0000000..74e3a2f --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/product/productDetail.jsp @@ -0,0 +1,33 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + +<div class="productDetailDiv" > + <div class="productDetailTopPart"> + <a href="#nowhere" class="productDetailTopPartSelectedLink selected">商品详情</a> + <a href="#nowhere" class="productDetailTopReviewLink">累计评价 <span class="productDetailTopReviewLinkNumber">${p.reviewCount}</span> </a> + </div> + + + <div class="productParamterPart"> + <div class="productParamter">产品参数:</div> + + <div class="productParamterList"> + <c:forEach items="${pvs}" var="pv"> + <span>${pv.property.name}: ${fn:substring(pv.value, 0, 10)} </span> + </c:forEach> + </div> + <div style="clear:both"></div> + </div> + + <div class="productDetailImagesPart"> + <c:forEach items="${p.productDetailImages}" var="pi"> + <img src="img/productDetail/${pi.id}.jpg"> + </c:forEach> + </div> +</div> + diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/product/productPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/product/productPage.jsp new file mode 100644 index 0000000..f6b14e4 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/product/productPage.jsp @@ -0,0 +1,18 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<title>模仿天猫官网 ${p.name}</title> +<div class="categoryPictureInProductPageDiv"> + <img class="categoryPictureInProductPage" src="img/category/${p.category.id}.jpg"> +</div> + +<div class="productPageDiv"> + + <%@include file="imgAndInfo.jsp" %> + + <%@include file="productReview.jsp" %> + + <%@include file="productDetail.jsp" %> +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/product/productReview.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/product/productReview.jsp new file mode 100644 index 0000000..6c72056 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/product/productReview.jsp @@ -0,0 +1,35 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<div class="productReviewDiv" > + <div class="productReviewTopPart"> + <a href="#nowhere" class="productReviewTopPartSelectedLink">商品详情</a> + <a href="#nowhere" class="selected">累计评价 <span class="productReviewTopReviewLinkNumber">${p.reviewCount}</span> </a> + </div> + + + <div class="productReviewContentPart"> + <c:forEach items="${reviews}" var="r"> + <div class="productReviewItem"> + + <div class="productReviewItemDesc"> + <div class="productReviewItemContent"> + ${r.content } + </div> + <div class="productReviewItemDate"><fmt:formatDate value="${r.createDate}" pattern="yyyy-MM-dd"/></div> + </div> + <div class="productReviewItemUserInfo"> + + ${r.user.anonymousName}<span class="userInfoGrayPart">(匿名)</span> + </div> + + <div style="clear:both"></div> + + </div> + </c:forEach> + </div> + +</div> diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/productsBySearch.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/productsBySearch.jsp new file mode 100644 index 0000000..e468ad4 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/productsBySearch.jsp @@ -0,0 +1,36 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> +<%@ taglib prefix='fmt' uri="http://java.sun.com/jsp/jstl/fmt" %> +<%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %> + +<div class="searchProducts"> + + <c:forEach items="${ps}" var="p"> + <div class="productUnit" price="${p.promotePrice}"> + <a href="foreproduct?pid=${p.id}"> + <img class="productImage" src="img/productSingle/${p.firstProductImage.id}.jpg"> + </a> + <span class="productPrice">¥<fmt:formatNumber type="number" value="${p.promotePrice}" minFractionDigits="2"/></span> + <a class="productLink" href="foreproduct?pid=${p.id}"> + ${fn:substring(p.name, 0, 50)} + </a> + + <a class="tmallLink" href="foreproduct?pid=${p.id}">天猫专卖</a> + + <div class="show1 productInfo"> + <span class="monthDeal ">月成交 <span class="productDealNumber">${p.saleCount}笔</span></span> + <span class="productReview">评价<span class="productReviewNumber">${p.reviewCount}</span></span> + <span class="wangwang"><img src="img/site/wangwang.png"></span> + </div> + + </div> + </c:forEach> + <c:if test="${empty ps}"> + <div class="noMatch">没有满足条件的产品<div> + </c:if> + + <div style="clear:both"></div> + </div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/registerPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/registerPage.jsp new file mode 100644 index 0000000..082f68e --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/registerPage.jsp @@ -0,0 +1,85 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<script> + $(function(){ + + <c:if test="${!empty msg}"> + $("span.errorMessage").html("${msg}"); + $("div.registerErrorMessageDiv").css("visibility","visible"); + </c:if> + + $(".registerForm").submit(function(){ + if(0==$("#name").val().length){ + $("span.errorMessage").html("请输入用户名"); + $("div.registerErrorMessageDiv").css("visibility","visible"); + return false; + } + if(0==$("#password").val().length){ + $("span.errorMessage").html("请输入密码"); + $("div.registerErrorMessageDiv").css("visibility","visible"); + return false; + } + if(0==$("#repeatpassword").val().length){ + $("span.errorMessage").html("请输入重复密码"); + $("div.registerErrorMessageDiv").css("visibility","visible"); + return false; + } + if($("#password").val() !=$("#repeatpassword").val()){ + $("span.errorMessage").html("重复密码不一致"); + $("div.registerErrorMessageDiv").css("visibility","visible"); + return false; + } + + return true; + }); + }) +</script> + + + +<form method="post" action="foreregister" class="registerForm"> + + + <div class="registerDiv"> + <div class="registerErrorMessageDiv"> + <div class="alert alert-danger" role="alert"> + <button type="button" class="close" data-dismiss="alert" aria-label="Close"></button> + <span class="errorMessage"></span> + </div> + </div> + + + <table class="registerTable" align="center"> + <tr> + <td class="registerTip registerTableLeftTD">设置会员名</td> + <td></td> + </tr> + <tr> + <td class="registerTableLeftTD">登陆名</td> + <td class="registerTableRightTD"><input id="name" name="name" placeholder="会员名一旦设置成功,无法修改" > </td> + </tr> + <tr> + <td class="registerTip registerTableLeftTD">设置登陆密码</td> + <td class="registerTableRightTD">登陆时验证,保护账号信息</td> + </tr> + <tr> + <td class="registerTableLeftTD">登陆密码</td> + <td class="registerTableRightTD"><input id="password" name="password" type="password" placeholder="设置你的登陆密码" > </td> + </tr> + <tr> + <td class="registerTableLeftTD">密码确认</td> + <td class="registerTableRightTD"><input id="repeatpassword" type="password" placeholder="请再次输入你的密码" > </td> + </tr> + + <tr> + <td colspan="2" class="registerButtonTD"> + <a href="registerSuccess.jsp"><button>提 交</button></a> + </td> + </tr> + </table> + </div> +</form> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/registerSuccessPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/registerSuccessPage.jsp new file mode 100644 index 0000000..b9a0cde --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/registerSuccessPage.jsp @@ -0,0 +1,11 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + + +<div class="registerSuccessDiv"> + + <img src="img/site/registerSuccess.png"> + 注册成功 +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/search.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/search.jsp new file mode 100644 index 0000000..f2ab8d6 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/search.jsp @@ -0,0 +1,29 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<a href="${contextPath}"> + <img id="logo" src="img/site/logo.gif" class="logo"> +</a> + +<form action="foresearch" method="post" > + <div class="searchDiv"> + <input name="keyword" type="text" value="${param.keyword}" placeholder="时尚男鞋 太阳镜 "> + <button type="submit" class="searchButton">搜索</button> + <div class="searchBelow"> + <c:forEach items="${cs}" var="c" varStatus="st"> + <c:if test="${st.count>=5 and st.count<=8}"> + <span> + <a href="forecategory?cid=${c.id}"> + ${c.name} + </a> + <c:if test="${st.count!=8}"> + <span>|</span> + </c:if> + </span> + </c:if> + </c:forEach> + </div> + </div> +</form> diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/searchResultPage.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/searchResultPage.jsp new file mode 100644 index 0000000..e7ca303 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/searchResultPage.jsp @@ -0,0 +1,12 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<div id="searchResult"> + + <div class="searchResultDiv"> + <%@include file="productsBySearch.jsp"%> + </div> + +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/simpleSearch.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/simpleSearch.jsp new file mode 100644 index 0000000..d401c49 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/simpleSearch.jsp @@ -0,0 +1,32 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<div > + <a href="${contextPath}"> + <img id="simpleLogo" class="simpleLogo" src="img/site/simpleLogo.png"> + </a> + + <form action="foresearch" method="post" > + <div class="simpleSearchDiv pull-right"> + <input type="text" placeholder="平衡车 原汁机" value="${param.keyword}" name="keyword"> + <button class="searchButton" type="submit">搜天猫</button> + <div class="searchBelow"> + <c:forEach items="${cs}" var="c" varStatus="st"> + <c:if test="${st.count>=8 and st.count<=11}"> + <span> + <a href="forecategory?cid=${c.id}"> + ${c.name} + </a> + <c:if test="${st.count!=11}"> + <span>|</span> + </c:if> + </span> + </c:if> + </c:forEach> + </div> + </div> + </form> + <div style="clear:both"></div> +</div> \ No newline at end of file diff --git a/src/main/webapp/WEB-INF/jsp/include/fore/top.jsp b/src/main/webapp/WEB-INF/jsp/include/fore/top.jsp new file mode 100644 index 0000000..c5f2d83 --- /dev/null +++ b/src/main/webapp/WEB-INF/jsp/include/fore/top.jsp @@ -0,0 +1,36 @@ + + +<%@ page language="java" contentType="text/html; charset=UTF-8" + pageEncoding="UTF-8" isELIgnored="false"%> + +<nav class="top "> + <a href="${contextPath}"> + <span style="color:#C40000;margin:0px" class=" glyphicon glyphicon-home redColor"></span> + 首页 + </a> + + <span>欢迎来到天猫</span> + + <c:if test="${!empty user}"> + <a href="loginPage">${user.name}</a> + <a href="forelogout">退出</a> + </c:if> + + <c:if test="${empty user}"> + <a href="loginPage">亲,请登录</a> + <a href="registerPage">注册</a> + </c:if> + + + <span class="pull-right"> + <a href="forebought">我的订单</a> + <a href="forecart"> + <span style="color:#C40000;margin:0px" class=" glyphicon glyphicon-shopping-cart redColor"></span> + 购物车共有<strong>${cartTotalItemNumber}</strong>件</a> + </span> + + +</nav> + + + diff --git a/src/main/webapp/WEB-INF/web.xml b/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..52982eb --- /dev/null +++ b/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> + + + \ No newline at end of file diff --git a/src/main/webapp/admin/index.jsp b/src/main/webapp/admin/index.jsp new file mode 100644 index 0000000..2a2faa1 --- /dev/null +++ b/src/main/webapp/admin/index.jsp @@ -0,0 +1,5 @@ + + +<% + response.sendRedirect("../admin_category_list"); +%> \ No newline at end of file diff --git a/src/main/webapp/css/back/style.css b/src/main/webapp/css/back/style.css new file mode 100644 index 0000000..13e256a --- /dev/null +++ b/src/main/webapp/css/back/style.css @@ -0,0 +1,99 @@ +body{ + padding-top:70px; +} + +div.workingArea{ + margin:0px 40px; +} + +div.addDiv{ + width:400px; + margin:0px auto; +} +div.editDiv{ + width:400px; + margin:0px auto; + +} + +table.addTable{ + width:100%; +} +table.editTable{ + width:100%; +} +table.editTable td{ + padding:5px; +} + +table.addTable td{ + padding:5px; +} + +div.pageDiv{ + text-align:center; +} +div.listDataTableDiv{ + min-height:220px; +} +div.footer{ + margin:20px; +} +div.editPVDiv{ + width:800px; + margin:0 auto; + +} +span.pvName{ + display:inline-block; + width:100px; + color:#555555; + font-size:16px; +/* font-weight:bold; */ + margin-left:20px; + +} +div.eachPV{ + float:left; + margin:5px; +} +span.pvValue{ + display:inline-block; + width:200px; + border:1px solid lightgray; + padding:0px; +} +span.pvValue input{ + border-width:0px; +} +div.addPictureDiv{ + width:400px; +} +table.addPictureTable{ + +} +td.addPictureTableTD{ + padding:10px 100px; + text-align:center; + vertical-align: top; +} +div.orderPageOrderItem{ + width:100%; + padding:20px; +} +table.orderPageOrderItemTable td{ + padding:5px; +} +tr.orderPageOrderItemTR{ + display:none; +} +ul.pagination a.current{ + font-weight:bold; + color:black; +} +td{ + font-size:14px; +} +th{ + font-size:14px; +} \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.css b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.css new file mode 100644 index 0000000..ebe57fb --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.css @@ -0,0 +1,587 @@ +/*! + * Bootstrap v3.3.6 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +.btn-default, +.btn-primary, +.btn-success, +.btn-info, +.btn-warning, +.btn-danger { + text-shadow: 0 -1px 0 rgba(0, 0, 0, .2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .075); +} +.btn-default:active, +.btn-primary:active, +.btn-success:active, +.btn-info:active, +.btn-warning:active, +.btn-danger:active, +.btn-default.active, +.btn-primary.active, +.btn-success.active, +.btn-info.active, +.btn-warning.active, +.btn-danger.active { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn-default.disabled, +.btn-primary.disabled, +.btn-success.disabled, +.btn-info.disabled, +.btn-warning.disabled, +.btn-danger.disabled, +.btn-default[disabled], +.btn-primary[disabled], +.btn-success[disabled], +.btn-info[disabled], +.btn-warning[disabled], +.btn-danger[disabled], +fieldset[disabled] .btn-default, +fieldset[disabled] .btn-primary, +fieldset[disabled] .btn-success, +fieldset[disabled] .btn-info, +fieldset[disabled] .btn-warning, +fieldset[disabled] .btn-danger { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-default .badge, +.btn-primary .badge, +.btn-success .badge, +.btn-info .badge, +.btn-warning .badge, +.btn-danger .badge { + text-shadow: none; +} +.btn:active, +.btn.active { + background-image: none; +} +.btn-default { + text-shadow: 0 1px 0 #fff; + background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#e0e0e0)); + background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #dbdbdb; + border-color: #ccc; +} +.btn-default:hover, +.btn-default:focus { + background-color: #e0e0e0; + background-position: 0 -15px; +} +.btn-default:active, +.btn-default.active { + background-color: #e0e0e0; + border-color: #dbdbdb; +} +.btn-default.disabled, +.btn-default[disabled], +fieldset[disabled] .btn-default, +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus, +.btn-default.disabled:active, +.btn-default[disabled]:active, +fieldset[disabled] .btn-default:active, +.btn-default.disabled.active, +.btn-default[disabled].active, +fieldset[disabled] .btn-default.active { + background-color: #e0e0e0; + background-image: none; +} +.btn-primary { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#265a88)); + background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #245580; +} +.btn-primary:hover, +.btn-primary:focus { + background-color: #265a88; + background-position: 0 -15px; +} +.btn-primary:active, +.btn-primary.active { + background-color: #265a88; + border-color: #245580; +} +.btn-primary.disabled, +.btn-primary[disabled], +fieldset[disabled] .btn-primary, +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus, +.btn-primary.disabled:active, +.btn-primary[disabled]:active, +fieldset[disabled] .btn-primary:active, +.btn-primary.disabled.active, +.btn-primary[disabled].active, +fieldset[disabled] .btn-primary.active { + background-color: #265a88; + background-image: none; +} +.btn-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#419641)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #3e8f3e; +} +.btn-success:hover, +.btn-success:focus { + background-color: #419641; + background-position: 0 -15px; +} +.btn-success:active, +.btn-success.active { + background-color: #419641; + border-color: #3e8f3e; +} +.btn-success.disabled, +.btn-success[disabled], +fieldset[disabled] .btn-success, +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus, +.btn-success.disabled:active, +.btn-success[disabled]:active, +fieldset[disabled] .btn-success:active, +.btn-success.disabled.active, +.btn-success[disabled].active, +fieldset[disabled] .btn-success.active { + background-color: #419641; + background-image: none; +} +.btn-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#2aabd2)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #28a4c9; +} +.btn-info:hover, +.btn-info:focus { + background-color: #2aabd2; + background-position: 0 -15px; +} +.btn-info:active, +.btn-info.active { + background-color: #2aabd2; + border-color: #28a4c9; +} +.btn-info.disabled, +.btn-info[disabled], +fieldset[disabled] .btn-info, +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus, +.btn-info.disabled:active, +.btn-info[disabled]:active, +fieldset[disabled] .btn-info:active, +.btn-info.disabled.active, +.btn-info[disabled].active, +fieldset[disabled] .btn-info.active { + background-color: #2aabd2; + background-image: none; +} +.btn-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#eb9316)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #e38d13; +} +.btn-warning:hover, +.btn-warning:focus { + background-color: #eb9316; + background-position: 0 -15px; +} +.btn-warning:active, +.btn-warning.active { + background-color: #eb9316; + border-color: #e38d13; +} +.btn-warning.disabled, +.btn-warning[disabled], +fieldset[disabled] .btn-warning, +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus, +.btn-warning.disabled:active, +.btn-warning[disabled]:active, +fieldset[disabled] .btn-warning:active, +.btn-warning.disabled.active, +.btn-warning[disabled].active, +fieldset[disabled] .btn-warning.active { + background-color: #eb9316; + background-image: none; +} +.btn-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c12e2a)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-color: #b92c28; +} +.btn-danger:hover, +.btn-danger:focus { + background-color: #c12e2a; + background-position: 0 -15px; +} +.btn-danger:active, +.btn-danger.active { + background-color: #c12e2a; + border-color: #b92c28; +} +.btn-danger.disabled, +.btn-danger[disabled], +fieldset[disabled] .btn-danger, +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus, +.btn-danger.disabled:active, +.btn-danger[disabled]:active, +fieldset[disabled] .btn-danger:active, +.btn-danger.disabled.active, +.btn-danger[disabled].active, +fieldset[disabled] .btn-danger.active { + background-color: #c12e2a; + background-image: none; +} +.thumbnail, +.img-thumbnail { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + background-color: #e8e8e8; + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + background-color: #2e6da4; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; +} +.navbar-default { + background-image: -webkit-linear-gradient(top, #fff 0%, #f8f8f8 100%); + background-image: -o-linear-gradient(top, #fff 0%, #f8f8f8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f8f8f8)); + background-image: linear-gradient(to bottom, #fff 0%, #f8f8f8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075); +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dbdbdb), to(#e2e2e2)); + background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .075); +} +.navbar-brand, +.navbar-nav > li > a { + text-shadow: 0 1px 0 rgba(255, 255, 255, .25); +} +.navbar-inverse { + background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#3c3c3c), to(#222)); + background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0); + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); + background-repeat: repeat-x; + border-radius: 4px; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .active > a { + background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#080808), to(#0f0f0f)); + background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0); + background-repeat: repeat-x; + -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); + box-shadow: inset 0 3px 9px rgba(0, 0, 0, .25); +} +.navbar-inverse .navbar-brand, +.navbar-inverse .navbar-nav > li > a { + text-shadow: 0 -1px 0 rgba(0, 0, 0, .25); +} +.navbar-static-top, +.navbar-fixed-top, +.navbar-fixed-bottom { + border-radius: 0; +} +@media (max-width: 767px) { + .navbar .navbar-nav .open .dropdown-menu > .active > a, + .navbar .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; + } +} +.alert { + text-shadow: 0 1px 0 rgba(255, 255, 255, .2); + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .25), 0 1px 2px rgba(0, 0, 0, .05); +} +.alert-success { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0); + background-repeat: repeat-x; + border-color: #b2dba1; +} +.alert-info { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0); + background-repeat: repeat-x; + border-color: #9acfea; +} +.alert-warning { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0); + background-repeat: repeat-x; + border-color: #f5e79e; +} +.alert-danger { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3)); + background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0); + background-repeat: repeat-x; + border-color: #dca7a7; +} +.progress { + background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#ebebeb), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#286090)); + background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-success { + background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5cb85c), to(#449d44)); + background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-info { + background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#5bc0de), to(#31b0d5)); + background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-warning { + background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f0ad4e), to(#ec971f)); + background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-danger { + background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9534f), to(#c9302c)); + background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0); + background-repeat: repeat-x; +} +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.list-group { + border-radius: 4px; + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); + box-shadow: 0 1px 2px rgba(0, 0, 0, .075); +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + text-shadow: 0 -1px 0 #286090; + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2b669a)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0); + background-repeat: repeat-x; + border-color: #2b669a; +} +.list-group-item.active .badge, +.list-group-item.active:hover .badge, +.list-group-item.active:focus .badge { + text-shadow: none; +} +.panel { + -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, .05); + box-shadow: 0 1px 2px rgba(0, 0, 0, .05); +} +.panel-default > .panel-heading { + background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e8e8e8)); + background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0); + background-repeat: repeat-x; +} +.panel-primary > .panel-heading { + background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4)); + background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0); + background-repeat: repeat-x; +} +.panel-success > .panel-heading { + background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#d0e9c6)); + background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0); + background-repeat: repeat-x; +} +.panel-info > .panel-heading { + background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#c4e3f3)); + background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0); + background-repeat: repeat-x; +} +.panel-warning > .panel-heading { + background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#faf2cc)); + background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0); + background-repeat: repeat-x; +} +.panel-danger > .panel-heading { + background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#ebcccc)); + background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0); + background-repeat: repeat-x; +} +.well { + background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%); + background-image: -webkit-gradient(linear, left top, left bottom, from(#e8e8e8), to(#f5f5f5)); + background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0); + background-repeat: repeat-x; + border-color: #dcdcdc; + -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 3px rgba(0, 0, 0, .05), 0 1px 0 rgba(255, 255, 255, .1); +} +/*# sourceMappingURL=bootstrap-theme.css.map */ diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.css.map b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.css.map new file mode 100644 index 0000000..21e1910 --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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","file":"bootstrap-theme.css","sourcesContent":["/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.btn-default:active,\n.btn-primary:active,\n.btn-success:active,\n.btn-info:active,\n.btn-warning:active,\n.btn-danger:active,\n.btn-default.active,\n.btn-primary.active,\n.btn-success.active,\n.btn-info.active,\n.btn-warning.active,\n.btn-danger.active {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-default.disabled,\n.btn-primary.disabled,\n.btn-success.disabled,\n.btn-info.disabled,\n.btn-warning.disabled,\n.btn-danger.disabled,\n.btn-default[disabled],\n.btn-primary[disabled],\n.btn-success[disabled],\n.btn-info[disabled],\n.btn-warning[disabled],\n.btn-danger[disabled],\nfieldset[disabled] .btn-default,\nfieldset[disabled] .btn-primary,\nfieldset[disabled] .btn-success,\nfieldset[disabled] .btn-info,\nfieldset[disabled] .btn-warning,\nfieldset[disabled] .btn-danger {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default .badge,\n.btn-primary .badge,\n.btn-success .badge,\n.btn-info .badge,\n.btn-warning .badge,\n.btn-danger .badge {\n text-shadow: none;\n}\n.btn:active,\n.btn.active {\n background-image: none;\n}\n.btn-default {\n background-image: -webkit-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: -o-linear-gradient(top, #fff 0%, #e0e0e0 100%);\n background-image: linear-gradient(to bottom, #fff 0%, #e0e0e0 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #dbdbdb;\n text-shadow: 0 1px 0 #fff;\n border-color: #ccc;\n}\n.btn-default:hover,\n.btn-default:focus {\n background-color: #e0e0e0;\n background-position: 0 -15px;\n}\n.btn-default:active,\n.btn-default.active {\n background-color: #e0e0e0;\n border-color: #dbdbdb;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #e0e0e0;\n background-image: none;\n}\n.btn-primary {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #265a88 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #265a88 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #245580;\n}\n.btn-primary:hover,\n.btn-primary:focus {\n background-color: #265a88;\n background-position: 0 -15px;\n}\n.btn-primary:active,\n.btn-primary.active {\n background-color: #265a88;\n border-color: #245580;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #265a88;\n background-image: none;\n}\n.btn-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #419641 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #419641 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #3e8f3e;\n}\n.btn-success:hover,\n.btn-success:focus {\n background-color: #419641;\n background-position: 0 -15px;\n}\n.btn-success:active,\n.btn-success.active {\n background-color: #419641;\n border-color: #3e8f3e;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #419641;\n background-image: none;\n}\n.btn-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #2aabd2 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #2aabd2 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #28a4c9;\n}\n.btn-info:hover,\n.btn-info:focus {\n background-color: #2aabd2;\n background-position: 0 -15px;\n}\n.btn-info:active,\n.btn-info.active {\n background-color: #2aabd2;\n border-color: #28a4c9;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #2aabd2;\n background-image: none;\n}\n.btn-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #eb9316 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #eb9316 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #e38d13;\n}\n.btn-warning:hover,\n.btn-warning:focus {\n background-color: #eb9316;\n background-position: 0 -15px;\n}\n.btn-warning:active,\n.btn-warning.active {\n background-color: #eb9316;\n border-color: #e38d13;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #eb9316;\n background-image: none;\n}\n.btn-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c12e2a 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c12e2a 100%);\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n background-repeat: repeat-x;\n border-color: #b92c28;\n}\n.btn-danger:hover,\n.btn-danger:focus {\n background-color: #c12e2a;\n background-position: 0 -15px;\n}\n.btn-danger:active,\n.btn-danger.active {\n background-color: #c12e2a;\n border-color: #b92c28;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #c12e2a;\n background-image: none;\n}\n.thumbnail,\n.img-thumbnail {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n background-color: #e8e8e8;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n background-color: #2e6da4;\n}\n.navbar-default {\n background-image: -webkit-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: -o-linear-gradient(top, #ffffff 0%, #f8f8f8 100%);\n background-image: linear-gradient(to bottom, #ffffff 0%, #f8f8f8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 5px rgba(0, 0, 0, 0.075);\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: -o-linear-gradient(top, #dbdbdb 0%, #e2e2e2 100%);\n background-image: linear-gradient(to bottom, #dbdbdb 0%, #e2e2e2 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.075);\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);\n}\n.navbar-inverse {\n background-image: -webkit-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: -o-linear-gradient(top, #3c3c3c 0%, #222 100%);\n background-image: linear-gradient(to bottom, #3c3c3c 0%, #222 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n border-radius: 4px;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .active > a {\n background-image: -webkit-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: -o-linear-gradient(top, #080808 0%, #0f0f0f 100%);\n background-image: linear-gradient(to bottom, #080808 0%, #0f0f0f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);\n -webkit-box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n box-shadow: inset 0 3px 9px rgba(0, 0, 0, 0.25);\n}\n.navbar-inverse .navbar-brand,\n.navbar-inverse .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n@media (max-width: 767px) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n }\n}\n.alert {\n text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.alert-success {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);\n border-color: #b2dba1;\n}\n.alert-info {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);\n border-color: #9acfea;\n}\n.alert-warning {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);\n border-color: #f5e79e;\n}\n.alert-danger {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);\n border-color: #dca7a7;\n}\n.progress {\n background-image: -webkit-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #ebebeb 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #ebebeb 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);\n}\n.progress-bar {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #286090 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #286090 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);\n}\n.progress-bar-success {\n background-image: -webkit-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: -o-linear-gradient(top, #5cb85c 0%, #449d44 100%);\n background-image: linear-gradient(to bottom, #5cb85c 0%, #449d44 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);\n}\n.progress-bar-info {\n background-image: -webkit-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: -o-linear-gradient(top, #5bc0de 0%, #31b0d5 100%);\n background-image: linear-gradient(to bottom, #5bc0de 0%, #31b0d5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);\n}\n.progress-bar-warning {\n background-image: -webkit-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: -o-linear-gradient(top, #f0ad4e 0%, #ec971f 100%);\n background-image: linear-gradient(to bottom, #f0ad4e 0%, #ec971f 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);\n}\n.progress-bar-danger {\n background-image: -webkit-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: -o-linear-gradient(top, #d9534f 0%, #c9302c 100%);\n background-image: linear-gradient(to bottom, #d9534f 0%, #c9302c 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);\n}\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.list-group {\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 #286090;\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2b669a 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2b669a 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);\n border-color: #2b669a;\n}\n.list-group-item.active .badge,\n.list-group-item.active:hover .badge,\n.list-group-item.active:focus .badge {\n text-shadow: none;\n}\n.panel {\n -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);\n}\n.panel-default > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: -o-linear-gradient(top, #f5f5f5 0%, #e8e8e8 100%);\n background-image: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);\n}\n.panel-primary > .panel-heading {\n background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);\n background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);\n}\n.panel-success > .panel-heading {\n background-image: -webkit-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: -o-linear-gradient(top, #dff0d8 0%, #d0e9c6 100%);\n background-image: linear-gradient(to bottom, #dff0d8 0%, #d0e9c6 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);\n}\n.panel-info > .panel-heading {\n background-image: -webkit-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: -o-linear-gradient(top, #d9edf7 0%, #c4e3f3 100%);\n background-image: linear-gradient(to bottom, #d9edf7 0%, #c4e3f3 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);\n}\n.panel-warning > .panel-heading {\n background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: -o-linear-gradient(top, #fcf8e3 0%, #faf2cc 100%);\n background-image: linear-gradient(to bottom, #fcf8e3 0%, #faf2cc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);\n}\n.panel-danger > .panel-heading {\n background-image: -webkit-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: -o-linear-gradient(top, #f2dede 0%, #ebcccc 100%);\n background-image: linear-gradient(to bottom, #f2dede 0%, #ebcccc 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);\n}\n.well {\n background-image: -webkit-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: -o-linear-gradient(top, #e8e8e8 0%, #f5f5f5 100%);\n background-image: linear-gradient(to bottom, #e8e8e8 0%, #f5f5f5 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);\n border-color: #dcdcdc;\n -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);\n}\n/*# sourceMappingURL=bootstrap-theme.css.map */","/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n\n//\n// Load core variables and mixins\n// --------------------------------------------------\n\n@import \"variables.less\";\n@import \"mixins.less\";\n\n\n//\n// Buttons\n// --------------------------------------------------\n\n// Common styles\n.btn-default,\n.btn-primary,\n.btn-success,\n.btn-info,\n.btn-warning,\n.btn-danger {\n text-shadow: 0 -1px 0 rgba(0,0,0,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n // Reset the shadow\n &:active,\n &.active {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n .box-shadow(none);\n }\n\n .badge {\n text-shadow: none;\n }\n}\n\n// Mixin for generating new styles\n.btn-styles(@btn-color: #555) {\n #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));\n .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620\n background-repeat: repeat-x;\n border-color: darken(@btn-color, 14%);\n\n &:hover,\n &:focus {\n background-color: darken(@btn-color, 12%);\n background-position: 0 -15px;\n }\n\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n border-color: darken(@btn-color, 14%);\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &,\n &:hover,\n &:focus,\n &.focus,\n &:active,\n &.active {\n background-color: darken(@btn-color, 12%);\n background-image: none;\n }\n }\n}\n\n// Common styles\n.btn {\n // Remove the gradient for the pressed/active state\n &:active,\n &.active {\n background-image: none;\n }\n}\n\n// Apply the mixin to the buttons\n.btn-default { .btn-styles(@btn-default-bg); text-shadow: 0 1px 0 #fff; border-color: #ccc; }\n.btn-primary { .btn-styles(@btn-primary-bg); }\n.btn-success { .btn-styles(@btn-success-bg); }\n.btn-info { .btn-styles(@btn-info-bg); }\n.btn-warning { .btn-styles(@btn-warning-bg); }\n.btn-danger { .btn-styles(@btn-danger-bg); }\n\n\n//\n// Images\n// --------------------------------------------------\n\n.thumbnail,\n.img-thumbnail {\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n\n\n//\n// Dropdowns\n// --------------------------------------------------\n\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-hover-bg; @end-color: darken(@dropdown-link-hover-bg, 5%));\n background-color: darken(@dropdown-link-hover-bg, 5%);\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n background-color: darken(@dropdown-link-active-bg, 5%);\n}\n\n\n//\n// Navbar\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n #gradient > .vertical(@start-color: lighten(@navbar-default-bg, 10%); @end-color: @navbar-default-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered\n border-radius: @navbar-border-radius;\n @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);\n .box-shadow(@shadow);\n\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));\n }\n}\n.navbar-brand,\n.navbar-nav > li > a {\n text-shadow: 0 1px 0 rgba(255,255,255,.25);\n}\n\n// Inverted navbar\n.navbar-inverse {\n #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);\n .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257\n border-radius: @navbar-border-radius;\n .navbar-nav > .open > a,\n .navbar-nav > .active > a {\n #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));\n .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));\n }\n\n .navbar-brand,\n .navbar-nav > li > a {\n text-shadow: 0 -1px 0 rgba(0,0,0,.25);\n }\n}\n\n// Undo rounded corners in static and fixed navbars\n.navbar-static-top,\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n border-radius: 0;\n}\n\n// Fix active state of dropdown items in collapsed mode\n@media (max-width: @grid-float-breakpoint-max) {\n .navbar .navbar-nav .open .dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: #fff;\n #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));\n }\n }\n}\n\n\n//\n// Alerts\n// --------------------------------------------------\n\n// Common styles\n.alert {\n text-shadow: 0 1px 0 rgba(255,255,255,.2);\n @shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 1px 2px rgba(0,0,0,.05);\n .box-shadow(@shadow);\n}\n\n// Mixin for generating new styles\n.alert-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 7.5%));\n border-color: darken(@color, 15%);\n}\n\n// Apply the mixin to the alerts\n.alert-success { .alert-styles(@alert-success-bg); }\n.alert-info { .alert-styles(@alert-info-bg); }\n.alert-warning { .alert-styles(@alert-warning-bg); }\n.alert-danger { .alert-styles(@alert-danger-bg); }\n\n\n//\n// Progress bars\n// --------------------------------------------------\n\n// Give the progress background some depth\n.progress {\n #gradient > .vertical(@start-color: darken(@progress-bg, 4%); @end-color: @progress-bg)\n}\n\n// Mixin for generating new styles\n.progress-bar-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 10%));\n}\n\n// Apply the mixin to the progress bars\n.progress-bar { .progress-bar-styles(@progress-bar-bg); }\n.progress-bar-success { .progress-bar-styles(@progress-bar-success-bg); }\n.progress-bar-info { .progress-bar-styles(@progress-bar-info-bg); }\n.progress-bar-warning { .progress-bar-styles(@progress-bar-warning-bg); }\n.progress-bar-danger { .progress-bar-styles(@progress-bar-danger-bg); }\n\n// Reset the striped class because our mixins don't do multiple gradients and\n// the above custom styles override the new `.progress-bar-striped` in v3.2.0.\n.progress-bar-striped {\n #gradient > .striped();\n}\n\n\n//\n// List groups\n// --------------------------------------------------\n\n.list-group {\n border-radius: @border-radius-base;\n .box-shadow(0 1px 2px rgba(0,0,0,.075));\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);\n #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));\n border-color: darken(@list-group-active-border, 7.5%);\n\n .badge {\n text-shadow: none;\n }\n}\n\n\n//\n// Panels\n// --------------------------------------------------\n\n// Common styles\n.panel {\n .box-shadow(0 1px 2px rgba(0,0,0,.05));\n}\n\n// Mixin for generating new styles\n.panel-heading-styles(@color) {\n #gradient > .vertical(@start-color: @color; @end-color: darken(@color, 5%));\n}\n\n// Apply the mixin to the panel headings only\n.panel-default > .panel-heading { .panel-heading-styles(@panel-default-heading-bg); }\n.panel-primary > .panel-heading { .panel-heading-styles(@panel-primary-heading-bg); }\n.panel-success > .panel-heading { .panel-heading-styles(@panel-success-heading-bg); }\n.panel-info > .panel-heading { .panel-heading-styles(@panel-info-heading-bg); }\n.panel-warning > .panel-heading { .panel-heading-styles(@panel-warning-heading-bg); }\n.panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }\n\n\n//\n// Wells\n// --------------------------------------------------\n\n.well {\n #gradient > .vertical(@start-color: darken(@well-bg, 5%); @end-color: @well-bg);\n border-color: darken(@well-bg, 10%);\n @shadow: inset 0 1px 3px rgba(0,0,0,.05), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n"]} \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.min.css b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.min.css new file mode 100644 index 0000000..dc95d8e --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.3.6 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} +/*# sourceMappingURL=bootstrap-theme.min.css.map */ \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.min.css.map b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.min.css.map new file mode 100644 index 0000000..2c6b65a --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap-theme.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"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"} \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap.css b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.css new file mode 100644 index 0000000..42c79d6 --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.css @@ -0,0 +1,6760 @@ +/*! + * Bootstrap v3.3.6 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ +/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */ +html { + font-family: sans-serif; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; +} +body { + margin: 0; +} +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +main, +menu, +nav, +section, +summary { + display: block; +} +audio, +canvas, +progress, +video { + display: inline-block; + vertical-align: baseline; +} +audio:not([controls]) { + display: none; + height: 0; +} +[hidden], +template { + display: none; +} +a { + background-color: transparent; +} +a:active, +a:hover { + outline: 0; +} +abbr[title] { + border-bottom: 1px dotted; +} +b, +strong { + font-weight: bold; +} +dfn { + font-style: italic; +} +h1 { + margin: .67em 0; + font-size: 2em; +} +mark { + color: #000; + background: #ff0; +} +small { + font-size: 80%; +} +sub, +sup { + position: relative; + font-size: 75%; + line-height: 0; + vertical-align: baseline; +} +sup { + top: -.5em; +} +sub { + bottom: -.25em; +} +img { + border: 0; +} +svg:not(:root) { + overflow: hidden; +} +figure { + margin: 1em 40px; +} +hr { + height: 0; + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; +} +pre { + overflow: auto; +} +code, +kbd, +pre, +samp { + font-family: monospace, monospace; + font-size: 1em; +} +button, +input, +optgroup, +select, +textarea { + margin: 0; + font: inherit; + color: inherit; +} +button { + overflow: visible; +} +button, +select { + text-transform: none; +} +button, +html input[type="button"], +input[type="reset"], +input[type="submit"] { + -webkit-appearance: button; + cursor: pointer; +} +button[disabled], +html input[disabled] { + cursor: default; +} +button::-moz-focus-inner, +input::-moz-focus-inner { + padding: 0; + border: 0; +} +input { + line-height: normal; +} +input[type="checkbox"], +input[type="radio"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; + padding: 0; +} +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + height: auto; +} +input[type="search"] { + -webkit-box-sizing: content-box; + -moz-box-sizing: content-box; + box-sizing: content-box; + -webkit-appearance: textfield; +} +input[type="search"]::-webkit-search-cancel-button, +input[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} +fieldset { + padding: .35em .625em .75em; + margin: 0 2px; + border: 1px solid #c0c0c0; +} +legend { + padding: 0; + border: 0; +} +textarea { + overflow: auto; +} +optgroup { + font-weight: bold; +} +table { + border-spacing: 0; + border-collapse: collapse; +} +td, +th { + padding: 0; +} +/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */ +@media print { + *, + *:before, + *:after { + color: #000 !important; + text-shadow: none !important; + background: transparent !important; + -webkit-box-shadow: none !important; + box-shadow: none !important; + } + a, + a:visited { + text-decoration: underline; + } + a[href]:after { + content: " (" attr(href) ")"; + } + abbr[title]:after { + content: " (" attr(title) ")"; + } + a[href^="#"]:after, + a[href^="javascript:"]:after { + content: ""; + } + pre, + blockquote { + border: 1px solid #999; + + page-break-inside: avoid; + } + thead { + display: table-header-group; + } + tr, + img { + page-break-inside: avoid; + } + img { + max-width: 100% !important; + } + p, + h2, + h3 { + orphans: 3; + widows: 3; + } + h2, + h3 { + page-break-after: avoid; + } + .navbar { + display: none; + } + .btn > .caret, + .dropup > .btn > .caret { + border-top-color: #000 !important; + } + .label { + border: 1px solid #000; + } + .table { + border-collapse: collapse !important; + } + .table td, + .table th { + background-color: #fff !important; + } + .table-bordered th, + .table-bordered td { + border: 1px solid #ddd !important; + } +} +@font-face { + font-family: 'Glyphicons Halflings'; + + src: url('../fonts/glyphicons-halflings-regular.eot'); + src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg'); +} +.glyphicon { + position: relative; + top: 1px; + display: inline-block; + font-family: 'Glyphicons Halflings'; + font-style: normal; + font-weight: normal; + line-height: 1; + + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.glyphicon-asterisk:before { + content: "\002a"; +} +.glyphicon-plus:before { + content: "\002b"; +} +.glyphicon-euro:before, +.glyphicon-eur:before { + content: "\20ac"; +} +.glyphicon-minus:before { + content: "\2212"; +} +.glyphicon-cloud:before { + content: "\2601"; +} +.glyphicon-envelope:before { + content: "\2709"; +} +.glyphicon-pencil:before { + content: "\270f"; +} +.glyphicon-glass:before { + content: "\e001"; +} +.glyphicon-music:before { + content: "\e002"; +} +.glyphicon-search:before { + content: "\e003"; +} +.glyphicon-heart:before { + content: "\e005"; +} +.glyphicon-star:before { + content: "\e006"; +} +.glyphicon-star-empty:before { + content: "\e007"; +} +.glyphicon-user:before { + content: "\e008"; +} +.glyphicon-film:before { + content: "\e009"; +} +.glyphicon-th-large:before { + content: "\e010"; +} +.glyphicon-th:before { + content: "\e011"; +} +.glyphicon-th-list:before { + content: "\e012"; +} +.glyphicon-ok:before { + content: "\e013"; +} +.glyphicon-remove:before { + content: "\e014"; +} +.glyphicon-zoom-in:before { + content: "\e015"; +} +.glyphicon-zoom-out:before { + content: "\e016"; +} +.glyphicon-off:before { + content: "\e017"; +} +.glyphicon-signal:before { + content: "\e018"; +} +.glyphicon-cog:before { + content: "\e019"; +} +.glyphicon-trash:before { + content: "\e020"; +} +.glyphicon-home:before { + content: "\e021"; +} +.glyphicon-file:before { + content: "\e022"; +} +.glyphicon-time:before { + content: "\e023"; +} +.glyphicon-road:before { + content: "\e024"; +} +.glyphicon-download-alt:before { + content: "\e025"; +} +.glyphicon-download:before { + content: "\e026"; +} +.glyphicon-upload:before { + content: "\e027"; +} +.glyphicon-inbox:before { + content: "\e028"; +} +.glyphicon-play-circle:before { + content: "\e029"; +} +.glyphicon-repeat:before { + content: "\e030"; +} +.glyphicon-refresh:before { + content: "\e031"; +} +.glyphicon-list-alt:before { + content: "\e032"; +} +.glyphicon-lock:before { + content: "\e033"; +} +.glyphicon-flag:before { + content: "\e034"; +} +.glyphicon-headphones:before { + content: "\e035"; +} +.glyphicon-volume-off:before { + content: "\e036"; +} +.glyphicon-volume-down:before { + content: "\e037"; +} +.glyphicon-volume-up:before { + content: "\e038"; +} +.glyphicon-qrcode:before { + content: "\e039"; +} +.glyphicon-barcode:before { + content: "\e040"; +} +.glyphicon-tag:before { + content: "\e041"; +} +.glyphicon-tags:before { + content: "\e042"; +} +.glyphicon-book:before { + content: "\e043"; +} +.glyphicon-bookmark:before { + content: "\e044"; +} +.glyphicon-print:before { + content: "\e045"; +} +.glyphicon-camera:before { + content: "\e046"; +} +.glyphicon-font:before { + content: "\e047"; +} +.glyphicon-bold:before { + content: "\e048"; +} +.glyphicon-italic:before { + content: "\e049"; +} +.glyphicon-text-height:before { + content: "\e050"; +} +.glyphicon-text-width:before { + content: "\e051"; +} +.glyphicon-align-left:before { + content: "\e052"; +} +.glyphicon-align-center:before { + content: "\e053"; +} +.glyphicon-align-right:before { + content: "\e054"; +} +.glyphicon-align-justify:before { + content: "\e055"; +} +.glyphicon-list:before { + content: "\e056"; +} +.glyphicon-indent-left:before { + content: "\e057"; +} +.glyphicon-indent-right:before { + content: "\e058"; +} +.glyphicon-facetime-video:before { + content: "\e059"; +} +.glyphicon-picture:before { + content: "\e060"; +} +.glyphicon-map-marker:before { + content: "\e062"; +} +.glyphicon-adjust:before { + content: "\e063"; +} +.glyphicon-tint:before { + content: "\e064"; +} +.glyphicon-edit:before { + content: "\e065"; +} +.glyphicon-share:before { + content: "\e066"; +} +.glyphicon-check:before { + content: "\e067"; +} +.glyphicon-move:before { + content: "\e068"; +} +.glyphicon-step-backward:before { + content: "\e069"; +} +.glyphicon-fast-backward:before { + content: "\e070"; +} +.glyphicon-backward:before { + content: "\e071"; +} +.glyphicon-play:before { + content: "\e072"; +} +.glyphicon-pause:before { + content: "\e073"; +} +.glyphicon-stop:before { + content: "\e074"; +} +.glyphicon-forward:before { + content: "\e075"; +} +.glyphicon-fast-forward:before { + content: "\e076"; +} +.glyphicon-step-forward:before { + content: "\e077"; +} +.glyphicon-eject:before { + content: "\e078"; +} +.glyphicon-chevron-left:before { + content: "\e079"; +} +.glyphicon-chevron-right:before { + content: "\e080"; +} +.glyphicon-plus-sign:before { + content: "\e081"; +} +.glyphicon-minus-sign:before { + content: "\e082"; +} +.glyphicon-remove-sign:before { + content: "\e083"; +} +.glyphicon-ok-sign:before { + content: "\e084"; +} +.glyphicon-question-sign:before { + content: "\e085"; +} +.glyphicon-info-sign:before { + content: "\e086"; +} +.glyphicon-screenshot:before { + content: "\e087"; +} +.glyphicon-remove-circle:before { + content: "\e088"; +} +.glyphicon-ok-circle:before { + content: "\e089"; +} +.glyphicon-ban-circle:before { + content: "\e090"; +} +.glyphicon-arrow-left:before { + content: "\e091"; +} +.glyphicon-arrow-right:before { + content: "\e092"; +} +.glyphicon-arrow-up:before { + content: "\e093"; +} +.glyphicon-arrow-down:before { + content: "\e094"; +} +.glyphicon-share-alt:before { + content: "\e095"; +} +.glyphicon-resize-full:before { + content: "\e096"; +} +.glyphicon-resize-small:before { + content: "\e097"; +} +.glyphicon-exclamation-sign:before { + content: "\e101"; +} +.glyphicon-gift:before { + content: "\e102"; +} +.glyphicon-leaf:before { + content: "\e103"; +} +.glyphicon-fire:before { + content: "\e104"; +} +.glyphicon-eye-open:before { + content: "\e105"; +} +.glyphicon-eye-close:before { + content: "\e106"; +} +.glyphicon-warning-sign:before { + content: "\e107"; +} +.glyphicon-plane:before { + content: "\e108"; +} +.glyphicon-calendar:before { + content: "\e109"; +} +.glyphicon-random:before { + content: "\e110"; +} +.glyphicon-comment:before { + content: "\e111"; +} +.glyphicon-magnet:before { + content: "\e112"; +} +.glyphicon-chevron-up:before { + content: "\e113"; +} +.glyphicon-chevron-down:before { + content: "\e114"; +} +.glyphicon-retweet:before { + content: "\e115"; +} +.glyphicon-shopping-cart:before { + content: "\e116"; +} +.glyphicon-folder-close:before { + content: "\e117"; +} +.glyphicon-folder-open:before { + content: "\e118"; +} +.glyphicon-resize-vertical:before { + content: "\e119"; +} +.glyphicon-resize-horizontal:before { + content: "\e120"; +} +.glyphicon-hdd:before { + content: "\e121"; +} +.glyphicon-bullhorn:before { + content: "\e122"; +} +.glyphicon-bell:before { + content: "\e123"; +} +.glyphicon-certificate:before { + content: "\e124"; +} +.glyphicon-thumbs-up:before { + content: "\e125"; +} +.glyphicon-thumbs-down:before { + content: "\e126"; +} +.glyphicon-hand-right:before { + content: "\e127"; +} +.glyphicon-hand-left:before { + content: "\e128"; +} +.glyphicon-hand-up:before { + content: "\e129"; +} +.glyphicon-hand-down:before { + content: "\e130"; +} +.glyphicon-circle-arrow-right:before { + content: "\e131"; +} +.glyphicon-circle-arrow-left:before { + content: "\e132"; +} +.glyphicon-circle-arrow-up:before { + content: "\e133"; +} +.glyphicon-circle-arrow-down:before { + content: "\e134"; +} +.glyphicon-globe:before { + content: "\e135"; +} +.glyphicon-wrench:before { + content: "\e136"; +} +.glyphicon-tasks:before { + content: "\e137"; +} +.glyphicon-filter:before { + content: "\e138"; +} +.glyphicon-briefcase:before { + content: "\e139"; +} +.glyphicon-fullscreen:before { + content: "\e140"; +} +.glyphicon-dashboard:before { + content: "\e141"; +} +.glyphicon-paperclip:before { + content: "\e142"; +} +.glyphicon-heart-empty:before { + content: "\e143"; +} +.glyphicon-link:before { + content: "\e144"; +} +.glyphicon-phone:before { + content: "\e145"; +} +.glyphicon-pushpin:before { + content: "\e146"; +} +.glyphicon-usd:before { + content: "\e148"; +} +.glyphicon-gbp:before { + content: "\e149"; +} +.glyphicon-sort:before { + content: "\e150"; +} +.glyphicon-sort-by-alphabet:before { + content: "\e151"; +} +.glyphicon-sort-by-alphabet-alt:before { + content: "\e152"; +} +.glyphicon-sort-by-order:before { + content: "\e153"; +} +.glyphicon-sort-by-order-alt:before { + content: "\e154"; +} +.glyphicon-sort-by-attributes:before { + content: "\e155"; +} +.glyphicon-sort-by-attributes-alt:before { + content: "\e156"; +} +.glyphicon-unchecked:before { + content: "\e157"; +} +.glyphicon-expand:before { + content: "\e158"; +} +.glyphicon-collapse-down:before { + content: "\e159"; +} +.glyphicon-collapse-up:before { + content: "\e160"; +} +.glyphicon-log-in:before { + content: "\e161"; +} +.glyphicon-flash:before { + content: "\e162"; +} +.glyphicon-log-out:before { + content: "\e163"; +} +.glyphicon-new-window:before { + content: "\e164"; +} +.glyphicon-record:before { + content: "\e165"; +} +.glyphicon-save:before { + content: "\e166"; +} +.glyphicon-open:before { + content: "\e167"; +} +.glyphicon-saved:before { + content: "\e168"; +} +.glyphicon-import:before { + content: "\e169"; +} +.glyphicon-export:before { + content: "\e170"; +} +.glyphicon-send:before { + content: "\e171"; +} +.glyphicon-floppy-disk:before { + content: "\e172"; +} +.glyphicon-floppy-saved:before { + content: "\e173"; +} +.glyphicon-floppy-remove:before { + content: "\e174"; +} +.glyphicon-floppy-save:before { + content: "\e175"; +} +.glyphicon-floppy-open:before { + content: "\e176"; +} +.glyphicon-credit-card:before { + content: "\e177"; +} +.glyphicon-transfer:before { + content: "\e178"; +} +.glyphicon-cutlery:before { + content: "\e179"; +} +.glyphicon-header:before { + content: "\e180"; +} +.glyphicon-compressed:before { + content: "\e181"; +} +.glyphicon-earphone:before { + content: "\e182"; +} +.glyphicon-phone-alt:before { + content: "\e183"; +} +.glyphicon-tower:before { + content: "\e184"; +} +.glyphicon-stats:before { + content: "\e185"; +} +.glyphicon-sd-video:before { + content: "\e186"; +} +.glyphicon-hd-video:before { + content: "\e187"; +} +.glyphicon-subtitles:before { + content: "\e188"; +} +.glyphicon-sound-stereo:before { + content: "\e189"; +} +.glyphicon-sound-dolby:before { + content: "\e190"; +} +.glyphicon-sound-5-1:before { + content: "\e191"; +} +.glyphicon-sound-6-1:before { + content: "\e192"; +} +.glyphicon-sound-7-1:before { + content: "\e193"; +} +.glyphicon-copyright-mark:before { + content: "\e194"; +} +.glyphicon-registration-mark:before { + content: "\e195"; +} +.glyphicon-cloud-download:before { + content: "\e197"; +} +.glyphicon-cloud-upload:before { + content: "\e198"; +} +.glyphicon-tree-conifer:before { + content: "\e199"; +} +.glyphicon-tree-deciduous:before { + content: "\e200"; +} +.glyphicon-cd:before { + content: "\e201"; +} +.glyphicon-save-file:before { + content: "\e202"; +} +.glyphicon-open-file:before { + content: "\e203"; +} +.glyphicon-level-up:before { + content: "\e204"; +} +.glyphicon-copy:before { + content: "\e205"; +} +.glyphicon-paste:before { + content: "\e206"; +} +.glyphicon-alert:before { + content: "\e209"; +} +.glyphicon-equalizer:before { + content: "\e210"; +} +.glyphicon-king:before { + content: "\e211"; +} +.glyphicon-queen:before { + content: "\e212"; +} +.glyphicon-pawn:before { + content: "\e213"; +} +.glyphicon-bishop:before { + content: "\e214"; +} +.glyphicon-knight:before { + content: "\e215"; +} +.glyphicon-baby-formula:before { + content: "\e216"; +} +.glyphicon-tent:before { + content: "\26fa"; +} +.glyphicon-blackboard:before { + content: "\e218"; +} +.glyphicon-bed:before { + content: "\e219"; +} +.glyphicon-apple:before { + content: "\f8ff"; +} +.glyphicon-erase:before { + content: "\e221"; +} +.glyphicon-hourglass:before { + content: "\231b"; +} +.glyphicon-lamp:before { + content: "\e223"; +} +.glyphicon-duplicate:before { + content: "\e224"; +} +.glyphicon-piggy-bank:before { + content: "\e225"; +} +.glyphicon-scissors:before { + content: "\e226"; +} +.glyphicon-bitcoin:before { + content: "\e227"; +} +.glyphicon-btc:before { + content: "\e227"; +} +.glyphicon-xbt:before { + content: "\e227"; +} +.glyphicon-yen:before { + content: "\00a5"; +} +.glyphicon-jpy:before { + content: "\00a5"; +} +.glyphicon-ruble:before { + content: "\20bd"; +} +.glyphicon-rub:before { + content: "\20bd"; +} +.glyphicon-scale:before { + content: "\e230"; +} +.glyphicon-ice-lolly:before { + content: "\e231"; +} +.glyphicon-ice-lolly-tasted:before { + content: "\e232"; +} +.glyphicon-education:before { + content: "\e233"; +} +.glyphicon-option-horizontal:before { + content: "\e234"; +} +.glyphicon-option-vertical:before { + content: "\e235"; +} +.glyphicon-menu-hamburger:before { + content: "\e236"; +} +.glyphicon-modal-window:before { + content: "\e237"; +} +.glyphicon-oil:before { + content: "\e238"; +} +.glyphicon-grain:before { + content: "\e239"; +} +.glyphicon-sunglasses:before { + content: "\e240"; +} +.glyphicon-text-size:before { + content: "\e241"; +} +.glyphicon-text-color:before { + content: "\e242"; +} +.glyphicon-text-background:before { + content: "\e243"; +} +.glyphicon-object-align-top:before { + content: "\e244"; +} +.glyphicon-object-align-bottom:before { + content: "\e245"; +} +.glyphicon-object-align-horizontal:before { + content: "\e246"; +} +.glyphicon-object-align-left:before { + content: "\e247"; +} +.glyphicon-object-align-vertical:before { + content: "\e248"; +} +.glyphicon-object-align-right:before { + content: "\e249"; +} +.glyphicon-triangle-right:before { + content: "\e250"; +} +.glyphicon-triangle-left:before { + content: "\e251"; +} +.glyphicon-triangle-bottom:before { + content: "\e252"; +} +.glyphicon-triangle-top:before { + content: "\e253"; +} +.glyphicon-console:before { + content: "\e254"; +} +.glyphicon-superscript:before { + content: "\e255"; +} +.glyphicon-subscript:before { + content: "\e256"; +} +.glyphicon-menu-left:before { + content: "\e257"; +} +.glyphicon-menu-right:before { + content: "\e258"; +} +.glyphicon-menu-down:before { + content: "\e259"; +} +.glyphicon-menu-up:before { + content: "\e260"; +} +* { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +*:before, +*:after { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +html { + font-size: 10px; + + -webkit-tap-highlight-color: rgba(0, 0, 0, 0); +} +body { + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + line-height: 1.42857143; + color: #333; + background-color: #fff; +} +input, +button, +select, +textarea { + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +a { + color: #337ab7; + text-decoration: none; +} +a:hover, +a:focus { + color: #23527c; + text-decoration: underline; +} +a:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +figure { + margin: 0; +} +img { + vertical-align: middle; +} +.img-responsive, +.thumbnail > img, +.thumbnail a > img, +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + display: block; + max-width: 100%; + height: auto; +} +.img-rounded { + border-radius: 6px; +} +.img-thumbnail { + display: inline-block; + max-width: 100%; + height: auto; + padding: 4px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: all .2s ease-in-out; + -o-transition: all .2s ease-in-out; + transition: all .2s ease-in-out; +} +.img-circle { + border-radius: 50%; +} +hr { + margin-top: 20px; + margin-bottom: 20px; + border: 0; + border-top: 1px solid #eee; +} +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + border: 0; +} +.sr-only-focusable:active, +.sr-only-focusable:focus { + position: static; + width: auto; + height: auto; + margin: 0; + overflow: visible; + clip: auto; +} +[role="button"] { + cursor: pointer; +} +h1, +h2, +h3, +h4, +h5, +h6, +.h1, +.h2, +.h3, +.h4, +.h5, +.h6 { + font-family: inherit; + font-weight: 500; + line-height: 1.1; + color: inherit; +} +h1 small, +h2 small, +h3 small, +h4 small, +h5 small, +h6 small, +.h1 small, +.h2 small, +.h3 small, +.h4 small, +.h5 small, +.h6 small, +h1 .small, +h2 .small, +h3 .small, +h4 .small, +h5 .small, +h6 .small, +.h1 .small, +.h2 .small, +.h3 .small, +.h4 .small, +.h5 .small, +.h6 .small { + font-weight: normal; + line-height: 1; + color: #777; +} +h1, +.h1, +h2, +.h2, +h3, +.h3 { + margin-top: 20px; + margin-bottom: 10px; +} +h1 small, +.h1 small, +h2 small, +.h2 small, +h3 small, +.h3 small, +h1 .small, +.h1 .small, +h2 .small, +.h2 .small, +h3 .small, +.h3 .small { + font-size: 65%; +} +h4, +.h4, +h5, +.h5, +h6, +.h6 { + margin-top: 10px; + margin-bottom: 10px; +} +h4 small, +.h4 small, +h5 small, +.h5 small, +h6 small, +.h6 small, +h4 .small, +.h4 .small, +h5 .small, +.h5 .small, +h6 .small, +.h6 .small { + font-size: 75%; +} +h1, +.h1 { + font-size: 36px; +} +h2, +.h2 { + font-size: 30px; +} +h3, +.h3 { + font-size: 24px; +} +h4, +.h4 { + font-size: 18px; +} +h5, +.h5 { + font-size: 14px; +} +h6, +.h6 { + font-size: 12px; +} +p { + margin: 0 0 10px; +} +.lead { + margin-bottom: 20px; + font-size: 16px; + font-weight: 300; + line-height: 1.4; +} +@media (min-width: 768px) { + .lead { + font-size: 21px; + } +} +small, +.small { + font-size: 85%; +} +mark, +.mark { + padding: .2em; + background-color: #fcf8e3; +} +.text-left { + text-align: left; +} +.text-right { + text-align: right; +} +.text-center { + text-align: center; +} +.text-justify { + text-align: justify; +} +.text-nowrap { + white-space: nowrap; +} +.text-lowercase { + text-transform: lowercase; +} +.text-uppercase { + text-transform: uppercase; +} +.text-capitalize { + text-transform: capitalize; +} +.text-muted { + color: #777; +} +.text-primary { + color: #337ab7; +} +a.text-primary:hover, +a.text-primary:focus { + color: #286090; +} +.text-success { + color: #3c763d; +} +a.text-success:hover, +a.text-success:focus { + color: #2b542c; +} +.text-info { + color: #31708f; +} +a.text-info:hover, +a.text-info:focus { + color: #245269; +} +.text-warning { + color: #8a6d3b; +} +a.text-warning:hover, +a.text-warning:focus { + color: #66512c; +} +.text-danger { + color: #a94442; +} +a.text-danger:hover, +a.text-danger:focus { + color: #843534; +} +.bg-primary { + color: #fff; + background-color: #337ab7; +} +a.bg-primary:hover, +a.bg-primary:focus { + background-color: #286090; +} +.bg-success { + background-color: #dff0d8; +} +a.bg-success:hover, +a.bg-success:focus { + background-color: #c1e2b3; +} +.bg-info { + background-color: #d9edf7; +} +a.bg-info:hover, +a.bg-info:focus { + background-color: #afd9ee; +} +.bg-warning { + background-color: #fcf8e3; +} +a.bg-warning:hover, +a.bg-warning:focus { + background-color: #f7ecb5; +} +.bg-danger { + background-color: #f2dede; +} +a.bg-danger:hover, +a.bg-danger:focus { + background-color: #e4b9b9; +} +.page-header { + padding-bottom: 9px; + margin: 40px 0 20px; + border-bottom: 1px solid #eee; +} +ul, +ol { + margin-top: 0; + margin-bottom: 10px; +} +ul ul, +ol ul, +ul ol, +ol ol { + margin-bottom: 0; +} +.list-unstyled { + padding-left: 0; + list-style: none; +} +.list-inline { + padding-left: 0; + margin-left: -5px; + list-style: none; +} +.list-inline > li { + display: inline-block; + padding-right: 5px; + padding-left: 5px; +} +dl { + margin-top: 0; + margin-bottom: 20px; +} +dt, +dd { + line-height: 1.42857143; +} +dt { + font-weight: bold; +} +dd { + margin-left: 0; +} +@media (min-width: 768px) { + .dl-horizontal dt { + float: left; + width: 160px; + overflow: hidden; + clear: left; + text-align: right; + text-overflow: ellipsis; + white-space: nowrap; + } + .dl-horizontal dd { + margin-left: 180px; + } +} +abbr[title], +abbr[data-original-title] { + cursor: help; + border-bottom: 1px dotted #777; +} +.initialism { + font-size: 90%; + text-transform: uppercase; +} +blockquote { + padding: 10px 20px; + margin: 0 0 20px; + font-size: 17.5px; + border-left: 5px solid #eee; +} +blockquote p:last-child, +blockquote ul:last-child, +blockquote ol:last-child { + margin-bottom: 0; +} +blockquote footer, +blockquote small, +blockquote .small { + display: block; + font-size: 80%; + line-height: 1.42857143; + color: #777; +} +blockquote footer:before, +blockquote small:before, +blockquote .small:before { + content: '\2014 \00A0'; +} +.blockquote-reverse, +blockquote.pull-right { + padding-right: 15px; + padding-left: 0; + text-align: right; + border-right: 5px solid #eee; + border-left: 0; +} +.blockquote-reverse footer:before, +blockquote.pull-right footer:before, +.blockquote-reverse small:before, +blockquote.pull-right small:before, +.blockquote-reverse .small:before, +blockquote.pull-right .small:before { + content: ''; +} +.blockquote-reverse footer:after, +blockquote.pull-right footer:after, +.blockquote-reverse small:after, +blockquote.pull-right small:after, +.blockquote-reverse .small:after, +blockquote.pull-right .small:after { + content: '\00A0 \2014'; +} +address { + margin-bottom: 20px; + font-style: normal; + line-height: 1.42857143; +} +code, +kbd, +pre, +samp { + font-family: Menlo, Monaco, Consolas, "Courier New", monospace; +} +code { + padding: 2px 4px; + font-size: 90%; + color: #c7254e; + background-color: #f9f2f4; + border-radius: 4px; +} +kbd { + padding: 2px 4px; + font-size: 90%; + color: #fff; + background-color: #333; + border-radius: 3px; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25); +} +kbd kbd { + padding: 0; + font-size: 100%; + font-weight: bold; + -webkit-box-shadow: none; + box-shadow: none; +} +pre { + display: block; + padding: 9.5px; + margin: 0 0 10px; + font-size: 13px; + line-height: 1.42857143; + color: #333; + word-break: break-all; + word-wrap: break-word; + background-color: #f5f5f5; + border: 1px solid #ccc; + border-radius: 4px; +} +pre code { + padding: 0; + font-size: inherit; + color: inherit; + white-space: pre-wrap; + background-color: transparent; + border-radius: 0; +} +.pre-scrollable { + max-height: 340px; + overflow-y: scroll; +} +.container { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +@media (min-width: 768px) { + .container { + width: 750px; + } +} +@media (min-width: 992px) { + .container { + width: 970px; + } +} +@media (min-width: 1200px) { + .container { + width: 1170px; + } +} +.container-fluid { + padding-right: 15px; + padding-left: 15px; + margin-right: auto; + margin-left: auto; +} +.row { + margin-right: -15px; + margin-left: -15px; +} +.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 { + position: relative; + min-height: 1px; + padding-right: 15px; + padding-left: 15px; +} +.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 { + float: left; +} +.col-xs-12 { + width: 100%; +} +.col-xs-11 { + width: 91.66666667%; +} +.col-xs-10 { + width: 83.33333333%; +} +.col-xs-9 { + width: 75%; +} +.col-xs-8 { + width: 66.66666667%; +} +.col-xs-7 { + width: 58.33333333%; +} +.col-xs-6 { + width: 50%; +} +.col-xs-5 { + width: 41.66666667%; +} +.col-xs-4 { + width: 33.33333333%; +} +.col-xs-3 { + width: 25%; +} +.col-xs-2 { + width: 16.66666667%; +} +.col-xs-1 { + width: 8.33333333%; +} +.col-xs-pull-12 { + right: 100%; +} +.col-xs-pull-11 { + right: 91.66666667%; +} +.col-xs-pull-10 { + right: 83.33333333%; +} +.col-xs-pull-9 { + right: 75%; +} +.col-xs-pull-8 { + right: 66.66666667%; +} +.col-xs-pull-7 { + right: 58.33333333%; +} +.col-xs-pull-6 { + right: 50%; +} +.col-xs-pull-5 { + right: 41.66666667%; +} +.col-xs-pull-4 { + right: 33.33333333%; +} +.col-xs-pull-3 { + right: 25%; +} +.col-xs-pull-2 { + right: 16.66666667%; +} +.col-xs-pull-1 { + right: 8.33333333%; +} +.col-xs-pull-0 { + right: auto; +} +.col-xs-push-12 { + left: 100%; +} +.col-xs-push-11 { + left: 91.66666667%; +} +.col-xs-push-10 { + left: 83.33333333%; +} +.col-xs-push-9 { + left: 75%; +} +.col-xs-push-8 { + left: 66.66666667%; +} +.col-xs-push-7 { + left: 58.33333333%; +} +.col-xs-push-6 { + left: 50%; +} +.col-xs-push-5 { + left: 41.66666667%; +} +.col-xs-push-4 { + left: 33.33333333%; +} +.col-xs-push-3 { + left: 25%; +} +.col-xs-push-2 { + left: 16.66666667%; +} +.col-xs-push-1 { + left: 8.33333333%; +} +.col-xs-push-0 { + left: auto; +} +.col-xs-offset-12 { + margin-left: 100%; +} +.col-xs-offset-11 { + margin-left: 91.66666667%; +} +.col-xs-offset-10 { + margin-left: 83.33333333%; +} +.col-xs-offset-9 { + margin-left: 75%; +} +.col-xs-offset-8 { + margin-left: 66.66666667%; +} +.col-xs-offset-7 { + margin-left: 58.33333333%; +} +.col-xs-offset-6 { + margin-left: 50%; +} +.col-xs-offset-5 { + margin-left: 41.66666667%; +} +.col-xs-offset-4 { + margin-left: 33.33333333%; +} +.col-xs-offset-3 { + margin-left: 25%; +} +.col-xs-offset-2 { + margin-left: 16.66666667%; +} +.col-xs-offset-1 { + margin-left: 8.33333333%; +} +.col-xs-offset-0 { + margin-left: 0; +} +@media (min-width: 768px) { + .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 { + float: left; + } + .col-sm-12 { + width: 100%; + } + .col-sm-11 { + width: 91.66666667%; + } + .col-sm-10 { + width: 83.33333333%; + } + .col-sm-9 { + width: 75%; + } + .col-sm-8 { + width: 66.66666667%; + } + .col-sm-7 { + width: 58.33333333%; + } + .col-sm-6 { + width: 50%; + } + .col-sm-5 { + width: 41.66666667%; + } + .col-sm-4 { + width: 33.33333333%; + } + .col-sm-3 { + width: 25%; + } + .col-sm-2 { + width: 16.66666667%; + } + .col-sm-1 { + width: 8.33333333%; + } + .col-sm-pull-12 { + right: 100%; + } + .col-sm-pull-11 { + right: 91.66666667%; + } + .col-sm-pull-10 { + right: 83.33333333%; + } + .col-sm-pull-9 { + right: 75%; + } + .col-sm-pull-8 { + right: 66.66666667%; + } + .col-sm-pull-7 { + right: 58.33333333%; + } + .col-sm-pull-6 { + right: 50%; + } + .col-sm-pull-5 { + right: 41.66666667%; + } + .col-sm-pull-4 { + right: 33.33333333%; + } + .col-sm-pull-3 { + right: 25%; + } + .col-sm-pull-2 { + right: 16.66666667%; + } + .col-sm-pull-1 { + right: 8.33333333%; + } + .col-sm-pull-0 { + right: auto; + } + .col-sm-push-12 { + left: 100%; + } + .col-sm-push-11 { + left: 91.66666667%; + } + .col-sm-push-10 { + left: 83.33333333%; + } + .col-sm-push-9 { + left: 75%; + } + .col-sm-push-8 { + left: 66.66666667%; + } + .col-sm-push-7 { + left: 58.33333333%; + } + .col-sm-push-6 { + left: 50%; + } + .col-sm-push-5 { + left: 41.66666667%; + } + .col-sm-push-4 { + left: 33.33333333%; + } + .col-sm-push-3 { + left: 25%; + } + .col-sm-push-2 { + left: 16.66666667%; + } + .col-sm-push-1 { + left: 8.33333333%; + } + .col-sm-push-0 { + left: auto; + } + .col-sm-offset-12 { + margin-left: 100%; + } + .col-sm-offset-11 { + margin-left: 91.66666667%; + } + .col-sm-offset-10 { + margin-left: 83.33333333%; + } + .col-sm-offset-9 { + margin-left: 75%; + } + .col-sm-offset-8 { + margin-left: 66.66666667%; + } + .col-sm-offset-7 { + margin-left: 58.33333333%; + } + .col-sm-offset-6 { + margin-left: 50%; + } + .col-sm-offset-5 { + margin-left: 41.66666667%; + } + .col-sm-offset-4 { + margin-left: 33.33333333%; + } + .col-sm-offset-3 { + margin-left: 25%; + } + .col-sm-offset-2 { + margin-left: 16.66666667%; + } + .col-sm-offset-1 { + margin-left: 8.33333333%; + } + .col-sm-offset-0 { + margin-left: 0; + } +} +@media (min-width: 992px) { + .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 { + float: left; + } + .col-md-12 { + width: 100%; + } + .col-md-11 { + width: 91.66666667%; + } + .col-md-10 { + width: 83.33333333%; + } + .col-md-9 { + width: 75%; + } + .col-md-8 { + width: 66.66666667%; + } + .col-md-7 { + width: 58.33333333%; + } + .col-md-6 { + width: 50%; + } + .col-md-5 { + width: 41.66666667%; + } + .col-md-4 { + width: 33.33333333%; + } + .col-md-3 { + width: 25%; + } + .col-md-2 { + width: 16.66666667%; + } + .col-md-1 { + width: 8.33333333%; + } + .col-md-pull-12 { + right: 100%; + } + .col-md-pull-11 { + right: 91.66666667%; + } + .col-md-pull-10 { + right: 83.33333333%; + } + .col-md-pull-9 { + right: 75%; + } + .col-md-pull-8 { + right: 66.66666667%; + } + .col-md-pull-7 { + right: 58.33333333%; + } + .col-md-pull-6 { + right: 50%; + } + .col-md-pull-5 { + right: 41.66666667%; + } + .col-md-pull-4 { + right: 33.33333333%; + } + .col-md-pull-3 { + right: 25%; + } + .col-md-pull-2 { + right: 16.66666667%; + } + .col-md-pull-1 { + right: 8.33333333%; + } + .col-md-pull-0 { + right: auto; + } + .col-md-push-12 { + left: 100%; + } + .col-md-push-11 { + left: 91.66666667%; + } + .col-md-push-10 { + left: 83.33333333%; + } + .col-md-push-9 { + left: 75%; + } + .col-md-push-8 { + left: 66.66666667%; + } + .col-md-push-7 { + left: 58.33333333%; + } + .col-md-push-6 { + left: 50%; + } + .col-md-push-5 { + left: 41.66666667%; + } + .col-md-push-4 { + left: 33.33333333%; + } + .col-md-push-3 { + left: 25%; + } + .col-md-push-2 { + left: 16.66666667%; + } + .col-md-push-1 { + left: 8.33333333%; + } + .col-md-push-0 { + left: auto; + } + .col-md-offset-12 { + margin-left: 100%; + } + .col-md-offset-11 { + margin-left: 91.66666667%; + } + .col-md-offset-10 { + margin-left: 83.33333333%; + } + .col-md-offset-9 { + margin-left: 75%; + } + .col-md-offset-8 { + margin-left: 66.66666667%; + } + .col-md-offset-7 { + margin-left: 58.33333333%; + } + .col-md-offset-6 { + margin-left: 50%; + } + .col-md-offset-5 { + margin-left: 41.66666667%; + } + .col-md-offset-4 { + margin-left: 33.33333333%; + } + .col-md-offset-3 { + margin-left: 25%; + } + .col-md-offset-2 { + margin-left: 16.66666667%; + } + .col-md-offset-1 { + margin-left: 8.33333333%; + } + .col-md-offset-0 { + margin-left: 0; + } +} +@media (min-width: 1200px) { + .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 { + float: left; + } + .col-lg-12 { + width: 100%; + } + .col-lg-11 { + width: 91.66666667%; + } + .col-lg-10 { + width: 83.33333333%; + } + .col-lg-9 { + width: 75%; + } + .col-lg-8 { + width: 66.66666667%; + } + .col-lg-7 { + width: 58.33333333%; + } + .col-lg-6 { + width: 50%; + } + .col-lg-5 { + width: 41.66666667%; + } + .col-lg-4 { + width: 33.33333333%; + } + .col-lg-3 { + width: 25%; + } + .col-lg-2 { + width: 16.66666667%; + } + .col-lg-1 { + width: 8.33333333%; + } + .col-lg-pull-12 { + right: 100%; + } + .col-lg-pull-11 { + right: 91.66666667%; + } + .col-lg-pull-10 { + right: 83.33333333%; + } + .col-lg-pull-9 { + right: 75%; + } + .col-lg-pull-8 { + right: 66.66666667%; + } + .col-lg-pull-7 { + right: 58.33333333%; + } + .col-lg-pull-6 { + right: 50%; + } + .col-lg-pull-5 { + right: 41.66666667%; + } + .col-lg-pull-4 { + right: 33.33333333%; + } + .col-lg-pull-3 { + right: 25%; + } + .col-lg-pull-2 { + right: 16.66666667%; + } + .col-lg-pull-1 { + right: 8.33333333%; + } + .col-lg-pull-0 { + right: auto; + } + .col-lg-push-12 { + left: 100%; + } + .col-lg-push-11 { + left: 91.66666667%; + } + .col-lg-push-10 { + left: 83.33333333%; + } + .col-lg-push-9 { + left: 75%; + } + .col-lg-push-8 { + left: 66.66666667%; + } + .col-lg-push-7 { + left: 58.33333333%; + } + .col-lg-push-6 { + left: 50%; + } + .col-lg-push-5 { + left: 41.66666667%; + } + .col-lg-push-4 { + left: 33.33333333%; + } + .col-lg-push-3 { + left: 25%; + } + .col-lg-push-2 { + left: 16.66666667%; + } + .col-lg-push-1 { + left: 8.33333333%; + } + .col-lg-push-0 { + left: auto; + } + .col-lg-offset-12 { + margin-left: 100%; + } + .col-lg-offset-11 { + margin-left: 91.66666667%; + } + .col-lg-offset-10 { + margin-left: 83.33333333%; + } + .col-lg-offset-9 { + margin-left: 75%; + } + .col-lg-offset-8 { + margin-left: 66.66666667%; + } + .col-lg-offset-7 { + margin-left: 58.33333333%; + } + .col-lg-offset-6 { + margin-left: 50%; + } + .col-lg-offset-5 { + margin-left: 41.66666667%; + } + .col-lg-offset-4 { + margin-left: 33.33333333%; + } + .col-lg-offset-3 { + margin-left: 25%; + } + .col-lg-offset-2 { + margin-left: 16.66666667%; + } + .col-lg-offset-1 { + margin-left: 8.33333333%; + } + .col-lg-offset-0 { + margin-left: 0; + } +} +table { + background-color: transparent; +} +caption { + padding-top: 8px; + padding-bottom: 8px; + color: #777; + text-align: left; +} +th { + text-align: left; +} +.table { + width: 100%; + max-width: 100%; + margin-bottom: 20px; +} +.table > thead > tr > th, +.table > tbody > tr > th, +.table > tfoot > tr > th, +.table > thead > tr > td, +.table > tbody > tr > td, +.table > tfoot > tr > td { + padding: 8px; + line-height: 1.42857143; + vertical-align: top; + border-top: 1px solid #ddd; +} +.table > thead > tr > th { + vertical-align: bottom; + border-bottom: 2px solid #ddd; +} +.table > caption + thead > tr:first-child > th, +.table > colgroup + thead > tr:first-child > th, +.table > thead:first-child > tr:first-child > th, +.table > caption + thead > tr:first-child > td, +.table > colgroup + thead > tr:first-child > td, +.table > thead:first-child > tr:first-child > td { + border-top: 0; +} +.table > tbody + tbody { + border-top: 2px solid #ddd; +} +.table .table { + background-color: #fff; +} +.table-condensed > thead > tr > th, +.table-condensed > tbody > tr > th, +.table-condensed > tfoot > tr > th, +.table-condensed > thead > tr > td, +.table-condensed > tbody > tr > td, +.table-condensed > tfoot > tr > td { + padding: 5px; +} +.table-bordered { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > tbody > tr > th, +.table-bordered > tfoot > tr > th, +.table-bordered > thead > tr > td, +.table-bordered > tbody > tr > td, +.table-bordered > tfoot > tr > td { + border: 1px solid #ddd; +} +.table-bordered > thead > tr > th, +.table-bordered > thead > tr > td { + border-bottom-width: 2px; +} +.table-striped > tbody > tr:nth-of-type(odd) { + background-color: #f9f9f9; +} +.table-hover > tbody > tr:hover { + background-color: #f5f5f5; +} +table col[class*="col-"] { + position: static; + display: table-column; + float: none; +} +table td[class*="col-"], +table th[class*="col-"] { + position: static; + display: table-cell; + float: none; +} +.table > thead > tr > td.active, +.table > tbody > tr > td.active, +.table > tfoot > tr > td.active, +.table > thead > tr > th.active, +.table > tbody > tr > th.active, +.table > tfoot > tr > th.active, +.table > thead > tr.active > td, +.table > tbody > tr.active > td, +.table > tfoot > tr.active > td, +.table > thead > tr.active > th, +.table > tbody > tr.active > th, +.table > tfoot > tr.active > th { + background-color: #f5f5f5; +} +.table-hover > tbody > tr > td.active:hover, +.table-hover > tbody > tr > th.active:hover, +.table-hover > tbody > tr.active:hover > td, +.table-hover > tbody > tr:hover > .active, +.table-hover > tbody > tr.active:hover > th { + background-color: #e8e8e8; +} +.table > thead > tr > td.success, +.table > tbody > tr > td.success, +.table > tfoot > tr > td.success, +.table > thead > tr > th.success, +.table > tbody > tr > th.success, +.table > tfoot > tr > th.success, +.table > thead > tr.success > td, +.table > tbody > tr.success > td, +.table > tfoot > tr.success > td, +.table > thead > tr.success > th, +.table > tbody > tr.success > th, +.table > tfoot > tr.success > th { + background-color: #dff0d8; +} +.table-hover > tbody > tr > td.success:hover, +.table-hover > tbody > tr > th.success:hover, +.table-hover > tbody > tr.success:hover > td, +.table-hover > tbody > tr:hover > .success, +.table-hover > tbody > tr.success:hover > th { + background-color: #d0e9c6; +} +.table > thead > tr > td.info, +.table > tbody > tr > td.info, +.table > tfoot > tr > td.info, +.table > thead > tr > th.info, +.table > tbody > tr > th.info, +.table > tfoot > tr > th.info, +.table > thead > tr.info > td, +.table > tbody > tr.info > td, +.table > tfoot > tr.info > td, +.table > thead > tr.info > th, +.table > tbody > tr.info > th, +.table > tfoot > tr.info > th { + background-color: #d9edf7; +} +.table-hover > tbody > tr > td.info:hover, +.table-hover > tbody > tr > th.info:hover, +.table-hover > tbody > tr.info:hover > td, +.table-hover > tbody > tr:hover > .info, +.table-hover > tbody > tr.info:hover > th { + background-color: #c4e3f3; +} +.table > thead > tr > td.warning, +.table > tbody > tr > td.warning, +.table > tfoot > tr > td.warning, +.table > thead > tr > th.warning, +.table > tbody > tr > th.warning, +.table > tfoot > tr > th.warning, +.table > thead > tr.warning > td, +.table > tbody > tr.warning > td, +.table > tfoot > tr.warning > td, +.table > thead > tr.warning > th, +.table > tbody > tr.warning > th, +.table > tfoot > tr.warning > th { + background-color: #fcf8e3; +} +.table-hover > tbody > tr > td.warning:hover, +.table-hover > tbody > tr > th.warning:hover, +.table-hover > tbody > tr.warning:hover > td, +.table-hover > tbody > tr:hover > .warning, +.table-hover > tbody > tr.warning:hover > th { + background-color: #faf2cc; +} +.table > thead > tr > td.danger, +.table > tbody > tr > td.danger, +.table > tfoot > tr > td.danger, +.table > thead > tr > th.danger, +.table > tbody > tr > th.danger, +.table > tfoot > tr > th.danger, +.table > thead > tr.danger > td, +.table > tbody > tr.danger > td, +.table > tfoot > tr.danger > td, +.table > thead > tr.danger > th, +.table > tbody > tr.danger > th, +.table > tfoot > tr.danger > th { + background-color: #f2dede; +} +.table-hover > tbody > tr > td.danger:hover, +.table-hover > tbody > tr > th.danger:hover, +.table-hover > tbody > tr.danger:hover > td, +.table-hover > tbody > tr:hover > .danger, +.table-hover > tbody > tr.danger:hover > th { + background-color: #ebcccc; +} +.table-responsive { + min-height: .01%; + overflow-x: auto; +} +@media screen and (max-width: 767px) { + .table-responsive { + width: 100%; + margin-bottom: 15px; + overflow-y: hidden; + -ms-overflow-style: -ms-autohiding-scrollbar; + border: 1px solid #ddd; + } + .table-responsive > .table { + margin-bottom: 0; + } + .table-responsive > .table > thead > tr > th, + .table-responsive > .table > tbody > tr > th, + .table-responsive > .table > tfoot > tr > th, + .table-responsive > .table > thead > tr > td, + .table-responsive > .table > tbody > tr > td, + .table-responsive > .table > tfoot > tr > td { + white-space: nowrap; + } + .table-responsive > .table-bordered { + border: 0; + } + .table-responsive > .table-bordered > thead > tr > th:first-child, + .table-responsive > .table-bordered > tbody > tr > th:first-child, + .table-responsive > .table-bordered > tfoot > tr > th:first-child, + .table-responsive > .table-bordered > thead > tr > td:first-child, + .table-responsive > .table-bordered > tbody > tr > td:first-child, + .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; + } + .table-responsive > .table-bordered > thead > tr > th:last-child, + .table-responsive > .table-bordered > tbody > tr > th:last-child, + .table-responsive > .table-bordered > tfoot > tr > th:last-child, + .table-responsive > .table-bordered > thead > tr > td:last-child, + .table-responsive > .table-bordered > tbody > tr > td:last-child, + .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; + } + .table-responsive > .table-bordered > tbody > tr:last-child > th, + .table-responsive > .table-bordered > tfoot > tr:last-child > th, + .table-responsive > .table-bordered > tbody > tr:last-child > td, + .table-responsive > .table-bordered > tfoot > tr:last-child > td { + border-bottom: 0; + } +} +fieldset { + min-width: 0; + padding: 0; + margin: 0; + border: 0; +} +legend { + display: block; + width: 100%; + padding: 0; + margin-bottom: 20px; + font-size: 21px; + line-height: inherit; + color: #333; + border: 0; + border-bottom: 1px solid #e5e5e5; +} +label { + display: inline-block; + max-width: 100%; + margin-bottom: 5px; + font-weight: bold; +} +input[type="search"] { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +input[type="radio"], +input[type="checkbox"] { + margin: 4px 0 0; + margin-top: 1px \9; + line-height: normal; +} +input[type="file"] { + display: block; +} +input[type="range"] { + display: block; + width: 100%; +} +select[multiple], +select[size] { + height: auto; +} +input[type="file"]:focus, +input[type="radio"]:focus, +input[type="checkbox"]:focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +output { + display: block; + padding-top: 7px; + font-size: 14px; + line-height: 1.42857143; + color: #555; +} +.form-control { + display: block; + width: 100%; + height: 34px; + padding: 6px 12px; + font-size: 14px; + line-height: 1.42857143; + color: #555; + background-color: #fff; + background-image: none; + border: 1px solid #ccc; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; + -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; + transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; +} +.form-control:focus { + border-color: #66afe9; + outline: 0; + -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); + box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6); +} +.form-control::-moz-placeholder { + color: #999; + opacity: 1; +} +.form-control:-ms-input-placeholder { + color: #999; +} +.form-control::-webkit-input-placeholder { + color: #999; +} +.form-control::-ms-expand { + background-color: transparent; + border: 0; +} +.form-control[disabled], +.form-control[readonly], +fieldset[disabled] .form-control { + background-color: #eee; + opacity: 1; +} +.form-control[disabled], +fieldset[disabled] .form-control { + cursor: not-allowed; +} +textarea.form-control { + height: auto; +} +input[type="search"] { + -webkit-appearance: none; +} +@media screen and (-webkit-min-device-pixel-ratio: 0) { + input[type="date"].form-control, + input[type="time"].form-control, + input[type="datetime-local"].form-control, + input[type="month"].form-control { + line-height: 34px; + } + input[type="date"].input-sm, + input[type="time"].input-sm, + input[type="datetime-local"].input-sm, + input[type="month"].input-sm, + .input-group-sm input[type="date"], + .input-group-sm input[type="time"], + .input-group-sm input[type="datetime-local"], + .input-group-sm input[type="month"] { + line-height: 30px; + } + input[type="date"].input-lg, + input[type="time"].input-lg, + input[type="datetime-local"].input-lg, + input[type="month"].input-lg, + .input-group-lg input[type="date"], + .input-group-lg input[type="time"], + .input-group-lg input[type="datetime-local"], + .input-group-lg input[type="month"] { + line-height: 46px; + } +} +.form-group { + margin-bottom: 15px; +} +.radio, +.checkbox { + position: relative; + display: block; + margin-top: 10px; + margin-bottom: 10px; +} +.radio label, +.checkbox label { + min-height: 20px; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + cursor: pointer; +} +.radio input[type="radio"], +.radio-inline input[type="radio"], +.checkbox input[type="checkbox"], +.checkbox-inline input[type="checkbox"] { + position: absolute; + margin-top: 4px \9; + margin-left: -20px; +} +.radio + .radio, +.checkbox + .checkbox { + margin-top: -5px; +} +.radio-inline, +.checkbox-inline { + position: relative; + display: inline-block; + padding-left: 20px; + margin-bottom: 0; + font-weight: normal; + vertical-align: middle; + cursor: pointer; +} +.radio-inline + .radio-inline, +.checkbox-inline + .checkbox-inline { + margin-top: 0; + margin-left: 10px; +} +input[type="radio"][disabled], +input[type="checkbox"][disabled], +input[type="radio"].disabled, +input[type="checkbox"].disabled, +fieldset[disabled] input[type="radio"], +fieldset[disabled] input[type="checkbox"] { + cursor: not-allowed; +} +.radio-inline.disabled, +.checkbox-inline.disabled, +fieldset[disabled] .radio-inline, +fieldset[disabled] .checkbox-inline { + cursor: not-allowed; +} +.radio.disabled label, +.checkbox.disabled label, +fieldset[disabled] .radio label, +fieldset[disabled] .checkbox label { + cursor: not-allowed; +} +.form-control-static { + min-height: 34px; + padding-top: 7px; + padding-bottom: 7px; + margin-bottom: 0; +} +.form-control-static.input-lg, +.form-control-static.input-sm { + padding-right: 0; + padding-left: 0; +} +.input-sm { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-sm { + height: 30px; + line-height: 30px; +} +textarea.input-sm, +select[multiple].input-sm { + height: auto; +} +.form-group-sm .form-control { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.form-group-sm select.form-control { + height: 30px; + line-height: 30px; +} +.form-group-sm textarea.form-control, +.form-group-sm select[multiple].form-control { + height: auto; +} +.form-group-sm .form-control-static { + height: 30px; + min-height: 32px; + padding: 6px 10px; + font-size: 12px; + line-height: 1.5; +} +.input-lg { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-lg { + height: 46px; + line-height: 46px; +} +textarea.input-lg, +select[multiple].input-lg { + height: auto; +} +.form-group-lg .form-control { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +.form-group-lg select.form-control { + height: 46px; + line-height: 46px; +} +.form-group-lg textarea.form-control, +.form-group-lg select[multiple].form-control { + height: auto; +} +.form-group-lg .form-control-static { + height: 46px; + min-height: 38px; + padding: 11px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.has-feedback { + position: relative; +} +.has-feedback .form-control { + padding-right: 42.5px; +} +.form-control-feedback { + position: absolute; + top: 0; + right: 0; + z-index: 2; + display: block; + width: 34px; + height: 34px; + line-height: 34px; + text-align: center; + pointer-events: none; +} +.input-lg + .form-control-feedback, +.input-group-lg + .form-control-feedback, +.form-group-lg .form-control + .form-control-feedback { + width: 46px; + height: 46px; + line-height: 46px; +} +.input-sm + .form-control-feedback, +.input-group-sm + .form-control-feedback, +.form-group-sm .form-control + .form-control-feedback { + width: 30px; + height: 30px; + line-height: 30px; +} +.has-success .help-block, +.has-success .control-label, +.has-success .radio, +.has-success .checkbox, +.has-success .radio-inline, +.has-success .checkbox-inline, +.has-success.radio label, +.has-success.checkbox label, +.has-success.radio-inline label, +.has-success.checkbox-inline label { + color: #3c763d; +} +.has-success .form-control { + border-color: #3c763d; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-success .form-control:focus { + border-color: #2b542c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168; +} +.has-success .input-group-addon { + color: #3c763d; + background-color: #dff0d8; + border-color: #3c763d; +} +.has-success .form-control-feedback { + color: #3c763d; +} +.has-warning .help-block, +.has-warning .control-label, +.has-warning .radio, +.has-warning .checkbox, +.has-warning .radio-inline, +.has-warning .checkbox-inline, +.has-warning.radio label, +.has-warning.checkbox label, +.has-warning.radio-inline label, +.has-warning.checkbox-inline label { + color: #8a6d3b; +} +.has-warning .form-control { + border-color: #8a6d3b; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-warning .form-control:focus { + border-color: #66512c; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b; +} +.has-warning .input-group-addon { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #8a6d3b; +} +.has-warning .form-control-feedback { + color: #8a6d3b; +} +.has-error .help-block, +.has-error .control-label, +.has-error .radio, +.has-error .checkbox, +.has-error .radio-inline, +.has-error .checkbox-inline, +.has-error.radio label, +.has-error.checkbox label, +.has-error.radio-inline label, +.has-error.checkbox-inline label { + color: #a94442; +} +.has-error .form-control { + border-color: #a94442; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075); +} +.has-error .form-control:focus { + border-color: #843534; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483; +} +.has-error .input-group-addon { + color: #a94442; + background-color: #f2dede; + border-color: #a94442; +} +.has-error .form-control-feedback { + color: #a94442; +} +.has-feedback label ~ .form-control-feedback { + top: 25px; +} +.has-feedback label.sr-only ~ .form-control-feedback { + top: 0; +} +.help-block { + display: block; + margin-top: 5px; + margin-bottom: 10px; + color: #737373; +} +@media (min-width: 768px) { + .form-inline .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .form-inline .form-control-static { + display: inline-block; + } + .form-inline .input-group { + display: inline-table; + vertical-align: middle; + } + .form-inline .input-group .input-group-addon, + .form-inline .input-group .input-group-btn, + .form-inline .input-group .form-control { + width: auto; + } + .form-inline .input-group > .form-control { + width: 100%; + } + .form-inline .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio, + .form-inline .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .form-inline .radio label, + .form-inline .checkbox label { + padding-left: 0; + } + .form-inline .radio input[type="radio"], + .form-inline .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .form-inline .has-feedback .form-control-feedback { + top: 0; + } +} +.form-horizontal .radio, +.form-horizontal .checkbox, +.form-horizontal .radio-inline, +.form-horizontal .checkbox-inline { + padding-top: 7px; + margin-top: 0; + margin-bottom: 0; +} +.form-horizontal .radio, +.form-horizontal .checkbox { + min-height: 27px; +} +.form-horizontal .form-group { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .form-horizontal .control-label { + padding-top: 7px; + margin-bottom: 0; + text-align: right; + } +} +.form-horizontal .has-feedback .form-control-feedback { + right: 15px; +} +@media (min-width: 768px) { + .form-horizontal .form-group-lg .control-label { + padding-top: 11px; + font-size: 18px; + } +} +@media (min-width: 768px) { + .form-horizontal .form-group-sm .control-label { + padding-top: 6px; + font-size: 12px; + } +} +.btn { + display: inline-block; + padding: 6px 12px; + margin-bottom: 0; + font-size: 14px; + font-weight: normal; + line-height: 1.42857143; + text-align: center; + white-space: nowrap; + vertical-align: middle; + -ms-touch-action: manipulation; + touch-action: manipulation; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.btn:focus, +.btn:active:focus, +.btn.active:focus, +.btn.focus, +.btn:active.focus, +.btn.active.focus { + outline: thin dotted; + outline: 5px auto -webkit-focus-ring-color; + outline-offset: -2px; +} +.btn:hover, +.btn:focus, +.btn.focus { + color: #333; + text-decoration: none; +} +.btn:active, +.btn.active { + background-image: none; + outline: 0; + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn.disabled, +.btn[disabled], +fieldset[disabled] .btn { + cursor: not-allowed; + filter: alpha(opacity=65); + -webkit-box-shadow: none; + box-shadow: none; + opacity: .65; +} +a.btn.disabled, +fieldset[disabled] a.btn { + pointer-events: none; +} +.btn-default { + color: #333; + background-color: #fff; + border-color: #ccc; +} +.btn-default:focus, +.btn-default.focus { + color: #333; + background-color: #e6e6e6; + border-color: #8c8c8c; +} +.btn-default:hover { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + color: #333; + background-color: #e6e6e6; + border-color: #adadad; +} +.btn-default:active:hover, +.btn-default.active:hover, +.open > .dropdown-toggle.btn-default:hover, +.btn-default:active:focus, +.btn-default.active:focus, +.open > .dropdown-toggle.btn-default:focus, +.btn-default:active.focus, +.btn-default.active.focus, +.open > .dropdown-toggle.btn-default.focus { + color: #333; + background-color: #d4d4d4; + border-color: #8c8c8c; +} +.btn-default:active, +.btn-default.active, +.open > .dropdown-toggle.btn-default { + background-image: none; +} +.btn-default.disabled:hover, +.btn-default[disabled]:hover, +fieldset[disabled] .btn-default:hover, +.btn-default.disabled:focus, +.btn-default[disabled]:focus, +fieldset[disabled] .btn-default:focus, +.btn-default.disabled.focus, +.btn-default[disabled].focus, +fieldset[disabled] .btn-default.focus { + background-color: #fff; + border-color: #ccc; +} +.btn-default .badge { + color: #fff; + background-color: #333; +} +.btn-primary { + color: #fff; + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary:focus, +.btn-primary.focus { + color: #fff; + background-color: #286090; + border-color: #122b40; +} +.btn-primary:hover { + color: #fff; + background-color: #286090; + border-color: #204d74; +} +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + color: #fff; + background-color: #286090; + border-color: #204d74; +} +.btn-primary:active:hover, +.btn-primary.active:hover, +.open > .dropdown-toggle.btn-primary:hover, +.btn-primary:active:focus, +.btn-primary.active:focus, +.open > .dropdown-toggle.btn-primary:focus, +.btn-primary:active.focus, +.btn-primary.active.focus, +.open > .dropdown-toggle.btn-primary.focus { + color: #fff; + background-color: #204d74; + border-color: #122b40; +} +.btn-primary:active, +.btn-primary.active, +.open > .dropdown-toggle.btn-primary { + background-image: none; +} +.btn-primary.disabled:hover, +.btn-primary[disabled]:hover, +fieldset[disabled] .btn-primary:hover, +.btn-primary.disabled:focus, +.btn-primary[disabled]:focus, +fieldset[disabled] .btn-primary:focus, +.btn-primary.disabled.focus, +.btn-primary[disabled].focus, +fieldset[disabled] .btn-primary.focus { + background-color: #337ab7; + border-color: #2e6da4; +} +.btn-primary .badge { + color: #337ab7; + background-color: #fff; +} +.btn-success { + color: #fff; + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success:focus, +.btn-success.focus { + color: #fff; + background-color: #449d44; + border-color: #255625; +} +.btn-success:hover { + color: #fff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + color: #fff; + background-color: #449d44; + border-color: #398439; +} +.btn-success:active:hover, +.btn-success.active:hover, +.open > .dropdown-toggle.btn-success:hover, +.btn-success:active:focus, +.btn-success.active:focus, +.open > .dropdown-toggle.btn-success:focus, +.btn-success:active.focus, +.btn-success.active.focus, +.open > .dropdown-toggle.btn-success.focus { + color: #fff; + background-color: #398439; + border-color: #255625; +} +.btn-success:active, +.btn-success.active, +.open > .dropdown-toggle.btn-success { + background-image: none; +} +.btn-success.disabled:hover, +.btn-success[disabled]:hover, +fieldset[disabled] .btn-success:hover, +.btn-success.disabled:focus, +.btn-success[disabled]:focus, +fieldset[disabled] .btn-success:focus, +.btn-success.disabled.focus, +.btn-success[disabled].focus, +fieldset[disabled] .btn-success.focus { + background-color: #5cb85c; + border-color: #4cae4c; +} +.btn-success .badge { + color: #5cb85c; + background-color: #fff; +} +.btn-info { + color: #fff; + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info:focus, +.btn-info.focus { + color: #fff; + background-color: #31b0d5; + border-color: #1b6d85; +} +.btn-info:hover { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + color: #fff; + background-color: #31b0d5; + border-color: #269abc; +} +.btn-info:active:hover, +.btn-info.active:hover, +.open > .dropdown-toggle.btn-info:hover, +.btn-info:active:focus, +.btn-info.active:focus, +.open > .dropdown-toggle.btn-info:focus, +.btn-info:active.focus, +.btn-info.active.focus, +.open > .dropdown-toggle.btn-info.focus { + color: #fff; + background-color: #269abc; + border-color: #1b6d85; +} +.btn-info:active, +.btn-info.active, +.open > .dropdown-toggle.btn-info { + background-image: none; +} +.btn-info.disabled:hover, +.btn-info[disabled]:hover, +fieldset[disabled] .btn-info:hover, +.btn-info.disabled:focus, +.btn-info[disabled]:focus, +fieldset[disabled] .btn-info:focus, +.btn-info.disabled.focus, +.btn-info[disabled].focus, +fieldset[disabled] .btn-info.focus { + background-color: #5bc0de; + border-color: #46b8da; +} +.btn-info .badge { + color: #5bc0de; + background-color: #fff; +} +.btn-warning { + color: #fff; + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning:focus, +.btn-warning.focus { + color: #fff; + background-color: #ec971f; + border-color: #985f0d; +} +.btn-warning:hover { + color: #fff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + color: #fff; + background-color: #ec971f; + border-color: #d58512; +} +.btn-warning:active:hover, +.btn-warning.active:hover, +.open > .dropdown-toggle.btn-warning:hover, +.btn-warning:active:focus, +.btn-warning.active:focus, +.open > .dropdown-toggle.btn-warning:focus, +.btn-warning:active.focus, +.btn-warning.active.focus, +.open > .dropdown-toggle.btn-warning.focus { + color: #fff; + background-color: #d58512; + border-color: #985f0d; +} +.btn-warning:active, +.btn-warning.active, +.open > .dropdown-toggle.btn-warning { + background-image: none; +} +.btn-warning.disabled:hover, +.btn-warning[disabled]:hover, +fieldset[disabled] .btn-warning:hover, +.btn-warning.disabled:focus, +.btn-warning[disabled]:focus, +fieldset[disabled] .btn-warning:focus, +.btn-warning.disabled.focus, +.btn-warning[disabled].focus, +fieldset[disabled] .btn-warning.focus { + background-color: #f0ad4e; + border-color: #eea236; +} +.btn-warning .badge { + color: #f0ad4e; + background-color: #fff; +} +.btn-danger { + color: #fff; + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger:focus, +.btn-danger.focus { + color: #fff; + background-color: #c9302c; + border-color: #761c19; +} +.btn-danger:hover { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + color: #fff; + background-color: #c9302c; + border-color: #ac2925; +} +.btn-danger:active:hover, +.btn-danger.active:hover, +.open > .dropdown-toggle.btn-danger:hover, +.btn-danger:active:focus, +.btn-danger.active:focus, +.open > .dropdown-toggle.btn-danger:focus, +.btn-danger:active.focus, +.btn-danger.active.focus, +.open > .dropdown-toggle.btn-danger.focus { + color: #fff; + background-color: #ac2925; + border-color: #761c19; +} +.btn-danger:active, +.btn-danger.active, +.open > .dropdown-toggle.btn-danger { + background-image: none; +} +.btn-danger.disabled:hover, +.btn-danger[disabled]:hover, +fieldset[disabled] .btn-danger:hover, +.btn-danger.disabled:focus, +.btn-danger[disabled]:focus, +fieldset[disabled] .btn-danger:focus, +.btn-danger.disabled.focus, +.btn-danger[disabled].focus, +fieldset[disabled] .btn-danger.focus { + background-color: #d9534f; + border-color: #d43f3a; +} +.btn-danger .badge { + color: #d9534f; + background-color: #fff; +} +.btn-link { + font-weight: normal; + color: #337ab7; + border-radius: 0; +} +.btn-link, +.btn-link:active, +.btn-link.active, +.btn-link[disabled], +fieldset[disabled] .btn-link { + background-color: transparent; + -webkit-box-shadow: none; + box-shadow: none; +} +.btn-link, +.btn-link:hover, +.btn-link:focus, +.btn-link:active { + border-color: transparent; +} +.btn-link:hover, +.btn-link:focus { + color: #23527c; + text-decoration: underline; + background-color: transparent; +} +.btn-link[disabled]:hover, +fieldset[disabled] .btn-link:hover, +.btn-link[disabled]:focus, +fieldset[disabled] .btn-link:focus { + color: #777; + text-decoration: none; +} +.btn-lg, +.btn-group-lg > .btn { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +.btn-sm, +.btn-group-sm > .btn { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-xs, +.btn-group-xs > .btn { + padding: 1px 5px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +.btn-block { + display: block; + width: 100%; +} +.btn-block + .btn-block { + margin-top: 5px; +} +input[type="submit"].btn-block, +input[type="reset"].btn-block, +input[type="button"].btn-block { + width: 100%; +} +.fade { + opacity: 0; + -webkit-transition: opacity .15s linear; + -o-transition: opacity .15s linear; + transition: opacity .15s linear; +} +.fade.in { + opacity: 1; +} +.collapse { + display: none; +} +.collapse.in { + display: block; +} +tr.collapse.in { + display: table-row; +} +tbody.collapse.in { + display: table-row-group; +} +.collapsing { + position: relative; + height: 0; + overflow: hidden; + -webkit-transition-timing-function: ease; + -o-transition-timing-function: ease; + transition-timing-function: ease; + -webkit-transition-duration: .35s; + -o-transition-duration: .35s; + transition-duration: .35s; + -webkit-transition-property: height, visibility; + -o-transition-property: height, visibility; + transition-property: height, visibility; +} +.caret { + display: inline-block; + width: 0; + height: 0; + margin-left: 2px; + vertical-align: middle; + border-top: 4px dashed; + border-top: 4px solid \9; + border-right: 4px solid transparent; + border-left: 4px solid transparent; +} +.dropup, +.dropdown { + position: relative; +} +.dropdown-toggle:focus { + outline: 0; +} +.dropdown-menu { + position: absolute; + top: 100%; + left: 0; + z-index: 1000; + display: none; + float: left; + min-width: 160px; + padding: 5px 0; + margin: 2px 0 0; + font-size: 14px; + text-align: left; + list-style: none; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .15); + border-radius: 4px; + -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175); + box-shadow: 0 6px 12px rgba(0, 0, 0, .175); +} +.dropdown-menu.pull-right { + right: 0; + left: auto; +} +.dropdown-menu .divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.dropdown-menu > li > a { + display: block; + padding: 3px 20px; + clear: both; + font-weight: normal; + line-height: 1.42857143; + color: #333; + white-space: nowrap; +} +.dropdown-menu > li > a:hover, +.dropdown-menu > li > a:focus { + color: #262626; + text-decoration: none; + background-color: #f5f5f5; +} +.dropdown-menu > .active > a, +.dropdown-menu > .active > a:hover, +.dropdown-menu > .active > a:focus { + color: #fff; + text-decoration: none; + background-color: #337ab7; + outline: 0; +} +.dropdown-menu > .disabled > a, +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + color: #777; +} +.dropdown-menu > .disabled > a:hover, +.dropdown-menu > .disabled > a:focus { + text-decoration: none; + cursor: not-allowed; + background-color: transparent; + background-image: none; + filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); +} +.open > .dropdown-menu { + display: block; +} +.open > a { + outline: 0; +} +.dropdown-menu-right { + right: 0; + left: auto; +} +.dropdown-menu-left { + right: auto; + left: 0; +} +.dropdown-header { + display: block; + padding: 3px 20px; + font-size: 12px; + line-height: 1.42857143; + color: #777; + white-space: nowrap; +} +.dropdown-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 990; +} +.pull-right > .dropdown-menu { + right: 0; + left: auto; +} +.dropup .caret, +.navbar-fixed-bottom .dropdown .caret { + content: ""; + border-top: 0; + border-bottom: 4px dashed; + border-bottom: 4px solid \9; +} +.dropup .dropdown-menu, +.navbar-fixed-bottom .dropdown .dropdown-menu { + top: auto; + bottom: 100%; + margin-bottom: 2px; +} +@media (min-width: 768px) { + .navbar-right .dropdown-menu { + right: 0; + left: auto; + } + .navbar-right .dropdown-menu-left { + right: auto; + left: 0; + } +} +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-block; + vertical-align: middle; +} +.btn-group > .btn, +.btn-group-vertical > .btn { + position: relative; + float: left; +} +.btn-group > .btn:hover, +.btn-group-vertical > .btn:hover, +.btn-group > .btn:focus, +.btn-group-vertical > .btn:focus, +.btn-group > .btn:active, +.btn-group-vertical > .btn:active, +.btn-group > .btn.active, +.btn-group-vertical > .btn.active { + z-index: 2; +} +.btn-group .btn + .btn, +.btn-group .btn + .btn-group, +.btn-group .btn-group + .btn, +.btn-group .btn-group + .btn-group { + margin-left: -1px; +} +.btn-toolbar { + margin-left: -5px; +} +.btn-toolbar .btn, +.btn-toolbar .btn-group, +.btn-toolbar .input-group { + float: left; +} +.btn-toolbar > .btn, +.btn-toolbar > .btn-group, +.btn-toolbar > .input-group { + margin-left: 5px; +} +.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) { + border-radius: 0; +} +.btn-group > .btn:first-child { + margin-left: 0; +} +.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn:last-child:not(:first-child), +.btn-group > .dropdown-toggle:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group > .btn-group { + float: left; +} +.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group .dropdown-toggle:active, +.btn-group.open .dropdown-toggle { + outline: 0; +} +.btn-group > .btn + .dropdown-toggle { + padding-right: 8px; + padding-left: 8px; +} +.btn-group > .btn-lg + .dropdown-toggle { + padding-right: 12px; + padding-left: 12px; +} +.btn-group.open .dropdown-toggle { + -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); + box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125); +} +.btn-group.open .dropdown-toggle.btn-link { + -webkit-box-shadow: none; + box-shadow: none; +} +.btn .caret { + margin-left: 0; +} +.btn-lg .caret { + border-width: 5px 5px 0; + border-bottom-width: 0; +} +.dropup .btn-lg .caret { + border-width: 0 5px 5px; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group, +.btn-group-vertical > .btn-group > .btn { + display: block; + float: none; + width: 100%; + max-width: 100%; +} +.btn-group-vertical > .btn-group > .btn { + float: none; +} +.btn-group-vertical > .btn + .btn, +.btn-group-vertical > .btn + .btn-group, +.btn-group-vertical > .btn-group + .btn, +.btn-group-vertical > .btn-group + .btn-group { + margin-top: -1px; + margin-left: 0; +} +.btn-group-vertical > .btn:not(:first-child):not(:last-child) { + border-radius: 0; +} +.btn-group-vertical > .btn:first-child:not(:last-child) { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn:last-child:not(:first-child) { + border-top-left-radius: 0; + border-top-right-radius: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn { + border-radius: 0; +} +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, +.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.btn-group-justified { + display: table; + width: 100%; + table-layout: fixed; + border-collapse: separate; +} +.btn-group-justified > .btn, +.btn-group-justified > .btn-group { + display: table-cell; + float: none; + width: 1%; +} +.btn-group-justified > .btn-group .btn { + width: 100%; +} +.btn-group-justified > .btn-group .dropdown-menu { + left: auto; +} +[data-toggle="buttons"] > .btn input[type="radio"], +[data-toggle="buttons"] > .btn-group > .btn input[type="radio"], +[data-toggle="buttons"] > .btn input[type="checkbox"], +[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.input-group { + position: relative; + display: table; + border-collapse: separate; +} +.input-group[class*="col-"] { + float: none; + padding-right: 0; + padding-left: 0; +} +.input-group .form-control { + position: relative; + z-index: 2; + float: left; + width: 100%; + margin-bottom: 0; +} +.input-group .form-control:focus { + z-index: 3; +} +.input-group-lg > .form-control, +.input-group-lg > .input-group-addon, +.input-group-lg > .input-group-btn > .btn { + height: 46px; + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; + border-radius: 6px; +} +select.input-group-lg > .form-control, +select.input-group-lg > .input-group-addon, +select.input-group-lg > .input-group-btn > .btn { + height: 46px; + line-height: 46px; +} +textarea.input-group-lg > .form-control, +textarea.input-group-lg > .input-group-addon, +textarea.input-group-lg > .input-group-btn > .btn, +select[multiple].input-group-lg > .form-control, +select[multiple].input-group-lg > .input-group-addon, +select[multiple].input-group-lg > .input-group-btn > .btn { + height: auto; +} +.input-group-sm > .form-control, +.input-group-sm > .input-group-addon, +.input-group-sm > .input-group-btn > .btn { + height: 30px; + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; + border-radius: 3px; +} +select.input-group-sm > .form-control, +select.input-group-sm > .input-group-addon, +select.input-group-sm > .input-group-btn > .btn { + height: 30px; + line-height: 30px; +} +textarea.input-group-sm > .form-control, +textarea.input-group-sm > .input-group-addon, +textarea.input-group-sm > .input-group-btn > .btn, +select[multiple].input-group-sm > .form-control, +select[multiple].input-group-sm > .input-group-addon, +select[multiple].input-group-sm > .input-group-btn > .btn { + height: auto; +} +.input-group-addon, +.input-group-btn, +.input-group .form-control { + display: table-cell; +} +.input-group-addon:not(:first-child):not(:last-child), +.input-group-btn:not(:first-child):not(:last-child), +.input-group .form-control:not(:first-child):not(:last-child) { + border-radius: 0; +} +.input-group-addon, +.input-group-btn { + width: 1%; + white-space: nowrap; + vertical-align: middle; +} +.input-group-addon { + padding: 6px 12px; + font-size: 14px; + font-weight: normal; + line-height: 1; + color: #555; + text-align: center; + background-color: #eee; + border: 1px solid #ccc; + border-radius: 4px; +} +.input-group-addon.input-sm { + padding: 5px 10px; + font-size: 12px; + border-radius: 3px; +} +.input-group-addon.input-lg { + padding: 10px 16px; + font-size: 18px; + border-radius: 6px; +} +.input-group-addon input[type="radio"], +.input-group-addon input[type="checkbox"] { + margin-top: 0; +} +.input-group .form-control:first-child, +.input-group-addon:first-child, +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group > .btn, +.input-group-btn:first-child > .dropdown-toggle, +.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), +.input-group-btn:last-child > .btn-group:not(:last-child) > .btn { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group-addon:first-child { + border-right: 0; +} +.input-group .form-control:last-child, +.input-group-addon:last-child, +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group > .btn, +.input-group-btn:last-child > .dropdown-toggle, +.input-group-btn:first-child > .btn:not(:first-child), +.input-group-btn:first-child > .btn-group:not(:first-child) > .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.input-group-addon:last-child { + border-left: 0; +} +.input-group-btn { + position: relative; + font-size: 0; + white-space: nowrap; +} +.input-group-btn > .btn { + position: relative; +} +.input-group-btn > .btn + .btn { + margin-left: -1px; +} +.input-group-btn > .btn:hover, +.input-group-btn > .btn:focus, +.input-group-btn > .btn:active { + z-index: 2; +} +.input-group-btn:first-child > .btn, +.input-group-btn:first-child > .btn-group { + margin-right: -1px; +} +.input-group-btn:last-child > .btn, +.input-group-btn:last-child > .btn-group { + z-index: 2; + margin-left: -1px; +} +.nav { + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.nav > li { + position: relative; + display: block; +} +.nav > li > a { + position: relative; + display: block; + padding: 10px 15px; +} +.nav > li > a:hover, +.nav > li > a:focus { + text-decoration: none; + background-color: #eee; +} +.nav > li.disabled > a { + color: #777; +} +.nav > li.disabled > a:hover, +.nav > li.disabled > a:focus { + color: #777; + text-decoration: none; + cursor: not-allowed; + background-color: transparent; +} +.nav .open > a, +.nav .open > a:hover, +.nav .open > a:focus { + background-color: #eee; + border-color: #337ab7; +} +.nav .nav-divider { + height: 1px; + margin: 9px 0; + overflow: hidden; + background-color: #e5e5e5; +} +.nav > li > a > img { + max-width: none; +} +.nav-tabs { + border-bottom: 1px solid #ddd; +} +.nav-tabs > li { + float: left; + margin-bottom: -1px; +} +.nav-tabs > li > a { + margin-right: 2px; + line-height: 1.42857143; + border: 1px solid transparent; + border-radius: 4px 4px 0 0; +} +.nav-tabs > li > a:hover { + border-color: #eee #eee #ddd; +} +.nav-tabs > li.active > a, +.nav-tabs > li.active > a:hover, +.nav-tabs > li.active > a:focus { + color: #555; + cursor: default; + background-color: #fff; + border: 1px solid #ddd; + border-bottom-color: transparent; +} +.nav-tabs.nav-justified { + width: 100%; + border-bottom: 0; +} +.nav-tabs.nav-justified > li { + float: none; +} +.nav-tabs.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-tabs.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-tabs.nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs.nav-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs.nav-justified > .active > a, +.nav-tabs.nav-justified > .active > a:hover, +.nav-tabs.nav-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs.nav-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs.nav-justified > .active > a, + .nav-tabs.nav-justified > .active > a:hover, + .nav-tabs.nav-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.nav-pills > li { + float: left; +} +.nav-pills > li > a { + border-radius: 4px; +} +.nav-pills > li + li { + margin-left: 2px; +} +.nav-pills > li.active > a, +.nav-pills > li.active > a:hover, +.nav-pills > li.active > a:focus { + color: #fff; + background-color: #337ab7; +} +.nav-stacked > li { + float: none; +} +.nav-stacked > li + li { + margin-top: 2px; + margin-left: 0; +} +.nav-justified { + width: 100%; +} +.nav-justified > li { + float: none; +} +.nav-justified > li > a { + margin-bottom: 5px; + text-align: center; +} +.nav-justified > .dropdown .dropdown-menu { + top: auto; + left: auto; +} +@media (min-width: 768px) { + .nav-justified > li { + display: table-cell; + width: 1%; + } + .nav-justified > li > a { + margin-bottom: 0; + } +} +.nav-tabs-justified { + border-bottom: 0; +} +.nav-tabs-justified > li > a { + margin-right: 0; + border-radius: 4px; +} +.nav-tabs-justified > .active > a, +.nav-tabs-justified > .active > a:hover, +.nav-tabs-justified > .active > a:focus { + border: 1px solid #ddd; +} +@media (min-width: 768px) { + .nav-tabs-justified > li > a { + border-bottom: 1px solid #ddd; + border-radius: 4px 4px 0 0; + } + .nav-tabs-justified > .active > a, + .nav-tabs-justified > .active > a:hover, + .nav-tabs-justified > .active > a:focus { + border-bottom-color: #fff; + } +} +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar { + position: relative; + min-height: 50px; + margin-bottom: 20px; + border: 1px solid transparent; +} +@media (min-width: 768px) { + .navbar { + border-radius: 4px; + } +} +@media (min-width: 768px) { + .navbar-header { + float: left; + } +} +.navbar-collapse { + padding-right: 15px; + padding-left: 15px; + overflow-x: visible; + -webkit-overflow-scrolling: touch; + border-top: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1); +} +.navbar-collapse.in { + overflow-y: auto; +} +@media (min-width: 768px) { + .navbar-collapse { + width: auto; + border-top: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-collapse.collapse { + display: block !important; + height: auto !important; + padding-bottom: 0; + overflow: visible !important; + } + .navbar-collapse.in { + overflow-y: visible; + } + .navbar-fixed-top .navbar-collapse, + .navbar-static-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + padding-right: 0; + padding-left: 0; + } +} +.navbar-fixed-top .navbar-collapse, +.navbar-fixed-bottom .navbar-collapse { + max-height: 340px; +} +@media (max-device-width: 480px) and (orientation: landscape) { + .navbar-fixed-top .navbar-collapse, + .navbar-fixed-bottom .navbar-collapse { + max-height: 200px; + } +} +.container > .navbar-header, +.container-fluid > .navbar-header, +.container > .navbar-collapse, +.container-fluid > .navbar-collapse { + margin-right: -15px; + margin-left: -15px; +} +@media (min-width: 768px) { + .container > .navbar-header, + .container-fluid > .navbar-header, + .container > .navbar-collapse, + .container-fluid > .navbar-collapse { + margin-right: 0; + margin-left: 0; + } +} +.navbar-static-top { + z-index: 1000; + border-width: 0 0 1px; +} +@media (min-width: 768px) { + .navbar-static-top { + border-radius: 0; + } +} +.navbar-fixed-top, +.navbar-fixed-bottom { + position: fixed; + right: 0; + left: 0; + z-index: 1030; +} +@media (min-width: 768px) { + .navbar-fixed-top, + .navbar-fixed-bottom { + border-radius: 0; + } +} +.navbar-fixed-top { + top: 0; + border-width: 0 0 1px; +} +.navbar-fixed-bottom { + bottom: 0; + margin-bottom: 0; + border-width: 1px 0 0; +} +.navbar-brand { + float: left; + height: 50px; + padding: 15px 15px; + font-size: 18px; + line-height: 20px; +} +.navbar-brand:hover, +.navbar-brand:focus { + text-decoration: none; +} +.navbar-brand > img { + display: block; +} +@media (min-width: 768px) { + .navbar > .container .navbar-brand, + .navbar > .container-fluid .navbar-brand { + margin-left: -15px; + } +} +.navbar-toggle { + position: relative; + float: right; + padding: 9px 10px; + margin-top: 8px; + margin-right: 15px; + margin-bottom: 8px; + background-color: transparent; + background-image: none; + border: 1px solid transparent; + border-radius: 4px; +} +.navbar-toggle:focus { + outline: 0; +} +.navbar-toggle .icon-bar { + display: block; + width: 22px; + height: 2px; + border-radius: 1px; +} +.navbar-toggle .icon-bar + .icon-bar { + margin-top: 4px; +} +@media (min-width: 768px) { + .navbar-toggle { + display: none; + } +} +.navbar-nav { + margin: 7.5px -15px; +} +.navbar-nav > li > a { + padding-top: 10px; + padding-bottom: 10px; + line-height: 20px; +} +@media (max-width: 767px) { + .navbar-nav .open .dropdown-menu { + position: static; + float: none; + width: auto; + margin-top: 0; + background-color: transparent; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } + .navbar-nav .open .dropdown-menu > li > a, + .navbar-nav .open .dropdown-menu .dropdown-header { + padding: 5px 15px 5px 25px; + } + .navbar-nav .open .dropdown-menu > li > a { + line-height: 20px; + } + .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-nav .open .dropdown-menu > li > a:focus { + background-image: none; + } +} +@media (min-width: 768px) { + .navbar-nav { + float: left; + margin: 0; + } + .navbar-nav > li { + float: left; + } + .navbar-nav > li > a { + padding-top: 15px; + padding-bottom: 15px; + } +} +.navbar-form { + padding: 10px 15px; + margin-top: 8px; + margin-right: -15px; + margin-bottom: 8px; + margin-left: -15px; + border-top: 1px solid transparent; + border-bottom: 1px solid transparent; + -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); + box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1); +} +@media (min-width: 768px) { + .navbar-form .form-group { + display: inline-block; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .form-control { + display: inline-block; + width: auto; + vertical-align: middle; + } + .navbar-form .form-control-static { + display: inline-block; + } + .navbar-form .input-group { + display: inline-table; + vertical-align: middle; + } + .navbar-form .input-group .input-group-addon, + .navbar-form .input-group .input-group-btn, + .navbar-form .input-group .form-control { + width: auto; + } + .navbar-form .input-group > .form-control { + width: 100%; + } + .navbar-form .control-label { + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio, + .navbar-form .checkbox { + display: inline-block; + margin-top: 0; + margin-bottom: 0; + vertical-align: middle; + } + .navbar-form .radio label, + .navbar-form .checkbox label { + padding-left: 0; + } + .navbar-form .radio input[type="radio"], + .navbar-form .checkbox input[type="checkbox"] { + position: relative; + margin-left: 0; + } + .navbar-form .has-feedback .form-control-feedback { + top: 0; + } +} +@media (max-width: 767px) { + .navbar-form .form-group { + margin-bottom: 5px; + } + .navbar-form .form-group:last-child { + margin-bottom: 0; + } +} +@media (min-width: 768px) { + .navbar-form { + width: auto; + padding-top: 0; + padding-bottom: 0; + margin-right: 0; + margin-left: 0; + border: 0; + -webkit-box-shadow: none; + box-shadow: none; + } +} +.navbar-nav > li > .dropdown-menu { + margin-top: 0; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu { + margin-bottom: 0; + border-top-left-radius: 4px; + border-top-right-radius: 4px; + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.navbar-btn { + margin-top: 8px; + margin-bottom: 8px; +} +.navbar-btn.btn-sm { + margin-top: 10px; + margin-bottom: 10px; +} +.navbar-btn.btn-xs { + margin-top: 14px; + margin-bottom: 14px; +} +.navbar-text { + margin-top: 15px; + margin-bottom: 15px; +} +@media (min-width: 768px) { + .navbar-text { + float: left; + margin-right: 15px; + margin-left: 15px; + } +} +@media (min-width: 768px) { + .navbar-left { + float: left !important; + } + .navbar-right { + float: right !important; + margin-right: -15px; + } + .navbar-right ~ .navbar-right { + margin-right: 0; + } +} +.navbar-default { + background-color: #f8f8f8; + border-color: #e7e7e7; +} +.navbar-default .navbar-brand { + color: #777; +} +.navbar-default .navbar-brand:hover, +.navbar-default .navbar-brand:focus { + color: #5e5e5e; + background-color: transparent; +} +.navbar-default .navbar-text { + color: #777; +} +.navbar-default .navbar-nav > li > a { + color: #777; +} +.navbar-default .navbar-nav > li > a:hover, +.navbar-default .navbar-nav > li > a:focus { + color: #333; + background-color: transparent; +} +.navbar-default .navbar-nav > .active > a, +.navbar-default .navbar-nav > .active > a:hover, +.navbar-default .navbar-nav > .active > a:focus { + color: #555; + background-color: #e7e7e7; +} +.navbar-default .navbar-nav > .disabled > a, +.navbar-default .navbar-nav > .disabled > a:hover, +.navbar-default .navbar-nav > .disabled > a:focus { + color: #ccc; + background-color: transparent; +} +.navbar-default .navbar-toggle { + border-color: #ddd; +} +.navbar-default .navbar-toggle:hover, +.navbar-default .navbar-toggle:focus { + background-color: #ddd; +} +.navbar-default .navbar-toggle .icon-bar { + background-color: #888; +} +.navbar-default .navbar-collapse, +.navbar-default .navbar-form { + border-color: #e7e7e7; +} +.navbar-default .navbar-nav > .open > a, +.navbar-default .navbar-nav > .open > a:hover, +.navbar-default .navbar-nav > .open > a:focus { + color: #555; + background-color: #e7e7e7; +} +@media (max-width: 767px) { + .navbar-default .navbar-nav .open .dropdown-menu > li > a { + color: #777; + } + .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { + color: #333; + background-color: transparent; + } + .navbar-default .navbar-nav .open .dropdown-menu > .active > a, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #555; + background-color: #e7e7e7; + } + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #ccc; + background-color: transparent; + } +} +.navbar-default .navbar-link { + color: #777; +} +.navbar-default .navbar-link:hover { + color: #333; +} +.navbar-default .btn-link { + color: #777; +} +.navbar-default .btn-link:hover, +.navbar-default .btn-link:focus { + color: #333; +} +.navbar-default .btn-link[disabled]:hover, +fieldset[disabled] .navbar-default .btn-link:hover, +.navbar-default .btn-link[disabled]:focus, +fieldset[disabled] .navbar-default .btn-link:focus { + color: #ccc; +} +.navbar-inverse { + background-color: #222; + border-color: #080808; +} +.navbar-inverse .navbar-brand { + color: #9d9d9d; +} +.navbar-inverse .navbar-brand:hover, +.navbar-inverse .navbar-brand:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-text { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a { + color: #9d9d9d; +} +.navbar-inverse .navbar-nav > li > a:hover, +.navbar-inverse .navbar-nav > li > a:focus { + color: #fff; + background-color: transparent; +} +.navbar-inverse .navbar-nav > .active > a, +.navbar-inverse .navbar-nav > .active > a:hover, +.navbar-inverse .navbar-nav > .active > a:focus { + color: #fff; + background-color: #080808; +} +.navbar-inverse .navbar-nav > .disabled > a, +.navbar-inverse .navbar-nav > .disabled > a:hover, +.navbar-inverse .navbar-nav > .disabled > a:focus { + color: #444; + background-color: transparent; +} +.navbar-inverse .navbar-toggle { + border-color: #333; +} +.navbar-inverse .navbar-toggle:hover, +.navbar-inverse .navbar-toggle:focus { + background-color: #333; +} +.navbar-inverse .navbar-toggle .icon-bar { + background-color: #fff; +} +.navbar-inverse .navbar-collapse, +.navbar-inverse .navbar-form { + border-color: #101010; +} +.navbar-inverse .navbar-nav > .open > a, +.navbar-inverse .navbar-nav > .open > a:hover, +.navbar-inverse .navbar-nav > .open > a:focus { + color: #fff; + background-color: #080808; +} +@media (max-width: 767px) { + .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header { + border-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu .divider { + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a { + color: #9d9d9d; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus { + color: #fff; + background-color: transparent; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus { + color: #fff; + background-color: #080808; + } + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover, + .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus { + color: #444; + background-color: transparent; + } +} +.navbar-inverse .navbar-link { + color: #9d9d9d; +} +.navbar-inverse .navbar-link:hover { + color: #fff; +} +.navbar-inverse .btn-link { + color: #9d9d9d; +} +.navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link:focus { + color: #fff; +} +.navbar-inverse .btn-link[disabled]:hover, +fieldset[disabled] .navbar-inverse .btn-link:hover, +.navbar-inverse .btn-link[disabled]:focus, +fieldset[disabled] .navbar-inverse .btn-link:focus { + color: #444; +} +.breadcrumb { + padding: 8px 15px; + margin-bottom: 20px; + list-style: none; + background-color: #f5f5f5; + border-radius: 4px; +} +.breadcrumb > li { + display: inline-block; +} +.breadcrumb > li + li:before { + padding: 0 5px; + color: #ccc; + content: "/\00a0"; +} +.breadcrumb > .active { + color: #777; +} +.pagination { + display: inline-block; + padding-left: 0; + margin: 20px 0; + border-radius: 4px; +} +.pagination > li { + display: inline; +} +.pagination > li > a, +.pagination > li > span { + position: relative; + float: left; + padding: 6px 12px; + margin-left: -1px; + line-height: 1.42857143; + color: #337ab7; + text-decoration: none; + background-color: #fff; + border: 1px solid #ddd; +} +.pagination > li:first-child > a, +.pagination > li:first-child > span { + margin-left: 0; + border-top-left-radius: 4px; + border-bottom-left-radius: 4px; +} +.pagination > li:last-child > a, +.pagination > li:last-child > span { + border-top-right-radius: 4px; + border-bottom-right-radius: 4px; +} +.pagination > li > a:hover, +.pagination > li > span:hover, +.pagination > li > a:focus, +.pagination > li > span:focus { + z-index: 2; + color: #23527c; + background-color: #eee; + border-color: #ddd; +} +.pagination > .active > a, +.pagination > .active > span, +.pagination > .active > a:hover, +.pagination > .active > span:hover, +.pagination > .active > a:focus, +.pagination > .active > span:focus { + z-index: 3; + color: #fff; + cursor: default; + background-color: #337ab7; + border-color: #337ab7; +} +.pagination > .disabled > span, +.pagination > .disabled > span:hover, +.pagination > .disabled > span:focus, +.pagination > .disabled > a, +.pagination > .disabled > a:hover, +.pagination > .disabled > a:focus { + color: #777; + cursor: not-allowed; + background-color: #fff; + border-color: #ddd; +} +.pagination-lg > li > a, +.pagination-lg > li > span { + padding: 10px 16px; + font-size: 18px; + line-height: 1.3333333; +} +.pagination-lg > li:first-child > a, +.pagination-lg > li:first-child > span { + border-top-left-radius: 6px; + border-bottom-left-radius: 6px; +} +.pagination-lg > li:last-child > a, +.pagination-lg > li:last-child > span { + border-top-right-radius: 6px; + border-bottom-right-radius: 6px; +} +.pagination-sm > li > a, +.pagination-sm > li > span { + padding: 5px 10px; + font-size: 12px; + line-height: 1.5; +} +.pagination-sm > li:first-child > a, +.pagination-sm > li:first-child > span { + border-top-left-radius: 3px; + border-bottom-left-radius: 3px; +} +.pagination-sm > li:last-child > a, +.pagination-sm > li:last-child > span { + border-top-right-radius: 3px; + border-bottom-right-radius: 3px; +} +.pager { + padding-left: 0; + margin: 20px 0; + text-align: center; + list-style: none; +} +.pager li { + display: inline; +} +.pager li > a, +.pager li > span { + display: inline-block; + padding: 5px 14px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 15px; +} +.pager li > a:hover, +.pager li > a:focus { + text-decoration: none; + background-color: #eee; +} +.pager .next > a, +.pager .next > span { + float: right; +} +.pager .previous > a, +.pager .previous > span { + float: left; +} +.pager .disabled > a, +.pager .disabled > a:hover, +.pager .disabled > a:focus, +.pager .disabled > span { + color: #777; + cursor: not-allowed; + background-color: #fff; +} +.label { + display: inline; + padding: .2em .6em .3em; + font-size: 75%; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: .25em; +} +a.label:hover, +a.label:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.label:empty { + display: none; +} +.btn .label { + position: relative; + top: -1px; +} +.label-default { + background-color: #777; +} +.label-default[href]:hover, +.label-default[href]:focus { + background-color: #5e5e5e; +} +.label-primary { + background-color: #337ab7; +} +.label-primary[href]:hover, +.label-primary[href]:focus { + background-color: #286090; +} +.label-success { + background-color: #5cb85c; +} +.label-success[href]:hover, +.label-success[href]:focus { + background-color: #449d44; +} +.label-info { + background-color: #5bc0de; +} +.label-info[href]:hover, +.label-info[href]:focus { + background-color: #31b0d5; +} +.label-warning { + background-color: #f0ad4e; +} +.label-warning[href]:hover, +.label-warning[href]:focus { + background-color: #ec971f; +} +.label-danger { + background-color: #d9534f; +} +.label-danger[href]:hover, +.label-danger[href]:focus { + background-color: #c9302c; +} +.badge { + display: inline-block; + min-width: 10px; + padding: 3px 7px; + font-size: 12px; + font-weight: bold; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: middle; + background-color: #777; + border-radius: 10px; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.btn-xs .badge, +.btn-group-xs > .btn .badge { + top: 0; + padding: 1px 5px; +} +a.badge:hover, +a.badge:focus { + color: #fff; + text-decoration: none; + cursor: pointer; +} +.list-group-item.active > .badge, +.nav-pills > .active > a > .badge { + color: #337ab7; + background-color: #fff; +} +.list-group-item > .badge { + float: right; +} +.list-group-item > .badge + .badge { + margin-right: 5px; +} +.nav-pills > li > a > .badge { + margin-left: 3px; +} +.jumbotron { + padding-top: 30px; + padding-bottom: 30px; + margin-bottom: 30px; + color: inherit; + background-color: #eee; +} +.jumbotron h1, +.jumbotron .h1 { + color: inherit; +} +.jumbotron p { + margin-bottom: 15px; + font-size: 21px; + font-weight: 200; +} +.jumbotron > hr { + border-top-color: #d5d5d5; +} +.container .jumbotron, +.container-fluid .jumbotron { + padding-right: 15px; + padding-left: 15px; + border-radius: 6px; +} +.jumbotron .container { + max-width: 100%; +} +@media screen and (min-width: 768px) { + .jumbotron { + padding-top: 48px; + padding-bottom: 48px; + } + .container .jumbotron, + .container-fluid .jumbotron { + padding-right: 60px; + padding-left: 60px; + } + .jumbotron h1, + .jumbotron .h1 { + font-size: 63px; + } +} +.thumbnail { + display: block; + padding: 4px; + margin-bottom: 20px; + line-height: 1.42857143; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; + -webkit-transition: border .2s ease-in-out; + -o-transition: border .2s ease-in-out; + transition: border .2s ease-in-out; +} +.thumbnail > img, +.thumbnail a > img { + margin-right: auto; + margin-left: auto; +} +a.thumbnail:hover, +a.thumbnail:focus, +a.thumbnail.active { + border-color: #337ab7; +} +.thumbnail .caption { + padding: 9px; + color: #333; +} +.alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; +} +.alert h4 { + margin-top: 0; + color: inherit; +} +.alert .alert-link { + font-weight: bold; +} +.alert > p, +.alert > ul { + margin-bottom: 0; +} +.alert > p + p { + margin-top: 5px; +} +.alert-dismissable, +.alert-dismissible { + padding-right: 35px; +} +.alert-dismissable .close, +.alert-dismissible .close { + position: relative; + top: -2px; + right: -21px; + color: inherit; +} +.alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.alert-success hr { + border-top-color: #c9e2b3; +} +.alert-success .alert-link { + color: #2b542c; +} +.alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.alert-info hr { + border-top-color: #a6e1ec; +} +.alert-info .alert-link { + color: #245269; +} +.alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.alert-warning hr { + border-top-color: #f7e1b5; +} +.alert-warning .alert-link { + color: #66512c; +} +.alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.alert-danger hr { + border-top-color: #e4b9c0; +} +.alert-danger .alert-link { + color: #843534; +} +@-webkit-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@-o-keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +@keyframes progress-bar-stripes { + from { + background-position: 40px 0; + } + to { + background-position: 0 0; + } +} +.progress { + height: 20px; + margin-bottom: 20px; + overflow: hidden; + background-color: #f5f5f5; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); + box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1); +} +.progress-bar { + float: left; + width: 0; + height: 100%; + font-size: 12px; + line-height: 20px; + color: #fff; + text-align: center; + background-color: #337ab7; + -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15); + -webkit-transition: width .6s ease; + -o-transition: width .6s ease; + transition: width .6s ease; +} +.progress-striped .progress-bar, +.progress-bar-striped { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + -webkit-background-size: 40px 40px; + background-size: 40px 40px; +} +.progress.active .progress-bar, +.progress-bar.active { + -webkit-animation: progress-bar-stripes 2s linear infinite; + -o-animation: progress-bar-stripes 2s linear infinite; + animation: progress-bar-stripes 2s linear infinite; +} +.progress-bar-success { + background-color: #5cb85c; +} +.progress-striped .progress-bar-success { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-info { + background-color: #5bc0de; +} +.progress-striped .progress-bar-info { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-warning { + background-color: #f0ad4e; +} +.progress-striped .progress-bar-warning { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.progress-bar-danger { + background-color: #d9534f; +} +.progress-striped .progress-bar-danger { + background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); +} +.media { + margin-top: 15px; +} +.media:first-child { + margin-top: 0; +} +.media, +.media-body { + overflow: hidden; + zoom: 1; +} +.media-body { + width: 10000px; +} +.media-object { + display: block; +} +.media-object.img-thumbnail { + max-width: none; +} +.media-right, +.media > .pull-right { + padding-left: 10px; +} +.media-left, +.media > .pull-left { + padding-right: 10px; +} +.media-left, +.media-right, +.media-body { + display: table-cell; + vertical-align: top; +} +.media-middle { + vertical-align: middle; +} +.media-bottom { + vertical-align: bottom; +} +.media-heading { + margin-top: 0; + margin-bottom: 5px; +} +.media-list { + padding-left: 0; + list-style: none; +} +.list-group { + padding-left: 0; + margin-bottom: 20px; +} +.list-group-item { + position: relative; + display: block; + padding: 10px 15px; + margin-bottom: -1px; + background-color: #fff; + border: 1px solid #ddd; +} +.list-group-item:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; +} +.list-group-item:last-child { + margin-bottom: 0; + border-bottom-right-radius: 4px; + border-bottom-left-radius: 4px; +} +a.list-group-item, +button.list-group-item { + color: #555; +} +a.list-group-item .list-group-item-heading, +button.list-group-item .list-group-item-heading { + color: #333; +} +a.list-group-item:hover, +button.list-group-item:hover, +a.list-group-item:focus, +button.list-group-item:focus { + color: #555; + text-decoration: none; + background-color: #f5f5f5; +} +button.list-group-item { + width: 100%; + text-align: left; +} +.list-group-item.disabled, +.list-group-item.disabled:hover, +.list-group-item.disabled:focus { + color: #777; + cursor: not-allowed; + background-color: #eee; +} +.list-group-item.disabled .list-group-item-heading, +.list-group-item.disabled:hover .list-group-item-heading, +.list-group-item.disabled:focus .list-group-item-heading { + color: inherit; +} +.list-group-item.disabled .list-group-item-text, +.list-group-item.disabled:hover .list-group-item-text, +.list-group-item.disabled:focus .list-group-item-text { + color: #777; +} +.list-group-item.active, +.list-group-item.active:hover, +.list-group-item.active:focus { + z-index: 2; + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.list-group-item.active .list-group-item-heading, +.list-group-item.active:hover .list-group-item-heading, +.list-group-item.active:focus .list-group-item-heading, +.list-group-item.active .list-group-item-heading > small, +.list-group-item.active:hover .list-group-item-heading > small, +.list-group-item.active:focus .list-group-item-heading > small, +.list-group-item.active .list-group-item-heading > .small, +.list-group-item.active:hover .list-group-item-heading > .small, +.list-group-item.active:focus .list-group-item-heading > .small { + color: inherit; +} +.list-group-item.active .list-group-item-text, +.list-group-item.active:hover .list-group-item-text, +.list-group-item.active:focus .list-group-item-text { + color: #c7ddef; +} +.list-group-item-success { + color: #3c763d; + background-color: #dff0d8; +} +a.list-group-item-success, +button.list-group-item-success { + color: #3c763d; +} +a.list-group-item-success .list-group-item-heading, +button.list-group-item-success .list-group-item-heading { + color: inherit; +} +a.list-group-item-success:hover, +button.list-group-item-success:hover, +a.list-group-item-success:focus, +button.list-group-item-success:focus { + color: #3c763d; + background-color: #d0e9c6; +} +a.list-group-item-success.active, +button.list-group-item-success.active, +a.list-group-item-success.active:hover, +button.list-group-item-success.active:hover, +a.list-group-item-success.active:focus, +button.list-group-item-success.active:focus { + color: #fff; + background-color: #3c763d; + border-color: #3c763d; +} +.list-group-item-info { + color: #31708f; + background-color: #d9edf7; +} +a.list-group-item-info, +button.list-group-item-info { + color: #31708f; +} +a.list-group-item-info .list-group-item-heading, +button.list-group-item-info .list-group-item-heading { + color: inherit; +} +a.list-group-item-info:hover, +button.list-group-item-info:hover, +a.list-group-item-info:focus, +button.list-group-item-info:focus { + color: #31708f; + background-color: #c4e3f3; +} +a.list-group-item-info.active, +button.list-group-item-info.active, +a.list-group-item-info.active:hover, +button.list-group-item-info.active:hover, +a.list-group-item-info.active:focus, +button.list-group-item-info.active:focus { + color: #fff; + background-color: #31708f; + border-color: #31708f; +} +.list-group-item-warning { + color: #8a6d3b; + background-color: #fcf8e3; +} +a.list-group-item-warning, +button.list-group-item-warning { + color: #8a6d3b; +} +a.list-group-item-warning .list-group-item-heading, +button.list-group-item-warning .list-group-item-heading { + color: inherit; +} +a.list-group-item-warning:hover, +button.list-group-item-warning:hover, +a.list-group-item-warning:focus, +button.list-group-item-warning:focus { + color: #8a6d3b; + background-color: #faf2cc; +} +a.list-group-item-warning.active, +button.list-group-item-warning.active, +a.list-group-item-warning.active:hover, +button.list-group-item-warning.active:hover, +a.list-group-item-warning.active:focus, +button.list-group-item-warning.active:focus { + color: #fff; + background-color: #8a6d3b; + border-color: #8a6d3b; +} +.list-group-item-danger { + color: #a94442; + background-color: #f2dede; +} +a.list-group-item-danger, +button.list-group-item-danger { + color: #a94442; +} +a.list-group-item-danger .list-group-item-heading, +button.list-group-item-danger .list-group-item-heading { + color: inherit; +} +a.list-group-item-danger:hover, +button.list-group-item-danger:hover, +a.list-group-item-danger:focus, +button.list-group-item-danger:focus { + color: #a94442; + background-color: #ebcccc; +} +a.list-group-item-danger.active, +button.list-group-item-danger.active, +a.list-group-item-danger.active:hover, +button.list-group-item-danger.active:hover, +a.list-group-item-danger.active:focus, +button.list-group-item-danger.active:focus { + color: #fff; + background-color: #a94442; + border-color: #a94442; +} +.list-group-item-heading { + margin-top: 0; + margin-bottom: 5px; +} +.list-group-item-text { + margin-bottom: 0; + line-height: 1.3; +} +.panel { + margin-bottom: 20px; + background-color: #fff; + border: 1px solid transparent; + border-radius: 4px; + -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: 0 1px 1px rgba(0, 0, 0, .05); +} +.panel-body { + padding: 15px; +} +.panel-heading { + padding: 10px 15px; + border-bottom: 1px solid transparent; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel-heading > .dropdown .dropdown-toggle { + color: inherit; +} +.panel-title { + margin-top: 0; + margin-bottom: 0; + font-size: 16px; + color: inherit; +} +.panel-title > a, +.panel-title > small, +.panel-title > .small, +.panel-title > small > a, +.panel-title > .small > a { + color: inherit; +} +.panel-footer { + padding: 10px 15px; + background-color: #f5f5f5; + border-top: 1px solid #ddd; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .list-group, +.panel > .panel-collapse > .list-group { + margin-bottom: 0; +} +.panel > .list-group .list-group-item, +.panel > .panel-collapse > .list-group .list-group-item { + border-width: 1px 0; + border-radius: 0; +} +.panel > .list-group:first-child .list-group-item:first-child, +.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child { + border-top: 0; + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .list-group:last-child .list-group-item:last-child, +.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child { + border-bottom: 0; + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.panel-heading + .list-group .list-group-item:first-child { + border-top-width: 0; +} +.list-group + .panel-footer { + border-top-width: 0; +} +.panel > .table, +.panel > .table-responsive > .table, +.panel > .panel-collapse > .table { + margin-bottom: 0; +} +.panel > .table caption, +.panel > .table-responsive > .table caption, +.panel > .panel-collapse > .table caption { + padding-right: 15px; + padding-left: 15px; +} +.panel > .table:first-child, +.panel > .table-responsive:first-child > .table:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child { + border-top-left-radius: 3px; + border-top-right-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child { + border-top-left-radius: 3px; +} +.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, +.panel > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, +.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, +.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child { + border-top-right-radius: 3px; +} +.panel > .table:last-child, +.panel > .table-responsive:last-child > .table:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child { + border-bottom-right-radius: 3px; + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child { + border-bottom-left-radius: 3px; +} +.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, +.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, +.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, +.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child { + border-bottom-right-radius: 3px; +} +.panel > .panel-body + .table, +.panel > .panel-body + .table-responsive, +.panel > .table + .panel-body, +.panel > .table-responsive + .panel-body { + border-top: 1px solid #ddd; +} +.panel > .table > tbody:first-child > tr:first-child th, +.panel > .table > tbody:first-child > tr:first-child td { + border-top: 0; +} +.panel > .table-bordered, +.panel > .table-responsive > .table-bordered { + border: 0; +} +.panel > .table-bordered > thead > tr > th:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:first-child, +.panel > .table-bordered > tbody > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, +.panel > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, +.panel > .table-bordered > thead > tr > td:first-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:first-child, +.panel > .table-bordered > tbody > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, +.panel > .table-bordered > tfoot > tr > td:first-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child { + border-left: 0; +} +.panel > .table-bordered > thead > tr > th:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > th:last-child, +.panel > .table-bordered > tbody > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, +.panel > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, +.panel > .table-bordered > thead > tr > td:last-child, +.panel > .table-responsive > .table-bordered > thead > tr > td:last-child, +.panel > .table-bordered > tbody > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, +.panel > .table-bordered > tfoot > tr > td:last-child, +.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child { + border-right: 0; +} +.panel > .table-bordered > thead > tr:first-child > td, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > td, +.panel > .table-bordered > tbody > tr:first-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, +.panel > .table-bordered > thead > tr:first-child > th, +.panel > .table-responsive > .table-bordered > thead > tr:first-child > th, +.panel > .table-bordered > tbody > tr:first-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th { + border-bottom: 0; +} +.panel > .table-bordered > tbody > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, +.panel > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, +.panel > .table-bordered > tbody > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, +.panel > .table-bordered > tfoot > tr:last-child > th, +.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th { + border-bottom: 0; +} +.panel > .table-responsive { + margin-bottom: 0; + border: 0; +} +.panel-group { + margin-bottom: 20px; +} +.panel-group .panel { + margin-bottom: 0; + border-radius: 4px; +} +.panel-group .panel + .panel { + margin-top: 5px; +} +.panel-group .panel-heading { + border-bottom: 0; +} +.panel-group .panel-heading + .panel-collapse > .panel-body, +.panel-group .panel-heading + .panel-collapse > .list-group { + border-top: 1px solid #ddd; +} +.panel-group .panel-footer { + border-top: 0; +} +.panel-group .panel-footer + .panel-collapse .panel-body { + border-bottom: 1px solid #ddd; +} +.panel-default { + border-color: #ddd; +} +.panel-default > .panel-heading { + color: #333; + background-color: #f5f5f5; + border-color: #ddd; +} +.panel-default > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ddd; +} +.panel-default > .panel-heading .badge { + color: #f5f5f5; + background-color: #333; +} +.panel-default > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ddd; +} +.panel-primary { + border-color: #337ab7; +} +.panel-primary > .panel-heading { + color: #fff; + background-color: #337ab7; + border-color: #337ab7; +} +.panel-primary > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #337ab7; +} +.panel-primary > .panel-heading .badge { + color: #337ab7; + background-color: #fff; +} +.panel-primary > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #337ab7; +} +.panel-success { + border-color: #d6e9c6; +} +.panel-success > .panel-heading { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; +} +.panel-success > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #d6e9c6; +} +.panel-success > .panel-heading .badge { + color: #dff0d8; + background-color: #3c763d; +} +.panel-success > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #d6e9c6; +} +.panel-info { + border-color: #bce8f1; +} +.panel-info > .panel-heading { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; +} +.panel-info > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #bce8f1; +} +.panel-info > .panel-heading .badge { + color: #d9edf7; + background-color: #31708f; +} +.panel-info > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #bce8f1; +} +.panel-warning { + border-color: #faebcc; +} +.panel-warning > .panel-heading { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; +} +.panel-warning > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #faebcc; +} +.panel-warning > .panel-heading .badge { + color: #fcf8e3; + background-color: #8a6d3b; +} +.panel-warning > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #faebcc; +} +.panel-danger { + border-color: #ebccd1; +} +.panel-danger > .panel-heading { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; +} +.panel-danger > .panel-heading + .panel-collapse > .panel-body { + border-top-color: #ebccd1; +} +.panel-danger > .panel-heading .badge { + color: #f2dede; + background-color: #a94442; +} +.panel-danger > .panel-footer + .panel-collapse > .panel-body { + border-bottom-color: #ebccd1; +} +.embed-responsive { + position: relative; + display: block; + height: 0; + padding: 0; + overflow: hidden; +} +.embed-responsive .embed-responsive-item, +.embed-responsive iframe, +.embed-responsive embed, +.embed-responsive object, +.embed-responsive video { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 100%; + height: 100%; + border: 0; +} +.embed-responsive-16by9 { + padding-bottom: 56.25%; +} +.embed-responsive-4by3 { + padding-bottom: 75%; +} +.well { + min-height: 20px; + padding: 19px; + margin-bottom: 20px; + background-color: #f5f5f5; + border: 1px solid #e3e3e3; + border-radius: 4px; + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05); +} +.well blockquote { + border-color: #ddd; + border-color: rgba(0, 0, 0, .15); +} +.well-lg { + padding: 24px; + border-radius: 6px; +} +.well-sm { + padding: 9px; + border-radius: 3px; +} +.close { + float: right; + font-size: 21px; + font-weight: bold; + line-height: 1; + color: #000; + text-shadow: 0 1px 0 #fff; + filter: alpha(opacity=20); + opacity: .2; +} +.close:hover, +.close:focus { + color: #000; + text-decoration: none; + cursor: pointer; + filter: alpha(opacity=50); + opacity: .5; +} +button.close { + -webkit-appearance: none; + padding: 0; + cursor: pointer; + background: transparent; + border: 0; +} +.modal-open { + overflow: hidden; +} +.modal { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1050; + display: none; + overflow: hidden; + -webkit-overflow-scrolling: touch; + outline: 0; +} +.modal.fade .modal-dialog { + -webkit-transition: -webkit-transform .3s ease-out; + -o-transition: -o-transform .3s ease-out; + transition: transform .3s ease-out; + -webkit-transform: translate(0, -25%); + -ms-transform: translate(0, -25%); + -o-transform: translate(0, -25%); + transform: translate(0, -25%); +} +.modal.in .modal-dialog { + -webkit-transform: translate(0, 0); + -ms-transform: translate(0, 0); + -o-transform: translate(0, 0); + transform: translate(0, 0); +} +.modal-open .modal { + overflow-x: hidden; + overflow-y: auto; +} +.modal-dialog { + position: relative; + width: auto; + margin: 10px; +} +.modal-content { + position: relative; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #999; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + outline: 0; + -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5); + box-shadow: 0 3px 9px rgba(0, 0, 0, .5); +} +.modal-backdrop { + position: fixed; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1040; + background-color: #000; +} +.modal-backdrop.fade { + filter: alpha(opacity=0); + opacity: 0; +} +.modal-backdrop.in { + filter: alpha(opacity=50); + opacity: .5; +} +.modal-header { + padding: 15px; + border-bottom: 1px solid #e5e5e5; +} +.modal-header .close { + margin-top: -2px; +} +.modal-title { + margin: 0; + line-height: 1.42857143; +} +.modal-body { + position: relative; + padding: 15px; +} +.modal-footer { + padding: 15px; + text-align: right; + border-top: 1px solid #e5e5e5; +} +.modal-footer .btn + .btn { + margin-bottom: 0; + margin-left: 5px; +} +.modal-footer .btn-group .btn + .btn { + margin-left: -1px; +} +.modal-footer .btn-block + .btn-block { + margin-left: 0; +} +.modal-scrollbar-measure { + position: absolute; + top: -9999px; + width: 50px; + height: 50px; + overflow: scroll; +} +@media (min-width: 768px) { + .modal-dialog { + width: 600px; + margin: 30px auto; + } + .modal-content { + -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5); + box-shadow: 0 5px 15px rgba(0, 0, 0, .5); + } + .modal-sm { + width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg { + width: 900px; + } +} +.tooltip { + position: absolute; + z-index: 1070; + display: block; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 12px; + font-style: normal; + font-weight: normal; + line-height: 1.42857143; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + filter: alpha(opacity=0); + opacity: 0; + + line-break: auto; +} +.tooltip.in { + filter: alpha(opacity=90); + opacity: .9; +} +.tooltip.top { + padding: 5px 0; + margin-top: -3px; +} +.tooltip.right { + padding: 0 5px; + margin-left: 3px; +} +.tooltip.bottom { + padding: 5px 0; + margin-top: 3px; +} +.tooltip.left { + padding: 0 5px; + margin-left: -3px; +} +.tooltip-inner { + max-width: 200px; + padding: 3px 8px; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 4px; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.tooltip.top .tooltip-arrow { + bottom: 0; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-left .tooltip-arrow { + right: 5px; + bottom: 0; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.top-right .tooltip-arrow { + bottom: 0; + left: 5px; + margin-bottom: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip.right .tooltip-arrow { + top: 50%; + left: 0; + margin-top: -5px; + border-width: 5px 5px 5px 0; + border-right-color: #000; +} +.tooltip.left .tooltip-arrow { + top: 50%; + right: 0; + margin-top: -5px; + border-width: 5px 0 5px 5px; + border-left-color: #000; +} +.tooltip.bottom .tooltip-arrow { + top: 0; + left: 50%; + margin-left: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-left .tooltip-arrow { + top: 0; + right: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.tooltip.bottom-right .tooltip-arrow { + top: 0; + left: 5px; + margin-top: -5px; + border-width: 0 5px 5px; + border-bottom-color: #000; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1060; + display: none; + max-width: 276px; + padding: 1px; + font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; + font-size: 14px; + font-style: normal; + font-weight: normal; + line-height: 1.42857143; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + word-wrap: normal; + white-space: normal; + background-color: #fff; + -webkit-background-clip: padding-box; + background-clip: padding-box; + border: 1px solid #ccc; + border: 1px solid rgba(0, 0, 0, .2); + border-radius: 6px; + -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2); + box-shadow: 0 5px 10px rgba(0, 0, 0, .2); + + line-break: auto; +} +.popover.top { + margin-top: -10px; +} +.popover.right { + margin-left: 10px; +} +.popover.bottom { + margin-top: 10px; +} +.popover.left { + margin-left: -10px; +} +.popover-title { + padding: 8px 14px; + margin: 0; + font-size: 14px; + background-color: #f7f7f7; + border-bottom: 1px solid #ebebeb; + border-radius: 5px 5px 0 0; +} +.popover-content { + padding: 9px 14px; +} +.popover > .arrow, +.popover > .arrow:after { + position: absolute; + display: block; + width: 0; + height: 0; + border-color: transparent; + border-style: solid; +} +.popover > .arrow { + border-width: 11px; +} +.popover > .arrow:after { + content: ""; + border-width: 10px; +} +.popover.top > .arrow { + bottom: -11px; + left: 50%; + margin-left: -11px; + border-top-color: #999; + border-top-color: rgba(0, 0, 0, .25); + border-bottom-width: 0; +} +.popover.top > .arrow:after { + bottom: 1px; + margin-left: -10px; + content: " "; + border-top-color: #fff; + border-bottom-width: 0; +} +.popover.right > .arrow { + top: 50%; + left: -11px; + margin-top: -11px; + border-right-color: #999; + border-right-color: rgba(0, 0, 0, .25); + border-left-width: 0; +} +.popover.right > .arrow:after { + bottom: -10px; + left: 1px; + content: " "; + border-right-color: #fff; + border-left-width: 0; +} +.popover.bottom > .arrow { + top: -11px; + left: 50%; + margin-left: -11px; + border-top-width: 0; + border-bottom-color: #999; + border-bottom-color: rgba(0, 0, 0, .25); +} +.popover.bottom > .arrow:after { + top: 1px; + margin-left: -10px; + content: " "; + border-top-width: 0; + border-bottom-color: #fff; +} +.popover.left > .arrow { + top: 50%; + right: -11px; + margin-top: -11px; + border-right-width: 0; + border-left-color: #999; + border-left-color: rgba(0, 0, 0, .25); +} +.popover.left > .arrow:after { + right: 1px; + bottom: -10px; + content: " "; + border-right-width: 0; + border-left-color: #fff; +} +.carousel { + position: relative; +} +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner > .item { + position: relative; + display: none; + -webkit-transition: .6s ease-in-out left; + -o-transition: .6s ease-in-out left; + transition: .6s ease-in-out left; +} +.carousel-inner > .item > img, +.carousel-inner > .item > a > img { + line-height: 1; +} +@media all and (transform-3d), (-webkit-transform-3d) { + .carousel-inner > .item { + -webkit-transition: -webkit-transform .6s ease-in-out; + -o-transition: -o-transform .6s ease-in-out; + transition: transform .6s ease-in-out; + + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-perspective: 1000px; + perspective: 1000px; + } + .carousel-inner > .item.next, + .carousel-inner > .item.active.right { + left: 0; + -webkit-transform: translate3d(100%, 0, 0); + transform: translate3d(100%, 0, 0); + } + .carousel-inner > .item.prev, + .carousel-inner > .item.active.left { + left: 0; + -webkit-transform: translate3d(-100%, 0, 0); + transform: translate3d(-100%, 0, 0); + } + .carousel-inner > .item.next.left, + .carousel-inner > .item.prev.right, + .carousel-inner > .item.active { + left: 0; + -webkit-transform: translate3d(0, 0, 0); + transform: translate3d(0, 0, 0); + } +} +.carousel-inner > .active, +.carousel-inner > .next, +.carousel-inner > .prev { + display: block; +} +.carousel-inner > .active { + left: 0; +} +.carousel-inner > .next, +.carousel-inner > .prev { + position: absolute; + top: 0; + width: 100%; +} +.carousel-inner > .next { + left: 100%; +} +.carousel-inner > .prev { + left: -100%; +} +.carousel-inner > .next.left, +.carousel-inner > .prev.right { + left: 0; +} +.carousel-inner > .active.left { + left: -100%; +} +.carousel-inner > .active.right { + left: 100%; +} +.carousel-control { + position: absolute; + top: 0; + bottom: 0; + left: 0; + width: 15%; + font-size: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); + background-color: rgba(0, 0, 0, 0); + filter: alpha(opacity=50); + opacity: .5; +} +.carousel-control.left { + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control.right { + right: 0; + left: auto; + background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5))); + background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1); + background-repeat: repeat-x; +} +.carousel-control:hover, +.carousel-control:focus { + color: #fff; + text-decoration: none; + filter: alpha(opacity=90); + outline: 0; + opacity: .9; +} +.carousel-control .icon-prev, +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-left, +.carousel-control .glyphicon-chevron-right { + position: absolute; + top: 50%; + z-index: 5; + display: inline-block; + margin-top: -10px; +} +.carousel-control .icon-prev, +.carousel-control .glyphicon-chevron-left { + left: 50%; + margin-left: -10px; +} +.carousel-control .icon-next, +.carousel-control .glyphicon-chevron-right { + right: 50%; + margin-right: -10px; +} +.carousel-control .icon-prev, +.carousel-control .icon-next { + width: 20px; + height: 20px; + font-family: serif; + line-height: 1; +} +.carousel-control .icon-prev:before { + content: '\2039'; +} +.carousel-control .icon-next:before { + content: '\203a'; +} +.carousel-indicators { + position: absolute; + bottom: 10px; + left: 50%; + z-index: 15; + width: 60%; + padding-left: 0; + margin-left: -30%; + text-align: center; + list-style: none; +} +.carousel-indicators li { + display: inline-block; + width: 10px; + height: 10px; + margin: 1px; + text-indent: -999px; + cursor: pointer; + background-color: #000 \9; + background-color: rgba(0, 0, 0, 0); + border: 1px solid #fff; + border-radius: 10px; +} +.carousel-indicators .active { + width: 12px; + height: 12px; + margin: 0; + background-color: #fff; +} +.carousel-caption { + position: absolute; + right: 15%; + bottom: 20px; + left: 15%; + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: #fff; + text-align: center; + text-shadow: 0 1px 2px rgba(0, 0, 0, .6); +} +.carousel-caption .btn { + text-shadow: none; +} +@media screen and (min-width: 768px) { + .carousel-control .glyphicon-chevron-left, + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-prev, + .carousel-control .icon-next { + width: 30px; + height: 30px; + margin-top: -10px; + font-size: 30px; + } + .carousel-control .glyphicon-chevron-left, + .carousel-control .icon-prev { + margin-left: -10px; + } + .carousel-control .glyphicon-chevron-right, + .carousel-control .icon-next { + margin-right: -10px; + } + .carousel-caption { + right: 20%; + left: 20%; + padding-bottom: 30px; + } + .carousel-indicators { + bottom: 20px; + } +} +.clearfix:before, +.clearfix:after, +.dl-horizontal dd:before, +.dl-horizontal dd:after, +.container:before, +.container:after, +.container-fluid:before, +.container-fluid:after, +.row:before, +.row:after, +.form-horizontal .form-group:before, +.form-horizontal .form-group:after, +.btn-toolbar:before, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:before, +.btn-group-vertical > .btn-group:after, +.nav:before, +.nav:after, +.navbar:before, +.navbar:after, +.navbar-header:before, +.navbar-header:after, +.navbar-collapse:before, +.navbar-collapse:after, +.pager:before, +.pager:after, +.panel-body:before, +.panel-body:after, +.modal-header:before, +.modal-header:after, +.modal-footer:before, +.modal-footer:after { + display: table; + content: " "; +} +.clearfix:after, +.dl-horizontal dd:after, +.container:after, +.container-fluid:after, +.row:after, +.form-horizontal .form-group:after, +.btn-toolbar:after, +.btn-group-vertical > .btn-group:after, +.nav:after, +.navbar:after, +.navbar-header:after, +.navbar-collapse:after, +.pager:after, +.panel-body:after, +.modal-header:after, +.modal-footer:after { + clear: both; +} +.center-block { + display: block; + margin-right: auto; + margin-left: auto; +} +.pull-right { + float: right !important; +} +.pull-left { + float: left !important; +} +.hide { + display: none !important; +} +.show { + display: block !important; +} +.invisible { + visibility: hidden; +} +.text-hide { + font: 0/0 a; + color: transparent; + text-shadow: none; + background-color: transparent; + border: 0; +} +.hidden { + display: none !important; +} +.affix { + position: fixed; +} +@-ms-viewport { + width: device-width; +} +.visible-xs, +.visible-sm, +.visible-md, +.visible-lg { + display: none !important; +} +.visible-xs-block, +.visible-xs-inline, +.visible-xs-inline-block, +.visible-sm-block, +.visible-sm-inline, +.visible-sm-inline-block, +.visible-md-block, +.visible-md-inline, +.visible-md-inline-block, +.visible-lg-block, +.visible-lg-inline, +.visible-lg-inline-block { + display: none !important; +} +@media (max-width: 767px) { + .visible-xs { + display: block !important; + } + table.visible-xs { + display: table !important; + } + tr.visible-xs { + display: table-row !important; + } + th.visible-xs, + td.visible-xs { + display: table-cell !important; + } +} +@media (max-width: 767px) { + .visible-xs-block { + display: block !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline { + display: inline !important; + } +} +@media (max-width: 767px) { + .visible-xs-inline-block { + display: inline-block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm { + display: block !important; + } + table.visible-sm { + display: table !important; + } + tr.visible-sm { + display: table-row !important; + } + th.visible-sm, + td.visible-sm { + display: table-cell !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-block { + display: block !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline { + display: inline !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .visible-sm-inline-block { + display: inline-block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md { + display: block !important; + } + table.visible-md { + display: table !important; + } + tr.visible-md { + display: table-row !important; + } + th.visible-md, + td.visible-md { + display: table-cell !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-block { + display: block !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline { + display: inline !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .visible-md-inline-block { + display: inline-block !important; + } +} +@media (min-width: 1200px) { + .visible-lg { + display: block !important; + } + table.visible-lg { + display: table !important; + } + tr.visible-lg { + display: table-row !important; + } + th.visible-lg, + td.visible-lg { + display: table-cell !important; + } +} +@media (min-width: 1200px) { + .visible-lg-block { + display: block !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline { + display: inline !important; + } +} +@media (min-width: 1200px) { + .visible-lg-inline-block { + display: inline-block !important; + } +} +@media (max-width: 767px) { + .hidden-xs { + display: none !important; + } +} +@media (min-width: 768px) and (max-width: 991px) { + .hidden-sm { + display: none !important; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .hidden-md { + display: none !important; + } +} +@media (min-width: 1200px) { + .hidden-lg { + display: none !important; + } +} +.visible-print { + display: none !important; +} +@media print { + .visible-print { + display: block !important; + } + table.visible-print { + display: table !important; + } + tr.visible-print { + display: table-row !important; + } + th.visible-print, + td.visible-print { + display: table-cell !important; + } +} +.visible-print-block { + display: none !important; +} +@media print { + .visible-print-block { + display: block !important; + } +} +.visible-print-inline { + display: none !important; +} +@media print { + .visible-print-inline { + display: inline !important; + } +} +.visible-print-inline-block { + display: none !important; +} +@media print { + .visible-print-inline-block { + display: inline-block !important; + } +} +@media print { + .hidden-print { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap.css.map */ diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap.css.map b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.css.map new file mode 100644 index 0000000..09f8cda --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"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AW,iBAAA;CHsR9C;AGrRmC;EAAW,iBAAA;CHwR9C;AGvRmC;EAAW,iBAAA;CH0R9C;AGzRmC;EAAW,iBAAA;CH4R9C;AG3RmC;EAAW,iBAAA;CH8R9C;AG7RmC;EAAW,iBAAA;CHgS9C;AG/RmC;EAAW,iBAAA;CHkS9C;AGjSmC;EAAW,iBAAA;CHoS9C;AGnSmC;EAAW,iBAAA;CHsS9C;AGrSmC;EAAW,iBAAA;CHwS9C;AGvSmC;EAAW,iBAAA;CH0S9C;AGzSmC;EAAW,iBAAA;CH4S9C;AG3SmC;EAAW,iBAAA;CH8S9C;AG7SmC;EAAW,iBAAA;CHgT9C;AG/SmC;EAAW,iBAAA;CHkT9C;AGjTmC;EAAW,iBAAA;CHoT9C;AGnTmC;EAAW,iBAAA;CHsT9C;AGrTmC;EAAW,iBAAA;CHwT9C;AGvTmC;EAAW,iBAAA;CH0T9C;AGzTmC;EAAW,iBAAA;CH4T9C;AG3TmC;EAAW,iBAAA;CH8T9C;AG7TmC;EAAW,iBAAA;CHgU9C;AG/TmC;EAAW,iBAAA;CHkU9C;AGjUmC;EAAW,iBAAA;CHoU9C;AGnUmC;EAAW,iBAAA;CHsU9C;AGrUmC;EAAW,iBAAA;CHwU9C;AGvUmC;EAAW,iBAAA;CH0U9C;AGzUmC;EAAW,iBAAA;CH4U9C;AG3UmC;EAAW,iBAAA;CH8U9C;AG7UmC;EAAW,iBAAA;CHgV9C;AG/UmC;EAAW,iBAAA;CHkV9C;AGjVmC;EAAW,iBAAA;CHoV9C;AGnVmC;EAAW,iBAAA;CHsV9C;AGrVmC;EAAW,iBAAA;CHwV9C;AGvVmC;EAAW,iBAAA;CH0V9C;AGzVmC;EAAW,iBAAA;CH4V9C;AG3VmC;EAAW,iBAAA;CH8V9C;AG7VmC;EAAW,iBAAA;CHgW9C;AG/VmC;EAAW,iBAAA;CHkW9C;AGjWmC;EAAW,iBAAA;CHoW9C;AGnWmC;EAAW,iBAAA;CHsW9C;AGrWmC;EAAW,iBAAA;CHwW9C;AGvWmC;EAAW,iBAAA;CH0W9C;AGzWmC;EAAW,iBAAA;CH4W9C;AG3WmC;EAAW,iBAAA;CH8W9C;AG7WmC;EAAW,iBAAA;CHgX9C;AG/WmC;EAAW,iBAAA;CHkX9C;AGjXmC;EAAW,iBAAA;CHoX9C;AGnXmC;EAAW,iBAAA;CHsX9C;AGrXmC;EAAW,iBAAA;CHwX9C;AGvXmC;EAAW,iBAAA;CH0X9C;AGzXmC;EAAW,iBAAA;CH4X9C;AG3XmC;EAAW,iBAAA;CH8X9C;AG7XmC;EAAW,iBAAA;CHgY9C;AG/XmC;EAAW,iBAAA;CHkY9C;AGjYmC;EAAW,iBAAA;CHoY9C;AGnYmC;EAAW,iBAAA;CHsY9C;AGrYmC;EAAW,iBAAA;CHwY9C;AGvYmC;EAAW,iBAAA;CH0Y9C;AGzYmC;EAAW,iBAAA;CH4Y9C;AG3YmC;EAAW,iBAAA;CH8Y9C;AG7YmC;EAAW,iBAAA;CHgZ9C;AG/YmC;EAAW,iBAAA;CHkZ9C;AGjZmC;EAAW,iBAAA;CHoZ9C;AGnZmC;EAAW,iBAAA;CHsZ9C;AGrZmC;EAAW,iBAAA;CHwZ9C;AGvZmC;EAAW,iBAAA;CH0Z9C;AGzZmC;EAAW,iBAAA;CH4Z9C;AG3ZmC;EAAW,iBAAA;CH8Z9C;AG7ZmC;EAAW,iBAAA;CHga9C;AG/ZmC;EAAW,iBAAA;CHka9C;AGjamC;EAAW,iBAAA;CHoa9C;AGnamC;EAAW,iBAAA;CHsa9C;AGramC;EAAW,iBAAA;CHwa9C;AGvamC;EAAW,iBAAA;CH0a9C;AGzamC;EAAW,iBAAA;CH4a9C;AG3amC;EAAW,iBAAA;CH8a9C;AG7amC;EAAW,iBAAA;CHgb9C;AG/amC;EAAW,iBAAA;CHkb9C;AGjbmC;EAAW,iBAAA;CHob9C;AGnbmC;EAAW,iBAAA;CHsb9C;AGrbmC;EAAW,iBAAA;CHwb9C;AGvbmC;EAAW,iBAAA;CH0b9C;AGzbmC;EAAW,iBAAA;CH4b9C;AG3bmC;EAAW,iBAAA;CH8b9C;AG7bmC;EAAW,iBAAA;CHgc9C;AG/bmC;EAAW,iBAAA;CHkc9C;AGjcmC;EAAW,iBAAA;CHoc9C;AGncmC;EAAW,iBAAA;CHsc9C;AGrcmC;EAAW,iBAAA;CHwc9C;AGvcmC;EAAW,iBAAA;CH0c9C;AGzcmC;EAAW,iBAAA;CH4c9C;AG3cmC;EAAW,iBAAA;CH8c9C;AG7cmC;EAAW,iBAAA;CHgd9C;AG/cmC;EAAW,iBAAA;CHkd9C;AGjdmC;EAAW,iBAAA;CHod9C;AGndmC;EAAW,iBAAA;CHsd9C;AGrdmC;EAAW,iBAAA;CHwd9C;AGvdmC;EAAW,iBAAA;CH0d9C;AGzdmC;EAAW,iBAAA;CH4d9C;AG3dmC;EAAW,iBAAA;CH8d9C;AG7dmC;EAAW,iBAAA;CHge9C;AG/dmC;EAAW,iBAAA;CHke9C;AGjemC;EAAW,iBAAA;CHoe9C;AGnemC;EAAW,iBAAA;CHse9C;AGremC;EAAW,iBAAA;CHwe9C;AGvemC;EAAW,iBAAA;CH0e9C;AGzemC;EAAW,iBAAA;CH4e9C;AG3emC;EAAW,iBAAA;CH8e9C;AG7emC;EAAW,iBAAA;CHgf9C;AG/emC;EAAW,iBAAA;CHkf9C;AGjfmC;EAAW,iBAAA;CHof9C;AGnfmC;EAAW,iBAAA;CHsf9C;AGrfmC;EAAW,iBAAA;CHwf9C;AGvfmC;EAAW,iBAAA;CH0f9C;AGzfmC;EAAW,iBAAA;CH4f9C;AG3fmC;EAAW,iBAAA;CH8f9C;AG7fmC;EAAW,iBAAA;CHggB9C;AG/fmC;EAAW,iBAAA;CHkgB9C;AGjgBmC;EAAW,iBAAA;CHogB9C;AGngBmC;EAAW,iBAAA;CHsgB9C;AGrgBmC;EAAW,iBAAA;CHwgB9C;AGvgBmC;EAAW,iBAAA;CH0gB9C;AGzgBmC;EAAW,iBAAA;CH4gB9C;AG3gBmC;EAAW,iBAAA;CH8gB9C;AG7gBmC;EAAW,iBAAA;CHghB9C;AG/gBmC;EAAW,iBAAA;CHkhB9C;AGjhBmC;EAAW,iBAAA;CHohB9C;AGnhBmC;EAAW,iBAAA;CHshB9C;AGrhBmC;EAAW,iBAAA;CHwhB9C;AGvhBmC;EAAW,iBAAA;CH0hB9C;AGzhBmC;EAAW,iBAAA;CH4hB9C;AG3hBmC;EAAW,iBAAA;CH8hB9C;AG7hBmC;EAAW,iBAAA;CHgiB9C;AG/hBmC;EAAW,iBAAA;CHkiB9C;AGjiBmC;EAAW,iBAAA;CHoiB9C;AGniBmC;EAAW,iBAAA;CHsiB9C;AGriBmC;EAAW,iBAAA;CHwiB9C;AGviBmC;EAAW,iBAAA;CH0iB9C;AGziBmC;EAAW,iBAAA;CH4iB9C;AG3iBmC;EAAW,iBAAA;CH8iB9C;AG7iBmC;EAAW,iBAAA;CHgjB9C;AG/iBmC;EAAW,iBAAA;CHkjB9C;AGjjBmC;EAAW,iBAAA;CHojB9C;AGnjBmC;EAAW,iBAAA;CHsjB9C;AGrjBmC;EAAW,iBAAA;CHwjB9C;AGvjBmC;EAAW,iBAAA;CH0jB9C;AGzjBmC;EAAW,iBAAA;CH4jB9C;AG3jBmC;EAAW,iBAAA;CH8jB9C;AG7jBmC;EAAW,iBAAA;CHgkB9C;AG/jBmC;EAAW,iBAAA;CHkkB9C;AGjkBmC;EAAW,iBAAA;CHokB9C;AGnkBmC;EAAW,iBAAA;CHskB9C;AGrkBmC;EAAW,iBAAA;CHwkB9C;AGvkBmC;EAAW,iBAAA;CH0kB9C;AGzkBmC;EAAW,iBAAA;CH4kB9C;AG3kBmC;EAAW,iBAAA;CH8kB9C;AG7kBmC;EAAW,iBAAA;CHglB9C;AG/kBmC;EAAW,iBAAA;CHklB9C;AGjlBmC;EAAW,iBAAA;CHolB9C;AGnlBmC;EAAW,iBAAA;CHslB9C;AGrlBmC;EAAW,iBAAA;CHwlB9C;AGvlBmC;EAAW,iBAAA;CH0lB9C;AGzlBmC;EAAW,iBAAA;CH4lB9C;AG3lBmC;EAAW,iBAAA;CH8lB9C;AG7lBmC;EAAW,iBAAA;CHgmB9C;AG/lBmC;EAAW,iBAAA;CHkmB9C;AGjmBmC;EAAW,iBAAA;CHomB9C;AGnmBmC;EAAW,iBAAA;CHsmB9C;AGrmBmC;EAAW,iBAAA;CHwmB9C;AGvmBmC;EAAW,iBAAA;CH0mB9C;AGzmBmC;EAAW,iBAAA;CH4mB9C;AG3mBmC;EAAW,iBAAA;CH8mB9C;AG7mBmC;EAAW,iBAAA;CHgnB9C;AG/mBmC;EAAW,iBAAA;CHknB9C;AGjnBmC;EAAW,iBAAA;CHonB9C;AGnnBmC;EAAW,iBAAA;CHsnB9C;AGrnBmC;EAAW,iBAAA;CHwnB9C;AGvnBmC;EAAW,iBAAA;CH0nB9C;AGznBmC;EAAW,iBAAA;CH4nB9C;AG3nBmC;EAAW,iBAAA;CH8nB9C;AG7nBmC;EAAW,iBAAA;CHgoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AG/nBmC;EAAW,iBAAA;CHkoB9C;AGjoBmC;EAAW,iBAAA;CHooB9C;AGnoBmC;EAAW,iBAAA;CHsoB9C;AGroBmC;EAAW,iBAAA;CHwoB9C;AGvoBmC;EAAW,iBAAA;CH0oB9C;AGzoBmC;EAAW,iBAAA;CH4oB9C;AG3oBmC;EAAW,iBAAA;CH8oB9C;AG7oBmC;EAAW,iBAAA;CHgpB9C;AG/oBmC;EAAW,iBAAA;CHkpB9C;AGjpBmC;EAAW,iBAAA;CHopB9C;AGnpBmC;EAAW,iBAAA;CHspB9C;AGrpBmC;EAAW,iBAAA;CHwpB9C;AGvpBmC;EAAW,iBAAA;CH0pB9C;AGzpBmC;EAAW,iBAAA;CH4pB9C;AG3pBmC;EAAW,iBAAA;CH8pB9C;AG7pBmC;EAAW,iBAAA;CHgqB9C;AG/pBmC;EAAW,iBAAA;CHkqB9C;AGjqBmC;EAAW,iBAAA;CHoqB9C;AGnqBmC;EAAW,iBAAA;CHsqB9C;AGrqBmC;EAAW,iBAAA;CHwqB9C;AGvqBmC;EAAW,iBAAA;CH0qB9C;AGzqBmC;EAAW,iBAAA;CH4qB9C;AG3qBmC;EAAW,iBAAA;CH8qB9C;AG7qBmC;EAAW,iBAAA;CHgrB9C;AG/qBmC;EAAW,iBAAA;CHkrB9C;AGjrBmC;EAAW,iBAAA;CHorB9C;AGnrBmC;EAAW,iBAAA;CHsrB9C;AGrrBmC;EAAW,iBAAA;CHwrB9C;AGvrBmC;EAAW,iBAAA;CH0rB9C;AGzrBmC;EAAW,iBAAA;CH4rB9C;AG3rBmC;EAAW,iBAAA;CH8rB9C;AG7rBmC;EAAW,iBAAA;CHgsB9C;AG/rBmC;EAAW,iBAAA;CHksB9C;AGjsBmC;EAAW,iBAAA;CHosB9C;AGnsBmC;EAAW,iBAAA;CHssB9C;AGrsBmC;EAAW,iBAAA;CHwsB9C;AGvsBmC;EAAW,iBAAA;CH0sB9C;AGzsBmC;EAAW,iBAAA;CH4sB9C;AG3sBmC;EAAW,iBAAA;CH8sB9C;AG7sBmC;EAAW,iBAAA;CHgtB9C;AG/sBmC;EAAW,iBAAA;CHktB9C;AGjtBmC;EAAW,iBAAA;CHotB9C;AGntBmC;EAAW,iBAAA;CHstB9C;AGrtBmC;EAAW,iBAAA;CHwtB9C;AGvtBmC;EAAW,iBAAA;CH0tB9C;AGztBmC;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CE,oBAAA;CfwkDH;AezkDC;EACE,oBAAA;Cf2kDH;Ae5kDC;EACE,WAAA;Cf8kDH;Ae/kDC;EACE,oBAAA;CfilDH;AellDC;EACE,mBAAA;CfolDH;AehlDC;EACE,YAAA;CfklDH;AelmDC;EACE,WAAA;CfomDH;AermDC;EACE,mBAAA;CfumDH;AexmDC;EACE,mBAAA;Cf0mDH;Ae3mDC;EACE,UAAA;Cf6mDH;Ae9mDC;EACE,mBAAA;CfgnDH;AejnDC;EACE,mBAAA;CfmnDH;AepnDC;EACE,UAAA;CfsnDH;AevnDC;EACE,mBAAA;CfynDH;Ae1nDC;EACE,mBAAA;Cf4nDH;Ae7nDC;EACE,UAAA;Cf+nDH;AehoDC;EACE,mBAAA;CfkoDH;AenoDC;EACE,kBAAA;CfqoDH;AejoDC;EACE,WAAA;CfmoDH;AernDC;EACE,kBAAA;CfunDH;AexnDC;EACE,0BAAA;Cf0nDH;Ae3nDC;EACE,0BAAA;Cf6nDH;Ae9nDC;EACE,iBAAA;CfgoDH;AejoDC;EACE,0BAAA;CfmoDH;AepoDC;EACE,0BAAA;CfsoDH;AevoDC;EACE,iBAAA;CfyoDH;Ae1oDC;EACE,0BAAA;Cf4oDH;Ae7oDC;EACE,0BAAA;Cf+oDH;AehpDC;EACE,iBAAA;CfkpDH;AenpDC;EACE,0BAAA;CfqpDH;AetpDC;EACE,yBAAA;CfwpDH;AezpDC;EACE,gBAAA;Cf2pDH;Aa3pDD;EElCI;IACE,YAAA;GfgsDH;EezrDD;IACE,YAAA;Gf2rDD;Ee5rDD;IACE,oBAAA;Gf8rDD;Ee/rDD;IACE,oBAAA;GfisDD;EelsDD;IACE,WAAA;GfosDD;EersDD;IACE,oBAAA;GfusDD;EexsDD;IACE,oBAAA;Gf0sDD;Ee3sDD;IACE,WAAA;Gf6sDD;Ee9sDD;IACE,oBAAA;GfgtDD;EejtDD;IACE,oBAAA;GfmtDD;EeptDD;IACE,WAAA;GfstDD;EevtDD;IACE,oBAAA;GfytDD;Ee1tDD;IACE,mBAAA;Gf4tDD;Ee9sDD;IACE,YAAA;GfgtDD;EejtDD;IACE,oBAAA;GfmtDD;EeptDD;IACE,oBAAA;GfstDD;EevtDD;IACE,WAAA;GfytDD;Ee1tDD;IACE,oBAAA;Gf4tDD;Ee7tDD;IACE,oBAAA;Gf+tDD;EehuDD;IACE,WAAA;GfkuDD;EenuDD;IACE,oBAAA;GfquDD;EetuDD;IACE,oBAAA;GfwuDD;EezuDD;IACE,WAAA;Gf2uDD;Ee5uDD;IACE,oBAAA;Gf8uDD;Ee/uDD;IACE,mBAAA;GfivDD;Ee7uDD;IACE,YAAA;Gf+uDD;Ee/vDD;IACE,WAAA;GfiwDD;EelwDD;IACE,mBAAA;GfowDD;EerwDD;IACE,mBAAA;GfuwDD;EexwDD;IACE,UAAA;Gf0wDD;Ee3wDD;IACE,mBAAA;Gf6wDD;Ee9wDD;IACE,mBAAA;GfgxDD;EejxDD;IACE,UAAA;GfmxDD;EepxDD;IACE,mBAAA;GfsxDD;EevxDD;IACE,mBAAA;GfyxDD;Ee1xDD;IACE,UAAA;Gf4xDD;Ee7xDD;IACE,mBAAA;Gf+xDD;EehyDD;IACE,kBAAA;GfkyDD;Ee9xDD;IACE,WAAA;GfgyDD;EelxDD;IACE,kBAAA;GfoxDD;EerxDD;IACE,0BAAA;GfuxDD;EexxDD;IACE,0BAAA;Gf0xDD;Ee3xDD;IACE,iBAAA;Gf6xDD;Ee9xDD;IACE,0BAAA;GfgyDD;EejyDD;IACE,0BAAA;GfmyDD;EepyDD;IACE,iBAAA;GfsyDD;EevyDD;IACE,0BAAA;GfyyDD;Ee1yDD;IACE,0BAAA;Gf4yDD;Ee7yDD;IACE,iBAAA;Gf+yDD;EehzDD;IACE,0BAAA;GfkzDD;EenzDD;IACE,yBAAA;GfqzDD;EetzDD;IACE,gBAAA;GfwzDD;CACF;AahzDD;EE3CI;IACE,YAAA;Gf81DH;Eev1DD;IACE,YAAA;Gfy1DD;Ee11DD;IACE,oBAAA;Gf41DD;Ee71DD;IACE,oBAAA;Gf+1DD;Eeh2DD;IACE,WAAA;Gfk2DD;Een2DD;IACE,oBAAA;Gfq2DD;Eet2DD;IACE,oBAAA;Gfw2DD;Eez2DD;IACE,WAAA;Gf22DD;Ee52DD;IACE,oBAAA;Gf82DD;Ee/2DD;IACE,oBAAA;Gfi3DD;Eel3DD;IACE,WAAA;Gfo3DD;Eer3DD;IACE,oBAAA;Gfu3DD;Eex3DD;IACE,mBAAA;Gf03DD;Ee52DD;IACE,YAAA;Gf82DD;Ee/2DD;IACE,oBAAA;Gfi3DD;Eel3DD;IACE,oBAAA;Gfo3DD;Eer3DD;IACE,WAAA;Gfu3DD;Eex3DD;IACE,oBAAA;Gf03DD;Ee33DD;IACE,oBAAA;Gf63DD;Ee93DD;IACE,WAAA;Gfg4DD;Eej4DD;IACE,oBAAA;Gfm4DD;Eep4DD;IACE,oBAAA;Gfs4DD;Eev4DD;IACE,WAAA;Gfy4DD;Ee14DD;IACE,oBAAA;Gf44DD;Ee74DD;IACE,mBAAA;Gf+4DD;Ee34DD;IACE,YAAA;Gf64DD;Ee75DD;IACE,WAAA;Gf+5DD;Eeh6DD;IACE,mBAAA;Gfk6DD;Een6DD;IACE,mBAAA;Gfq6DD;Eet6DD;IACE,UAAA;Gfw6DD;Eez6DD;IACE,mBAAA;Gf26DD;Ee56DD;IACE,mBAAA;Gf86DD;Ee/6DD;IACE,UAAA;Gfi7DD;Eel7DD;IACE,mBAAA;Gfo7DD;Eer7DD;IACE,mBAAA;Gfu7DD;Eex7DD;IACE,UAAA;Gf07DD;Ee37DD;IACE,mBAAA;Gf67DD;Ee97DD;IACE,kBAAA;Gfg8DD;Ee57DD;IACE,WAAA;Gf87DD;Eeh7DD;IACE,kBAAA;Gfk7DD;Een7DD;IACE,0BAAA;Gfq7DD;Eet7DD;IACE,0BAAA;Gfw7DD;Eez7DD;IACE,iBAAA;Gf27DD;Ee57DD;IACE,0BAAA;Gf87DD;Ee/7DD;IACE,0BAAA;Gfi8DD;Eel8DD;IACE,iBAAA;Gfo8DD;Eer8DD;IACE,0BAAA;Gfu8DD;Eex8DD;IACE,0BAAA;Gf08DD;Ee38DD;IACE,iBAAA;Gf68DD;Ee98DD;IACE,0BAAA;Gfg9DD;Eej9DD;IACE,yBAAA;Gfm9DD;Eep9DD;IACE,gBAAA;Gfs9DD;CACF;Aa38DD;EE9CI;IACE,YAAA;Gf4/DH;Eer/DD;IACE,YAAA;Gfu/DD;Eex/DD;IACE,oBAAA;Gf0/DD;Ee3/DD;IACE,oBAAA;Gf6/DD;Ee9/DD;IACE,WAAA;GfggED;EejgED;IACE,oBAAA;GfmgED;EepgED;IACE,oBAAA;GfsgED;EevgED;IACE,WAAA;GfygED;Ee1gED;IACE,oBAAA;Gf4gED;Ee7gED;IACE,oBAAA;Gf+gED;EehhED;IACE,WAAA;GfkhED;EenhED;IACE,oBAAA;GfqhED;EethED;IACE,mBAAA;GfwhED;Ee1gED;IACE,YAAA;Gf4gED;Ee7gED;IACE,oBAAA;Gf+gED;EehhED;IACE,oBAAA;GfkhED;EenhED;IACE,WAAA;GfqhED;EethED;IACE,oBAAA;GfwhED;EezhED;IACE,oBAAA;Gf2hED;Ee5hED;IACE,WAAA;Gf8hED;Ee/hED;IACE,oBAAA;GfiiED;EeliED;IACE,oBAAA;GfoiED;EeriED;IACE,WAAA;GfuiED;EexiED;IACE,oBAAA;Gf0iED;Ee3iED;IACE,mBAAA;Gf6iED;EeziED;IACE,YAAA;Gf2iED;Ee3jED;IACE,WAAA;Gf6jED;Ee9jED;IACE,mBAAA;GfgkED;EejkED;IACE,mBAAA;GfmkED;EepkED;IACE,UAAA;GfskED;EevkED;IACE,mBAAA;GfykED;Ee1kED;IACE,mBAAA;Gf4kED;Ee7kED;IACE,UAAA;Gf+kED;EehlED;IACE,mBAAA;GfklED;EenlED;IACE,mBAAA;GfqlED;EetlED;IACE,UAAA;GfwlED;EezlED;IACE,mBAAA;Gf2lED;Ee5lED;IACE,kBAAA;Gf8lED;Ee1lED;IACE,WAAA;Gf4lED;Ee9kED;IACE,kBAAA;GfglED;EejlED;IACE,0BAAA;GfmlED;EeplED;IACE,0BAAA;GfslED;EevlED;IACE,iBAAA;GfylED;Ee1lED;IACE,0BAAA;Gf4lED;Ee7lED;IACE,0BAAA;Gf+lED;EehmED;IACE,iBAAA;GfkmED;EenmED;IACE,0BAAA;GfqmED;EetmED;IACE,0BAAA;GfwmED;EezmED;IACE,iBAAA;Gf2mED;Ee5mED;IACE,0BAAA;Gf8mED;Ee/mED;IACE,yBAAA;GfinED;EelnED;IACE,gBAAA;GfonED;CACF;AgBxrED;EACE,8BAAA;ChB0rED;AgBxrED;EACE,iBAAA;EACA,oBAAA;EACA,eAAA;EACA,iBAAA;ChB0rED;AgBxrED;EACE,iBAAA;ChB0rED;AgBprED;EACE,YAAA;EACA,gBAAA;EACA,oBAAA;ChBsrED;AgBzrED;;;;;;EAWQ,aAAA;EACA,wBAAA;EACA,oBAAA;EACA,2BAAA;ChBsrEP;AgBpsED;EAoBI,uBAAA;EACA,8BAAA;ChBmrEH;AgBxsED;;;;;;EA8BQ,cAAA;ChBkrEP;AgBhtED;EAoCI,2BAAA;ChB+qEH;AgBntED;EAyCI,uBAAA;ChB6qEH;AgBtqED;;;;;;EAOQ,aAAA;ChBuqEP;AgB5pED;EACE,uBAAA;ChB8pED;AgB/pED;;;;;;EAQQ,uBAAA;ChB+pEP;AgBvqED;;EAeM,yBAAA;ChB4pEL;AgBlpED;EAEI,0BAAA;ChBmpEH;AgB1oED;EAEI,0BAAA;ChB2oEH;AgBloED;EACE,iBAAA;EACA,YAAA;EACA,sBAAA;ChBooED;AgB/nEG;;EACE,iBAAA;EACA,YAAA;EACA,oBAAA;ChBkoEL;AiB9wEC;;;;;;;;;;;;EAOI,0BAAA;CjBqxEL;AiB/wEC;;;;;EAMI,0BAAA;CjBgxEL;AiBnyEC;;;;;;;;;;;;EAOI,0BAAA;CjB0yEL;AiBpyEC;;;;;EAMI,0BAAA;CjBqyEL;AiBxzEC;;;;;;;;;;;;EAOI,0BAAA;CjB+zEL;AiBzzEC;;;;;EAMI,0BAAA;CjB0zEL;AiB70EC;;;;;;;;;;;;EAOI,0BAAA;CjBo1EL;AiB90EC;;;;;EAMI,0BAAA;CjB+0EL;AiBl2EC;;;;;;;;;;;;EAOI,0BAAA;CjBy2EL;AiBn2EC;;;;;EAMI,0BAAA;CjBo2EL;AgBltED;EACE,iBAAA;EACA,kBAAA;ChBotED;AgBvpED;EACA;IA3DI,YAAA;IACA,oBAAA;IACA,mBAAA;IACA,6CAAA;IACA,uBAAA;GhBqtED;EgB9pEH;IAnDM,iBAAA;GhBotEH;EgBjqEH;;;;;;IA1CY,oBAAA;GhBmtET;EgBzqEH;IAlCM,UAAA;GhB8sEH;EgB5qEH;;;;;;IAzBY,eAAA;GhB6sET;EgBprEH;;;;;;IArBY,gBAAA;GhBitET;EgB5rEH;;;;IARY,iBAAA;GhB0sET;CACF;AkBp6ED;EACE,WAAA;EACA,UAAA;EACA,UAAA;EAIA,aAAA;ClBm6ED;AkBh6ED;EACE,eAAA;EACA,YAAA;EACA,WAAA;EACA,oBAAA;EACA,gBAAA;EACA,qBAAA;EACA,eAAA;EACA,UAAA;EACA,iCAAA;ClBk6ED;AkB/5ED;EACE,sBAAA;EACA,gBAAA;EACA,mBAAA;EACA,kBAAA;ClBi6ED;AkBt5ED;Eb4BE,+BAAA;EACG,4BAAA;EACK,uBAAA;CL63ET;AkBt5ED;;EAEE,gBAAA;EACA,mBAAA;EACA,oBAAA;ClBw5ED;AkBr5ED;EACE,eAAA;ClBu5ED;AkBn5ED;EACE,eAAA;EACA,YAAA;ClBq5ED;AkBj5ED;;EAEE,aAAA;ClBm5ED;AkB/4ED;;;EZvEE,qBAAA;EAEA,2CAAA;EACA,qBAAA;CN09ED;AkB/4ED;EACE,eAAA;EACA,iBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;ClBi5ED;AkBv3ED;EACE,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;EbxDA,yDAAA;EACQ,iDAAA;EAyHR,uFAAA;EACK,0EAAA;EACG,uEAAA;CL0zET;AmBl8EC;EACE,sBAAA;EACA,WAAA;EdUF,uFAAA;EACQ,+EAAA;CL27ET;AK15EC;EACE,YAAA;EACA,WAAA;CL45EH;AK15EC;EAA0B,YAAA;CL65E3B;AK55EC;EAAgC,YAAA;CL+5EjC;AkBn4EC;EACE,UAAA;EACA,8BAAA;ClBq4EH;AkB73EC;;;EAGE,0BAAA;EACA,WAAA;ClB+3EH;AkB53EC;;EAEE,oBAAA;ClB83EH;AkB13EC;EACE,aAAA;ClB43EH;AkBh3ED;EACE,yBAAA;ClBk3ED;AkB10ED;EAtBI;;;;IACE,kBAAA;GlBs2EH;EkBn2EC;;;;;;;;IAEE,kBAAA;GlB22EH;EkBx2EC;;;;;;;;IAEE,kBAAA;GlBg3EH;CACF;AkBt2ED;EACE,oBAAA;ClBw2ED;AkBh2ED;;EAEE,mBAAA;EACA,eAAA;EACA,iBAAA;EACA,oBAAA;ClBk2ED;AkBv2ED;;EAQI,iBAAA;EACA,mBAAA;EACA,iBAAA;EACA,oBAAA;EACA,gBAAA;ClBm2EH;AkBh2ED;;;;EAIE,mBAAA;EACA,mBAAA;EACA,mBAAA;ClBk2ED;AkB/1ED;;EAEE,iBAAA;ClBi2ED;AkB71ED;;EAEE,mBAAA;EACA,sBAAA;EACA,mBAAA;EACA,iBAAA;EACA,uBAAA;EACA,oBAAA;EACA,gBAAA;ClB+1ED;AkB71ED;;EAEE,cAAA;EACA,kBAAA;ClB+1ED;AkBt1EC;;;;;;EAGE,oBAAA;ClB21EH;AkBr1EC;;;;EAEE,oBAAA;ClBy1EH;AkBn1EC;;;;EAGI,oBAAA;ClBs1EL;AkB30ED;EAEE,iBAAA;EACA,oBAAA;EAEA,iBAAA;EACA,iBAAA;ClB20ED;AkBz0EC;;EAEE,gBAAA;EACA,iBAAA;ClB20EH;AkB9zED;ECnQE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnBokFD;AmBlkFC;EACE,aAAA;EACA,kBAAA;CnBokFH;AmBjkFC;;EAEE,aAAA;CnBmkFH;AkB10ED;EAEI,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;ClB20EH;AkBj1ED;EASI,aAAA;EACA,kBAAA;ClB20EH;AkBr1ED;;EAcI,aAAA;ClB20EH;AkBz1ED;EAiBI,aAAA;EACA,iBAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;ClB20EH;AkBv0ED;EC/RE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnBymFD;AmBvmFC;EACE,aAAA;EACA,kBAAA;CnBymFH;AmBtmFC;;EAEE,aAAA;CnBwmFH;AkBn1ED;EAEI,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;ClBo1EH;AkB11ED;EASI,aAAA;EACA,kBAAA;ClBo1EH;AkB91ED;;EAcI,aAAA;ClBo1EH;AkBl2ED;EAiBI,aAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;ClBo1EH;AkB30ED;EAEE,mBAAA;ClB40ED;AkB90ED;EAMI,sBAAA;ClB20EH;AkBv0ED;EACE,mBAAA;EACA,OAAA;EACA,SAAA;EACA,WAAA;EACA,eAAA;EACA,YAAA;EACA,aAAA;EACA,kBAAA;EACA,mBAAA;EACA,qBAAA;ClBy0ED;AkBv0ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBy0ED;AkBv0ED;;;EAGE,YAAA;EACA,aAAA;EACA,kBAAA;ClBy0ED;AkBr0ED;;;;;;;;;;EC1ZI,eAAA;CnB2uFH;AkBj1ED;ECtZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CL4rFT;AmB1uFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CLisFT;AkB31ED;EC5YI,eAAA;EACA,sBAAA;EACA,0BAAA;CnB0uFH;AkBh2ED;ECtYI,eAAA;CnByuFH;AkBh2ED;;;;;;;;;;EC7ZI,eAAA;CnBywFH;AkB52ED;ECzZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CL0tFT;AmBxwFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CL+tFT;AkBt3ED;EC/YI,eAAA;EACA,sBAAA;EACA,0BAAA;CnBwwFH;AkB33ED;ECzYI,eAAA;CnBuwFH;AkB33ED;;;;;;;;;;EChaI,eAAA;CnBuyFH;AkBv4ED;EC5ZI,sBAAA;Ed+CF,yDAAA;EACQ,iDAAA;CLwvFT;AmBtyFG;EACE,sBAAA;Ed4CJ,0EAAA;EACQ,kEAAA;CL6vFT;AkBj5ED;EClZI,eAAA;EACA,sBAAA;EACA,0BAAA;CnBsyFH;AkBt5ED;EC5YI,eAAA;CnBqyFH;AkBl5EC;EACE,UAAA;ClBo5EH;AkBl5EC;EACE,OAAA;ClBo5EH;AkB14ED;EACE,eAAA;EACA,gBAAA;EACA,oBAAA;EACA,eAAA;ClB44ED;AkBzzED;EAwEA;IAtIM,sBAAA;IACA,iBAAA;IACA,uBAAA;GlB23EH;EkBvvEH;IA/HM,sBAAA;IACA,YAAA;IACA,uBAAA;GlBy3EH;EkB5vEH;IAxHM,sBAAA;GlBu3EH;EkB/vEH;IApHM,sBAAA;IACA,uBAAA;GlBs3EH;EkBnwEH;;;IA9GQ,YAAA;GlBs3EL;EkBxwEH;IAxGM,YAAA;GlBm3EH;EkB3wEH;IApGM,iBAAA;IACA,uBAAA;GlBk3EH;EkB/wEH;;IA5FM,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlB+2EH;EkBtxEH;;IAtFQ,gBAAA;GlBg3EL;EkB1xEH;;IAjFM,mBAAA;IACA,eAAA;GlB+2EH;EkB/xEH;IA3EM,OAAA;GlB62EH;CACF;AkBn2ED;;;;EASI,cAAA;EACA,iBAAA;EACA,iBAAA;ClBg2EH;AkB32ED;;EAiBI,iBAAA;ClB81EH;AkB/2ED;EJthBE,mBAAA;EACA,oBAAA;Cdw4FD;AkB50EC;EAyBF;IAnCM,kBAAA;IACA,iBAAA;IACA,iBAAA;GlB01EH;CACF;AkB13ED;EAwCI,YAAA;ClBq1EH;AkBv0EC;EAUF;IAdQ,kBAAA;IACA,gBAAA;GlB+0EL;CACF;AkBr0EC;EAEF;IANQ,iBAAA;IACA,gBAAA;GlB60EL;CACF;AoBt6FD;EACE,sBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;EACA,uBAAA;EACA,+BAAA;MAAA,2BAAA;EACA,gBAAA;EACA,uBAAA;EACA,8BAAA;EACA,oBAAA;EC0CA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,mBAAA;EhB+JA,0BAAA;EACG,uBAAA;EACC,sBAAA;EACI,kBAAA;CLiuFT;AoBz6FG;;;;;;EdrBF,qBAAA;EAEA,2CAAA;EACA,qBAAA;CNq8FD;AoB76FC;;;EAGE,YAAA;EACA,sBAAA;CpB+6FH;AoB56FC;;EAEE,WAAA;EACA,uBAAA;Ef2BF,yDAAA;EACQ,iDAAA;CLo5FT;AoB56FC;;;EAGE,oBAAA;EE7CF,cAAA;EAGA,0BAAA;EjB8DA,yBAAA;EACQ,iBAAA;CL65FT;AoB56FG;;EAEE,qBAAA;CpB86FL;AoBr6FD;EC3DE,YAAA;EACA,uBAAA;EACA,mBAAA;CrBm+FD;AqBj+FC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBm+FP;AqBj+FC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBm+FP;AqBj+FC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBm+FP;AqBj+FG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBy+FT;AqBt+FC;;;EAGE,uBAAA;CrBw+FH;AqBn+FG;;;;;;;;;EAGE,uBAAA;EACI,mBAAA;CrB2+FT;AoB19FD;ECZI,YAAA;EACA,uBAAA;CrBy+FH;AoB39FD;EC9DE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB4hGD;AqB1hGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB4hGP;AqB1hGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB4hGP;AqB1hGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB4hGP;AqB1hGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBkiGT;AqB/hGC;;;EAGE,uBAAA;CrBiiGH;AqB5hGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBoiGT;AoBhhGD;ECfI,eAAA;EACA,uBAAA;CrBkiGH;AoBhhGD;EClEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBqlGD;AqBnlGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBqlGP;AqBnlGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBqlGP;AqBnlGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBqlGP;AqBnlGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB2lGT;AqBxlGC;;;EAGE,uBAAA;CrB0lGH;AqBrlGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrB6lGT;AoBrkGD;ECnBI,eAAA;EACA,uBAAA;CrB2lGH;AoBrkGD;ECtEE,YAAA;EACA,0BAAA;EACA,sBAAA;CrB8oGD;AqB5oGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB8oGP;AqB5oGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB8oGP;AqB5oGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB8oGP;AqB5oGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBopGT;AqBjpGC;;;EAGE,uBAAA;CrBmpGH;AqB9oGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBspGT;AoB1nGD;ECvBI,eAAA;EACA,uBAAA;CrBopGH;AoB1nGD;EC1EE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBusGD;AqBrsGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBusGP;AqBrsGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBusGP;AqBrsGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBusGP;AqBrsGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrB6sGT;AqB1sGC;;;EAGE,uBAAA;CrB4sGH;AqBvsGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrB+sGT;AoB/qGD;EC3BI,eAAA;EACA,uBAAA;CrB6sGH;AoB/qGD;EC9EE,YAAA;EACA,0BAAA;EACA,sBAAA;CrBgwGD;AqB9vGC;;EAEE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBgwGP;AqB9vGC;EACE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBgwGP;AqB9vGC;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBgwGP;AqB9vGG;;;;;;;;;EAGE,YAAA;EACA,0BAAA;EACI,sBAAA;CrBswGT;AqBnwGC;;;EAGE,uBAAA;CrBqwGH;AqBhwGG;;;;;;;;;EAGE,0BAAA;EACI,sBAAA;CrBwwGT;AoBpuGD;EC/BI,eAAA;EACA,uBAAA;CrBswGH;AoB/tGD;EACE,eAAA;EACA,oBAAA;EACA,iBAAA;CpBiuGD;AoB/tGC;;;;;EAKE,8BAAA;EfnCF,yBAAA;EACQ,iBAAA;CLqwGT;AoBhuGC;;;;EAIE,0BAAA;CpBkuGH;AoBhuGC;;EAEE,eAAA;EACA,2BAAA;EACA,8BAAA;CpBkuGH;AoB9tGG;;;;EAEE,eAAA;EACA,sBAAA;CpBkuGL;AoBztGD;;ECxEE,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CrBqyGD;AoB5tGD;;EC5EE,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrB4yGD;AoB/tGD;;EChFE,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CrBmzGD;AoB9tGD;EACE,eAAA;EACA,YAAA;CpBguGD;AoB5tGD;EACE,gBAAA;CpB8tGD;AoBvtGC;;;EACE,YAAA;CpB2tGH;AuBr3GD;EACE,WAAA;ElBoLA,yCAAA;EACK,oCAAA;EACG,iCAAA;CLosGT;AuBx3GC;EACE,WAAA;CvB03GH;AuBt3GD;EACE,cAAA;CvBw3GD;AuBt3GC;EAAY,eAAA;CvBy3Gb;AuBx3GC;EAAY,mBAAA;CvB23Gb;AuB13GC;EAAY,yBAAA;CvB63Gb;AuB13GD;EACE,mBAAA;EACA,UAAA;EACA,iBAAA;ElBuKA,gDAAA;EACQ,2CAAA;KAAA,wCAAA;EAOR,mCAAA;EACQ,8BAAA;KAAA,2BAAA;EAGR,yCAAA;EACQ,oCAAA;KAAA,iCAAA;CL8sGT;AwBx5GD;EACE,sBAAA;EACA,SAAA;EACA,UAAA;EACA,iBAAA;EACA,uBAAA;EACA,uBAAA;EACA,yBAAA;EACA,oCAAA;EACA,mCAAA;CxB05GD;AwBt5GD;;EAEE,mBAAA;CxBw5GD;AwBp5GD;EACE,WAAA;CxBs5GD;AwBl5GD;EACE,mBAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,YAAA;EACA,iBAAA;EACA,eAAA;EACA,gBAAA;EACA,iBAAA;EACA,gBAAA;EACA,iBAAA;EACA,uBAAA;EACA,uBAAA;EACA,sCAAA;EACA,mBAAA;EnBsBA,oDAAA;EACQ,4CAAA;EmBrBR,qCAAA;UAAA,6BAAA;CxBq5GD;AwBh5GC;EACE,SAAA;EACA,WAAA;CxBk5GH;AwB36GD;ECzBE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzBu8GD;AwBj7GD;EAmCI,eAAA;EACA,kBAAA;EACA,YAAA;EACA,oBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxBi5GH;AwB34GC;;EAEE,sBAAA;EACA,eAAA;EACA,0BAAA;CxB64GH;AwBv4GC;;;EAGE,YAAA;EACA,sBAAA;EACA,WAAA;EACA,0BAAA;CxBy4GH;AwBh4GC;;;EAGE,eAAA;CxBk4GH;AwB93GC;;EAEE,sBAAA;EACA,8BAAA;EACA,uBAAA;EE3GF,oEAAA;EF6GE,oBAAA;CxBg4GH;AwB33GD;EAGI,eAAA;CxB23GH;AwB93GD;EAQI,WAAA;CxBy3GH;AwBj3GD;EACE,WAAA;EACA,SAAA;CxBm3GD;AwB32GD;EACE,QAAA;EACA,YAAA;CxB62GD;AwBz2GD;EACE,eAAA;EACA,kBAAA;EACA,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,oBAAA;CxB22GD;AwBv2GD;EACE,gBAAA;EACA,QAAA;EACA,SAAA;EACA,UAAA;EACA,OAAA;EACA,aAAA;CxBy2GD;AwBr2GD;EACE,SAAA;EACA,WAAA;CxBu2GD;AwB/1GD;;EAII,cAAA;EACA,0BAAA;EACA,4BAAA;EACA,YAAA;CxB+1GH;AwBt2GD;;EAWI,UAAA;EACA,aAAA;EACA,mBAAA;CxB+1GH;AwB10GD;EAXE;IApEA,WAAA;IACA,SAAA;GxB65GC;EwB11GD;IA1DA,QAAA;IACA,YAAA;GxBu5GC;CACF;A2BviHD;;EAEE,mBAAA;EACA,sBAAA;EACA,uBAAA;C3ByiHD;A2B7iHD;;EAMI,mBAAA;EACA,YAAA;C3B2iHH;A2BziHG;;;;;;;;EAIE,WAAA;C3B+iHL;A2BziHD;;;;EAKI,kBAAA;C3B0iHH;A2BriHD;EACE,kBAAA;C3BuiHD;A2BxiHD;;;EAOI,YAAA;C3BsiHH;A2B7iHD;;;EAYI,iBAAA;C3BsiHH;A2BliHD;EACE,iBAAA;C3BoiHD;A2BhiHD;EACE,eAAA;C3BkiHD;A2BjiHC;EClDA,8BAAA;EACG,2BAAA;C5BslHJ;A2BhiHD;;EC/CE,6BAAA;EACG,0BAAA;C5BmlHJ;A2B/hHD;EACE,YAAA;C3BiiHD;A2B/hHD;EACE,iBAAA;C3BiiHD;A2B/hHD;;ECnEE,8BAAA;EACG,2BAAA;C5BsmHJ;A2B9hHD;ECjEE,6BAAA;EACG,0BAAA;C5BkmHJ;A2B7hHD;;EAEE,WAAA;C3B+hHD;A2B9gHD;EACE,kBAAA;EACA,mBAAA;C3BghHD;A2B9gHD;EACE,mBAAA;EACA,oBAAA;C3BghHD;A2B3gHD;EtB/CE,yDAAA;EACQ,iDAAA;CL6jHT;A2B3gHC;EtBnDA,yBAAA;EACQ,iBAAA;CLikHT;A2BxgHD;EACE,eAAA;C3B0gHD;A2BvgHD;EACE,wBAAA;EACA,uBAAA;C3BygHD;A2BtgHD;EACE,wBAAA;C3BwgHD;A2BjgHD;;;EAII,eAAA;EACA,YAAA;EACA,YAAA;EACA,gBAAA;C3BkgHH;A2BzgHD;EAcM,YAAA;C3B8/GL;A2B5gHD;;;;EAsBI,iBAAA;EACA,eAAA;C3B4/GH;A2Bv/GC;EACE,iBAAA;C3By/GH;A2Bv/GC;EC3KA,6BAAA;EACC,4BAAA;EAOD,8BAAA;EACC,6BAAA;C5B+pHF;A2Bz/GC;EC/KA,2BAAA;EACC,0BAAA;EAOD,gCAAA;EACC,+BAAA;C5BqqHF;A2B1/GD;EACE,iBAAA;C3B4/GD;A2B1/GD;;EC/KE,8BAAA;EACC,6BAAA;C5B6qHF;A2Bz/GD;EC7LE,2BAAA;EACC,0BAAA;C5ByrHF;A2Br/GD;EACE,eAAA;EACA,YAAA;EACA,oBAAA;EACA,0BAAA;C3Bu/GD;A2B3/GD;;EAOI,YAAA;EACA,oBAAA;EACA,UAAA;C3Bw/GH;A2BjgHD;EAYI,YAAA;C3Bw/GH;A2BpgHD;EAgBI,WAAA;C3Bu/GH;A2Bt+GD;;;;EAKM,mBAAA;EACA,uBAAA;EACA,qBAAA;C3Bu+GL;A6BjtHD;EACE,mBAAA;EACA,eAAA;EACA,0BAAA;C7BmtHD;A6BhtHC;EACE,YAAA;EACA,gBAAA;EACA,iBAAA;C7BktHH;A6B3tHD;EAeI,mBAAA;EACA,WAAA;EAKA,YAAA;EAEA,YAAA;EACA,iBAAA;C7B0sHH;A6BxsHG;EACE,WAAA;C7B0sHL;A6BhsHD;;;EV0BE,aAAA;EACA,mBAAA;EACA,gBAAA;EACA,uBAAA;EACA,mBAAA;CnB2qHD;AmBzqHC;;;EACE,aAAA;EACA,kBAAA;CnB6qHH;AmB1qHC;;;;;;EAEE,aAAA;CnBgrHH;A6BltHD;;;EVqBE,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;CnBksHD;AmBhsHC;;;EACE,aAAA;EACA,kBAAA;CnBosHH;AmBjsHC;;;;;;EAEE,aAAA;CnBusHH;A6BhuHD;;;EAGE,oBAAA;C7BkuHD;A6BhuHC;;;EACE,iBAAA;C7BouHH;A6BhuHD;;EAEE,UAAA;EACA,oBAAA;EACA,uBAAA;C7BkuHD;A6B7tHD;EACE,kBAAA;EACA,gBAAA;EACA,oBAAA;EACA,eAAA;EACA,eAAA;EACA,mBAAA;EACA,0BAAA;EACA,uBAAA;EACA,mBAAA;C7B+tHD;A6B5tHC;EACE,kBAAA;EACA,gBAAA;EACA,mBAAA;C7B8tHH;A6B5tHC;EACE,mBAAA;EACA,gBAAA;EACA,mBAAA;C7B8tHH;A6BlvHD;;EA0BI,cAAA;C7B4tHH;A6BvtHD;;;;;;;EDpGE,8BAAA;EACG,2BAAA;C5Bo0HJ;A6BxtHD;EACE,gBAAA;C7B0tHD;A6BxtHD;;;;;;;EDxGE,6BAAA;EACG,0BAAA;C5By0HJ;A6BztHD;EACE,eAAA;C7B2tHD;A6BttHD;EACE,mBAAA;EAGA,aAAA;EACA,oBAAA;C7BstHD;A6B3tHD;EAUI,mBAAA;C7BotHH;A6B9tHD;EAYM,kBAAA;C7BqtHL;A6BltHG;;;EAGE,WAAA;C7BotHL;A6B/sHC;;EAGI,mBAAA;C7BgtHL;A6B7sHC;;EAGI,WAAA;EACA,kBAAA;C7B8sHL;A8B72HD;EACE,iBAAA;EACA,gBAAA;EACA,iBAAA;C9B+2HD;A8Bl3HD;EAOI,mBAAA;EACA,eAAA;C9B82HH;A8Bt3HD;EAWM,mBAAA;EACA,eAAA;EACA,mBAAA;C9B82HL;A8B72HK;;EAEE,sBAAA;EACA,0BAAA;C9B+2HP;A8B12HG;EACE,eAAA;C9B42HL;A8B12HK;;EAEE,eAAA;EACA,sBAAA;EACA,8BAAA;EACA,oBAAA;C9B42HP;A8Br2HG;;;EAGE,0BAAA;EACA,sBAAA;C9Bu2HL;A8Bh5HD;ELHE,YAAA;EACA,cAAA;EACA,iBAAA;EACA,0BAAA;CzBs5HD;A8Bt5HD;EA0DI,gBAAA;C9B+1HH;A8Bt1HD;EACE,8BAAA;C9Bw1HD;A8Bz1HD;EAGI,YAAA;EAEA,oBAAA;C9Bw1HH;A8B71HD;EASM,kBAAA;EACA,wBAAA;EACA,8BAAA;EACA,2BAAA;C9Bu1HL;A8Bt1HK;EACE,mCAAA;C9Bw1HP;A8Bl1HK;;;EAGE,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,iCAAA;EACA,gBAAA;C9Bo1HP;A8B/0HC;EAqDA,YAAA;EA8BA,iBAAA;C9BgwHD;A8Bn1HC;EAwDE,YAAA;C9B8xHH;A8Bt1HC;EA0DI,mBAAA;EACA,mBAAA;C9B+xHL;A8B11HC;EAgEE,UAAA;EACA,WAAA;C9B6xHH;A8BjxHD;EA0DA;IAjEM,oBAAA;IACA,UAAA;G9B4xHH;E8B5tHH;IA9DQ,iBAAA;G9B6xHL;CACF;A8Bv2HC;EAuFE,gBAAA;EACA,mBAAA;C9BmxHH;A8B32HC;;;EA8FE,uBAAA;C9BkxHH;A8BpwHD;EA2BA;IApCM,8BAAA;IACA,2BAAA;G9BixHH;E8B9uHH;;;IA9BM,0BAAA;G9BixHH;CACF;A8Bl3HD;EAEI,YAAA;C9Bm3HH;A8Br3HD;EAMM,mBAAA;C9Bk3HL;A8Bx3HD;EASM,iBAAA;C9Bk3HL;A8B72HK;;;EAGE,YAAA;EACA,0BAAA;C9B+2HP;A8Bv2HD;EAEI,YAAA;C9Bw2HH;A8B12HD;EAIM,gBAAA;EACA,eAAA;C9By2HL;A8B71HD;EACE,YAAA;C9B+1HD;A8Bh2HD;EAII,YAAA;C9B+1HH;A8Bn2HD;EAMM,mBAAA;EACA,mBAAA;C9Bg2HL;A8Bv2HD;EAYI,UAAA;EACA,WAAA;C9B81HH;A8Bl1HD;EA0DA;IAjEM,oBAAA;IACA,UAAA;G9B61HH;E8B7xHH;IA9DQ,iBAAA;G9B81HL;CACF;A8Bt1HD;EACE,iBAAA;C9Bw1HD;A8Bz1HD;EAKI,gBAAA;EACA,mBAAA;C9Bu1HH;A8B71HD;;;EAYI,uBAAA;C9Bs1HH;A8Bx0HD;EA2BA;IApCM,8BAAA;IACA,2BAAA;G9Bq1HH;E8BlzHH;;;IA9BM,0BAAA;G9Bq1HH;CACF;A8B50HD;EAEI,cAAA;C9B60HH;A8B/0HD;EAKI,eAAA;C9B60HH;A8Bp0HD;EAEE,iBAAA;EF3OA,2BAAA;EACC,0BAAA;C5BijIF;A+B3iID;EACE,mBAAA;EACA,iBAAA;EACA,oBAAA;EACA,8BAAA;C/B6iID;A+BriID;EA8nBA;IAhoBI,mBAAA;G/B2iID;CACF;A+B5hID;EAgnBA;IAlnBI,YAAA;G/BkiID;CACF;A+BphID;EACE,oBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kCAAA;EACA,2DAAA;UAAA,mDAAA;EAEA,kCAAA;C/BqhID;A+BnhIC;EACE,iBAAA;C/BqhIH;A+Bz/HD;EA6jBA;IArlBI,YAAA;IACA,cAAA;IACA,yBAAA;YAAA,iBAAA;G/BqhID;E+BnhIC;IACE,0BAAA;IACA,wBAAA;IACA,kBAAA;IACA,6BAAA;G/BqhIH;E+BlhIC;IACE,oBAAA;G/BohIH;E+B/gIC;;;IAGE,gBAAA;IACA,iBAAA;G/BihIH;CACF;A+B7gID;;EAGI,kBAAA;C/B8gIH;A+BzgIC;EAmjBF;;IArjBM,kBAAA;G/BghIH;CACF;A+BvgID;;;;EAII,oBAAA;EACA,mBAAA;C/BygIH;A+BngIC;EAgiBF;;;;IAniBM,gBAAA;IACA,eAAA;G/B6gIH;CACF;A+BjgID;EACE,cAAA;EACA,sBAAA;C/BmgID;A+B9/HD;EA8gBA;IAhhBI,iBAAA;G/BogID;CACF;A+BhgID;;EAEE,gBAAA;EACA,SAAA;EACA,QAAA;EACA,cAAA;C/BkgID;A+B5/HD;EAggBA;;IAlgBI,iBAAA;G/BmgID;CACF;A+BjgID;EACE,OAAA;EACA,sBAAA;C/BmgID;A+BjgID;EACE,UAAA;EACA,iBAAA;EACA,sBAAA;C/BmgID;A+B7/HD;EACE,YAAA;EACA,mBAAA;EACA,gBAAA;EACA,kBAAA;EACA,aAAA;C/B+/HD;A+B7/HC;;EAEE,sBAAA;C/B+/HH;A+BxgID;EAaI,eAAA;C/B8/HH;A+Br/HD;EALI;;IAEE,mBAAA;G/B6/HH;CACF;A+Bn/HD;EACE,mBAAA;EACA,aAAA;EACA,mBAAA;EACA,kBAAA;EC9LA,gBAAA;EACA,mBAAA;ED+LA,8BAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;C/Bs/HD;A+Bl/HC;EACE,WAAA;C/Bo/HH;A+BlgID;EAmBI,eAAA;EACA,YAAA;EACA,YAAA;EACA,mBAAA;C/Bk/HH;A+BxgID;EAyBI,gBAAA;C/Bk/HH;A+B5+HD;EAqbA;IAvbI,cAAA;G/Bk/HD;CACF;A+Bz+HD;EACE,oBAAA;C/B2+HD;A+B5+HD;EAII,kBAAA;EACA,qBAAA;EACA,kBAAA;C/B2+HH;A+B/8HC;EA2YF;IAjaM,iBAAA;IACA,YAAA;IACA,YAAA;IACA,cAAA;IACA,8BAAA;IACA,UAAA;IACA,yBAAA;YAAA,iBAAA;G/By+HH;E+B9kHH;;IAxZQ,2BAAA;G/B0+HL;E+BllHH;IArZQ,kBAAA;G/B0+HL;E+Bz+HK;;IAEE,uBAAA;G/B2+HP;CACF;A+Bz9HD;EA+XA;IA1YI,YAAA;IACA,UAAA;G/Bw+HD;E+B/lHH;IAtYM,YAAA;G/Bw+HH;E+BlmHH;IApYQ,kBAAA;IACA,qBAAA;G/By+HL;CACF;A+B99HD;EACE,mBAAA;EACA,oBAAA;EACA,mBAAA;EACA,kCAAA;EACA,qCAAA;E1B9NA,6FAAA;EACQ,qFAAA;E2B/DR,gBAAA;EACA,mBAAA;ChC+vID;AkBzuHD;EAwEA;IAtIM,sBAAA;IACA,iBAAA;IACA,uBAAA;GlB2yHH;EkBvqHH;IA/HM,sBAAA;IACA,YAAA;IACA,uBAAA;GlByyHH;EkB5qHH;IAxHM,sBAAA;GlBuyHH;EkB/qHH;IApHM,sBAAA;IACA,uBAAA;GlBsyHH;EkBnrHH;;;IA9GQ,YAAA;GlBsyHL;EkBxrHH;IAxGM,YAAA;GlBmyHH;EkB3rHH;IApGM,iBAAA;IACA,uBAAA;GlBkyHH;EkB/rHH;;IA5FM,sBAAA;IACA,cAAA;IACA,iBAAA;IACA,uBAAA;GlB+xHH;EkBtsHH;;IAtFQ,gBAAA;GlBgyHL;EkB1sHH;;IAjFM,mBAAA;IACA,eAAA;GlB+xHH;EkB/sHH;IA3EM,OAAA;GlB6xHH;CACF;A+BvgIC;EAmWF;IAzWM,mBAAA;G/BihIH;E+B/gIG;IACE,iBAAA;G/BihIL;CACF;A+BhgID;EAoVA;IA5VI,YAAA;IACA,UAAA;IACA,eAAA;IACA,gBAAA;IACA,eAAA;IACA,kBAAA;I1BzPF,yBAAA;IACQ,iBAAA;GLswIP;CACF;A+BtgID;EACE,cAAA;EHpUA,2BAAA;EACC,0BAAA;C5B60IF;A+BtgID;EACE,iBAAA;EHzUA,6BAAA;EACC,4BAAA;EAOD,8BAAA;EACC,6BAAA;C5B40IF;A+BlgID;EChVE,gBAAA;EACA,mBAAA;ChCq1ID;A+BngIC;ECnVA,iBAAA;EACA,oBAAA;ChCy1ID;A+BpgIC;ECtVA,iBAAA;EACA,oBAAA;ChC61ID;A+B9/HD;EChWE,iBAAA;EACA,oBAAA;ChCi2ID;A+B1/HD;EAsSA;IA1SI,YAAA;IACA,kBAAA;IACA,mBAAA;G/BkgID;CACF;A+Br+HD;EAhBE;IExWA,uBAAA;GjCi2IC;E+Bx/HD;IE5WA,wBAAA;IF8WE,oBAAA;G/B0/HD;E+B5/HD;IAKI,gBAAA;G/B0/HH;CACF;A+Bj/HD;EACE,0BAAA;EACA,sBAAA;C/Bm/HD;A+Br/HD;EAKI,YAAA;C/Bm/HH;A+Bl/HG;;EAEE,eAAA;EACA,8BAAA;C/Bo/HL;A+B7/HD;EAcI,YAAA;C/Bk/HH;A+BhgID;EAmBM,YAAA;C/Bg/HL;A+B9+HK;;EAEE,YAAA;EACA,8BAAA;C/Bg/HP;A+B5+HK;;;EAGE,YAAA;EACA,0BAAA;C/B8+HP;A+B1+HK;;;EAGE,YAAA;EACA,8BAAA;C/B4+HP;A+BphID;EA8CI,mBAAA;C/By+HH;A+Bx+HG;;EAEE,uBAAA;C/B0+HL;A+B3hID;EAoDM,uBAAA;C/B0+HL;A+B9hID;;EA0DI,sBAAA;C/Bw+HH;A+Bj+HK;;;EAGE,0BAAA;EACA,YAAA;C/Bm+HP;A+Bl8HC;EAoKF;IA7LU,YAAA;G/B+9HP;E+B99HO;;IAEE,YAAA;IACA,8BAAA;G/Bg+HT;E+B59HO;;;IAGE,YAAA;IACA,0BAAA;G/B89HT;E+B19HO;;;IAGE,YAAA;IACA,8BAAA;G/B49HT;CACF;A+B9jID;EA8GI,YAAA;C/Bm9HH;A+Bl9HG;EACE,YAAA;C/Bo9HL;A+BpkID;EAqHI,YAAA;C/Bk9HH;A+Bj9HG;;EAEE,YAAA;C/Bm9HL;A+B/8HK;;;;EAEE,YAAA;C/Bm9HP;A+B38HD;EACE,uBAAA;EACA,sBAAA;C/B68HD;A+B/8HD;EAKI,eAAA;C/B68HH;A+B58HG;;EAEE,YAAA;EACA,8BAAA;C/B88HL;A+Bv9HD;EAcI,eAAA;C/B48HH;A+B19HD;EAmBM,eAAA;C/B08HL;A+Bx8HK;;EAEE,YAAA;EACA,8BAAA;C/B08HP;A+Bt8HK;;;EAGE,YAAA;EACA,0BAAA;C/Bw8HP;A+Bp8HK;;;EAGE,YAAA;EACA,8BAAA;C/Bs8HP;A+B9+HD;EA+CI,mBAAA;C/Bk8HH;A+Bj8HG;;EAEE,uBAAA;C/Bm8HL;A+Br/HD;EAqDM,uBAAA;C/Bm8HL;A+Bx/HD;;EA2DI,sBAAA;C/Bi8HH;A+B37HK;;;EAGE,0BAAA;EACA,YAAA;C/B67HP;A+Bt5HC;EAwBF;IAvDU,sBAAA;G/By7HP;E+Bl4HH;IApDU,0BAAA;G/By7HP;E+Br4HH;IAjDU,eAAA;G/By7HP;E+Bx7HO;;IAEE,YAAA;IACA,8BAAA;G/B07HT;E+Bt7HO;;;IAGE,YAAA;IACA,0BAAA;G/Bw7HT;E+Bp7HO;;;IAGE,YAAA;IACA,8BAAA;G/Bs7HT;CACF;A+B9hID;EA+GI,eAAA;C/Bk7HH;A+Bj7HG;EACE,YAAA;C/Bm7HL;A+BpiID;EAsHI,eAAA;C/Bi7HH;A+Bh7HG;;EAEE,YAAA;C/Bk7HL;A+B96HK;;;;EAEE,YAAA;C/Bk7HP;AkC5jJD;EACE,kBAAA;EACA,oBAAA;EACA,iBAAA;EACA,0BAAA;EACA,mBAAA;ClC8jJD;AkCnkJD;EAQI,sBAAA;ClC8jJH;AkCtkJD;EAWM,kBAAA;EACA,eAAA;EACA,YAAA;ClC8jJL;AkC3kJD;EAkBI,eAAA;ClC4jJH;AmChlJD;EACE,sBAAA;EACA,gBAAA;EACA,eAAA;EACA,mBAAA;CnCklJD;AmCtlJD;EAOI,gBAAA;CnCklJH;AmCzlJD;;EAUM,mBAAA;EACA,YAAA;EACA,kBAAA;EACA,wBAAA;EACA,sBAAA;EACA,eAAA;EACA,uBAAA;EACA,uBAAA;EACA,kBAAA;CnCmlJL;AmCjlJG;;EAGI,eAAA;EPXN,+BAAA;EACG,4BAAA;C5B8lJJ;AmChlJG;;EPvBF,gCAAA;EACG,6BAAA;C5B2mJJ;AmC3kJG;;;;EAEE,WAAA;EACA,eAAA;EACA,0BAAA;EACA,mBAAA;CnC+kJL;AmCzkJG;;;;;;EAGE,WAAA;EACA,YAAA;EACA,0BAAA;EACA,sBAAA;EACA,gBAAA;CnC8kJL;AmCroJD;;;;;;EAkEM,eAAA;EACA,uBAAA;EACA,mBAAA;EACA,oBAAA;CnC2kJL;AmClkJD;;EC3EM,mBAAA;EACA,gBAAA;EACA,uBAAA;CpCipJL;AoC/oJG;;ERKF,+BAAA;EACG,4BAAA;C5B8oJJ;AoC9oJG;;ERTF,gCAAA;EACG,6BAAA;C5B2pJJ;AmC7kJD;;EChFM,kBAAA;EACA,gBAAA;EACA,iBAAA;CpCiqJL;AoC/pJG;;ERKF,+BAAA;EACG,4BAAA;C5B8pJJ;AoC9pJG;;ERTF,gCAAA;EACG,6BAAA;C5B2qJJ;AqC9qJD;EACE,gBAAA;EACA,eAAA;EACA,iBAAA;EACA,mBAAA;CrCgrJD;AqCprJD;EAOI,gBAAA;CrCgrJH;AqCvrJD;;EAUM,sBAAA;EACA,kBAAA;EACA,uBAAA;EACA,uBAAA;EACA,oBAAA;CrCirJL;AqC/rJD;;EAmBM,sBAAA;EACA,0BAAA;CrCgrJL;AqCpsJD;;EA2BM,aAAA;CrC6qJL;AqCxsJD;;EAkCM,YAAA;CrC0qJL;AqC5sJD;;;;EA2CM,eAAA;EACA,uBAAA;EACA,oBAAA;CrCuqJL;AsCrtJD;EACE,gBAAA;EACA,wBAAA;EACA,eAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,mBAAA;EACA,oBAAA;EACA,yBAAA;EACA,qBAAA;CtCutJD;AsCntJG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CtCqtJL;AsChtJC;EACE,cAAA;CtCktJH;AsC9sJC;EACE,mBAAA;EACA,UAAA;CtCgtJH;AsCzsJD;ECtCE,0BAAA;CvCkvJD;AuC/uJG;;EAEE,0BAAA;CvCivJL;AsC5sJD;EC1CE,0BAAA;CvCyvJD;AuCtvJG;;EAEE,0BAAA;CvCwvJL;AsC/sJD;EC9CE,0BAAA;CvCgwJD;AuC7vJG;;EAEE,0BAAA;CvC+vJL;AsCltJD;EClDE,0BAAA;CvCuwJD;AuCpwJG;;EAEE,0BAAA;CvCswJL;AsCrtJD;ECtDE,0BAAA;CvC8wJD;AuC3wJG;;EAEE,0BAAA;CvC6wJL;AsCxtJD;EC1DE,0BAAA;CvCqxJD;AuClxJG;;EAEE,0BAAA;CvCoxJL;AwCtxJD;EACE,sBAAA;EACA,gBAAA;EACA,iBAAA;EACA,gBAAA;EACA,kBAAA;EACA,YAAA;EACA,eAAA;EACA,uBAAA;EACA,oBAAA;EACA,mBAAA;EACA,0BAAA;EACA,oBAAA;CxCwxJD;AwCrxJC;EACE,cAAA;CxCuxJH;AwCnxJC;EACE,mBAAA;EACA,UAAA;CxCqxJH;AwClxJC;;EAEE,OAAA;EACA,iBAAA;CxCoxJH;AwC/wJG;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;CxCixJL;AwC5wJC;;EAEE,eAAA;EACA,uBAAA;CxC8wJH;AwC3wJC;EACE,aAAA;CxC6wJH;AwC1wJC;EACE,kBAAA;CxC4wJH;AwCzwJC;EACE,iBAAA;CxC2wJH;AyCr0JD;EACE,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,eAAA;EACA,0BAAA;CzCu0JD;AyC50JD;;EASI,eAAA;CzCu0JH;AyCh1JD;EAaI,oBAAA;EACA,gBAAA;EACA,iBAAA;CzCs0JH;AyCr1JD;EAmBI,0BAAA;CzCq0JH;AyCl0JC;;EAEE,mBAAA;EACA,mBAAA;EACA,oBAAA;CzCo0JH;AyC91JD;EA8BI,gBAAA;CzCm0JH;AyCjzJD;EACA;IAfI,kBAAA;IACA,qBAAA;GzCm0JD;EyCj0JC;;IAEE,mBAAA;IACA,oBAAA;GzCm0JH;EyC1zJH;;IAJM,gBAAA;GzCk0JH;CACF;A0C/2JD;EACE,eAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;EACA,uBAAA;EACA,mBAAA;ErCiLA,4CAAA;EACK,uCAAA;EACG,oCAAA;CLisJT;A0C33JD;;EAaI,kBAAA;EACA,mBAAA;C1Ck3JH;A0C92JC;;;EAGE,sBAAA;C1Cg3JH;A0Cr4JD;EA0BI,aAAA;EACA,eAAA;C1C82JH;A2Cv4JD;EACE,cAAA;EACA,oBAAA;EACA,8BAAA;EACA,mBAAA;C3Cy4JD;A2C74JD;EAQI,cAAA;EAEA,eAAA;C3Cu4JH;A2Cj5JD;EAeI,kBAAA;C3Cq4JH;A2Cp5JD;;EAqBI,iBAAA;C3Cm4JH;A2Cx5JD;EAyBI,gBAAA;C3Ck4JH;A2C13JD;;EAEE,oBAAA;C3C43JD;A2C93JD;;EAMI,mBAAA;EACA,UAAA;EACA,aAAA;EACA,eAAA;C3C43JH;A2Cp3JD;ECvDE,0BAAA;EACA,sBAAA;EACA,eAAA;C5C86JD;A2Cz3JD;EClDI,0BAAA;C5C86JH;A2C53JD;EC/CI,eAAA;C5C86JH;A2C33JD;EC3DE,0BAAA;EACA,sBAAA;EACA,eAAA;C5Cy7JD;A2Ch4JD;ECtDI,0BAAA;C5Cy7JH;A2Cn4JD;ECnDI,eAAA;C5Cy7JH;A2Cl4JD;EC/DE,0BAAA;EACA,sBAAA;EACA,eAAA;C5Co8JD;A2Cv4JD;EC1DI,0BAAA;C5Co8JH;A2C14JD;ECvDI,eAAA;C5Co8JH;A2Cz4JD;ECnEE,0BAAA;EACA,sBAAA;EACA,eAAA;C5C+8JD;A2C94JD;EC9DI,0BAAA;C5C+8JH;A2Cj5JD;EC3DI,eAAA;C5C+8JH;A6Cj9JD;EACE;IAAQ,4BAAA;G7Co9JP;E6Cn9JD;IAAQ,yBAAA;G7Cs9JP;CACF;A6Cn9JD;EACE;IAAQ,4BAAA;G7Cs9JP;E6Cr9JD;IAAQ,yBAAA;G7Cw9JP;CACF;A6C39JD;EACE;IAAQ,4BAAA;G7Cs9JP;E6Cr9JD;IAAQ,yBAAA;G7Cw9JP;CACF;A6Cj9JD;EACE,iBAAA;EACA,aAAA;EACA,oBAAA;EACA,0BAAA;EACA,mBAAA;ExCsCA,uDAAA;EACQ,+CAAA;CL86JT;A6Ch9JD;EACE,YAAA;EACA,UAAA;EACA,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,YAAA;EACA,mBAAA;EACA,0BAAA;ExCyBA,uDAAA;EACQ,+CAAA;EAyHR,oCAAA;EACK,+BAAA;EACG,4BAAA;CLk0JT;A6C78JD;;ECCI,8MAAA;EACA,yMAAA;EACA,sMAAA;EDAF,mCAAA;UAAA,2BAAA;C7Ci9JD;A6C18JD;;ExC5CE,2DAAA;EACK,sDAAA;EACG,mDAAA;CL0/JT;A6Cv8JD;EErEE,0BAAA;C/C+gKD;A+C5gKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C+9JH;A6C38JD;EEzEE,0BAAA;C/CuhKD;A+CphKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9Cu+JH;A6C/8JD;EE7EE,0BAAA;C/C+hKD;A+C5hKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9C++JH;A6Cn9JD;EEjFE,0BAAA;C/CuiKD;A+CpiKC;EDgDE,8MAAA;EACA,yMAAA;EACA,sMAAA;C9Cu/JH;AgD/iKD;EAEE,iBAAA;ChDgjKD;AgD9iKC;EACE,cAAA;ChDgjKH;AgD5iKD;;EAEE,QAAA;EACA,iBAAA;ChD8iKD;AgD3iKD;EACE,eAAA;ChD6iKD;AgD1iKD;EACE,eAAA;ChD4iKD;AgDziKC;EACE,gBAAA;ChD2iKH;AgDviKD;;EAEE,mBAAA;ChDyiKD;AgDtiKD;;EAEE,oBAAA;ChDwiKD;AgDriKD;;;EAGE,oBAAA;EACA,oBAAA;ChDuiKD;AgDpiKD;EACE,uBAAA;ChDsiKD;AgDniKD;EACE,uBAAA;ChDqiKD;AgDjiKD;EACE,cAAA;EACA,mBAAA;ChDmiKD;AgD7hKD;EACE,gBAAA;EACA,iBAAA;ChD+hKD;AiDtlKD;EAEE,oBAAA;EACA,gBAAA;CjDulKD;AiD/kKD;EACE,mBAAA;EACA,eAAA;EACA,mBAAA;EAEA,oBAAA;EACA,uBAAA;EACA,uBAAA;CjDglKD;AiD7kKC;ErB3BA,6BAAA;EACC,4BAAA;C5B2mKF;AiD9kKC;EACE,iBAAA;ErBvBF,gCAAA;EACC,+BAAA;C5BwmKF;AiDvkKD;;EAEE,YAAA;CjDykKD;AiD3kKD;;EAKI,YAAA;CjD0kKH;AiDtkKC;;;;EAEE,sBAAA;EACA,YAAA;EACA,0BAAA;CjD0kKH;AiDtkKD;EACE,YAAA;EACA,iBAAA;CjDwkKD;AiDnkKC;;;EAGE,0BAAA;EACA,eAAA;EACA,oBAAA;CjDqkKH;AiD1kKC;;;EASI,eAAA;CjDskKL;AiD/kKC;;;EAYI,eAAA;CjDwkKL;AiDnkKC;;;EAGE,WAAA;EACA,YAAA;EACA,0BAAA;EACA,sBAAA;CjDqkKH;AiD3kKC;;;;;;;;;EAYI,eAAA;CjD0kKL;AiDtlKC;;;EAeI,eAAA;CjD4kKL;AkD9qKC;EACE,eAAA;EACA,0BAAA;ClDgrKH;AkD9qKG;;EAEE,eAAA;ClDgrKL;AkDlrKG;;EAKI,eAAA;ClDirKP;AkD9qKK;;;;EAEE,eAAA;EACA,0BAAA;ClDkrKP;AkDhrKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDqrKP;AkD3sKC;EACE,eAAA;EACA,0BAAA;ClD6sKH;AkD3sKG;;EAEE,eAAA;ClD6sKL;AkD/sKG;;EAKI,eAAA;ClD8sKP;AkD3sKK;;;;EAEE,eAAA;EACA,0BAAA;ClD+sKP;AkD7sKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClDktKP;AkDxuKC;EACE,eAAA;EACA,0BAAA;ClD0uKH;AkDxuKG;;EAEE,eAAA;ClD0uKL;AkD5uKG;;EAKI,eAAA;ClD2uKP;AkDxuKK;;;;EAEE,eAAA;EACA,0BAAA;ClD4uKP;AkD1uKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD+uKP;AkDrwKC;EACE,eAAA;EACA,0BAAA;ClDuwKH;AkDrwKG;;EAEE,eAAA;ClDuwKL;AkDzwKG;;EAKI,eAAA;ClDwwKP;AkDrwKK;;;;EAEE,eAAA;EACA,0BAAA;ClDywKP;AkDvwKK;;;;;;EAGE,YAAA;EACA,0BAAA;EACA,sBAAA;ClD4wKP;AiD3qKD;EACE,cAAA;EACA,mBAAA;CjD6qKD;AiD3qKD;EACE,iBAAA;EACA,iBAAA;CjD6qKD;AmDvyKD;EACE,oBAAA;EACA,uBAAA;EACA,8BAAA;EACA,mBAAA;E9C0DA,kDAAA;EACQ,0CAAA;CLgvKT;AmDtyKD;EACE,cAAA;CnDwyKD;AmDnyKD;EACE,mBAAA;EACA,qCAAA;EvBpBA,6BAAA;EACC,4BAAA;C5B0zKF;AmDzyKD;EAMI,eAAA;CnDsyKH;AmDjyKD;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,eAAA;CnDmyKD;AmDvyKD;;;;;EAWI,eAAA;CnDmyKH;AmD9xKD;EACE,mBAAA;EACA,0BAAA;EACA,2BAAA;EvBxCA,gCAAA;EACC,+BAAA;C5By0KF;AmDxxKD;;EAGI,iBAAA;CnDyxKH;AmD5xKD;;EAMM,oBAAA;EACA,iBAAA;CnD0xKL;AmDtxKG;;EAEI,cAAA;EvBvEN,6BAAA;EACC,4BAAA;C5Bg2KF;AmDpxKG;;EAEI,iBAAA;EvBvEN,gCAAA;EACC,+BAAA;C5B81KF;AmD7yKD;EvB1DE,2BAAA;EACC,0BAAA;C5B02KF;AmDhxKD;EAEI,oBAAA;CnDixKH;AmD9wKD;EACE,oBAAA;CnDgxKD;AmDxwKD;;;EAII,iBAAA;CnDywKH;AmD7wKD;;;EAOM,mBAAA;EACA,oBAAA;CnD2wKL;AmDnxKD;;EvBzGE,6BAAA;EACC,4BAAA;C5Bg4KF;AmDxxKD;;;;EAmBQ,4BAAA;EACA,6BAAA;CnD2wKP;AmD/xKD;;;;;;;;EAwBU,4BAAA;CnDixKT;AmDzyKD;;;;;;;;EA4BU,6BAAA;CnDuxKT;AmDnzKD;;EvBjGE,gCAAA;EACC,+BAAA;C5Bw5KF;AmDxzKD;;;;EAyCQ,+BAAA;EACA,gCAAA;CnDqxKP;AmD/zKD;;;;;;;;EA8CU,+BAAA;CnD2xKT;AmDz0KD;;;;;;;;EAkDU,gCAAA;CnDiyKT;AmDn1KD;;;;EA2DI,2BAAA;CnD8xKH;AmDz1KD;;EA+DI,cAAA;CnD8xKH;AmD71KD;;EAmEI,UAAA;CnD8xKH;AmDj2KD;;;;;;;;;;;;EA0EU,eAAA;CnDqyKT;AmD/2KD;;;;;;;;;;;;EA8EU,gBAAA;CnD+yKT;AmD73KD;;;;;;;;EAuFU,iBAAA;CnDgzKT;AmDv4KD;;;;;;;;EAgGU,iBAAA;CnDizKT;AmDj5KD;EAsGI,UAAA;EACA,iBAAA;CnD8yKH;AmDpyKD;EACE,oBAAA;CnDsyKD;AmDvyKD;EAKI,iBAAA;EACA,mBAAA;CnDqyKH;AmD3yKD;EASM,gBAAA;CnDqyKL;AmD9yKD;EAcI,iBAAA;CnDmyKH;AmDjzKD;;EAkBM,2BAAA;CnDmyKL;AmDrzKD;EAuBI,cAAA;CnDiyKH;AmDxzKD;EAyBM,8BAAA;CnDkyKL;AmD3xKD;EC1PE,mBAAA;CpDwhLD;AoDthLC;EACE,eAAA;EACA,0BAAA;EACA,mBAAA;CpDwhLH;AoD3hLC;EAMI,uBAAA;CpDwhLL;AoD9hLC;EASI,eAAA;EACA,0BAAA;CpDwhLL;AoDrhLC;EAEI,0BAAA;CpDshLL;AmD1yKD;EC7PE,sBAAA;CpD0iLD;AoDxiLC;EACE,YAAA;EACA,0BAAA;EACA,sBAAA;CpD0iLH;AoD7iLC;EAMI,0BAAA;CpD0iLL;AoDhjLC;EASI,eAAA;EACA,uBAAA;CpD0iLL;AoDviLC;EAEI,6BAAA;CpDwiLL;AmDzzKD;EChQE,sBAAA;CpD4jLD;AoD1jLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD4jLH;AoD/jLC;EAMI,0BAAA;CpD4jLL;AoDlkLC;EASI,eAAA;EACA,0BAAA;CpD4jLL;AoDzjLC;EAEI,6BAAA;CpD0jLL;AmDx0KD;ECnQE,sBAAA;CpD8kLD;AoD5kLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpD8kLH;AoDjlLC;EAMI,0BAAA;CpD8kLL;AoDplLC;EASI,eAAA;EACA,0BAAA;CpD8kLL;AoD3kLC;EAEI,6BAAA;CpD4kLL;AmDv1KD;ECtQE,sBAAA;CpDgmLD;AoD9lLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDgmLH;AoDnmLC;EAMI,0BAAA;CpDgmLL;AoDtmLC;EASI,eAAA;EACA,0BAAA;CpDgmLL;AoD7lLC;EAEI,6BAAA;CpD8lLL;AmDt2KD;ECzQE,sBAAA;CpDknLD;AoDhnLC;EACE,eAAA;EACA,0BAAA;EACA,sBAAA;CpDknLH;AoDrnLC;EAMI,0BAAA;CpDknLL;AoDxnLC;EASI,eAAA;EACA,0BAAA;CpDknLL;AoD/mLC;EAEI,6BAAA;CpDgnLL;AqDhoLD;EACE,mBAAA;EACA,eAAA;EACA,UAAA;EACA,WAAA;EACA,iBAAA;CrDkoLD;AqDvoLD;;;;;EAYI,mBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,aAAA;EACA,YAAA;EACA,UAAA;CrDkoLH;AqD7nLD;EACE,uBAAA;CrD+nLD;AqD3nLD;EACE,oBAAA;CrD6nLD;AsDxpLD;EACE,iBAAA;EACA,cAAA;EACA,oBAAA;EACA,0BAAA;EACA,0BAAA;EACA,mBAAA;EjDwDA,wDAAA;EACQ,gDAAA;CLmmLT;AsDlqLD;EASI,mBAAA;EACA,kCAAA;CtD4pLH;AsDvpLD;EACE,cAAA;EACA,mBAAA;CtDypLD;AsDvpLD;EACE,aAAA;EACA,mBAAA;CtDypLD;AuD/qLD;EACE,aAAA;EACA,gBAAA;EACA,kBAAA;EACA,eAAA;EACA,YAAA;EACA,0BAAA;EjCRA,aAAA;EAGA,0BAAA;CtBwrLD;AuDhrLC;;EAEE,YAAA;EACA,sBAAA;EACA,gBAAA;EjCfF,aAAA;EAGA,0BAAA;CtBgsLD;AuD5qLC;EACE,WAAA;EACA,gBAAA;EACA,wBAAA;EACA,UAAA;EACA,yBAAA;CvD8qLH;AwDnsLD;EACE,iBAAA;CxDqsLD;AwDjsLD;EACE,cAAA;EACA,iBAAA;EACA,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,kCAAA;EAIA,WAAA;CxDgsLD;AwD7rLC;EnD+GA,sCAAA;EACI,kCAAA;EACC,iCAAA;EACG,8BAAA;EAkER,oDAAA;EAEK,0CAAA;EACG,oCAAA;CLghLT;AwDnsLC;EnD2GA,mCAAA;EACI,+BAAA;EACC,8BAAA;EACG,2BAAA;CL2lLT;AwDvsLD;EACE,mBAAA;EACA,iBAAA;CxDysLD;AwDrsLD;EACE,mBAAA;EACA,YAAA;EACA,aAAA;CxDusLD;AwDnsLD;EACE,mBAAA;EACA,uBAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EnDaA,iDAAA;EACQ,yCAAA;EmDZR,qCAAA;UAAA,6BAAA;EAEA,WAAA;CxDqsLD;AwDjsLD;EACE,gBAAA;EACA,OAAA;EACA,SAAA;EACA,UAAA;EACA,QAAA;EACA,cAAA;EACA,uBAAA;CxDmsLD;AwDjsLC;ElCrEA,WAAA;EAGA,yBAAA;CtBuwLD;AwDpsLC;ElCtEA,aAAA;EAGA,0BAAA;CtB2wLD;AwDnsLD;EACE,cAAA;EACA,iCAAA;CxDqsLD;AwDjsLD;EACE,iBAAA;CxDmsLD;AwD/rLD;EACE,UAAA;EACA,wBAAA;CxDisLD;AwD5rLD;EACE,mBAAA;EACA,cAAA;CxD8rLD;AwD1rLD;EACE,cAAA;EACA,kBAAA;EACA,8BAAA;CxD4rLD;AwD/rLD;EAQI,iBAAA;EACA,iBAAA;CxD0rLH;AwDnsLD;EAaI,kBAAA;CxDyrLH;AwDtsLD;EAiBI,eAAA;CxDwrLH;AwDnrLD;EACE,mBAAA;EACA,aAAA;EACA,YAAA;EACA,aAAA;EACA,iBAAA;CxDqrLD;AwDnqLD;EAZE;IACE,aAAA;IACA,kBAAA;GxDkrLD;EwDhrLD;InDvEA,kDAAA;IACQ,0CAAA;GL0vLP;EwD/qLD;IAAY,aAAA;GxDkrLX;CACF;AwD7qLD;EAFE;IAAY,aAAA;GxDmrLX;CACF;AyDl0LD;EACE,mBAAA;EACA,cAAA;EACA,eAAA;ECRA,4DAAA;EAEA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;EDHA,gBAAA;EnCVA,WAAA;EAGA,yBAAA;CtBy1LD;AyD90LC;EnCdA,aAAA;EAGA,0BAAA;CtB61LD;AyDj1LC;EAAW,iBAAA;EAAmB,eAAA;CzDq1L/B;AyDp1LC;EAAW,iBAAA;EAAmB,eAAA;CzDw1L/B;AyDv1LC;EAAW,gBAAA;EAAmB,eAAA;CzD21L/B;AyD11LC;EAAW,kBAAA;EAAmB,eAAA;CzD81L/B;AyD11LD;EACE,iBAAA;EACA,iBAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,mBAAA;CzD41LD;AyDx1LD;EACE,mBAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;CzD01LD;AyDt1LC;EACE,UAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,uBAAA;CzDw1LH;AyDt1LC;EACE,UAAA;EACA,WAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzDw1LH;AyDt1LC;EACE,UAAA;EACA,UAAA;EACA,oBAAA;EACA,wBAAA;EACA,uBAAA;CzDw1LH;AyDt1LC;EACE,SAAA;EACA,QAAA;EACA,iBAAA;EACA,4BAAA;EACA,yBAAA;CzDw1LH;AyDt1LC;EACE,SAAA;EACA,SAAA;EACA,iBAAA;EACA,4BAAA;EACA,wBAAA;CzDw1LH;AyDt1LC;EACE,OAAA;EACA,UAAA;EACA,kBAAA;EACA,wBAAA;EACA,0BAAA;CzDw1LH;AyDt1LC;EACE,OAAA;EACA,WAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzDw1LH;AyDt1LC;EACE,OAAA;EACA,UAAA;EACA,iBAAA;EACA,wBAAA;EACA,0BAAA;CzDw1LH;A2Dr7LD;EACE,mBAAA;EACA,OAAA;EACA,QAAA;EACA,cAAA;EACA,cAAA;EACA,iBAAA;EACA,aAAA;EDXA,4DAAA;EAEA,mBAAA;EACA,oBAAA;EACA,uBAAA;EACA,iBAAA;EACA,wBAAA;EACA,iBAAA;EACA,kBAAA;EACA,sBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mBAAA;EACA,qBAAA;EACA,kBAAA;ECAA,gBAAA;EAEA,uBAAA;EACA,qCAAA;UAAA,6BAAA;EACA,uBAAA;EACA,qCAAA;EACA,mBAAA;EtD8CA,kDAAA;EACQ,0CAAA;CLq5LT;A2Dh8LC;EAAY,kBAAA;C3Dm8Lb;A2Dl8LC;EAAY,kBAAA;C3Dq8Lb;A2Dp8LC;EAAY,iBAAA;C3Du8Lb;A2Dt8LC;EAAY,mBAAA;C3Dy8Lb;A2Dt8LD;EACE,UAAA;EACA,kBAAA;EACA,gBAAA;EACA,0BAAA;EACA,iCAAA;EACA,2BAAA;C3Dw8LD;A2Dr8LD;EACE,kBAAA;C3Du8LD;A2D/7LC;;EAEE,mBAAA;EACA,eAAA;EACA,SAAA;EACA,UAAA;EACA,0BAAA;EACA,oBAAA;C3Di8LH;A2D97LD;EACE,mBAAA;C3Dg8LD;A2D97LD;EACE,mBAAA;EACA,YAAA;C3Dg8LD;A2D57LC;EACE,UAAA;EACA,mBAAA;EACA,uBAAA;EACA,0BAAA;EACA,sCAAA;EACA,cAAA;C3D87LH;A2D77LG;EACE,aAAA;EACA,YAAA;EACA,mBAAA;EACA,uBAAA;EACA,uBAAA;C3D+7LL;A2D57LC;EACE,SAAA;EACA,YAAA;EACA,kBAAA;EACA,qBAAA;EACA,4BAAA;EACA,wCAAA;C3D87LH;A2D77LG;EACE,aAAA;EACA,UAAA;EACA,cAAA;EACA,qBAAA;EACA,yBAAA;C3D+7LL;A2D57LC;EACE,UAAA;EACA,mBAAA;EACA,oBAAA;EACA,6BAAA;EACA,yCAAA;EACA,WAAA;C3D87LH;A2D77LG;EACE,aAAA;EACA,SAAA;EACA,mBAAA;EACA,oBAAA;EACA,0BAAA;C3D+7LL;A2D37LC;EACE,SAAA;EACA,aAAA;EACA,kBAAA;EACA,sBAAA;EACA,2BAAA;EACA,uCAAA;C3D67LH;A2D57LG;EACE,aAAA;EACA,WAAA;EACA,sBAAA;EACA,wBAAA;EACA,cAAA;C3D87LL;A4DvjMD;EACE,mBAAA;C5DyjMD;A4DtjMD;EACE,mBAAA;EACA,iBAAA;EACA,YAAA;C5DwjMD;A4D3jMD;EAMI,cAAA;EACA,mBAAA;EvD6KF,0CAAA;EACK,qCAAA;EACG,kCAAA;CL44LT;A4DlkMD;;EAcM,eAAA;C5DwjML;A4D9hMC;EA4NF;IvD3DE,uDAAA;IAEK,6CAAA;IACG,uCAAA;IA7JR,oCAAA;IAEQ,4BAAA;IA+GR,4BAAA;IAEQ,oBAAA;GLi7LP;E4D5jMG;;IvDmHJ,2CAAA;IACQ,mCAAA;IuDjHF,QAAA;G5D+jML;E4D7jMG;;IvD8GJ,4CAAA;IACQ,oCAAA;IuD5GF,QAAA;G5DgkML;E4D9jMG;;;IvDyGJ,wCAAA;IACQ,gCAAA;IuDtGF,QAAA;G5DikML;CACF;A4DvmMD;;;EA6CI,eAAA;C5D+jMH;A4D5mMD;EAiDI,QAAA;C5D8jMH;A4D/mMD;;EAsDI,mBAAA;EACA,OAAA;EACA,YAAA;C5D6jMH;A4DrnMD;EA4DI,WAAA;C5D4jMH;A4DxnMD;EA+DI,YAAA;C5D4jMH;A4D3nMD;;EAmEI,QAAA;C5D4jMH;A4D/nMD;EAuEI,YAAA;C5D2jMH;A4DloMD;EA0EI,WAAA;C5D2jMH;A4DnjMD;EACE,mBAAA;EACA,OAAA;EACA,QAAA;EACA,UAAA;EACA,WAAA;EtC9FA,aAAA;EAGA,0BAAA;EsC6FA,gBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;EACA,mCAAA;C5DsjMD;A4DjjMC;EdnGE,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,4BAAA;EACA,uHAAA;C9CupMH;A4DrjMC;EACE,WAAA;EACA,SAAA;EdxGA,mGAAA;EACA,8FAAA;EACA,qHAAA;EAAA,+FAAA;EACA,4BAAA;EACA,uHAAA;C9CgqMH;A4DvjMC;;EAEE,WAAA;EACA,YAAA;EACA,sBAAA;EtCvHF,aAAA;EAGA,0BAAA;CtB+qMD;A4DzlMD;;;;EAuCI,mBAAA;EACA,SAAA;EACA,kBAAA;EACA,WAAA;EACA,sBAAA;C5DwjMH;A4DnmMD;;EA+CI,UAAA;EACA,mBAAA;C5DwjMH;A4DxmMD;;EAoDI,WAAA;EACA,oBAAA;C5DwjMH;A4D7mMD;;EAyDI,YAAA;EACA,aAAA;EACA,eAAA;EACA,mBAAA;C5DwjMH;A4DnjMG;EACE,iBAAA;C5DqjML;A4DjjMG;EACE,iBAAA;C5DmjML;A4DziMD;EACE,mBAAA;EACA,aAAA;EACA,UAAA;EACA,YAAA;EACA,WAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,mBAAA;C5D2iMD;A4DpjMD;EAYI,sBAAA;EACA,YAAA;EACA,aAAA;EACA,YAAA;EACA,oBAAA;EACA,uBAAA;EACA,oBAAA;EACA,gBAAA;EAWA,0BAAA;EACA,mCAAA;C5DiiMH;A4DhkMD;EAkCI,UAAA;EACA,YAAA;EACA,aAAA;EACA,uBAAA;C5DiiMH;A4D1hMD;EACE,mBAAA;EACA,UAAA;EACA,WAAA;EACA,aAAA;EACA,YAAA;EACA,kBAAA;EACA,qBAAA;EACA,YAAA;EACA,mBAAA;EACA,0CAAA;C5D4hMD;A4D3hMC;EACE,kBAAA;C5D6hMH;A4Dp/LD;EAhCE;;;;IAKI,YAAA;IACA,aAAA;IACA,kBAAA;IACA,gBAAA;G5DshMH;E4D9hMD;;IAYI,mBAAA;G5DshMH;E4DliMD;;IAgBI,oBAAA;G5DshMH;E4DjhMD;IACE,UAAA;IACA,WAAA;IACA,qBAAA;G5DmhMD;E4D/gMD;IACE,aAAA;G5DihMD;CACF;A6DhxMC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEE,aAAA;EACA,eAAA;C7DgzMH;A6D9yMC;;;;;;;;;;;;;;;;EACE,YAAA;C7D+zMH;AiCv0MD;E6BRE,eAAA;EACA,kBAAA;EACA,mBAAA;C9Dk1MD;AiCz0MD;EACE,wBAAA;CjC20MD;AiCz0MD;EACE,uBAAA;CjC20MD;AiCn0MD;EACE,yBAAA;CjCq0MD;AiCn0MD;EACE,0BAAA;CjCq0MD;AiCn0MD;EACE,mBAAA;CjCq0MD;AiCn0MD;E8BzBE,YAAA;EACA,mBAAA;EACA,kBAAA;EACA,8BAAA;EACA,UAAA;C/D+1MD;AiCj0MD;EACE,yBAAA;CjCm0MD;AiC5zMD;EACE,gBAAA;CjC8zMD;AgE/1MD;EACE,oBAAA;ChEi2MD;AgE31MD;;;;ECdE,yBAAA;CjE+2MD;AgE11MD;;;;;;;;;;;;EAYE,yBAAA;ChE41MD;AgEr1MD;EA6IA;IC7LE,0BAAA;GjEy4MC;EiEx4MD;IAAU,0BAAA;GjE24MT;EiE14MD;IAAU,8BAAA;GjE64MT;EiE54MD;;IACU,+BAAA;GjE+4MT;CACF;AgE/1MD;EAwIA;IA1II,0BAAA;GhEq2MD;CACF;AgE/1MD;EAmIA;IArII,2BAAA;GhEq2MD;CACF;AgE/1MD;EA8HA;IAhII,iCAAA;GhEq2MD;CACF;AgE91MD;EAwHA;IC7LE,0BAAA;GjEu6MC;EiEt6MD;IAAU,0BAAA;GjEy6MT;EiEx6MD;IAAU,8BAAA;GjE26MT;EiE16MD;;IACU,+BAAA;GjE66MT;CACF;AgEx2MD;EAmHA;IArHI,0BAAA;GhE82MD;CACF;AgEx2MD;EA8GA;IAhHI,2BAAA;GhE82MD;CACF;AgEx2MD;EAyGA;IA3GI,iCAAA;GhE82MD;CACF;AgEv2MD;EAmGA;IC7LE,0BAAA;GjEq8MC;EiEp8MD;IAAU,0BAAA;GjEu8MT;EiEt8MD;IAAU,8BAAA;GjEy8MT;EiEx8MD;;IACU,+BAAA;GjE28MT;CACF;AgEj3MD;EA8FA;IAhGI,0BAAA;GhEu3MD;CACF;AgEj3MD;EAyFA;IA3FI,2BAAA;GhEu3MD;CACF;AgEj3MD;EAoFA;IAtFI,iCAAA;GhEu3MD;CACF;AgEh3MD;EA8EA;IC7LE,0BAAA;GjEm+MC;EiEl+MD;IAAU,0BAAA;GjEq+MT;EiEp+MD;IAAU,8BAAA;GjEu+MT;EiEt+MD;;IACU,+BAAA;GjEy+MT;CACF;AgE13MD;EAyEA;IA3EI,0BAAA;GhEg4MD;CACF;AgE13MD;EAoEA;IAtEI,2BAAA;GhEg4MD;CACF;AgE13MD;EA+DA;IAjEI,iCAAA;GhEg4MD;CACF;AgEz3MD;EAyDA;ICrLE,yBAAA;GjEy/MC;CACF;AgEz3MD;EAoDA;ICrLE,yBAAA;GjE8/MC;CACF;AgEz3MD;EA+CA;ICrLE,yBAAA;GjEmgNC;CACF;AgEz3MD;EA0CA;ICrLE,yBAAA;GjEwgNC;CACF;AgEt3MD;ECnJE,yBAAA;CjE4gND;AgEn3MD;EA4BA;IC7LE,0BAAA;GjEwhNC;EiEvhND;IAAU,0BAAA;GjE0hNT;EiEzhND;IAAU,8BAAA;GjE4hNT;EiE3hND;;IACU,+BAAA;GjE8hNT;CACF;AgEj4MD;EACE,yBAAA;ChEm4MD;AgE93MD;EAqBA;IAvBI,0BAAA;GhEo4MD;CACF;AgEl4MD;EACE,yBAAA;ChEo4MD;AgE/3MD;EAcA;IAhBI,2BAAA;GhEq4MD;CACF;AgEn4MD;EACE,yBAAA;ChEq4MD;AgEh4MD;EAOA;IATI,iCAAA;GhEs4MD;CACF;AgE/3MD;EACA;ICrLE,yBAAA;GjEujNC;CACF","file":"bootstrap.css","sourcesContent":["/*!\n * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)\n */\n/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\002a\";\n}\n.glyphicon-plus:before {\n content: \"\\002b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-btc:before {\n content: \"\\e227\";\n}\n.glyphicon-xbt:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-jpy:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-rub:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #fff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\n[role=\"button\"] {\n cursor: pointer;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover,\na.text-primary:focus {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover,\na.text-success:focus {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover,\na.text-info:focus {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover,\na.text-warning:focus {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover,\na.text-danger:focus {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover,\na.bg-primary:focus {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover,\na.bg-success:focus {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover,\na.bg-info:focus {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover,\na.bg-warning:focus {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover,\na.bg-danger:focus {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #fff;\n background-color: #333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #ddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #ddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #ddd;\n}\n.table .table {\n background-color: #fff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #ddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #ddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #fff;\n background-image: none;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999;\n}\n.form-control::-ms-expand {\n border: 0;\n background-color: transparent;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n background-color: #eeeeee;\n opacity: 1;\n}\n.form-control[disabled],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"].form-control,\n input[type=\"time\"].form-control,\n input[type=\"datetime-local\"].form-control,\n input[type=\"month\"].form-control {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n min-height: 34px;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.form-group-sm select.form-control {\n height: 30px;\n line-height: 30px;\n}\n.form-group-sm textarea.form-control,\n.form-group-sm select[multiple].form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n min-height: 32px;\n padding: 6px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.form-group-lg select.form-control {\n height: 46px;\n line-height: 46px;\n}\n.form-group-lg textarea.form-control,\n.form-group-lg select[multiple].form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n min-height: 38px;\n padding: 11px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 11px;\n font-size: 18px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n font-size: 12px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\na.btn.disabled,\nfieldset[disabled] a.btn {\n pointer-events: none;\n}\n.btn-default {\n color: #333;\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default:focus,\n.btn-default.focus {\n color: #333;\n background-color: #e6e6e6;\n border-color: #8c8c8c;\n}\n.btn-default:hover {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active:hover,\n.btn-default.active:hover,\n.open > .dropdown-toggle.btn-default:hover,\n.btn-default:active:focus,\n.btn-default.active:focus,\n.open > .dropdown-toggle.btn-default:focus,\n.btn-default:active.focus,\n.btn-default.active.focus,\n.open > .dropdown-toggle.btn-default.focus {\n color: #333;\n background-color: #d4d4d4;\n border-color: #8c8c8c;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus {\n background-color: #fff;\n border-color: #ccc;\n}\n.btn-default .badge {\n color: #fff;\n background-color: #333;\n}\n.btn-primary {\n color: #fff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:focus,\n.btn-primary.focus {\n color: #fff;\n background-color: #286090;\n border-color: #122b40;\n}\n.btn-primary:hover {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #fff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active:hover,\n.btn-primary.active:hover,\n.open > .dropdown-toggle.btn-primary:hover,\n.btn-primary:active:focus,\n.btn-primary.active:focus,\n.open > .dropdown-toggle.btn-primary:focus,\n.btn-primary:active.focus,\n.btn-primary.active.focus,\n.open > .dropdown-toggle.btn-primary.focus {\n color: #fff;\n background-color: #204d74;\n border-color: #122b40;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.btn-success {\n color: #fff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:focus,\n.btn-success.focus {\n color: #fff;\n background-color: #449d44;\n border-color: #255625;\n}\n.btn-success:hover {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #fff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active:hover,\n.btn-success.active:hover,\n.open > .dropdown-toggle.btn-success:hover,\n.btn-success:active:focus,\n.btn-success.active:focus,\n.open > .dropdown-toggle.btn-success:focus,\n.btn-success:active.focus,\n.btn-success.active.focus,\n.open > .dropdown-toggle.btn-success.focus {\n color: #fff;\n background-color: #398439;\n border-color: #255625;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #fff;\n}\n.btn-info {\n color: #fff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:focus,\n.btn-info.focus {\n color: #fff;\n background-color: #31b0d5;\n border-color: #1b6d85;\n}\n.btn-info:hover {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #fff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active:hover,\n.btn-info.active:hover,\n.open > .dropdown-toggle.btn-info:hover,\n.btn-info:active:focus,\n.btn-info.active:focus,\n.open > .dropdown-toggle.btn-info:focus,\n.btn-info:active.focus,\n.btn-info.active.focus,\n.open > .dropdown-toggle.btn-info.focus {\n color: #fff;\n background-color: #269abc;\n border-color: #1b6d85;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #fff;\n}\n.btn-warning {\n color: #fff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:focus,\n.btn-warning.focus {\n color: #fff;\n background-color: #ec971f;\n border-color: #985f0d;\n}\n.btn-warning:hover {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #fff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active:hover,\n.btn-warning.active:hover,\n.open > .dropdown-toggle.btn-warning:hover,\n.btn-warning:active:focus,\n.btn-warning.active:focus,\n.open > .dropdown-toggle.btn-warning:focus,\n.btn-warning:active.focus,\n.btn-warning.active.focus,\n.open > .dropdown-toggle.btn-warning.focus {\n color: #fff;\n background-color: #d58512;\n border-color: #985f0d;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #fff;\n}\n.btn-danger {\n color: #fff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:focus,\n.btn-danger.focus {\n color: #fff;\n background-color: #c9302c;\n border-color: #761c19;\n}\n.btn-danger:hover {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #fff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active:hover,\n.btn-danger.active:hover,\n.open > .dropdown-toggle.btn-danger:hover,\n.btn-danger:active:focus,\n.btn-danger.active:focus,\n.open > .dropdown-toggle.btn-danger:focus,\n.btn-danger:active.focus,\n.btn-danger.active.focus,\n.open > .dropdown-toggle.btn-danger.focus {\n color: #fff;\n background-color: #ac2925;\n border-color: #761c19;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #fff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n}\n.collapse.in {\n display: block;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px dashed;\n border-top: 4px solid \\9;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #fff;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #fff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px dashed;\n border-bottom: 4px solid \\9;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn,\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group .form-control:focus {\n z-index: 3;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #ccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n z-index: 2;\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #ddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #ddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #fff;\n border: 1px solid #ddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #fff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #ddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #ddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #fff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n}\n.tab-content > .active {\n display: block;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #ddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #ddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #ccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777;\n}\n.navbar-default .navbar-link:hover {\n color: #333;\n}\n.navbar-default .btn-link {\n color: #777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #ccc;\n}\n.navbar-inverse {\n background-color: #222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #fff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #fff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #fff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #fff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #fff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #fff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #fff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #fff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #ccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #fff;\n border: 1px solid #ddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n z-index: 2;\n color: #23527c;\n background-color: #eeeeee;\n border-color: #ddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 3;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #fff;\n border-color: #ddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #fff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #fff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #fff;\n line-height: 1;\n vertical-align: middle;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge,\n.btn-group-xs > .btn .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #fff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding-top: 30px;\n padding-bottom: 30px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding-top: 48px;\n padding-bottom: 48px;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #fff;\n border: 1px solid #ddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #fff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-object.img-thumbnail {\n max-width: none;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #fff;\n border: 1px solid #ddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item,\nbutton.list-group-item {\n color: #555;\n}\na.list-group-item .list-group-item-heading,\nbutton.list-group-item .list-group-item-heading {\n color: #333;\n}\na.list-group-item:hover,\nbutton.list-group-item:hover,\na.list-group-item:focus,\nbutton.list-group-item:focus {\n text-decoration: none;\n color: #555;\n background-color: #f5f5f5;\n}\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success,\nbutton.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading,\nbutton.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\nbutton.list-group-item-success:hover,\na.list-group-item-success:focus,\nbutton.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\nbutton.list-group-item-success.active,\na.list-group-item-success.active:hover,\nbutton.list-group-item-success.active:hover,\na.list-group-item-success.active:focus,\nbutton.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info,\nbutton.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading,\nbutton.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\nbutton.list-group-item-info:hover,\na.list-group-item-info:focus,\nbutton.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\nbutton.list-group-item-info.active,\na.list-group-item-info.active:hover,\nbutton.list-group-item-info.active:hover,\na.list-group-item-info.active:focus,\nbutton.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning,\nbutton.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading,\nbutton.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\nbutton.list-group-item-warning:hover,\na.list-group-item-warning:focus,\nbutton.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\nbutton.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\nbutton.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus,\nbutton.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger,\nbutton.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading,\nbutton.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\nbutton.list-group-item-danger:hover,\na.list-group-item-danger:focus,\nbutton.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\nbutton.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\nbutton.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus,\nbutton.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #fff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #ddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #ddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #ddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #ddd;\n}\n.panel-default {\n border-color: #ddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #ddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #fff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #fff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000;\n text-shadow: 0 1px 0 #fff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1050;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #fff;\n border: 1px solid #999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n background-color: #000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.42857143;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 12px;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #fff;\n text-align: center;\n background-color: #000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: 1.42857143;\n text-align: left;\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n font-size: 14px;\n background-color: #fff;\n background-clip: padding-box;\n border: 1px solid #ccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #fff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #fff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #fff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #fff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000px;\n -moz-perspective: 1000px;\n perspective: 1000px;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #fff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #fff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #fff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #fff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -10px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -10px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -10px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-header:before,\n.modal-header:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-header:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table !important;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table !important;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table !important;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table !important;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table !important;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS and IE text size adjust after device orientation change,\n// without disabling user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability of focused elements when they are also in an\n// active/hover state.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome.\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n box-sizing: content-box; //2\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// <a href=\"#\"><span class=\"glyphicon glyphicon-star\"></span> Star</a>\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\002a\"; } }\n.glyphicon-plus { &:before { content: \"\\002b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-btc { &:before { content: \"\\e227\"; } }\n.glyphicon-xbt { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-jpy { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-rub { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n\n\n// iOS \"clickable elements\" fix for role=\"button\"\n//\n// Fixes \"clickability\" issue (and more generally, the firing of events such as focus as well)\n// for traditionally non-focusable elements with role=\"button\"\n// see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n\n[role=\"button\"] {\n cursor: pointer;\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They have been removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility) {\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @dl-horizontal-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n .text-uppercase();\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover,\n a&:focus {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover,\n a&:focus {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: floor((@gutter / 2));\n padding-right: ceil((@gutter / 2));\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: ceil((@gutter / -2));\n margin-right: floor((@gutter / -2));\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: ceil((@grid-gutter-width / 2));\n padding-right: floor((@grid-gutter-width / 2));\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Unstyle the caret on `<select>`s in IE10+.\n &::-ms-expand {\n border: 0;\n background-color: transparent;\n }\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n//\n// Note that as of 8.3, iOS doesn't support `datetime` or `week`.\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n &.form-control {\n line-height: @input-height-base;\n }\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: @form-group-margin-bottom;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n position: relative;\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because <label>s don't inherit their parent's `cursor`.\n//\n// Note: Neither radios nor checkboxes can be readonly.\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n &[disabled],\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used directly on <label>s\n.radio-inline,\n.checkbox-inline {\n &.disabled,\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n }\n}\n// These classes are used on elements with <label> descendants\n.radio,\n.checkbox {\n &.disabled,\n fieldset[disabled] & {\n label {\n cursor: @cursor-disabled;\n }\n }\n}\n\n\n// Static form control text\n//\n// Apply class to a `p` element to make any string of text align with labels in\n// a horizontal form layout.\n\n.form-control-static {\n // Size it appropriately next to real form controls\n padding-top: (@padding-base-vertical + 1);\n padding-bottom: (@padding-base-vertical + 1);\n // Remove default margin from `p`\n margin-bottom: 0;\n min-height: (@line-height-computed + @font-size-base);\n\n &.input-lg,\n &.input-sm {\n padding-left: 0;\n padding-right: 0;\n }\n}\n\n\n// Form control sizing\n//\n// Build on `.form-control` with modifier classes to decrease or increase the\n// height and font-size of form controls.\n//\n// The `.form-group-* form-control` variations are sadly duplicated to avoid the\n// issue documented in https://github.com/twbs/bootstrap/issues/15074.\n\n.input-sm {\n .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);\n}\n.form-group-sm {\n .form-control {\n height: @input-height-small;\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n border-radius: @input-border-radius-small;\n }\n select.form-control {\n height: @input-height-small;\n line-height: @input-height-small;\n }\n textarea.form-control,\n select[multiple].form-control {\n height: auto;\n }\n .form-control-static {\n height: @input-height-small;\n min-height: (@line-height-computed + @font-size-small);\n padding: (@padding-small-vertical + 1) @padding-small-horizontal;\n font-size: @font-size-small;\n line-height: @line-height-small;\n }\n}\n\n.input-lg {\n .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);\n}\n.form-group-lg {\n .form-control {\n height: @input-height-large;\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n border-radius: @input-border-radius-large;\n }\n select.form-control {\n height: @input-height-large;\n line-height: @input-height-large;\n }\n textarea.form-control,\n select[multiple].form-control {\n height: auto;\n }\n .form-control-static {\n height: @input-height-large;\n min-height: (@line-height-computed + @font-size-large);\n padding: (@padding-large-vertical + 1) @padding-large-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-large;\n }\n}\n\n\n// Form control feedback states\n//\n// Apply contextual and semantic states to individual form controls.\n\n.has-feedback {\n // Enable absolute positioning\n position: relative;\n\n // Ensure icons don't overlap text\n .form-control {\n padding-right: (@input-height-base * 1.25);\n }\n}\n// Feedback icon (requires .glyphicon classes)\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2; // Ensure icon is above input groups\n display: block;\n width: @input-height-base;\n height: @input-height-base;\n line-height: @input-height-base;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback,\n.input-group-lg + .form-control-feedback,\n.form-group-lg .form-control + .form-control-feedback {\n width: @input-height-large;\n height: @input-height-large;\n line-height: @input-height-large;\n}\n.input-sm + .form-control-feedback,\n.input-group-sm + .form-control-feedback,\n.form-group-sm .form-control + .form-control-feedback {\n width: @input-height-small;\n height: @input-height-small;\n line-height: @input-height-small;\n}\n\n// Feedback states\n.has-success {\n .form-control-validation(@state-success-text; @state-success-text; @state-success-bg);\n}\n.has-warning {\n .form-control-validation(@state-warning-text; @state-warning-text; @state-warning-bg);\n}\n.has-error {\n .form-control-validation(@state-danger-text; @state-danger-text; @state-danger-bg);\n}\n\n// Reposition feedback icon if input has visible label above\n.has-feedback label {\n\n & ~ .form-control-feedback {\n top: (@line-height-computed + 5); // Height of the `label` and its margin\n }\n &.sr-only ~ .form-control-feedback {\n top: 0;\n }\n}\n\n\n// Help text\n//\n// Apply to any element you wish to create light text for placement immediately\n// below a form control. Use for general help, formatting, or instructional text.\n\n.help-block {\n display: block; // account for any element using help-block\n margin-top: 5px;\n margin-bottom: 10px;\n color: lighten(@text-color, 25%); // lighten the text some for contrast\n}\n\n\n// Inline forms\n//\n// Make forms appear inline(-block) by adding the `.form-inline` class. Inline\n// forms begin stacked on extra small (mobile) devices and then go inline when\n// viewports reach <768px.\n//\n// Requires wrapping inputs and labels with `.form-group` for proper display of\n// default HTML form controls and our custom form controls (e.g., input groups).\n//\n// Heads up! This is mixin-ed into `.navbar-form` in navbars.less.\n\n.form-inline {\n\n // Kick in the inline\n @media (min-width: @screen-sm-min) {\n // Inline-block all the things for \"inline\"\n .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // In navbar-form, allow folks to *not* use `.form-group`\n .form-control {\n display: inline-block;\n width: auto; // Prevent labels from stacking above inputs in `.form-group`\n vertical-align: middle;\n }\n\n // Make static controls behave like regular ones\n .form-control-static {\n display: inline-block;\n }\n\n .input-group {\n display: inline-table;\n vertical-align: middle;\n\n .input-group-addon,\n .input-group-btn,\n .form-control {\n width: auto;\n }\n }\n\n // Input groups need that 100% width though\n .input-group > .form-control {\n width: 100%;\n }\n\n .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n\n // Remove default margin on radios/checkboxes that were used for stacking, and\n // then undo the floating of radios and checkboxes to match.\n .radio,\n .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n\n label {\n padding-left: 0;\n }\n }\n .radio input[type=\"radio\"],\n .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n\n // Re-override the feedback icon.\n .has-feedback .form-control-feedback {\n top: 0;\n }\n }\n}\n\n\n// Horizontal forms\n//\n// Horizontal forms are built on grid classes and allow you to create forms with\n// labels on the left and inputs on the right.\n\n.form-horizontal {\n\n // Consistent vertical alignment of radios and checkboxes\n //\n // Labels also get some reset styles, but that is scoped to a media query below.\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n // Account for padding we're adding to ensure the alignment and of help text\n // and other content below items\n .radio,\n .checkbox {\n min-height: (@line-height-computed + (@padding-base-vertical + 1));\n }\n\n // Make form groups behave like rows\n .form-group {\n .make-row();\n }\n\n // Reset spacing and right align labels, but scope to media queries so that\n // labels on narrow viewports stack the same as a default form example.\n @media (min-width: @screen-sm-min) {\n .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: (@padding-base-vertical + 1); // Default padding plus a border\n }\n }\n\n // Validation states\n //\n // Reposition the icon because it's now within a grid column and columns have\n // `position: relative;` on them. Also accounts for the grid gutter padding.\n .has-feedback .form-control-feedback {\n right: floor((@grid-gutter-width / 2));\n }\n\n // Form group sizes\n //\n // Quick utility class for applying `.input-lg` and `.input-sm` styles to the\n // inputs and labels within a `.form-group`.\n .form-group-lg {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-large-vertical + 1);\n font-size: @font-size-large;\n }\n }\n }\n .form-group-sm {\n @media (min-width: @screen-sm-min) {\n .control-label {\n padding-top: (@padding-small-vertical + 1);\n font-size: @font-size-small;\n }\n }\n }\n}\n","// Form validation states\n//\n// Used in forms.less to generate the form validation CSS for warnings, errors,\n// and successes.\n\n.form-control-validation(@text-color: #555; @border-color: #ccc; @background-color: #f5f5f5) {\n // Color the label and help text\n .help-block,\n .control-label,\n .radio,\n .checkbox,\n .radio-inline,\n .checkbox-inline,\n &.radio label,\n &.checkbox label,\n &.radio-inline label,\n &.checkbox-inline label {\n color: @text-color;\n }\n // Set the border and box shadow on specific inputs to match\n .form-control {\n border-color: @border-color;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075)); // Redeclare so transitions work\n &:focus {\n border-color: darken(@border-color, 10%);\n @shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 6px lighten(@border-color, 20%);\n .box-shadow(@shadow);\n }\n }\n // Set validation states also for addons\n .input-group-addon {\n color: @text-color;\n border-color: @border-color;\n background-color: @background-color;\n }\n // Optional feedback icon\n .form-control-feedback {\n color: @text-color;\n }\n}\n\n\n// Form control focus state\n//\n// Generate a customized focus state and for any input with the specified color,\n// which defaults to the `@input-border-focus` variable.\n//\n// We highly encourage you to not customize the default value, but instead use\n// this to tweak colors on an as-needed basis. This aesthetic change is based on\n// WebKit's default styles, but applicable to a wider range of browsers. Its\n// usability and accessibility should be taken into account with any change.\n//\n// Example usage: change the default blue border and shadow to white for better\n// contrast against a dark gray background.\n.form-control-focus(@color: @input-border-focus) {\n @color-rgba: rgba(red(@color), green(@color), blue(@color), .6);\n &:focus {\n border-color: @color;\n outline: 0;\n .box-shadow(~\"inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px @{color-rgba}\");\n }\n}\n\n// Form control sizing\n//\n// Relative text size, padding, and border-radii changes for form controls. For\n// horizontal sizing, wrap controls in the predefined grid classes. `<select>`\n// element gets special love because it's special, and that's a fact!\n.input-size(@input-height; @padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n height: @input-height;\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n\n select& {\n height: @input-height;\n line-height: @input-height;\n }\n\n textarea&,\n select[multiple]& {\n height: auto;\n }\n}\n","//\n// Buttons\n// --------------------------------------------------\n\n\n// Base styles\n// --------------------------------------------------\n\n.btn {\n display: inline-block;\n margin-bottom: 0; // For input.btn\n font-weight: @btn-font-weight;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n white-space: nowrap;\n .button-size(@padding-base-vertical; @padding-base-horizontal; @font-size-base; @line-height-base; @btn-border-radius-base);\n .user-select(none);\n\n &,\n &:active,\n &.active {\n &:focus,\n &.focus {\n .tab-focus();\n }\n }\n\n &:hover,\n &:focus,\n &.focus {\n color: @btn-default-color;\n text-decoration: none;\n }\n\n &:active,\n &.active {\n outline: 0;\n background-image: none;\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n }\n\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n .opacity(.65);\n .box-shadow(none);\n }\n\n a& {\n &.disabled,\n fieldset[disabled] & {\n pointer-events: none; // Future-proof disabling of clicks on `<a>` elements\n }\n }\n}\n\n\n// Alternate buttons\n// --------------------------------------------------\n\n.btn-default {\n .button-variant(@btn-default-color; @btn-default-bg; @btn-default-border);\n}\n.btn-primary {\n .button-variant(@btn-primary-color; @btn-primary-bg; @btn-primary-border);\n}\n// Success appears as green\n.btn-success {\n .button-variant(@btn-success-color; @btn-success-bg; @btn-success-border);\n}\n// Info appears as blue-green\n.btn-info {\n .button-variant(@btn-info-color; @btn-info-bg; @btn-info-border);\n}\n// Warning appears as orange\n.btn-warning {\n .button-variant(@btn-warning-color; @btn-warning-bg; @btn-warning-border);\n}\n// Danger and error appear as red\n.btn-danger {\n .button-variant(@btn-danger-color; @btn-danger-bg; @btn-danger-border);\n}\n\n\n// Link buttons\n// -------------------------\n\n// Make a button look and behave like a link\n.btn-link {\n color: @link-color;\n font-weight: normal;\n border-radius: 0;\n\n &,\n &:active,\n &.active,\n &[disabled],\n fieldset[disabled] & {\n background-color: transparent;\n .box-shadow(none);\n }\n &,\n &:hover,\n &:focus,\n &:active {\n border-color: transparent;\n }\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n background-color: transparent;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @btn-link-disabled-color;\n text-decoration: none;\n }\n }\n}\n\n\n// Button Sizes\n// --------------------------------------------------\n\n.btn-lg {\n // line-height: ensure even-numbered height of button next to large input\n .button-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @btn-border-radius-large);\n}\n.btn-sm {\n // line-height: ensure proper height of button next to small input\n .button-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n.btn-xs {\n .button-size(@padding-xs-vertical; @padding-xs-horizontal; @font-size-small; @line-height-small; @btn-border-radius-small);\n}\n\n\n// Block button\n// --------------------------------------------------\n\n.btn-block {\n display: block;\n width: 100%;\n}\n\n// Vertically space out multiple block buttons\n.btn-block + .btn-block {\n margin-top: 5px;\n}\n\n// Specificity overrides\ninput[type=\"submit\"],\ninput[type=\"reset\"],\ninput[type=\"button\"] {\n &.btn-block {\n width: 100%;\n }\n}\n","// Button variants\n//\n// Easily pump out default styles, as well as :hover, :focus, :active,\n// and disabled options for all buttons\n\n.button-variant(@color; @background; @border) {\n color: @color;\n background-color: @background;\n border-color: @border;\n\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 25%);\n }\n &:hover {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n color: @color;\n background-color: darken(@background, 10%);\n border-color: darken(@border, 12%);\n\n &:hover,\n &:focus,\n &.focus {\n color: @color;\n background-color: darken(@background, 17%);\n border-color: darken(@border, 25%);\n }\n }\n &:active,\n &.active,\n .open > .dropdown-toggle& {\n background-image: none;\n }\n &.disabled,\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus,\n &.focus {\n background-color: @background;\n border-color: @border;\n }\n }\n\n .badge {\n color: @background;\n background-color: @color;\n }\n}\n\n// Button sizes\n.button-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n border-radius: @border-radius;\n}\n","// Opacity\n\n.opacity(@opacity) {\n opacity: @opacity;\n // IE8 filter\n @opacity-ie: (@opacity * 100);\n filter: ~\"alpha(opacity=@{opacity-ie})\";\n}\n","//\n// Component animations\n// --------------------------------------------------\n\n// Heads up!\n//\n// We don't use the `.opacity()` mixin here since it causes a bug with text\n// fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.\n\n.fade {\n opacity: 0;\n .transition(opacity .15s linear);\n &.in {\n opacity: 1;\n }\n}\n\n.collapse {\n display: none;\n\n &.in { display: block; }\n tr&.in { display: table-row; }\n tbody&.in { display: table-row-group; }\n}\n\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n .transition-property(~\"height, visibility\");\n .transition-duration(.35s);\n .transition-timing-function(ease);\n}\n","//\n// Dropdown menus\n// --------------------------------------------------\n\n\n// Dropdown arrow/caret\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: @caret-width-base dashed;\n border-top: @caret-width-base solid ~\"\\9\"; // IE8\n border-right: @caret-width-base solid transparent;\n border-left: @caret-width-base solid transparent;\n}\n\n// The dropdown wrapper (div)\n.dropup,\n.dropdown {\n position: relative;\n}\n\n// Prevent the focus on the dropdown toggle when closing dropdowns\n.dropdown-toggle:focus {\n outline: 0;\n}\n\n// The dropdown menu (ul)\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: @zindex-dropdown;\n display: none; // none by default, but block on \"open\" of the menu\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0; // override default ul\n list-style: none;\n font-size: @font-size-base;\n text-align: left; // Ensures proper alignment if parent has it changed (e.g., modal footer)\n background-color: @dropdown-bg;\n border: 1px solid @dropdown-fallback-border; // IE8 fallback\n border: 1px solid @dropdown-border;\n border-radius: @border-radius-base;\n .box-shadow(0 6px 12px rgba(0,0,0,.175));\n background-clip: padding-box;\n\n // Aligns the dropdown menu to right\n //\n // Deprecated as of 3.1.0 in favor of `.dropdown-menu-[dir]`\n &.pull-right {\n right: 0;\n left: auto;\n }\n\n // Dividers (basically an hr) within the dropdown\n .divider {\n .nav-divider(@dropdown-divider-bg);\n }\n\n // Links within the dropdown menu\n > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: @line-height-base;\n color: @dropdown-link-color;\n white-space: nowrap; // prevent links from randomly breaking onto new lines\n }\n}\n\n// Hover/Focus state\n.dropdown-menu > li > a {\n &:hover,\n &:focus {\n text-decoration: none;\n color: @dropdown-link-hover-color;\n background-color: @dropdown-link-hover-bg;\n }\n}\n\n// Active state\n.dropdown-menu > .active > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-active-color;\n text-decoration: none;\n outline: 0;\n background-color: @dropdown-link-active-bg;\n }\n}\n\n// Disabled state\n//\n// Gray out text and ensure the hover/focus state remains gray\n\n.dropdown-menu > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @dropdown-link-disabled-color;\n }\n\n // Nuke hover/focus effects\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none; // Remove CSS gradient\n .reset-filter();\n cursor: @cursor-disabled;\n }\n}\n\n// Open state for the dropdown\n.open {\n // Show the menu\n > .dropdown-menu {\n display: block;\n }\n\n // Remove the outline when :focus is triggered\n > a {\n outline: 0;\n }\n}\n\n// Menu positioning\n//\n// Add extra class to `.dropdown-menu` to flip the alignment of the dropdown\n// menu with the parent.\n.dropdown-menu-right {\n left: auto; // Reset the default from `.dropdown-menu`\n right: 0;\n}\n// With v3, we enabled auto-flipping if you have a dropdown within a right\n// aligned nav component. To enable the undoing of that, we provide an override\n// to restore the default dropdown menu alignment.\n//\n// This is only for left-aligning a dropdown menu within a `.navbar-right` or\n// `.pull-right` nav component.\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n\n// Dropdown section headers\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: @font-size-small;\n line-height: @line-height-base;\n color: @dropdown-header-color;\n white-space: nowrap; // as with > li > a\n}\n\n// Backdrop to catch body clicks on mobile, etc.\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: (@zindex-dropdown - 10);\n}\n\n// Right aligned dropdowns\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n\n// Allow for dropdowns to go bottom up (aka, dropup-menu)\n//\n// Just add .dropup after the standard .dropdown class and you're set, bro.\n// TODO: abstract this so that the navbar fixed styles are not placed here?\n\n.dropup,\n.navbar-fixed-bottom .dropdown {\n // Reverse the caret\n .caret {\n border-top: 0;\n border-bottom: @caret-width-base dashed;\n border-bottom: @caret-width-base solid ~\"\\9\"; // IE8\n content: \"\";\n }\n // Different positioning for bottom up menu\n .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n }\n}\n\n\n// Component alignment\n//\n// Reiterate per navbar.less and the modified component alignment there.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-right {\n .dropdown-menu {\n .dropdown-menu-right();\n }\n // Necessary for overrides of the default right aligned menu.\n // Will remove come v4 in all likelihood.\n .dropdown-menu-left {\n .dropdown-menu-left();\n }\n }\n}\n","// Horizontal dividers\n//\n// Dividers (basically an hr) within dropdowns and nav lists\n\n.nav-divider(@color: #e5e5e5) {\n height: 1px;\n margin: ((@line-height-computed / 2) - 1) 0;\n overflow: hidden;\n background-color: @color;\n}\n","// Reset filters for IE\n//\n// When you need to remove a gradient background, do not forget to use this to reset\n// the IE filter for IE9 and below.\n\n.reset-filter() {\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(enabled = false)\"));\n}\n","//\n// Button groups\n// --------------------------------------------------\n\n// Make the div behave like a button\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle; // match .btn alignment given font-size hack above\n > .btn {\n position: relative;\n float: left;\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active,\n &.active {\n z-index: 2;\n }\n }\n}\n\n// Prevent double borders when buttons are next to each other\n.btn-group {\n .btn + .btn,\n .btn + .btn-group,\n .btn-group + .btn,\n .btn-group + .btn-group {\n margin-left: -1px;\n }\n}\n\n// Optional: Group multiple button groups together for a toolbar\n.btn-toolbar {\n margin-left: -5px; // Offset the first child's margin\n &:extend(.clearfix all);\n\n .btn,\n .btn-group,\n .input-group {\n float: left;\n }\n > .btn,\n > .btn-group,\n > .input-group {\n margin-left: 5px;\n }\n}\n\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n\n// Set corners individual because sometimes a single button can be in a .btn-group and we need :first-child and :last-child to both match\n.btn-group > .btn:first-child {\n margin-left: 0;\n &:not(:last-child):not(.dropdown-toggle) {\n .border-right-radius(0);\n }\n}\n// Need .dropdown-toggle since :last-child doesn't apply given a .dropdown-menu immediately after it\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n .border-left-radius(0);\n}\n\n// Custom edits for including btn-groups within btn-groups (useful for including dropdown buttons within a btn-group)\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-right-radius(0);\n }\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-left-radius(0);\n}\n\n// On active and open, don't show outline\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n\n\n// Sizing\n//\n// Remix the default button sizing classes into new ones for easier manipulation.\n\n.btn-group-xs > .btn { &:extend(.btn-xs); }\n.btn-group-sm > .btn { &:extend(.btn-sm); }\n.btn-group-lg > .btn { &:extend(.btn-lg); }\n\n\n// Split button dropdowns\n// ----------------------\n\n// Give the line between buttons some depth\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n\n// The clickable button for toggling the menu\n// Remove the gradient and set the same inset shadow as the :active state\n.btn-group.open .dropdown-toggle {\n .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));\n\n // Show no shadow for `.btn-link` since it has no other button styles.\n &.btn-link {\n .box-shadow(none);\n }\n}\n\n\n// Reposition the caret\n.btn .caret {\n margin-left: 0;\n}\n// Carets in other button sizes\n.btn-lg .caret {\n border-width: @caret-width-large @caret-width-large 0;\n border-bottom-width: 0;\n}\n// Upside down carets for .dropup\n.dropup .btn-lg .caret {\n border-width: 0 @caret-width-large @caret-width-large;\n}\n\n\n// Vertical button groups\n// ----------------------\n\n.btn-group-vertical {\n > .btn,\n > .btn-group,\n > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n }\n\n // Clear floats so dropdown menus can be properly placed\n > .btn-group {\n &:extend(.clearfix all);\n > .btn {\n float: none;\n }\n }\n\n > .btn + .btn,\n > .btn + .btn-group,\n > .btn-group + .btn,\n > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n }\n}\n\n.btn-group-vertical > .btn {\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n &:first-child:not(:last-child) {\n .border-top-radius(@btn-border-radius-base);\n .border-bottom-radius(0);\n }\n &:last-child:not(:first-child) {\n .border-top-radius(0);\n .border-bottom-radius(@btn-border-radius-base);\n }\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) {\n > .btn:last-child,\n > .dropdown-toggle {\n .border-bottom-radius(0);\n }\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n .border-top-radius(0);\n}\n\n\n// Justified button groups\n// ----------------------\n\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n > .btn,\n > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n }\n > .btn-group .btn {\n width: 100%;\n }\n\n > .btn-group .dropdown-menu {\n left: auto;\n }\n}\n\n\n// Checkbox and radio options\n//\n// In order to support the browser's form validation feedback, powered by the\n// `required` attribute, we have to \"hide\" the inputs via `clip`. We cannot use\n// `display: none;` or `visibility: hidden;` as that also hides the popover.\n// Simply visually hiding the inputs via `opacity` would leave them clickable in\n// certain cases which is prevented by using `clip` and `pointer-events`.\n// This way, we ensure a DOM element is visible to position the popover from.\n//\n// See https://github.com/twbs/bootstrap/pull/12794 and\n// https://github.com/twbs/bootstrap/pull/14559 for more information.\n\n[data-toggle=\"buttons\"] {\n > .btn,\n > .btn-group > .btn {\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0,0,0,0);\n pointer-events: none;\n }\n }\n}\n","// Single side border-radius\n\n.border-top-radius(@radius) {\n border-top-right-radius: @radius;\n border-top-left-radius: @radius;\n}\n.border-right-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-top-right-radius: @radius;\n}\n.border-bottom-radius(@radius) {\n border-bottom-right-radius: @radius;\n border-bottom-left-radius: @radius;\n}\n.border-left-radius(@radius) {\n border-bottom-left-radius: @radius;\n border-top-left-radius: @radius;\n}\n","//\n// Input groups\n// --------------------------------------------------\n\n// Base styles\n// -------------------------\n.input-group {\n position: relative; // For dropdowns\n display: table;\n border-collapse: separate; // prevent input groups from inheriting border styles from table cells when placed within a table\n\n // Undo padding and float of grid classes\n &[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n }\n\n .form-control {\n // Ensure that the input is always above the *appended* addon button for\n // proper border colors.\n position: relative;\n z-index: 2;\n\n // IE9 fubars the placeholder attribute in text inputs and the arrows on\n // select elements in input groups. To fix it, we float the input. Details:\n // https://github.com/twbs/bootstrap/issues/11561#issuecomment-28936855\n float: left;\n\n width: 100%;\n margin-bottom: 0;\n \n &:focus {\n z-index: 3;\n }\n }\n}\n\n// Sizing options\n//\n// Remix the default form control sizing classes into new ones for easier\n// manipulation.\n\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n .input-lg();\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n .input-sm();\n}\n\n\n// Display as table-cell\n// -------------------------\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n\n &:not(:first-child):not(:last-child) {\n border-radius: 0;\n }\n}\n// Addon and addon wrapper for buttons\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle; // Match the inputs\n}\n\n// Text input groups\n// -------------------------\n.input-group-addon {\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n font-weight: normal;\n line-height: 1;\n color: @input-color;\n text-align: center;\n background-color: @input-group-addon-bg;\n border: 1px solid @input-group-addon-border-color;\n border-radius: @input-border-radius;\n\n // Sizing\n &.input-sm {\n padding: @padding-small-vertical @padding-small-horizontal;\n font-size: @font-size-small;\n border-radius: @input-border-radius-small;\n }\n &.input-lg {\n padding: @padding-large-vertical @padding-large-horizontal;\n font-size: @font-size-large;\n border-radius: @input-border-radius-large;\n }\n\n // Nuke default margins from checkboxes and radios to vertically center within.\n input[type=\"radio\"],\n input[type=\"checkbox\"] {\n margin-top: 0;\n }\n}\n\n// Reset rounded corners\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n .border-right-radius(0);\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n .border-left-radius(0);\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n\n// Button input groups\n// -------------------------\n.input-group-btn {\n position: relative;\n // Jankily prevent input button groups from wrapping with `white-space` and\n // `font-size` in combination with `inline-block` on buttons.\n font-size: 0;\n white-space: nowrap;\n\n // Negative margin for spacing, position for bringing hovered/focused/actived\n // element above the siblings.\n > .btn {\n position: relative;\n + .btn {\n margin-left: -1px;\n }\n // Bring the \"active\" button to the front\n &:hover,\n &:focus,\n &:active {\n z-index: 2;\n }\n }\n\n // Negative margin to only have a 1px border between the two\n &:first-child {\n > .btn,\n > .btn-group {\n margin-right: -1px;\n }\n }\n &:last-child {\n > .btn,\n > .btn-group {\n z-index: 2;\n margin-left: -1px;\n }\n }\n}\n","//\n// Navs\n// --------------------------------------------------\n\n\n// Base class\n// --------------------------------------------------\n\n.nav {\n margin-bottom: 0;\n padding-left: 0; // Override default ul/ol\n list-style: none;\n &:extend(.clearfix all);\n\n > li {\n position: relative;\n display: block;\n\n > a {\n position: relative;\n display: block;\n padding: @nav-link-padding;\n &:hover,\n &:focus {\n text-decoration: none;\n background-color: @nav-link-hover-bg;\n }\n }\n\n // Disabled state sets text to gray and nukes hover/tab effects\n &.disabled > a {\n color: @nav-disabled-link-color;\n\n &:hover,\n &:focus {\n color: @nav-disabled-link-hover-color;\n text-decoration: none;\n background-color: transparent;\n cursor: @cursor-disabled;\n }\n }\n }\n\n // Open dropdowns\n .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @nav-link-hover-bg;\n border-color: @link-color;\n }\n }\n\n // Nav dividers (deprecated with v3.0.1)\n //\n // This should have been removed in v3 with the dropping of `.nav-list`, but\n // we missed it. We don't currently support this anywhere, but in the interest\n // of maintaining backward compatibility in case you use it, it's deprecated.\n .nav-divider {\n .nav-divider();\n }\n\n // Prevent IE8 from misplacing imgs\n //\n // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989\n > li > a > img {\n max-width: none;\n }\n}\n\n\n// Tabs\n// -------------------------\n\n// Give the tabs something to sit on\n.nav-tabs {\n border-bottom: 1px solid @nav-tabs-border-color;\n > li {\n float: left;\n // Make the list-items overlay the bottom border\n margin-bottom: -1px;\n\n // Actual tabs (as links)\n > a {\n margin-right: 2px;\n line-height: @line-height-base;\n border: 1px solid transparent;\n border-radius: @border-radius-base @border-radius-base 0 0;\n &:hover {\n border-color: @nav-tabs-link-hover-border-color @nav-tabs-link-hover-border-color @nav-tabs-border-color;\n }\n }\n\n // Active state, and its :hover to override normal :hover\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-tabs-active-link-hover-color;\n background-color: @nav-tabs-active-link-hover-bg;\n border: 1px solid @nav-tabs-active-link-hover-border-color;\n border-bottom-color: transparent;\n cursor: default;\n }\n }\n }\n // pulling this in mainly for less shorthand\n &.nav-justified {\n .nav-justified();\n .nav-tabs-justified();\n }\n}\n\n\n// Pills\n// -------------------------\n.nav-pills {\n > li {\n float: left;\n\n // Links rendered as pills\n > a {\n border-radius: @nav-pills-border-radius;\n }\n + li {\n margin-left: 2px;\n }\n\n // Active state\n &.active > a {\n &,\n &:hover,\n &:focus {\n color: @nav-pills-active-link-hover-color;\n background-color: @nav-pills-active-link-hover-bg;\n }\n }\n }\n}\n\n\n// Stacked pills\n.nav-stacked {\n > li {\n float: none;\n + li {\n margin-top: 2px;\n margin-left: 0; // no need for this gap between nav items\n }\n }\n}\n\n\n// Nav variations\n// --------------------------------------------------\n\n// Justified nav links\n// -------------------------\n\n.nav-justified {\n width: 100%;\n\n > li {\n float: none;\n > a {\n text-align: center;\n margin-bottom: 5px;\n }\n }\n\n > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n }\n\n @media (min-width: @screen-sm-min) {\n > li {\n display: table-cell;\n width: 1%;\n > a {\n margin-bottom: 0;\n }\n }\n }\n}\n\n// Move borders to anchors instead of bottom of list\n//\n// Mixin for adding on top the shared `.nav-justified` styles for our tabs\n.nav-tabs-justified {\n border-bottom: 0;\n\n > li > a {\n // Override margin from .nav-tabs\n margin-right: 0;\n border-radius: @border-radius-base;\n }\n\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border: 1px solid @nav-tabs-justified-link-border-color;\n }\n\n @media (min-width: @screen-sm-min) {\n > li > a {\n border-bottom: 1px solid @nav-tabs-justified-link-border-color;\n border-radius: @border-radius-base @border-radius-base 0 0;\n }\n > .active > a,\n > .active > a:hover,\n > .active > a:focus {\n border-bottom-color: @nav-tabs-justified-active-link-border-color;\n }\n }\n}\n\n\n// Tabbable tabs\n// -------------------------\n\n// Hide tabbable panes to start, show them when `.active`\n.tab-content {\n > .tab-pane {\n display: none;\n }\n > .active {\n display: block;\n }\n}\n\n\n// Dropdowns\n// -------------------------\n\n// Specific dropdowns\n.nav-tabs .dropdown-menu {\n // make dropdown border overlap tab border\n margin-top: -1px;\n // Remove the top rounded corners here since there is a hard edge above the menu\n .border-top-radius(0);\n}\n","//\n// Navbars\n// --------------------------------------------------\n\n\n// Wrapper and base class\n//\n// Provide a static navbar from which we expand to create full-width, fixed, and\n// other navbar variations.\n\n.navbar {\n position: relative;\n min-height: @navbar-height; // Ensure a navbar always shows (e.g., without a .navbar-brand in collapsed mode)\n margin-bottom: @navbar-margin-bottom;\n border: 1px solid transparent;\n\n // Prevent floats from breaking the navbar\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: @navbar-border-radius;\n }\n}\n\n\n// Navbar heading\n//\n// Groups `.navbar-brand` and `.navbar-toggle` into a single component for easy\n// styling of responsive aspects.\n\n.navbar-header {\n &:extend(.clearfix all);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n }\n}\n\n\n// Navbar collapse (body)\n//\n// Group your navbar content into this for easy collapsing and expanding across\n// various device sizes. By default, this content is collapsed when <768px, but\n// will expand past that for a horizontal display.\n//\n// To start (on mobile devices) the navbar links, forms, and buttons are stacked\n// vertically and include a `max-height` to overflow in case you have too much\n// content for the user's viewport.\n\n.navbar-collapse {\n overflow-x: visible;\n padding-right: @navbar-padding-horizontal;\n padding-left: @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255,255,255,.1);\n &:extend(.clearfix all);\n -webkit-overflow-scrolling: touch;\n\n &.in {\n overflow-y: auto;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border-top: 0;\n box-shadow: none;\n\n &.collapse {\n display: block !important;\n height: auto !important;\n padding-bottom: 0; // Override default setting\n overflow: visible !important;\n }\n\n &.in {\n overflow-y: visible;\n }\n\n // Undo the collapse side padding for navbars with containers to ensure\n // alignment of right-aligned contents.\n .navbar-fixed-top &,\n .navbar-static-top &,\n .navbar-fixed-bottom & {\n padding-left: 0;\n padding-right: 0;\n }\n }\n}\n\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n .navbar-collapse {\n max-height: @navbar-collapse-max-height;\n\n @media (max-device-width: @screen-xs-min) and (orientation: landscape) {\n max-height: 200px;\n }\n }\n}\n\n\n// Both navbar header and collapse\n//\n// When a container is present, change the behavior of the header and collapse.\n\n.container,\n.container-fluid {\n > .navbar-header,\n > .navbar-collapse {\n margin-right: -@navbar-padding-horizontal;\n margin-left: -@navbar-padding-horizontal;\n\n @media (min-width: @grid-float-breakpoint) {\n margin-right: 0;\n margin-left: 0;\n }\n }\n}\n\n\n//\n// Navbar alignment options\n//\n// Display the navbar across the entirety of the page or fixed it to the top or\n// bottom of the page.\n\n// Static top (unfixed, but 100% wide) navbar\n.navbar-static-top {\n z-index: @zindex-navbar;\n border-width: 0 0 1px;\n\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n\n// Fix the top/bottom navbars when screen real estate supports it\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: @zindex-navbar-fixed;\n\n // Undo the rounded corners\n @media (min-width: @grid-float-breakpoint) {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0; // override .navbar defaults\n border-width: 1px 0 0;\n}\n\n\n// Brand/project name\n\n.navbar-brand {\n float: left;\n padding: @navbar-padding-vertical @navbar-padding-horizontal;\n font-size: @font-size-large;\n line-height: @line-height-computed;\n height: @navbar-height;\n\n &:hover,\n &:focus {\n text-decoration: none;\n }\n\n > img {\n display: block;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n .navbar > .container &,\n .navbar > .container-fluid & {\n margin-left: -@navbar-padding-horizontal;\n }\n }\n}\n\n\n// Navbar toggle\n//\n// Custom button for toggling the `.navbar-collapse`, powered by the collapse\n// JavaScript plugin.\n\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: @navbar-padding-horizontal;\n padding: 9px 10px;\n .navbar-vertical-align(34px);\n background-color: transparent;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid transparent;\n border-radius: @border-radius-base;\n\n // We remove the `outline` here, but later compensate by attaching `:hover`\n // styles to `:focus`.\n &:focus {\n outline: 0;\n }\n\n // Bars\n .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n }\n .icon-bar + .icon-bar {\n margin-top: 4px;\n }\n\n @media (min-width: @grid-float-breakpoint) {\n display: none;\n }\n}\n\n\n// Navbar nav links\n//\n// Builds on top of the `.nav` components with its own modifier class to make\n// the nav the full height of the horizontal nav (above 768px).\n\n.navbar-nav {\n margin: (@navbar-padding-vertical / 2) -@navbar-padding-horizontal;\n\n > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: @line-height-computed;\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n > li > a,\n .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n > li > a {\n line-height: @line-height-computed;\n &:hover,\n &:focus {\n background-image: none;\n }\n }\n }\n }\n\n // Uncollapse the nav\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin: 0;\n\n > li {\n float: left;\n > a {\n padding-top: @navbar-padding-vertical;\n padding-bottom: @navbar-padding-vertical;\n }\n }\n }\n}\n\n\n// Navbar form\n//\n// Extension of the `.form-inline` with some extra flavor for optimum display in\n// our navbars.\n\n.navbar-form {\n margin-left: -@navbar-padding-horizontal;\n margin-right: -@navbar-padding-horizontal;\n padding: 10px @navbar-padding-horizontal;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n @shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 1px 0 rgba(255,255,255,.1);\n .box-shadow(@shadow);\n\n // Mixin behavior for optimum display\n .form-inline();\n\n .form-group {\n @media (max-width: @grid-float-breakpoint-max) {\n margin-bottom: 5px;\n\n &:last-child {\n margin-bottom: 0;\n }\n }\n }\n\n // Vertically center in expanded, horizontal navbar\n .navbar-vertical-align(@input-height-base);\n\n // Undo 100% width for pull classes\n @media (min-width: @grid-float-breakpoint) {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n .box-shadow(none);\n }\n}\n\n\n// Dropdown menus\n\n// Menu position and menu carets\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n .border-top-radius(0);\n}\n// Menu position and menu caret support for dropups via extra dropup class\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n .border-top-radius(@navbar-border-radius);\n .border-bottom-radius(0);\n}\n\n\n// Buttons in navbars\n//\n// Vertically center a button within a navbar (when *not* in a form).\n\n.navbar-btn {\n .navbar-vertical-align(@input-height-base);\n\n &.btn-sm {\n .navbar-vertical-align(@input-height-small);\n }\n &.btn-xs {\n .navbar-vertical-align(22);\n }\n}\n\n\n// Text in navbars\n//\n// Add a class to make any element properly align itself vertically within the navbars.\n\n.navbar-text {\n .navbar-vertical-align(@line-height-computed);\n\n @media (min-width: @grid-float-breakpoint) {\n float: left;\n margin-left: @navbar-padding-horizontal;\n margin-right: @navbar-padding-horizontal;\n }\n}\n\n\n// Component alignment\n//\n// Repurpose the pull utilities as their own navbar utilities to avoid specificity\n// issues with parents and chaining. Only do this when the navbar is uncollapsed\n// though so that navbar contents properly stack and align in mobile.\n//\n// Declared after the navbar components to ensure more specificity on the margins.\n\n@media (min-width: @grid-float-breakpoint) {\n .navbar-left { .pull-left(); }\n .navbar-right {\n .pull-right();\n margin-right: -@navbar-padding-horizontal;\n\n ~ .navbar-right {\n margin-right: 0;\n }\n }\n}\n\n\n// Alternate navbars\n// --------------------------------------------------\n\n// Default navbar\n.navbar-default {\n background-color: @navbar-default-bg;\n border-color: @navbar-default-border;\n\n .navbar-brand {\n color: @navbar-default-brand-color;\n &:hover,\n &:focus {\n color: @navbar-default-brand-hover-color;\n background-color: @navbar-default-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-default-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-default-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n\n .navbar-toggle {\n border-color: @navbar-default-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-default-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-default-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: @navbar-default-border;\n }\n\n // Dropdown menu items\n .navbar-nav {\n // Remove background color from open dropdown\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-default-link-active-bg;\n color: @navbar-default-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display when collapsed\n .open .dropdown-menu {\n > li > a {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n background-color: @navbar-default-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-active-color;\n background-color: @navbar-default-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n background-color: @navbar-default-link-disabled-bg;\n }\n }\n }\n }\n }\n\n\n // Links in navbars\n //\n // Add a class to ensure links outside the navbar nav are colored correctly.\n\n .navbar-link {\n color: @navbar-default-link-color;\n &:hover {\n color: @navbar-default-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-default-link-color;\n &:hover,\n &:focus {\n color: @navbar-default-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-default-link-disabled-color;\n }\n }\n }\n}\n\n// Inverse navbar\n\n.navbar-inverse {\n background-color: @navbar-inverse-bg;\n border-color: @navbar-inverse-border;\n\n .navbar-brand {\n color: @navbar-inverse-brand-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-brand-hover-color;\n background-color: @navbar-inverse-brand-hover-bg;\n }\n }\n\n .navbar-text {\n color: @navbar-inverse-color;\n }\n\n .navbar-nav {\n > li > a {\n color: @navbar-inverse-link-color;\n\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n\n // Darken the responsive nav toggle\n .navbar-toggle {\n border-color: @navbar-inverse-toggle-border-color;\n &:hover,\n &:focus {\n background-color: @navbar-inverse-toggle-hover-bg;\n }\n .icon-bar {\n background-color: @navbar-inverse-toggle-icon-bar-bg;\n }\n }\n\n .navbar-collapse,\n .navbar-form {\n border-color: darken(@navbar-inverse-bg, 7%);\n }\n\n // Dropdowns\n .navbar-nav {\n > .open > a {\n &,\n &:hover,\n &:focus {\n background-color: @navbar-inverse-link-active-bg;\n color: @navbar-inverse-link-active-color;\n }\n }\n\n @media (max-width: @grid-float-breakpoint-max) {\n // Dropdowns get custom display\n .open .dropdown-menu {\n > .dropdown-header {\n border-color: @navbar-inverse-border;\n }\n .divider {\n background-color: @navbar-inverse-border;\n }\n > li > a {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n background-color: @navbar-inverse-link-hover-bg;\n }\n }\n > .active > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-active-color;\n background-color: @navbar-inverse-link-active-bg;\n }\n }\n > .disabled > a {\n &,\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n background-color: @navbar-inverse-link-disabled-bg;\n }\n }\n }\n }\n }\n\n .navbar-link {\n color: @navbar-inverse-link-color;\n &:hover {\n color: @navbar-inverse-link-hover-color;\n }\n }\n\n .btn-link {\n color: @navbar-inverse-link-color;\n &:hover,\n &:focus {\n color: @navbar-inverse-link-hover-color;\n }\n &[disabled],\n fieldset[disabled] & {\n &:hover,\n &:focus {\n color: @navbar-inverse-link-disabled-color;\n }\n }\n }\n}\n","// Navbar vertical align\n//\n// Vertically center elements in the navbar.\n// Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin.\n\n.navbar-vertical-align(@element-height) {\n margin-top: ((@navbar-height - @element-height) / 2);\n margin-bottom: ((@navbar-height - @element-height) / 2);\n}\n","//\n// Utility classes\n// --------------------------------------------------\n\n\n// Floats\n// -------------------------\n\n.clearfix {\n .clearfix();\n}\n.center-block {\n .center-block();\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n\n\n// Toggling content\n// -------------------------\n\n// Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n .text-hide();\n}\n\n\n// Hide from screenreaders and browsers\n//\n// Credit: HTML5 Boilerplate\n\n.hidden {\n display: none !important;\n}\n\n\n// For Affix plugin\n// -------------------------\n\n.affix {\n position: fixed;\n}\n","//\n// Breadcrumbs\n// --------------------------------------------------\n\n\n.breadcrumb {\n padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal;\n margin-bottom: @line-height-computed;\n list-style: none;\n background-color: @breadcrumb-bg;\n border-radius: @border-radius-base;\n\n > li {\n display: inline-block;\n\n + li:before {\n content: \"@{breadcrumb-separator}\\00a0\"; // Unicode space added since inline-block means non-collapsing white-space\n padding: 0 5px;\n color: @breadcrumb-color;\n }\n }\n\n > .active {\n color: @breadcrumb-active-color;\n }\n}\n","//\n// Pagination (multiple pages)\n// --------------------------------------------------\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: @line-height-computed 0;\n border-radius: @border-radius-base;\n\n > li {\n display: inline; // Remove list-style and block-level defaults\n > a,\n > span {\n position: relative;\n float: left; // Collapse white-space\n padding: @padding-base-vertical @padding-base-horizontal;\n line-height: @line-height-base;\n text-decoration: none;\n color: @pagination-color;\n background-color: @pagination-bg;\n border: 1px solid @pagination-border;\n margin-left: -1px;\n }\n &:first-child {\n > a,\n > span {\n margin-left: 0;\n .border-left-radius(@border-radius-base);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius-base);\n }\n }\n }\n\n > li > a,\n > li > span {\n &:hover,\n &:focus {\n z-index: 2;\n color: @pagination-hover-color;\n background-color: @pagination-hover-bg;\n border-color: @pagination-hover-border;\n }\n }\n\n > .active > a,\n > .active > span {\n &,\n &:hover,\n &:focus {\n z-index: 3;\n color: @pagination-active-color;\n background-color: @pagination-active-bg;\n border-color: @pagination-active-border;\n cursor: default;\n }\n }\n\n > .disabled {\n > span,\n > span:hover,\n > span:focus,\n > a,\n > a:hover,\n > a:focus {\n color: @pagination-disabled-color;\n background-color: @pagination-disabled-bg;\n border-color: @pagination-disabled-border;\n cursor: @cursor-disabled;\n }\n }\n}\n\n// Sizing\n// --------------------------------------------------\n\n// Large\n.pagination-lg {\n .pagination-size(@padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @border-radius-large);\n}\n\n// Small\n.pagination-sm {\n .pagination-size(@padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @border-radius-small);\n}\n","// Pagination\n\n.pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) {\n > li {\n > a,\n > span {\n padding: @padding-vertical @padding-horizontal;\n font-size: @font-size;\n line-height: @line-height;\n }\n &:first-child {\n > a,\n > span {\n .border-left-radius(@border-radius);\n }\n }\n &:last-child {\n > a,\n > span {\n .border-right-radius(@border-radius);\n }\n }\n }\n}\n","//\n// Pager pagination\n// --------------------------------------------------\n\n\n.pager {\n padding-left: 0;\n margin: @line-height-computed 0;\n list-style: none;\n text-align: center;\n &:extend(.clearfix all);\n li {\n display: inline;\n > a,\n > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: @pager-bg;\n border: 1px solid @pager-border;\n border-radius: @pager-border-radius;\n }\n\n > a:hover,\n > a:focus {\n text-decoration: none;\n background-color: @pager-hover-bg;\n }\n }\n\n .next {\n > a,\n > span {\n float: right;\n }\n }\n\n .previous {\n > a,\n > span {\n float: left;\n }\n }\n\n .disabled {\n > a,\n > a:hover,\n > a:focus,\n > span {\n color: @pager-disabled-color;\n background-color: @pager-bg;\n cursor: @cursor-disabled;\n }\n }\n}\n","//\n// Labels\n// --------------------------------------------------\n\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: @label-color;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n\n // Add hover effects, but only for links\n a& {\n &:hover,\n &:focus {\n color: @label-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Empty labels collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for labels in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n}\n\n// Colors\n// Contextual variations (linked labels get darker on :hover)\n\n.label-default {\n .label-variant(@label-default-bg);\n}\n\n.label-primary {\n .label-variant(@label-primary-bg);\n}\n\n.label-success {\n .label-variant(@label-success-bg);\n}\n\n.label-info {\n .label-variant(@label-info-bg);\n}\n\n.label-warning {\n .label-variant(@label-warning-bg);\n}\n\n.label-danger {\n .label-variant(@label-danger-bg);\n}\n","// Labels\n\n.label-variant(@color) {\n background-color: @color;\n\n &[href] {\n &:hover,\n &:focus {\n background-color: darken(@color, 10%);\n }\n }\n}\n","//\n// Badges\n// --------------------------------------------------\n\n\n// Base class\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: @font-size-small;\n font-weight: @badge-font-weight;\n color: @badge-color;\n line-height: @badge-line-height;\n vertical-align: middle;\n white-space: nowrap;\n text-align: center;\n background-color: @badge-bg;\n border-radius: @badge-border-radius;\n\n // Empty badges collapse automatically (not available in IE8)\n &:empty {\n display: none;\n }\n\n // Quick fix for badges in buttons\n .btn & {\n position: relative;\n top: -1px;\n }\n\n .btn-xs &,\n .btn-group-xs > .btn & {\n top: 0;\n padding: 1px 5px;\n }\n\n // Hover state, but only for links\n a& {\n &:hover,\n &:focus {\n color: @badge-link-hover-color;\n text-decoration: none;\n cursor: pointer;\n }\n }\n\n // Account for badges in navs\n .list-group-item.active > &,\n .nav-pills > .active > a > & {\n color: @badge-active-color;\n background-color: @badge-active-bg;\n }\n\n .list-group-item > & {\n float: right;\n }\n\n .list-group-item > & + & {\n margin-right: 5px;\n }\n\n .nav-pills > li > a > & {\n margin-left: 3px;\n }\n}\n","//\n// Jumbotron\n// --------------------------------------------------\n\n\n.jumbotron {\n padding-top: @jumbotron-padding;\n padding-bottom: @jumbotron-padding;\n margin-bottom: @jumbotron-padding;\n color: @jumbotron-color;\n background-color: @jumbotron-bg;\n\n h1,\n .h1 {\n color: @jumbotron-heading-color;\n }\n\n p {\n margin-bottom: (@jumbotron-padding / 2);\n font-size: @jumbotron-font-size;\n font-weight: 200;\n }\n\n > hr {\n border-top-color: darken(@jumbotron-bg, 10%);\n }\n\n .container &,\n .container-fluid & {\n border-radius: @border-radius-large; // Only round corners at higher resolutions if contained in a container\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n\n .container {\n max-width: 100%;\n }\n\n @media screen and (min-width: @screen-sm-min) {\n padding-top: (@jumbotron-padding * 1.6);\n padding-bottom: (@jumbotron-padding * 1.6);\n\n .container &,\n .container-fluid & {\n padding-left: (@jumbotron-padding * 2);\n padding-right: (@jumbotron-padding * 2);\n }\n\n h1,\n .h1 {\n font-size: @jumbotron-heading-font-size;\n }\n }\n}\n","//\n// Thumbnails\n// --------------------------------------------------\n\n\n// Mixin and adjust the regular image class\n.thumbnail {\n display: block;\n padding: @thumbnail-padding;\n margin-bottom: @line-height-computed;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(border .2s ease-in-out);\n\n > img,\n a > img {\n &:extend(.img-responsive);\n margin-left: auto;\n margin-right: auto;\n }\n\n // Add a hover state for linked versions only\n a&:hover,\n a&:focus,\n a&.active {\n border-color: @link-color;\n }\n\n // Image captions\n .caption {\n padding: @thumbnail-caption-padding;\n color: @thumbnail-caption-color;\n }\n}\n","//\n// Alerts\n// --------------------------------------------------\n\n\n// Base styles\n// -------------------------\n\n.alert {\n padding: @alert-padding;\n margin-bottom: @line-height-computed;\n border: 1px solid transparent;\n border-radius: @alert-border-radius;\n\n // Headings for larger alerts\n h4 {\n margin-top: 0;\n // Specified for the h4 to prevent conflicts of changing @headings-color\n color: inherit;\n }\n\n // Provide class for links that match alerts\n .alert-link {\n font-weight: @alert-link-font-weight;\n }\n\n // Improve alignment and spacing of inner content\n > p,\n > ul {\n margin-bottom: 0;\n }\n\n > p + p {\n margin-top: 5px;\n }\n}\n\n// Dismissible alerts\n//\n// Expand the right padding and account for the close button's positioning.\n\n.alert-dismissable, // The misspelled .alert-dismissable was deprecated in 3.2.0.\n.alert-dismissible {\n padding-right: (@alert-padding + 20);\n\n // Adjust close link position\n .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n }\n}\n\n// Alternate styles\n//\n// Generate contextual modifier classes for colorizing the alert.\n\n.alert-success {\n .alert-variant(@alert-success-bg; @alert-success-border; @alert-success-text);\n}\n\n.alert-info {\n .alert-variant(@alert-info-bg; @alert-info-border; @alert-info-text);\n}\n\n.alert-warning {\n .alert-variant(@alert-warning-bg; @alert-warning-border; @alert-warning-text);\n}\n\n.alert-danger {\n .alert-variant(@alert-danger-bg; @alert-danger-border; @alert-danger-text);\n}\n","// Alerts\n\n.alert-variant(@background; @border; @text-color) {\n background-color: @background;\n border-color: @border;\n color: @text-color;\n\n hr {\n border-top-color: darken(@border, 5%);\n }\n .alert-link {\n color: darken(@text-color, 10%);\n }\n}\n","//\n// Progress bars\n// --------------------------------------------------\n\n\n// Bar animations\n// -------------------------\n\n// WebKit\n@-webkit-keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n// Spec and IE10+\n@keyframes progress-bar-stripes {\n from { background-position: 40px 0; }\n to { background-position: 0 0; }\n}\n\n\n// Bar itself\n// -------------------------\n\n// Outer container\n.progress {\n overflow: hidden;\n height: @line-height-computed;\n margin-bottom: @line-height-computed;\n background-color: @progress-bg;\n border-radius: @progress-border-radius;\n .box-shadow(inset 0 1px 2px rgba(0,0,0,.1));\n}\n\n// Bar of progress\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: @font-size-small;\n line-height: @line-height-computed;\n color: @progress-bar-color;\n text-align: center;\n background-color: @progress-bar-bg;\n .box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));\n .transition(width .6s ease);\n}\n\n// Striped bars\n//\n// `.progress-striped .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar-striped` class, which you just add to an existing\n// `.progress-bar`.\n.progress-striped .progress-bar,\n.progress-bar-striped {\n #gradient > .striped();\n background-size: 40px 40px;\n}\n\n// Call animation for the active one\n//\n// `.progress.active .progress-bar` is deprecated as of v3.2.0 in favor of the\n// `.progress-bar.active` approach.\n.progress.active .progress-bar,\n.progress-bar.active {\n .animation(progress-bar-stripes 2s linear infinite);\n}\n\n\n// Variations\n// -------------------------\n\n.progress-bar-success {\n .progress-bar-variant(@progress-bar-success-bg);\n}\n\n.progress-bar-info {\n .progress-bar-variant(@progress-bar-info-bg);\n}\n\n.progress-bar-warning {\n .progress-bar-variant(@progress-bar-warning-bg);\n}\n\n.progress-bar-danger {\n .progress-bar-variant(@progress-bar-danger-bg);\n}\n","// Gradients\n\n#gradient {\n\n // Horizontal gradient, from left to right\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .horizontal(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(left, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to right, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n // Vertical gradient, from top to bottom\n //\n // Creates two color stops, start and end, by specifying a color and position for each color stop.\n // Color stops are not available in IE9 and below.\n .vertical(@start-color: #555; @end-color: #333; @start-percent: 0%; @end-percent: 100%) {\n background-image: -webkit-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(top, @start-color @start-percent, @end-color @end-percent); // Opera 12\n background-image: linear-gradient(to bottom, @start-color @start-percent, @end-color @end-percent); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n background-repeat: repeat-x;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down\n }\n\n .directional(@start-color: #555; @end-color: #333; @deg: 45deg) {\n background-repeat: repeat-x;\n background-image: -webkit-linear-gradient(@deg, @start-color, @end-color); // Safari 5.1-6, Chrome 10+\n background-image: -o-linear-gradient(@deg, @start-color, @end-color); // Opera 12\n background-image: linear-gradient(@deg, @start-color, @end-color); // Standard, IE10, Firefox 16+, Opera 12.10+, Safari 7+, Chrome 26+\n }\n .horizontal-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(left, @start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(to right, @start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=1)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .vertical-three-colors(@start-color: #00b3ee; @mid-color: #7a43b6; @color-stop: 50%; @end-color: #c3325f) {\n background-image: -webkit-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: -o-linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-image: linear-gradient(@start-color, @mid-color @color-stop, @end-color);\n background-repeat: no-repeat;\n filter: e(%(\"progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)\",argb(@start-color),argb(@end-color))); // IE9 and down, gets no color-stop at all for proper fallback\n }\n .radial(@inner-color: #555; @outer-color: #333) {\n background-image: -webkit-radial-gradient(circle, @inner-color, @outer-color);\n background-image: radial-gradient(circle, @inner-color, @outer-color);\n background-repeat: no-repeat;\n }\n .striped(@color: rgba(255,255,255,.15); @angle: 45deg) {\n background-image: -webkit-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n background-image: linear-gradient(@angle, @color 25%, transparent 25%, transparent 50%, @color 50%, @color 75%, transparent 75%, transparent);\n }\n}\n","// Progress bars\n\n.progress-bar-variant(@color) {\n background-color: @color;\n\n // Deprecated parent class requirement as of v3.2.0\n .progress-striped & {\n #gradient > .striped();\n }\n}\n",".media {\n // Proper spacing between instances of .media\n margin-top: 15px;\n\n &:first-child {\n margin-top: 0;\n }\n}\n\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n\n.media-body {\n width: 10000px;\n}\n\n.media-object {\n display: block;\n\n // Fix collapse in webkit from max-width: 100% and display: table-cell.\n &.img-thumbnail {\n max-width: none;\n }\n}\n\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n\n.media-middle {\n vertical-align: middle;\n}\n\n.media-bottom {\n vertical-align: bottom;\n}\n\n// Reset margins on headings for tighter default spacing\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n\n// Media list variation\n//\n// Undo default ul/ol styles\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n","//\n// List groups\n// --------------------------------------------------\n\n\n// Base class\n//\n// Easily usable on <ul>, <ol>, or <div>.\n\n.list-group {\n // No need to set list-style: none; since .list-group-item is block level\n margin-bottom: 20px;\n padding-left: 0; // reset padding because ul and ol\n}\n\n\n// Individual list items\n//\n// Use on `li`s or `div`s within the `.list-group` parent.\n\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n // Place the border on the list items and negative margin up for better styling\n margin-bottom: -1px;\n background-color: @list-group-bg;\n border: 1px solid @list-group-border;\n\n // Round the first and last items\n &:first-child {\n .border-top-radius(@list-group-border-radius);\n }\n &:last-child {\n margin-bottom: 0;\n .border-bottom-radius(@list-group-border-radius);\n }\n}\n\n\n// Interactive list items\n//\n// Use anchor or button elements instead of `li`s or `div`s to create interactive items.\n// Includes an extra `.active` modifier class for showing selected items.\n\na.list-group-item,\nbutton.list-group-item {\n color: @list-group-link-color;\n\n .list-group-item-heading {\n color: @list-group-link-heading-color;\n }\n\n // Hover state\n &:hover,\n &:focus {\n text-decoration: none;\n color: @list-group-link-hover-color;\n background-color: @list-group-hover-bg;\n }\n}\n\nbutton.list-group-item {\n width: 100%;\n text-align: left;\n}\n\n.list-group-item {\n // Disabled state\n &.disabled,\n &.disabled:hover,\n &.disabled:focus {\n background-color: @list-group-disabled-bg;\n color: @list-group-disabled-color;\n cursor: @cursor-disabled;\n\n // Force color to inherit for custom content\n .list-group-item-heading {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-disabled-text-color;\n }\n }\n\n // Active class on item itself, not parent\n &.active,\n &.active:hover,\n &.active:focus {\n z-index: 2; // Place active items above their siblings for proper border styling\n color: @list-group-active-color;\n background-color: @list-group-active-bg;\n border-color: @list-group-active-border;\n\n // Force color to inherit for custom content\n .list-group-item-heading,\n .list-group-item-heading > small,\n .list-group-item-heading > .small {\n color: inherit;\n }\n .list-group-item-text {\n color: @list-group-active-text-color;\n }\n }\n}\n\n\n// Contextual variants\n//\n// Add modifier classes to change text and background color on individual items.\n// Organizationally, this must come after the `:hover` states.\n\n.list-group-item-variant(success; @state-success-bg; @state-success-text);\n.list-group-item-variant(info; @state-info-bg; @state-info-text);\n.list-group-item-variant(warning; @state-warning-bg; @state-warning-text);\n.list-group-item-variant(danger; @state-danger-bg; @state-danger-text);\n\n\n// Custom content options\n//\n// Extra classes for creating well-formatted content within `.list-group-item`s.\n\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n","// List Groups\n\n.list-group-item-variant(@state; @background; @color) {\n .list-group-item-@{state} {\n color: @color;\n background-color: @background;\n\n a&,\n button& {\n color: @color;\n\n .list-group-item-heading {\n color: inherit;\n }\n\n &:hover,\n &:focus {\n color: @color;\n background-color: darken(@background, 5%);\n }\n &.active,\n &.active:hover,\n &.active:focus {\n color: #fff;\n background-color: @color;\n border-color: @color;\n }\n }\n }\n}\n","//\n// Panels\n// --------------------------------------------------\n\n\n// Base class\n.panel {\n margin-bottom: @line-height-computed;\n background-color: @panel-bg;\n border: 1px solid transparent;\n border-radius: @panel-border-radius;\n .box-shadow(0 1px 1px rgba(0,0,0,.05));\n}\n\n// Panel contents\n.panel-body {\n padding: @panel-body-padding;\n &:extend(.clearfix all);\n}\n\n// Optional heading\n.panel-heading {\n padding: @panel-heading-padding;\n border-bottom: 1px solid transparent;\n .border-top-radius((@panel-border-radius - 1));\n\n > .dropdown .dropdown-toggle {\n color: inherit;\n }\n}\n\n// Within heading, strip any `h*` tag of its default margins for spacing.\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: ceil((@font-size-base * 1.125));\n color: inherit;\n\n > a,\n > small,\n > .small,\n > small > a,\n > .small > a {\n color: inherit;\n }\n}\n\n// Optional footer (stays gray in every modifier class)\n.panel-footer {\n padding: @panel-footer-padding;\n background-color: @panel-footer-bg;\n border-top: 1px solid @panel-inner-border;\n .border-bottom-radius((@panel-border-radius - 1));\n}\n\n\n// List groups in panels\n//\n// By default, space out list group content from panel headings to account for\n// any kind of custom content between the two.\n\n.panel {\n > .list-group,\n > .panel-collapse > .list-group {\n margin-bottom: 0;\n\n .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n }\n\n // Add border top radius for first one\n &:first-child {\n .list-group-item:first-child {\n border-top: 0;\n .border-top-radius((@panel-border-radius - 1));\n }\n }\n\n // Add border bottom radius for last one\n &:last-child {\n .list-group-item:last-child {\n border-bottom: 0;\n .border-bottom-radius((@panel-border-radius - 1));\n }\n }\n }\n > .panel-heading + .panel-collapse > .list-group {\n .list-group-item:first-child {\n .border-top-radius(0);\n }\n }\n}\n// Collapse space between when there's no additional content.\n.panel-heading + .list-group {\n .list-group-item:first-child {\n border-top-width: 0;\n }\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n\n// Tables in panels\n//\n// Place a non-bordered `.table` within a panel (not within a `.panel-body`) and\n// watch it go full width.\n\n.panel {\n > .table,\n > .table-responsive > .table,\n > .panel-collapse > .table {\n margin-bottom: 0;\n\n caption {\n padding-left: @panel-body-padding;\n padding-right: @panel-body-padding;\n }\n }\n // Add border top radius for first one\n > .table:first-child,\n > .table-responsive:first-child > .table:first-child {\n .border-top-radius((@panel-border-radius - 1));\n\n > thead:first-child,\n > tbody:first-child {\n > tr:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n border-top-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-top-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-top-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n // Add border bottom radius for last one\n > .table:last-child,\n > .table-responsive:last-child > .table:last-child {\n .border-bottom-radius((@panel-border-radius - 1));\n\n > tbody:last-child,\n > tfoot:last-child {\n > tr:last-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n border-bottom-right-radius: (@panel-border-radius - 1);\n\n td:first-child,\n th:first-child {\n border-bottom-left-radius: (@panel-border-radius - 1);\n }\n td:last-child,\n th:last-child {\n border-bottom-right-radius: (@panel-border-radius - 1);\n }\n }\n }\n }\n > .panel-body + .table,\n > .panel-body + .table-responsive,\n > .table + .panel-body,\n > .table-responsive + .panel-body {\n border-top: 1px solid @table-border-color;\n }\n > .table > tbody:first-child > tr:first-child th,\n > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n }\n > .table-bordered,\n > .table-responsive > .table-bordered {\n border: 0;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n > thead,\n > tbody {\n > tr:first-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n > tbody,\n > tfoot {\n > tr:last-child {\n > td,\n > th {\n border-bottom: 0;\n }\n }\n }\n }\n > .table-responsive {\n border: 0;\n margin-bottom: 0;\n }\n}\n\n\n// Collapsable panels (aka, accordion)\n//\n// Wrap a series of panels in `.panel-group` to turn them into an accordion with\n// the help of our collapse JavaScript plugin.\n\n.panel-group {\n margin-bottom: @line-height-computed;\n\n // Tighten up margin so it's only between panels\n .panel {\n margin-bottom: 0;\n border-radius: @panel-border-radius;\n\n + .panel {\n margin-top: 5px;\n }\n }\n\n .panel-heading {\n border-bottom: 0;\n\n + .panel-collapse > .panel-body,\n + .panel-collapse > .list-group {\n border-top: 1px solid @panel-inner-border;\n }\n }\n\n .panel-footer {\n border-top: 0;\n + .panel-collapse .panel-body {\n border-bottom: 1px solid @panel-inner-border;\n }\n }\n}\n\n\n// Contextual variations\n.panel-default {\n .panel-variant(@panel-default-border; @panel-default-text; @panel-default-heading-bg; @panel-default-border);\n}\n.panel-primary {\n .panel-variant(@panel-primary-border; @panel-primary-text; @panel-primary-heading-bg; @panel-primary-border);\n}\n.panel-success {\n .panel-variant(@panel-success-border; @panel-success-text; @panel-success-heading-bg; @panel-success-border);\n}\n.panel-info {\n .panel-variant(@panel-info-border; @panel-info-text; @panel-info-heading-bg; @panel-info-border);\n}\n.panel-warning {\n .panel-variant(@panel-warning-border; @panel-warning-text; @panel-warning-heading-bg; @panel-warning-border);\n}\n.panel-danger {\n .panel-variant(@panel-danger-border; @panel-danger-text; @panel-danger-heading-bg; @panel-danger-border);\n}\n","// Panels\n\n.panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) {\n border-color: @border;\n\n & > .panel-heading {\n color: @heading-text-color;\n background-color: @heading-bg-color;\n border-color: @heading-border;\n\n + .panel-collapse > .panel-body {\n border-top-color: @border;\n }\n .badge {\n color: @heading-bg-color;\n background-color: @heading-text-color;\n }\n }\n & > .panel-footer {\n + .panel-collapse > .panel-body {\n border-bottom-color: @border;\n }\n }\n}\n","// Embeds responsive\n//\n// Credit: Nicolas Gallagher and SUIT CSS.\n\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n\n .embed-responsive-item,\n iframe,\n embed,\n object,\n video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n }\n}\n\n// Modifier class for 16:9 aspect ratio\n.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n\n// Modifier class for 4:3 aspect ratio\n.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n","//\n// Wells\n// --------------------------------------------------\n\n\n// Base class\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: @well-bg;\n border: 1px solid @well-border;\n border-radius: @border-radius-base;\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.05));\n blockquote {\n border-color: #ddd;\n border-color: rgba(0,0,0,.15);\n }\n}\n\n// Sizes\n.well-lg {\n padding: 24px;\n border-radius: @border-radius-large;\n}\n.well-sm {\n padding: 9px;\n border-radius: @border-radius-small;\n}\n","//\n// Close icons\n// --------------------------------------------------\n\n\n.close {\n float: right;\n font-size: (@font-size-base * 1.5);\n font-weight: @close-font-weight;\n line-height: 1;\n color: @close-color;\n text-shadow: @close-text-shadow;\n .opacity(.2);\n\n &:hover,\n &:focus {\n color: @close-color;\n text-decoration: none;\n cursor: pointer;\n .opacity(.5);\n }\n\n // Additional properties for button version\n // iOS requires the button element instead of an anchor tag.\n // If you want the anchor version, it requires `href=\"#\"`.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile\n button& {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n }\n}\n","//\n// Modals\n// --------------------------------------------------\n\n// .modal-open - body class for killing the scroll\n// .modal - container to scroll within\n// .modal-dialog - positioning shell for the actual modal\n// .modal-content - actual modal w/ bg and corners and shit\n\n// Kill the scroll on the body\n.modal-open {\n overflow: hidden;\n}\n\n// Container that the modal scrolls within\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal;\n -webkit-overflow-scrolling: touch;\n\n // Prevent Chrome on Windows from adding a focus outline. For details, see\n // https://github.com/twbs/bootstrap/pull/10951.\n outline: 0;\n\n // When fading in the modal, animate it to slide down\n &.fade .modal-dialog {\n .translate(0, -25%);\n .transition-transform(~\"0.3s ease-out\");\n }\n &.in .modal-dialog { .translate(0, 0) }\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n\n// Shell div to position the modal with bottom padding\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n\n// Actual modal\n.modal-content {\n position: relative;\n background-color: @modal-content-bg;\n border: 1px solid @modal-content-fallback-border-color; //old browsers fallback (ie8 etc)\n border: 1px solid @modal-content-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 3px 9px rgba(0,0,0,.5));\n background-clip: padding-box;\n // Remove focus outline from opened modal\n outline: 0;\n}\n\n// Modal background\n.modal-backdrop {\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: @zindex-modal-background;\n background-color: @modal-backdrop-bg;\n // Fade for backdrop\n &.fade { .opacity(0); }\n &.in { .opacity(@modal-backdrop-opacity); }\n}\n\n// Modal header\n// Top section of the modal w/ title and dismiss\n.modal-header {\n padding: @modal-title-padding;\n border-bottom: 1px solid @modal-header-border-color;\n &:extend(.clearfix all);\n}\n// Close icon\n.modal-header .close {\n margin-top: -2px;\n}\n\n// Title text within header\n.modal-title {\n margin: 0;\n line-height: @modal-title-line-height;\n}\n\n// Modal body\n// Where all modal content resides (sibling of .modal-header and .modal-footer)\n.modal-body {\n position: relative;\n padding: @modal-inner-padding;\n}\n\n// Footer (for actions)\n.modal-footer {\n padding: @modal-inner-padding;\n text-align: right; // right align buttons\n border-top: 1px solid @modal-footer-border-color;\n &:extend(.clearfix all); // clear it in case folks use .pull-* classes on buttons\n\n // Properly space out buttons\n .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0; // account for input[type=\"submit\"] which gets the bottom margin like all other inputs\n }\n // but override that for button groups\n .btn-group .btn + .btn {\n margin-left: -1px;\n }\n // and override it for block buttons as well\n .btn-block + .btn-block {\n margin-left: 0;\n }\n}\n\n// Measure scrollbar width for padding body during modal show/hide\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n\n// Scale up the modal\n@media (min-width: @screen-sm-min) {\n // Automatically set modal's width for larger viewports\n .modal-dialog {\n width: @modal-md;\n margin: 30px auto;\n }\n .modal-content {\n .box-shadow(0 5px 15px rgba(0,0,0,.5));\n }\n\n // Modal sizes\n .modal-sm { width: @modal-sm; }\n}\n\n@media (min-width: @screen-md-min) {\n .modal-lg { width: @modal-lg; }\n}\n","//\n// Tooltips\n// --------------------------------------------------\n\n\n// Base class\n.tooltip {\n position: absolute;\n z-index: @zindex-tooltip;\n display: block;\n // Our parent element can be arbitrary since tooltips are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-small;\n\n .opacity(0);\n\n &.in { .opacity(@tooltip-opacity); }\n &.top { margin-top: -3px; padding: @tooltip-arrow-width 0; }\n &.right { margin-left: 3px; padding: 0 @tooltip-arrow-width; }\n &.bottom { margin-top: 3px; padding: @tooltip-arrow-width 0; }\n &.left { margin-left: -3px; padding: 0 @tooltip-arrow-width; }\n}\n\n// Wrapper for the tooltip content\n.tooltip-inner {\n max-width: @tooltip-max-width;\n padding: 3px 8px;\n color: @tooltip-color;\n text-align: center;\n background-color: @tooltip-bg;\n border-radius: @border-radius-base;\n}\n\n// Arrows\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n// Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1\n.tooltip {\n &.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-left .tooltip-arrow {\n bottom: 0;\n right: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.top-right .tooltip-arrow {\n bottom: 0;\n left: @tooltip-arrow-width;\n margin-bottom: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width 0;\n border-top-color: @tooltip-arrow-color;\n }\n &.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width @tooltip-arrow-width @tooltip-arrow-width 0;\n border-right-color: @tooltip-arrow-color;\n }\n &.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -@tooltip-arrow-width;\n border-width: @tooltip-arrow-width 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-left-color: @tooltip-arrow-color;\n }\n &.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-left .tooltip-arrow {\n top: 0;\n right: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n &.bottom-right .tooltip-arrow {\n top: 0;\n left: @tooltip-arrow-width;\n margin-top: -@tooltip-arrow-width;\n border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;\n border-bottom-color: @tooltip-arrow-color;\n }\n}\n",".reset-text() {\n font-family: @font-family-base;\n // We deliberately do NOT reset font-size.\n font-style: normal;\n font-weight: normal;\n letter-spacing: normal;\n line-break: auto;\n line-height: @line-height-base;\n text-align: left; // Fallback for where `start` is not supported\n text-align: start;\n text-decoration: none;\n text-shadow: none;\n text-transform: none;\n white-space: normal;\n word-break: normal;\n word-spacing: normal;\n word-wrap: normal;\n}\n","//\n// Popovers\n// --------------------------------------------------\n\n\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: @zindex-popover;\n display: none;\n max-width: @popover-max-width;\n padding: 1px;\n // Our parent element can be arbitrary since popovers are by default inserted as a sibling of their target element.\n // So reset our font and text properties to avoid inheriting weird values.\n .reset-text();\n font-size: @font-size-base;\n\n background-color: @popover-bg;\n background-clip: padding-box;\n border: 1px solid @popover-fallback-border-color;\n border: 1px solid @popover-border-color;\n border-radius: @border-radius-large;\n .box-shadow(0 5px 10px rgba(0,0,0,.2));\n\n // Offset the popover to account for the popover arrow\n &.top { margin-top: -@popover-arrow-width; }\n &.right { margin-left: @popover-arrow-width; }\n &.bottom { margin-top: @popover-arrow-width; }\n &.left { margin-left: -@popover-arrow-width; }\n}\n\n.popover-title {\n margin: 0; // reset heading margin\n padding: 8px 14px;\n font-size: @font-size-base;\n background-color: @popover-title-bg;\n border-bottom: 1px solid darken(@popover-title-bg, 5%);\n border-radius: (@border-radius-large - 1) (@border-radius-large - 1) 0 0;\n}\n\n.popover-content {\n padding: 9px 14px;\n}\n\n// Arrows\n//\n// .arrow is outer, .arrow:after is inner\n\n.popover > .arrow {\n &,\n &:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n }\n}\n.popover > .arrow {\n border-width: @popover-arrow-outer-width;\n}\n.popover > .arrow:after {\n border-width: @popover-arrow-width;\n content: \"\";\n}\n\n.popover {\n &.top > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-top-color: @popover-arrow-outer-color;\n bottom: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n bottom: 1px;\n margin-left: -@popover-arrow-width;\n border-bottom-width: 0;\n border-top-color: @popover-arrow-color;\n }\n }\n &.right > .arrow {\n top: 50%;\n left: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-right-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n left: 1px;\n bottom: -@popover-arrow-width;\n border-left-width: 0;\n border-right-color: @popover-arrow-color;\n }\n }\n &.bottom > .arrow {\n left: 50%;\n margin-left: -@popover-arrow-outer-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-bottom-color: @popover-arrow-outer-color;\n top: -@popover-arrow-outer-width;\n &:after {\n content: \" \";\n top: 1px;\n margin-left: -@popover-arrow-width;\n border-top-width: 0;\n border-bottom-color: @popover-arrow-color;\n }\n }\n\n &.left > .arrow {\n top: 50%;\n right: -@popover-arrow-outer-width;\n margin-top: -@popover-arrow-outer-width;\n border-right-width: 0;\n border-left-color: @popover-arrow-outer-fallback-color; // IE8 fallback\n border-left-color: @popover-arrow-outer-color;\n &:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: @popover-arrow-color;\n bottom: -@popover-arrow-width;\n }\n }\n}\n","//\n// Carousel\n// --------------------------------------------------\n\n\n// Wrapper for the slide container and indicators\n.carousel {\n position: relative;\n}\n\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n\n > .item {\n display: none;\n position: relative;\n .transition(.6s ease-in-out left);\n\n // Account for jankitude on images\n > img,\n > a > img {\n &:extend(.img-responsive);\n line-height: 1;\n }\n\n // WebKit CSS3 transforms for supported devices\n @media all and (transform-3d), (-webkit-transform-3d) {\n .transition-transform(~'0.6s ease-in-out');\n .backface-visibility(~'hidden');\n .perspective(1000px);\n\n &.next,\n &.active.right {\n .translate3d(100%, 0, 0);\n left: 0;\n }\n &.prev,\n &.active.left {\n .translate3d(-100%, 0, 0);\n left: 0;\n }\n &.next.left,\n &.prev.right,\n &.active {\n .translate3d(0, 0, 0);\n left: 0;\n }\n }\n }\n\n > .active,\n > .next,\n > .prev {\n display: block;\n }\n\n > .active {\n left: 0;\n }\n\n > .next,\n > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n }\n\n > .next {\n left: 100%;\n }\n > .prev {\n left: -100%;\n }\n > .next.left,\n > .prev.right {\n left: 0;\n }\n\n > .active.left {\n left: -100%;\n }\n > .active.right {\n left: 100%;\n }\n\n}\n\n// Left/right controls for nav\n// ---------------------------\n\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: @carousel-control-width;\n .opacity(@carousel-control-opacity);\n font-size: @carousel-control-font-size;\n color: @carousel-control-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n background-color: rgba(0, 0, 0, 0); // Fix IE9 click-thru bug\n // We can't have this transition here because WebKit cancels the carousel\n // animation if you trip this while in the middle of another animation.\n\n // Set gradients for backgrounds\n &.left {\n #gradient > .horizontal(@start-color: rgba(0,0,0,.5); @end-color: rgba(0,0,0,.0001));\n }\n &.right {\n left: auto;\n right: 0;\n #gradient > .horizontal(@start-color: rgba(0,0,0,.0001); @end-color: rgba(0,0,0,.5));\n }\n\n // Hover/focus state\n &:hover,\n &:focus {\n outline: 0;\n color: @carousel-control-color;\n text-decoration: none;\n .opacity(.9);\n }\n\n // Toggles\n .icon-prev,\n .icon-next,\n .glyphicon-chevron-left,\n .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n margin-top: -10px;\n z-index: 5;\n display: inline-block;\n }\n .icon-prev,\n .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n }\n .icon-next,\n .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n }\n .icon-prev,\n .icon-next {\n width: 20px;\n height: 20px;\n line-height: 1;\n font-family: serif;\n }\n\n\n .icon-prev {\n &:before {\n content: '\\2039';// SINGLE LEFT-POINTING ANGLE QUOTATION MARK (U+2039)\n }\n }\n .icon-next {\n &:before {\n content: '\\203a';// SINGLE RIGHT-POINTING ANGLE QUOTATION MARK (U+203A)\n }\n }\n}\n\n// Optional indicator pips\n//\n// Add an unordered list with the following class and add a list item for each\n// slide your carousel holds.\n\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n\n li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid @carousel-indicator-border-color;\n border-radius: 10px;\n cursor: pointer;\n\n // IE8-9 hack for event handling\n //\n // Internet Explorer 8-9 does not support clicks on elements without a set\n // `background-color`. We cannot use `filter` since that's not viewed as a\n // background color by the browser. Thus, a hack is needed.\n // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Internet_Explorer\n //\n // For IE8, we set solid black as it doesn't support `rgba()`. For IE9, we\n // set alpha transparency for the best results possible.\n background-color: #000 \\9; // IE8\n background-color: rgba(0,0,0,0); // IE9\n }\n .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: @carousel-indicator-active-bg;\n }\n}\n\n// Optional captions\n// -----------------------------\n// Hidden by default for smaller viewports\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: @carousel-caption-color;\n text-align: center;\n text-shadow: @carousel-text-shadow;\n & .btn {\n text-shadow: none; // No shadow for button elements in carousel-caption\n }\n}\n\n\n// Scale up controls for tablets and up\n@media screen and (min-width: @screen-sm-min) {\n\n // Scale up the controls a smidge\n .carousel-control {\n .glyphicon-chevron-left,\n .glyphicon-chevron-right,\n .icon-prev,\n .icon-next {\n width: (@carousel-control-font-size * 1.5);\n height: (@carousel-control-font-size * 1.5);\n margin-top: (@carousel-control-font-size / -2);\n font-size: (@carousel-control-font-size * 1.5);\n }\n .glyphicon-chevron-left,\n .icon-prev {\n margin-left: (@carousel-control-font-size / -2);\n }\n .glyphicon-chevron-right,\n .icon-next {\n margin-right: (@carousel-control-font-size / -2);\n }\n }\n\n // Show and left align the captions\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n\n // Move up the indicators\n .carousel-indicators {\n bottom: 20px;\n }\n}\n","// Clearfix\n//\n// For modern browsers\n// 1. The space content is one way to avoid an Opera bug when the\n// contenteditable attribute is included anywhere else in the document.\n// Otherwise it causes space to appear at the top and bottom of elements\n// that are clearfixed.\n// 2. The use of `table` rather than `block` is only necessary if using\n// `:before` to contain the top-margins of child elements.\n//\n// Source: http://nicolasgallagher.com/micro-clearfix-hack/\n\n.clearfix() {\n &:before,\n &:after {\n content: \" \"; // 1\n display: table; // 2\n }\n &:after {\n clear: both;\n }\n}\n","// Center-align a block level element\n\n.center-block() {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n","// CSS image replacement\n//\n// Heads up! v3 launched with only `.hide-text()`, but per our pattern for\n// mixins being reused as classes with the same name, this doesn't hold up. As\n// of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`.\n//\n// Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757\n\n// Deprecated as of v3.0.1 (has been removed in v4)\n.hide-text() {\n font: ~\"0/0\" a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n\n// New mixin to use as of v3.0.1\n.text-hide() {\n .hide-text();\n}\n","//\n// Responsive: Utility classes\n// --------------------------------------------------\n\n\n// IE10 in Windows (Phone) 8\n//\n// Support for responsive views via media queries is kind of borked in IE10, for\n// Surface/desktop in split view and for Windows Phone 8. This particular fix\n// must be accompanied by a snippet of JavaScript to sniff the user agent and\n// apply some conditional CSS to *only* the Surface/desktop Windows 8. Look at\n// our Getting Started page for more information on this bug.\n//\n// For more information, see the following:\n//\n// Issue: https://github.com/twbs/bootstrap/issues/10497\n// Docs: http://getbootstrap.com/getting-started/#support-ie10-width\n// Source: http://timkadlec.com/2013/01/windows-phone-8-and-device-width/\n// Source: http://timkadlec.com/2012/10/ie10-snap-mode-and-responsive-design/\n\n@-ms-viewport {\n width: device-width;\n}\n\n\n// Visibility utilities\n// Note: Deprecated .visible-xs, .visible-sm, .visible-md, and .visible-lg as of v3.2.0\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n .responsive-invisibility();\n}\n\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n\n.visible-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-visibility();\n }\n}\n.visible-xs-block {\n @media (max-width: @screen-xs-max) {\n display: block !important;\n }\n}\n.visible-xs-inline {\n @media (max-width: @screen-xs-max) {\n display: inline !important;\n }\n}\n.visible-xs-inline-block {\n @media (max-width: @screen-xs-max) {\n display: inline-block !important;\n }\n}\n\n.visible-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-visibility();\n }\n}\n.visible-sm-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: block !important;\n }\n}\n.visible-sm-inline {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline !important;\n }\n}\n.visible-sm-inline-block {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n display: inline-block !important;\n }\n}\n\n.visible-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-visibility();\n }\n}\n.visible-md-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: block !important;\n }\n}\n.visible-md-inline {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline !important;\n }\n}\n.visible-md-inline-block {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n display: inline-block !important;\n }\n}\n\n.visible-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-visibility();\n }\n}\n.visible-lg-block {\n @media (min-width: @screen-lg-min) {\n display: block !important;\n }\n}\n.visible-lg-inline {\n @media (min-width: @screen-lg-min) {\n display: inline !important;\n }\n}\n.visible-lg-inline-block {\n @media (min-width: @screen-lg-min) {\n display: inline-block !important;\n }\n}\n\n.hidden-xs {\n @media (max-width: @screen-xs-max) {\n .responsive-invisibility();\n }\n}\n.hidden-sm {\n @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {\n .responsive-invisibility();\n }\n}\n.hidden-md {\n @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {\n .responsive-invisibility();\n }\n}\n.hidden-lg {\n @media (min-width: @screen-lg-min) {\n .responsive-invisibility();\n }\n}\n\n\n// Print utilities\n//\n// Media queries are placed on the inside to be mixin-friendly.\n\n// Note: Deprecated .visible-print as of v3.2.0\n.visible-print {\n .responsive-invisibility();\n\n @media print {\n .responsive-visibility();\n }\n}\n.visible-print-block {\n display: none !important;\n\n @media print {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n\n @media print {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n\n @media print {\n display: inline-block !important;\n }\n}\n\n.hidden-print {\n @media print {\n .responsive-invisibility();\n }\n}\n","// Responsive utilities\n\n//\n// More easily include all the states for responsive-utilities.less.\n.responsive-visibility() {\n display: block !important;\n table& { display: table !important; }\n tr& { display: table-row !important; }\n th&,\n td& { display: table-cell !important; }\n}\n\n.responsive-invisibility() {\n display: none !important;\n}\n"]} \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap.min.css b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.min.css new file mode 100644 index 0000000..4cf729e --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.min.css @@ -0,0 +1,6 @@ +/*! + * Bootstrap v3.3.6 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]>.btn input[type=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:focus,.nav-tabs>li.active>a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:focus,.nav-pills>li.active>a:hover{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:focus,.nav-tabs-justified>.active>a:hover{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand>img{display:block}@media (min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:focus,.navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:focus,.navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:focus,.pager li>a:hover{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.panel-title>small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>a>img,.carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/3.3.6/bootstrap.min.css.map b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.min.css.map new file mode 100644 index 0000000..5f49bb3 --- /dev/null +++ b/src/main/webapp/css/bootstrap/3.3.6/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["less/normalize.less","less/print.less","bootstrap.css","dist/css/bootstrap.css","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":";;;;4EAQA,KACE,YAAA,WACA,yBAAA,KACA,qBAAA,KAOF,KACE,OAAA,EAaF,QAAA,MAAA,QAAA,WAAA,OAAA,OAAA,OAAA,OAAA,KAAA,KAAA,IAAA,QAAA,QAaE,QAAA,MAQF,MAAA,OAAA,SAAA,MAIE,QAAA,aACA,eAAA,SAQF,sBACE,QAAA,KACA,OAAA,EAQF,SAAA,SAEE,QAAA,KAUF,EACE,iBAAA,YAQF,SAAA,QAEE,QAAA,EAUF,YACE,cAAA,IAAA,OAOF,EAAA,OAEE,YAAA,IAOF,IACE,WAAA,OAQF,GACE,OAAA,MAAA,EACA,UAAA,IAOF,KACE,MAAA,KACA,WAAA,KAOF,MACE,UAAA,IAOF,IAAA,IAEE,SAAA,SACA,UAAA,IACA,YAAA,EACA,eAAA,SAGF,IACE,IAAA,MAGF,IACE,OAAA,OAUF,IACE,OAAA,EAOF,eACE,SAAA,OAUF,OACE,OAAA,IAAA,KAOF,GACE,OAAA,EAAA,mBAAA,YAAA,gBAAA,YACA,WAAA,YAOF,IACE,SAAA,KAOF,KAAA,IAAA,IAAA,KAIE,YAAA,UAAA,UACA,UAAA,IAkBF,OAAA,MAAA,SAAA,OAAA,SAKE,OAAA,EACA,KAAA,QACA,MAAA,QAOF,OACE,SAAA,QAUF,OAAA,OAEE,eAAA,KAWF,OAAA,wBAAA,kBAAA,mBAIE,mBAAA,OACA,OAAA,QAOF,iBAAA,qBAEE,OAAA,QAOF,yBAAA,wBAEE,QAAA,EACA,OAAA,EAQF,MACE,YAAA,OAWF,qBAAA,kBAEE,mBAAA,WAAA,gBAAA,WAAA,WAAA,WACA,QAAA,EASF,8CAAA,8CAEE,OAAA,KAQF,mBACE,mBAAA,YACA,gBAAA,YAAA,WAAA,YAAA,mBAAA,UASF,iDAAA,8CAEE,mBAAA,KAOF,SACE,QAAA,MAAA,OAAA,MACA,OAAA,EAAA,IACA,OAAA,IAAA,MAAA,OAQF,OACE,QAAA,EACA,OAAA,EAOF,SACE,SAAA,KAQF,SACE,YAAA,IAUF,MACE,eAAA,EACA,gBAAA,SAGF,GAAA,GAEE,QAAA,uFCjUF,aA7FI,EAAA,OAAA,QAGI,MAAA,eACA,YAAA,eACA,WAAA,cAAA,mBAAA,eACA,WAAA,eAGJ,EAAA,UAEI,gBAAA,UAGJ,cACI,QAAA,KAAA,WAAA,IAGJ,kBACI,QAAA,KAAA,YAAA,IAKJ,6BAAA,mBAEI,QAAA,GAGJ,WAAA,IAEI,OAAA,IAAA,MAAA,KC4KL,kBAAA,MDvKK,MC0KL,QAAA,mBDrKK,IE8KN,GDLC,kBAAA,MDrKK,ICwKL,UAAA,eCUD,GF5KM,GE2KN,EF1KM,QAAA,ECuKL,OAAA,ECSD,GF3KM,GCsKL,iBAAA,MD/JK,QCkKL,QAAA,KCSD,YFtKU,oBCiKT,iBAAA,eD7JK,OCgKL,OAAA,IAAA,MAAA,KD5JK,OC+JL,gBAAA,mBCSD,UFpKU,UC+JT,iBAAA,eDzJS,mBEkKV,mBDLC,OAAA,IAAA,MAAA,gBEjPD,WACA,YAAA,uBFsPD,IAAA,+CE7OC,IAAK,sDAAuD,4BAA6B,iDAAkD,gBAAiB,gDAAiD,eAAgB,+CAAgD,mBAAoB,2EAA4E,cAE7W,WACA,SAAA,SACA,IAAA,IACA,QAAA,aACA,YAAA,uBACA,WAAA,OACA,YAAA,IACA,YAAA,EAIkC,uBAAA,YAAW,wBAAA,UACX,2BAAW,QAAA,QAEX,uBDuPlC,QAAS,QCtPyB,sBFiPnC,uBEjP8C,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,qBAAW,QAAA,QACX,0BAAW,QAAA,QACX,qBAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,2BAAW,QAAA,QACX,sBAAW,QAAA,QACX,yBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,+BAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,8BAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,6BAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,sBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,yBAAW,QAAA,QACX,8BAAW,QAAA,QACX,6BAAW,QAAA,QACX,6BAAW,QAAA,QACX,+BAAW,QAAA,QACX,8BAAW,QAAA,QACX,gCAAW,QAAA,QACX,uBAAW,QAAA,QACX,8BAAW,QAAA,QACX,+BAAW,QAAA,QACX,iCAAW,QAAA,QACX,0BAAW,QAAA,QACX,6BAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,gCAAW,QAAA,QACX,gCAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,0BAAW,QAAA,QACX,+BAAW,QAAA,QACX,+BAAW,QAAA,QACX,wBAAW,QAAA,QACX,+BAAW,QAAA,QACX,gCAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,8BAAW,QAAA,QACX,0BAAW,QAAA,QACX,gCAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,gCAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,6BAAW,QAAA,QACX,8BAAW,QAAA,QACX,2BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,8BAAW,QAAA,QACX,+BAAW,QAAA,QACX,mCAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,4BAAW,QAAA,QACX,+BAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,yBAAW,QAAA,QACX,6BAAW,QAAA,QACX,+BAAW,QAAA,QACX,0BAAW,QAAA,QACX,gCAAW,QAAA,QACX,+BAAW,QAAA,QACX,8BAAW,QAAA,QACX,kCAAW,QAAA,QACX,oCAAW,QAAA,QACX,sBAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,8BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,0BAAW,QAAA,QACX,4BAAW,QAAA,QACX,qCAAW,QAAA,QACX,oCAAW,QAAA,QACX,kCAAW,QAAA,QACX,oCAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,8BAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,0BAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,uBAAW,QAAA,QACX,mCAAW,QAAA,QACX,uCAAW,QAAA,QACX,gCAAW,QAAA,QACX,oCAAW,QAAA,QACX,qCAAW,QAAA,QACX,yCAAW,QAAA,QACX,4BAAW,QAAA,QACX,yBAAW,QAAA,QACX,gCAAW,QAAA,QACX,8BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,0BAAW,QAAA,QACX,6BAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,yBAAW,QAAA,QACX,uBAAW,QAAA,QACX,8BAAW,QAAA,QACX,+BAAW,QAAA,QACX,gCAAW,QAAA,QACX,8BAAW,QAAA,QACX,8BAAW,QAAA,QACX,8BAAW,QAAA,QACX,2BAAW,QAAA,QACX,0BAAW,QAAA,QACX,yBAAW,QAAA,QACX,6BAAW,QAAA,QACX,2BAAW,QAAA,QACX,4BAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,2BAAW,QAAA,QACX,4BAAW,QAAA,QACX,+BAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,iCAAW,QAAA,QACX,oCAAW,QAAA,QACX,iCAAW,QAAA,QACX,+BAAW,QAAA,QACX,+BAAW,QAAA,QACX,iCAAW,QAAA,QACX,qBAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,2BAAW,QAAA,QACX,uBAAW,QAAA,QASX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,4BAAW,QAAA,QACX,uBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,yBAAW,QAAA,QACX,yBAAW,QAAA,QACX,+BAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,4BAAW,QAAA,QACX,uBAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,2BAAW,QAAA,QACX,0BAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,4BAAW,QAAA,QACX,mCAAW,QAAA,QACX,4BAAW,QAAA,QACX,oCAAW,QAAA,QACX,kCAAW,QAAA,QACX,iCAAW,QAAA,QACX,+BAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,kCAAW,QAAA,QACX,mCAAW,QAAA,QACX,sCAAW,QAAA,QACX,0CAAW,QAAA,QACX,oCAAW,QAAA,QACX,wCAAW,QAAA,QACX,qCAAW,QAAA,QACX,iCAAW,QAAA,QACX,gCAAW,QAAA,QACX,kCAAW,QAAA,QACX,+BAAW,QAAA,QACX,0BAAW,QAAA,QACX,8BAAW,QAAA,QACX,4BAAW,QAAA,QACX,4BAAW,QAAA,QACX,6BAAW,QAAA,QACX,4BAAW,QAAA,QCtS/C,0BCgEE,QAAA,QHi+BF,EDNC,mBAAA,WGxhCI,gBAAiB,WFiiCZ,WAAY,WGl+BZ,OADL,QJg+BJ,mBAAA,WGthCI,gBAAiB,WACpB,WAAA,WHyhCD,KGrhCC,UAAW,KAEX,4BAAA,cAEA,KACA,YAAA,iBAAA,UAAA,MAAA,WHuhCD,UAAA,KGnhCC,YAAa,WF4hCb,MAAO,KACP,iBAAkB,KExhClB,OADA,MAEA,OHqhCD,SG/gCC,YAAa,QACb,UAAA,QACA,YAAA,QAEA,EFwhCA,MAAO,QEthCL,gBAAA,KAIF,QH8gCD,QKnkCC,MAAA,QAEA,gBAAA,ULskCD,QGxgCC,QAAS,KAAK,OACd,QAAA,IAAA,KAAA,yBH0gCD,eAAA,KGngCC,OHsgCD,OAAA,ECSD,IACE,eAAgB,ODDjB,4BMhlCC,0BLmlCF,gBKplCE,iBADA,eH4EA,QAAS,MACT,UAAA,KHwgCD,OAAA,KGjgCC,aACA,cAAA,IAEA,eACA,QAAA,aC6FA,UAAA,KACK,OAAA,KACG,QAAA,IEvLR,YAAA,WACA,iBAAA,KACA,OAAA,IAAA,MAAA,KNgmCD,cAAA,IGlgCC,mBAAoB,IAAI,IAAI,YAC5B,cAAA,IAAA,IAAA,YHogCD,WAAA,IAAA,IAAA,YG7/BC,YACA,cAAA,IAEA,GHggCD,WAAA,KGx/BC,cAAe,KACf,OAAA,EACA,WAAA,IAAA,MAAA,KAEA,SACA,SAAA,SACA,MAAA,IACA,OAAA,IACA,QAAA,EH0/BD,OAAA,KGl/BC,SAAA,OF2/BA,KAAM,cEz/BJ,OAAA,EAEA,0BACA,yBACA,SAAA,OACA,MAAA,KHo/BH,OAAA,KGz+BC,OAAQ,EACR,SAAA,QH2+BD,KAAA,KCSD,cACE,OAAQ,QAQV,IACA,IMnpCE,IACA,IACA,IACA,INyoCF,GACA,GACA,GACA,GACA,GACA,GDAC,YAAA,QOnpCC,YAAa,IN4pCb,YAAa,IACb,MAAO,QAoBT,WAZA,UAaA,WAZA,UM7pCI,WN8pCJ,UM7pCI,WN8pCJ,UM7pCI,WN8pCJ,UDMC,WCLD,UACA,UAZA,SAaA,UAZA,SAaA,UAZA,SAaA,UAZA,SAaA,UAZA,SAaA,UAZA,SMrpCE,YAAa,INyqCb,YAAa,EACb,MAAO,KAGT,IMzqCE,IAJF,IN4qCA,GAEA,GDLC,GCSC,WAAY,KACZ,cAAe,KASjB,WANA,UDCC,WCCD,UM7qCA,WN+qCA,UACA,UANA,SM7qCI,UN+qCJ,SM5qCA,UN8qCA,SAQE,UAAW,IAGb,IMrrCE,IAJF,INwrCA,GAEA,GDLC,GCSC,WAAY,KACZ,cAAe,KASjB,WANA,UDCC,WCCD,UMxrCA,WN0rCA,UACA,UANA,SMzrCI,UN2rCJ,SMvrCA,UNyrCA,SMzrCU,UAAA,IACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KACV,IAAA,GAAU,UAAA,KAOR,IADF,GPusCC,UAAA,KCSD,EM1sCE,OAAA,EAAA,EAAA,KAEA,MPqsCD,cAAA,KOhsCC,UAAW,KAwOX,YAAa,IA1OX,YAAA,IPusCH,yBO9rCC,MNusCE,UAAW,MMlsCf,OAAA,MAEE,UAAA,IAKF,MP2rCC,KO3rCsB,QAAA,KP8rCtB,iBAAA,QO7rCsB,WPgsCtB,WAAA,KO/rCsB,YPksCtB,WAAA,MOjsCsB,aPosCtB,WAAA,OOnsCsB,cPssCtB,WAAA,QOnsCsB,aPssCtB,YAAA,OOrsCsB,gBPwsCtB,eAAA,UOvsCsB,gBP0sCtB,eAAA,UOtsCC,iBPysCD,eAAA,WQ5yCC,YR+yCD,MAAA,KCSD,cOrzCI,MAAA,QAHF,qBDwGF,qBP8sCC,MAAA,QCSD,cO5zCI,MAAA,QAHF,qBD2GF,qBPktCC,MAAA,QCSD,WOn0CI,MAAA,QAHF,kBD8GF,kBPstCC,MAAA,QCSD,cO10CI,MAAA,QAHF,qBDiHF,qBP0tCC,MAAA,QCSD,aOj1CI,MAAA,QDwHF,oBAHF,oBExHE,MAAA,QACA,YR21CA,MAAO,KQz1CL,iBAAA,QAHF,mBF8HF,mBP4tCC,iBAAA,QCSD,YQh2CI,iBAAA,QAHF,mBFiIF,mBPguCC,iBAAA,QCSD,SQv2CI,iBAAA,QAHF,gBFoIF,gBPouCC,iBAAA,QCSD,YQ92CI,iBAAA,QAHF,mBFuIF,mBPwuCC,iBAAA,QCSD,WQr3CI,iBAAA,QF6IF,kBADF,kBAEE,iBAAA,QPuuCD,aO9tCC,eAAgB,INuuChB,OAAQ,KAAK,EAAE,KMruCf,cAAA,IAAA,MAAA,KAFF,GPmuCC,GCSC,WAAY,EACZ,cAAe,KM/tCf,MP2tCD,MO5tCD,MAPI,MASF,cAAA,EAIF,eALE,aAAA,EACA,WAAA,KPmuCD,aO/tCC,aAAc,EAKZ,YAAA,KACA,WAAA,KP8tCH,gBOxtCC,QAAS,aACT,cAAA,IACA,aAAA,IAEF,GNiuCE,WAAY,EM/tCZ,cAAA,KAGA,GADF,GP2tCC,YAAA,WOvtCC,GP0tCD,YAAA,IOpnCD,GAvFM,YAAA,EAEA,yBACA,kBGtNJ,MAAA,KACA,MAAA,MACA,SAAA,OVs6CC,MAAA,KO9nCC,WAAY,MAhFV,cAAA,SPitCH,YAAA,OOvsCD,kBNitCE,YAAa,OM3sCjB,0BPusCC,YOtsCC,OAAA,KA9IqB,cAAA,IAAA,OAAA,KAmJvB,YACE,UAAA,IACA,eAAA,UAEA,WPusCD,QAAA,KAAA,KOlsCG,OAAA,EAAA,EAAA,KN2sCF,UAAW,OACX,YAAa,IAAI,MAAM,KMrtCzB,yBPgtCC,wBOhtCD,yBN0tCE,cAAe,EMpsCb,kBAFA,kBACA,iBPmsCH,QAAA,MOhsCG,UAAA,INysCF,YAAa,WACb,MAAO,KMjsCT,yBP4rCC,yBO5rCD,wBAEE,QAAA,cAEA,oBACA,sBACA,cAAA,KP8rCD,aAAA,EOxrCG,WAAA,MNisCF,aAAc,IAAI,MAAM,KACxB,YAAa,EMjsCX,kCNmsCJ,kCMpsCe,iCACX,oCNosCJ,oCDLC,mCCUC,QAAS,GMlsCX,iCNosCA,iCM1sCM,gCAOJ,mCNosCF,mCDLC,kCO9rCC,QAAA,cPmsCD,QWx+CC,cAAe,KVi/Cf,WAAY,OACZ,YAAa,WU9+Cb,KX0+CD,IWt+CD,IACE,KACA,YAAA,MAAA,OAAA,SAAA,cAAA,UAEA,KACA,QAAA,IAAA,IXw+CD,UAAA,IWp+CC,MAAO,QACP,iBAAA,QACA,cAAA,IAEA,IACA,QAAA,IAAA,IACA,UAAA,IV6+CA,MU7+CA,KXs+CD,iBAAA,KW5+CC,cAAe,IASb,mBAAA,MAAA,EAAA,KAAA,EAAA,gBACA,WAAA,MAAA,EAAA,KAAA,EAAA,gBAEA,QV8+CF,QU9+CE,EXs+CH,UAAA,KWj+CC,YAAa,IACb,mBAAA,KACA,WAAA,KAEA,IACA,QAAA,MACA,QAAA,MACA,OAAA,EAAA,EAAA,KACA,UAAA,KACA,YAAA,WACA,MAAA,KACA,WAAA,UXm+CD,UAAA,WW9+CC,iBAAkB,QAehB,OAAA,IAAA,MAAA,KACA,cAAA,IAEA,SACA,QAAA,EACA,UAAA,QXk+CH,MAAA,QW79CC,YAAa,SACb,iBAAA,YACA,cAAA,EC1DF,gBCHE,WAAA,MACA,WAAA,OAEA,Wb+hDD,cAAA,KYzhDC,aAAA,KAqEA,aAAc,KAvEZ,YAAA,KZgiDH,yBY3hDC,WAkEE,MAAO,OZ89CV,yBY7hDC,WA+DE,MAAO,OZm+CV,0BY1hDC,WCvBA,MAAA,QAGA,iBbojDD,cAAA,KYvhDC,aAAc,KCvBd,aAAA,KACA,YAAA,KCAE,KACE,aAAA,MAEA,YAAA,MAGA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UdijDL,SAAA,ScjiDG,WAAA,IACE,cAAA,KdmiDL,aAAA,Kc3hDG,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Ud8hDH,MAAA,Kc9hDG,WdiiDH,MAAA,KcjiDG,WdoiDH,MAAA,acpiDG,WduiDH,MAAA,acviDG,Ud0iDH,MAAA,Ic1iDG,Ud6iDH,MAAA,ac7iDG,UdgjDH,MAAA,achjDG,UdmjDH,MAAA,IcnjDG,UdsjDH,MAAA,actjDG,UdyjDH,MAAA,aczjDG,Ud4jDH,MAAA,Ic5jDG,Ud+jDH,MAAA,achjDG,UdmjDH,MAAA,YcnjDG,gBdsjDH,MAAA,KctjDG,gBdyjDH,MAAA,aczjDG,gBd4jDH,MAAA,ac5jDG,ed+jDH,MAAA,Ic/jDG,edkkDH,MAAA,aclkDG,edqkDH,MAAA,acrkDG,edwkDH,MAAA,IcxkDG,ed2kDH,MAAA,ac3kDG,ed8kDH,MAAA,ac9kDG,edilDH,MAAA,IcjlDG,edolDH,MAAA,ac/kDG,edklDH,MAAA,YcjmDG,edomDH,MAAA,KcpmDG,gBdumDH,KAAA,KcvmDG,gBd0mDH,KAAA,ac1mDG,gBd6mDH,KAAA,ac7mDG,edgnDH,KAAA,IchnDG,edmnDH,KAAA,acnnDG,edsnDH,KAAA,actnDG,edynDH,KAAA,IcznDG,ed4nDH,KAAA,ac5nDG,ed+nDH,KAAA,ac/nDG,edkoDH,KAAA,IcloDG,edqoDH,KAAA,achoDG,edmoDH,KAAA,YcpnDG,edunDH,KAAA,KcvnDG,kBd0nDH,YAAA,Kc1nDG,kBd6nDH,YAAA,ac7nDG,kBdgoDH,YAAA,achoDG,iBdmoDH,YAAA,IcnoDG,iBdsoDH,YAAA,actoDG,iBdyoDH,YAAA,aczoDG,iBd4oDH,YAAA,Ic5oDG,iBd+oDH,YAAA,ac/oDG,iBdkpDH,YAAA,aclpDG,iBdqpDH,YAAA,IcrpDG,iBdwpDH,YAAA,acxpDG,iBd2pDH,YAAA,Yc7rDG,iBACE,YAAA,EAOJ,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Ud2rDD,MAAA,Kc3rDC,Wd8rDD,MAAA,Kc9rDC,WdisDD,MAAA,acjsDC,WdosDD,MAAA,acpsDC,UdusDD,MAAA,IcvsDC,Ud0sDD,MAAA,ac1sDC,Ud6sDD,MAAA,ac7sDC,UdgtDD,MAAA,IchtDC,UdmtDD,MAAA,acntDC,UdstDD,MAAA,acttDC,UdytDD,MAAA,IcztDC,Ud4tDD,MAAA,ac7sDC,UdgtDD,MAAA,YchtDC,gBdmtDD,MAAA,KcntDC,gBdstDD,MAAA,acttDC,gBdytDD,MAAA,acztDC,ed4tDD,MAAA,Ic5tDC,ed+tDD,MAAA,ac/tDC,edkuDD,MAAA,acluDC,edquDD,MAAA,IcruDC,edwuDD,MAAA,acxuDC,ed2uDD,MAAA,ac3uDC,ed8uDD,MAAA,Ic9uDC,edivDD,MAAA,ac5uDC,ed+uDD,MAAA,Yc9vDC,ediwDD,MAAA,KcjwDC,gBdowDD,KAAA,KcpwDC,gBduwDD,KAAA,acvwDC,gBd0wDD,KAAA,ac1wDC,ed6wDD,KAAA,Ic7wDC,edgxDD,KAAA,achxDC,edmxDD,KAAA,acnxDC,edsxDD,KAAA,IctxDC,edyxDD,KAAA,aczxDC,ed4xDD,KAAA,ac5xDC,ed+xDD,KAAA,Ic/xDC,edkyDD,KAAA,ac7xDC,edgyDD,KAAA,YcjxDC,edoxDD,KAAA,KcpxDC,kBduxDD,YAAA,KcvxDC,kBd0xDD,YAAA,ac1xDC,kBd6xDD,YAAA,ac7xDC,iBdgyDD,YAAA,IchyDC,iBdmyDD,YAAA,acnyDC,iBdsyDD,YAAA,actyDC,iBdyyDD,YAAA,IczyDC,iBd4yDD,YAAA,ac5yDC,iBd+yDD,YAAA,ac/yDC,iBdkzDD,YAAA,IclzDC,iBdqzDD,YAAA,acrzDC,iBdwzDD,YAAA,YY/yDD,iBE3CE,YAAA,GAQF,yBACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udy1DD,MAAA,Kcz1DC,Wd41DD,MAAA,Kc51DC,Wd+1DD,MAAA,ac/1DC,Wdk2DD,MAAA,acl2DC,Udq2DD,MAAA,Icr2DC,Udw2DD,MAAA,acx2DC,Ud22DD,MAAA,ac32DC,Ud82DD,MAAA,Ic92DC,Udi3DD,MAAA,acj3DC,Udo3DD,MAAA,acp3DC,Udu3DD,MAAA,Icv3DC,Ud03DD,MAAA,ac32DC,Ud82DD,MAAA,Yc92DC,gBdi3DD,MAAA,Kcj3DC,gBdo3DD,MAAA,acp3DC,gBdu3DD,MAAA,acv3DC,ed03DD,MAAA,Ic13DC,ed63DD,MAAA,ac73DC,edg4DD,MAAA,ach4DC,edm4DD,MAAA,Icn4DC,eds4DD,MAAA,act4DC,edy4DD,MAAA,acz4DC,ed44DD,MAAA,Ic54DC,ed+4DD,MAAA,ac14DC,ed64DD,MAAA,Yc55DC,ed+5DD,MAAA,Kc/5DC,gBdk6DD,KAAA,Kcl6DC,gBdq6DD,KAAA,acr6DC,gBdw6DD,KAAA,acx6DC,ed26DD,KAAA,Ic36DC,ed86DD,KAAA,ac96DC,edi7DD,KAAA,acj7DC,edo7DD,KAAA,Icp7DC,edu7DD,KAAA,acv7DC,ed07DD,KAAA,ac17DC,ed67DD,KAAA,Ic77DC,edg8DD,KAAA,ac37DC,ed87DD,KAAA,Yc/6DC,edk7DD,KAAA,Kcl7DC,kBdq7DD,YAAA,Kcr7DC,kBdw7DD,YAAA,acx7DC,kBd27DD,YAAA,ac37DC,iBd87DD,YAAA,Ic97DC,iBdi8DD,YAAA,acj8DC,iBdo8DD,YAAA,acp8DC,iBdu8DD,YAAA,Icv8DC,iBd08DD,YAAA,ac18DC,iBd68DD,YAAA,ac78DC,iBdg9DD,YAAA,Ich9DC,iBdm9DD,YAAA,acn9DC,iBds9DD,YAAA,YY18DD,iBE9CE,YAAA,GAQF,0BACE,UAAA,WAAA,WAAA,WAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,UAAA,Udu/DD,MAAA,Kcv/DC,Wd0/DD,MAAA,Kc1/DC,Wd6/DD,MAAA,ac7/DC,WdggED,MAAA,achgEC,UdmgED,MAAA,IcngEC,UdsgED,MAAA,actgEC,UdygED,MAAA,aczgEC,Ud4gED,MAAA,Ic5gEC,Ud+gED,MAAA,ac/gEC,UdkhED,MAAA,aclhEC,UdqhED,MAAA,IcrhEC,UdwhED,MAAA,aczgEC,Ud4gED,MAAA,Yc5gEC,gBd+gED,MAAA,Kc/gEC,gBdkhED,MAAA,aclhEC,gBdqhED,MAAA,acrhEC,edwhED,MAAA,IcxhEC,ed2hED,MAAA,ac3hEC,ed8hED,MAAA,ac9hEC,ediiED,MAAA,IcjiEC,edoiED,MAAA,acpiEC,eduiED,MAAA,acviEC,ed0iED,MAAA,Ic1iEC,ed6iED,MAAA,acxiEC,ed2iED,MAAA,Yc1jEC,ed6jED,MAAA,Kc7jEC,gBdgkED,KAAA,KchkEC,gBdmkED,KAAA,acnkEC,gBdskED,KAAA,actkEC,edykED,KAAA,IczkEC,ed4kED,KAAA,ac5kEC,ed+kED,KAAA,ac/kEC,edklED,KAAA,IcllEC,edqlED,KAAA,acrlEC,edwlED,KAAA,acxlEC,ed2lED,KAAA,Ic3lEC,ed8lED,KAAA,aczlEC,ed4lED,KAAA,Yc7kEC,e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pC,cAGA,ejB8DA,wBACQ,OAAA,YJ65FT,OAAA,kBmB56FG,mBAAA,KlBw7FM,WAAY,KkBt7FhB,QAAA,IASN,eC3DE,yBACA,eAAA,KpBo+FD,aoBj+FC,MAAA,KnB6+FA,iBAAkB,KmB3+FhB,aAAA,KpBq+FH,mBoBn+FO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBo+FH,mBoBj+FC,MAAA,KnB6+FA,iBAAkB,QAClB,aAAc,QmBz+FR,oBADJ,oBpBo+FH,mCoBj+FG,MAAA,KnB6+FF,iBAAkB,QAClB,aAAc,QmBz+FN,0BnB++FV,0BAHA,0BmB7+FM,0BnB++FN,0BAHA,0BDFC,yCoB3+FK,yCnB++FN,yCmB1+FE,MAAA,KnBk/FA,iBAAkB,QAClB,aAAc,QmB3+FZ,oBpBm+FH,oBoBn+FG,mCnBg/FF,iBAAkB,KmB5+FV,4BnBi/FV,4BAHA,4BDHC,6BCOD,6BAHA,6BkB99FA,sCClBM,sCnBi/FN,sCmB3+FI,iBAAA,KACA,aAAA,KDcJ,oBC9DE,MAAA,KACA,iBAAA,KpB6hGD,aoB1hGC,MAAA,KnBsiGA,iBAAkB,QmBpiGhB,aAAA,QpB8hGH,mBoB5hGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB6hGH,mBoB1hGC,MAAA,KnBsiGA,iBAAkB,QAClB,aAAc,QmBliGR,oBADJ,oBpB6hGH,mCoB1hGG,MAAA,KnBsiGF,iBAAkB,QAClB,aAAc,QmBliGN,0BnBwiGV,0BAHA,0BmBtiGM,0BnBwiGN,0BAHA,0BDFC,yCoBpiGK,yCnBwiGN,yCmBniGE,MAAA,KnB2iGA,iBAAkB,QAClB,aAAc,QmBpiGZ,oBpB4hGH,oBoB5hGG,mCnByiGF,iBAAkB,KmBriGV,4BnB0iGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBphGA,sCCrBM,sCnB0iGN,sCmBpiGI,iBAAA,QACA,aAAA,QDkBJ,oBClEE,MAAA,QACA,iBAAA,KpBslGD,aoBnlGC,MAAA,KnB+lGA,iBAAkB,QmB7lGhB,aAAA,QpBulGH,mBoBrlGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBslGH,mBoBnlGC,MAAA,KnB+lGA,iBAAkB,QAClB,aAAc,QmB3lGR,oBADJ,oBpBslGH,mCoBnlGG,MAAA,KnB+lGF,iBAAkB,QAClB,aAAc,QmB3lGN,0BnBimGV,0BAHA,0BmB/lGM,0BnBimGN,0BAHA,0BDFC,yCoB7lGK,yCnBimGN,yCmB5lGE,MAAA,KnBomGA,iBAAkB,QAClB,aAAc,QmB7lGZ,oBpBqlGH,oBoBrlGG,mCnBkmGF,iBAAkB,KmB9lGV,4BnBmmGV,4BAHA,4BDHC,6BCOD,6BAHA,6BkBzkGA,sCCzBM,sCnBmmGN,sCmB7lGI,iBAAA,QACA,aAAA,QDsBJ,oBCtEE,MAAA,QACA,iBAAA,KpB+oGD,UoB5oGC,MAAA,KnBwpGA,iBAAkB,QmBtpGhB,aAAA,QpBgpGH,gBoB9oGO,gBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpB+oGH,gBoB5oGC,MAAA,KnBwpGA,iBAAkB,QAClB,aAAc,QmBppGR,iBADJ,iBpB+oGH,gCoB5oGG,MAAA,KnBwpGF,iBAAkB,QAClB,aAAc,QmBppGN,uBnB0pGV,uBAHA,uBmBxpGM,uBnB0pGN,uBAHA,uBDFC,sCoBtpGK,sCnB0pGN,sCmBrpGE,MAAA,KnB6pGA,iBAAkB,QAClB,aAAc,QmBtpGZ,iBpB8oGH,iBoB9oGG,gCnB2pGF,iBAAkB,KmBvpGV,yBnB4pGV,yBAHA,yBDHC,0BCOD,0BAHA,0BkB9nGA,mCC7BM,mCnB4pGN,mCmBtpGI,iBAAA,QACA,aAAA,QD0BJ,iBC1EE,MAAA,QACA,iBAAA,KpBwsGD,aoBrsGC,MAAA,KnBitGA,iBAAkB,QmB/sGhB,aAAA,QpBysGH,mBoBvsGO,mBAEN,MAAA,KACE,iBAAA,QACA,aAAA,QpBwsGH,mBoBrsGC,MAAA,KnBitGA,iBAAkB,QAClB,aAAc,QmB7sGR,oBADJ,oBpBwsGH,mCoBrsGG,MAAA,KnBitGF,iBAAkB,QAClB,aAAc,QmB7sGN,0BnBmtGV,0BAHA,0BmBjtGM,0BnBmtGN,0BAHA,0BDFC,yCoB/sGK,yCnBmtGN,yCmB9sGE,MAAA,KnBstGA,iBAAkB,QAClB,aAAc,QmB/sGZ,oBpBusGH,oBoBvsGG,mCnBotGF,iBAAkB,KmBh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mBAKJ,qBAEE,MAAA,QvBvCA,cACC,QAAA,KAAA,K3By0KF,iBAAA,QkDxxKC,WAAY,IAAI,MAAM,KjDozKtB,2BAA4B,IiDjzK1B,0BAAA,IAHJ,mBAAA,mCAMM,cAAA,ElD2xKL,oCkDtxKG,oDjDkzKF,aAAc,IAAI,EiDhzKZ,cAAA,EvBtEL,4D3Bg2KF,4EkDpxKG,WAAA,EjDgzKF,uBAAwB,IiD9yKlB,wBAAA,IvBtEL,0D3B81KF,0EkD7yKC,cAAe,EvB1Df,2BAAA,IACC,0BAAA,IuB0FH,+EAEI,uBAAA,ElDixKH,wBAAA,EkD7wKC,wDlDgxKD,iBAAA,EC4BD,0BACE,iBAAkB,EiDryKpB,8BlD6wKC,ckD7wKD,gCjD0yKE,cAAe,EiD1yKjB,sCAQM,sBlD2wKL,wCC4BC,cAAe,K0Bx5Kf,aAAA,KuByGF,wDlDwxKC,0BC4BC,uBAAwB,IACxB,wBAAyB,IiDrzK3B,yFAoBQ,yFlD2wKP,2DkD5wKO,2DjDwyKN,uBAAwB,IACxB,wBAAyB,IAK3B,wGiDj0KA,wGjD+zKA,wGDtBC,wGCuBD,0EiDh0KA,0EjD8zKA,0EiDtyKU,0EjD8yKR,uBAAwB,IAK1B,uGiD30KA,uGjDy0KA,uGDtBC,uGCuBD,yEiD10KA,yEjDw0KA,yEiD5yKU,yEvB7HR,wBAAA,IuBiGF,sDlDwzKC,yBC4BC,2BAA4B,IAC5B,0BAA2B,IiD3yKrB,qFA1CR,qFAyCQ,wDlDsxKP,wDC4BC,2BAA4B,IAC5B,0BAA2B,IAG7B,oGDtBC,oGCwBD,oGiDj2KA,oGjD81KA,uEiDhzKU,uEjDkzKV,uEiDh2KA,uEjDs2KE,0BAA2B,IAG7B,mGDtBC,mGCwBD,mGiD32KA,mGjDw2KA,sEiDtzKU,sEjDwzKV,sEiD12KA,sEjDg3KE,2BAA4B,IiDrzK1B,0BlD8xKH,qCkDz1KD,0BAAA,qCA+DI,WAAA,IAAA,MAAA,KA/DJ,kDAAA,kDAmEI,WAAA,EAnEJ,uBAAA,yCjD83KE,OAAQ,EiDpzKA,+CjDwzKV,+CiDl4KA,+CjDo4KA,+CAEA,+CANA,+CDjBC,iECoBD,iEiDn4KA,iEjDq4KA,iEAEA,iEANA,iEAWE,YAAa,EiD9zKL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1MG,QAAS,oB/Dm2MV,c+Dr2MC,c/Ds2MH,QAAA,sB+Dj2MG,yB/Dq2MD,kBACF,QAAA,iB+Dj2MG,yB/Dq2MD,mBACF,QAAA,kBgEn6MC,yBhEu6MC,yBgEt6MD,QAAA,wBACA,+CAAU,YhE26MT,QAAA,gBC4BD,iB+Dr8MU,QAAA,gBhE86MX,c+Dx2MG,QAAS,oB/D42MV,c+D92MC,c/D+2MH,QAAA,sB+D12MG,+C/D82MD,kBACF,QAAA,iB+D12MG,+C/D82MD,mBACF,QAAA,kBgEj8MC,+ChEq8MC,yBgEp8MD,QAAA,wBACA,gDAAU,YhEy8MT,QAAA,gBC4BD,iB+Dn+MU,QAAA,gBhE48MX,c+Dj3MG,QAAS,oB/Dq3MV,c+Dv3MC,c/Dw3MH,QAAA,sB+Dn3MG,gD/Du3MD,kBACF,QAAA,iB+Dn3MG,gD/Du3MD,mBACF,QAAA,kBgE/9MC,gDhEm+MC,yBgEl+MD,QAAA,wBACA,0BAAU,YhEu+MT,QAAA,gBC4BD,iB+DjgNU,QAAA,gBhE0+MX,c+D13MG,QAAS,oB/D83MV,c+Dh4MC,c/Di4MH,QAAA,sB+D53MG,0B/Dg4MD,kBACF,QAAA,iB+D53MG,0B/Dg4MD,mBACF,QAAA,kBgEr/MC,0BhEy/MC,yBACF,QAAA,wBgE1/MC,yBhE8/MC,WACF,QAAA,gBgE//MC,+ChEmgNC,WACF,QAAA,gBgEpgNC,gDhEwgNC,WACF,QAAA,gBAGA,0B+Dn3MC,WA4BE,QAAS,gBC5LX,eAAU,QAAA,eACV,aAAU,ehE4hNT,QAAA,gBC4BD,oB+DtjNU,QAAA,gBhE+hNX,iB+Dj4MG,QAAS,oBAMX,iB/D83MD,iB+Dz2MG,QAAS,sB/D82MZ,qB+Dl4MC,QAAS,e/Dq4MV,a+D/3MC,qBAcE,QAAS,iB/Ds3MZ,sB+Dn4MC,QAAS,e/Ds4MV,a+Dh4MC,sBAOE,QAAS,kB/D83MZ,4B+D/3MC,QAAS,eCpLT,ahEujNC,4BACF,QAAA,wBC6BD,aACE,cACE,QAAS"} \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.eot b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.eot new file mode 100644 index 0000000..b93a495 Binary files /dev/null and b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.eot differ diff --git a/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.svg b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.svg new file mode 100644 index 0000000..94fb549 --- /dev/null +++ b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.svg @@ -0,0 +1,288 @@ +<?xml version="1.0" standalone="no"?> +<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd" > +<svg xmlns="http://www.w3.org/2000/svg"> +<metadata></metadata> +<defs> +<font id="glyphicons_halflingsregular" horiz-adv-x="1200" > +<font-face units-per-em="1200" ascent="960" descent="-240" /> +<missing-glyph horiz-adv-x="500" /> +<glyph horiz-adv-x="0" /> +<glyph horiz-adv-x="400" /> +<glyph unicode=" " /> +<glyph unicode="*" d="M600 1100q15 0 34 -1.5t30 -3.5l11 -1q10 -2 17.5 -10.5t7.5 -18.5v-224l158 158q7 7 18 8t19 -6l106 -106q7 -8 6 -19t-8 -18l-158 -158h224q10 0 18.5 -7.5t10.5 -17.5q6 -41 6 -75q0 -15 -1.5 -34t-3.5 -30l-1 -11q-2 -10 -10.5 -17.5t-18.5 -7.5h-224l158 -158 q7 -7 8 -18t-6 -19l-106 -106q-8 -7 -19 -6t-18 8l-158 158v-224q0 -10 -7.5 -18.5t-17.5 -10.5q-41 -6 -75 -6q-15 0 -34 1.5t-30 3.5l-11 1q-10 2 -17.5 10.5t-7.5 18.5v224l-158 -158q-7 -7 -18 -8t-19 6l-106 106q-7 8 -6 19t8 18l158 158h-224q-10 0 -18.5 7.5 t-10.5 17.5q-6 41 -6 75q0 15 1.5 34t3.5 30l1 11q2 10 10.5 17.5t18.5 7.5h224l-158 158q-7 7 -8 18t6 19l106 106q8 7 19 6t18 -8l158 -158v224q0 10 7.5 18.5t17.5 10.5q41 6 75 6z" /> +<glyph unicode="+" d="M450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-350h350q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-350v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v350h-350q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5 h350v350q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode=" " /> +<glyph unicode="¥" d="M825 1100h250q10 0 12.5 -5t-5.5 -13l-364 -364q-6 -6 -11 -18h268q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-100h275q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-125v-174q0 -11 -7.5 -18.5t-18.5 -7.5h-148q-11 0 -18.5 7.5t-7.5 18.5v174 h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h125v100h-275q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h118q-5 12 -11 18l-364 364q-8 8 -5.5 13t12.5 5h250q25 0 43 -18l164 -164q8 -8 18 -8t18 8l164 164q18 18 43 18z" /> +<glyph unicode=" " horiz-adv-x="650" /> +<glyph unicode=" " horiz-adv-x="1300" /> +<glyph unicode=" " horiz-adv-x="650" /> +<glyph unicode=" " horiz-adv-x="1300" /> +<glyph unicode=" " horiz-adv-x="433" /> +<glyph unicode=" " horiz-adv-x="325" /> +<glyph unicode=" " horiz-adv-x="216" /> +<glyph unicode=" " horiz-adv-x="216" /> +<glyph unicode=" " horiz-adv-x="162" /> +<glyph unicode=" " horiz-adv-x="260" /> +<glyph unicode=" " horiz-adv-x="72" /> +<glyph unicode=" " horiz-adv-x="260" /> +<glyph unicode=" " horiz-adv-x="325" /> +<glyph unicode="€" d="M744 1198q242 0 354 -189q60 -104 66 -209h-181q0 45 -17.5 82.5t-43.5 61.5t-58 40.5t-60.5 24t-51.5 7.5q-19 0 -40.5 -5.5t-49.5 -20.5t-53 -38t-49 -62.5t-39 -89.5h379l-100 -100h-300q-6 -50 -6 -100h406l-100 -100h-300q9 -74 33 -132t52.5 -91t61.5 -54.5t59 -29 t47 -7.5q22 0 50.5 7.5t60.5 24.5t58 41t43.5 61t17.5 80h174q-30 -171 -128 -278q-107 -117 -274 -117q-206 0 -324 158q-36 48 -69 133t-45 204h-217l100 100h112q1 47 6 100h-218l100 100h134q20 87 51 153.5t62 103.5q117 141 297 141z" /> +<glyph unicode="₽" d="M428 1200h350q67 0 120 -13t86 -31t57 -49.5t35 -56.5t17 -64.5t6.5 -60.5t0.5 -57v-16.5v-16.5q0 -36 -0.5 -57t-6.5 -61t-17 -65t-35 -57t-57 -50.5t-86 -31.5t-120 -13h-178l-2 -100h288q10 0 13 -6t-3 -14l-120 -160q-6 -8 -18 -14t-22 -6h-138v-175q0 -11 -5.5 -18 t-15.5 -7h-149q-10 0 -17.5 7.5t-7.5 17.5v175h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v100h-267q-10 0 -13 6t3 14l120 160q6 8 18 14t22 6h117v475q0 10 7.5 17.5t17.5 7.5zM600 1000v-300h203q64 0 86.5 33t22.5 119q0 84 -22.5 116t-86.5 32h-203z" /> +<glyph unicode="−" d="M250 700h800q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="⌛" d="M1000 1200v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-50v-100q0 -91 -49.5 -165.5t-130.5 -109.5q81 -35 130.5 -109.5t49.5 -165.5v-150h50q21 0 35.5 -14.5t14.5 -35.5v-150h-800v150q0 21 14.5 35.5t35.5 14.5h50v150q0 91 49.5 165.5t130.5 109.5q-81 35 -130.5 109.5 t-49.5 165.5v100h-50q-21 0 -35.5 14.5t-14.5 35.5v150h800zM400 1000v-100q0 -60 32.5 -109.5t87.5 -73.5q28 -12 44 -37t16 -55t-16 -55t-44 -37q-55 -24 -87.5 -73.5t-32.5 -109.5v-150h400v150q0 60 -32.5 109.5t-87.5 73.5q-28 12 -44 37t-16 55t16 55t44 37 q55 24 87.5 73.5t32.5 109.5v100h-400z" /> +<glyph unicode="◼" horiz-adv-x="500" d="M0 0z" /> +<glyph unicode="☁" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -206.5q0 -121 -85 -207.5t-205 -86.5h-750q-79 0 -135.5 57t-56.5 137q0 69 42.5 122.5t108.5 67.5q-2 12 -2 37q0 153 108 260.5t260 107.5z" /> +<glyph unicode="⛺" d="M774 1193.5q16 -9.5 20.5 -27t-5.5 -33.5l-136 -187l467 -746h30q20 0 35 -18.5t15 -39.5v-42h-1200v42q0 21 15 39.5t35 18.5h30l468 746l-135 183q-10 16 -5.5 34t20.5 28t34 5.5t28 -20.5l111 -148l112 150q9 16 27 20.5t34 -5zM600 200h377l-182 112l-195 534v-646z " /> +<glyph unicode="✉" d="M25 1100h1150q10 0 12.5 -5t-5.5 -13l-564 -567q-8 -8 -18 -8t-18 8l-564 567q-8 8 -5.5 13t12.5 5zM18 882l264 -264q8 -8 8 -18t-8 -18l-264 -264q-8 -8 -13 -5.5t-5 12.5v550q0 10 5 12.5t13 -5.5zM918 618l264 264q8 8 13 5.5t5 -12.5v-550q0 -10 -5 -12.5t-13 5.5 l-264 264q-8 8 -8 18t8 18zM818 482l364 -364q8 -8 5.5 -13t-12.5 -5h-1150q-10 0 -12.5 5t5.5 13l364 364q8 8 18 8t18 -8l164 -164q8 -8 18 -8t18 8l164 164q8 8 18 8t18 -8z" /> +<glyph unicode="✏" d="M1011 1210q19 0 33 -13l153 -153q13 -14 13 -33t-13 -33l-99 -92l-214 214l95 96q13 14 32 14zM1013 800l-615 -614l-214 214l614 614zM317 96l-333 -112l110 335z" /> +<glyph unicode="" d="M700 650v-550h250q21 0 35.5 -14.5t14.5 -35.5v-50h-800v50q0 21 14.5 35.5t35.5 14.5h250v550l-500 550h1200z" /> +<glyph unicode="" d="M368 1017l645 163q39 15 63 0t24 -49v-831q0 -55 -41.5 -95.5t-111.5 -63.5q-79 -25 -147 -4.5t-86 75t25.5 111.5t122.5 82q72 24 138 8v521l-600 -155v-606q0 -42 -44 -90t-109 -69q-79 -26 -147 -5.5t-86 75.5t25.5 111.5t122.5 82.5q72 24 138 7v639q0 38 14.5 59 t53.5 34z" /> +<glyph unicode="" d="M500 1191q100 0 191 -39t156.5 -104.5t104.5 -156.5t39 -191l-1 -2l1 -5q0 -141 -78 -262l275 -274q23 -26 22.5 -44.5t-22.5 -42.5l-59 -58q-26 -20 -46.5 -20t-39.5 20l-275 274q-119 -77 -261 -77l-5 1l-2 -1q-100 0 -191 39t-156.5 104.5t-104.5 156.5t-39 191 t39 191t104.5 156.5t156.5 104.5t191 39zM500 1022q-88 0 -162 -43t-117 -117t-43 -162t43 -162t117 -117t162 -43t162 43t117 117t43 162t-43 162t-117 117t-162 43z" /> +<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104z" /> +<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429z" /> +<glyph unicode="" d="M407 800l131 353q7 19 17.5 19t17.5 -19l129 -353h421q21 0 24 -8.5t-14 -20.5l-342 -249l130 -401q7 -20 -0.5 -25.5t-24.5 6.5l-343 246l-342 -247q-17 -12 -24.5 -6.5t-0.5 25.5l130 400l-347 251q-17 12 -14 20.5t23 8.5h429zM477 700h-240l197 -142l-74 -226 l193 139l195 -140l-74 229l192 140h-234l-78 211z" /> +<glyph unicode="" d="M600 1200q124 0 212 -88t88 -212v-250q0 -46 -31 -98t-69 -52v-75q0 -10 6 -21.5t15 -17.5l358 -230q9 -5 15 -16.5t6 -21.5v-93q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v93q0 10 6 21.5t15 16.5l358 230q9 6 15 17.5t6 21.5v75q-38 0 -69 52 t-31 98v250q0 124 88 212t212 88z" /> +<glyph unicode="" d="M25 1100h1150q10 0 17.5 -7.5t7.5 -17.5v-1050q0 -10 -7.5 -17.5t-17.5 -7.5h-1150q-10 0 -17.5 7.5t-7.5 17.5v1050q0 10 7.5 17.5t17.5 7.5zM100 1000v-100h100v100h-100zM875 1000h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5t17.5 -7.5h550 q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM1000 1000v-100h100v100h-100zM100 800v-100h100v100h-100zM1000 800v-100h100v100h-100zM100 600v-100h100v100h-100zM1000 600v-100h100v100h-100zM875 500h-550q-10 0 -17.5 -7.5t-7.5 -17.5v-350q0 -10 7.5 -17.5 t17.5 -7.5h550q10 0 17.5 7.5t7.5 17.5v350q0 10 -7.5 17.5t-17.5 7.5zM100 400v-100h100v100h-100zM1000 400v-100h100v100h-100zM100 200v-100h100v100h-100zM1000 200v-100h100v100h-100z" /> +<glyph unicode="" d="M50 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM50 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM650 500h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM850 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 700h200q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h200 q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM850 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5 t35.5 14.5z" /> +<glyph unicode="" d="M50 1100h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 1100h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200 q0 21 14.5 35.5t35.5 14.5zM50 700h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 700h700q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-700 q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM50 300h200q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5zM450 300h700q21 0 35.5 -14.5t14.5 -35.5v-200 q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M465 477l571 571q8 8 18 8t17 -8l177 -177q8 -7 8 -17t-8 -18l-783 -784q-7 -8 -17.5 -8t-17.5 8l-384 384q-8 8 -8 18t8 17l177 177q7 8 17 8t18 -8l171 -171q7 -7 18 -7t18 7z" /> +<glyph unicode="" d="M904 1083l178 -179q8 -8 8 -18.5t-8 -17.5l-267 -268l267 -268q8 -7 8 -17.5t-8 -18.5l-178 -178q-8 -8 -18.5 -8t-17.5 8l-268 267l-268 -267q-7 -8 -17.5 -8t-18.5 8l-178 178q-8 8 -8 18.5t8 17.5l267 268l-267 268q-8 7 -8 17.5t8 18.5l178 178q8 8 18.5 8t17.5 -8 l268 -267l268 268q7 7 17.5 7t18.5 -7z" /> +<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM425 900h150q10 0 17.5 -7.5t7.5 -17.5v-75h75q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5 t-17.5 -7.5h-75v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-75q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v75q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M507 1177q98 0 187.5 -38.5t154.5 -103.5t103.5 -154.5t38.5 -187.5q0 -141 -78 -262l300 -299q8 -8 8 -18.5t-8 -18.5l-109 -108q-7 -8 -17.5 -8t-18.5 8l-300 299q-119 -77 -261 -77q-98 0 -188 38.5t-154.5 103t-103 154.5t-38.5 188t38.5 187.5t103 154.5 t154.5 103.5t188 38.5zM506.5 1023q-89.5 0 -165.5 -44t-120 -120.5t-44 -166t44 -165.5t120 -120t165.5 -44t166 44t120.5 120t44 165.5t-44 166t-120.5 120.5t-166 44zM325 800h350q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-350q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M550 1200h100q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM800 975v166q167 -62 272 -209.5t105 -331.5q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5 t-184.5 123t-123 184.5t-45.5 224q0 184 105 331.5t272 209.5v-166q-103 -55 -165 -155t-62 -220q0 -116 57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5q0 120 -62 220t-165 155z" /> +<glyph unicode="" d="M1025 1200h150q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM725 800h150q10 0 17.5 -7.5t7.5 -17.5v-750q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v750 q0 10 7.5 17.5t17.5 7.5zM425 500h150q10 0 17.5 -7.5t7.5 -17.5v-450q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v450q0 10 7.5 17.5t17.5 7.5zM125 300h150q10 0 17.5 -7.5t7.5 -17.5v-250q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5 v250q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M600 1174q33 0 74 -5l38 -152l5 -1q49 -14 94 -39l5 -2l134 80q61 -48 104 -105l-80 -134l3 -5q25 -44 39 -93l1 -6l152 -38q5 -43 5 -73q0 -34 -5 -74l-152 -38l-1 -6q-15 -49 -39 -93l-3 -5l80 -134q-48 -61 -104 -105l-134 81l-5 -3q-44 -25 -94 -39l-5 -2l-38 -151 q-43 -5 -74 -5q-33 0 -74 5l-38 151l-5 2q-49 14 -94 39l-5 3l-134 -81q-60 48 -104 105l80 134l-3 5q-25 45 -38 93l-2 6l-151 38q-6 42 -6 74q0 33 6 73l151 38l2 6q13 48 38 93l3 5l-80 134q47 61 105 105l133 -80l5 2q45 25 94 39l5 1l38 152q43 5 74 5zM600 815 q-89 0 -152 -63t-63 -151.5t63 -151.5t152 -63t152 63t63 151.5t-63 151.5t-152 63z" /> +<glyph unicode="" d="M500 1300h300q41 0 70.5 -29.5t29.5 -70.5v-100h275q10 0 17.5 -7.5t7.5 -17.5v-75h-1100v75q0 10 7.5 17.5t17.5 7.5h275v100q0 41 29.5 70.5t70.5 29.5zM500 1200v-100h300v100h-300zM1100 900v-800q0 -41 -29.5 -70.5t-70.5 -29.5h-700q-41 0 -70.5 29.5t-29.5 70.5 v800h900zM300 800v-700h100v700h-100zM500 800v-700h100v700h-100zM700 800v-700h100v700h-100zM900 800v-700h100v700h-100z" /> +<glyph unicode="" d="M18 618l620 608q8 7 18.5 7t17.5 -7l608 -608q8 -8 5.5 -13t-12.5 -5h-175v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v375h-300v-375q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v575h-175q-10 0 -12.5 5t5.5 13z" /> +<glyph unicode="" d="M600 1200v-400q0 -41 29.5 -70.5t70.5 -29.5h300v-650q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5h450zM1000 800h-250q-21 0 -35.5 14.5t-14.5 35.5v250z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h50q10 0 17.5 -7.5t7.5 -17.5v-275h175q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M1300 0h-538l-41 400h-242l-41 -400h-538l431 1200h209l-21 -300h162l-20 300h208zM515 800l-27 -300h224l-27 300h-170z" /> +<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-450h191q20 0 25.5 -11.5t-7.5 -27.5l-327 -400q-13 -16 -32 -16t-32 16l-327 400q-13 16 -7.5 27.5t25.5 11.5h191v450q0 21 14.5 35.5t35.5 14.5zM1125 400h50q10 0 17.5 -7.5t7.5 -17.5v-350q0 -10 -7.5 -17.5t-17.5 -7.5 h-1050q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h50q10 0 17.5 -7.5t7.5 -17.5v-175h900v175q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM525 900h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -275q-13 -16 -32 -16t-32 16l-223 275q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z " /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM632 914l223 -275q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5l223 275q13 16 32 16 t32 -16z" /> +<glyph unicode="" d="M225 1200h750q10 0 19.5 -7t12.5 -17l186 -652q7 -24 7 -49v-425q0 -12 -4 -27t-9 -17q-12 -6 -37 -6h-1100q-12 0 -27 4t-17 8q-6 13 -6 38l1 425q0 25 7 49l185 652q3 10 12.5 17t19.5 7zM878 1000h-556q-10 0 -19 -7t-11 -18l-87 -450q-2 -11 4 -18t16 -7h150 q10 0 19.5 -7t11.5 -17l38 -152q2 -10 11.5 -17t19.5 -7h250q10 0 19.5 7t11.5 17l38 152q2 10 11.5 17t19.5 7h150q10 0 16 7t4 18l-87 450q-2 11 -11 18t-19 7z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM540 820l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" /> +<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-362q0 -10 -7.5 -17.5t-17.5 -7.5h-362q-11 0 -13 5.5t5 12.5l133 133q-109 76 -238 76q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5h150q0 -117 -45.5 -224 t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117z" /> +<glyph unicode="" d="M947 1060l135 135q7 7 12.5 5t5.5 -13v-361q0 -11 -7.5 -18.5t-18.5 -7.5h-361q-11 0 -13 5.5t5 12.5l134 134q-110 75 -239 75q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5h-150q0 117 45.5 224t123 184.5t184.5 123t224 45.5q192 0 347 -117zM1027 600h150 q0 -117 -45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5q-192 0 -348 118l-134 -134q-7 -8 -12.5 -5.5t-5.5 12.5v360q0 11 7.5 18.5t18.5 7.5h360q10 0 12.5 -5.5t-5.5 -12.5l-133 -133q110 -76 240 -76q116 0 214.5 57t155.5 155.5t57 214.5z" /> +<glyph unicode="" d="M125 1200h1050q10 0 17.5 -7.5t7.5 -17.5v-1150q0 -10 -7.5 -17.5t-17.5 -7.5h-1050q-10 0 -17.5 7.5t-7.5 17.5v1150q0 10 7.5 17.5t17.5 7.5zM1075 1000h-850q-10 0 -17.5 -7.5t-7.5 -17.5v-850q0 -10 7.5 -17.5t17.5 -7.5h850q10 0 17.5 7.5t7.5 17.5v850 q0 10 -7.5 17.5t-17.5 7.5zM325 900h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 900h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 700h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 700h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 500h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 500h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5zM325 300h50q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM525 300h450q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-450q-10 0 -17.5 7.5t-7.5 17.5v50 q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M900 800v200q0 83 -58.5 141.5t-141.5 58.5h-300q-82 0 -141 -59t-59 -141v-200h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h900q41 0 70.5 29.5t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5h-100zM400 800v150q0 21 15 35.5t35 14.5h200 q20 0 35 -14.5t15 -35.5v-150h-300z" /> +<glyph unicode="" d="M125 1100h50q10 0 17.5 -7.5t7.5 -17.5v-1075h-100v1075q0 10 7.5 17.5t17.5 7.5zM1075 1052q4 0 9 -2q16 -6 16 -23v-421q0 -6 -3 -12q-33 -59 -66.5 -99t-65.5 -58t-56.5 -24.5t-52.5 -6.5q-26 0 -57.5 6.5t-52.5 13.5t-60 21q-41 15 -63 22.5t-57.5 15t-65.5 7.5 q-85 0 -160 -57q-7 -5 -15 -5q-6 0 -11 3q-14 7 -14 22v438q22 55 82 98.5t119 46.5q23 2 43 0.5t43 -7t32.5 -8.5t38 -13t32.5 -11q41 -14 63.5 -21t57 -14t63.5 -7q103 0 183 87q7 8 18 8z" /> +<glyph unicode="" d="M600 1175q116 0 227 -49.5t192.5 -131t131 -192.5t49.5 -227v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v300q0 127 -70.5 231.5t-184.5 161.5t-245 57t-245 -57t-184.5 -161.5t-70.5 -231.5v-300q0 -10 -7.5 -17.5t-17.5 -7.5h-50 q-10 0 -17.5 7.5t-7.5 17.5v300q0 116 49.5 227t131 192.5t192.5 131t227 49.5zM220 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460q0 8 6 14t14 6zM820 500h160q8 0 14 -6t6 -14v-460q0 -8 -6 -14t-14 -6h-160q-8 0 -14 6t-6 14v460 q0 8 6 14t14 6z" /> +<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM900 668l120 120q7 7 17 7t17 -7l34 -34q7 -7 7 -17t-7 -17l-120 -120l120 -120q7 -7 7 -17 t-7 -17l-34 -34q-7 -7 -17 -7t-17 7l-120 119l-120 -119q-7 -7 -17 -7t-17 7l-34 34q-7 7 -7 17t7 17l119 120l-119 120q-7 7 -7 17t7 17l34 34q7 8 17 8t17 -8z" /> +<glyph unicode="" d="M321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6 l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238q-6 8 -4.5 18t9.5 17l29 22q7 5 15 5z" /> +<glyph unicode="" d="M967 1004h3q11 -1 17 -10q135 -179 135 -396q0 -105 -34 -206.5t-98 -185.5q-7 -9 -17 -10h-3q-9 0 -16 6l-42 34q-8 6 -9 16t5 18q111 150 111 328q0 90 -29.5 176t-84.5 157q-6 9 -5 19t10 16l42 33q7 5 15 5zM321 814l258 172q9 6 15 2.5t6 -13.5v-750q0 -10 -6 -13.5 t-15 2.5l-258 172q-21 14 -46 14h-250q-10 0 -17.5 7.5t-7.5 17.5v350q0 10 7.5 17.5t17.5 7.5h250q25 0 46 14zM766 900h4q10 -1 16 -10q96 -129 96 -290q0 -154 -90 -281q-6 -9 -17 -10l-3 -1q-9 0 -16 6l-29 23q-7 7 -8.5 16.5t4.5 17.5q72 103 72 229q0 132 -78 238 q-6 8 -4.5 18.5t9.5 16.5l29 22q7 5 15 5z" /> +<glyph unicode="" d="M500 900h100v-100h-100v-100h-400v-100h-100v600h500v-300zM1200 700h-200v-100h200v-200h-300v300h-200v300h-100v200h600v-500zM100 1100v-300h300v300h-300zM800 1100v-300h300v300h-300zM300 900h-100v100h100v-100zM1000 900h-100v100h100v-100zM300 500h200v-500 h-500v500h200v100h100v-100zM800 300h200v-100h-100v-100h-200v100h-100v100h100v200h-200v100h300v-300zM100 400v-300h300v300h-300zM300 200h-100v100h100v-100zM1200 200h-100v100h100v-100zM700 0h-100v100h100v-100zM1200 0h-300v100h300v-100z" /> +<glyph unicode="" d="M100 200h-100v1000h100v-1000zM300 200h-100v1000h100v-1000zM700 200h-200v1000h200v-1000zM900 200h-100v1000h100v-1000zM1200 200h-200v1000h200v-1000zM400 0h-300v100h300v-100zM600 0h-100v91h100v-91zM800 0h-100v91h100v-91zM1100 0h-200v91h200v-91z" /> +<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" /> +<glyph unicode="" d="M500 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-682 682l1 475q0 10 7.5 17.5t17.5 7.5h474zM800 1200l682 -682q8 -8 8 -18t-8 -18l-464 -464q-8 -8 -18 -8t-18 8l-56 56l424 426l-700 700h150zM319.5 1024.5q-29.5 29.5 -71 29.5t-71 -29.5 t-29.5 -71.5t29.5 -71.5t71 -29.5t71 29.5t29.5 71.5t-29.5 71.5z" /> +<glyph unicode="" d="M300 1200h825q75 0 75 -75v-900q0 -25 -18 -43l-64 -64q-8 -8 -13 -5.5t-5 12.5v950q0 10 -7.5 17.5t-17.5 7.5h-700q-25 0 -43 -18l-64 -64q-8 -8 -5.5 -13t12.5 -5h700q10 0 17.5 -7.5t7.5 -17.5v-950q0 -10 -7.5 -17.5t-17.5 -7.5h-850q-10 0 -17.5 7.5t-7.5 17.5v975 q0 25 18 43l139 139q18 18 43 18z" /> +<glyph unicode="" d="M250 1200h800q21 0 35.5 -14.5t14.5 -35.5v-1150l-450 444l-450 -445v1151q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M822 1200h-444q-11 0 -19 -7.5t-9 -17.5l-78 -301q-7 -24 7 -45l57 -108q6 -9 17.5 -15t21.5 -6h450q10 0 21.5 6t17.5 15l62 108q14 21 7 45l-83 301q-1 10 -9 17.5t-19 7.5zM1175 800h-150q-10 0 -21 -6.5t-15 -15.5l-78 -156q-4 -9 -15 -15.5t-21 -6.5h-550 q-10 0 -21 6.5t-15 15.5l-78 156q-4 9 -15 15.5t-21 6.5h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-650q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h750q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5 t7.5 17.5v650q0 10 -7.5 17.5t-17.5 7.5zM850 200h-500q-10 0 -19.5 -7t-11.5 -17l-38 -152q-2 -10 3.5 -17t15.5 -7h600q10 0 15.5 7t3.5 17l-38 152q-2 10 -11.5 17t-19.5 7z" /> +<glyph unicode="" d="M500 1100h200q56 0 102.5 -20.5t72.5 -50t44 -59t25 -50.5l6 -20h150q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5h150q2 8 6.5 21.5t24 48t45 61t72 48t102.5 21.5zM900 800v-100 h100v100h-100zM600 730q-95 0 -162.5 -67.5t-67.5 -162.5t67.5 -162.5t162.5 -67.5t162.5 67.5t67.5 162.5t-67.5 162.5t-162.5 67.5zM600 603q43 0 73 -30t30 -73t-30 -73t-73 -30t-73 30t-30 73t30 73t73 30z" /> +<glyph unicode="" d="M681 1199l385 -998q20 -50 60 -92q18 -19 36.5 -29.5t27.5 -11.5l10 -2v-66h-417v66q53 0 75 43.5t5 88.5l-82 222h-391q-58 -145 -92 -234q-11 -34 -6.5 -57t25.5 -37t46 -20t55 -6v-66h-365v66q56 24 84 52q12 12 25 30.5t20 31.5l7 13l399 1006h93zM416 521h340 l-162 457z" /> +<glyph unicode="" d="M753 641q5 -1 14.5 -4.5t36 -15.5t50.5 -26.5t53.5 -40t50.5 -54.5t35.5 -70t14.5 -87q0 -67 -27.5 -125.5t-71.5 -97.5t-98.5 -66.5t-108.5 -40.5t-102 -13h-500v89q41 7 70.5 32.5t29.5 65.5v827q0 24 -0.5 34t-3.5 24t-8.5 19.5t-17 13.5t-28 12.5t-42.5 11.5v71 l471 -1q57 0 115.5 -20.5t108 -57t80.5 -94t31 -124.5q0 -51 -15.5 -96.5t-38 -74.5t-45 -50.5t-38.5 -30.5zM400 700h139q78 0 130.5 48.5t52.5 122.5q0 41 -8.5 70.5t-29.5 55.5t-62.5 39.5t-103.5 13.5h-118v-350zM400 200h216q80 0 121 50.5t41 130.5q0 90 -62.5 154.5 t-156.5 64.5h-159v-400z" /> +<glyph unicode="" d="M877 1200l2 -57q-83 -19 -116 -45.5t-40 -66.5l-132 -839q-9 -49 13 -69t96 -26v-97h-500v97q186 16 200 98l173 832q3 17 3 30t-1.5 22.5t-9 17.5t-13.5 12.5t-21.5 10t-26 8.5t-33.5 10q-13 3 -19 5v57h425z" /> +<glyph unicode="" d="M1300 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM175 1000h-75v-800h75l-125 -167l-125 167h75v800h-75l125 167z" /> +<glyph unicode="" d="M1100 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-650q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v650h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM1167 50l-167 -125v75h-800v-75l-167 125l167 125v-75h800v75z" /> +<glyph unicode="" d="M50 1100h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M250 1100h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM250 500h700q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-700q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M500 950v100q0 21 14.5 35.5t35.5 14.5h600q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5zM100 650v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000 q-21 0 -35.5 14.5t-14.5 35.5zM300 350v100q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5zM0 50v100q0 21 14.5 35.5t35.5 14.5h1100q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5z" /> +<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 800h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 500h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h1100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 1100h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 800h800q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 500h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 500h800q21 0 35.5 -14.5t14.5 -35.5v-100 q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM350 200h800 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M400 0h-100v1100h100v-1100zM550 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM267 550l-167 -125v75h-200v100h200v75zM550 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM550 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM900 0h-100v1100h100v-1100zM50 800h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM1100 600h200v-100h-200v-75l-167 125l167 125v-75zM50 500h300q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5zM50 200h600 q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-600q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M75 1000h750q31 0 53 -22t22 -53v-650q0 -31 -22 -53t-53 -22h-750q-31 0 -53 22t-22 53v650q0 31 22 53t53 22zM1200 300l-300 300l300 300v-600z" /> +<glyph unicode="" d="M44 1100h1112q18 0 31 -13t13 -31v-1012q0 -18 -13 -31t-31 -13h-1112q-18 0 -31 13t-13 31v1012q0 18 13 31t31 13zM100 1000v-737l247 182l298 -131l-74 156l293 318l236 -288v500h-1000zM342 884q56 0 95 -39t39 -94.5t-39 -95t-95 -39.5t-95 39.5t-39 95t39 94.5 t95 39z" /> +<glyph unicode="" d="M648 1169q117 0 216 -60t156.5 -161t57.5 -218q0 -115 -70 -258q-69 -109 -158 -225.5t-143 -179.5l-54 -62q-9 8 -25.5 24.5t-63.5 67.5t-91 103t-98.5 128t-95.5 148q-60 132 -60 249q0 88 34 169.5t91.5 142t137 96.5t166.5 36zM652.5 974q-91.5 0 -156.5 -65 t-65 -157t65 -156.5t156.5 -64.5t156.5 64.5t65 156.5t-65 157t-156.5 65z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 173v854q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57z" /> +<glyph unicode="" d="M554 1295q21 -72 57.5 -143.5t76 -130t83 -118t82.5 -117t70 -116t49.5 -126t18.5 -136.5q0 -71 -25.5 -135t-68.5 -111t-99 -82t-118.5 -54t-125.5 -23q-84 5 -161.5 34t-139.5 78.5t-99 125t-37 164.5q0 69 18 136.5t49.5 126.5t69.5 116.5t81.5 117.5t83.5 119 t76.5 131t58.5 143zM344 710q-23 -33 -43.5 -70.5t-40.5 -102.5t-17 -123q1 -37 14.5 -69.5t30 -52t41 -37t38.5 -24.5t33 -15q21 -7 32 -1t13 22l6 34q2 10 -2.5 22t-13.5 19q-5 4 -14 12t-29.5 40.5t-32.5 73.5q-26 89 6 271q2 11 -6 11q-8 1 -15 -10z" /> +<glyph unicode="" d="M1000 1013l108 115q2 1 5 2t13 2t20.5 -1t25 -9.5t28.5 -21.5q22 -22 27 -43t0 -32l-6 -10l-108 -115zM350 1100h400q50 0 105 -13l-187 -187h-368q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v182l200 200v-332 q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM1009 803l-362 -362l-161 -50l55 170l355 355z" /> +<glyph unicode="" d="M350 1100h361q-164 -146 -216 -200h-195q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5l200 153v-103q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M824 1073l339 -301q8 -7 8 -17.5t-8 -17.5l-340 -306q-7 -6 -12.5 -4t-6.5 11v203q-26 1 -54.5 0t-78.5 -7.5t-92 -17.5t-86 -35t-70 -57q10 59 33 108t51.5 81.5t65 58.5t68.5 40.5t67 24.5t56 13.5t40 4.5v210q1 10 6.5 12.5t13.5 -4.5z" /> +<glyph unicode="" d="M350 1100h350q60 0 127 -23l-178 -177h-349q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v69l200 200v-219q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5z M643 639l395 395q7 7 17.5 7t17.5 -7l101 -101q7 -7 7 -17.5t-7 -17.5l-531 -532q-7 -7 -17.5 -7t-17.5 7l-248 248q-7 7 -7 17.5t7 17.5l101 101q7 7 17.5 7t17.5 -7l111 -111q8 -7 18 -7t18 7z" /> +<glyph unicode="" d="M318 918l264 264q8 8 18 8t18 -8l260 -264q7 -8 4.5 -13t-12.5 -5h-170v-200h200v173q0 10 5 12t13 -5l264 -260q8 -7 8 -17.5t-8 -17.5l-264 -265q-8 -7 -13 -5t-5 12v173h-200v-200h170q10 0 12.5 -5t-4.5 -13l-260 -264q-8 -8 -18 -8t-18 8l-264 264q-8 8 -5.5 13 t12.5 5h175v200h-200v-173q0 -10 -5 -12t-13 5l-264 265q-8 7 -8 17.5t8 17.5l264 260q8 7 13 5t5 -12v-173h200v200h-175q-10 0 -12.5 5t5.5 13z" /> +<glyph unicode="" d="M250 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M50 1100h100q21 0 35.5 -14.5t14.5 -35.5v-438l464 453q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5 t-14.5 35.5v1000q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M1200 1050v-1000q0 -21 -10.5 -25t-25.5 10l-464 453v-438q0 -21 -10.5 -25t-25.5 10l-492 480q-15 14 -15 35t15 35l492 480q15 14 25.5 10t10.5 -25v-438l464 453q15 14 25.5 10t10.5 -25z" /> +<glyph unicode="" d="M243 1074l814 -498q18 -11 18 -26t-18 -26l-814 -498q-18 -11 -30.5 -4t-12.5 28v1000q0 21 12.5 28t30.5 -4z" /> +<glyph unicode="" d="M250 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM650 1000h200q21 0 35.5 -14.5t14.5 -35.5v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v800 q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M1100 950v-800q0 -21 -14.5 -35.5t-35.5 -14.5h-800q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5h800q21 0 35.5 -14.5t14.5 -35.5z" /> +<glyph unicode="" d="M500 612v438q0 21 10.5 25t25.5 -10l492 -480q15 -14 15 -35t-15 -35l-492 -480q-15 -14 -25.5 -10t-10.5 25v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10z" /> +<glyph unicode="" d="M1048 1102l100 1q20 0 35 -14.5t15 -35.5l5 -1000q0 -21 -14.5 -35.5t-35.5 -14.5l-100 -1q-21 0 -35.5 14.5t-14.5 35.5l-2 437l-463 -454q-14 -15 -24.5 -10.5t-10.5 25.5l-2 437l-462 -455q-15 -14 -25.5 -9.5t-10.5 24.5l-5 1000q0 21 10.5 25.5t25.5 -10.5l466 -450 l-2 438q0 20 10.5 24.5t25.5 -9.5l466 -451l-2 438q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M850 1100h100q21 0 35.5 -14.5t14.5 -35.5v-1000q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v438l-464 -453q-15 -14 -25.5 -10t-10.5 25v1000q0 21 10.5 25t25.5 -10l464 -453v438q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M686 1081l501 -540q15 -15 10.5 -26t-26.5 -11h-1042q-22 0 -26.5 11t10.5 26l501 540q15 15 36 15t36 -15zM150 400h1000q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M885 900l-352 -353l352 -353l-197 -198l-552 552l552 550z" /> +<glyph unicode="" d="M1064 547l-551 -551l-198 198l353 353l-353 353l198 198z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM650 900h-100q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-150 q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5h150v-150q0 -21 14.5 -35.5t35.5 -14.5h100q21 0 35.5 14.5t14.5 35.5v150h150q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-150v150q0 21 -14.5 35.5t-35.5 14.5z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM850 700h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5 t35.5 -14.5h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM741.5 913q-12.5 0 -21.5 -9l-120 -120l-120 120q-9 9 -21.5 9 t-21.5 -9l-141 -141q-9 -9 -9 -21.5t9 -21.5l120 -120l-120 -120q-9 -9 -9 -21.5t9 -21.5l141 -141q9 -9 21.5 -9t21.5 9l120 120l120 -120q9 -9 21.5 -9t21.5 9l141 141q9 9 9 21.5t-9 21.5l-120 120l120 120q9 9 9 21.5t-9 21.5l-141 141q-9 9 -21.5 9z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM546 623l-84 85q-7 7 -17.5 7t-18.5 -7l-139 -139q-7 -8 -7 -18t7 -18 l242 -241q7 -8 17.5 -8t17.5 8l375 375q7 7 7 17.5t-7 18.5l-139 139q-7 7 -17.5 7t-17.5 -7z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM588 941q-29 0 -59 -5.5t-63 -20.5t-58 -38.5t-41.5 -63t-16.5 -89.5 q0 -25 20 -25h131q30 -5 35 11q6 20 20.5 28t45.5 8q20 0 31.5 -10.5t11.5 -28.5q0 -23 -7 -34t-26 -18q-1 0 -13.5 -4t-19.5 -7.5t-20 -10.5t-22 -17t-18.5 -24t-15.5 -35t-8 -46q-1 -8 5.5 -16.5t20.5 -8.5h173q7 0 22 8t35 28t37.5 48t29.5 74t12 100q0 47 -17 83 t-42.5 57t-59.5 34.5t-64 18t-59 4.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM675 1000h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5 t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5zM675 700h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h75v-200h-75q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h350q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5 t-17.5 7.5h-75v275q0 10 -7.5 17.5t-17.5 7.5z" /> +<glyph unicode="" d="M525 1200h150q10 0 17.5 -7.5t7.5 -17.5v-194q103 -27 178.5 -102.5t102.5 -178.5h194q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-194q-27 -103 -102.5 -178.5t-178.5 -102.5v-194q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v194 q-103 27 -178.5 102.5t-102.5 178.5h-194q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h194q27 103 102.5 178.5t178.5 102.5v194q0 10 7.5 17.5t17.5 7.5zM700 893v-168q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v168q-68 -23 -119 -74 t-74 -119h168q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-168q23 -68 74 -119t119 -74v168q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-168q68 23 119 74t74 119h-168q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h168 q-23 68 -74 119t-119 74z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM759 823l64 -64q7 -7 7 -17.5t-7 -17.5l-124 -124l124 -124q7 -7 7 -17.5t-7 -17.5l-64 -64q-7 -7 -17.5 -7t-17.5 7l-124 124l-124 -124q-7 -7 -17.5 -7t-17.5 7l-64 64 q-7 7 -7 17.5t7 17.5l124 124l-124 124q-7 7 -7 17.5t7 17.5l64 64q7 7 17.5 7t17.5 -7l124 -124l124 124q7 7 17.5 7t17.5 -7z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5t57 -214.5 t155.5 -155.5t214.5 -57t214.5 57t155.5 155.5t57 214.5t-57 214.5t-155.5 155.5t-214.5 57zM782 788l106 -106q7 -7 7 -17.5t-7 -17.5l-320 -321q-8 -7 -18 -7t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l197 197q7 7 17.5 7t17.5 -7z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM600 1027q-116 0 -214.5 -57t-155.5 -155.5t-57 -214.5q0 -120 65 -225 l587 587q-105 65 -225 65zM965 819l-584 -584q104 -62 219 -62q116 0 214.5 57t155.5 155.5t57 214.5q0 115 -62 219z" /> +<glyph unicode="" d="M39 582l522 427q16 13 27.5 8t11.5 -26v-291h550q21 0 35.5 -14.5t14.5 -35.5v-200q0 -21 -14.5 -35.5t-35.5 -14.5h-550v-291q0 -21 -11.5 -26t-27.5 8l-522 427q-16 13 -16 32t16 32z" /> +<glyph unicode="" d="M639 1009l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291h-550q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h550v291q0 21 11.5 26t27.5 -8z" /> +<glyph unicode="" d="M682 1161l427 -522q13 -16 8 -27.5t-26 -11.5h-291v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v550h-291q-21 0 -26 11.5t8 27.5l427 522q13 16 32 16t32 -16z" /> +<glyph unicode="" d="M550 1200h200q21 0 35.5 -14.5t14.5 -35.5v-550h291q21 0 26 -11.5t-8 -27.5l-427 -522q-13 -16 -32 -16t-32 16l-427 522q-13 16 -8 27.5t26 11.5h291v550q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M639 1109l522 -427q16 -13 16 -32t-16 -32l-522 -427q-16 -13 -27.5 -8t-11.5 26v291q-94 -2 -182 -20t-170.5 -52t-147 -92.5t-100.5 -135.5q5 105 27 193.5t67.5 167t113 135t167 91.5t225.5 42v262q0 21 11.5 26t27.5 -8z" /> +<glyph unicode="" d="M850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5zM350 0h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249 q8 7 18 7t18 -7l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5z" /> +<glyph unicode="" d="M1014 1120l106 -106q7 -8 7 -18t-7 -18l-249 -249l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l249 249q8 7 18 7t18 -7zM250 600h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-249 -249q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l249 249l-94 94q-14 14 -10 24.5t25 10.5z" /> +<glyph unicode="" d="M600 1177q117 0 224 -45.5t184.5 -123t123 -184.5t45.5 -224t-45.5 -224t-123 -184.5t-184.5 -123t-224 -45.5t-224 45.5t-184.5 123t-123 184.5t-45.5 224t45.5 224t123 184.5t184.5 123t224 45.5zM704 900h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5 t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM675 400h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5z" /> +<glyph unicode="" d="M260 1200q9 0 19 -2t15 -4l5 -2q22 -10 44 -23l196 -118q21 -13 36 -24q29 -21 37 -12q11 13 49 35l196 118q22 13 45 23q17 7 38 7q23 0 47 -16.5t37 -33.5l13 -16q14 -21 18 -45l25 -123l8 -44q1 -9 8.5 -14.5t17.5 -5.5h61q10 0 17.5 -7.5t7.5 -17.5v-50 q0 -10 -7.5 -17.5t-17.5 -7.5h-50q-10 0 -17.5 -7.5t-7.5 -17.5v-175h-400v300h-200v-300h-400v175q0 10 -7.5 17.5t-17.5 7.5h-50q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5h61q11 0 18 3t7 8q0 4 9 52l25 128q5 25 19 45q2 3 5 7t13.5 15t21.5 19.5t26.5 15.5 t29.5 7zM915 1079l-166 -162q-7 -7 -5 -12t12 -5h219q10 0 15 7t2 17l-51 149q-3 10 -11 12t-15 -6zM463 917l-177 157q-8 7 -16 5t-11 -12l-51 -143q-3 -10 2 -17t15 -7h231q11 0 12.5 5t-5.5 12zM500 0h-375q-10 0 -17.5 7.5t-7.5 17.5v375h400v-400zM1100 400v-375 q0 -10 -7.5 -17.5t-17.5 -7.5h-375v400h400z" /> +<glyph unicode="" d="M1165 1190q8 3 21 -6.5t13 -17.5q-2 -178 -24.5 -323.5t-55.5 -245.5t-87 -174.5t-102.5 -118.5t-118 -68.5t-118.5 -33t-120 -4.5t-105 9.5t-90 16.5q-61 12 -78 11q-4 1 -12.5 0t-34 -14.5t-52.5 -40.5l-153 -153q-26 -24 -37 -14.5t-11 43.5q0 64 42 102q8 8 50.5 45 t66.5 58q19 17 35 47t13 61q-9 55 -10 102.5t7 111t37 130t78 129.5q39 51 80 88t89.5 63.5t94.5 45t113.5 36t129 31t157.5 37t182 47.5zM1116 1098q-8 9 -22.5 -3t-45.5 -50q-38 -47 -119 -103.5t-142 -89.5l-62 -33q-56 -30 -102 -57t-104 -68t-102.5 -80.5t-85.5 -91 t-64 -104.5q-24 -56 -31 -86t2 -32t31.5 17.5t55.5 59.5q25 30 94 75.5t125.5 77.5t147.5 81q70 37 118.5 69t102 79.5t99 111t86.5 148.5q22 50 24 60t-6 19z" /> +<glyph unicode="" d="M653 1231q-39 -67 -54.5 -131t-10.5 -114.5t24.5 -96.5t47.5 -80t63.5 -62.5t68.5 -46.5t65 -30q-4 7 -17.5 35t-18.5 39.5t-17 39.5t-17 43t-13 42t-9.5 44.5t-2 42t4 43t13.5 39t23 38.5q96 -42 165 -107.5t105 -138t52 -156t13 -159t-19 -149.5q-13 -55 -44 -106.5 t-68 -87t-78.5 -64.5t-72.5 -45t-53 -22q-72 -22 -127 -11q-31 6 -13 19q6 3 17 7q13 5 32.5 21t41 44t38.5 63.5t21.5 81.5t-6.5 94.5t-50 107t-104 115.5q10 -104 -0.5 -189t-37 -140.5t-65 -93t-84 -52t-93.5 -11t-95 24.5q-80 36 -131.5 114t-53.5 171q-2 23 0 49.5 t4.5 52.5t13.5 56t27.5 60t46 64.5t69.5 68.5q-8 -53 -5 -102.5t17.5 -90t34 -68.5t44.5 -39t49 -2q31 13 38.5 36t-4.5 55t-29 64.5t-36 75t-26 75.5q-15 85 2 161.5t53.5 128.5t85.5 92.5t93.5 61t81.5 25.5z" /> +<glyph unicode="" d="M600 1094q82 0 160.5 -22.5t140 -59t116.5 -82.5t94.5 -95t68 -95t42.5 -82.5t14 -57.5t-14 -57.5t-43 -82.5t-68.5 -95t-94.5 -95t-116.5 -82.5t-140 -59t-159.5 -22.5t-159.5 22.5t-140 59t-116.5 82.5t-94.5 95t-68.5 95t-43 82.5t-14 57.5t14 57.5t42.5 82.5t68 95 t94.5 95t116.5 82.5t140 59t160.5 22.5zM888 829q-15 15 -18 12t5 -22q25 -57 25 -119q0 -124 -88 -212t-212 -88t-212 88t-88 212q0 59 23 114q8 19 4.5 22t-17.5 -12q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q22 -36 47 -71t70 -82t92.5 -81t113 -58.5t133.5 -24.5 t133.5 24t113 58.5t92.5 81.5t70 81.5t47 70.5q11 18 9 42.5t-14 41.5q-90 117 -163 189zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l35 34q14 15 12.5 33.5t-16.5 33.5q-44 44 -89 117q-11 18 -28 20t-32 -12z" /> +<glyph unicode="" d="M592 0h-148l31 120q-91 20 -175.5 68.5t-143.5 106.5t-103.5 119t-66.5 110t-22 76q0 21 14 57.5t42.5 82.5t68 95t94.5 95t116.5 82.5t140 59t160.5 22.5q61 0 126 -15l32 121h148zM944 770l47 181q108 -85 176.5 -192t68.5 -159q0 -26 -19.5 -71t-59.5 -102t-93 -112 t-129 -104.5t-158 -75.5l46 173q77 49 136 117t97 131q11 18 9 42.5t-14 41.5q-54 70 -107 130zM310 824q-70 -69 -160 -184q-13 -16 -15 -40.5t9 -42.5q18 -30 39 -60t57 -70.5t74 -73t90 -61t105 -41.5l41 154q-107 18 -178.5 101.5t-71.5 193.5q0 59 23 114q8 19 4.5 22 t-17.5 -12zM448 727l-35 -36q-15 -15 -19.5 -38.5t4.5 -41.5q37 -68 93 -116q16 -13 38.5 -11t36.5 17l12 11l22 86l-3 4q-44 44 -89 117q-11 18 -28 20t-32 -12z" /> +<glyph unicode="" d="M-90 100l642 1066q20 31 48 28.5t48 -35.5l642 -1056q21 -32 7.5 -67.5t-50.5 -35.5h-1294q-37 0 -50.5 34t7.5 66zM155 200h345v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h345l-445 723zM496 700h208q20 0 32 -14.5t8 -34.5l-58 -252 q-4 -20 -21.5 -34.5t-37.5 -14.5h-54q-20 0 -37.5 14.5t-21.5 34.5l-58 252q-4 20 8 34.5t32 14.5z" /> +<glyph unicode="" d="M650 1200q62 0 106 -44t44 -106v-339l363 -325q15 -14 26 -38.5t11 -44.5v-41q0 -20 -12 -26.5t-29 5.5l-359 249v-263q100 -93 100 -113v-64q0 -21 -13 -29t-32 1l-205 128l-205 -128q-19 -9 -32 -1t-13 29v64q0 20 100 113v263l-359 -249q-17 -12 -29 -5.5t-12 26.5v41 q0 20 11 44.5t26 38.5l363 325v339q0 62 44 106t106 44z" /> +<glyph unicode="" d="M850 1200h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-150h-1100v150q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5h100q21 0 35.5 -14.5t14.5 -35.5v-50h500v50q0 21 14.5 35.5t35.5 14.5zM1100 800v-750q0 -21 -14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v750h1100zM100 600v-100h100v100h-100zM300 600v-100h100v100h-100zM500 600v-100h100v100h-100zM700 600v-100h100v100h-100zM900 600v-100h100v100h-100zM100 400v-100h100v100h-100zM300 400v-100h100v100h-100zM500 400 v-100h100v100h-100zM700 400v-100h100v100h-100zM900 400v-100h100v100h-100zM100 200v-100h100v100h-100zM300 200v-100h100v100h-100zM500 200v-100h100v100h-100zM700 200v-100h100v100h-100zM900 200v-100h100v100h-100z" /> +<glyph unicode="" d="M1135 1165l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-159l-600 -600h-291q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h209l600 600h241v150q0 21 10.5 25t24.5 -10zM522 819l-141 -141l-122 122h-209q-21 0 -35.5 14.5 t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h291zM1135 565l249 -230q15 -14 15 -35t-15 -35l-249 -230q-14 -14 -24.5 -10t-10.5 25v150h-241l-181 181l141 141l122 -122h159v150q0 21 10.5 25t24.5 -10z" /> +<glyph unicode="" d="M100 1100h1000q41 0 70.5 -29.5t29.5 -70.5v-600q0 -41 -29.5 -70.5t-70.5 -29.5h-596l-304 -300v300h-100q-41 0 -70.5 29.5t-29.5 70.5v600q0 41 29.5 70.5t70.5 29.5z" /> +<glyph unicode="" d="M150 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM850 1200h200q21 0 35.5 -14.5t14.5 -35.5v-250h-300v250q0 21 14.5 35.5t35.5 14.5zM1100 800v-300q0 -41 -3 -77.5t-15 -89.5t-32 -96t-58 -89t-89 -77t-129 -51t-174 -20t-174 20 t-129 51t-89 77t-58 89t-32 96t-15 89.5t-3 77.5v300h300v-250v-27v-42.5t1.5 -41t5 -38t10 -35t16.5 -30t25.5 -24.5t35 -19t46.5 -12t60 -4t60 4.5t46.5 12.5t35 19.5t25 25.5t17 30.5t10 35t5 38t2 40.5t-0.5 42v25v250h300z" /> +<glyph unicode="" d="M1100 411l-198 -199l-353 353l-353 -353l-197 199l551 551z" /> +<glyph unicode="" d="M1101 789l-550 -551l-551 551l198 199l353 -353l353 353z" /> +<glyph unicode="" d="M404 1000h746q21 0 35.5 -14.5t14.5 -35.5v-551h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v401h-381zM135 984l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-400h385l215 -200h-750q-21 0 -35.5 14.5 t-14.5 35.5v550h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" /> +<glyph unicode="" d="M56 1200h94q17 0 31 -11t18 -27l38 -162h896q24 0 39 -18.5t10 -42.5l-100 -475q-5 -21 -27 -42.5t-55 -21.5h-633l48 -200h535q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-50q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-300v-50 q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v50h-31q-18 0 -32.5 10t-20.5 19l-5 10l-201 961h-54q-20 0 -35 14.5t-15 35.5t15 35.5t35 14.5z" /> +<glyph unicode="" d="M1200 1000v-100h-1200v100h200q0 41 29.5 70.5t70.5 29.5h300q41 0 70.5 -29.5t29.5 -70.5h500zM0 800h1200v-800h-1200v800z" /> +<glyph unicode="" d="M200 800l-200 -400v600h200q0 41 29.5 70.5t70.5 29.5h300q42 0 71 -29.5t29 -70.5h500v-200h-1000zM1500 700l-300 -700h-1200l300 700h1200z" /> +<glyph unicode="" d="M635 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-601h150q21 0 25 -10.5t-10 -24.5l-230 -249q-14 -15 -35 -15t-35 15l-230 249q-14 14 -10 24.5t25 10.5h150v601h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" /> +<glyph unicode="" d="M936 864l249 -229q14 -15 14 -35.5t-14 -35.5l-249 -229q-15 -15 -25.5 -10.5t-10.5 24.5v151h-600v-151q0 -20 -10.5 -24.5t-25.5 10.5l-249 229q-14 15 -14 35.5t14 35.5l249 229q15 15 25.5 10.5t10.5 -25.5v-149h600v149q0 21 10.5 25.5t25.5 -10.5z" /> +<glyph unicode="" d="M1169 400l-172 732q-5 23 -23 45.5t-38 22.5h-672q-20 0 -38 -20t-23 -41l-172 -739h1138zM1100 300h-1000q-41 0 -70.5 -29.5t-29.5 -70.5v-100q0 -41 29.5 -70.5t70.5 -29.5h1000q41 0 70.5 29.5t29.5 70.5v100q0 41 -29.5 70.5t-70.5 29.5zM800 100v100h100v-100h-100 zM1000 100v100h100v-100h-100z" /> +<glyph unicode="" d="M1150 1100q21 0 35.5 -14.5t14.5 -35.5v-850q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v850q0 21 14.5 35.5t35.5 14.5zM1000 200l-675 200h-38l47 -276q3 -16 -5.5 -20t-29.5 -4h-7h-84q-20 0 -34.5 14t-18.5 35q-55 337 -55 351v250v6q0 16 1 23.5t6.5 14 t17.5 6.5h200l675 250v-850zM0 750v-250q-4 0 -11 0.5t-24 6t-30 15t-24 30t-11 48.5v50q0 26 10.5 46t25 30t29 16t25.5 7z" /> +<glyph unicode="" d="M553 1200h94q20 0 29 -10.5t3 -29.5l-18 -37q83 -19 144 -82.5t76 -140.5l63 -327l118 -173h17q19 0 33 -14.5t14 -35t-13 -40.5t-31 -27q-8 -4 -23 -9.5t-65 -19.5t-103 -25t-132.5 -20t-158.5 -9q-57 0 -115 5t-104 12t-88.5 15.5t-73.5 17.5t-54.5 16t-35.5 12l-11 4 q-18 8 -31 28t-13 40.5t14 35t33 14.5h17l118 173l63 327q15 77 76 140t144 83l-18 32q-6 19 3.5 32t28.5 13zM498 110q50 -6 102 -6q53 0 102 6q-12 -49 -39.5 -79.5t-62.5 -30.5t-63 30.5t-39 79.5z" /> +<glyph unicode="" d="M800 946l224 78l-78 -224l234 -45l-180 -155l180 -155l-234 -45l78 -224l-224 78l-45 -234l-155 180l-155 -180l-45 234l-224 -78l78 224l-234 45l180 155l-180 155l234 45l-78 224l224 -78l45 234l155 -180l155 180z" /> +<glyph unicode="" d="M650 1200h50q40 0 70 -40.5t30 -84.5v-150l-28 -125h328q40 0 70 -40.5t30 -84.5v-100q0 -45 -29 -74l-238 -344q-16 -24 -38 -40.5t-45 -16.5h-250q-7 0 -42 25t-66 50l-31 25h-61q-45 0 -72.5 18t-27.5 57v400q0 36 20 63l145 196l96 198q13 28 37.5 48t51.5 20z M650 1100l-100 -212l-150 -213v-375h100l136 -100h214l250 375v125h-450l50 225v175h-50zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M600 1100h250q23 0 45 -16.5t38 -40.5l238 -344q29 -29 29 -74v-100q0 -44 -30 -84.5t-70 -40.5h-328q28 -118 28 -125v-150q0 -44 -30 -84.5t-70 -40.5h-50q-27 0 -51.5 20t-37.5 48l-96 198l-145 196q-20 27 -20 63v400q0 39 27.5 57t72.5 18h61q124 100 139 100z M50 1000h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM636 1000l-136 -100h-100v-375l150 -213l100 -212h50v175l-50 225h450v125l-250 375h-214z" /> +<glyph unicode="" d="M356 873l363 230q31 16 53 -6l110 -112q13 -13 13.5 -32t-11.5 -34l-84 -121h302q84 0 138 -38t54 -110t-55 -111t-139 -39h-106l-131 -339q-6 -21 -19.5 -41t-28.5 -20h-342q-7 0 -90 81t-83 94v525q0 17 14 35.5t28 28.5zM400 792v-503l100 -89h293l131 339 q6 21 19.5 41t28.5 20h203q21 0 30.5 25t0.5 50t-31 25h-456h-7h-6h-5.5t-6 0.5t-5 1.5t-5 2t-4 2.5t-4 4t-2.5 4.5q-12 25 5 47l146 183l-86 83zM50 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v500 q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M475 1103l366 -230q2 -1 6 -3.5t14 -10.5t18 -16.5t14.5 -20t6.5 -22.5v-525q0 -13 -86 -94t-93 -81h-342q-15 0 -28.5 20t-19.5 41l-131 339h-106q-85 0 -139.5 39t-54.5 111t54 110t138 38h302l-85 121q-11 15 -10.5 34t13.5 32l110 112q22 22 53 6zM370 945l146 -183 q17 -22 5 -47q-2 -2 -3.5 -4.5t-4 -4t-4 -2.5t-5 -2t-5 -1.5t-6 -0.5h-6h-6.5h-6h-475v-100h221q15 0 29 -20t20 -41l130 -339h294l106 89v503l-342 236zM1050 800h100q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5 v500q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M550 1294q72 0 111 -55t39 -139v-106l339 -131q21 -6 41 -19.5t20 -28.5v-342q0 -7 -81 -90t-94 -83h-525q-17 0 -35.5 14t-28.5 28l-9 14l-230 363q-16 31 6 53l112 110q13 13 32 13.5t34 -11.5l121 -84v302q0 84 38 138t110 54zM600 972v203q0 21 -25 30.5t-50 0.5 t-25 -31v-456v-7v-6v-5.5t-0.5 -6t-1.5 -5t-2 -5t-2.5 -4t-4 -4t-4.5 -2.5q-25 -12 -47 5l-183 146l-83 -86l236 -339h503l89 100v293l-339 131q-21 6 -41 19.5t-20 28.5zM450 200h500q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-500 q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M350 1100h500q21 0 35.5 14.5t14.5 35.5v100q0 21 -14.5 35.5t-35.5 14.5h-500q-21 0 -35.5 -14.5t-14.5 -35.5v-100q0 -21 14.5 -35.5t35.5 -14.5zM600 306v-106q0 -84 -39 -139t-111 -55t-110 54t-38 138v302l-121 -84q-15 -12 -34 -11.5t-32 13.5l-112 110 q-22 22 -6 53l230 363q1 2 3.5 6t10.5 13.5t16.5 17t20 13.5t22.5 6h525q13 0 94 -83t81 -90v-342q0 -15 -20 -28.5t-41 -19.5zM308 900l-236 -339l83 -86l183 146q22 17 47 5q2 -1 4.5 -2.5t4 -4t2.5 -4t2 -5t1.5 -5t0.5 -6v-5.5v-6v-7v-456q0 -22 25 -31t50 0.5t25 30.5 v203q0 15 20 28.5t41 19.5l339 131v293l-89 100h-503z" /> +<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM914 632l-275 223q-16 13 -27.5 8t-11.5 -26v-137h-275 q-10 0 -17.5 -7.5t-7.5 -17.5v-150q0 -10 7.5 -17.5t17.5 -7.5h275v-137q0 -21 11.5 -26t27.5 8l275 223q16 13 16 32t-16 32z" /> +<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM561 855l-275 -223q-16 -13 -16 -32t16 -32l275 -223q16 -13 27.5 -8 t11.5 26v137h275q10 0 17.5 7.5t7.5 17.5v150q0 10 -7.5 17.5t-17.5 7.5h-275v137q0 21 -11.5 26t-27.5 -8z" /> +<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM855 639l-223 275q-13 16 -32 16t-32 -16l-223 -275q-13 -16 -8 -27.5 t26 -11.5h137v-275q0 -10 7.5 -17.5t17.5 -7.5h150q10 0 17.5 7.5t7.5 17.5v275h137q21 0 26 11.5t-8 27.5z" /> +<glyph unicode="" d="M600 1178q118 0 225 -45.5t184.5 -123t123 -184.5t45.5 -225t-45.5 -225t-123 -184.5t-184.5 -123t-225 -45.5t-225 45.5t-184.5 123t-123 184.5t-45.5 225t45.5 225t123 184.5t184.5 123t225 45.5zM675 900h-150q-10 0 -17.5 -7.5t-7.5 -17.5v-275h-137q-21 0 -26 -11.5 t8 -27.5l223 -275q13 -16 32 -16t32 16l223 275q13 16 8 27.5t-26 11.5h-137v275q0 10 -7.5 17.5t-17.5 7.5z" /> +<glyph unicode="" d="M600 1176q116 0 222.5 -46t184 -123.5t123.5 -184t46 -222.5t-46 -222.5t-123.5 -184t-184 -123.5t-222.5 -46t-222.5 46t-184 123.5t-123.5 184t-46 222.5t46 222.5t123.5 184t184 123.5t222.5 46zM627 1101q-15 -12 -36.5 -20.5t-35.5 -12t-43 -8t-39 -6.5 q-15 -3 -45.5 0t-45.5 -2q-20 -7 -51.5 -26.5t-34.5 -34.5q-3 -11 6.5 -22.5t8.5 -18.5q-3 -34 -27.5 -91t-29.5 -79q-9 -34 5 -93t8 -87q0 -9 17 -44.5t16 -59.5q12 0 23 -5t23.5 -15t19.5 -14q16 -8 33 -15t40.5 -15t34.5 -12q21 -9 52.5 -32t60 -38t57.5 -11 q7 -15 -3 -34t-22.5 -40t-9.5 -38q13 -21 23 -34.5t27.5 -27.5t36.5 -18q0 -7 -3.5 -16t-3.5 -14t5 -17q104 -2 221 112q30 29 46.5 47t34.5 49t21 63q-13 8 -37 8.5t-36 7.5q-15 7 -49.5 15t-51.5 19q-18 0 -41 -0.5t-43 -1.5t-42 -6.5t-38 -16.5q-51 -35 -66 -12 q-4 1 -3.5 25.5t0.5 25.5q-6 13 -26.5 17.5t-24.5 6.5q1 15 -0.5 30.5t-7 28t-18.5 11.5t-31 -21q-23 -25 -42 4q-19 28 -8 58q6 16 22 22q6 -1 26 -1.5t33.5 -4t19.5 -13.5q7 -12 18 -24t21.5 -20.5t20 -15t15.5 -10.5l5 -3q2 12 7.5 30.5t8 34.5t-0.5 32q-3 18 3.5 29 t18 22.5t15.5 24.5q6 14 10.5 35t8 31t15.5 22.5t34 22.5q-6 18 10 36q8 0 24 -1.5t24.5 -1.5t20 4.5t20.5 15.5q-10 23 -31 42.5t-37.5 29.5t-49 27t-43.5 23q0 1 2 8t3 11.5t1.5 10.5t-1 9.5t-4.5 4.5q31 -13 58.5 -14.5t38.5 2.5l12 5q5 28 -9.5 46t-36.5 24t-50 15 t-41 20q-18 -4 -37 0zM613 994q0 -17 8 -42t17 -45t9 -23q-8 1 -39.5 5.5t-52.5 10t-37 16.5q3 11 16 29.5t16 25.5q10 -10 19 -10t14 6t13.5 14.5t16.5 12.5z" /> +<glyph unicode="" d="M756 1157q164 92 306 -9l-259 -138l145 -232l251 126q6 -89 -34 -156.5t-117 -110.5q-60 -34 -127 -39.5t-126 16.5l-596 -596q-15 -16 -36.5 -16t-36.5 16l-111 110q-15 15 -15 36.5t15 37.5l600 599q-34 101 5.5 201.5t135.5 154.5z" /> +<glyph unicode="" horiz-adv-x="1220" d="M100 1196h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 1096h-200v-100h200v100zM100 796h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 696h-500v-100h500v100zM100 396h1000q41 0 70.5 -29.5t29.5 -70.5v-100q0 -41 -29.5 -70.5t-70.5 -29.5h-1000q-41 0 -70.5 29.5t-29.5 70.5v100q0 41 29.5 70.5t70.5 29.5zM1100 296h-300v-100h300v100z " /> +<glyph unicode="" d="M150 1200h900q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM700 500v-300l-200 -200v500l-350 500h900z" /> +<glyph unicode="" d="M500 1200h200q41 0 70.5 -29.5t29.5 -70.5v-100h300q41 0 70.5 -29.5t29.5 -70.5v-400h-500v100h-200v-100h-500v400q0 41 29.5 70.5t70.5 29.5h300v100q0 41 29.5 70.5t70.5 29.5zM500 1100v-100h200v100h-200zM1200 400v-200q0 -41 -29.5 -70.5t-70.5 -29.5h-1000 q-41 0 -70.5 29.5t-29.5 70.5v200h1200z" /> +<glyph unicode="" d="M50 1200h300q21 0 25 -10.5t-10 -24.5l-94 -94l199 -199q7 -8 7 -18t-7 -18l-106 -106q-8 -7 -18 -7t-18 7l-199 199l-94 -94q-14 -14 -24.5 -10t-10.5 25v300q0 21 14.5 35.5t35.5 14.5zM850 1200h300q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -10.5 -25t-24.5 10l-94 94 l-199 -199q-8 -7 -18 -7t-18 7l-106 106q-7 8 -7 18t7 18l199 199l-94 94q-14 14 -10 24.5t25 10.5zM364 470l106 -106q7 -8 7 -18t-7 -18l-199 -199l94 -94q14 -14 10 -24.5t-25 -10.5h-300q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 10.5 25t24.5 -10l94 -94l199 199 q8 7 18 7t18 -7zM1071 271l94 94q14 14 24.5 10t10.5 -25v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -25 10.5t10 24.5l94 94l-199 199q-7 8 -7 18t7 18l106 106q8 7 18 7t18 -7z" /> +<glyph unicode="" d="M596 1192q121 0 231.5 -47.5t190 -127t127 -190t47.5 -231.5t-47.5 -231.5t-127 -190.5t-190 -127t-231.5 -47t-231.5 47t-190.5 127t-127 190.5t-47 231.5t47 231.5t127 190t190.5 127t231.5 47.5zM596 1010q-112 0 -207.5 -55.5t-151 -151t-55.5 -207.5t55.5 -207.5 t151 -151t207.5 -55.5t207.5 55.5t151 151t55.5 207.5t-55.5 207.5t-151 151t-207.5 55.5zM454.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38.5 -16.5t-38.5 16.5t-16 39t16 38.5t38.5 16zM754.5 905q22.5 0 38.5 -16t16 -38.5t-16 -39t-38 -16.5q-14 0 -29 10l-55 -145 q17 -23 17 -51q0 -36 -25.5 -61.5t-61.5 -25.5t-61.5 25.5t-25.5 61.5q0 32 20.5 56.5t51.5 29.5l122 126l1 1q-9 14 -9 28q0 23 16 39t38.5 16zM345.5 709q22.5 0 38.5 -16t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16zM854.5 709q22.5 0 38.5 -16 t16 -38.5t-16 -38.5t-38.5 -16t-38.5 16t-16 38.5t16 38.5t38.5 16z" /> +<glyph unicode="" d="M546 173l469 470q91 91 99 192q7 98 -52 175.5t-154 94.5q-22 4 -47 4q-34 0 -66.5 -10t-56.5 -23t-55.5 -38t-48 -41.5t-48.5 -47.5q-376 -375 -391 -390q-30 -27 -45 -41.5t-37.5 -41t-32 -46.5t-16 -47.5t-1.5 -56.5q9 -62 53.5 -95t99.5 -33q74 0 125 51l548 548 q36 36 20 75q-7 16 -21.5 26t-32.5 10q-26 0 -50 -23q-13 -12 -39 -38l-341 -338q-15 -15 -35.5 -15.5t-34.5 13.5t-14 34.5t14 34.5q327 333 361 367q35 35 67.5 51.5t78.5 16.5q14 0 29 -1q44 -8 74.5 -35.5t43.5 -68.5q14 -47 2 -96.5t-47 -84.5q-12 -11 -32 -32 t-79.5 -81t-114.5 -115t-124.5 -123.5t-123 -119.5t-96.5 -89t-57 -45q-56 -27 -120 -27q-70 0 -129 32t-93 89q-48 78 -35 173t81 163l511 511q71 72 111 96q91 55 198 55q80 0 152 -33q78 -36 129.5 -103t66.5 -154q17 -93 -11 -183.5t-94 -156.5l-482 -476 q-15 -15 -36 -16t-37 14t-17.5 34t14.5 35z" /> +<glyph unicode="" d="M649 949q48 68 109.5 104t121.5 38.5t118.5 -20t102.5 -64t71 -100.5t27 -123q0 -57 -33.5 -117.5t-94 -124.5t-126.5 -127.5t-150 -152.5t-146 -174q-62 85 -145.5 174t-150 152.5t-126.5 127.5t-93.5 124.5t-33.5 117.5q0 64 28 123t73 100.5t104 64t119 20 t120.5 -38.5t104.5 -104zM896 972q-33 0 -64.5 -19t-56.5 -46t-47.5 -53.5t-43.5 -45.5t-37.5 -19t-36 19t-40 45.5t-43 53.5t-54 46t-65.5 19q-67 0 -122.5 -55.5t-55.5 -132.5q0 -23 13.5 -51t46 -65t57.5 -63t76 -75l22 -22q15 -14 44 -44t50.5 -51t46 -44t41 -35t23 -12 t23.5 12t42.5 36t46 44t52.5 52t44 43q4 4 12 13q43 41 63.5 62t52 55t46 55t26 46t11.5 44q0 79 -53 133.5t-120 54.5z" /> +<glyph unicode="" d="M776.5 1214q93.5 0 159.5 -66l141 -141q66 -66 66 -160q0 -42 -28 -95.5t-62 -87.5l-29 -29q-31 53 -77 99l-18 18l95 95l-247 248l-389 -389l212 -212l-105 -106l-19 18l-141 141q-66 66 -66 159t66 159l283 283q65 66 158.5 66zM600 706l105 105q10 -8 19 -17l141 -141 q66 -66 66 -159t-66 -159l-283 -283q-66 -66 -159 -66t-159 66l-141 141q-66 66 -66 159.5t66 159.5l55 55q29 -55 75 -102l18 -17l-95 -95l247 -248l389 389z" /> +<glyph unicode="" d="M603 1200q85 0 162 -15t127 -38t79 -48t29 -46v-953q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-41 0 -70.5 29.5t-29.5 70.5v953q0 21 30 46.5t81 48t129 37.5t163 15zM300 1000v-700h600v700h-600zM600 254q-43 0 -73.5 -30.5t-30.5 -73.5t30.5 -73.5t73.5 -30.5t73.5 30.5 t30.5 73.5t-30.5 73.5t-73.5 30.5z" /> +<glyph unicode="" d="M902 1185l283 -282q15 -15 15 -36t-14.5 -35.5t-35.5 -14.5t-35 15l-36 35l-279 -267v-300l-212 210l-308 -307l-280 -203l203 280l307 308l-210 212h300l267 279l-35 36q-15 14 -15 35t14.5 35.5t35.5 14.5t35 -15z" /> +<glyph unicode="" d="M700 1248v-78q38 -5 72.5 -14.5t75.5 -31.5t71 -53.5t52 -84t24 -118.5h-159q-4 36 -10.5 59t-21 45t-40 35.5t-64.5 20.5v-307l64 -13q34 -7 64 -16.5t70 -32t67.5 -52.5t47.5 -80t20 -112q0 -139 -89 -224t-244 -97v-77h-100v79q-150 16 -237 103q-40 40 -52.5 93.5 t-15.5 139.5h139q5 -77 48.5 -126t117.5 -65v335l-27 8q-46 14 -79 26.5t-72 36t-63 52t-40 72.5t-16 98q0 70 25 126t67.5 92t94.5 57t110 27v77h100zM600 754v274q-29 -4 -50 -11t-42 -21.5t-31.5 -41.5t-10.5 -65q0 -29 7 -50.5t16.5 -34t28.5 -22.5t31.5 -14t37.5 -10 q9 -3 13 -4zM700 547v-310q22 2 42.5 6.5t45 15.5t41.5 27t29 42t12 59.5t-12.5 59.5t-38 44.5t-53 31t-66.5 24.5z" /> +<glyph unicode="" d="M561 1197q84 0 160.5 -40t123.5 -109.5t47 -147.5h-153q0 40 -19.5 71.5t-49.5 48.5t-59.5 26t-55.5 9q-37 0 -79 -14.5t-62 -35.5q-41 -44 -41 -101q0 -26 13.5 -63t26.5 -61t37 -66q6 -9 9 -14h241v-100h-197q8 -50 -2.5 -115t-31.5 -95q-45 -62 -99 -112 q34 10 83 17.5t71 7.5q32 1 102 -16t104 -17q83 0 136 30l50 -147q-31 -19 -58 -30.5t-55 -15.5t-42 -4.5t-46 -0.5q-23 0 -76 17t-111 32.5t-96 11.5q-39 -3 -82 -16t-67 -25l-23 -11l-55 145q4 3 16 11t15.5 10.5t13 9t15.5 12t14.5 14t17.5 18.5q48 55 54 126.5 t-30 142.5h-221v100h166q-23 47 -44 104q-7 20 -12 41.5t-6 55.5t6 66.5t29.5 70.5t58.5 71q97 88 263 88z" /> +<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM935 1184l230 -249q14 -14 10 -24.5t-25 -10.5h-150v-900h-200v900h-150q-21 0 -25 10.5t10 24.5l230 249q14 15 35 15t35 -15z" /> +<glyph unicode="" d="M1000 700h-100v100h-100v-100h-100v500h300v-500zM400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM801 1100v-200h100v200h-100zM1000 350l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150z " /> +<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 1050l-200 -250h200v-100h-300v150l200 250h-200v100h300v-150zM1000 0h-100v100h-100v-100h-100v500h300v-500zM801 400v-200h100v200h-100z " /> +<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1000 700h-100v400h-100v100h200v-500zM1100 0h-100v100h-200v400h300v-500zM901 400v-200h100v200h-100z" /> +<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1100 700h-100v100h-200v400h300v-500zM901 1100v-200h100v200h-100zM1000 0h-100v400h-100v100h200v-500z" /> +<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM900 1000h-200v200h200v-200zM1000 700h-300v200h300v-200zM1100 400h-400v200h400v-200zM1200 100h-500v200h500v-200z" /> +<glyph unicode="" d="M400 300h150q21 0 25 -11t-10 -25l-230 -250q-14 -15 -35 -15t-35 15l-230 250q-14 14 -10 25t25 11h150v900h200v-900zM1200 1000h-500v200h500v-200zM1100 700h-400v200h400v-200zM1000 400h-300v200h300v-200zM900 100h-200v200h200v-200z" /> +<glyph unicode="" d="M350 1100h400q162 0 256 -93.5t94 -256.5v-400q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5z" /> +<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-163 0 -256.5 92.5t-93.5 257.5v400q0 163 94 256.5t256 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM440 770l253 -190q17 -12 17 -30t-17 -30l-253 -190q-16 -12 -28 -6.5t-12 26.5v400q0 21 12 26.5t28 -6.5z" /> +<glyph unicode="" d="M350 1100h400q163 0 256.5 -94t93.5 -256v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 163 92.5 256.5t257.5 93.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM350 700h400q21 0 26.5 -12t-6.5 -28l-190 -253q-12 -17 -30 -17t-30 17l-190 253q-12 16 -6.5 28t26.5 12z" /> +<glyph unicode="" d="M350 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -163 -92.5 -256.5t-257.5 -93.5h-400q-163 0 -256.5 94t-93.5 256v400q0 165 92.5 257.5t257.5 92.5zM800 900h-500q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5 v500q0 41 -29.5 70.5t-70.5 29.5zM580 693l190 -253q12 -16 6.5 -28t-26.5 -12h-400q-21 0 -26.5 12t6.5 28l190 253q12 17 30 17t30 -17z" /> +<glyph unicode="" d="M550 1100h400q165 0 257.5 -92.5t92.5 -257.5v-400q0 -165 -92.5 -257.5t-257.5 -92.5h-400q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h450q41 0 70.5 29.5t29.5 70.5v500q0 41 -29.5 70.5t-70.5 29.5h-450q-21 0 -35.5 14.5t-14.5 35.5v100 q0 21 14.5 35.5t35.5 14.5zM338 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" /> +<glyph unicode="" d="M793 1182l9 -9q8 -10 5 -27q-3 -11 -79 -225.5t-78 -221.5l300 1q24 0 32.5 -17.5t-5.5 -35.5q-1 0 -133.5 -155t-267 -312.5t-138.5 -162.5q-12 -15 -26 -15h-9l-9 8q-9 11 -4 32q2 9 42 123.5t79 224.5l39 110h-302q-23 0 -31 19q-10 21 6 41q75 86 209.5 237.5 t228 257t98.5 111.5q9 16 25 16h9z" /> +<glyph unicode="" d="M350 1100h400q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-450q-41 0 -70.5 -29.5t-29.5 -70.5v-500q0 -41 29.5 -70.5t70.5 -29.5h450q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400 q0 165 92.5 257.5t257.5 92.5zM938 867l324 -284q16 -14 16 -33t-16 -33l-324 -284q-16 -14 -27 -9t-11 26v150h-250q-21 0 -35.5 14.5t-14.5 35.5v200q0 21 14.5 35.5t35.5 14.5h250v150q0 21 11 26t27 -9z" /> +<glyph unicode="" d="M750 1200h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -10.5 -25t-24.5 10l-109 109l-312 -312q-15 -15 -35.5 -15t-35.5 15l-141 141q-15 15 -15 35.5t15 35.5l312 312l-109 109q-14 14 -10 24.5t25 10.5zM456 900h-156q-41 0 -70.5 -29.5t-29.5 -70.5v-500 q0 -41 29.5 -70.5t70.5 -29.5h500q41 0 70.5 29.5t29.5 70.5v148l200 200v-298q0 -165 -93.5 -257.5t-256.5 -92.5h-400q-165 0 -257.5 92.5t-92.5 257.5v400q0 165 92.5 257.5t257.5 92.5h300z" /> +<glyph unicode="" d="M600 1186q119 0 227.5 -46.5t187 -125t125 -187t46.5 -227.5t-46.5 -227.5t-125 -187t-187 -125t-227.5 -46.5t-227.5 46.5t-187 125t-125 187t-46.5 227.5t46.5 227.5t125 187t187 125t227.5 46.5zM600 1022q-115 0 -212 -56.5t-153.5 -153.5t-56.5 -212t56.5 -212 t153.5 -153.5t212 -56.5t212 56.5t153.5 153.5t56.5 212t-56.5 212t-153.5 153.5t-212 56.5zM600 794q80 0 137 -57t57 -137t-57 -137t-137 -57t-137 57t-57 137t57 137t137 57z" /> +<glyph unicode="" d="M450 1200h200q21 0 35.5 -14.5t14.5 -35.5v-350h245q20 0 25 -11t-9 -26l-383 -426q-14 -15 -33.5 -15t-32.5 15l-379 426q-13 15 -8.5 26t25.5 11h250v350q0 21 14.5 35.5t35.5 14.5zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" /> +<glyph unicode="" d="M583 1182l378 -435q14 -15 9 -31t-26 -16h-244v-250q0 -20 -17 -35t-39 -15h-200q-20 0 -32 14.5t-12 35.5v250h-250q-20 0 -25.5 16.5t8.5 31.5l383 431q14 16 33.5 17t33.5 -14zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5z M900 200v-50h100v50h-100z" /> +<glyph unicode="" d="M396 723l369 369q7 7 17.5 7t17.5 -7l139 -139q7 -8 7 -18.5t-7 -17.5l-525 -525q-7 -8 -17.5 -8t-17.5 8l-292 291q-7 8 -7 18t7 18l139 139q8 7 18.5 7t17.5 -7zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50 h-100z" /> +<glyph unicode="" d="M135 1023l142 142q14 14 35 14t35 -14l77 -77l-212 -212l-77 76q-14 15 -14 36t14 35zM655 855l210 210q14 14 24.5 10t10.5 -25l-2 -599q-1 -20 -15.5 -35t-35.5 -15l-597 -1q-21 0 -25 10.5t10 24.5l208 208l-154 155l212 212zM50 300h1000q21 0 35.5 -14.5t14.5 -35.5 v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" /> +<glyph unicode="" d="M350 1200l599 -2q20 -1 35 -15.5t15 -35.5l1 -597q0 -21 -10.5 -25t-24.5 10l-208 208l-155 -154l-212 212l155 154l-210 210q-14 14 -10 24.5t25 10.5zM524 512l-76 -77q-15 -14 -36 -14t-35 14l-142 142q-14 14 -14 35t14 35l77 77zM50 300h1000q21 0 35.5 -14.5 t14.5 -35.5v-250h-1100v250q0 21 14.5 35.5t35.5 14.5zM900 200v-50h100v50h-100z" /> +<glyph unicode="" d="M1200 103l-483 276l-314 -399v423h-399l1196 796v-1096zM483 424v-230l683 953z" /> +<glyph unicode="" d="M1100 1000v-850q0 -21 -14.5 -35.5t-35.5 -14.5h-150v400h-700v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200z" /> +<glyph unicode="" d="M1100 1000l-2 -149l-299 -299l-95 95q-9 9 -21.5 9t-21.5 -9l-149 -147h-312v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1132 638l106 -106q7 -7 7 -17.5t-7 -17.5l-420 -421q-8 -7 -18 -7 t-18 7l-202 203q-8 7 -8 17.5t8 17.5l106 106q7 8 17.5 8t17.5 -8l79 -79l297 297q7 7 17.5 7t17.5 -7z" /> +<glyph unicode="" d="M1100 1000v-269l-103 -103l-134 134q-15 15 -33.5 16.5t-34.5 -12.5l-266 -266h-329v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM1202 572l70 -70q15 -15 15 -35.5t-15 -35.5l-131 -131 l131 -131q15 -15 15 -35.5t-15 -35.5l-70 -70q-15 -15 -35.5 -15t-35.5 15l-131 131l-131 -131q-15 -15 -35.5 -15t-35.5 15l-70 70q-15 15 -15 35.5t15 35.5l131 131l-131 131q-15 15 -15 35.5t15 35.5l70 70q15 15 35.5 15t35.5 -15l131 -131l131 131q15 15 35.5 15 t35.5 -15z" /> +<glyph unicode="" d="M1100 1000v-300h-350q-21 0 -35.5 -14.5t-14.5 -35.5v-150h-500v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM850 600h100q21 0 35.5 -14.5t14.5 -35.5v-250h150q21 0 25 -10.5t-10 -24.5 l-230 -230q-14 -14 -35 -14t-35 14l-230 230q-14 14 -10 24.5t25 10.5h150v250q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M1100 1000v-400l-165 165q-14 15 -35 15t-35 -15l-263 -265h-402v-400h-150q-21 0 -35.5 14.5t-14.5 35.5v1000q0 20 14.5 35t35.5 15h250v-300h500v300h100zM700 1000h-100v200h100v-200zM935 565l230 -229q14 -15 10 -25.5t-25 -10.5h-150v-250q0 -20 -14.5 -35 t-35.5 -15h-100q-21 0 -35.5 15t-14.5 35v250h-150q-21 0 -25 10.5t10 25.5l230 229q14 15 35 15t35 -15z" /> +<glyph unicode="" d="M50 1100h1100q21 0 35.5 -14.5t14.5 -35.5v-150h-1200v150q0 21 14.5 35.5t35.5 14.5zM1200 800v-550q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v550h1200zM100 500v-200h400v200h-400z" /> +<glyph unicode="" d="M935 1165l248 -230q14 -14 14 -35t-14 -35l-248 -230q-14 -14 -24.5 -10t-10.5 25v150h-400v200h400v150q0 21 10.5 25t24.5 -10zM200 800h-50q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v-200zM400 800h-100v200h100v-200zM18 435l247 230 q14 14 24.5 10t10.5 -25v-150h400v-200h-400v-150q0 -21 -10.5 -25t-24.5 10l-247 230q-15 14 -15 35t15 35zM900 300h-100v200h100v-200zM1000 500h51q20 0 34.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-34.5 -14.5h-51v200z" /> +<glyph unicode="" d="M862 1073l276 116q25 18 43.5 8t18.5 -41v-1106q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v397q-4 1 -11 5t-24 17.5t-30 29t-24 42t-11 56.5v359q0 31 18.5 65t43.5 52zM550 1200q22 0 34.5 -12.5t14.5 -24.5l1 -13v-450q0 -28 -10.5 -59.5 t-25 -56t-29 -45t-25.5 -31.5l-10 -11v-447q0 -21 -14.5 -35.5t-35.5 -14.5h-200q-21 0 -35.5 14.5t-14.5 35.5v447q-4 4 -11 11.5t-24 30.5t-30 46t-24 55t-11 60v450q0 2 0.5 5.5t4 12t8.5 15t14.5 12t22.5 5.5q20 0 32.5 -12.5t14.5 -24.5l3 -13v-350h100v350v5.5t2.5 12 t7 15t15 12t25.5 5.5q23 0 35.5 -12.5t13.5 -24.5l1 -13v-350h100v350q0 2 0.5 5.5t3 12t7 15t15 12t24.5 5.5z" /> +<glyph unicode="" d="M1200 1100v-56q-4 0 -11 -0.5t-24 -3t-30 -7.5t-24 -15t-11 -24v-888q0 -22 25 -34.5t50 -13.5l25 -2v-56h-400v56q75 0 87.5 6.5t12.5 43.5v394h-500v-394q0 -37 12.5 -43.5t87.5 -6.5v-56h-400v56q4 0 11 0.5t24 3t30 7.5t24 15t11 24v888q0 22 -25 34.5t-50 13.5 l-25 2v56h400v-56q-75 0 -87.5 -6.5t-12.5 -43.5v-394h500v394q0 37 -12.5 43.5t-87.5 6.5v56h400z" /> +<glyph unicode="" d="M675 1000h375q21 0 35.5 -14.5t14.5 -35.5v-150h-105l-295 -98v98l-200 200h-400l100 100h375zM100 900h300q41 0 70.5 -29.5t29.5 -70.5v-500q0 -41 -29.5 -70.5t-70.5 -29.5h-300q-41 0 -70.5 29.5t-29.5 70.5v500q0 41 29.5 70.5t70.5 29.5zM100 800v-200h300v200 h-300zM1100 535l-400 -133v163l400 133v-163zM100 500v-200h300v200h-300zM1100 398v-248q0 -21 -14.5 -35.5t-35.5 -14.5h-375l-100 -100h-375l-100 100h400l200 200h105z" /> +<glyph unicode="" d="M17 1007l162 162q17 17 40 14t37 -22l139 -194q14 -20 11 -44.5t-20 -41.5l-119 -118q102 -142 228 -268t267 -227l119 118q17 17 42.5 19t44.5 -12l192 -136q19 -14 22.5 -37.5t-13.5 -40.5l-163 -162q-3 -1 -9.5 -1t-29.5 2t-47.5 6t-62.5 14.5t-77.5 26.5t-90 42.5 t-101.5 60t-111 83t-119 108.5q-74 74 -133.5 150.5t-94.5 138.5t-60 119.5t-34.5 100t-15 74.5t-4.5 48z" /> +<glyph unicode="" d="M600 1100q92 0 175 -10.5t141.5 -27t108.5 -36.5t81.5 -40t53.5 -37t31 -27l9 -10v-200q0 -21 -14.5 -33t-34.5 -9l-202 34q-20 3 -34.5 20t-14.5 38v146q-141 24 -300 24t-300 -24v-146q0 -21 -14.5 -38t-34.5 -20l-202 -34q-20 -3 -34.5 9t-14.5 33v200q3 4 9.5 10.5 t31 26t54 37.5t80.5 39.5t109 37.5t141 26.5t175 10.5zM600 795q56 0 97 -9.5t60 -23.5t30 -28t12 -24l1 -10v-50l365 -303q14 -15 24.5 -40t10.5 -45v-212q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v212q0 20 10.5 45t24.5 40l365 303v50 q0 4 1 10.5t12 23t30 29t60 22.5t97 10z" /> +<glyph unicode="" d="M1100 700l-200 -200h-600l-200 200v500h200v-200h200v200h200v-200h200v200h200v-500zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5 t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M700 1100h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-1000h300v1000q0 41 -29.5 70.5t-70.5 29.5zM1100 800h-100q-41 0 -70.5 -29.5t-29.5 -70.5v-700h300v700q0 41 -29.5 70.5t-70.5 29.5zM400 0h-300v400q0 41 29.5 70.5t70.5 29.5h100q41 0 70.5 -29.5t29.5 -70.5v-400z " /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 300h-100v200h-100v-200h-100v500h100v-200h100v200h100v-500zM900 700v-300l-100 -100h-200v500h200z M700 700v-300h100v300h-100z" /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-300h200v-100h-300v500h300v-100zM900 700h-200v-300h200v-100h-300v500h300v-100z" /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 400l-300 150l300 150v-300zM900 550l-300 -150v300z" /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM900 300h-700v500h700v-500zM800 700h-130q-38 0 -66.5 -43t-28.5 -108t27 -107t68 -42h130v300zM300 700v-300 h130q41 0 68 42t27 107t-28.5 108t-66.5 43h-130z" /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 700h-200v-100h200v-300h-300v100h200v100h-200v300h300v-100zM900 300h-100v400h-100v100h200v-500z M700 300h-100v100h100v-100z" /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM300 700h200v-400h-300v500h100v-100zM900 300h-100v400h-100v100h200v-500zM300 600v-200h100v200h-100z M700 300h-100v100h100v-100z" /> +<glyph unicode="" d="M200 1100h700q124 0 212 -88t88 -212v-500q0 -124 -88 -212t-212 -88h-700q-124 0 -212 88t-88 212v500q0 124 88 212t212 88zM100 900v-700h900v700h-900zM500 500l-199 -200h-100v50l199 200v150h-200v100h300v-300zM900 300h-100v400h-100v100h200v-500zM701 300h-100 v100h100v-100z" /> +<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700h-300v-200h300v-100h-300l-100 100v200l100 100h300v-100z" /> +<glyph unicode="" d="M600 1191q120 0 229.5 -47t188.5 -126t126 -188.5t47 -229.5t-47 -229.5t-126 -188.5t-188.5 -126t-229.5 -47t-229.5 47t-188.5 126t-126 188.5t-47 229.5t47 229.5t126 188.5t188.5 126t229.5 47zM600 1021q-114 0 -211 -56.5t-153.5 -153.5t-56.5 -211t56.5 -211 t153.5 -153.5t211 -56.5t211 56.5t153.5 153.5t56.5 211t-56.5 211t-153.5 153.5t-211 56.5zM800 700v-100l-50 -50l100 -100v-50h-100l-100 100h-150v-100h-100v400h300zM500 700v-100h200v100h-200z" /> +<glyph unicode="" d="M503 1089q110 0 200.5 -59.5t134.5 -156.5q44 14 90 14q120 0 205 -86.5t85 -207t-85 -207t-205 -86.5h-128v250q0 21 -14.5 35.5t-35.5 14.5h-300q-21 0 -35.5 -14.5t-14.5 -35.5v-250h-222q-80 0 -136 57.5t-56 136.5q0 69 43 122.5t108 67.5q-2 19 -2 37q0 100 49 185 t134 134t185 49zM525 500h150q10 0 17.5 -7.5t7.5 -17.5v-275h137q21 0 26 -11.5t-8 -27.5l-223 -244q-13 -16 -32 -16t-32 16l-223 244q-13 16 -8 27.5t26 11.5h137v275q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M502 1089q110 0 201 -59.5t135 -156.5q43 15 89 15q121 0 206 -86.5t86 -206.5q0 -99 -60 -181t-150 -110l-378 360q-13 16 -31.5 16t-31.5 -16l-381 -365h-9q-79 0 -135.5 57.5t-56.5 136.5q0 69 43 122.5t108 67.5q-2 19 -2 38q0 100 49 184.5t133.5 134t184.5 49.5z M632 467l223 -228q13 -16 8 -27.5t-26 -11.5h-137v-275q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v275h-137q-21 0 -26 11.5t8 27.5q199 204 223 228q19 19 31.5 19t32.5 -19z" /> +<glyph unicode="" d="M700 100v100h400l-270 300h170l-270 300h170l-300 333l-300 -333h170l-270 -300h170l-270 -300h400v-100h-50q-21 0 -35.5 -14.5t-14.5 -35.5v-50h400v50q0 21 -14.5 35.5t-35.5 14.5h-50z" /> +<glyph unicode="" d="M600 1179q94 0 167.5 -56.5t99.5 -145.5q89 -6 150.5 -71.5t61.5 -155.5q0 -61 -29.5 -112.5t-79.5 -82.5q9 -29 9 -55q0 -74 -52.5 -126.5t-126.5 -52.5q-55 0 -100 30v-251q21 0 35.5 -14.5t14.5 -35.5v-50h-300v50q0 21 14.5 35.5t35.5 14.5v251q-45 -30 -100 -30 q-74 0 -126.5 52.5t-52.5 126.5q0 18 4 38q-47 21 -75.5 65t-28.5 97q0 74 52.5 126.5t126.5 52.5q5 0 23 -2q0 2 -1 10t-1 13q0 116 81.5 197.5t197.5 81.5z" /> +<glyph unicode="" d="M1010 1010q111 -111 150.5 -260.5t0 -299t-150.5 -260.5q-83 -83 -191.5 -126.5t-218.5 -43.5t-218.5 43.5t-191.5 126.5q-111 111 -150.5 260.5t0 299t150.5 260.5q83 83 191.5 126.5t218.5 43.5t218.5 -43.5t191.5 -126.5zM476 1065q-4 0 -8 -1q-121 -34 -209.5 -122.5 t-122.5 -209.5q-4 -12 2.5 -23t18.5 -14l36 -9q3 -1 7 -1q23 0 29 22q27 96 98 166q70 71 166 98q11 3 17.5 13.5t3.5 22.5l-9 35q-3 13 -14 19q-7 4 -15 4zM512 920q-4 0 -9 -2q-80 -24 -138.5 -82.5t-82.5 -138.5q-4 -13 2 -24t19 -14l34 -9q4 -1 8 -1q22 0 28 21 q18 58 58.5 98.5t97.5 58.5q12 3 18 13.5t3 21.5l-9 35q-3 12 -14 19q-7 4 -15 4zM719.5 719.5q-49.5 49.5 -119.5 49.5t-119.5 -49.5t-49.5 -119.5t49.5 -119.5t119.5 -49.5t119.5 49.5t49.5 119.5t-49.5 119.5zM855 551q-22 0 -28 -21q-18 -58 -58.5 -98.5t-98.5 -57.5 q-11 -4 -17 -14.5t-3 -21.5l9 -35q3 -12 14 -19q7 -4 15 -4q4 0 9 2q80 24 138.5 82.5t82.5 138.5q4 13 -2.5 24t-18.5 14l-34 9q-4 1 -8 1zM1000 515q-23 0 -29 -22q-27 -96 -98 -166q-70 -71 -166 -98q-11 -3 -17.5 -13.5t-3.5 -22.5l9 -35q3 -13 14 -19q7 -4 15 -4 q4 0 8 1q121 34 209.5 122.5t122.5 209.5q4 12 -2.5 23t-18.5 14l-36 9q-3 1 -7 1z" /> +<glyph unicode="" d="M700 800h300v-380h-180v200h-340v-200h-380v755q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM700 300h162l-212 -212l-212 212h162v200h100v-200zM520 0h-395q-10 0 -17.5 7.5t-7.5 17.5v395zM1000 220v-195q0 -10 -7.5 -17.5t-17.5 -7.5h-195z" /> +<glyph unicode="" d="M700 800h300v-520l-350 350l-550 -550v1095q0 10 7.5 17.5t17.5 7.5h575v-400zM1000 900h-200v200zM862 200h-162v-200h-100v200h-162l212 212zM480 0h-355q-10 0 -17.5 7.5t-7.5 17.5v55h380v-80zM1000 80v-55q0 -10 -7.5 -17.5t-17.5 -7.5h-155v80h180z" /> +<glyph unicode="" d="M1162 800h-162v-200h100l100 -100h-300v300h-162l212 212zM200 800h200q27 0 40 -2t29.5 -10.5t23.5 -30t7 -57.5h300v-100h-600l-200 -350v450h100q0 36 7 57.5t23.5 30t29.5 10.5t40 2zM800 400h240l-240 -400h-800l300 500h500v-100z" /> +<glyph unicode="" d="M650 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM1000 850v150q41 0 70.5 -29.5t29.5 -70.5v-800 q0 -41 -29.5 -70.5t-70.5 -29.5h-600q-1 0 -20 4l246 246l-326 326v324q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM412 250l-212 -212v162h-200v100h200v162z" /> +<glyph unicode="" d="M450 1100h100q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-300q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h50v50q0 21 14.5 35.5t35.5 14.5zM800 850v150q41 0 70.5 -29.5t29.5 -70.5v-500 h-200v-300h200q0 -36 -7 -57.5t-23.5 -30t-29.5 -10.5t-40 -2h-600q-41 0 -70.5 29.5t-29.5 70.5v800q0 41 29.5 70.5t70.5 29.5v-150q0 -62 44 -106t106 -44h300q62 0 106 44t44 106zM1212 250l-212 -212v162h-200v100h200v162z" /> +<glyph unicode="" d="M658 1197l637 -1104q23 -38 7 -65.5t-60 -27.5h-1276q-44 0 -60 27.5t7 65.5l637 1104q22 39 54 39t54 -39zM704 800h-208q-20 0 -32 -14.5t-8 -34.5l58 -302q4 -20 21.5 -34.5t37.5 -14.5h54q20 0 37.5 14.5t21.5 34.5l58 302q4 20 -8 34.5t-32 14.5zM500 300v-100h200 v100h-200z" /> +<glyph unicode="" d="M425 1100h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM825 800h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM25 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5zM425 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 500h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5 v150q0 10 7.5 17.5t17.5 7.5zM25 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM425 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5 t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM825 200h250q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-250q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M700 1200h100v-200h-100v-100h350q62 0 86.5 -39.5t-3.5 -94.5l-66 -132q-41 -83 -81 -134h-772q-40 51 -81 134l-66 132q-28 55 -3.5 94.5t86.5 39.5h350v100h-100v200h100v100h200v-100zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-12l137 -100 h-950l138 100h-13q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M600 1300q40 0 68.5 -29.5t28.5 -70.5h-194q0 41 28.5 70.5t68.5 29.5zM443 1100h314q18 -37 18 -75q0 -8 -3 -25h328q41 0 44.5 -16.5t-30.5 -38.5l-175 -145h-678l-178 145q-34 22 -29 38.5t46 16.5h328q-3 17 -3 25q0 38 18 75zM250 700h700q21 0 35.5 -14.5 t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-150v-200l275 -200h-950l275 200v200h-150q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M600 1181q75 0 128 -53t53 -128t-53 -128t-128 -53t-128 53t-53 128t53 128t128 53zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13 l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M600 1300q47 0 92.5 -53.5t71 -123t25.5 -123.5q0 -78 -55.5 -133.5t-133.5 -55.5t-133.5 55.5t-55.5 133.5q0 62 34 143l144 -143l111 111l-163 163q34 26 63 26zM602 798h46q34 0 55.5 -28.5t21.5 -86.5q0 -76 39 -183h-324q39 107 39 183q0 58 21.5 86.5t56.5 28.5h45 zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M600 1200l300 -161v-139h-300q0 -57 18.5 -108t50 -91.5t63 -72t70 -67.5t57.5 -61h-530q-60 83 -90.5 177.5t-30.5 178.5t33 164.5t87.5 139.5t126 96.5t145.5 41.5v-98zM250 400h700q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-13l138 -100h-950l137 100 h-12q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5zM50 100h1100q21 0 35.5 -14.5t14.5 -35.5v-50h-1200v50q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M600 1300q41 0 70.5 -29.5t29.5 -70.5v-78q46 -26 73 -72t27 -100v-50h-400v50q0 54 27 100t73 72v78q0 41 29.5 70.5t70.5 29.5zM400 800h400q54 0 100 -27t72 -73h-172v-100h200v-100h-200v-100h200v-100h-200v-100h200q0 -83 -58.5 -141.5t-141.5 -58.5h-400 q-83 0 -141.5 58.5t-58.5 141.5v400q0 83 58.5 141.5t141.5 58.5z" /> +<glyph unicode="" d="M150 1100h900q21 0 35.5 -14.5t14.5 -35.5v-500q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v500q0 21 14.5 35.5t35.5 14.5zM125 400h950q10 0 17.5 -7.5t7.5 -17.5v-50q0 -10 -7.5 -17.5t-17.5 -7.5h-283l224 -224q13 -13 13 -31.5t-13 -32 t-31.5 -13.5t-31.5 13l-88 88h-524l-87 -88q-13 -13 -32 -13t-32 13.5t-13 32t13 31.5l224 224h-289q-10 0 -17.5 7.5t-7.5 17.5v50q0 10 7.5 17.5t17.5 7.5zM541 300l-100 -100h324l-100 100h-124z" /> +<glyph unicode="" d="M200 1100h800q83 0 141.5 -58.5t58.5 -141.5v-200h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100q0 41 -29.5 70.5t-70.5 29.5h-250q-41 0 -70.5 -29.5t-29.5 -70.5h-100v200q0 83 58.5 141.5t141.5 58.5zM100 600h1000q41 0 70.5 -29.5 t29.5 -70.5v-300h-1200v300q0 41 29.5 70.5t70.5 29.5zM300 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200zM1100 100v-50q0 -21 -14.5 -35.5t-35.5 -14.5h-100q-21 0 -35.5 14.5t-14.5 35.5v50h200z" /> +<glyph unicode="" d="M480 1165l682 -683q31 -31 31 -75.5t-31 -75.5l-131 -131h-481l-517 518q-32 31 -32 75.5t32 75.5l295 296q31 31 75.5 31t76.5 -31zM108 794l342 -342l303 304l-341 341zM250 100h800q21 0 35.5 -14.5t14.5 -35.5v-50h-900v50q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M1057 647l-189 506q-8 19 -27.5 33t-40.5 14h-400q-21 0 -40.5 -14t-27.5 -33l-189 -506q-8 -19 1.5 -33t30.5 -14h625v-150q0 -21 14.5 -35.5t35.5 -14.5t35.5 14.5t14.5 35.5v150h125q21 0 30.5 14t1.5 33zM897 0h-595v50q0 21 14.5 35.5t35.5 14.5h50v50 q0 21 14.5 35.5t35.5 14.5h48v300h200v-300h47q21 0 35.5 -14.5t14.5 -35.5v-50h50q21 0 35.5 -14.5t14.5 -35.5v-50z" /> +<glyph unicode="" d="M900 800h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-375v591l-300 300v84q0 10 7.5 17.5t17.5 7.5h375v-400zM1200 900h-200v200zM400 600h300v-575q0 -10 -7.5 -17.5t-17.5 -7.5h-650q-10 0 -17.5 7.5t-7.5 17.5v950q0 10 7.5 17.5t17.5 7.5h375v-400zM700 700h-200v200z " /> +<glyph unicode="" d="M484 1095h195q75 0 146 -32.5t124 -86t89.5 -122.5t48.5 -142q18 -14 35 -20q31 -10 64.5 6.5t43.5 48.5q10 34 -15 71q-19 27 -9 43q5 8 12.5 11t19 -1t23.5 -16q41 -44 39 -105q-3 -63 -46 -106.5t-104 -43.5h-62q-7 -55 -35 -117t-56 -100l-39 -234q-3 -20 -20 -34.5 t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l12 70q-49 -14 -91 -14h-195q-24 0 -65 8l-11 -64q-3 -20 -20 -34.5t-38 -14.5h-100q-21 0 -33 14.5t-9 34.5l26 157q-84 74 -128 175l-159 53q-19 7 -33 26t-14 40v50q0 21 14.5 35.5t35.5 14.5h124q11 87 56 166l-111 95 q-16 14 -12.5 23.5t24.5 9.5h203q116 101 250 101zM675 1000h-250q-10 0 -17.5 -7.5t-7.5 -17.5v-50q0 -10 7.5 -17.5t17.5 -7.5h250q10 0 17.5 7.5t7.5 17.5v50q0 10 -7.5 17.5t-17.5 7.5z" /> +<glyph unicode="" d="M641 900l423 247q19 8 42 2.5t37 -21.5l32 -38q14 -15 12.5 -36t-17.5 -34l-139 -120h-390zM50 1100h106q67 0 103 -17t66 -71l102 -212h823q21 0 35.5 -14.5t14.5 -35.5v-50q0 -21 -14 -40t-33 -26l-737 -132q-23 -4 -40 6t-26 25q-42 67 -100 67h-300q-62 0 -106 44 t-44 106v200q0 62 44 106t106 44zM173 928h-80q-19 0 -28 -14t-9 -35v-56q0 -51 42 -51h134q16 0 21.5 8t5.5 24q0 11 -16 45t-27 51q-18 28 -43 28zM550 727q-32 0 -54.5 -22.5t-22.5 -54.5t22.5 -54.5t54.5 -22.5t54.5 22.5t22.5 54.5t-22.5 54.5t-54.5 22.5zM130 389 l152 130q18 19 34 24t31 -3.5t24.5 -17.5t25.5 -28q28 -35 50.5 -51t48.5 -13l63 5l48 -179q13 -61 -3.5 -97.5t-67.5 -79.5l-80 -69q-47 -40 -109 -35.5t-103 51.5l-130 151q-40 47 -35.5 109.5t51.5 102.5zM380 377l-102 -88q-31 -27 2 -65l37 -43q13 -15 27.5 -19.5 t31.5 6.5l61 53q19 16 14 49q-2 20 -12 56t-17 45q-11 12 -19 14t-23 -8z" /> +<glyph unicode="" d="M625 1200h150q10 0 17.5 -7.5t7.5 -17.5v-109q79 -33 131 -87.5t53 -128.5q1 -46 -15 -84.5t-39 -61t-46 -38t-39 -21.5l-17 -6q6 0 15 -1.5t35 -9t50 -17.5t53 -30t50 -45t35.5 -64t14.5 -84q0 -59 -11.5 -105.5t-28.5 -76.5t-44 -51t-49.5 -31.5t-54.5 -16t-49.5 -6.5 t-43.5 -1v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-100v-75q0 -10 -7.5 -17.5t-17.5 -7.5h-150q-10 0 -17.5 7.5t-7.5 17.5v75h-175q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5h75v600h-75q-10 0 -17.5 7.5t-7.5 17.5v150 q0 10 7.5 17.5t17.5 7.5h175v75q0 10 7.5 17.5t17.5 7.5h150q10 0 17.5 -7.5t7.5 -17.5v-75h100v75q0 10 7.5 17.5t17.5 7.5zM400 900v-200h263q28 0 48.5 10.5t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-263zM400 500v-200h363q28 0 48.5 10.5 t30 25t15 29t5.5 25.5l1 10q0 4 -0.5 11t-6 24t-15 30t-30 24t-48.5 11h-363z" /> +<glyph unicode="" d="M212 1198h780q86 0 147 -61t61 -147v-416q0 -51 -18 -142.5t-36 -157.5l-18 -66q-29 -87 -93.5 -146.5t-146.5 -59.5h-572q-82 0 -147 59t-93 147q-8 28 -20 73t-32 143.5t-20 149.5v416q0 86 61 147t147 61zM600 1045q-70 0 -132.5 -11.5t-105.5 -30.5t-78.5 -41.5 t-57 -45t-36 -41t-20.5 -30.5l-6 -12l156 -243h560l156 243q-2 5 -6 12.5t-20 29.5t-36.5 42t-57 44.5t-79 42t-105 29.5t-132.5 12zM762 703h-157l195 261z" /> +<glyph unicode="" d="M475 1300h150q103 0 189 -86t86 -189v-500q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" /> +<glyph unicode="" d="M475 1300h96q0 -150 89.5 -239.5t239.5 -89.5v-446q0 -41 -42 -83t-83 -42h-450q-41 0 -83 42t-42 83v500q0 103 86 189t189 86zM700 300v-225q0 -21 -27 -48t-48 -27h-150q-21 0 -48 27t-27 48v225h300z" /> +<glyph unicode="" d="M1294 767l-638 -283l-378 170l-78 -60v-224l100 -150v-199l-150 148l-150 -149v200l100 150v250q0 4 -0.5 10.5t0 9.5t1 8t3 8t6.5 6l47 40l-147 65l642 283zM1000 380l-350 -166l-350 166v147l350 -165l350 165v-147z" /> +<glyph unicode="" d="M250 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM650 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM1050 800q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" /> +<glyph unicode="" d="M550 1100q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 700q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44zM550 300q62 0 106 -44t44 -106t-44 -106t-106 -44t-106 44t-44 106t44 106t106 44z" /> +<glyph unicode="" d="M125 1100h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5zM125 700h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5 t17.5 7.5zM125 300h950q10 0 17.5 -7.5t7.5 -17.5v-150q0 -10 -7.5 -17.5t-17.5 -7.5h-950q-10 0 -17.5 7.5t-7.5 17.5v150q0 10 7.5 17.5t17.5 7.5z" /> +<glyph unicode="" d="M350 1200h500q162 0 256 -93.5t94 -256.5v-500q0 -165 -93.5 -257.5t-256.5 -92.5h-500q-165 0 -257.5 92.5t-92.5 257.5v500q0 165 92.5 257.5t257.5 92.5zM900 1000h-600q-41 0 -70.5 -29.5t-29.5 -70.5v-600q0 -41 29.5 -70.5t70.5 -29.5h600q41 0 70.5 29.5 t29.5 70.5v600q0 41 -29.5 70.5t-70.5 29.5zM350 900h500q21 0 35.5 -14.5t14.5 -35.5v-300q0 -21 -14.5 -35.5t-35.5 -14.5h-500q-21 0 -35.5 14.5t-14.5 35.5v300q0 21 14.5 35.5t35.5 14.5zM400 800v-200h400v200h-400z" /> +<glyph unicode="" d="M150 1100h1000q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5t-35.5 -14.5h-50v-200h50q21 0 35.5 -14.5t14.5 -35.5t-14.5 -35.5 t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5h50v200h-50q-21 0 -35.5 14.5t-14.5 35.5t14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M650 1187q87 -67 118.5 -156t0 -178t-118.5 -155q-87 66 -118.5 155t0 178t118.5 156zM300 800q124 0 212 -88t88 -212q-124 0 -212 88t-88 212zM1000 800q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM300 500q124 0 212 -88t88 -212q-124 0 -212 88t-88 212z M1000 500q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM700 199v-144q0 -21 -14.5 -35.5t-35.5 -14.5t-35.5 14.5t-14.5 35.5v142q40 -4 43 -4q17 0 57 6z" /> +<glyph unicode="" d="M745 878l69 19q25 6 45 -12l298 -295q11 -11 15 -26.5t-2 -30.5q-5 -14 -18 -23.5t-28 -9.5h-8q1 0 1 -13q0 -29 -2 -56t-8.5 -62t-20 -63t-33 -53t-51 -39t-72.5 -14h-146q-184 0 -184 288q0 24 10 47q-20 4 -62 4t-63 -4q11 -24 11 -47q0 -288 -184 -288h-142 q-48 0 -84.5 21t-56 51t-32 71.5t-16 75t-3.5 68.5q0 13 2 13h-7q-15 0 -27.5 9.5t-18.5 23.5q-6 15 -2 30.5t15 25.5l298 296q20 18 46 11l76 -19q20 -5 30.5 -22.5t5.5 -37.5t-22.5 -31t-37.5 -5l-51 12l-182 -193h891l-182 193l-44 -12q-20 -5 -37.5 6t-22.5 31t6 37.5 t31 22.5z" /> +<glyph unicode="" d="M1200 900h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-200v-850q0 -22 25 -34.5t50 -13.5l25 -2v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v850h-200q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h1000v-300zM500 450h-25q0 15 -4 24.5t-9 14.5t-17 7.5t-20 3t-25 0.5h-100v-425q0 -11 12.5 -17.5t25.5 -7.5h12v-50h-200v50q50 0 50 25v425h-100q-17 0 -25 -0.5t-20 -3t-17 -7.5t-9 -14.5t-4 -24.5h-25v150h500v-150z" /> +<glyph unicode="" d="M1000 300v50q-25 0 -55 32q-14 14 -25 31t-16 27l-4 11l-289 747h-69l-300 -754q-18 -35 -39 -56q-9 -9 -24.5 -18.5t-26.5 -14.5l-11 -5v-50h273v50q-49 0 -78.5 21.5t-11.5 67.5l69 176h293l61 -166q13 -34 -3.5 -66.5t-55.5 -32.5v-50h312zM412 691l134 342l121 -342 h-255zM1100 150v-100q0 -21 -14.5 -35.5t-35.5 -14.5h-1000q-21 0 -35.5 14.5t-14.5 35.5v100q0 21 14.5 35.5t35.5 14.5h1000q21 0 35.5 -14.5t14.5 -35.5z" /> +<glyph unicode="" d="M50 1200h1100q21 0 35.5 -14.5t14.5 -35.5v-1100q0 -21 -14.5 -35.5t-35.5 -14.5h-1100q-21 0 -35.5 14.5t-14.5 35.5v1100q0 21 14.5 35.5t35.5 14.5zM611 1118h-70q-13 0 -18 -12l-299 -753q-17 -32 -35 -51q-18 -18 -56 -34q-12 -5 -12 -18v-50q0 -8 5.5 -14t14.5 -6 h273q8 0 14 6t6 14v50q0 8 -6 14t-14 6q-55 0 -71 23q-10 14 0 39l63 163h266l57 -153q11 -31 -6 -55q-12 -17 -36 -17q-8 0 -14 -6t-6 -14v-50q0 -8 6 -14t14 -6h313q8 0 14 6t6 14v50q0 7 -5.5 13t-13.5 7q-17 0 -42 25q-25 27 -40 63h-1l-288 748q-5 12 -19 12zM639 611 h-197l103 264z" /> +<glyph unicode="" d="M1200 1100h-1200v100h1200v-100zM50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 1000h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM700 900v-300h300v300h-300z" /> +<glyph unicode="" d="M50 1200h400q21 0 35.5 -14.5t14.5 -35.5v-900q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v900q0 21 14.5 35.5t35.5 14.5zM650 700h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400 q0 21 14.5 35.5t35.5 14.5zM700 600v-300h300v300h-300zM1200 0h-1200v100h1200v-100z" /> +<glyph unicode="" d="M50 1000h400q21 0 35.5 -14.5t14.5 -35.5v-350h100v150q0 21 14.5 35.5t35.5 14.5h400q21 0 35.5 -14.5t14.5 -35.5v-150h100v-100h-100v-150q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v150h-100v-350q0 -21 -14.5 -35.5t-35.5 -14.5h-400 q-21 0 -35.5 14.5t-14.5 35.5v800q0 21 14.5 35.5t35.5 14.5zM700 700v-300h300v300h-300z" /> +<glyph unicode="" d="M100 0h-100v1200h100v-1200zM250 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM300 1000v-300h300v300h-300zM250 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M600 1100h150q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-100h450q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h350v100h-150q-21 0 -35.5 14.5 t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5h150v100h100v-100zM400 1000v-300h300v300h-300z" /> +<glyph unicode="" d="M1200 0h-100v1200h100v-1200zM550 1100h400q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-400q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM600 1000v-300h300v300h-300zM50 500h900q21 0 35.5 -14.5t14.5 -35.5v-400 q0 -21 -14.5 -35.5t-35.5 -14.5h-900q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5z" /> +<glyph unicode="" d="M865 565l-494 -494q-23 -23 -41 -23q-14 0 -22 13.5t-8 38.5v1000q0 25 8 38.5t22 13.5q18 0 41 -23l494 -494q14 -14 14 -35t-14 -35z" /> +<glyph unicode="" d="M335 635l494 494q29 29 50 20.5t21 -49.5v-1000q0 -41 -21 -49.5t-50 20.5l-494 494q-14 14 -14 35t14 35z" /> +<glyph unicode="" d="M100 900h1000q41 0 49.5 -21t-20.5 -50l-494 -494q-14 -14 -35 -14t-35 14l-494 494q-29 29 -20.5 50t49.5 21z" /> +<glyph unicode="" d="M635 865l494 -494q29 -29 20.5 -50t-49.5 -21h-1000q-41 0 -49.5 21t20.5 50l494 494q14 14 35 14t35 -14z" /> +<glyph unicode="" d="M700 741v-182l-692 -323v221l413 193l-413 193v221zM1200 0h-800v200h800v-200z" /> +<glyph unicode="" d="M1200 900h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300zM0 700h50q0 21 4 37t9.5 26.5t18 17.5t22 11t28.5 5.5t31 2t37 0.5h100v-550q0 -22 -25 -34.5t-50 -13.5l-25 -2v-100h400v100q-4 0 -11 0.5t-24 3t-30 7t-24 15t-11 24.5v550h100q25 0 37 -0.5t31 -2 t28.5 -5.5t22 -11t18 -17.5t9.5 -26.5t4 -37h50v300h-800v-300z" /> +<glyph unicode="" d="M800 700h-50q0 21 -4 37t-9.5 26.5t-18 17.5t-22 11t-28.5 5.5t-31 2t-37 0.5h-100v-550q0 -22 25 -34.5t50 -14.5l25 -1v-100h-400v100q4 0 11 0.5t24 3t30 7t24 15t11 24.5v550h-100q-25 0 -37 -0.5t-31 -2t-28.5 -5.5t-22 -11t-18 -17.5t-9.5 -26.5t-4 -37h-50v300 h800v-300zM1100 200h-200v-100h200v-100h-300v300h200v100h-200v100h300v-300z" /> +<glyph unicode="" d="M701 1098h160q16 0 21 -11t-7 -23l-464 -464l464 -464q12 -12 7 -23t-21 -11h-160q-13 0 -23 9l-471 471q-7 8 -7 18t7 18l471 471q10 9 23 9z" /> +<glyph unicode="" d="M339 1098h160q13 0 23 -9l471 -471q7 -8 7 -18t-7 -18l-471 -471q-10 -9 -23 -9h-160q-16 0 -21 11t7 23l464 464l-464 464q-12 12 -7 23t21 11z" /> +<glyph unicode="" d="M1087 882q11 -5 11 -21v-160q0 -13 -9 -23l-471 -471q-8 -7 -18 -7t-18 7l-471 471q-9 10 -9 23v160q0 16 11 21t23 -7l464 -464l464 464q12 12 23 7z" /> +<glyph unicode="" d="M618 993l471 -471q9 -10 9 -23v-160q0 -16 -11 -21t-23 7l-464 464l-464 -464q-12 -12 -23 -7t-11 21v160q0 13 9 23l471 471q8 7 18 7t18 -7z" /> +<glyph unicode="" d="M1000 1200q0 -124 -88 -212t-212 -88q0 124 88 212t212 88zM450 1000h100q21 0 40 -14t26 -33l79 -194q5 1 16 3q34 6 54 9.5t60 7t65.5 1t61 -10t56.5 -23t42.5 -42t29 -64t5 -92t-19.5 -121.5q-1 -7 -3 -19.5t-11 -50t-20.5 -73t-32.5 -81.5t-46.5 -83t-64 -70 t-82.5 -50q-13 -5 -42 -5t-65.5 2.5t-47.5 2.5q-14 0 -49.5 -3.5t-63 -3.5t-43.5 7q-57 25 -104.5 78.5t-75 111.5t-46.5 112t-26 90l-7 35q-15 63 -18 115t4.5 88.5t26 64t39.5 43.5t52 25.5t58.5 13t62.5 2t59.5 -4.5t55.5 -8l-147 192q-12 18 -5.5 30t27.5 12z" /> +<glyph unicode="🔑" d="M250 1200h600q21 0 35.5 -14.5t14.5 -35.5v-400q0 -21 -14.5 -35.5t-35.5 -14.5h-150v-500l-255 -178q-19 -9 -32 -1t-13 29v650h-150q-21 0 -35.5 14.5t-14.5 35.5v400q0 21 14.5 35.5t35.5 14.5zM400 1100v-100h300v100h-300z" /> +<glyph unicode="🚪" d="M250 1200h750q39 0 69.5 -40.5t30.5 -84.5v-933l-700 -117v950l600 125h-700v-1000h-100v1025q0 23 15.5 49t34.5 26zM500 525v-100l100 20v100z" /> +</font> +</defs></svg> \ No newline at end of file diff --git a/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.ttf b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.ttf new file mode 100644 index 0000000..1413fc6 Binary files /dev/null and b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.ttf differ diff --git a/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.woff b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.woff new file mode 100644 index 0000000..9e61285 Binary files /dev/null and b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.woff differ diff --git a/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 new file mode 100644 index 0000000..64539b5 Binary files /dev/null and b/src/main/webapp/css/bootstrap/fonts/glyphicons-halflings-regular.woff2 differ diff --git a/src/main/webapp/css/fore/style.css b/src/main/webapp/css/fore/style.css new file mode 100644 index 0000000..54e9850 --- /dev/null +++ b/src/main/webapp/css/fore/style.css @@ -0,0 +1,2295 @@ +.show { + border: 1px dotted skyblue !important; +} + +body { + font-size: 12px; + font-family: Arial; + min-width:1024px; +/* width:1920px; */ +} + +a { + color: #999; +} + +a:hover { + text-decoration: none; + color: #C40000; +} + +nav.top { + padding-top: 5px; + padding-bottom: 5px; + border-bottom-style: solid; + border-bottom-width: 1px; + border-bottom-color: #e7e7e7; +} + +.redColor { + color: #C40000; +} + +.boldWord { + font-weight: bold; +} + +nav.top span { + margin-right: 20px; +} + +nav.top span, nav.top a { + color: #999; + margin: 0px 10px 0px 10px; +} + +nav.top a:hover { + color: #C40000; +} + +nav.top { + background-color: #f2f2f2; +} + +nav.top div.row div { + margin: 5px 0px; +} + +nav.top div.row div { + background-color: lightgray; + border: 1px solid gray; + text-align: center; +} + +div.searchDiv { + background-color: #C40000; + width: 400px; + margin: 50px auto; + padding: 1px; + height: 40px; + display: block; +} + +div.searchDiv input { + width: 275px; + border: 1px solid transparent; + height: 36px; + margin: 1px; + outline:none; +} + +div.searchDiv button { + width: 110px; + border: 1px solid transparent; + background-color: #C40000; + color: white; + font-size: 20px; + font-weight: bold; +} + +div.categoryWithCarousel { + width: 100%; + position:relative; +} + +div.carouselBackgroundDiv{ + width:100%; + height:510px; + background-color: #E8E8E8; + position: absolute; + top:36px; + + z-index:-1; + +} + +div.categoryWithCarousel div.headbar { + background-color: #DD2727; +} + +div.carousel-of-product { + width: 1024px; + height: 510px; + margin:0px auto; +} +div.carousel-inner div.item img{ +/* width:100%; */ +} + +div.categoryWithCarousel div.categoryMenu { + width: 200px; + background-color: #e2e2e3; + /* padding-bottom:10px; */ + margin-left: 20px; + position: absolute; + left: 0; + top: 0; + z-index: 1; +} + +div.categoryWithCarousel div.productsAsideCategorys { + width: 825px; + height: 510px; + background-color: white; + /* padding-bottom:10px; */ + margin-left: 220px; + display: none; + position: absolute; + left: 0; + top: 0; + z-index: 1; +} + +div.categoryWithCarousel div.eachCategory:hover { + background-color: white; +} + +div.categoryWithCarousel div.eachCategory span { + margin-right: 10px; +} + +div.categoryWithCarousel div.eachCategory { + /* height:30px; */ + line-height: 30px; + padding-left: 10px; + /* border:1px dashed lightgray; */ + font-size: 14px; + /* background-image:url(../../img/site/eachcategory.png); */ + /* background-repeat: no-repeat; */ +} + +div.categoryWithCarousel div.rightMenu { + display: inline-block; +} + +div.categoryWithCarousel div.rightMenu img { + height: 30px; +} + +div.categoryWithCarousel div.rightMenu span { + margin: 0px 20px 0px 20px; +} + +div.categoryWithCarousel div.rightMenu a { + font-size: 16px; + color: white; +} + +div.categoryWithCarousel div.head { + width: 200px; + background-color: #C60A0A; + height: 36px; + line-height: 36px; + font-size: 16px; + font-weight: bold; + color: white; + margin-left: 20px; + display: inline-block; +} + +div.productsAsideCategorys a { + color: #999; + font-size: 14px; + margin: 8px; +} + +div.productsAsideCategorys a:hover { + color: #C40000; + text-decoration: none; +} + +div.productsAsideCategorys div.row { + margin: 20px 80px 0px 80px; +} + +div.productsAsideCategorys div.row div.seperator { + margin-top: 20px; + border-bottom-style: dashed; + border-bottom-width: 1px; + border-bottom-color: #e7e7e7; +} + +div.categoryMenu a { + color: #000; +} + +div.categoryMenu a:hover { + color: lightskyblue; + text-decoration: none; +} + +div.searchBelow span { + color: #999; +} + +div.searchBelow { + margin-top: 3px; + margin-left: -20px; +} + +div.searchBelow a { + padding: 0px 20px 0px 20px; + font-size: 14px; +} + +div.homepageDiv{ + position:relative; +} + + +img.catear { + position: absolute; + height: 15px; + display: none; +} + +img.logo { + position: absolute; + left: 0px; + top: 30px; +/* z-index:-1; */ +} + +div.homepageCategoryProducts { + background-color: #F5F5F5; + padding: 50px 10px 50px 10px; + margin: 10px auto; + max-width: 1013px; +} + +div.left-mark { + display: inline-block; + height: 20px; + vertical-align: top; + width: 5px; + background-color: #19C8A9; +} + +span.categoryTitle { + font-size: 16px; + margin-left: 30px; + color: #646464; + font-weight: bold; +} + +div.productItem { + width: 189px; + height: 285px; + border: 1px solid white; + background-color: white; + margin: 8px 4px; + float: left; + cursor: pointer; +} + +a.productItemDescLink { + display: inline-block; + height: 66px; +} + +div.productItem:hover { + border: 1px solid #C40000; +} + +div.productItem span.productItemDesc { + font-size: 12px; + color: #666666; + display: block; + padding: 16px; +} + +div.productItem span.productPrice { + font-size: 16px; + color: #FF003A; + display: block; + padding-left: 16px; + margin-top: -10px; +} + +div.eachHomepageCategoryProducts { + margin: 0px 0px 40px 0px; +} + +div.productItem img { + width: 187px; + height: 190px; +} + +div.productItem img:hover { + opacity: 0.7; + filter: alpha(opacity = 70); +} + +img.endpng { + display: block; + width: 82px; + margin: 0 auto; +} + +div.footer { + margin: 0px 0px; + border-top-style: solid; + border-top-width: 1px; + border-top-color: #e7e7e7; +} + +div.footer_ensure { + margin-top: 24px; + margin-bottom: 24px; + text-align: center; +} + +div.horizontal_line{ + border-top-style: solid; + border-top-width: 1px; + border-top-color: #e7e7e7; +} + +div.footer_desc { + padding-top: 30px; + margin: 20px auto; + max-width:1024px; +} + +div.footer div.copyright div.white_link a { + color: white; + padding: 0px 5px; +} + +div.footer div.copyright div.white_link { + padding: 10px 0px; + margin-left: 10px; +} + + +div.footer_desc div.descColumn { + width: 20%; + float: left; + padding-left: 15px; +} + +div.footer_desc div.descColumn span.descColumnTitle { + color: #646464; + font-weight: bold; + font-size: 16px; +} + +div.footer_desc a { + display: block; + padding-top: 3px; +} + +div.copyright { + background-color: black; + border-top-style: solid; + border-top-width: 2px; + border-top-color: solid; + border-top-color: #C40000; + margin-top:20px; + + +} + +div.coptyrightMiddle{ + width:1024px; + margin:0px auto; + text-align:left; + position:relative; +} + +img.cateye { + margin-left: 20px; + display:block; + position:absolute; + top:-33px; + left:-15px; +} + +div.copyright span.slash { + color: white; +} + +div.license { + margin-left: 10px; + padding-bottom: 30px; +} + +div.license div.copyRightYear { + margin: 10px 0px; + color: #686868; +} + +div.license span { + color: #A4A4A4; +} + +div.simpleLogo { + padding: 32px 0px; +} + +img.loginBackgroundImg { + display: block; + margin: 0px auto; +} + +div.loginDivInProductPageModalDiv { + width: 350px; +} + +div.deleteConfirmModalDiv { + width: 350px; +} + +div.loginDivInProductPage { + background-color: white; + width: 350px; + height: 400px; + padding: 60px 25px 80px 25px; +} + +div.loginSmallDiv { + background-color: white; + position: absolute; + right: 180px; + top: 180px; + width: 350px; + height: 400px; + padding: 60px 25px 80px 25px; +} + +div.loginErrorMessageDiv { + width: 300px; + position: absolute; + top: 20px; + display: none; +} + +div.loginErrorMessageDiv div.alert { + padding: 5px !important; +} + +div.login_acount_text { + color: #3C3C3C; + font-size: 16px; + font-weight: bold; +} + +div.loginInput { + border: 1px solid #CBCBCB; + margin: 20px 0px; +} + +div.loginInput input { + display: inline-block; + border: 0px solid transparent; + width: 244px; + height: 30px; + position: relative; + left: 6px; + top: 6px; +} + +div.loginInput span, div.loginInput input { + display: inline-block; +} + +div.loginInput span.loginInputIcon { + margin: 0px; + background-color: #CBCBCB; + width: 40px; + height: 40px; +} + +span.loginInputIcon span.glyphicon { + font-size: 22px; + position: relative; + left: 9px; + top: 9px; + color: #606060; +} + +button.redButton { + color: white; + background-color: #C40000; + font-size: 14px; + font-weight: bold; +} + +div.categorySortBar { + background-color: #FAF9F9; + margin: 40px 20px 20px 20px; + padding: 4px; +} + + +table.categorySortBarTable td { + border: 1px solid #CCCCCC; + padding: 3px; + height: 23px; +} + +table.categorySortBarTable { + border-collapse: collapse; + display: inline-table; +} + +table.categorySortBarTable td a { + color: #806F66; + font-size:12px; +} + +table.categorySortBarTable td a:hover { + color: #C40000; +} + +table.categorySortBarTable td.grayColumn { + background-color: #F1EDEC; +} + +table.categorySortBarTable td.priceMiddleColumn { + width: 10px; + vertical-align: middle; + color: #CCCCCC; +} + +table.categorySortTable td:hover { + background-color: #F1EDEC; +} + +table.categorySortBarTable span.glyphicon { + font-size: 10px; +} + +table.categorySortBarTable input { + border-width: 0px; + height: 100%; + width: 50px; + font-size:12px; +} + +div.categoryProducts { + padding: 0px 20px 40px 20px; +} + +div.productUnit { + width: 225px; + height: 338px; + border: 3px solid #fff; + background-color: white; + margin: 12px 5px; + float: left; + padding: 0px; +} + +div.productUnit:hover { + width: 225px; + border: 3px solid #C40000; + padding: 0px; +} + + +div.productUnit span.productUnitDesc { + font-size: 12px; + color: #666666; + display: block; + padding: 16px; +} + +div.productUnitFrame{ + border:1px solid #eee; +} +div.productUnitFrame:hover{ + border:1px solid #C40000; +} + +div.productUnit span.productPrice { + font-size: 20px; + color: #CC0000; + display: block; + padding-left: 4px; +} + +div.productUnit span.productReview { + border-left-width: 1px; + border-left-style: solid; + border-left-color: #EEEEEE; + border-right-width: 1px; + border-right-style: solid; + border-right-color: #EEEEEE; +} + +div.productUnit a.productLink { + margin: 10px 0px; + color: #333333; + font: 0.8em; + display: block; +} + +div.productUnit a.productLink:hover { + text-decoration: underline; + color: #C40000; +} + +div.productUnit a.tmallLink { + margin: 10px 0px; + color: #999999; + font: 0.8em; + display: block; + text-decoration: underline; +} + +div.productUnit a.tmallLink:hover { + text-decoration: underline; + color: #C40000; +} + +div.productUnit div.productInfo { + color: #999999; +} + +div.productUnit span.monthDeal, div.productUnit span.productReview { + display: inline-block; + width: 90px; + height: 30px; + padding-top: 5px; + padding-left: 5px; +} + +div.productUnit span.wangwang { + padding-left: 3px; +} + +div.productUnit span.productDealNumber { + font-weight: bold; + color: #B57C5B; +} + +div.productUnit span.productReviewNumber { + font-weight: bold; + color: #3388BB; +} + +div.productUnit img.productImage { + width: 100%; + height: 190px; +} + +div.productUnit div.productInfo { + border-top-width: 1px; + border-top-style: solid; + border-top-color: #EEEEEE; +} + +img.simpleLogo { + position: absolute; + left: 10px; + top: 50px; + width: 140px; +} + +div.simpleSearchDiv { + background-color: #C40000; + width: 300px; + margin: 10px 20px 40px; + padding: 1px; + height: 40px; + display: block; +} + +div.simpleSearchDiv input { + width: 225px; + border: 1px solid transparent; + height: 34px; + margin: 2px; + outline:none; +} + +div.simpleSearchDiv button { + width: 60px; + border: 1px solid transparent; + background-color: #C40000; + color: white; + font-size: 14px; + /* font-weight:bold; */ +} + +div.imgAndInfo { + margin: 40px 20px; +} + +div.imgAndInfo img.bigImg { + width: 400px; + height: 400px; + padding: 20px; + border: 1px solid #F2F2F2; +} + +div.imgAndInfo div.smallImageDiv { + width: 80%; + margin: 20px auto; +} + +div.imgAndInfo img.smallImage { + width: 60px; + height: 60px; + border: 2px solid white; +} + +div.imgAndInfo img.smallImage:hover { + border: 2px solid black; +} + +div.imgInimgAndInfo { + width: 400px; + float: left; +} + +div.infoInimgAndInfo { + padding: 0px 20px; + overflow: hidden; +} + +div.infoInimgAndInfo div.productTitle { + color: black; + font-size: 16px; + font-weight: bold; + margin: 0px 10px; +} + +div.infoInimgAndInfo div.productSubTitle { + color: #DD2727; + font-size: 12px; + /* font-weight:bold; */ + margin: 0px 10px; +} + +div.infoInimgAndInfo div.juhuasuan { + /* height:40px; */ + background-color: #2DA77A; + color: white; + text-align: center; + line-height: 40px; + margin-top: 10px; +} + +div.infoInimgAndInfo span.juhuasuanBig { + font-size: 18px; + font-weight: bold; + font-family: ����; +} + +div.infoInimgAndInfo span.juhuasuanTime { + color: #FFC057; + font-weight: bold; +} + +div.infoInimgAndInfo div.gouwujuanDiv { + margin-top: 5px; +} + +div.infoInimgAndInfo div.originalDiv { + margin-top: 5px; +} + +div.infoInimgAndInfo div.promotionDiv { + margin-top: 0px; +} + +div.infoInimgAndInfo div.productPriceDiv { + background-image: url(../../img/site/priceBackground.png); + height: 102px; + padding: 10px; + color: #666666; +} + +div.infoInimgAndInfo span.originalPriceDesc { + color: #999999; + display: inline-block; + width: 68px; +} + +div.infoInimgAndInfo span.promotionPriceDesc { + color: #999999; + display: inline-block; + width: 68px; + position: relative; + left: 0px; + top: -10px; +} + +div.infoInimgAndInfo span.originalPriceYuan { + font-family: Arial; + font-size: 12px; +} + +div.infoInimgAndInfo span.originalPrice { + font-family: Arial; + font-size: 12px; + color: #333333; + text-decoration: line-through; +} + +div.infoInimgAndInfo span.promotionPriceYuan { + font-family: Arial; + font-size: 18px; + color: #C40000; + /* vertical-align: top; */ +} + +div.infoInimgAndInfo span.promotionPrice { + color: #c40000; + font-family: Arial; + font-size: 30px; + font-weight: bold; + /* vertical-align: top; */ + /* vertical-align: middle; */ +} + +div.infoInimgAndInfo div.productSaleAndReviewNumber { + margin: 20px 0px; + border-top-style: dotted; + border-top-color: #C9C9C9; + border-top-width: 1px; + border-bottom-style: dotted; + border-bottom-color: #C9C9C9; + border-bottom-width: 1px; + padding: 10px; +} + +div.infoInimgAndInfo div.productSaleAndReviewNumber div { + display: inline-block; + width: 49%; + text-align: center; + color: #999999; + font-size: 12px; +} + +div.infoInimgAndInfo div.productSaleAndReviewNumber div:first-child { + border-right-width: 1px; + border-right-style: solid; + border-right-color: #E5DFDA; +} + +div.infoInimgAndInfo div.productNumber { + color: #999999; +} + +div.infoInimgAndInfo span.productNumberSettingSpan { + border: 1px solid #999; + display: inline-block; + width: 43px; + height: 32px; + padding: 7px 0; +} + +div.infoInimgAndInfo input.productNumberSetting { + border: 0px; + height: 80%; + width: 80%; +} + +div.productNumber span.glyphicon { + font-size: 6px; +} + +div.productNumber span.arrow { + display: inline-block; + width: 22px; + height: 32px; + vertical-align:top; +} + +div.productNumber span.updown img{ + display:inline-block; + vertical-align:top; +} +div.productNumber span.updown { + border: 1px solid #999; + display: block; + width: 20px; + height: 14px; + text-align: center; + padding-top:4px; +} + +div.productNumber span.updownMiddle { + height: 4px; + display: block; +} + +div.serviceCommitment { + margin: 20px 0px; +} + +div.infoInimgAndInfo span.serviceCommitmentDesc { + color: #999999; +} + +div.infoInimgAndInfo span.serviceCommitmentLink a { + color: #666666; +} + +div.productDetailDiv { + width: 790px; + margin: 40px auto; +} + +div.productReviewDiv { + width: 790px; + margin: 40px auto; +} + +div.productReviewContentPart { + padding-top: 50px; +} + +div.productDetailTopPart { + border: 1px solid #DFDFDF; + border-left-width: 0px; +} + +div.productReviewTopPart { + border: 1px solid #DFDFDF; +} + +div.productParamterPart { + border: 1px solid #DFDFDF; + padding: 40px; +} + +div.productParamter { + color: #999999; + font-weight: bold; + margin-bottom: 20px; +} + +div.productParamterList span { + display: block; + width: 220px; + float: left; + padding: 8px 0px; + color: #666666; +} + +a.selected { + border-left: 1px solid #cfbfb1; + border-right: 1px solid #cfbfb1; + color: #b10000; + display: inline-block; + font-weight: bold; + line-height: 46px; + width: 90px; + text-align: center; + position: relative; +} + +a.selected:after { + border-color: #b00000 transparent transparent; + border-style: solid; + border-width: 5px; + content: ""; + display: block; + width: 0; + height: 0; + position: absolute; + top: -1px; + left: 50%; + margin-left: -5px; +} + +a.selected:before { + border-color: #b00000; + border-style: solid; + border-width: 1px; + content: ""; + display: block; + width: 90px; + height: 0; + position: absolute; + top: -1px; + margin-left: -1px; +} + +a.productDetailTopReviewLink { + padding: 0px 20px; + border-right: 1px dotted #D2D2D2; + color: #333333; +} + +span.productDetailTopReviewLinkNumber { + color: #3355B9; +} + +span.productReviewTopReviewLinkNumber { + color: #3355B9; +} + +div.productDetailImagesPart img { + display: block; margin 20px 0px; + width: 790px; +} + +a.productReviewTopPartSelectedLink { + padding: 0px 20px; + color: #333333; +} + +div.productReviewItem { + border-bottom: 1px solid #E3E3E3; + margin: 10px 0px; +} + +div.productReviewItem div.productReviewItemDesc { + width: 80%; + display: inline-block; + color: #333333; + height: 94px; + margin: 5px 20px; + float: left; +} + +div.productReviewItem div.productReviewItemUserInfo { + color: #404040; + margin: 5px 20px; + overflow: hidden; + padding: 20px 0; +} + +div.productReviewItemContent { + /* margin:0px 0px -30px 0px; */ + +} + +div.productReviewItemDate { + margin: 15px 0px 0px 0px; + color: #CCCCCC; +} + +span.userInfoGrayPart { + color: #999999; +} + +div.productReviewDiv { + display: none; +} + +div.buyPageDiv { + margin: 20px auto; + max-width: 1013px; +} + +div.buyDiv { + margin: 20px auto; + text-align: center; +} + +div.buyPageDiv button { + display: inline-block; + margin: 0px 10px; + width: 180px; + height: 40px; +} + +div.buyDiv button { + display: inline-block; + margin: 0px 10px; + width: 180px; + height: 40px; +} + +button.buyButton { + border: 1px solid #C40000; + background-color: #FFEDED; + text-align: center; + line-height: 40px; + font-size: 16px; + /* font-weight:700; */ + color: #C40000; + font-family: arial; +} + +button.addCartButton { + border: 1px solid #C40000; + background-color: #C40000; + text-align: center; + line-height: 40px; + font-size: 16px; + /* font-weight:700; */ + color: white; + font-family: arial; +} + +button.addCartButton span.glyphicon { + font-size: 12px; + margin-right: 8px; +} + +div.address { + margin: 20px 5px; + text-align: left; +} + +div.addressTip, div.productListTip { + color: #333333; + font-size: 16px; + font-weight: bold; + text-align: left; + margin-bottom: 30px; +} + +table.addressTable { + margin: 20px 20px; + width: 600px; +} + +table.addressTable td.firstColumn { + width: 100px; +} + +table.addressTable td { + color: #333333; + text-align: right; + vertical-align: top; + padding-right: 5px; + text-align: left; + height: 30px; + font-size:12px; +} + +span.redStar { + color: red; + font-size: 8px; +} + +table.addressTable td input { + border: 1px solid #AFAFAF; + width: 200px; +} + +table.addressTable td textarea { + border: 1px solid #AFAFAF; + margin-bottom: 10px; + width: 400px; +} + +img.tmallbuy { + width: 15px; +} + +a.marketLink { + color: black; + font-size: 12px; + font-family: ����; + font-weight: normal; +} + +a.marketLink:hover { + color: black; + font-size: 12px; + text-decoration: underline; + font-family: ����; + font-weight: normal; +} + +span.wangwangGif { + display: inline-block; + width: 25px; + height: 25px; + background-image: url(../../img/site/wangwang.gif); + background-repeat: no-repeat; + background-color: transparent; + background-attachment: scroll; + background-position: -83px -0px; + position: relative; + top: 8px; + left: 2px; +} + +table.productListTable { + width: 100%; + border-collapse: separate; +} + +table.productListTable th { + color: #999999; + font-family: ����; + font-weight: normal; + font-size: 12px; + text-align: center; + padding-bottom: 5px; +} + +th.productListTableFirstColumn { + text-align: left !important; +} + +table.productListTable tr.rowborder td { + background-color: #b2d1ff; + border-right: 2px solid #fff; + height: 3px; +} + +img.orderItemImg { + width: 50px; + height: 50px; + border: 1px solid #E9E9E9; +} + +tr.orderItemTR td { + padding: 10px 0px; +} + +a.orderItemProductLink { + color: #666666; + display: block; +} + +a.orderItemProductLink:hover { + color: #666666; + text-decoration: underline; +} + +td.orderItemProductInfo { + text-align: left; +} + +td.orderItemProductInfo img { + height: 16px; +} + +span.orderItemProductPrice, span.orderItemProductNumber { + color: #000000; +} + +span.orderItemUnitSum { + color: #CC0000; + font-weight: bold; +} + +tr.orderItemTR td { + border-bottom: 1px solid #E5E5E5; +} + +tbody.productListTableTbody td { + text-align: center; + font-size:12px; +} + +tbody.productListTableTbody td.orderItemFirstTD { + text-align: left; +} + +tbody.productListTableTbody td.orderItemProductInfo { + text-align: left; +} + +td.orderItemFirstTD, td.orderItemLastTD { + border-bottom: 0px solid black !important; +} + +label.orderItemDeliveryLabel { + color: #666666; + font-family: ����; + font-size: 12px; + font-weight: normal; +} + +select.orderItemDeliverySelect { + width: 100px; + height: 23px; +} + +div.orderItemSumDiv span { + color: #999999; +} + +div.orderItemSumDiv { + padding: 20px; + border-top: 2px solid #B4D0FF; + background-color: #F2F6FF; + height: 50px; +} + +textarea.leaveMessageTextarea { + border: 1px solid #FFAD35; + width: 250px; + height: 60px; + resize: none; +} + +span.leaveMessageText { + display: inilne-block; + margin-right: 10px; + float: left; +} + +span.leaveMessageTextareaSpan { + display: inilne-block; +} + +div.orderItemTotalSumDiv { + margin: 40px; + height: 40px; +} + +div.orderItemTotalSumDiv span { + color: #999999; +} + +span.orderItemTotalSumSpan { + color: #C40000 !important; + font-size: 22px; + font-weight: bold; + border-bottom: 1px dotted #F2F6FF; +} + +div.submitOrderDiv { + height: 40px; + margin: 20px 0px; +} + +button.submitOrderButton { + border: 1px solid #C40000; + background-color: #C40000; + text-align: center; + line-height: 40px; + font-size: 14px; + font-weight: 700; + color: white; + float: right; +} + +div.aliPayPageLogo { + margin: 20px; +} + +div.aliPayPageDiv { + text-align: center; + padding-bottom: 40px; + max-width: 1013px; + margin: 10px auto; +} + +span.confirmMoneyText { + color: #4D4D4D; +} + +span.confirmMoney { + display: block; + color: #FF6600; + font-weight: bold; + font-size: 20px; + margin: 10px; +} + +img.aliPayImg { + /* width:230px; */ + /* height:230px; */ + +} + +button.confirmPay { + background-color: #00AAEE; + border: 1px solid #00AAEE; + text-align: center; + line-height: 31px; + font-size: 14px; + font-weight: 700; + color: white; + width: 107px; + margin-top: 20px; +} + +div.payedDiv { + border: 1px solid #D4D4D4; + max-width: 1013px; + margin: 10px auto 20px auto; +} + +div.payedTextDiv { + height: 61px; + background-color: #ECFFDC; + padding: 17px 0px 0px 25px; +} + +div.payedTextDiv span { + font-weight: bold; + font-size: 14px; + margin-left: 10px; +} + +div.payedAddressInfo { + padding: 26px 35px; +} + +div.payedAddressInfo li { + background-image: url("../../img/site/li_dot.png"); + background-repeat: no-repeat; + background-color: transparent; + background-attachment: scroll; + background-position: 0px 13px; + list-style-type: none; + color: #333333; + padding-left: 15px; + padding-top: 5px; + /* background: rgba(0, 0, 0, 0) url("../../img/site/li_dot.png") no-repeat scroll 0 13px; */ +} + +span.payedInfoPrice { + color: #B10000; + font-weight: bold; + font-size: 14px; + font-family: arial; +} + +a.payedCheckLink { + color: #2D8CBA; +} + +a.payedCheckLink:hover { + color: #2D8CBA; + text-decoration: underline; +} + +div.paedCheckLinkDiv { + margin-left: 38px; +} + +div.payedSeperateLine { + border-top: 1px dotted #D4D4D4; + margin: 0px 31px; +} + +div.warningDiv { + margin: 23px 45px; +} + +div.warningDiv { + color: black; +} + +div.cartDiv { + max-width: 1013px; + margin: 10px auto; + color: black; +} + +span.cartTitlePrice { + color: #C40000; + font-size: 14px; + font-weight: bold; + margin-left: 5px; + margin-right: 3px; +} + +div.cartTitle button { + background-color: #AAAAAA; + border: 1px solid #AAAAAA; + color: white; + width: 53px; + height: 25px; + border-radius: 2px; +} + +table.cartProductTable { + width: 100%; + font-size:12px; +} + +table.cartProductTable th { + font-weight: normal; + color: #3C3C3C; + padding: 20px 20px; +} + +img.cartProductImg { + padding: 1px; + border: 1px solid #EEEEEE; + width: 80px; + height: 80px; +} + +a.cartProductLink { + color: #3C3C3C; +} + +a.cartProductLink:hover { + color: #C40000; + text-decoration: underline; +} + +div.cartProductLinkOutDiv { + position: relative; + height: 80px; +} + +div.cartProductLinkInnerDiv { + position: absolute; + bottom: 0; + height: 20px; +} + +tr.cartProductItemTR td { + padding: 20px 20px; +} + +tr.cartProductItemTR { + border: 1px solid #CCCCCC; +} + +span.cartProductItemOringalPrice { + text-decoration: line-through; + color: #9C9C9C; + display: block; + font-weight: bold; + font-size: 14px; +} + +span.cartProductItemPromotionPrice { + font-family: Arial; + font-size: 14px; + font-weight: bold; + color: #C40000; +} + +span.cartProductItemSmallSumPrice { + font-family: Arial; + font-size: 14px; + font-weight: bold; + color: #C40000; +} + +div.cartProductChangeNumberDiv { + border: solid 1px #E5E5E5; + width: 80px; +} + +div.cartProductChangeNumberDiv input { + border: solid 1px #AAAAAA; + width: 42px; + display: inline-block; +} + +div.cartProductChangeNumberDiv a { + text-decoration: none; +} + +div.cartProductChangeNumberDiv a { + width: 14px; + display: inline-block; + text-align: center; + color: black; + text-decoration: none; +} + +img.cartProductItemIfSelected, img.selectAllItem { + cursor: pointer; +} + +div.cartFoot { + background-color: #E5E5E5; + line-height: 50px; + margin: 20px 0px; + color: black; + padding-left: 20px; +} + +span.cartSumNumber { + color: #C40000; + font-weight: bold; + font-size: 16px; +} + +span.cartSumPrice { + color: #C40000; + font-weight: bold; + font-size: 20px; +} + +div.cartFoot button { + background-color: #AAAAAA; + border: 0px solid #AAAAAA; + color: white; + height: height%; + width: 120px; + height: 50px; + font-size: 20px; + text-align: center; + /* border-radius: 2px; */ +} + +div.boughtDiv { + max-width: 1013px; + margin: 10px auto; +} + +div.orderType div.selectedOrderType { + border-bottom: 2px solid #C40000; +} + +div.orderType div { + border-bottom: 2px solid #E8E8E8; + float: left; +} + +table.orderListTitleTable { + border: 1px solid #E8E8E8; + width: 100%; + margin: 20px 0px; + background-color: #F5F5F5; + text-align: center; +} + +table.orderListTitleTable td { + padding: 12px 0px; +} + +div.orderType a { + border-right: 1px solid #E8E8E8; + float: left; + font-size: 16px; + font-weight: bold; + color: black; + margin-bottom: 10px; + padding: 0px 20px; + text-decoration: none; +} + +div.orderType div.selectedOrderType a { + color: #C40000; +} + +div.orderType a:hover { + color: #C40000; + text-decoration: none; +} + +div.orderTypeLastOne { + overflow: hidden; + float: none !important; + border-bottom: 2px solid #E8E8E8; +} + +a.noRightborder { + border-right-width: 0px !important; +} + +table.orderListItemTable { + border: 2px solid #ECECEC; + width: 100%; + margin: 20px 0px; +} + +table.orderListItemTable:hover { + border: 2px solid #aaa !important; +} + +tr.orderListItemFirstTR { + background-color: #F1F1F1; + font-size:12px; +} + +table.orderListItemTable td { + padding: 8px 10px; +} + +div.orderItemWangWangGif { + display: inline-block; + width: 67px; + height: 22px; + background-image: url(../../img/site/wangwang.gif); + background-repeat: no-repeat; + background-color: transparent; + background-attachment: scroll; + background-position: -0px -0px; + position: relative; + top: 0px; + left: 2px; +} + +span.orderListItemDelete { + display: inline-block; + margin: 0px 10px; + color: #999999; + font-size: 16px; +} + +div.orderListItemProductLinkOutDiv { + position: relative; + height: 80px; + font-size:12px; +} + +div.orderListItemProductLinkInnerDiv { + position: absolute; + bottom: 0px; +} + +div.orderListItemProductOriginalPrice { + color: #999999; + font-size: 14px; +} + +div.orderListItemProductPrice { + color: #3C3C3C; + font-size: 14px; +} + +div.orderListItemProductRealPrice { + color: #3C3C3C; + font-size: 14px; + font-weight: bold; +} + +div.orderListItemPriceWithTransport { + color: #6C6C6C; + font-size: 12px; +} + +td.orderListItemProductRealPriceTD { + text-align: center; +} + +button.orderListItemConfirm { + background-color: #66B6FF; + border-radius: 2px; + color: white; + font-size: 12px; + font-weight: bold; + border-width: 0px; + padding: 6px 12px; +} + +button.orderListItemConfirm:hover { + background-color: #118ADB; +} + +button.orderListItemReview { + border: 1px solid #DCDCDC; + background-color: #fff; + border-radius: 2px; + color: #3C3C3C; + font-size: 12px; + font-weight: bold; + padding: 6px 12px; +} + +button.orderListItemReview:hover { + border-color: #C40000; + color: #C40000; +} + +td.orderItemDeleteTD { + text-align: right; +} + +td.orderListItemButtonTD { + text-align: center; +} + +span.orderListItemNumber { + color: #3C3C3C; +} + +td.orderListItemNumberTD { + text-align: center; +} + +div.confirmPayPageDiv { + max-width: 1013px; + margin: 10px auto; +} + +div.confirmPayImageDiv { + margin: 40px auto 80px auto; + width: 900px; + position: relative; +} + +div.confirmPayImageDiv div { + color: #999999; +} + +div.confirmPayTime1 { + position: absolute; + top: 100px; + left: -20px; +} + +div.confirmPayTime2 { + position: absolute; + top: 100px; + left: 190px; +} + +div.confirmPayTime3 { + position: absolute; + top: 100px; + left: 400px; +} + +div.confirmPayOrderInfoText { + margin: 10px 10px 0px 10px; + font-size: 16px; + font-weight: bold; + color: black; + padding-bottom: 15px; + border-bottom: 1px solid #ADC8E6; +} + +div.confirmPayOrderItemDiv { + margin: 0px 20px; +} + +div.confirmPayOrderItemText { + margin: 20px 10px; + font-size: 14px; + font-weight: bold; + color: black; +} + +table.confirmPayOrderItemTable thead { + background-color: #E8F2FF; + height: 33px; +} + +table.confirmPayOrderItemTable tr { + border: 1px solid #DDDDDD; +} + +table.confirmPayOrderItemTable { + border: 1px solid #DDDDDD; + width: 100%; +} + +span.conformPayProductPrice { + font-size: 18px; + font-weight: bold; + color: #666666; +} + +table.confirmPayOrderItemTable th, table.confirmPayOrderItemTable td { + text-align: center; +} + +table.confirmPayOrderItemTable td { + padding: 20px; +} + +td.confirmPayOrderItemProductLink { + text-align: left !important; +} + +div.confirmPayOrderItemText { + color: black; + font-weight: normal; +} + +span.confirmPayOrderItemSumPrice { + color: #C40000; +} + +table.confirmPayOrderDetailTable { + width: 100%; + border-top: 1px solid #DDDDDD; +} + +table.confirmPayOrderDetailTable td { + padding: 8px; + color: black; + font-size: 14px; +} + +div.confirmPayOrderDetailDiv { + margin: 40px; +} + +span.confirmPayOrderDetailWangWangGif { + display: inline-block; + width: 67px; + height: 22px; + background-image: url(../../img/site/wangwang.gif); + background-repeat: no-repeat; + background-color: transparent; + background-attachment: scroll; + background-position: -0px -0px; + position: relative; + top: 0px; + left: 2px; +} + +div.confirmPayButtonDiv { + border: 1px solid #F58B0F; + margin: 20px; +} + +div.confirmPayWarning { + margin: 20px 80px; + font-size: 18px; + color: red; + font-weight: bold; +} + +button.confirmPayButton:hover { + background-color: #F6AE30; +} + +button.confirmPayButton { + margin: 20px 80px; + width: 67px; + height: 30px; + border: 1px solid #E67C00; + background-color: #F4A21D; + border-radius: 4px; + color: white; +} + +div.orderFinishDiv { + border: 1px solid #E5E5E5; + padding: 40px; + max-width: 1013px; + margin: 10px auto; +} + +div.orderFinishDiv span { + font-size: 14px; + color: black; + font-weight: bold; + margin-left: 20px; + padding-top: 20px; +} + +div.reviewDiv { + max-width: 1013px; + margin: 10px auto; +} + +div.reviewProductInfoRightDiv { + overflow: hidden; + border-top: 1px solid #E7E7E7; + padding: 30px 20px; +} + +div.reviewProductInfoImg { + border: 1px solid #E7E7E7; + width: 464px; + text-align: center; + float: left; +} + +div.reviewProductInfoRightText { + color: black; + font-size: 16px; + font-weight: bold; +} + +span.reviewProductInfoTablePrice { + color: #C40000; + font-size: 20px; + font-weight: bold; +} + +span.reviewProductInfoTableSellNumber { + color: #C40000; + font-size: 14px; + font-weight: bold; +} + +table.reviewProductInfoTable { + margin: 20px 10px; +} + +table.reviewProductInfoTable td { + padding-bottom: 5px; + color: #999999; +} + +div.reviewProductInfoRightBelowDiv { + border: 1px solid #F6F5F3; + background-color: #FDFBFA; + height: 166px; + padding: 16px 81px; +} + +span.reviewProductInfoRightBelowImg { + background-color: white; + border: 1px solid #E1E1E1; + display: inline-block; + width: 23px; + height: 42px; + background-image: url(../../img/site/reviewLight.png); + background-repeat: no-repeat; + padding: 0px; +} + +span.reviewProductInfoRightBelowText { + border: 1px solid #EFEFEF; + /* border-left-width:1px; */ + display: inline-block; + width: 200px; + height: 42px; + padding: 4px; + position: relative; + left: -4px; + top: -7px; + color: #666666; +} + +div.reviewStasticsLeft { + width: 180px; + float: left; +} + +div.reviewStasticsLeftTop { + background-color: #C40000; + height: 6px; +} + +div.reviewStasticsLeftContent { + line-height: 29px; + border-left: 1px solid #D5D4D4; + border-right: 1px solid #D5D4D4; + background-color: #F6F5F1; + text-align: center; + font-size: 14px; + color: #363535; + font-weight: bold; +} + +span.reviewStasticsNumber { + color: #284CA5; +} + +div.reviewStasticsLeftFoot { + height: 6px; + border-left: 1px solid #D5D4D4; + border-bottom: 1px solid #D5D4D4; + background-color: #F6F5F1; +} + +div.reviewStasticsRight { + overflow: hidden; +} + +div.reviewStasticsRightEmpty { + height: 35px; +} + +div.reviewStasticsFoot { + background-color: #F6F5F1; + border: 1px solid #D5D4D4; + border-left-width: 0px; + height: 6px; +} + +div.makeReviewDiv { + border: 1px solid #D1CCC8; + margin: 20px 0px; + background-color: #EFEFEF; +} + +div.makeReviewText { + font-size: 16px; + color: #333333; + font-weight: bold; + margin: 20px 40px; +} + +table.makeReviewTable { + margin: 20px 40px; +} + +table.makeReviewTable td { + border: 1px solid #E7E7E7; + padding: 10px; + background-color: white; +} + +table.makeReviewTable textarea { + border-width: 0px; + resize: none; + width: 420px; + height: 120px; +} + +td.makeReviewTableFirstTD { + background-color: #F6F6F6; +} + +div.makeReviewButtonDiv { + background-color: white; + text-align: center; + padding: 15px; +} + +div.makeReviewButtonDiv button { + width: 72px; + height: 26px; + border-radius: 2px; + background-color: #C40000; + color: white; + border-width: 0px; + font-weight: bold; +} + +div.registerDiv { + margin: 10px 20px; + text-align: center; +} + +table.registerTable { + color: #3C3C3C; + font-size: 16px; + table-layout: fixed; + margin-top: 50px; +} + +table.registerTable td { + /* border:1px dotted skyblue !important; */ + padding: 10px 30px; +} + +td.registerTableLeftTD { + width: 300px; + text-align: right; +} + +td.registerTableRightTD { + width: 300px; + text-align: left; +} + +td.registerTip { + font-weight: bold; +} + +table.registerTable input { + border: 1px solid #DEDEDE; + width: 213px; + height: 36px; + font-size: 14px; +} + +td.registerButtonTD { + text-align: center; +} + +table.registerTable button { + width: 170px; + height: 36px; + border-radius: 2px; + color: white; + background-color: #C40000; + border-width: 0px; +} + +table.registerTable { + +} + +div.registerSuccessDiv { + margin: 10px 20px; + background-color: #F3FDF6; + border: 1px solid #DEF3E6; + font-size: 16px; + color: #3C3C3C; + padding: 20px 130px; +} + +div.categoryPageDiv { + max-width: 1013px; + margin: 10px auto; +} + +div.searchResultDiv { + max-width: 1013px; + margin: 10px auto; + min-height: 300px; +} + +div.productPageDiv { + max-width: 1013px; + margin: 10px auto; +} + +div.categoryPictureInProductPageDiv { + width: 100%; + margin: 10px auto; + text-align: center; +} + +div.reviewStasticsDiv { + margin-top: 20px; +} + +div.registerErrorMessageDiv { + width: 600px; + margin: 0px auto; + height: 50px; + visibility: hidden; +} + +td.orderItemProductInfoPartTD { + border-bottom: solid 1px #ECECEC; +} + +td.orderItemOrderInfoPartTD { + border: solid 1px #ECECEC; +} + +div.reviewDate { + width: 100px; +} + +div.reviewDivlistReviewsEach div { + display: inline-block; +} + +div.reviewDate { + color: #CCCCDD; +} + +div.reviewContent { + color: #333333; + width: 698px; +} + +div.reviewUserInfo { + color: #333333; +} + +div.reviewDivlistReviewsEach { + padding: 20px; + border-bottom: 1px solid #ECECEC; +} + +span.reviewUserInfoAnonymous { + color: #CCCCDD; + margin-left: 5px; +} + +a.productLink { + height: 34px; +} + +img.carouselImage { + height: 510px !important; +} + +div.noMatch { + font-size: 20px; + width: 200px; + margin: 100px auto; + color: #888; +} + +table.cartProductTable th.operation{ + width:80px; +} +table.cartProductTable th.selectAndImage{ + width:150px; +} + +table td{ + font-size:12px; +} diff --git a/src/main/webapp/img/category/1.png b/src/main/webapp/img/category/1.png new file mode 100644 index 0000000..77679e3 Binary files /dev/null and b/src/main/webapp/img/category/1.png differ diff --git a/src/main/webapp/img/category/10.jpg b/src/main/webapp/img/category/10.jpg new file mode 100644 index 0000000..72d1574 Binary files /dev/null and b/src/main/webapp/img/category/10.jpg differ diff --git a/src/main/webapp/img/category/11.jpg b/src/main/webapp/img/category/11.jpg new file mode 100644 index 0000000..970db83 Binary files /dev/null and b/src/main/webapp/img/category/11.jpg differ diff --git a/src/main/webapp/img/category/12.jpg b/src/main/webapp/img/category/12.jpg new file mode 100644 index 0000000..72d1574 Binary files /dev/null and b/src/main/webapp/img/category/12.jpg differ diff --git a/src/main/webapp/img/category/2.jpg b/src/main/webapp/img/category/2.jpg new file mode 100644 index 0000000..5937801 Binary files /dev/null and b/src/main/webapp/img/category/2.jpg differ diff --git a/src/main/webapp/img/category/6.jpg b/src/main/webapp/img/category/6.jpg new file mode 100644 index 0000000..70bb7a0 Binary files /dev/null and b/src/main/webapp/img/category/6.jpg differ diff --git a/src/main/webapp/img/category/60.jpg b/src/main/webapp/img/category/60.jpg new file mode 100644 index 0000000..afa4f4e Binary files /dev/null and b/src/main/webapp/img/category/60.jpg differ diff --git a/src/main/webapp/img/category/64.jpg b/src/main/webapp/img/category/64.jpg new file mode 100644 index 0000000..daf2880 Binary files /dev/null and b/src/main/webapp/img/category/64.jpg differ diff --git a/src/main/webapp/img/category/66.jpg b/src/main/webapp/img/category/66.jpg new file mode 100644 index 0000000..5646dea Binary files /dev/null and b/src/main/webapp/img/category/66.jpg differ diff --git a/src/main/webapp/img/category/68.jpg b/src/main/webapp/img/category/68.jpg new file mode 100644 index 0000000..9337d19 Binary files /dev/null and b/src/main/webapp/img/category/68.jpg differ diff --git a/src/main/webapp/img/category/69.jpg b/src/main/webapp/img/category/69.jpg new file mode 100644 index 0000000..35faf2d Binary files /dev/null and b/src/main/webapp/img/category/69.jpg differ diff --git a/src/main/webapp/img/category/7.jpg b/src/main/webapp/img/category/7.jpg new file mode 100644 index 0000000..6b399e5 Binary files /dev/null and b/src/main/webapp/img/category/7.jpg differ diff --git a/src/main/webapp/img/category/70.jpg b/src/main/webapp/img/category/70.jpg new file mode 100644 index 0000000..9690b4d Binary files /dev/null and b/src/main/webapp/img/category/70.jpg differ diff --git a/src/main/webapp/img/category/71.jpg b/src/main/webapp/img/category/71.jpg new file mode 100644 index 0000000..dedee56 Binary files /dev/null and b/src/main/webapp/img/category/71.jpg differ diff --git a/src/main/webapp/img/category/72.jpg b/src/main/webapp/img/category/72.jpg new file mode 100644 index 0000000..3f10bac Binary files /dev/null and b/src/main/webapp/img/category/72.jpg differ diff --git a/src/main/webapp/img/category/73.jpg b/src/main/webapp/img/category/73.jpg new file mode 100644 index 0000000..a95a8a3 Binary files /dev/null and b/src/main/webapp/img/category/73.jpg differ diff --git a/src/main/webapp/img/category/74.jpg b/src/main/webapp/img/category/74.jpg new file mode 100644 index 0000000..09d87a2 Binary files /dev/null and b/src/main/webapp/img/category/74.jpg differ diff --git a/src/main/webapp/img/category/75.jpg b/src/main/webapp/img/category/75.jpg new file mode 100644 index 0000000..4fa74be Binary files /dev/null and b/src/main/webapp/img/category/75.jpg differ diff --git a/src/main/webapp/img/category/76.jpg b/src/main/webapp/img/category/76.jpg new file mode 100644 index 0000000..dc4f995 Binary files /dev/null and b/src/main/webapp/img/category/76.jpg differ diff --git a/src/main/webapp/img/category/77.jpg b/src/main/webapp/img/category/77.jpg new file mode 100644 index 0000000..224491e Binary files /dev/null and b/src/main/webapp/img/category/77.jpg differ diff --git a/src/main/webapp/img/category/78.jpg b/src/main/webapp/img/category/78.jpg new file mode 100644 index 0000000..45d838d Binary files /dev/null and b/src/main/webapp/img/category/78.jpg differ diff --git a/src/main/webapp/img/category/79.jpg b/src/main/webapp/img/category/79.jpg new file mode 100644 index 0000000..c81c0aa Binary files /dev/null and b/src/main/webapp/img/category/79.jpg differ diff --git a/src/main/webapp/img/category/8.jpg b/src/main/webapp/img/category/8.jpg new file mode 100644 index 0000000..d63b75c Binary files /dev/null and b/src/main/webapp/img/category/8.jpg differ diff --git a/src/main/webapp/img/category/80.jpg b/src/main/webapp/img/category/80.jpg new file mode 100644 index 0000000..1d38c8c Binary files /dev/null and b/src/main/webapp/img/category/80.jpg differ diff --git a/src/main/webapp/img/category/81.jpg b/src/main/webapp/img/category/81.jpg new file mode 100644 index 0000000..d2e119b Binary files /dev/null and b/src/main/webapp/img/category/81.jpg differ diff --git a/src/main/webapp/img/category/82.jpg b/src/main/webapp/img/category/82.jpg new file mode 100644 index 0000000..ea081bf Binary files /dev/null and b/src/main/webapp/img/category/82.jpg differ diff --git a/src/main/webapp/img/category/83.jpg b/src/main/webapp/img/category/83.jpg new file mode 100644 index 0000000..0547c07 Binary files /dev/null and b/src/main/webapp/img/category/83.jpg differ diff --git a/src/main/webapp/img/category/9.jpg b/src/main/webapp/img/category/9.jpg new file mode 100644 index 0000000..18ca860 Binary files /dev/null and b/src/main/webapp/img/category/9.jpg differ diff --git a/src/main/webapp/img/lunbo/1.jpg b/src/main/webapp/img/lunbo/1.jpg new file mode 100644 index 0000000..6fe30ac Binary files /dev/null and b/src/main/webapp/img/lunbo/1.jpg differ diff --git a/src/main/webapp/img/lunbo/2.jpg b/src/main/webapp/img/lunbo/2.jpg new file mode 100644 index 0000000..6569d2e Binary files /dev/null and b/src/main/webapp/img/lunbo/2.jpg differ diff --git a/src/main/webapp/img/lunbo/3.jpg b/src/main/webapp/img/lunbo/3.jpg new file mode 100644 index 0000000..59c419d Binary files /dev/null and b/src/main/webapp/img/lunbo/3.jpg differ diff --git a/src/main/webapp/img/lunbo/4.jpg b/src/main/webapp/img/lunbo/4.jpg new file mode 100644 index 0000000..10d9f24 Binary files /dev/null and b/src/main/webapp/img/lunbo/4.jpg differ diff --git a/src/main/webapp/img/lunbo/5.jpg b/src/main/webapp/img/lunbo/5.jpg new file mode 100644 index 0000000..6569d2e Binary files /dev/null and b/src/main/webapp/img/lunbo/5.jpg differ diff --git a/src/main/webapp/img/productDetail/10149.jpg b/src/main/webapp/img/productDetail/10149.jpg new file mode 100644 index 0000000..b045f96 Binary files /dev/null and b/src/main/webapp/img/productDetail/10149.jpg differ diff --git a/src/main/webapp/img/productDetail/10150.jpg b/src/main/webapp/img/productDetail/10150.jpg new file mode 100644 index 0000000..b9436d7 Binary files /dev/null and b/src/main/webapp/img/productDetail/10150.jpg differ diff --git a/src/main/webapp/img/productDetail/10151.jpg b/src/main/webapp/img/productDetail/10151.jpg new file mode 100644 index 0000000..15599bb Binary files /dev/null and b/src/main/webapp/img/productDetail/10151.jpg differ diff --git a/src/main/webapp/img/productDetail/10152.jpg b/src/main/webapp/img/productDetail/10152.jpg new file mode 100644 index 0000000..732e40e Binary files /dev/null and b/src/main/webapp/img/productDetail/10152.jpg differ diff --git a/src/main/webapp/img/productDetail/10153.jpg b/src/main/webapp/img/productDetail/10153.jpg new file mode 100644 index 0000000..6261998 Binary files /dev/null and b/src/main/webapp/img/productDetail/10153.jpg differ diff --git a/src/main/webapp/img/productDetail/10154.jpg b/src/main/webapp/img/productDetail/10154.jpg new file mode 100644 index 0000000..ae1c26e Binary files /dev/null and b/src/main/webapp/img/productDetail/10154.jpg differ diff --git a/src/main/webapp/img/productDetail/10160.jpg b/src/main/webapp/img/productDetail/10160.jpg new file mode 100644 index 0000000..6261998 Binary files /dev/null and b/src/main/webapp/img/productDetail/10160.jpg differ diff --git a/src/main/webapp/img/productDetail/10161.jpg b/src/main/webapp/img/productDetail/10161.jpg new file mode 100644 index 0000000..ae1c26e Binary files /dev/null and b/src/main/webapp/img/productDetail/10161.jpg differ diff --git a/src/main/webapp/img/productDetail/10162.jpg b/src/main/webapp/img/productDetail/10162.jpg new file mode 100644 index 0000000..15599bb Binary files /dev/null and b/src/main/webapp/img/productDetail/10162.jpg differ diff --git a/src/main/webapp/img/productDetail/10163.jpg b/src/main/webapp/img/productDetail/10163.jpg new file mode 100644 index 0000000..732e40e Binary files /dev/null and b/src/main/webapp/img/productDetail/10163.jpg differ diff --git a/src/main/webapp/img/productDetail/10164.jpg b/src/main/webapp/img/productDetail/10164.jpg new file mode 100644 index 0000000..710f5d5 Binary files /dev/null and b/src/main/webapp/img/productDetail/10164.jpg differ diff --git a/src/main/webapp/img/productDetail/10165.jpg b/src/main/webapp/img/productDetail/10165.jpg new file mode 100644 index 0000000..e606b55 Binary files /dev/null and b/src/main/webapp/img/productDetail/10165.jpg differ diff --git a/src/main/webapp/img/productDetail/10171.jpg b/src/main/webapp/img/productDetail/10171.jpg new file mode 100644 index 0000000..15599bb Binary files /dev/null and b/src/main/webapp/img/productDetail/10171.jpg differ diff --git a/src/main/webapp/img/productDetail/10172.jpg b/src/main/webapp/img/productDetail/10172.jpg new file mode 100644 index 0000000..b045f96 Binary files /dev/null and b/src/main/webapp/img/productDetail/10172.jpg differ diff --git a/src/main/webapp/img/productDetail/10173.jpg b/src/main/webapp/img/productDetail/10173.jpg new file mode 100644 index 0000000..710f5d5 Binary files /dev/null and b/src/main/webapp/img/productDetail/10173.jpg differ diff --git a/src/main/webapp/img/productDetail/10174.jpg b/src/main/webapp/img/productDetail/10174.jpg new file mode 100644 index 0000000..2ce9ca3 Binary files /dev/null and b/src/main/webapp/img/productDetail/10174.jpg differ diff --git a/src/main/webapp/img/productDetail/10175.jpg b/src/main/webapp/img/productDetail/10175.jpg new file mode 100644 index 0000000..76e716e Binary files /dev/null and b/src/main/webapp/img/productDetail/10175.jpg differ diff --git a/src/main/webapp/img/productDetail/10176.jpg b/src/main/webapp/img/productDetail/10176.jpg new file mode 100644 index 0000000..732e40e Binary files /dev/null and b/src/main/webapp/img/productDetail/10176.jpg differ diff --git a/src/main/webapp/img/productDetail/10182.jpg b/src/main/webapp/img/productDetail/10182.jpg new file mode 100644 index 0000000..6261998 Binary files /dev/null and b/src/main/webapp/img/productDetail/10182.jpg differ diff --git a/src/main/webapp/img/productDetail/10183.jpg b/src/main/webapp/img/productDetail/10183.jpg new file mode 100644 index 0000000..751f8d5 Binary files /dev/null and b/src/main/webapp/img/productDetail/10183.jpg differ diff --git a/src/main/webapp/img/productDetail/10184.jpg b/src/main/webapp/img/productDetail/10184.jpg new file mode 100644 index 0000000..1d08599 Binary files /dev/null and b/src/main/webapp/img/productDetail/10184.jpg differ diff --git a/src/main/webapp/img/productDetail/10185.jpg b/src/main/webapp/img/productDetail/10185.jpg new file mode 100644 index 0000000..76e716e Binary files /dev/null and b/src/main/webapp/img/productDetail/10185.jpg differ diff --git a/src/main/webapp/img/productDetail/10186.jpg b/src/main/webapp/img/productDetail/10186.jpg new file mode 100644 index 0000000..8f86838 Binary files /dev/null and b/src/main/webapp/img/productDetail/10186.jpg differ diff --git a/src/main/webapp/img/productDetail/10187.jpg b/src/main/webapp/img/productDetail/10187.jpg new file mode 100644 index 0000000..15599bb Binary files /dev/null and b/src/main/webapp/img/productDetail/10187.jpg differ diff --git a/src/main/webapp/img/productDetail/10193.jpg b/src/main/webapp/img/productDetail/10193.jpg new file mode 100644 index 0000000..ad204c4 Binary files /dev/null and b/src/main/webapp/img/productDetail/10193.jpg differ diff --git a/src/main/webapp/img/productDetail/10194.jpg b/src/main/webapp/img/productDetail/10194.jpg new file mode 100644 index 0000000..1d08599 Binary files /dev/null and b/src/main/webapp/img/productDetail/10194.jpg differ diff --git a/src/main/webapp/img/productDetail/10195.jpg b/src/main/webapp/img/productDetail/10195.jpg new file mode 100644 index 0000000..b045f96 Binary files /dev/null and b/src/main/webapp/img/productDetail/10195.jpg differ diff --git a/src/main/webapp/img/productDetail/10196.jpg b/src/main/webapp/img/productDetail/10196.jpg new file mode 100644 index 0000000..e606b55 Binary files /dev/null and b/src/main/webapp/img/productDetail/10196.jpg differ diff --git a/src/main/webapp/img/productDetail/10197.jpg b/src/main/webapp/img/productDetail/10197.jpg new file mode 100644 index 0000000..710f5d5 Binary files /dev/null and b/src/main/webapp/img/productDetail/10197.jpg differ diff --git a/src/main/webapp/img/productDetail/10198.jpg b/src/main/webapp/img/productDetail/10198.jpg new file mode 100644 index 0000000..6261998 Binary files /dev/null and b/src/main/webapp/img/productDetail/10198.jpg differ diff --git a/src/main/webapp/img/productDetail/1281.jpg b/src/main/webapp/img/productDetail/1281.jpg new file mode 100644 index 0000000..245c945 Binary files /dev/null and b/src/main/webapp/img/productDetail/1281.jpg differ diff --git a/src/main/webapp/img/productDetail/1282.jpg b/src/main/webapp/img/productDetail/1282.jpg new file mode 100644 index 0000000..da8b0f8 Binary files /dev/null and b/src/main/webapp/img/productDetail/1282.jpg differ diff --git a/src/main/webapp/img/productDetail/1283.jpg b/src/main/webapp/img/productDetail/1283.jpg new file mode 100644 index 0000000..cfef53e Binary files /dev/null and b/src/main/webapp/img/productDetail/1283.jpg differ diff --git a/src/main/webapp/img/productDetail/1284.jpg b/src/main/webapp/img/productDetail/1284.jpg new file mode 100644 index 0000000..e00c766 Binary files /dev/null and b/src/main/webapp/img/productDetail/1284.jpg differ diff --git a/src/main/webapp/img/productDetail/1285.jpg b/src/main/webapp/img/productDetail/1285.jpg new file mode 100644 index 0000000..97e736a Binary files /dev/null and b/src/main/webapp/img/productDetail/1285.jpg differ diff --git a/src/main/webapp/img/productDetail/1286.jpg b/src/main/webapp/img/productDetail/1286.jpg new file mode 100644 index 0000000..829904d Binary files /dev/null and b/src/main/webapp/img/productDetail/1286.jpg differ diff --git a/src/main/webapp/img/productDetail/1292.jpg b/src/main/webapp/img/productDetail/1292.jpg new file mode 100644 index 0000000..e00c766 Binary files /dev/null and b/src/main/webapp/img/productDetail/1292.jpg differ diff --git a/src/main/webapp/img/productDetail/1293.jpg b/src/main/webapp/img/productDetail/1293.jpg new file mode 100644 index 0000000..829904d Binary files /dev/null and b/src/main/webapp/img/productDetail/1293.jpg differ diff --git a/src/main/webapp/img/productDetail/1294.jpg b/src/main/webapp/img/productDetail/1294.jpg new file mode 100644 index 0000000..97881f9 Binary files /dev/null and b/src/main/webapp/img/productDetail/1294.jpg differ diff --git a/src/main/webapp/img/productDetail/1295.jpg b/src/main/webapp/img/productDetail/1295.jpg new file mode 100644 index 0000000..da8b0f8 Binary files /dev/null and b/src/main/webapp/img/productDetail/1295.jpg differ diff --git a/src/main/webapp/img/productDetail/1296.jpg b/src/main/webapp/img/productDetail/1296.jpg new file mode 100644 index 0000000..245c945 Binary files /dev/null and b/src/main/webapp/img/productDetail/1296.jpg differ diff --git a/src/main/webapp/img/productDetail/1297.jpg b/src/main/webapp/img/productDetail/1297.jpg new file mode 100644 index 0000000..cfef53e Binary files /dev/null and b/src/main/webapp/img/productDetail/1297.jpg differ diff --git a/src/main/webapp/img/productDetail/1303.jpg b/src/main/webapp/img/productDetail/1303.jpg new file mode 100644 index 0000000..97e736a Binary files /dev/null and b/src/main/webapp/img/productDetail/1303.jpg differ diff --git a/src/main/webapp/img/productDetail/1304.jpg b/src/main/webapp/img/productDetail/1304.jpg new file mode 100644 index 0000000..97881f9 Binary files /dev/null and b/src/main/webapp/img/productDetail/1304.jpg differ diff --git a/src/main/webapp/img/productDetail/1305.jpg b/src/main/webapp/img/productDetail/1305.jpg new file mode 100644 index 0000000..da8b0f8 Binary files /dev/null and b/src/main/webapp/img/productDetail/1305.jpg differ diff --git a/src/main/webapp/img/productDetail/1306.jpg b/src/main/webapp/img/productDetail/1306.jpg new file mode 100644 index 0000000..cfef53e Binary files /dev/null and b/src/main/webapp/img/productDetail/1306.jpg differ diff --git a/src/main/webapp/img/productDetail/1307.jpg b/src/main/webapp/img/productDetail/1307.jpg new file mode 100644 index 0000000..245c945 Binary files /dev/null and b/src/main/webapp/img/productDetail/1307.jpg differ diff --git a/src/main/webapp/img/productDetail/1308.jpg b/src/main/webapp/img/productDetail/1308.jpg new file mode 100644 index 0000000..38b4756 Binary files /dev/null and b/src/main/webapp/img/productDetail/1308.jpg differ diff --git a/src/main/webapp/img/productDetail/1314.jpg b/src/main/webapp/img/productDetail/1314.jpg new file mode 100644 index 0000000..cfef53e Binary files /dev/null and b/src/main/webapp/img/productDetail/1314.jpg differ diff --git a/src/main/webapp/img/productDetail/1315.jpg b/src/main/webapp/img/productDetail/1315.jpg new file mode 100644 index 0000000..97881f9 Binary files /dev/null and b/src/main/webapp/img/productDetail/1315.jpg differ diff --git a/src/main/webapp/img/productDetail/1316.jpg b/src/main/webapp/img/productDetail/1316.jpg new file mode 100644 index 0000000..38b4756 Binary files /dev/null and b/src/main/webapp/img/productDetail/1316.jpg differ diff --git a/src/main/webapp/img/productDetail/1317.jpg b/src/main/webapp/img/productDetail/1317.jpg new file mode 100644 index 0000000..245c945 Binary files /dev/null and b/src/main/webapp/img/productDetail/1317.jpg differ diff --git a/src/main/webapp/img/productDetail/1318.jpg b/src/main/webapp/img/productDetail/1318.jpg new file mode 100644 index 0000000..e00c766 Binary files /dev/null and b/src/main/webapp/img/productDetail/1318.jpg differ diff --git a/src/main/webapp/img/productDetail/1319.jpg b/src/main/webapp/img/productDetail/1319.jpg new file mode 100644 index 0000000..829904d Binary files /dev/null and b/src/main/webapp/img/productDetail/1319.jpg differ diff --git a/src/main/webapp/img/productDetail/1325.jpg b/src/main/webapp/img/productDetail/1325.jpg new file mode 100644 index 0000000..cfef53e Binary files /dev/null and b/src/main/webapp/img/productDetail/1325.jpg differ diff --git a/src/main/webapp/img/productDetail/1326.jpg b/src/main/webapp/img/productDetail/1326.jpg new file mode 100644 index 0000000..245c945 Binary files /dev/null and b/src/main/webapp/img/productDetail/1326.jpg differ diff --git a/src/main/webapp/img/productDetail/1327.jpg b/src/main/webapp/img/productDetail/1327.jpg new file mode 100644 index 0000000..da8b0f8 Binary files /dev/null and b/src/main/webapp/img/productDetail/1327.jpg differ diff --git a/src/main/webapp/img/productDetail/1328.jpg b/src/main/webapp/img/productDetail/1328.jpg new file mode 100644 index 0000000..38b4756 Binary files /dev/null and b/src/main/webapp/img/productDetail/1328.jpg differ diff --git a/src/main/webapp/img/productDetail/1329.jpg b/src/main/webapp/img/productDetail/1329.jpg new file mode 100644 index 0000000..97881f9 Binary files /dev/null and b/src/main/webapp/img/productDetail/1329.jpg differ diff --git a/src/main/webapp/img/productDetail/1330.jpg b/src/main/webapp/img/productDetail/1330.jpg new file mode 100644 index 0000000..e00c766 Binary files /dev/null and b/src/main/webapp/img/productDetail/1330.jpg differ diff --git a/src/main/webapp/img/productDetail/17.jpg b/src/main/webapp/img/productDetail/17.jpg new file mode 100644 index 0000000..4a18806 Binary files /dev/null and b/src/main/webapp/img/productDetail/17.jpg differ diff --git a/src/main/webapp/img/productDetail/1885.jpg b/src/main/webapp/img/productDetail/1885.jpg new file mode 100644 index 0000000..27b2206 Binary files /dev/null and b/src/main/webapp/img/productDetail/1885.jpg differ diff --git a/src/main/webapp/img/productDetail/1886.jpg b/src/main/webapp/img/productDetail/1886.jpg new file mode 100644 index 0000000..1124f0f Binary files /dev/null and b/src/main/webapp/img/productDetail/1886.jpg differ diff --git a/src/main/webapp/img/productDetail/1887.jpg b/src/main/webapp/img/productDetail/1887.jpg new file mode 100644 index 0000000..d08aa3d Binary files /dev/null and b/src/main/webapp/img/productDetail/1887.jpg differ diff --git a/src/main/webapp/img/productDetail/1888.jpg b/src/main/webapp/img/productDetail/1888.jpg new file mode 100644 index 0000000..6fa598b Binary files /dev/null and b/src/main/webapp/img/productDetail/1888.jpg differ diff --git a/src/main/webapp/img/productDetail/1889.jpg b/src/main/webapp/img/productDetail/1889.jpg new file mode 100644 index 0000000..8b593aa Binary files /dev/null and b/src/main/webapp/img/productDetail/1889.jpg differ diff --git a/src/main/webapp/img/productDetail/1890.jpg b/src/main/webapp/img/productDetail/1890.jpg new file mode 100644 index 0000000..81f2dc3 Binary files /dev/null and b/src/main/webapp/img/productDetail/1890.jpg differ diff --git a/src/main/webapp/img/productDetail/1896.jpg b/src/main/webapp/img/productDetail/1896.jpg new file mode 100644 index 0000000..0860300 Binary files /dev/null and b/src/main/webapp/img/productDetail/1896.jpg differ diff --git a/src/main/webapp/img/productDetail/1897.jpg b/src/main/webapp/img/productDetail/1897.jpg new file mode 100644 index 0000000..d08aa3d Binary files /dev/null and b/src/main/webapp/img/productDetail/1897.jpg differ diff --git a/src/main/webapp/img/productDetail/1898.jpg b/src/main/webapp/img/productDetail/1898.jpg new file mode 100644 index 0000000..27b2206 Binary files /dev/null and b/src/main/webapp/img/productDetail/1898.jpg differ diff --git a/src/main/webapp/img/productDetail/1899.jpg b/src/main/webapp/img/productDetail/1899.jpg new file mode 100644 index 0000000..81f2dc3 Binary files /dev/null and b/src/main/webapp/img/productDetail/1899.jpg differ diff --git a/src/main/webapp/img/productDetail/1900.jpg b/src/main/webapp/img/productDetail/1900.jpg new file mode 100644 index 0000000..decf7a1 Binary files /dev/null and b/src/main/webapp/img/productDetail/1900.jpg differ diff --git a/src/main/webapp/img/productDetail/1901.jpg b/src/main/webapp/img/productDetail/1901.jpg new file mode 100644 index 0000000..8b593aa Binary files /dev/null and b/src/main/webapp/img/productDetail/1901.jpg differ diff --git a/src/main/webapp/img/productDetail/1907.jpg b/src/main/webapp/img/productDetail/1907.jpg new file mode 100644 index 0000000..8b593aa Binary files /dev/null and b/src/main/webapp/img/productDetail/1907.jpg differ diff --git a/src/main/webapp/img/productDetail/1908.jpg b/src/main/webapp/img/productDetail/1908.jpg new file mode 100644 index 0000000..d08aa3d Binary files /dev/null and b/src/main/webapp/img/productDetail/1908.jpg differ diff --git a/src/main/webapp/img/productDetail/1909.jpg b/src/main/webapp/img/productDetail/1909.jpg new file mode 100644 index 0000000..decf7a1 Binary files /dev/null and b/src/main/webapp/img/productDetail/1909.jpg differ diff --git a/src/main/webapp/img/productDetail/1910.jpg b/src/main/webapp/img/productDetail/1910.jpg new file mode 100644 index 0000000..27b2206 Binary files /dev/null and b/src/main/webapp/img/productDetail/1910.jpg differ diff --git a/src/main/webapp/img/productDetail/1911.jpg b/src/main/webapp/img/productDetail/1911.jpg new file mode 100644 index 0000000..9c3161a Binary files /dev/null and b/src/main/webapp/img/productDetail/1911.jpg differ diff --git a/src/main/webapp/img/productDetail/1912.jpg b/src/main/webapp/img/productDetail/1912.jpg new file mode 100644 index 0000000..e7ec033 Binary files /dev/null and b/src/main/webapp/img/productDetail/1912.jpg differ diff --git a/src/main/webapp/img/productDetail/1918.jpg b/src/main/webapp/img/productDetail/1918.jpg new file mode 100644 index 0000000..9c3161a Binary files /dev/null and b/src/main/webapp/img/productDetail/1918.jpg differ diff --git a/src/main/webapp/img/productDetail/1919.jpg b/src/main/webapp/img/productDetail/1919.jpg new file mode 100644 index 0000000..8b593aa Binary files /dev/null and b/src/main/webapp/img/productDetail/1919.jpg differ diff --git a/src/main/webapp/img/productDetail/1920.jpg b/src/main/webapp/img/productDetail/1920.jpg new file mode 100644 index 0000000..1124f0f Binary files /dev/null and b/src/main/webapp/img/productDetail/1920.jpg differ diff --git a/src/main/webapp/img/productDetail/1921.jpg b/src/main/webapp/img/productDetail/1921.jpg new file mode 100644 index 0000000..6fa598b Binary files /dev/null and b/src/main/webapp/img/productDetail/1921.jpg differ diff --git a/src/main/webapp/img/productDetail/1922.jpg b/src/main/webapp/img/productDetail/1922.jpg new file mode 100644 index 0000000..0860300 Binary files /dev/null and b/src/main/webapp/img/productDetail/1922.jpg differ diff --git a/src/main/webapp/img/productDetail/1923.jpg b/src/main/webapp/img/productDetail/1923.jpg new file mode 100644 index 0000000..e7ec033 Binary files /dev/null and b/src/main/webapp/img/productDetail/1923.jpg differ diff --git a/src/main/webapp/img/productDetail/1929.jpg b/src/main/webapp/img/productDetail/1929.jpg new file mode 100644 index 0000000..8b593aa Binary files /dev/null and b/src/main/webapp/img/productDetail/1929.jpg differ diff --git a/src/main/webapp/img/productDetail/1930.jpg b/src/main/webapp/img/productDetail/1930.jpg new file mode 100644 index 0000000..27b2206 Binary files /dev/null and b/src/main/webapp/img/productDetail/1930.jpg differ diff --git a/src/main/webapp/img/productDetail/1931.jpg b/src/main/webapp/img/productDetail/1931.jpg new file mode 100644 index 0000000..0860300 Binary files /dev/null and b/src/main/webapp/img/productDetail/1931.jpg differ diff --git a/src/main/webapp/img/productDetail/1932.jpg b/src/main/webapp/img/productDetail/1932.jpg new file mode 100644 index 0000000..6fa598b Binary files /dev/null and b/src/main/webapp/img/productDetail/1932.jpg differ diff --git a/src/main/webapp/img/productDetail/1933.jpg b/src/main/webapp/img/productDetail/1933.jpg new file mode 100644 index 0000000..decf7a1 Binary files /dev/null and b/src/main/webapp/img/productDetail/1933.jpg differ diff --git a/src/main/webapp/img/productDetail/1934.jpg b/src/main/webapp/img/productDetail/1934.jpg new file mode 100644 index 0000000..81f2dc3 Binary files /dev/null and b/src/main/webapp/img/productDetail/1934.jpg differ diff --git a/src/main/webapp/img/productDetail/2538.jpg b/src/main/webapp/img/productDetail/2538.jpg new file mode 100644 index 0000000..ed22d49 Binary files /dev/null and b/src/main/webapp/img/productDetail/2538.jpg differ diff --git a/src/main/webapp/img/productDetail/2539.jpg b/src/main/webapp/img/productDetail/2539.jpg new file mode 100644 index 0000000..db12887 Binary files /dev/null and b/src/main/webapp/img/productDetail/2539.jpg differ diff --git a/src/main/webapp/img/productDetail/2540.jpg b/src/main/webapp/img/productDetail/2540.jpg new file mode 100644 index 0000000..eed7410 Binary files /dev/null and b/src/main/webapp/img/productDetail/2540.jpg differ diff --git a/src/main/webapp/img/productDetail/2541.jpg b/src/main/webapp/img/productDetail/2541.jpg new file mode 100644 index 0000000..4eab496 Binary files /dev/null and b/src/main/webapp/img/productDetail/2541.jpg differ diff --git a/src/main/webapp/img/productDetail/2542.jpg b/src/main/webapp/img/productDetail/2542.jpg new file mode 100644 index 0000000..28970fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2542.jpg differ diff --git a/src/main/webapp/img/productDetail/2543.jpg b/src/main/webapp/img/productDetail/2543.jpg new file mode 100644 index 0000000..fbde99c Binary files /dev/null and b/src/main/webapp/img/productDetail/2543.jpg differ diff --git a/src/main/webapp/img/productDetail/2549.jpg b/src/main/webapp/img/productDetail/2549.jpg new file mode 100644 index 0000000..fbde99c Binary files /dev/null and b/src/main/webapp/img/productDetail/2549.jpg differ diff --git a/src/main/webapp/img/productDetail/2550.jpg b/src/main/webapp/img/productDetail/2550.jpg new file mode 100644 index 0000000..4eab496 Binary files /dev/null and b/src/main/webapp/img/productDetail/2550.jpg differ diff --git a/src/main/webapp/img/productDetail/2551.jpg b/src/main/webapp/img/productDetail/2551.jpg new file mode 100644 index 0000000..db12887 Binary files /dev/null and b/src/main/webapp/img/productDetail/2551.jpg differ diff --git a/src/main/webapp/img/productDetail/2552.jpg b/src/main/webapp/img/productDetail/2552.jpg new file mode 100644 index 0000000..accd6fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2552.jpg differ diff --git a/src/main/webapp/img/productDetail/2553.jpg b/src/main/webapp/img/productDetail/2553.jpg new file mode 100644 index 0000000..eed7410 Binary files /dev/null and b/src/main/webapp/img/productDetail/2553.jpg differ diff --git a/src/main/webapp/img/productDetail/2554.jpg b/src/main/webapp/img/productDetail/2554.jpg new file mode 100644 index 0000000..28970fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2554.jpg differ diff --git a/src/main/webapp/img/productDetail/2560.jpg b/src/main/webapp/img/productDetail/2560.jpg new file mode 100644 index 0000000..accd6fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2560.jpg differ diff --git a/src/main/webapp/img/productDetail/2561.jpg b/src/main/webapp/img/productDetail/2561.jpg new file mode 100644 index 0000000..28970fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2561.jpg differ diff --git a/src/main/webapp/img/productDetail/2562.jpg b/src/main/webapp/img/productDetail/2562.jpg new file mode 100644 index 0000000..eed7410 Binary files /dev/null and b/src/main/webapp/img/productDetail/2562.jpg differ diff --git a/src/main/webapp/img/productDetail/2563.jpg b/src/main/webapp/img/productDetail/2563.jpg new file mode 100644 index 0000000..ed22d49 Binary files /dev/null and b/src/main/webapp/img/productDetail/2563.jpg differ diff --git a/src/main/webapp/img/productDetail/2564.jpg b/src/main/webapp/img/productDetail/2564.jpg new file mode 100644 index 0000000..4eab496 Binary files /dev/null and b/src/main/webapp/img/productDetail/2564.jpg differ diff --git a/src/main/webapp/img/productDetail/2565.jpg b/src/main/webapp/img/productDetail/2565.jpg new file mode 100644 index 0000000..fbde99c Binary files /dev/null and b/src/main/webapp/img/productDetail/2565.jpg differ diff --git a/src/main/webapp/img/productDetail/2571.jpg b/src/main/webapp/img/productDetail/2571.jpg new file mode 100644 index 0000000..eed7410 Binary files /dev/null and b/src/main/webapp/img/productDetail/2571.jpg differ diff --git a/src/main/webapp/img/productDetail/2572.jpg b/src/main/webapp/img/productDetail/2572.jpg new file mode 100644 index 0000000..4eab496 Binary files /dev/null and b/src/main/webapp/img/productDetail/2572.jpg differ diff --git a/src/main/webapp/img/productDetail/2573.jpg b/src/main/webapp/img/productDetail/2573.jpg new file mode 100644 index 0000000..accd6fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2573.jpg differ diff --git a/src/main/webapp/img/productDetail/2574.jpg b/src/main/webapp/img/productDetail/2574.jpg new file mode 100644 index 0000000..28970fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2574.jpg differ diff --git a/src/main/webapp/img/productDetail/2575.jpg b/src/main/webapp/img/productDetail/2575.jpg new file mode 100644 index 0000000..ed22d49 Binary files /dev/null and b/src/main/webapp/img/productDetail/2575.jpg differ diff --git a/src/main/webapp/img/productDetail/2576.jpg b/src/main/webapp/img/productDetail/2576.jpg new file mode 100644 index 0000000..db12887 Binary files /dev/null and b/src/main/webapp/img/productDetail/2576.jpg differ diff --git a/src/main/webapp/img/productDetail/2582.jpg b/src/main/webapp/img/productDetail/2582.jpg new file mode 100644 index 0000000..db12887 Binary files /dev/null and b/src/main/webapp/img/productDetail/2582.jpg differ diff --git a/src/main/webapp/img/productDetail/2583.jpg b/src/main/webapp/img/productDetail/2583.jpg new file mode 100644 index 0000000..fbde99c Binary files /dev/null and b/src/main/webapp/img/productDetail/2583.jpg differ diff --git a/src/main/webapp/img/productDetail/2584.jpg b/src/main/webapp/img/productDetail/2584.jpg new file mode 100644 index 0000000..accd6fc Binary files /dev/null and b/src/main/webapp/img/productDetail/2584.jpg differ diff --git a/src/main/webapp/img/productDetail/2585.jpg b/src/main/webapp/img/productDetail/2585.jpg new file mode 100644 index 0000000..4eab496 Binary files /dev/null and b/src/main/webapp/img/productDetail/2585.jpg differ diff --git a/src/main/webapp/img/productDetail/2586.jpg b/src/main/webapp/img/productDetail/2586.jpg new file mode 100644 index 0000000..ed22d49 Binary files /dev/null and b/src/main/webapp/img/productDetail/2586.jpg differ diff --git a/src/main/webapp/img/productDetail/2587.jpg b/src/main/webapp/img/productDetail/2587.jpg new file mode 100644 index 0000000..eed7410 Binary files /dev/null and b/src/main/webapp/img/productDetail/2587.jpg differ diff --git a/src/main/webapp/img/productDetail/3139.jpg b/src/main/webapp/img/productDetail/3139.jpg new file mode 100644 index 0000000..ba9d88b Binary files /dev/null and b/src/main/webapp/img/productDetail/3139.jpg differ diff --git a/src/main/webapp/img/productDetail/3140.jpg b/src/main/webapp/img/productDetail/3140.jpg new file mode 100644 index 0000000..145f414 Binary files /dev/null and b/src/main/webapp/img/productDetail/3140.jpg differ diff --git a/src/main/webapp/img/productDetail/3141.jpg b/src/main/webapp/img/productDetail/3141.jpg new file mode 100644 index 0000000..86f7c17 Binary files /dev/null and b/src/main/webapp/img/productDetail/3141.jpg differ diff --git a/src/main/webapp/img/productDetail/3142.jpg b/src/main/webapp/img/productDetail/3142.jpg new file mode 100644 index 0000000..fa43eff Binary files /dev/null and b/src/main/webapp/img/productDetail/3142.jpg differ diff --git a/src/main/webapp/img/productDetail/3143.jpg b/src/main/webapp/img/productDetail/3143.jpg new file mode 100644 index 0000000..ef18e78 Binary files /dev/null and b/src/main/webapp/img/productDetail/3143.jpg differ diff --git a/src/main/webapp/img/productDetail/3144.jpg b/src/main/webapp/img/productDetail/3144.jpg new file mode 100644 index 0000000..663b3c0 Binary files /dev/null and b/src/main/webapp/img/productDetail/3144.jpg differ diff --git a/src/main/webapp/img/productDetail/3150.jpg b/src/main/webapp/img/productDetail/3150.jpg new file mode 100644 index 0000000..fa43eff Binary files /dev/null and b/src/main/webapp/img/productDetail/3150.jpg differ diff --git a/src/main/webapp/img/productDetail/3151.jpg b/src/main/webapp/img/productDetail/3151.jpg new file mode 100644 index 0000000..80fc1ac Binary files /dev/null and b/src/main/webapp/img/productDetail/3151.jpg differ diff --git a/src/main/webapp/img/productDetail/3152.jpg b/src/main/webapp/img/productDetail/3152.jpg new file mode 100644 index 0000000..86f7c17 Binary files /dev/null and b/src/main/webapp/img/productDetail/3152.jpg differ diff --git a/src/main/webapp/img/productDetail/3153.jpg b/src/main/webapp/img/productDetail/3153.jpg new file mode 100644 index 0000000..a5607e2 Binary files /dev/null and b/src/main/webapp/img/productDetail/3153.jpg differ diff --git a/src/main/webapp/img/productDetail/3154.jpg b/src/main/webapp/img/productDetail/3154.jpg new file mode 100644 index 0000000..663b3c0 Binary files /dev/null and b/src/main/webapp/img/productDetail/3154.jpg differ diff --git a/src/main/webapp/img/productDetail/3155.jpg b/src/main/webapp/img/productDetail/3155.jpg new file mode 100644 index 0000000..a3c86cb Binary files /dev/null and b/src/main/webapp/img/productDetail/3155.jpg differ diff --git a/src/main/webapp/img/productDetail/3161.jpg b/src/main/webapp/img/productDetail/3161.jpg new file mode 100644 index 0000000..ba9d88b Binary files /dev/null and b/src/main/webapp/img/productDetail/3161.jpg differ diff --git a/src/main/webapp/img/productDetail/3162.jpg b/src/main/webapp/img/productDetail/3162.jpg new file mode 100644 index 0000000..a5607e2 Binary files /dev/null and b/src/main/webapp/img/productDetail/3162.jpg differ diff --git a/src/main/webapp/img/productDetail/3163.jpg b/src/main/webapp/img/productDetail/3163.jpg new file mode 100644 index 0000000..145f414 Binary files /dev/null and b/src/main/webapp/img/productDetail/3163.jpg differ diff --git a/src/main/webapp/img/productDetail/3164.jpg b/src/main/webapp/img/productDetail/3164.jpg new file mode 100644 index 0000000..6e30c2f Binary files /dev/null and b/src/main/webapp/img/productDetail/3164.jpg differ diff --git a/src/main/webapp/img/productDetail/3165.jpg b/src/main/webapp/img/productDetail/3165.jpg new file mode 100644 index 0000000..447dee3 Binary files /dev/null and b/src/main/webapp/img/productDetail/3165.jpg differ diff --git a/src/main/webapp/img/productDetail/3166.jpg b/src/main/webapp/img/productDetail/3166.jpg new file mode 100644 index 0000000..fa43eff Binary files /dev/null and b/src/main/webapp/img/productDetail/3166.jpg differ diff --git a/src/main/webapp/img/productDetail/3172.jpg b/src/main/webapp/img/productDetail/3172.jpg new file mode 100644 index 0000000..7d197a7 Binary files /dev/null and b/src/main/webapp/img/productDetail/3172.jpg differ diff --git a/src/main/webapp/img/productDetail/3173.jpg b/src/main/webapp/img/productDetail/3173.jpg new file mode 100644 index 0000000..6e30c2f Binary files /dev/null and b/src/main/webapp/img/productDetail/3173.jpg differ diff --git a/src/main/webapp/img/productDetail/3174.jpg b/src/main/webapp/img/productDetail/3174.jpg new file mode 100644 index 0000000..fa43eff Binary files /dev/null and b/src/main/webapp/img/productDetail/3174.jpg differ diff --git a/src/main/webapp/img/productDetail/3175.jpg b/src/main/webapp/img/productDetail/3175.jpg new file mode 100644 index 0000000..ef18e78 Binary files /dev/null and b/src/main/webapp/img/productDetail/3175.jpg differ diff --git a/src/main/webapp/img/productDetail/3176.jpg b/src/main/webapp/img/productDetail/3176.jpg new file mode 100644 index 0000000..ba9d88b Binary files /dev/null and b/src/main/webapp/img/productDetail/3176.jpg differ diff --git a/src/main/webapp/img/productDetail/3177.jpg b/src/main/webapp/img/productDetail/3177.jpg new file mode 100644 index 0000000..447dee3 Binary files /dev/null and b/src/main/webapp/img/productDetail/3177.jpg differ diff --git a/src/main/webapp/img/productDetail/3183.jpg b/src/main/webapp/img/productDetail/3183.jpg new file mode 100644 index 0000000..7d197a7 Binary files /dev/null and b/src/main/webapp/img/productDetail/3183.jpg differ diff --git a/src/main/webapp/img/productDetail/3184.jpg b/src/main/webapp/img/productDetail/3184.jpg new file mode 100644 index 0000000..447dee3 Binary files /dev/null and b/src/main/webapp/img/productDetail/3184.jpg differ diff --git a/src/main/webapp/img/productDetail/3185.jpg b/src/main/webapp/img/productDetail/3185.jpg new file mode 100644 index 0000000..86f7c17 Binary files /dev/null and b/src/main/webapp/img/productDetail/3185.jpg differ diff --git a/src/main/webapp/img/productDetail/3186.jpg b/src/main/webapp/img/productDetail/3186.jpg new file mode 100644 index 0000000..ef18e78 Binary files /dev/null and b/src/main/webapp/img/productDetail/3186.jpg differ diff --git a/src/main/webapp/img/productDetail/3187.jpg b/src/main/webapp/img/productDetail/3187.jpg new file mode 100644 index 0000000..a5607e2 Binary files /dev/null and b/src/main/webapp/img/productDetail/3187.jpg differ diff --git a/src/main/webapp/img/productDetail/3188.jpg b/src/main/webapp/img/productDetail/3188.jpg new file mode 100644 index 0000000..80fc1ac Binary files /dev/null and b/src/main/webapp/img/productDetail/3188.jpg differ diff --git a/src/main/webapp/img/productDetail/3753.jpg b/src/main/webapp/img/productDetail/3753.jpg new file mode 100644 index 0000000..21b6fed Binary files /dev/null and b/src/main/webapp/img/productDetail/3753.jpg differ diff --git a/src/main/webapp/img/productDetail/3754.jpg b/src/main/webapp/img/productDetail/3754.jpg new file mode 100644 index 0000000..884dcaa Binary files /dev/null and b/src/main/webapp/img/productDetail/3754.jpg differ diff --git a/src/main/webapp/img/productDetail/3755.jpg b/src/main/webapp/img/productDetail/3755.jpg new file mode 100644 index 0000000..36b089d Binary files /dev/null and b/src/main/webapp/img/productDetail/3755.jpg differ diff --git a/src/main/webapp/img/productDetail/3756.jpg b/src/main/webapp/img/productDetail/3756.jpg new file mode 100644 index 0000000..f47e080 Binary files /dev/null and b/src/main/webapp/img/productDetail/3756.jpg differ diff --git a/src/main/webapp/img/productDetail/3757.jpg b/src/main/webapp/img/productDetail/3757.jpg new file mode 100644 index 0000000..10f3771 Binary files /dev/null and b/src/main/webapp/img/productDetail/3757.jpg differ diff --git a/src/main/webapp/img/productDetail/3758.jpg b/src/main/webapp/img/productDetail/3758.jpg new file mode 100644 index 0000000..0fe7693 Binary files /dev/null and b/src/main/webapp/img/productDetail/3758.jpg differ diff --git a/src/main/webapp/img/productDetail/3764.jpg b/src/main/webapp/img/productDetail/3764.jpg new file mode 100644 index 0000000..e9739e4 Binary files /dev/null and b/src/main/webapp/img/productDetail/3764.jpg differ diff --git a/src/main/webapp/img/productDetail/3765.jpg b/src/main/webapp/img/productDetail/3765.jpg new file mode 100644 index 0000000..0fe7693 Binary files /dev/null and b/src/main/webapp/img/productDetail/3765.jpg differ diff --git a/src/main/webapp/img/productDetail/3766.jpg b/src/main/webapp/img/productDetail/3766.jpg new file mode 100644 index 0000000..36b089d Binary files /dev/null and b/src/main/webapp/img/productDetail/3766.jpg differ diff --git a/src/main/webapp/img/productDetail/3767.jpg b/src/main/webapp/img/productDetail/3767.jpg new file mode 100644 index 0000000..f47e080 Binary files /dev/null and b/src/main/webapp/img/productDetail/3767.jpg differ diff --git a/src/main/webapp/img/productDetail/3768.jpg b/src/main/webapp/img/productDetail/3768.jpg new file mode 100644 index 0000000..884dcaa Binary files /dev/null and b/src/main/webapp/img/productDetail/3768.jpg differ diff --git a/src/main/webapp/img/productDetail/3769.jpg b/src/main/webapp/img/productDetail/3769.jpg new file mode 100644 index 0000000..1969183 Binary files /dev/null and b/src/main/webapp/img/productDetail/3769.jpg differ diff --git a/src/main/webapp/img/productDetail/3775.jpg b/src/main/webapp/img/productDetail/3775.jpg new file mode 100644 index 0000000..884dcaa Binary files /dev/null and b/src/main/webapp/img/productDetail/3775.jpg differ diff --git a/src/main/webapp/img/productDetail/3776.jpg b/src/main/webapp/img/productDetail/3776.jpg new file mode 100644 index 0000000..21b6fed Binary files /dev/null and b/src/main/webapp/img/productDetail/3776.jpg differ diff --git a/src/main/webapp/img/productDetail/3777.jpg b/src/main/webapp/img/productDetail/3777.jpg new file mode 100644 index 0000000..5adb6b8 Binary files /dev/null and b/src/main/webapp/img/productDetail/3777.jpg differ diff --git a/src/main/webapp/img/productDetail/3778.jpg b/src/main/webapp/img/productDetail/3778.jpg new file mode 100644 index 0000000..5aefaca Binary files /dev/null and b/src/main/webapp/img/productDetail/3778.jpg differ diff --git a/src/main/webapp/img/productDetail/3779.jpg b/src/main/webapp/img/productDetail/3779.jpg new file mode 100644 index 0000000..10f3771 Binary files /dev/null and b/src/main/webapp/img/productDetail/3779.jpg differ diff --git a/src/main/webapp/img/productDetail/3780.jpg b/src/main/webapp/img/productDetail/3780.jpg new file mode 100644 index 0000000..3edae0c Binary files /dev/null and b/src/main/webapp/img/productDetail/3780.jpg differ diff --git a/src/main/webapp/img/productDetail/3786.jpg b/src/main/webapp/img/productDetail/3786.jpg new file mode 100644 index 0000000..884dcaa Binary files /dev/null and b/src/main/webapp/img/productDetail/3786.jpg differ diff --git a/src/main/webapp/img/productDetail/3787.jpg b/src/main/webapp/img/productDetail/3787.jpg new file mode 100644 index 0000000..0fe7693 Binary files /dev/null and b/src/main/webapp/img/productDetail/3787.jpg differ diff --git a/src/main/webapp/img/productDetail/3788.jpg b/src/main/webapp/img/productDetail/3788.jpg new file mode 100644 index 0000000..f47e080 Binary files /dev/null and b/src/main/webapp/img/productDetail/3788.jpg differ diff --git a/src/main/webapp/img/productDetail/3789.jpg b/src/main/webapp/img/productDetail/3789.jpg new file mode 100644 index 0000000..36b089d Binary files /dev/null and b/src/main/webapp/img/productDetail/3789.jpg differ diff --git a/src/main/webapp/img/productDetail/3790.jpg b/src/main/webapp/img/productDetail/3790.jpg new file mode 100644 index 0000000..5adb6b8 Binary files /dev/null and b/src/main/webapp/img/productDetail/3790.jpg differ diff --git a/src/main/webapp/img/productDetail/3791.jpg b/src/main/webapp/img/productDetail/3791.jpg new file mode 100644 index 0000000..371304d Binary files /dev/null and b/src/main/webapp/img/productDetail/3791.jpg differ diff --git a/src/main/webapp/img/productDetail/3797.jpg b/src/main/webapp/img/productDetail/3797.jpg new file mode 100644 index 0000000..5aefaca Binary files /dev/null and b/src/main/webapp/img/productDetail/3797.jpg differ diff --git a/src/main/webapp/img/productDetail/3798.jpg b/src/main/webapp/img/productDetail/3798.jpg new file mode 100644 index 0000000..0fe7693 Binary files /dev/null and b/src/main/webapp/img/productDetail/3798.jpg differ diff --git a/src/main/webapp/img/productDetail/3799.jpg b/src/main/webapp/img/productDetail/3799.jpg new file mode 100644 index 0000000..884dcaa Binary files /dev/null and b/src/main/webapp/img/productDetail/3799.jpg differ diff --git a/src/main/webapp/img/productDetail/3800.jpg b/src/main/webapp/img/productDetail/3800.jpg new file mode 100644 index 0000000..10f3771 Binary files /dev/null and b/src/main/webapp/img/productDetail/3800.jpg differ diff --git a/src/main/webapp/img/productDetail/3801.jpg b/src/main/webapp/img/productDetail/3801.jpg new file mode 100644 index 0000000..1969183 Binary files /dev/null and b/src/main/webapp/img/productDetail/3801.jpg differ diff --git a/src/main/webapp/img/productDetail/3802.jpg b/src/main/webapp/img/productDetail/3802.jpg new file mode 100644 index 0000000..21b6fed Binary files /dev/null and b/src/main/webapp/img/productDetail/3802.jpg differ diff --git a/src/main/webapp/img/productDetail/4359.jpg b/src/main/webapp/img/productDetail/4359.jpg new file mode 100644 index 0000000..eccf5fe Binary files /dev/null and b/src/main/webapp/img/productDetail/4359.jpg differ diff --git a/src/main/webapp/img/productDetail/4360.jpg b/src/main/webapp/img/productDetail/4360.jpg new file mode 100644 index 0000000..9556b9e Binary files /dev/null and b/src/main/webapp/img/productDetail/4360.jpg differ diff --git a/src/main/webapp/img/productDetail/4361.jpg b/src/main/webapp/img/productDetail/4361.jpg new file mode 100644 index 0000000..1bac561 Binary files /dev/null and b/src/main/webapp/img/productDetail/4361.jpg differ diff --git a/src/main/webapp/img/productDetail/4362.jpg b/src/main/webapp/img/productDetail/4362.jpg new file mode 100644 index 0000000..326fae8 Binary files /dev/null and b/src/main/webapp/img/productDetail/4362.jpg differ diff --git a/src/main/webapp/img/productDetail/4363.jpg b/src/main/webapp/img/productDetail/4363.jpg new file mode 100644 index 0000000..1c958c3 Binary files /dev/null and b/src/main/webapp/img/productDetail/4363.jpg differ diff --git a/src/main/webapp/img/productDetail/4364.jpg b/src/main/webapp/img/productDetail/4364.jpg new file mode 100644 index 0000000..da228ae Binary files /dev/null and b/src/main/webapp/img/productDetail/4364.jpg differ diff --git a/src/main/webapp/img/productDetail/4370.jpg b/src/main/webapp/img/productDetail/4370.jpg new file mode 100644 index 0000000..ccabf6f Binary files /dev/null and b/src/main/webapp/img/productDetail/4370.jpg differ diff --git a/src/main/webapp/img/productDetail/4371.jpg b/src/main/webapp/img/productDetail/4371.jpg new file mode 100644 index 0000000..39fc2ad Binary files /dev/null and b/src/main/webapp/img/productDetail/4371.jpg differ diff --git a/src/main/webapp/img/productDetail/4372.jpg b/src/main/webapp/img/productDetail/4372.jpg new file mode 100644 index 0000000..326fae8 Binary files /dev/null and b/src/main/webapp/img/productDetail/4372.jpg differ diff --git a/src/main/webapp/img/productDetail/4373.jpg b/src/main/webapp/img/productDetail/4373.jpg new file mode 100644 index 0000000..1c958c3 Binary files /dev/null and b/src/main/webapp/img/productDetail/4373.jpg differ diff --git a/src/main/webapp/img/productDetail/4374.jpg b/src/main/webapp/img/productDetail/4374.jpg new file mode 100644 index 0000000..8d88b34 Binary files /dev/null and b/src/main/webapp/img/productDetail/4374.jpg differ diff --git a/src/main/webapp/img/productDetail/4375.jpg b/src/main/webapp/img/productDetail/4375.jpg new file mode 100644 index 0000000..9556b9e Binary files /dev/null and b/src/main/webapp/img/productDetail/4375.jpg differ diff --git a/src/main/webapp/img/productDetail/4381.jpg b/src/main/webapp/img/productDetail/4381.jpg new file mode 100644 index 0000000..8d88b34 Binary files /dev/null and b/src/main/webapp/img/productDetail/4381.jpg differ diff --git a/src/main/webapp/img/productDetail/4382.jpg b/src/main/webapp/img/productDetail/4382.jpg new file mode 100644 index 0000000..48b7340 Binary files /dev/null and b/src/main/webapp/img/productDetail/4382.jpg differ diff --git a/src/main/webapp/img/productDetail/4383.jpg b/src/main/webapp/img/productDetail/4383.jpg new file mode 100644 index 0000000..39fc2ad Binary files /dev/null and b/src/main/webapp/img/productDetail/4383.jpg differ diff --git a/src/main/webapp/img/productDetail/4384.jpg b/src/main/webapp/img/productDetail/4384.jpg new file mode 100644 index 0000000..ccabf6f Binary files /dev/null and b/src/main/webapp/img/productDetail/4384.jpg differ diff --git a/src/main/webapp/img/productDetail/4385.jpg b/src/main/webapp/img/productDetail/4385.jpg new file mode 100644 index 0000000..da228ae Binary files /dev/null and b/src/main/webapp/img/productDetail/4385.jpg differ diff --git a/src/main/webapp/img/productDetail/4386.jpg b/src/main/webapp/img/productDetail/4386.jpg new file mode 100644 index 0000000..eccf5fe Binary files /dev/null and b/src/main/webapp/img/productDetail/4386.jpg differ diff --git a/src/main/webapp/img/productDetail/4391.jpg b/src/main/webapp/img/productDetail/4391.jpg new file mode 100644 index 0000000..9556b9e Binary files /dev/null and b/src/main/webapp/img/productDetail/4391.jpg differ diff --git a/src/main/webapp/img/productDetail/4392.jpg b/src/main/webapp/img/productDetail/4392.jpg new file mode 100644 index 0000000..1bac561 Binary files /dev/null and b/src/main/webapp/img/productDetail/4392.jpg differ diff --git a/src/main/webapp/img/productDetail/4393.jpg b/src/main/webapp/img/productDetail/4393.jpg new file mode 100644 index 0000000..8d88b34 Binary files /dev/null and b/src/main/webapp/img/productDetail/4393.jpg differ diff --git a/src/main/webapp/img/productDetail/4394.jpg b/src/main/webapp/img/productDetail/4394.jpg new file mode 100644 index 0000000..ccabf6f Binary files /dev/null and b/src/main/webapp/img/productDetail/4394.jpg differ diff --git a/src/main/webapp/img/productDetail/4395.jpg b/src/main/webapp/img/productDetail/4395.jpg new file mode 100644 index 0000000..39fc2ad Binary files /dev/null and b/src/main/webapp/img/productDetail/4395.jpg differ diff --git a/src/main/webapp/img/productDetail/4396.jpg b/src/main/webapp/img/productDetail/4396.jpg new file mode 100644 index 0000000..da228ae Binary files /dev/null and b/src/main/webapp/img/productDetail/4396.jpg differ diff --git a/src/main/webapp/img/productDetail/4402.jpg b/src/main/webapp/img/productDetail/4402.jpg new file mode 100644 index 0000000..326fae8 Binary files /dev/null and b/src/main/webapp/img/productDetail/4402.jpg differ diff --git a/src/main/webapp/img/productDetail/4403.jpg b/src/main/webapp/img/productDetail/4403.jpg new file mode 100644 index 0000000..1bac561 Binary files /dev/null and b/src/main/webapp/img/productDetail/4403.jpg differ diff --git a/src/main/webapp/img/productDetail/4404.jpg b/src/main/webapp/img/productDetail/4404.jpg new file mode 100644 index 0000000..9556b9e Binary files /dev/null and b/src/main/webapp/img/productDetail/4404.jpg differ diff --git a/src/main/webapp/img/productDetail/4405.jpg b/src/main/webapp/img/productDetail/4405.jpg new file mode 100644 index 0000000..eccf5fe Binary files /dev/null and b/src/main/webapp/img/productDetail/4405.jpg differ diff --git a/src/main/webapp/img/productDetail/4406.jpg b/src/main/webapp/img/productDetail/4406.jpg new file mode 100644 index 0000000..1c958c3 Binary files /dev/null and b/src/main/webapp/img/productDetail/4406.jpg differ diff --git a/src/main/webapp/img/productDetail/4407.jpg b/src/main/webapp/img/productDetail/4407.jpg new file mode 100644 index 0000000..ccabf6f Binary files /dev/null and b/src/main/webapp/img/productDetail/4407.jpg differ diff --git a/src/main/webapp/img/productDetail/4577.jpg b/src/main/webapp/img/productDetail/4577.jpg new file mode 100644 index 0000000..e96f078 Binary files /dev/null and b/src/main/webapp/img/productDetail/4577.jpg differ diff --git a/src/main/webapp/img/productDetail/4578.jpg b/src/main/webapp/img/productDetail/4578.jpg new file mode 100644 index 0000000..bbb43d2 Binary files /dev/null and b/src/main/webapp/img/productDetail/4578.jpg differ diff --git a/src/main/webapp/img/productDetail/4579.jpg b/src/main/webapp/img/productDetail/4579.jpg new file mode 100644 index 0000000..efb71df Binary files /dev/null and b/src/main/webapp/img/productDetail/4579.jpg differ diff --git a/src/main/webapp/img/productDetail/4580.jpg b/src/main/webapp/img/productDetail/4580.jpg new file mode 100644 index 0000000..f5873ec Binary files /dev/null and b/src/main/webapp/img/productDetail/4580.jpg differ diff --git a/src/main/webapp/img/productDetail/4581.jpg b/src/main/webapp/img/productDetail/4581.jpg new file mode 100644 index 0000000..bb28fa4 Binary files /dev/null and b/src/main/webapp/img/productDetail/4581.jpg differ diff --git a/src/main/webapp/img/productDetail/4582.jpg b/src/main/webapp/img/productDetail/4582.jpg new file mode 100644 index 0000000..97cc724 Binary files /dev/null and b/src/main/webapp/img/productDetail/4582.jpg differ diff --git a/src/main/webapp/img/productDetail/4588.jpg b/src/main/webapp/img/productDetail/4588.jpg new file mode 100644 index 0000000..51c3958 Binary files /dev/null and b/src/main/webapp/img/productDetail/4588.jpg differ diff --git a/src/main/webapp/img/productDetail/4589.jpg b/src/main/webapp/img/productDetail/4589.jpg new file mode 100644 index 0000000..c3c34c3 Binary files /dev/null and b/src/main/webapp/img/productDetail/4589.jpg differ diff --git a/src/main/webapp/img/productDetail/4590.jpg b/src/main/webapp/img/productDetail/4590.jpg new file mode 100644 index 0000000..f3badee Binary files /dev/null and b/src/main/webapp/img/productDetail/4590.jpg differ diff --git a/src/main/webapp/img/productDetail/4591.jpg b/src/main/webapp/img/productDetail/4591.jpg new file mode 100644 index 0000000..babf227 Binary files /dev/null and b/src/main/webapp/img/productDetail/4591.jpg differ diff --git a/src/main/webapp/img/productDetail/4592.jpg b/src/main/webapp/img/productDetail/4592.jpg new file mode 100644 index 0000000..7b3b271 Binary files /dev/null and b/src/main/webapp/img/productDetail/4592.jpg differ diff --git a/src/main/webapp/img/productDetail/4593.jpg b/src/main/webapp/img/productDetail/4593.jpg new file mode 100644 index 0000000..97cc724 Binary files /dev/null and b/src/main/webapp/img/productDetail/4593.jpg differ diff --git a/src/main/webapp/img/productDetail/4599.jpg b/src/main/webapp/img/productDetail/4599.jpg new file mode 100644 index 0000000..97cc724 Binary files /dev/null and b/src/main/webapp/img/productDetail/4599.jpg differ diff --git a/src/main/webapp/img/productDetail/4600.jpg b/src/main/webapp/img/productDetail/4600.jpg new file mode 100644 index 0000000..f3badee Binary files /dev/null and b/src/main/webapp/img/productDetail/4600.jpg differ diff --git a/src/main/webapp/img/productDetail/4601.jpg b/src/main/webapp/img/productDetail/4601.jpg new file mode 100644 index 0000000..babf227 Binary files /dev/null and b/src/main/webapp/img/productDetail/4601.jpg differ diff --git a/src/main/webapp/img/productDetail/4602.jpg b/src/main/webapp/img/productDetail/4602.jpg new file mode 100644 index 0000000..e96f078 Binary files /dev/null and b/src/main/webapp/img/productDetail/4602.jpg differ diff --git a/src/main/webapp/img/productDetail/4603.jpg b/src/main/webapp/img/productDetail/4603.jpg new file mode 100644 index 0000000..7b3b271 Binary files /dev/null and b/src/main/webapp/img/productDetail/4603.jpg differ diff --git a/src/main/webapp/img/productDetail/4604.jpg b/src/main/webapp/img/productDetail/4604.jpg new file mode 100644 index 0000000..bb28fa4 Binary files /dev/null and b/src/main/webapp/img/productDetail/4604.jpg differ diff --git a/src/main/webapp/img/productDetail/4609.jpg b/src/main/webapp/img/productDetail/4609.jpg new file mode 100644 index 0000000..fecefe6 Binary files /dev/null and b/src/main/webapp/img/productDetail/4609.jpg differ diff --git a/src/main/webapp/img/productDetail/4610.jpg b/src/main/webapp/img/productDetail/4610.jpg new file mode 100644 index 0000000..8da988a Binary files /dev/null and b/src/main/webapp/img/productDetail/4610.jpg differ diff --git a/src/main/webapp/img/productDetail/4611.jpg b/src/main/webapp/img/productDetail/4611.jpg new file mode 100644 index 0000000..f5873ec Binary files /dev/null and b/src/main/webapp/img/productDetail/4611.jpg differ diff --git a/src/main/webapp/img/productDetail/4612.jpg b/src/main/webapp/img/productDetail/4612.jpg new file mode 100644 index 0000000..f3badee Binary files /dev/null and b/src/main/webapp/img/productDetail/4612.jpg differ diff --git a/src/main/webapp/img/productDetail/4613.jpg b/src/main/webapp/img/productDetail/4613.jpg new file mode 100644 index 0000000..babf227 Binary files /dev/null and b/src/main/webapp/img/productDetail/4613.jpg differ diff --git a/src/main/webapp/img/productDetail/4614.jpg b/src/main/webapp/img/productDetail/4614.jpg new file mode 100644 index 0000000..efb71df Binary files /dev/null and b/src/main/webapp/img/productDetail/4614.jpg differ diff --git a/src/main/webapp/img/productDetail/4620.jpg b/src/main/webapp/img/productDetail/4620.jpg new file mode 100644 index 0000000..babf227 Binary files /dev/null and b/src/main/webapp/img/productDetail/4620.jpg differ diff --git a/src/main/webapp/img/productDetail/4621.jpg b/src/main/webapp/img/productDetail/4621.jpg new file mode 100644 index 0000000..51c3958 Binary files /dev/null and b/src/main/webapp/img/productDetail/4621.jpg differ diff --git a/src/main/webapp/img/productDetail/4622.jpg b/src/main/webapp/img/productDetail/4622.jpg new file mode 100644 index 0000000..b055d3d Binary files /dev/null and b/src/main/webapp/img/productDetail/4622.jpg differ diff --git a/src/main/webapp/img/productDetail/4623.jpg b/src/main/webapp/img/productDetail/4623.jpg new file mode 100644 index 0000000..f3badee Binary files /dev/null and b/src/main/webapp/img/productDetail/4623.jpg differ diff --git a/src/main/webapp/img/productDetail/4624.jpg b/src/main/webapp/img/productDetail/4624.jpg new file mode 100644 index 0000000..8da988a Binary files /dev/null and b/src/main/webapp/img/productDetail/4624.jpg differ diff --git a/src/main/webapp/img/productDetail/4625.jpg b/src/main/webapp/img/productDetail/4625.jpg new file mode 100644 index 0000000..e96f078 Binary files /dev/null and b/src/main/webapp/img/productDetail/4625.jpg differ diff --git a/src/main/webapp/img/productDetail/5212.jpg b/src/main/webapp/img/productDetail/5212.jpg new file mode 100644 index 0000000..2cddb85 Binary files /dev/null and b/src/main/webapp/img/productDetail/5212.jpg differ diff --git a/src/main/webapp/img/productDetail/5213.jpg b/src/main/webapp/img/productDetail/5213.jpg new file mode 100644 index 0000000..d1bc1f3 Binary files /dev/null and b/src/main/webapp/img/productDetail/5213.jpg differ diff --git a/src/main/webapp/img/productDetail/5214.jpg b/src/main/webapp/img/productDetail/5214.jpg new file mode 100644 index 0000000..a6cffd7 Binary files /dev/null and b/src/main/webapp/img/productDetail/5214.jpg differ diff --git a/src/main/webapp/img/productDetail/5215.jpg b/src/main/webapp/img/productDetail/5215.jpg new file mode 100644 index 0000000..7a69aea Binary files /dev/null and b/src/main/webapp/img/productDetail/5215.jpg differ diff --git a/src/main/webapp/img/productDetail/5216.jpg b/src/main/webapp/img/productDetail/5216.jpg new file mode 100644 index 0000000..bc1d009 Binary files /dev/null and b/src/main/webapp/img/productDetail/5216.jpg differ diff --git a/src/main/webapp/img/productDetail/5217.jpg b/src/main/webapp/img/productDetail/5217.jpg new file mode 100644 index 0000000..625876a Binary files /dev/null and b/src/main/webapp/img/productDetail/5217.jpg differ diff --git a/src/main/webapp/img/productDetail/5223.jpg b/src/main/webapp/img/productDetail/5223.jpg new file mode 100644 index 0000000..1dcd28a Binary files /dev/null and b/src/main/webapp/img/productDetail/5223.jpg differ diff --git a/src/main/webapp/img/productDetail/5224.jpg b/src/main/webapp/img/productDetail/5224.jpg new file mode 100644 index 0000000..a6cffd7 Binary files /dev/null and b/src/main/webapp/img/productDetail/5224.jpg differ diff --git a/src/main/webapp/img/productDetail/5225.jpg b/src/main/webapp/img/productDetail/5225.jpg new file mode 100644 index 0000000..014e65c Binary files /dev/null and b/src/main/webapp/img/productDetail/5225.jpg differ diff --git a/src/main/webapp/img/productDetail/5226.jpg b/src/main/webapp/img/productDetail/5226.jpg new file mode 100644 index 0000000..2cddb85 Binary files /dev/null and b/src/main/webapp/img/productDetail/5226.jpg differ diff --git a/src/main/webapp/img/productDetail/5227.jpg b/src/main/webapp/img/productDetail/5227.jpg new file mode 100644 index 0000000..d1bc1f3 Binary files /dev/null and b/src/main/webapp/img/productDetail/5227.jpg differ diff --git a/src/main/webapp/img/productDetail/5228.jpg b/src/main/webapp/img/productDetail/5228.jpg new file mode 100644 index 0000000..2792763 Binary files /dev/null and b/src/main/webapp/img/productDetail/5228.jpg differ diff --git a/src/main/webapp/img/productDetail/5234.jpg b/src/main/webapp/img/productDetail/5234.jpg new file mode 100644 index 0000000..d1bc1f3 Binary files /dev/null and b/src/main/webapp/img/productDetail/5234.jpg differ diff --git a/src/main/webapp/img/productDetail/5235.jpg b/src/main/webapp/img/productDetail/5235.jpg new file mode 100644 index 0000000..2cddb85 Binary files /dev/null and b/src/main/webapp/img/productDetail/5235.jpg differ diff --git a/src/main/webapp/img/productDetail/5236.jpg b/src/main/webapp/img/productDetail/5236.jpg new file mode 100644 index 0000000..1dcd28a Binary files /dev/null and b/src/main/webapp/img/productDetail/5236.jpg differ diff --git a/src/main/webapp/img/productDetail/5237.jpg b/src/main/webapp/img/productDetail/5237.jpg new file mode 100644 index 0000000..7a69aea Binary files /dev/null and b/src/main/webapp/img/productDetail/5237.jpg differ diff --git a/src/main/webapp/img/productDetail/5238.jpg b/src/main/webapp/img/productDetail/5238.jpg new file mode 100644 index 0000000..bc1d009 Binary files /dev/null and b/src/main/webapp/img/productDetail/5238.jpg differ diff --git a/src/main/webapp/img/productDetail/5239.jpg b/src/main/webapp/img/productDetail/5239.jpg new file mode 100644 index 0000000..2792763 Binary files /dev/null and b/src/main/webapp/img/productDetail/5239.jpg differ diff --git a/src/main/webapp/img/productDetail/5245.jpg b/src/main/webapp/img/productDetail/5245.jpg new file mode 100644 index 0000000..2792763 Binary files /dev/null and b/src/main/webapp/img/productDetail/5245.jpg differ diff --git a/src/main/webapp/img/productDetail/5246.jpg b/src/main/webapp/img/productDetail/5246.jpg new file mode 100644 index 0000000..88726f8 Binary files /dev/null and b/src/main/webapp/img/productDetail/5246.jpg differ diff --git a/src/main/webapp/img/productDetail/5247.jpg b/src/main/webapp/img/productDetail/5247.jpg new file mode 100644 index 0000000..1dcd28a Binary files /dev/null and b/src/main/webapp/img/productDetail/5247.jpg differ diff --git a/src/main/webapp/img/productDetail/5248.jpg b/src/main/webapp/img/productDetail/5248.jpg new file mode 100644 index 0000000..bc1d009 Binary files /dev/null and b/src/main/webapp/img/productDetail/5248.jpg differ diff --git a/src/main/webapp/img/productDetail/5249.jpg b/src/main/webapp/img/productDetail/5249.jpg new file mode 100644 index 0000000..7a69aea Binary files /dev/null and b/src/main/webapp/img/productDetail/5249.jpg differ diff --git a/src/main/webapp/img/productDetail/5250.jpg b/src/main/webapp/img/productDetail/5250.jpg new file mode 100644 index 0000000..625876a Binary files /dev/null and b/src/main/webapp/img/productDetail/5250.jpg differ diff --git a/src/main/webapp/img/productDetail/5256.jpg b/src/main/webapp/img/productDetail/5256.jpg new file mode 100644 index 0000000..014e65c Binary files /dev/null and b/src/main/webapp/img/productDetail/5256.jpg differ diff --git a/src/main/webapp/img/productDetail/5257.jpg b/src/main/webapp/img/productDetail/5257.jpg new file mode 100644 index 0000000..88726f8 Binary files /dev/null and b/src/main/webapp/img/productDetail/5257.jpg differ diff --git a/src/main/webapp/img/productDetail/5258.jpg b/src/main/webapp/img/productDetail/5258.jpg new file mode 100644 index 0000000..625876a Binary files /dev/null and b/src/main/webapp/img/productDetail/5258.jpg differ diff --git a/src/main/webapp/img/productDetail/5259.jpg b/src/main/webapp/img/productDetail/5259.jpg new file mode 100644 index 0000000..a6cffd7 Binary files /dev/null and b/src/main/webapp/img/productDetail/5259.jpg differ diff --git a/src/main/webapp/img/productDetail/5260.jpg b/src/main/webapp/img/productDetail/5260.jpg new file mode 100644 index 0000000..7a69aea Binary files /dev/null and b/src/main/webapp/img/productDetail/5260.jpg differ diff --git a/src/main/webapp/img/productDetail/5261.jpg b/src/main/webapp/img/productDetail/5261.jpg new file mode 100644 index 0000000..d1bc1f3 Binary files /dev/null and b/src/main/webapp/img/productDetail/5261.jpg differ diff --git a/src/main/webapp/img/productDetail/5828.jpg b/src/main/webapp/img/productDetail/5828.jpg new file mode 100644 index 0000000..e7f229f Binary files /dev/null and b/src/main/webapp/img/productDetail/5828.jpg differ diff --git a/src/main/webapp/img/productDetail/5829.jpg b/src/main/webapp/img/productDetail/5829.jpg new file mode 100644 index 0000000..7d19c30 Binary files /dev/null and b/src/main/webapp/img/productDetail/5829.jpg differ diff --git a/src/main/webapp/img/productDetail/5830.jpg b/src/main/webapp/img/productDetail/5830.jpg new file mode 100644 index 0000000..7354167 Binary files /dev/null and b/src/main/webapp/img/productDetail/5830.jpg differ diff --git a/src/main/webapp/img/productDetail/5831.jpg b/src/main/webapp/img/productDetail/5831.jpg new file mode 100644 index 0000000..a430d86 Binary files /dev/null and b/src/main/webapp/img/productDetail/5831.jpg differ diff --git a/src/main/webapp/img/productDetail/5832.jpg b/src/main/webapp/img/productDetail/5832.jpg new file mode 100644 index 0000000..d295e61 Binary files /dev/null and b/src/main/webapp/img/productDetail/5832.jpg differ diff --git a/src/main/webapp/img/productDetail/5833.jpg b/src/main/webapp/img/productDetail/5833.jpg new file mode 100644 index 0000000..fc2157b Binary files /dev/null and b/src/main/webapp/img/productDetail/5833.jpg differ diff --git a/src/main/webapp/img/productDetail/5839.jpg b/src/main/webapp/img/productDetail/5839.jpg new file mode 100644 index 0000000..a430d86 Binary files /dev/null and b/src/main/webapp/img/productDetail/5839.jpg differ diff --git a/src/main/webapp/img/productDetail/5840.jpg b/src/main/webapp/img/productDetail/5840.jpg new file mode 100644 index 0000000..d295e61 Binary files /dev/null and b/src/main/webapp/img/productDetail/5840.jpg differ diff --git a/src/main/webapp/img/productDetail/5841.jpg b/src/main/webapp/img/productDetail/5841.jpg new file mode 100644 index 0000000..7d19c30 Binary files /dev/null and b/src/main/webapp/img/productDetail/5841.jpg differ diff --git a/src/main/webapp/img/productDetail/5842.jpg b/src/main/webapp/img/productDetail/5842.jpg new file mode 100644 index 0000000..e7f229f Binary files /dev/null and b/src/main/webapp/img/productDetail/5842.jpg differ diff --git a/src/main/webapp/img/productDetail/5843.jpg b/src/main/webapp/img/productDetail/5843.jpg new file mode 100644 index 0000000..9a53db7 Binary files /dev/null and b/src/main/webapp/img/productDetail/5843.jpg differ diff --git a/src/main/webapp/img/productDetail/5844.jpg b/src/main/webapp/img/productDetail/5844.jpg new file mode 100644 index 0000000..d9e9815 Binary files /dev/null and b/src/main/webapp/img/productDetail/5844.jpg differ diff --git a/src/main/webapp/img/productDetail/5849.jpg b/src/main/webapp/img/productDetail/5849.jpg new file mode 100644 index 0000000..fc2157b Binary files /dev/null and b/src/main/webapp/img/productDetail/5849.jpg differ diff --git a/src/main/webapp/img/productDetail/5850.jpg b/src/main/webapp/img/productDetail/5850.jpg new file mode 100644 index 0000000..9a53db7 Binary files /dev/null and b/src/main/webapp/img/productDetail/5850.jpg differ diff --git a/src/main/webapp/img/productDetail/5851.jpg b/src/main/webapp/img/productDetail/5851.jpg new file mode 100644 index 0000000..a430d86 Binary files /dev/null and b/src/main/webapp/img/productDetail/5851.jpg differ diff --git a/src/main/webapp/img/productDetail/5852.jpg b/src/main/webapp/img/productDetail/5852.jpg new file mode 100644 index 0000000..8975e03 Binary files /dev/null and b/src/main/webapp/img/productDetail/5852.jpg differ diff --git a/src/main/webapp/img/productDetail/5853.jpg b/src/main/webapp/img/productDetail/5853.jpg new file mode 100644 index 0000000..3c20c9f Binary files /dev/null and b/src/main/webapp/img/productDetail/5853.jpg differ diff --git a/src/main/webapp/img/productDetail/5854.jpg b/src/main/webapp/img/productDetail/5854.jpg new file mode 100644 index 0000000..04c9494 Binary files /dev/null and b/src/main/webapp/img/productDetail/5854.jpg differ diff --git a/src/main/webapp/img/productDetail/5860.jpg b/src/main/webapp/img/productDetail/5860.jpg new file mode 100644 index 0000000..9a53db7 Binary files /dev/null and b/src/main/webapp/img/productDetail/5860.jpg differ diff --git a/src/main/webapp/img/productDetail/5861.jpg b/src/main/webapp/img/productDetail/5861.jpg new file mode 100644 index 0000000..3889220 Binary files /dev/null and b/src/main/webapp/img/productDetail/5861.jpg differ diff --git a/src/main/webapp/img/productDetail/5862.jpg b/src/main/webapp/img/productDetail/5862.jpg new file mode 100644 index 0000000..3c20c9f Binary files /dev/null and b/src/main/webapp/img/productDetail/5862.jpg differ diff --git a/src/main/webapp/img/productDetail/5863.jpg b/src/main/webapp/img/productDetail/5863.jpg new file mode 100644 index 0000000..8975e03 Binary files /dev/null and b/src/main/webapp/img/productDetail/5863.jpg differ diff --git a/src/main/webapp/img/productDetail/5864.jpg b/src/main/webapp/img/productDetail/5864.jpg new file mode 100644 index 0000000..a430d86 Binary files /dev/null and b/src/main/webapp/img/productDetail/5864.jpg differ diff --git a/src/main/webapp/img/productDetail/5865.jpg b/src/main/webapp/img/productDetail/5865.jpg new file mode 100644 index 0000000..fc2157b Binary files /dev/null and b/src/main/webapp/img/productDetail/5865.jpg differ diff --git a/src/main/webapp/img/productDetail/5871.jpg b/src/main/webapp/img/productDetail/5871.jpg new file mode 100644 index 0000000..83c5dad Binary files /dev/null and b/src/main/webapp/img/productDetail/5871.jpg differ diff --git a/src/main/webapp/img/productDetail/5872.jpg b/src/main/webapp/img/productDetail/5872.jpg new file mode 100644 index 0000000..e7f229f Binary files /dev/null and b/src/main/webapp/img/productDetail/5872.jpg differ diff --git a/src/main/webapp/img/productDetail/5873.jpg b/src/main/webapp/img/productDetail/5873.jpg new file mode 100644 index 0000000..04c9494 Binary files /dev/null and b/src/main/webapp/img/productDetail/5873.jpg differ diff --git a/src/main/webapp/img/productDetail/5874.jpg b/src/main/webapp/img/productDetail/5874.jpg new file mode 100644 index 0000000..d295e61 Binary files /dev/null and b/src/main/webapp/img/productDetail/5874.jpg differ diff --git a/src/main/webapp/img/productDetail/5875.jpg b/src/main/webapp/img/productDetail/5875.jpg new file mode 100644 index 0000000..a430d86 Binary files /dev/null and b/src/main/webapp/img/productDetail/5875.jpg differ diff --git a/src/main/webapp/img/productDetail/5876.jpg b/src/main/webapp/img/productDetail/5876.jpg new file mode 100644 index 0000000..9a53db7 Binary files /dev/null and b/src/main/webapp/img/productDetail/5876.jpg differ diff --git a/src/main/webapp/img/productDetail/633.jpg b/src/main/webapp/img/productDetail/633.jpg new file mode 100644 index 0000000..3c85964 Binary files /dev/null and b/src/main/webapp/img/productDetail/633.jpg differ diff --git a/src/main/webapp/img/productDetail/634.jpg b/src/main/webapp/img/productDetail/634.jpg new file mode 100644 index 0000000..f63c667 Binary files /dev/null and b/src/main/webapp/img/productDetail/634.jpg differ diff --git a/src/main/webapp/img/productDetail/635.jpg b/src/main/webapp/img/productDetail/635.jpg new file mode 100644 index 0000000..822fd91 Binary files /dev/null and b/src/main/webapp/img/productDetail/635.jpg differ diff --git a/src/main/webapp/img/productDetail/636.jpg b/src/main/webapp/img/productDetail/636.jpg new file mode 100644 index 0000000..0eb8efe Binary files /dev/null and b/src/main/webapp/img/productDetail/636.jpg differ diff --git a/src/main/webapp/img/productDetail/637.jpg b/src/main/webapp/img/productDetail/637.jpg new file mode 100644 index 0000000..3ffdce3 Binary files /dev/null and b/src/main/webapp/img/productDetail/637.jpg differ diff --git a/src/main/webapp/img/productDetail/638.jpg b/src/main/webapp/img/productDetail/638.jpg new file mode 100644 index 0000000..3967022 Binary files /dev/null and b/src/main/webapp/img/productDetail/638.jpg differ diff --git a/src/main/webapp/img/productDetail/6432.jpg b/src/main/webapp/img/productDetail/6432.jpg new file mode 100644 index 0000000..aea8b05 Binary files /dev/null and b/src/main/webapp/img/productDetail/6432.jpg differ diff --git a/src/main/webapp/img/productDetail/6433.jpg b/src/main/webapp/img/productDetail/6433.jpg new file mode 100644 index 0000000..826eaf0 Binary files /dev/null and b/src/main/webapp/img/productDetail/6433.jpg differ diff --git a/src/main/webapp/img/productDetail/6434.jpg b/src/main/webapp/img/productDetail/6434.jpg new file mode 100644 index 0000000..64f93e4 Binary files /dev/null and b/src/main/webapp/img/productDetail/6434.jpg differ diff --git a/src/main/webapp/img/productDetail/6435.jpg b/src/main/webapp/img/productDetail/6435.jpg new file mode 100644 index 0000000..034202c Binary files /dev/null and b/src/main/webapp/img/productDetail/6435.jpg differ diff --git a/src/main/webapp/img/productDetail/6436.jpg b/src/main/webapp/img/productDetail/6436.jpg new file mode 100644 index 0000000..b42fe34 Binary files /dev/null and b/src/main/webapp/img/productDetail/6436.jpg differ diff --git a/src/main/webapp/img/productDetail/6437.jpg b/src/main/webapp/img/productDetail/6437.jpg new file mode 100644 index 0000000..a566217 Binary files /dev/null and b/src/main/webapp/img/productDetail/6437.jpg differ diff --git a/src/main/webapp/img/productDetail/644.jpg b/src/main/webapp/img/productDetail/644.jpg new file mode 100644 index 0000000..3967022 Binary files /dev/null and b/src/main/webapp/img/productDetail/644.jpg differ diff --git a/src/main/webapp/img/productDetail/6443.jpg b/src/main/webapp/img/productDetail/6443.jpg new file mode 100644 index 0000000..4f91064 Binary files /dev/null and b/src/main/webapp/img/productDetail/6443.jpg differ diff --git a/src/main/webapp/img/productDetail/6444.jpg b/src/main/webapp/img/productDetail/6444.jpg new file mode 100644 index 0000000..74bc534 Binary files /dev/null and b/src/main/webapp/img/productDetail/6444.jpg differ diff --git a/src/main/webapp/img/productDetail/6445.jpg b/src/main/webapp/img/productDetail/6445.jpg new file mode 100644 index 0000000..0f94f9b Binary files /dev/null and b/src/main/webapp/img/productDetail/6445.jpg differ diff --git a/src/main/webapp/img/productDetail/6446.jpg b/src/main/webapp/img/productDetail/6446.jpg new file mode 100644 index 0000000..cc1d3a4 Binary files /dev/null and b/src/main/webapp/img/productDetail/6446.jpg differ diff --git a/src/main/webapp/img/productDetail/6447.jpg b/src/main/webapp/img/productDetail/6447.jpg new file mode 100644 index 0000000..b0a742f Binary files /dev/null and b/src/main/webapp/img/productDetail/6447.jpg differ diff --git a/src/main/webapp/img/productDetail/6448.jpg b/src/main/webapp/img/productDetail/6448.jpg new file mode 100644 index 0000000..cca7181 Binary files /dev/null and b/src/main/webapp/img/productDetail/6448.jpg differ diff --git a/src/main/webapp/img/productDetail/645.jpg b/src/main/webapp/img/productDetail/645.jpg new file mode 100644 index 0000000..f63c667 Binary files /dev/null and b/src/main/webapp/img/productDetail/645.jpg differ diff --git a/src/main/webapp/img/productDetail/6454.jpg b/src/main/webapp/img/productDetail/6454.jpg new file mode 100644 index 0000000..5674684 Binary files /dev/null and b/src/main/webapp/img/productDetail/6454.jpg differ diff --git a/src/main/webapp/img/productDetail/6455.jpg b/src/main/webapp/img/productDetail/6455.jpg new file mode 100644 index 0000000..586792a Binary files /dev/null and b/src/main/webapp/img/productDetail/6455.jpg differ diff --git a/src/main/webapp/img/productDetail/6456.jpg b/src/main/webapp/img/productDetail/6456.jpg new file mode 100644 index 0000000..64f93e4 Binary files /dev/null and b/src/main/webapp/img/productDetail/6456.jpg differ diff --git a/src/main/webapp/img/productDetail/6457.jpg b/src/main/webapp/img/productDetail/6457.jpg new file mode 100644 index 0000000..0f94f9b Binary files /dev/null and b/src/main/webapp/img/productDetail/6457.jpg differ diff --git a/src/main/webapp/img/productDetail/6458.jpg b/src/main/webapp/img/productDetail/6458.jpg new file mode 100644 index 0000000..a76906a Binary files /dev/null and b/src/main/webapp/img/productDetail/6458.jpg differ diff --git a/src/main/webapp/img/productDetail/6459.jpg b/src/main/webapp/img/productDetail/6459.jpg new file mode 100644 index 0000000..b0a742f Binary files /dev/null and b/src/main/webapp/img/productDetail/6459.jpg differ diff --git a/src/main/webapp/img/productDetail/646.jpg b/src/main/webapp/img/productDetail/646.jpg new file mode 100644 index 0000000..3ea8f7c Binary files /dev/null and b/src/main/webapp/img/productDetail/646.jpg differ diff --git a/src/main/webapp/img/productDetail/6465.jpg b/src/main/webapp/img/productDetail/6465.jpg new file mode 100644 index 0000000..586792a Binary files /dev/null and b/src/main/webapp/img/productDetail/6465.jpg differ diff --git a/src/main/webapp/img/productDetail/6466.jpg b/src/main/webapp/img/productDetail/6466.jpg new file mode 100644 index 0000000..0f94f9b Binary files /dev/null and b/src/main/webapp/img/productDetail/6466.jpg differ diff --git a/src/main/webapp/img/productDetail/6467.jpg b/src/main/webapp/img/productDetail/6467.jpg new file mode 100644 index 0000000..a76906a Binary files /dev/null and b/src/main/webapp/img/productDetail/6467.jpg differ diff --git a/src/main/webapp/img/productDetail/6468.jpg b/src/main/webapp/img/productDetail/6468.jpg new file mode 100644 index 0000000..cca7181 Binary files /dev/null and b/src/main/webapp/img/productDetail/6468.jpg differ diff --git a/src/main/webapp/img/productDetail/6469.jpg b/src/main/webapp/img/productDetail/6469.jpg new file mode 100644 index 0000000..426addd Binary files /dev/null and b/src/main/webapp/img/productDetail/6469.jpg differ diff --git a/src/main/webapp/img/productDetail/647.jpg b/src/main/webapp/img/productDetail/647.jpg new file mode 100644 index 0000000..dd69c73 Binary files /dev/null and b/src/main/webapp/img/productDetail/647.jpg differ diff --git a/src/main/webapp/img/productDetail/6470.jpg b/src/main/webapp/img/productDetail/6470.jpg new file mode 100644 index 0000000..b58ed32 Binary files /dev/null and b/src/main/webapp/img/productDetail/6470.jpg differ diff --git a/src/main/webapp/img/productDetail/6476.jpg b/src/main/webapp/img/productDetail/6476.jpg new file mode 100644 index 0000000..12a483e Binary files /dev/null and b/src/main/webapp/img/productDetail/6476.jpg differ diff --git a/src/main/webapp/img/productDetail/6477.jpg b/src/main/webapp/img/productDetail/6477.jpg new file mode 100644 index 0000000..45d7a14 Binary files /dev/null and b/src/main/webapp/img/productDetail/6477.jpg differ diff --git a/src/main/webapp/img/productDetail/6478.jpg b/src/main/webapp/img/productDetail/6478.jpg new file mode 100644 index 0000000..0f94f9b Binary files /dev/null and b/src/main/webapp/img/productDetail/6478.jpg differ diff --git a/src/main/webapp/img/productDetail/6479.jpg b/src/main/webapp/img/productDetail/6479.jpg new file mode 100644 index 0000000..b23f5ea Binary files /dev/null and b/src/main/webapp/img/productDetail/6479.jpg differ diff --git a/src/main/webapp/img/productDetail/648.jpg b/src/main/webapp/img/productDetail/648.jpg new file mode 100644 index 0000000..3c85964 Binary files /dev/null and b/src/main/webapp/img/productDetail/648.jpg differ diff --git a/src/main/webapp/img/productDetail/6480.jpg b/src/main/webapp/img/productDetail/6480.jpg new file mode 100644 index 0000000..b42fe34 Binary files /dev/null and b/src/main/webapp/img/productDetail/6480.jpg differ diff --git a/src/main/webapp/img/productDetail/6481.jpg b/src/main/webapp/img/productDetail/6481.jpg new file mode 100644 index 0000000..cca7181 Binary files /dev/null and b/src/main/webapp/img/productDetail/6481.jpg differ diff --git a/src/main/webapp/img/productDetail/649.jpg b/src/main/webapp/img/productDetail/649.jpg new file mode 100644 index 0000000..0eb8efe Binary files /dev/null and b/src/main/webapp/img/productDetail/649.jpg differ diff --git a/src/main/webapp/img/productDetail/655.jpg b/src/main/webapp/img/productDetail/655.jpg new file mode 100644 index 0000000..b1a673b Binary files /dev/null and b/src/main/webapp/img/productDetail/655.jpg differ diff --git a/src/main/webapp/img/productDetail/656.jpg b/src/main/webapp/img/productDetail/656.jpg new file mode 100644 index 0000000..0eb8efe Binary files /dev/null and b/src/main/webapp/img/productDetail/656.jpg differ diff --git a/src/main/webapp/img/productDetail/657.jpg b/src/main/webapp/img/productDetail/657.jpg new file mode 100644 index 0000000..e6779b6 Binary files /dev/null and b/src/main/webapp/img/productDetail/657.jpg differ diff --git a/src/main/webapp/img/productDetail/658.jpg b/src/main/webapp/img/productDetail/658.jpg new file mode 100644 index 0000000..3ea8f7c Binary files /dev/null and b/src/main/webapp/img/productDetail/658.jpg differ diff --git a/src/main/webapp/img/productDetail/659.jpg b/src/main/webapp/img/productDetail/659.jpg new file mode 100644 index 0000000..3c85964 Binary files /dev/null and b/src/main/webapp/img/productDetail/659.jpg differ diff --git a/src/main/webapp/img/productDetail/660.jpg b/src/main/webapp/img/productDetail/660.jpg new file mode 100644 index 0000000..dd69c73 Binary files /dev/null and b/src/main/webapp/img/productDetail/660.jpg differ diff --git a/src/main/webapp/img/productDetail/666.jpg b/src/main/webapp/img/productDetail/666.jpg new file mode 100644 index 0000000..e6779b6 Binary files /dev/null and b/src/main/webapp/img/productDetail/666.jpg differ diff --git a/src/main/webapp/img/productDetail/667.jpg b/src/main/webapp/img/productDetail/667.jpg new file mode 100644 index 0000000..0eb8efe Binary files /dev/null and b/src/main/webapp/img/productDetail/667.jpg differ diff --git a/src/main/webapp/img/productDetail/668.jpg b/src/main/webapp/img/productDetail/668.jpg new file mode 100644 index 0000000..dd69c73 Binary files /dev/null and b/src/main/webapp/img/productDetail/668.jpg differ diff --git a/src/main/webapp/img/productDetail/669.jpg b/src/main/webapp/img/productDetail/669.jpg new file mode 100644 index 0000000..3ffdce3 Binary files /dev/null and b/src/main/webapp/img/productDetail/669.jpg differ diff --git a/src/main/webapp/img/productDetail/670.jpg b/src/main/webapp/img/productDetail/670.jpg new file mode 100644 index 0000000..3967022 Binary files /dev/null and b/src/main/webapp/img/productDetail/670.jpg differ diff --git a/src/main/webapp/img/productDetail/671.jpg b/src/main/webapp/img/productDetail/671.jpg new file mode 100644 index 0000000..f63c667 Binary files /dev/null and b/src/main/webapp/img/productDetail/671.jpg differ diff --git a/src/main/webapp/img/productDetail/677.jpg b/src/main/webapp/img/productDetail/677.jpg new file mode 100644 index 0000000..b1a673b Binary files /dev/null and b/src/main/webapp/img/productDetail/677.jpg differ diff --git a/src/main/webapp/img/productDetail/678.jpg b/src/main/webapp/img/productDetail/678.jpg new file mode 100644 index 0000000..3ea8f7c Binary files /dev/null and b/src/main/webapp/img/productDetail/678.jpg differ diff --git a/src/main/webapp/img/productDetail/679.jpg b/src/main/webapp/img/productDetail/679.jpg new file mode 100644 index 0000000..3ffdce3 Binary files /dev/null and b/src/main/webapp/img/productDetail/679.jpg differ diff --git a/src/main/webapp/img/productDetail/680.jpg b/src/main/webapp/img/productDetail/680.jpg new file mode 100644 index 0000000..e6779b6 Binary files /dev/null and b/src/main/webapp/img/productDetail/680.jpg differ diff --git a/src/main/webapp/img/productDetail/681.jpg b/src/main/webapp/img/productDetail/681.jpg new file mode 100644 index 0000000..3c85964 Binary files /dev/null and b/src/main/webapp/img/productDetail/681.jpg differ diff --git a/src/main/webapp/img/productDetail/682.jpg b/src/main/webapp/img/productDetail/682.jpg new file mode 100644 index 0000000..f63c667 Binary files /dev/null and b/src/main/webapp/img/productDetail/682.jpg differ diff --git a/src/main/webapp/img/productDetail/7015.jpg b/src/main/webapp/img/productDetail/7015.jpg new file mode 100644 index 0000000..9744dbd Binary files /dev/null and b/src/main/webapp/img/productDetail/7015.jpg differ diff --git a/src/main/webapp/img/productDetail/7016.jpg b/src/main/webapp/img/productDetail/7016.jpg new file mode 100644 index 0000000..255ab14 Binary files /dev/null and b/src/main/webapp/img/productDetail/7016.jpg differ diff --git a/src/main/webapp/img/productDetail/7017.jpg b/src/main/webapp/img/productDetail/7017.jpg new file mode 100644 index 0000000..ee1e22a Binary files /dev/null and b/src/main/webapp/img/productDetail/7017.jpg differ diff --git a/src/main/webapp/img/productDetail/7018.jpg b/src/main/webapp/img/productDetail/7018.jpg new file mode 100644 index 0000000..0734378 Binary files /dev/null and b/src/main/webapp/img/productDetail/7018.jpg differ diff --git a/src/main/webapp/img/productDetail/7019.jpg b/src/main/webapp/img/productDetail/7019.jpg new file mode 100644 index 0000000..91bea31 Binary files /dev/null and b/src/main/webapp/img/productDetail/7019.jpg differ diff --git a/src/main/webapp/img/productDetail/7020.jpg b/src/main/webapp/img/productDetail/7020.jpg new file mode 100644 index 0000000..c4e3f54 Binary files /dev/null and b/src/main/webapp/img/productDetail/7020.jpg differ diff --git a/src/main/webapp/img/productDetail/7026.jpg b/src/main/webapp/img/productDetail/7026.jpg new file mode 100644 index 0000000..3221b8b Binary files /dev/null and b/src/main/webapp/img/productDetail/7026.jpg differ diff --git a/src/main/webapp/img/productDetail/7027.jpg b/src/main/webapp/img/productDetail/7027.jpg new file mode 100644 index 0000000..0734378 Binary files /dev/null and b/src/main/webapp/img/productDetail/7027.jpg differ diff --git a/src/main/webapp/img/productDetail/7028.jpg b/src/main/webapp/img/productDetail/7028.jpg new file mode 100644 index 0000000..52d162c Binary files /dev/null and b/src/main/webapp/img/productDetail/7028.jpg differ diff --git a/src/main/webapp/img/productDetail/7029.jpg b/src/main/webapp/img/productDetail/7029.jpg new file mode 100644 index 0000000..d943297 Binary files /dev/null and b/src/main/webapp/img/productDetail/7029.jpg differ diff --git a/src/main/webapp/img/productDetail/7030.jpg b/src/main/webapp/img/productDetail/7030.jpg new file mode 100644 index 0000000..255ab14 Binary files /dev/null and b/src/main/webapp/img/productDetail/7030.jpg differ diff --git a/src/main/webapp/img/productDetail/7031.jpg b/src/main/webapp/img/productDetail/7031.jpg new file mode 100644 index 0000000..7cbd2a6 Binary files /dev/null and b/src/main/webapp/img/productDetail/7031.jpg differ diff --git a/src/main/webapp/img/productDetail/7037.jpg b/src/main/webapp/img/productDetail/7037.jpg new file mode 100644 index 0000000..3221b8b Binary files /dev/null and b/src/main/webapp/img/productDetail/7037.jpg differ diff --git a/src/main/webapp/img/productDetail/7038.jpg b/src/main/webapp/img/productDetail/7038.jpg new file mode 100644 index 0000000..c4e3f54 Binary files /dev/null and b/src/main/webapp/img/productDetail/7038.jpg differ diff --git a/src/main/webapp/img/productDetail/7039.jpg b/src/main/webapp/img/productDetail/7039.jpg new file mode 100644 index 0000000..7cbd2a6 Binary files /dev/null and b/src/main/webapp/img/productDetail/7039.jpg differ diff --git a/src/main/webapp/img/productDetail/7040.jpg b/src/main/webapp/img/productDetail/7040.jpg new file mode 100644 index 0000000..ee1e22a Binary files /dev/null and b/src/main/webapp/img/productDetail/7040.jpg differ diff --git a/src/main/webapp/img/productDetail/7041.jpg b/src/main/webapp/img/productDetail/7041.jpg new file mode 100644 index 0000000..d6d2246 Binary files /dev/null and b/src/main/webapp/img/productDetail/7041.jpg differ diff --git a/src/main/webapp/img/productDetail/7042.jpg b/src/main/webapp/img/productDetail/7042.jpg new file mode 100644 index 0000000..9744dbd Binary files /dev/null and b/src/main/webapp/img/productDetail/7042.jpg differ diff --git a/src/main/webapp/img/productDetail/7048.jpg b/src/main/webapp/img/productDetail/7048.jpg new file mode 100644 index 0000000..0734378 Binary files /dev/null and b/src/main/webapp/img/productDetail/7048.jpg differ diff --git a/src/main/webapp/img/productDetail/7049.jpg b/src/main/webapp/img/productDetail/7049.jpg new file mode 100644 index 0000000..255ab14 Binary files /dev/null and b/src/main/webapp/img/productDetail/7049.jpg differ diff --git a/src/main/webapp/img/productDetail/7050.jpg b/src/main/webapp/img/productDetail/7050.jpg new file mode 100644 index 0000000..7cbd2a6 Binary files /dev/null and b/src/main/webapp/img/productDetail/7050.jpg differ diff --git a/src/main/webapp/img/productDetail/7051.jpg b/src/main/webapp/img/productDetail/7051.jpg new file mode 100644 index 0000000..d6d2246 Binary files /dev/null and b/src/main/webapp/img/productDetail/7051.jpg differ diff --git a/src/main/webapp/img/productDetail/7052.jpg b/src/main/webapp/img/productDetail/7052.jpg new file mode 100644 index 0000000..35116cf Binary files /dev/null and b/src/main/webapp/img/productDetail/7052.jpg differ diff --git a/src/main/webapp/img/productDetail/7053.jpg b/src/main/webapp/img/productDetail/7053.jpg new file mode 100644 index 0000000..ee1e22a Binary files /dev/null and b/src/main/webapp/img/productDetail/7053.jpg differ diff --git a/src/main/webapp/img/productDetail/7059.jpg b/src/main/webapp/img/productDetail/7059.jpg new file mode 100644 index 0000000..9744dbd Binary files /dev/null and b/src/main/webapp/img/productDetail/7059.jpg differ diff --git a/src/main/webapp/img/productDetail/7060.jpg b/src/main/webapp/img/productDetail/7060.jpg new file mode 100644 index 0000000..d943297 Binary files /dev/null and b/src/main/webapp/img/productDetail/7060.jpg differ diff --git a/src/main/webapp/img/productDetail/7061.jpg b/src/main/webapp/img/productDetail/7061.jpg new file mode 100644 index 0000000..35116cf Binary files /dev/null and b/src/main/webapp/img/productDetail/7061.jpg differ diff --git a/src/main/webapp/img/productDetail/7062.jpg b/src/main/webapp/img/productDetail/7062.jpg new file mode 100644 index 0000000..c4e3f54 Binary files /dev/null and b/src/main/webapp/img/productDetail/7062.jpg differ diff --git a/src/main/webapp/img/productDetail/7063.jpg b/src/main/webapp/img/productDetail/7063.jpg new file mode 100644 index 0000000..7cbd2a6 Binary files /dev/null and b/src/main/webapp/img/productDetail/7063.jpg differ diff --git a/src/main/webapp/img/productDetail/7064.jpg b/src/main/webapp/img/productDetail/7064.jpg new file mode 100644 index 0000000..30929c0 Binary files /dev/null and b/src/main/webapp/img/productDetail/7064.jpg differ diff --git a/src/main/webapp/img/productDetail/7631.jpg b/src/main/webapp/img/productDetail/7631.jpg new file mode 100644 index 0000000..f30a2fb Binary files /dev/null and b/src/main/webapp/img/productDetail/7631.jpg differ diff --git a/src/main/webapp/img/productDetail/7632.jpg b/src/main/webapp/img/productDetail/7632.jpg new file mode 100644 index 0000000..fd457e2 Binary files /dev/null and b/src/main/webapp/img/productDetail/7632.jpg differ diff --git a/src/main/webapp/img/productDetail/7633.jpg b/src/main/webapp/img/productDetail/7633.jpg new file mode 100644 index 0000000..191234a Binary files /dev/null and b/src/main/webapp/img/productDetail/7633.jpg differ diff --git a/src/main/webapp/img/productDetail/7634.jpg b/src/main/webapp/img/productDetail/7634.jpg new file mode 100644 index 0000000..f1b366a Binary files /dev/null and b/src/main/webapp/img/productDetail/7634.jpg differ diff --git a/src/main/webapp/img/productDetail/7635.jpg b/src/main/webapp/img/productDetail/7635.jpg new file mode 100644 index 0000000..254b5e5 Binary files /dev/null and b/src/main/webapp/img/productDetail/7635.jpg differ diff --git a/src/main/webapp/img/productDetail/7636.jpg b/src/main/webapp/img/productDetail/7636.jpg new file mode 100644 index 0000000..e0a3694 Binary files /dev/null and b/src/main/webapp/img/productDetail/7636.jpg differ diff --git a/src/main/webapp/img/productDetail/7642.jpg b/src/main/webapp/img/productDetail/7642.jpg new file mode 100644 index 0000000..191234a Binary files /dev/null and b/src/main/webapp/img/productDetail/7642.jpg differ diff --git a/src/main/webapp/img/productDetail/7643.jpg b/src/main/webapp/img/productDetail/7643.jpg new file mode 100644 index 0000000..f30a2fb Binary files /dev/null and b/src/main/webapp/img/productDetail/7643.jpg differ diff --git a/src/main/webapp/img/productDetail/7644.jpg b/src/main/webapp/img/productDetail/7644.jpg new file mode 100644 index 0000000..f1b366a Binary files /dev/null and b/src/main/webapp/img/productDetail/7644.jpg differ diff --git a/src/main/webapp/img/productDetail/7645.jpg b/src/main/webapp/img/productDetail/7645.jpg new file mode 100644 index 0000000..fd457e2 Binary files /dev/null and b/src/main/webapp/img/productDetail/7645.jpg differ diff --git a/src/main/webapp/img/productDetail/7646.jpg b/src/main/webapp/img/productDetail/7646.jpg new file mode 100644 index 0000000..5771544 Binary files /dev/null and b/src/main/webapp/img/productDetail/7646.jpg differ diff --git a/src/main/webapp/img/productDetail/7647.jpg b/src/main/webapp/img/productDetail/7647.jpg new file mode 100644 index 0000000..e0a3694 Binary files /dev/null and b/src/main/webapp/img/productDetail/7647.jpg differ diff --git a/src/main/webapp/img/productDetail/7653.jpg b/src/main/webapp/img/productDetail/7653.jpg new file mode 100644 index 0000000..f30a2fb Binary files /dev/null and b/src/main/webapp/img/productDetail/7653.jpg differ diff --git a/src/main/webapp/img/productDetail/7654.jpg b/src/main/webapp/img/productDetail/7654.jpg new file mode 100644 index 0000000..5771544 Binary files /dev/null and b/src/main/webapp/img/productDetail/7654.jpg differ diff --git a/src/main/webapp/img/productDetail/7655.jpg b/src/main/webapp/img/productDetail/7655.jpg new file mode 100644 index 0000000..fccb5f5 Binary files /dev/null and b/src/main/webapp/img/productDetail/7655.jpg differ diff --git a/src/main/webapp/img/productDetail/7656.jpg b/src/main/webapp/img/productDetail/7656.jpg new file mode 100644 index 0000000..e0a3694 Binary files /dev/null and b/src/main/webapp/img/productDetail/7656.jpg differ diff --git a/src/main/webapp/img/productDetail/7657.jpg b/src/main/webapp/img/productDetail/7657.jpg new file mode 100644 index 0000000..191234a Binary files /dev/null and b/src/main/webapp/img/productDetail/7657.jpg differ diff --git a/src/main/webapp/img/productDetail/7658.jpg b/src/main/webapp/img/productDetail/7658.jpg new file mode 100644 index 0000000..37ef7cd Binary files /dev/null and b/src/main/webapp/img/productDetail/7658.jpg differ diff --git a/src/main/webapp/img/productDetail/7664.jpg b/src/main/webapp/img/productDetail/7664.jpg new file mode 100644 index 0000000..f1b366a Binary files /dev/null and b/src/main/webapp/img/productDetail/7664.jpg differ diff --git a/src/main/webapp/img/productDetail/7665.jpg b/src/main/webapp/img/productDetail/7665.jpg new file mode 100644 index 0000000..fccb5f5 Binary files /dev/null and b/src/main/webapp/img/productDetail/7665.jpg differ diff --git a/src/main/webapp/img/productDetail/7666.jpg b/src/main/webapp/img/productDetail/7666.jpg new file mode 100644 index 0000000..f30a2fb Binary files /dev/null and b/src/main/webapp/img/productDetail/7666.jpg differ diff --git a/src/main/webapp/img/productDetail/7667.jpg b/src/main/webapp/img/productDetail/7667.jpg new file mode 100644 index 0000000..254b5e5 Binary files /dev/null and b/src/main/webapp/img/productDetail/7667.jpg differ diff --git a/src/main/webapp/img/productDetail/7668.jpg b/src/main/webapp/img/productDetail/7668.jpg new file mode 100644 index 0000000..37ef7cd Binary files /dev/null and b/src/main/webapp/img/productDetail/7668.jpg differ diff --git a/src/main/webapp/img/productDetail/7669.jpg b/src/main/webapp/img/productDetail/7669.jpg new file mode 100644 index 0000000..e0a3694 Binary files /dev/null and b/src/main/webapp/img/productDetail/7669.jpg differ diff --git a/src/main/webapp/img/productDetail/7675.jpg b/src/main/webapp/img/productDetail/7675.jpg new file mode 100644 index 0000000..fd457e2 Binary files /dev/null and b/src/main/webapp/img/productDetail/7675.jpg differ diff --git a/src/main/webapp/img/productDetail/7676.jpg b/src/main/webapp/img/productDetail/7676.jpg new file mode 100644 index 0000000..37ef7cd Binary files /dev/null and b/src/main/webapp/img/productDetail/7676.jpg differ diff --git a/src/main/webapp/img/productDetail/7677.jpg b/src/main/webapp/img/productDetail/7677.jpg new file mode 100644 index 0000000..fccb5f5 Binary files /dev/null and b/src/main/webapp/img/productDetail/7677.jpg differ diff --git a/src/main/webapp/img/productDetail/7678.jpg b/src/main/webapp/img/productDetail/7678.jpg new file mode 100644 index 0000000..e0a3694 Binary files /dev/null and b/src/main/webapp/img/productDetail/7678.jpg differ diff --git a/src/main/webapp/img/productDetail/7679.jpg b/src/main/webapp/img/productDetail/7679.jpg new file mode 100644 index 0000000..254b5e5 Binary files /dev/null and b/src/main/webapp/img/productDetail/7679.jpg differ diff --git a/src/main/webapp/img/productDetail/7680.jpg b/src/main/webapp/img/productDetail/7680.jpg new file mode 100644 index 0000000..f30a2fb Binary files /dev/null and b/src/main/webapp/img/productDetail/7680.jpg differ diff --git a/src/main/webapp/img/productDetail/8236.jpg b/src/main/webapp/img/productDetail/8236.jpg new file mode 100644 index 0000000..43d66a3 Binary files /dev/null and b/src/main/webapp/img/productDetail/8236.jpg differ diff --git a/src/main/webapp/img/productDetail/8237.jpg b/src/main/webapp/img/productDetail/8237.jpg new file mode 100644 index 0000000..3f8f0c7 Binary files /dev/null and b/src/main/webapp/img/productDetail/8237.jpg differ diff --git a/src/main/webapp/img/productDetail/8238.jpg b/src/main/webapp/img/productDetail/8238.jpg new file mode 100644 index 0000000..05dc14a Binary files /dev/null and b/src/main/webapp/img/productDetail/8238.jpg differ diff --git a/src/main/webapp/img/productDetail/8239.jpg b/src/main/webapp/img/productDetail/8239.jpg new file mode 100644 index 0000000..3413f21 Binary files /dev/null and b/src/main/webapp/img/productDetail/8239.jpg differ diff --git a/src/main/webapp/img/productDetail/8240.jpg b/src/main/webapp/img/productDetail/8240.jpg new file mode 100644 index 0000000..8a33f0e Binary files /dev/null and b/src/main/webapp/img/productDetail/8240.jpg differ diff --git a/src/main/webapp/img/productDetail/8241.jpg b/src/main/webapp/img/productDetail/8241.jpg new file mode 100644 index 0000000..58f2d1a Binary files /dev/null and b/src/main/webapp/img/productDetail/8241.jpg differ diff --git a/src/main/webapp/img/productDetail/8247.jpg b/src/main/webapp/img/productDetail/8247.jpg new file mode 100644 index 0000000..8a33f0e Binary files /dev/null and b/src/main/webapp/img/productDetail/8247.jpg differ diff --git a/src/main/webapp/img/productDetail/8248.jpg b/src/main/webapp/img/productDetail/8248.jpg new file mode 100644 index 0000000..dc6182f Binary files /dev/null and b/src/main/webapp/img/productDetail/8248.jpg differ diff --git a/src/main/webapp/img/productDetail/8249.jpg b/src/main/webapp/img/productDetail/8249.jpg new file mode 100644 index 0000000..8225245 Binary files /dev/null and b/src/main/webapp/img/productDetail/8249.jpg differ diff --git a/src/main/webapp/img/productDetail/8250.jpg b/src/main/webapp/img/productDetail/8250.jpg new file mode 100644 index 0000000..58f2d1a Binary files /dev/null and b/src/main/webapp/img/productDetail/8250.jpg differ diff --git a/src/main/webapp/img/productDetail/8251.jpg b/src/main/webapp/img/productDetail/8251.jpg new file mode 100644 index 0000000..05dc14a Binary files /dev/null and b/src/main/webapp/img/productDetail/8251.jpg differ diff --git a/src/main/webapp/img/productDetail/8252.jpg b/src/main/webapp/img/productDetail/8252.jpg new file mode 100644 index 0000000..3f8f0c7 Binary files /dev/null and b/src/main/webapp/img/productDetail/8252.jpg differ diff --git a/src/main/webapp/img/productDetail/8258.jpg b/src/main/webapp/img/productDetail/8258.jpg new file mode 100644 index 0000000..8a33f0e Binary files /dev/null and b/src/main/webapp/img/productDetail/8258.jpg differ diff --git a/src/main/webapp/img/productDetail/8259.jpg b/src/main/webapp/img/productDetail/8259.jpg new file mode 100644 index 0000000..05dc14a Binary files /dev/null and b/src/main/webapp/img/productDetail/8259.jpg differ diff --git a/src/main/webapp/img/productDetail/8260.jpg b/src/main/webapp/img/productDetail/8260.jpg new file mode 100644 index 0000000..8225245 Binary files /dev/null and b/src/main/webapp/img/productDetail/8260.jpg differ diff --git a/src/main/webapp/img/productDetail/8261.jpg b/src/main/webapp/img/productDetail/8261.jpg new file mode 100644 index 0000000..dc6182f Binary files /dev/null and b/src/main/webapp/img/productDetail/8261.jpg differ diff --git a/src/main/webapp/img/productDetail/8262.jpg b/src/main/webapp/img/productDetail/8262.jpg new file mode 100644 index 0000000..7764baf Binary files /dev/null and b/src/main/webapp/img/productDetail/8262.jpg differ diff --git a/src/main/webapp/img/productDetail/8263.jpg b/src/main/webapp/img/productDetail/8263.jpg new file mode 100644 index 0000000..baa5e7c Binary files /dev/null and b/src/main/webapp/img/productDetail/8263.jpg differ diff --git a/src/main/webapp/img/productDetail/8269.jpg b/src/main/webapp/img/productDetail/8269.jpg new file mode 100644 index 0000000..dc6182f Binary files /dev/null and b/src/main/webapp/img/productDetail/8269.jpg differ diff --git a/src/main/webapp/img/productDetail/8270.jpg b/src/main/webapp/img/productDetail/8270.jpg new file mode 100644 index 0000000..3f8f0c7 Binary files /dev/null and b/src/main/webapp/img/productDetail/8270.jpg differ diff --git a/src/main/webapp/img/productDetail/8271.jpg b/src/main/webapp/img/productDetail/8271.jpg new file mode 100644 index 0000000..baa5e7c Binary files /dev/null and b/src/main/webapp/img/productDetail/8271.jpg differ diff --git a/src/main/webapp/img/productDetail/8272.jpg b/src/main/webapp/img/productDetail/8272.jpg new file mode 100644 index 0000000..43d66a3 Binary files /dev/null and b/src/main/webapp/img/productDetail/8272.jpg differ diff --git a/src/main/webapp/img/productDetail/8273.jpg b/src/main/webapp/img/productDetail/8273.jpg new file mode 100644 index 0000000..8879ce8 Binary files /dev/null and b/src/main/webapp/img/productDetail/8273.jpg differ diff --git a/src/main/webapp/img/productDetail/8274.jpg b/src/main/webapp/img/productDetail/8274.jpg new file mode 100644 index 0000000..e93a620 Binary files /dev/null and b/src/main/webapp/img/productDetail/8274.jpg differ diff --git a/src/main/webapp/img/productDetail/8280.jpg b/src/main/webapp/img/productDetail/8280.jpg new file mode 100644 index 0000000..3f8f0c7 Binary files /dev/null and b/src/main/webapp/img/productDetail/8280.jpg differ diff --git a/src/main/webapp/img/productDetail/8281.jpg b/src/main/webapp/img/productDetail/8281.jpg new file mode 100644 index 0000000..e93a620 Binary files /dev/null and b/src/main/webapp/img/productDetail/8281.jpg differ diff --git a/src/main/webapp/img/productDetail/8282.jpg b/src/main/webapp/img/productDetail/8282.jpg new file mode 100644 index 0000000..af82983 Binary files /dev/null and b/src/main/webapp/img/productDetail/8282.jpg differ diff --git a/src/main/webapp/img/productDetail/8283.jpg b/src/main/webapp/img/productDetail/8283.jpg new file mode 100644 index 0000000..8a33f0e Binary files /dev/null and b/src/main/webapp/img/productDetail/8283.jpg differ diff --git a/src/main/webapp/img/productDetail/8284.jpg b/src/main/webapp/img/productDetail/8284.jpg new file mode 100644 index 0000000..5c0a86d Binary files /dev/null and b/src/main/webapp/img/productDetail/8284.jpg differ diff --git a/src/main/webapp/img/productDetail/8285.jpg b/src/main/webapp/img/productDetail/8285.jpg new file mode 100644 index 0000000..05dc14a Binary files /dev/null and b/src/main/webapp/img/productDetail/8285.jpg differ diff --git a/src/main/webapp/img/productDetail/8896.jpg b/src/main/webapp/img/productDetail/8896.jpg new file mode 100644 index 0000000..4a42f5c Binary files /dev/null and b/src/main/webapp/img/productDetail/8896.jpg differ diff --git a/src/main/webapp/img/productDetail/8897.jpg b/src/main/webapp/img/productDetail/8897.jpg new file mode 100644 index 0000000..e6d6f79 Binary files /dev/null and b/src/main/webapp/img/productDetail/8897.jpg differ diff --git a/src/main/webapp/img/productDetail/8898.jpg b/src/main/webapp/img/productDetail/8898.jpg new file mode 100644 index 0000000..998b3f8 Binary files /dev/null and b/src/main/webapp/img/productDetail/8898.jpg differ diff --git a/src/main/webapp/img/productDetail/8899.jpg b/src/main/webapp/img/productDetail/8899.jpg new file mode 100644 index 0000000..7a85dcf Binary files /dev/null and b/src/main/webapp/img/productDetail/8899.jpg differ diff --git a/src/main/webapp/img/productDetail/8900.jpg b/src/main/webapp/img/productDetail/8900.jpg new file mode 100644 index 0000000..521d4fc Binary files /dev/null and b/src/main/webapp/img/productDetail/8900.jpg differ diff --git a/src/main/webapp/img/productDetail/8901.jpg b/src/main/webapp/img/productDetail/8901.jpg new file mode 100644 index 0000000..45a715f Binary files /dev/null and b/src/main/webapp/img/productDetail/8901.jpg differ diff --git a/src/main/webapp/img/productDetail/8907.jpg b/src/main/webapp/img/productDetail/8907.jpg new file mode 100644 index 0000000..4ca0b29 Binary files /dev/null and b/src/main/webapp/img/productDetail/8907.jpg differ diff --git a/src/main/webapp/img/productDetail/8908.jpg b/src/main/webapp/img/productDetail/8908.jpg new file mode 100644 index 0000000..f973ea5 Binary files /dev/null and b/src/main/webapp/img/productDetail/8908.jpg differ diff --git a/src/main/webapp/img/productDetail/8909.jpg b/src/main/webapp/img/productDetail/8909.jpg new file mode 100644 index 0000000..cbf7d6c Binary files /dev/null and b/src/main/webapp/img/productDetail/8909.jpg differ diff --git a/src/main/webapp/img/productDetail/8910.jpg b/src/main/webapp/img/productDetail/8910.jpg new file mode 100644 index 0000000..8c94f6a Binary files /dev/null and b/src/main/webapp/img/productDetail/8910.jpg differ diff --git a/src/main/webapp/img/productDetail/8911.jpg b/src/main/webapp/img/productDetail/8911.jpg new file mode 100644 index 0000000..5bd5b07 Binary files /dev/null and b/src/main/webapp/img/productDetail/8911.jpg differ diff --git a/src/main/webapp/img/productDetail/8912.jpg b/src/main/webapp/img/productDetail/8912.jpg new file mode 100644 index 0000000..4a42f5c Binary files /dev/null and b/src/main/webapp/img/productDetail/8912.jpg differ diff --git a/src/main/webapp/img/productDetail/8918.jpg b/src/main/webapp/img/productDetail/8918.jpg new file mode 100644 index 0000000..886eb51 Binary files /dev/null and b/src/main/webapp/img/productDetail/8918.jpg differ diff --git a/src/main/webapp/img/productDetail/8919.jpg b/src/main/webapp/img/productDetail/8919.jpg new file mode 100644 index 0000000..8c94f6a Binary files /dev/null and b/src/main/webapp/img/productDetail/8919.jpg differ diff --git a/src/main/webapp/img/productDetail/8920.jpg b/src/main/webapp/img/productDetail/8920.jpg new file mode 100644 index 0000000..973b90d Binary files /dev/null and b/src/main/webapp/img/productDetail/8920.jpg differ diff --git a/src/main/webapp/img/productDetail/8921.jpg b/src/main/webapp/img/productDetail/8921.jpg new file mode 100644 index 0000000..8dfa675 Binary files /dev/null and b/src/main/webapp/img/productDetail/8921.jpg differ diff --git a/src/main/webapp/img/productDetail/8922.jpg b/src/main/webapp/img/productDetail/8922.jpg new file mode 100644 index 0000000..308eef4 Binary files /dev/null and b/src/main/webapp/img/productDetail/8922.jpg differ diff --git a/src/main/webapp/img/productDetail/8923.jpg b/src/main/webapp/img/productDetail/8923.jpg new file mode 100644 index 0000000..7252c54 Binary files /dev/null and b/src/main/webapp/img/productDetail/8923.jpg differ diff --git a/src/main/webapp/img/productDetail/8929.jpg b/src/main/webapp/img/productDetail/8929.jpg new file mode 100644 index 0000000..7252c54 Binary files /dev/null and b/src/main/webapp/img/productDetail/8929.jpg differ diff --git a/src/main/webapp/img/productDetail/8930.jpg b/src/main/webapp/img/productDetail/8930.jpg new file mode 100644 index 0000000..521d4fc Binary files /dev/null and b/src/main/webapp/img/productDetail/8930.jpg differ diff --git a/src/main/webapp/img/productDetail/8931.jpg b/src/main/webapp/img/productDetail/8931.jpg new file mode 100644 index 0000000..886eb51 Binary files /dev/null and b/src/main/webapp/img/productDetail/8931.jpg differ diff --git a/src/main/webapp/img/productDetail/8932.jpg b/src/main/webapp/img/productDetail/8932.jpg new file mode 100644 index 0000000..49397eb Binary files /dev/null and b/src/main/webapp/img/productDetail/8932.jpg differ diff --git a/src/main/webapp/img/productDetail/8933.jpg b/src/main/webapp/img/productDetail/8933.jpg new file mode 100644 index 0000000..7a85dcf Binary files /dev/null and b/src/main/webapp/img/productDetail/8933.jpg differ diff --git a/src/main/webapp/img/productDetail/8934.jpg b/src/main/webapp/img/productDetail/8934.jpg new file mode 100644 index 0000000..97ee1df Binary files /dev/null and b/src/main/webapp/img/productDetail/8934.jpg differ diff --git a/src/main/webapp/img/productDetail/8940.jpg b/src/main/webapp/img/productDetail/8940.jpg new file mode 100644 index 0000000..7a85dcf Binary files /dev/null and b/src/main/webapp/img/productDetail/8940.jpg differ diff --git a/src/main/webapp/img/productDetail/8941.jpg b/src/main/webapp/img/productDetail/8941.jpg new file mode 100644 index 0000000..801ccd1 Binary files /dev/null and b/src/main/webapp/img/productDetail/8941.jpg differ diff --git a/src/main/webapp/img/productDetail/8942.jpg b/src/main/webapp/img/productDetail/8942.jpg new file mode 100644 index 0000000..7252c54 Binary files /dev/null and b/src/main/webapp/img/productDetail/8942.jpg differ diff --git a/src/main/webapp/img/productDetail/8943.jpg b/src/main/webapp/img/productDetail/8943.jpg new file mode 100644 index 0000000..f10530f Binary files /dev/null and b/src/main/webapp/img/productDetail/8943.jpg differ diff --git a/src/main/webapp/img/productDetail/8944.jpg b/src/main/webapp/img/productDetail/8944.jpg new file mode 100644 index 0000000..45a715f Binary files /dev/null and b/src/main/webapp/img/productDetail/8944.jpg differ diff --git a/src/main/webapp/img/productDetail/8945.jpg b/src/main/webapp/img/productDetail/8945.jpg new file mode 100644 index 0000000..c5dfb93 Binary files /dev/null and b/src/main/webapp/img/productDetail/8945.jpg differ diff --git a/src/main/webapp/img/productDetail/9500.jpg b/src/main/webapp/img/productDetail/9500.jpg new file mode 100644 index 0000000..ae1a51a Binary files /dev/null and b/src/main/webapp/img/productDetail/9500.jpg differ diff --git a/src/main/webapp/img/productDetail/9501.jpg b/src/main/webapp/img/productDetail/9501.jpg new file mode 100644 index 0000000..675f350 Binary files /dev/null and b/src/main/webapp/img/productDetail/9501.jpg differ diff --git a/src/main/webapp/img/productDetail/9502.jpg b/src/main/webapp/img/productDetail/9502.jpg new file mode 100644 index 0000000..3be82d2 Binary files /dev/null and b/src/main/webapp/img/productDetail/9502.jpg differ diff --git a/src/main/webapp/img/productDetail/9503.jpg b/src/main/webapp/img/productDetail/9503.jpg new file mode 100644 index 0000000..8c9a65d Binary files /dev/null and b/src/main/webapp/img/productDetail/9503.jpg differ diff --git a/src/main/webapp/img/productDetail/9504.jpg b/src/main/webapp/img/productDetail/9504.jpg new file mode 100644 index 0000000..a7ec543 Binary files /dev/null and b/src/main/webapp/img/productDetail/9504.jpg differ diff --git a/src/main/webapp/img/productDetail/9505.jpg b/src/main/webapp/img/productDetail/9505.jpg new file mode 100644 index 0000000..097139b Binary files /dev/null and b/src/main/webapp/img/productDetail/9505.jpg differ diff --git a/src/main/webapp/img/productDetail/9511.jpg b/src/main/webapp/img/productDetail/9511.jpg new file mode 100644 index 0000000..2921098 Binary files /dev/null and b/src/main/webapp/img/productDetail/9511.jpg differ diff --git a/src/main/webapp/img/productDetail/9512.jpg b/src/main/webapp/img/productDetail/9512.jpg new file mode 100644 index 0000000..e310d9c Binary files /dev/null and b/src/main/webapp/img/productDetail/9512.jpg differ diff --git a/src/main/webapp/img/productDetail/9513.jpg b/src/main/webapp/img/productDetail/9513.jpg new file mode 100644 index 0000000..675f350 Binary files /dev/null and b/src/main/webapp/img/productDetail/9513.jpg differ diff --git a/src/main/webapp/img/productDetail/9514.jpg b/src/main/webapp/img/productDetail/9514.jpg new file mode 100644 index 0000000..ae1a51a Binary files /dev/null and b/src/main/webapp/img/productDetail/9514.jpg differ diff --git a/src/main/webapp/img/productDetail/9515.jpg b/src/main/webapp/img/productDetail/9515.jpg new file mode 100644 index 0000000..3be82d2 Binary files /dev/null and b/src/main/webapp/img/productDetail/9515.jpg differ diff --git a/src/main/webapp/img/productDetail/9516.jpg b/src/main/webapp/img/productDetail/9516.jpg new file mode 100644 index 0000000..a7ec543 Binary files /dev/null and b/src/main/webapp/img/productDetail/9516.jpg differ diff --git a/src/main/webapp/img/productDetail/9522.jpg b/src/main/webapp/img/productDetail/9522.jpg new file mode 100644 index 0000000..097139b Binary files /dev/null and b/src/main/webapp/img/productDetail/9522.jpg differ diff --git a/src/main/webapp/img/productDetail/9523.jpg b/src/main/webapp/img/productDetail/9523.jpg new file mode 100644 index 0000000..e310d9c Binary files /dev/null and b/src/main/webapp/img/productDetail/9523.jpg differ diff --git a/src/main/webapp/img/productDetail/9524.jpg b/src/main/webapp/img/productDetail/9524.jpg new file mode 100644 index 0000000..2921098 Binary files /dev/null and b/src/main/webapp/img/productDetail/9524.jpg differ diff --git a/src/main/webapp/img/productDetail/9525.jpg b/src/main/webapp/img/productDetail/9525.jpg new file mode 100644 index 0000000..a7ec543 Binary files /dev/null and b/src/main/webapp/img/productDetail/9525.jpg differ diff --git a/src/main/webapp/img/productDetail/9526.jpg b/src/main/webapp/img/productDetail/9526.jpg new file mode 100644 index 0000000..3be82d2 Binary files /dev/null and b/src/main/webapp/img/productDetail/9526.jpg differ diff --git a/src/main/webapp/img/productDetail/9527.jpg b/src/main/webapp/img/productDetail/9527.jpg new file mode 100644 index 0000000..675f350 Binary files /dev/null and b/src/main/webapp/img/productDetail/9527.jpg differ diff --git a/src/main/webapp/img/productDetail/9533.jpg b/src/main/webapp/img/productDetail/9533.jpg new file mode 100644 index 0000000..e310d9c Binary files /dev/null and b/src/main/webapp/img/productDetail/9533.jpg differ diff --git a/src/main/webapp/img/productDetail/9534.jpg b/src/main/webapp/img/productDetail/9534.jpg new file mode 100644 index 0000000..8c9a65d Binary files /dev/null and b/src/main/webapp/img/productDetail/9534.jpg differ diff --git a/src/main/webapp/img/productDetail/9535.jpg b/src/main/webapp/img/productDetail/9535.jpg new file mode 100644 index 0000000..2921098 Binary files /dev/null and b/src/main/webapp/img/productDetail/9535.jpg differ diff --git a/src/main/webapp/img/productDetail/9536.jpg b/src/main/webapp/img/productDetail/9536.jpg new file mode 100644 index 0000000..3be82d2 Binary files /dev/null and b/src/main/webapp/img/productDetail/9536.jpg differ diff --git a/src/main/webapp/img/productDetail/9537.jpg b/src/main/webapp/img/productDetail/9537.jpg new file mode 100644 index 0000000..675f350 Binary files /dev/null and b/src/main/webapp/img/productDetail/9537.jpg differ diff --git a/src/main/webapp/img/productDetail/9538.jpg b/src/main/webapp/img/productDetail/9538.jpg new file mode 100644 index 0000000..097139b Binary files /dev/null and b/src/main/webapp/img/productDetail/9538.jpg differ diff --git a/src/main/webapp/img/productDetail/9544.jpg b/src/main/webapp/img/productDetail/9544.jpg new file mode 100644 index 0000000..a7ec543 Binary files /dev/null and b/src/main/webapp/img/productDetail/9544.jpg differ diff --git a/src/main/webapp/img/productDetail/9545.jpg b/src/main/webapp/img/productDetail/9545.jpg new file mode 100644 index 0000000..8c9a65d Binary files /dev/null and b/src/main/webapp/img/productDetail/9545.jpg differ diff --git a/src/main/webapp/img/productDetail/9546.jpg b/src/main/webapp/img/productDetail/9546.jpg new file mode 100644 index 0000000..2921098 Binary files /dev/null and b/src/main/webapp/img/productDetail/9546.jpg differ diff --git a/src/main/webapp/img/productDetail/9547.jpg b/src/main/webapp/img/productDetail/9547.jpg new file mode 100644 index 0000000..3be82d2 Binary files /dev/null and b/src/main/webapp/img/productDetail/9547.jpg differ diff --git a/src/main/webapp/img/productDetail/9548.jpg b/src/main/webapp/img/productDetail/9548.jpg new file mode 100644 index 0000000..675f350 Binary files /dev/null and b/src/main/webapp/img/productDetail/9548.jpg differ diff --git a/src/main/webapp/img/productDetail/9549.jpg b/src/main/webapp/img/productDetail/9549.jpg new file mode 100644 index 0000000..ae1a51a Binary files /dev/null and b/src/main/webapp/img/productDetail/9549.jpg differ diff --git a/src/main/webapp/img/productSingle/10144.jpg b/src/main/webapp/img/productSingle/10144.jpg new file mode 100644 index 0000000..aef1d94 Binary files /dev/null and b/src/main/webapp/img/productSingle/10144.jpg differ diff --git a/src/main/webapp/img/productSingle/10145.jpg b/src/main/webapp/img/productSingle/10145.jpg new file mode 100644 index 0000000..e6155fb Binary files /dev/null and b/src/main/webapp/img/productSingle/10145.jpg differ diff --git a/src/main/webapp/img/productSingle/10146.jpg b/src/main/webapp/img/productSingle/10146.jpg new file mode 100644 index 0000000..f1c07a6 Binary files /dev/null and b/src/main/webapp/img/productSingle/10146.jpg differ diff --git a/src/main/webapp/img/productSingle/10147.jpg b/src/main/webapp/img/productSingle/10147.jpg new file mode 100644 index 0000000..461fc28 Binary files /dev/null and b/src/main/webapp/img/productSingle/10147.jpg differ diff --git a/src/main/webapp/img/productSingle/10148.jpg b/src/main/webapp/img/productSingle/10148.jpg new file mode 100644 index 0000000..cb8b06a Binary files /dev/null and b/src/main/webapp/img/productSingle/10148.jpg differ diff --git a/src/main/webapp/img/productSingle/10155.jpg b/src/main/webapp/img/productSingle/10155.jpg new file mode 100644 index 0000000..8fa03fa Binary files /dev/null and b/src/main/webapp/img/productSingle/10155.jpg differ diff --git a/src/main/webapp/img/productSingle/10156.jpg b/src/main/webapp/img/productSingle/10156.jpg new file mode 100644 index 0000000..8574973 Binary files /dev/null and b/src/main/webapp/img/productSingle/10156.jpg differ diff --git a/src/main/webapp/img/productSingle/10157.jpg b/src/main/webapp/img/productSingle/10157.jpg new file mode 100644 index 0000000..9410208 Binary files /dev/null and b/src/main/webapp/img/productSingle/10157.jpg differ diff --git a/src/main/webapp/img/productSingle/10158.jpg b/src/main/webapp/img/productSingle/10158.jpg new file mode 100644 index 0000000..f57bfda Binary files /dev/null and b/src/main/webapp/img/productSingle/10158.jpg differ diff --git a/src/main/webapp/img/productSingle/10159.jpg b/src/main/webapp/img/productSingle/10159.jpg new file mode 100644 index 0000000..1bd6e69 Binary files /dev/null and b/src/main/webapp/img/productSingle/10159.jpg differ diff --git a/src/main/webapp/img/productSingle/10166.jpg b/src/main/webapp/img/productSingle/10166.jpg new file mode 100644 index 0000000..e867284 Binary files /dev/null and b/src/main/webapp/img/productSingle/10166.jpg differ diff --git a/src/main/webapp/img/productSingle/10167.jpg b/src/main/webapp/img/productSingle/10167.jpg new file mode 100644 index 0000000..ebda521 Binary files /dev/null and b/src/main/webapp/img/productSingle/10167.jpg differ diff --git a/src/main/webapp/img/productSingle/10168.jpg b/src/main/webapp/img/productSingle/10168.jpg new file mode 100644 index 0000000..c64c916 Binary files /dev/null and b/src/main/webapp/img/productSingle/10168.jpg differ diff --git a/src/main/webapp/img/productSingle/10169.jpg b/src/main/webapp/img/productSingle/10169.jpg new file mode 100644 index 0000000..2576801 Binary files /dev/null and b/src/main/webapp/img/productSingle/10169.jpg differ diff --git a/src/main/webapp/img/productSingle/10170.jpg b/src/main/webapp/img/productSingle/10170.jpg new file mode 100644 index 0000000..e4a1508 Binary files /dev/null and b/src/main/webapp/img/productSingle/10170.jpg differ diff --git a/src/main/webapp/img/productSingle/10177.jpg b/src/main/webapp/img/productSingle/10177.jpg new file mode 100644 index 0000000..6397ffe Binary files /dev/null and b/src/main/webapp/img/productSingle/10177.jpg differ diff --git a/src/main/webapp/img/productSingle/10178.jpg b/src/main/webapp/img/productSingle/10178.jpg new file mode 100644 index 0000000..857a81b Binary files /dev/null and b/src/main/webapp/img/productSingle/10178.jpg differ diff --git a/src/main/webapp/img/productSingle/10179.jpg b/src/main/webapp/img/productSingle/10179.jpg new file mode 100644 index 0000000..b55af1f Binary files /dev/null and b/src/main/webapp/img/productSingle/10179.jpg differ diff --git a/src/main/webapp/img/productSingle/10180.jpg b/src/main/webapp/img/productSingle/10180.jpg new file mode 100644 index 0000000..87fffaa Binary files /dev/null and b/src/main/webapp/img/productSingle/10180.jpg differ diff --git a/src/main/webapp/img/productSingle/10181.jpg b/src/main/webapp/img/productSingle/10181.jpg new file mode 100644 index 0000000..cf660ee Binary files /dev/null and b/src/main/webapp/img/productSingle/10181.jpg differ diff --git a/src/main/webapp/img/productSingle/10188.jpg b/src/main/webapp/img/productSingle/10188.jpg new file mode 100644 index 0000000..6f33ae2 Binary files /dev/null and b/src/main/webapp/img/productSingle/10188.jpg differ diff --git a/src/main/webapp/img/productSingle/10189.jpg b/src/main/webapp/img/productSingle/10189.jpg new file mode 100644 index 0000000..32c3663 Binary files /dev/null and b/src/main/webapp/img/productSingle/10189.jpg differ diff --git a/src/main/webapp/img/productSingle/10190.jpg b/src/main/webapp/img/productSingle/10190.jpg new file mode 100644 index 0000000..6a140d2 Binary files /dev/null and b/src/main/webapp/img/productSingle/10190.jpg differ diff --git a/src/main/webapp/img/productSingle/10191.jpg b/src/main/webapp/img/productSingle/10191.jpg new file mode 100644 index 0000000..ac99e64 Binary files /dev/null and b/src/main/webapp/img/productSingle/10191.jpg differ diff --git a/src/main/webapp/img/productSingle/10192.jpg b/src/main/webapp/img/productSingle/10192.jpg new file mode 100644 index 0000000..c3bd74e Binary files /dev/null and b/src/main/webapp/img/productSingle/10192.jpg differ diff --git a/src/main/webapp/img/productSingle/1276.jpg b/src/main/webapp/img/productSingle/1276.jpg new file mode 100644 index 0000000..3bd5cca Binary files /dev/null and b/src/main/webapp/img/productSingle/1276.jpg differ diff --git a/src/main/webapp/img/productSingle/1277.jpg b/src/main/webapp/img/productSingle/1277.jpg new file mode 100644 index 0000000..4aea485 Binary files /dev/null and b/src/main/webapp/img/productSingle/1277.jpg differ diff --git a/src/main/webapp/img/productSingle/1278.jpg b/src/main/webapp/img/productSingle/1278.jpg new file mode 100644 index 0000000..f36d226 Binary files /dev/null and b/src/main/webapp/img/productSingle/1278.jpg differ diff --git a/src/main/webapp/img/productSingle/1279.jpg b/src/main/webapp/img/productSingle/1279.jpg new file mode 100644 index 0000000..fed2a9f Binary files /dev/null and b/src/main/webapp/img/productSingle/1279.jpg differ diff --git a/src/main/webapp/img/productSingle/1280.jpg b/src/main/webapp/img/productSingle/1280.jpg new file mode 100644 index 0000000..76c9bf2 Binary files /dev/null and b/src/main/webapp/img/productSingle/1280.jpg differ diff --git a/src/main/webapp/img/productSingle/1287.jpg b/src/main/webapp/img/productSingle/1287.jpg new file mode 100644 index 0000000..d9862e1 Binary files /dev/null and b/src/main/webapp/img/productSingle/1287.jpg differ diff --git a/src/main/webapp/img/productSingle/1288.jpg b/src/main/webapp/img/productSingle/1288.jpg new file mode 100644 index 0000000..2114311 Binary files /dev/null and b/src/main/webapp/img/productSingle/1288.jpg differ diff --git a/src/main/webapp/img/productSingle/1289.jpg b/src/main/webapp/img/productSingle/1289.jpg new file mode 100644 index 0000000..3c21d17 Binary files /dev/null and b/src/main/webapp/img/productSingle/1289.jpg differ diff --git a/src/main/webapp/img/productSingle/1290.jpg b/src/main/webapp/img/productSingle/1290.jpg new file mode 100644 index 0000000..75fdc20 Binary files /dev/null and b/src/main/webapp/img/productSingle/1290.jpg differ diff --git a/src/main/webapp/img/productSingle/1291.jpg b/src/main/webapp/img/productSingle/1291.jpg new file mode 100644 index 0000000..a75feab Binary files /dev/null and b/src/main/webapp/img/productSingle/1291.jpg differ diff --git a/src/main/webapp/img/productSingle/1298.jpg b/src/main/webapp/img/productSingle/1298.jpg new file mode 100644 index 0000000..933b727 Binary files /dev/null and b/src/main/webapp/img/productSingle/1298.jpg differ diff --git a/src/main/webapp/img/productSingle/1299.jpg b/src/main/webapp/img/productSingle/1299.jpg new file mode 100644 index 0000000..a2810dc Binary files /dev/null and b/src/main/webapp/img/productSingle/1299.jpg differ diff --git a/src/main/webapp/img/productSingle/1300.jpg b/src/main/webapp/img/productSingle/1300.jpg new file mode 100644 index 0000000..c6da6ac Binary files /dev/null and b/src/main/webapp/img/productSingle/1300.jpg differ diff --git a/src/main/webapp/img/productSingle/1301.jpg b/src/main/webapp/img/productSingle/1301.jpg new file mode 100644 index 0000000..8b4a450 Binary files /dev/null and b/src/main/webapp/img/productSingle/1301.jpg differ diff --git a/src/main/webapp/img/productSingle/1302.jpg b/src/main/webapp/img/productSingle/1302.jpg new file mode 100644 index 0000000..3546053 Binary files /dev/null and b/src/main/webapp/img/productSingle/1302.jpg differ diff --git a/src/main/webapp/img/productSingle/1309.jpg b/src/main/webapp/img/productSingle/1309.jpg new file mode 100644 index 0000000..dae05cf Binary files /dev/null and b/src/main/webapp/img/productSingle/1309.jpg differ diff --git a/src/main/webapp/img/productSingle/1310.jpg b/src/main/webapp/img/productSingle/1310.jpg new file mode 100644 index 0000000..050611a Binary files /dev/null and b/src/main/webapp/img/productSingle/1310.jpg differ diff --git a/src/main/webapp/img/productSingle/1311.jpg b/src/main/webapp/img/productSingle/1311.jpg new file mode 100644 index 0000000..1349033 Binary files /dev/null and b/src/main/webapp/img/productSingle/1311.jpg differ diff --git a/src/main/webapp/img/productSingle/1312.jpg b/src/main/webapp/img/productSingle/1312.jpg new file mode 100644 index 0000000..229595c Binary files /dev/null and b/src/main/webapp/img/productSingle/1312.jpg differ diff --git a/src/main/webapp/img/productSingle/1313.jpg b/src/main/webapp/img/productSingle/1313.jpg new file mode 100644 index 0000000..710b85b Binary files /dev/null and b/src/main/webapp/img/productSingle/1313.jpg differ diff --git a/src/main/webapp/img/productSingle/1320.jpg b/src/main/webapp/img/productSingle/1320.jpg new file mode 100644 index 0000000..2850382 Binary files /dev/null and b/src/main/webapp/img/productSingle/1320.jpg differ diff --git a/src/main/webapp/img/productSingle/1321.jpg b/src/main/webapp/img/productSingle/1321.jpg new file mode 100644 index 0000000..526e7dd Binary files /dev/null and b/src/main/webapp/img/productSingle/1321.jpg differ diff --git a/src/main/webapp/img/productSingle/1322.jpg b/src/main/webapp/img/productSingle/1322.jpg new file mode 100644 index 0000000..6e93fae Binary files /dev/null and b/src/main/webapp/img/productSingle/1322.jpg differ diff --git a/src/main/webapp/img/productSingle/1323.jpg b/src/main/webapp/img/productSingle/1323.jpg new file mode 100644 index 0000000..a186716 Binary files /dev/null and b/src/main/webapp/img/productSingle/1323.jpg differ diff --git a/src/main/webapp/img/productSingle/1324.jpg b/src/main/webapp/img/productSingle/1324.jpg new file mode 100644 index 0000000..d04f55c Binary files /dev/null and b/src/main/webapp/img/productSingle/1324.jpg differ diff --git a/src/main/webapp/img/productSingle/1880.jpg b/src/main/webapp/img/productSingle/1880.jpg new file mode 100644 index 0000000..e409b06 Binary files /dev/null and b/src/main/webapp/img/productSingle/1880.jpg differ diff --git a/src/main/webapp/img/productSingle/1881.jpg b/src/main/webapp/img/productSingle/1881.jpg new file mode 100644 index 0000000..3b22625 Binary files /dev/null and b/src/main/webapp/img/productSingle/1881.jpg differ diff --git a/src/main/webapp/img/productSingle/1882.jpg b/src/main/webapp/img/productSingle/1882.jpg new file mode 100644 index 0000000..92083a8 Binary files /dev/null and b/src/main/webapp/img/productSingle/1882.jpg differ diff --git a/src/main/webapp/img/productSingle/1883.jpg b/src/main/webapp/img/productSingle/1883.jpg new file mode 100644 index 0000000..f1e9010 Binary files /dev/null and b/src/main/webapp/img/productSingle/1883.jpg differ diff --git a/src/main/webapp/img/productSingle/1884.jpg b/src/main/webapp/img/productSingle/1884.jpg new file mode 100644 index 0000000..11c151e Binary files /dev/null and b/src/main/webapp/img/productSingle/1884.jpg differ diff --git a/src/main/webapp/img/productSingle/1891.jpg b/src/main/webapp/img/productSingle/1891.jpg new file mode 100644 index 0000000..1ac0af1 Binary files /dev/null and b/src/main/webapp/img/productSingle/1891.jpg differ diff --git a/src/main/webapp/img/productSingle/1892.jpg b/src/main/webapp/img/productSingle/1892.jpg new file mode 100644 index 0000000..fa88c0b Binary files /dev/null and b/src/main/webapp/img/productSingle/1892.jpg differ diff --git a/src/main/webapp/img/productSingle/1893.jpg b/src/main/webapp/img/productSingle/1893.jpg new file mode 100644 index 0000000..8b20fef Binary files /dev/null and b/src/main/webapp/img/productSingle/1893.jpg differ diff --git a/src/main/webapp/img/productSingle/1894.jpg b/src/main/webapp/img/productSingle/1894.jpg new file mode 100644 index 0000000..91041ec Binary files /dev/null and b/src/main/webapp/img/productSingle/1894.jpg differ diff --git a/src/main/webapp/img/productSingle/1895.jpg b/src/main/webapp/img/productSingle/1895.jpg new file mode 100644 index 0000000..c2d6c5f Binary files /dev/null and b/src/main/webapp/img/productSingle/1895.jpg differ diff --git a/src/main/webapp/img/productSingle/19.jpg b/src/main/webapp/img/productSingle/19.jpg new file mode 100644 index 0000000..0788531 Binary files /dev/null and b/src/main/webapp/img/productSingle/19.jpg differ diff --git a/src/main/webapp/img/productSingle/1902.jpg b/src/main/webapp/img/productSingle/1902.jpg new file mode 100644 index 0000000..f94cf1e Binary files /dev/null and b/src/main/webapp/img/productSingle/1902.jpg differ diff --git a/src/main/webapp/img/productSingle/1903.jpg b/src/main/webapp/img/productSingle/1903.jpg new file mode 100644 index 0000000..229b5df Binary files /dev/null and b/src/main/webapp/img/productSingle/1903.jpg differ diff --git a/src/main/webapp/img/productSingle/1904.jpg b/src/main/webapp/img/productSingle/1904.jpg new file mode 100644 index 0000000..279e92a Binary files /dev/null and b/src/main/webapp/img/productSingle/1904.jpg differ diff --git a/src/main/webapp/img/productSingle/1905.jpg b/src/main/webapp/img/productSingle/1905.jpg new file mode 100644 index 0000000..12f323d Binary files /dev/null and b/src/main/webapp/img/productSingle/1905.jpg differ diff --git a/src/main/webapp/img/productSingle/1906.jpg b/src/main/webapp/img/productSingle/1906.jpg new file mode 100644 index 0000000..009a403 Binary files /dev/null and b/src/main/webapp/img/productSingle/1906.jpg differ diff --git a/src/main/webapp/img/productSingle/1913.jpg b/src/main/webapp/img/productSingle/1913.jpg new file mode 100644 index 0000000..4fe4939 Binary files /dev/null and b/src/main/webapp/img/productSingle/1913.jpg differ diff --git a/src/main/webapp/img/productSingle/1914.jpg b/src/main/webapp/img/productSingle/1914.jpg new file mode 100644 index 0000000..1fcf0b2 Binary files /dev/null and b/src/main/webapp/img/productSingle/1914.jpg differ diff --git a/src/main/webapp/img/productSingle/1915.jpg b/src/main/webapp/img/productSingle/1915.jpg new file mode 100644 index 0000000..fc7433e Binary files /dev/null and b/src/main/webapp/img/productSingle/1915.jpg differ diff --git a/src/main/webapp/img/productSingle/1916.jpg b/src/main/webapp/img/productSingle/1916.jpg new file mode 100644 index 0000000..41df40c Binary files /dev/null and b/src/main/webapp/img/productSingle/1916.jpg differ diff --git a/src/main/webapp/img/productSingle/1917.jpg b/src/main/webapp/img/productSingle/1917.jpg new file mode 100644 index 0000000..1efa55f Binary files /dev/null and b/src/main/webapp/img/productSingle/1917.jpg differ diff --git a/src/main/webapp/img/productSingle/1924.jpg b/src/main/webapp/img/productSingle/1924.jpg new file mode 100644 index 0000000..147a919 Binary files /dev/null and b/src/main/webapp/img/productSingle/1924.jpg differ diff --git a/src/main/webapp/img/productSingle/1925.jpg b/src/main/webapp/img/productSingle/1925.jpg new file mode 100644 index 0000000..a7d5fc2 Binary files /dev/null and b/src/main/webapp/img/productSingle/1925.jpg differ diff --git a/src/main/webapp/img/productSingle/1926.jpg b/src/main/webapp/img/productSingle/1926.jpg new file mode 100644 index 0000000..b34ab6a Binary files /dev/null and b/src/main/webapp/img/productSingle/1926.jpg differ diff --git a/src/main/webapp/img/productSingle/1927.jpg b/src/main/webapp/img/productSingle/1927.jpg new file mode 100644 index 0000000..a226200 Binary files /dev/null and b/src/main/webapp/img/productSingle/1927.jpg differ diff --git a/src/main/webapp/img/productSingle/1928.jpg b/src/main/webapp/img/productSingle/1928.jpg new file mode 100644 index 0000000..1a020df Binary files /dev/null and b/src/main/webapp/img/productSingle/1928.jpg differ diff --git a/src/main/webapp/img/productSingle/21.jpg b/src/main/webapp/img/productSingle/21.jpg new file mode 100644 index 0000000..8803d36 Binary files /dev/null and b/src/main/webapp/img/productSingle/21.jpg differ diff --git a/src/main/webapp/img/productSingle/22.jpg b/src/main/webapp/img/productSingle/22.jpg new file mode 100644 index 0000000..5262bd8 Binary files /dev/null and b/src/main/webapp/img/productSingle/22.jpg differ diff --git a/src/main/webapp/img/productSingle/2533.jpg b/src/main/webapp/img/productSingle/2533.jpg new file mode 100644 index 0000000..2218b91 Binary files /dev/null and b/src/main/webapp/img/productSingle/2533.jpg differ diff --git a/src/main/webapp/img/productSingle/2534.jpg b/src/main/webapp/img/productSingle/2534.jpg new file mode 100644 index 0000000..51eb0e8 Binary files /dev/null and b/src/main/webapp/img/productSingle/2534.jpg differ diff --git a/src/main/webapp/img/productSingle/2535.jpg b/src/main/webapp/img/productSingle/2535.jpg new file mode 100644 index 0000000..4a847bb Binary files /dev/null and b/src/main/webapp/img/productSingle/2535.jpg differ diff --git a/src/main/webapp/img/productSingle/2536.jpg b/src/main/webapp/img/productSingle/2536.jpg new file mode 100644 index 0000000..d1e3989 Binary files /dev/null and b/src/main/webapp/img/productSingle/2536.jpg differ diff --git a/src/main/webapp/img/productSingle/2537.jpg b/src/main/webapp/img/productSingle/2537.jpg new file mode 100644 index 0000000..08dd3a3 Binary files /dev/null and b/src/main/webapp/img/productSingle/2537.jpg differ diff --git a/src/main/webapp/img/productSingle/2544.jpg b/src/main/webapp/img/productSingle/2544.jpg new file mode 100644 index 0000000..ee207b2 Binary files /dev/null and b/src/main/webapp/img/productSingle/2544.jpg differ diff --git a/src/main/webapp/img/productSingle/2545.jpg b/src/main/webapp/img/productSingle/2545.jpg new file mode 100644 index 0000000..01f1867 Binary files /dev/null and b/src/main/webapp/img/productSingle/2545.jpg differ diff --git a/src/main/webapp/img/productSingle/2546.jpg b/src/main/webapp/img/productSingle/2546.jpg new file mode 100644 index 0000000..f717951 Binary files /dev/null and b/src/main/webapp/img/productSingle/2546.jpg differ diff --git a/src/main/webapp/img/productSingle/2547.jpg b/src/main/webapp/img/productSingle/2547.jpg new file mode 100644 index 0000000..8ff0208 Binary files /dev/null and b/src/main/webapp/img/productSingle/2547.jpg differ diff --git a/src/main/webapp/img/productSingle/2548.jpg b/src/main/webapp/img/productSingle/2548.jpg new file mode 100644 index 0000000..12150f2 Binary files /dev/null and b/src/main/webapp/img/productSingle/2548.jpg differ diff --git a/src/main/webapp/img/productSingle/2555.jpg b/src/main/webapp/img/productSingle/2555.jpg new file mode 100644 index 0000000..d52f33a Binary files /dev/null and b/src/main/webapp/img/productSingle/2555.jpg differ diff --git a/src/main/webapp/img/productSingle/2556.jpg b/src/main/webapp/img/productSingle/2556.jpg new file mode 100644 index 0000000..3e210f5 Binary files /dev/null and b/src/main/webapp/img/productSingle/2556.jpg differ diff --git a/src/main/webapp/img/productSingle/2557.jpg b/src/main/webapp/img/productSingle/2557.jpg new file mode 100644 index 0000000..fa0b8f6 Binary files /dev/null and b/src/main/webapp/img/productSingle/2557.jpg differ diff --git a/src/main/webapp/img/productSingle/2558.jpg b/src/main/webapp/img/productSingle/2558.jpg new file mode 100644 index 0000000..0a619f8 Binary files /dev/null and b/src/main/webapp/img/productSingle/2558.jpg differ diff --git a/src/main/webapp/img/productSingle/2559.jpg b/src/main/webapp/img/productSingle/2559.jpg new file mode 100644 index 0000000..238b54c Binary files /dev/null and b/src/main/webapp/img/productSingle/2559.jpg differ diff --git a/src/main/webapp/img/productSingle/2566.jpg b/src/main/webapp/img/productSingle/2566.jpg new file mode 100644 index 0000000..82b91f1 Binary files /dev/null and b/src/main/webapp/img/productSingle/2566.jpg differ diff --git a/src/main/webapp/img/productSingle/2567.jpg b/src/main/webapp/img/productSingle/2567.jpg new file mode 100644 index 0000000..231d76b Binary files /dev/null and b/src/main/webapp/img/productSingle/2567.jpg differ diff --git a/src/main/webapp/img/productSingle/2568.jpg b/src/main/webapp/img/productSingle/2568.jpg new file mode 100644 index 0000000..d62334f Binary files /dev/null and b/src/main/webapp/img/productSingle/2568.jpg differ diff --git a/src/main/webapp/img/productSingle/2569.jpg b/src/main/webapp/img/productSingle/2569.jpg new file mode 100644 index 0000000..3847f4d Binary files /dev/null and b/src/main/webapp/img/productSingle/2569.jpg differ diff --git a/src/main/webapp/img/productSingle/2570.jpg b/src/main/webapp/img/productSingle/2570.jpg new file mode 100644 index 0000000..a2e3238 Binary files /dev/null and b/src/main/webapp/img/productSingle/2570.jpg differ diff --git a/src/main/webapp/img/productSingle/2577.jpg b/src/main/webapp/img/productSingle/2577.jpg new file mode 100644 index 0000000..5514338 Binary files /dev/null and b/src/main/webapp/img/productSingle/2577.jpg differ diff --git a/src/main/webapp/img/productSingle/2578.jpg b/src/main/webapp/img/productSingle/2578.jpg new file mode 100644 index 0000000..1c34392 Binary files /dev/null and b/src/main/webapp/img/productSingle/2578.jpg differ diff --git a/src/main/webapp/img/productSingle/2579.jpg b/src/main/webapp/img/productSingle/2579.jpg new file mode 100644 index 0000000..38c7e2a Binary files /dev/null and b/src/main/webapp/img/productSingle/2579.jpg differ diff --git a/src/main/webapp/img/productSingle/2580.jpg b/src/main/webapp/img/productSingle/2580.jpg new file mode 100644 index 0000000..024ce70 Binary files /dev/null and b/src/main/webapp/img/productSingle/2580.jpg differ diff --git a/src/main/webapp/img/productSingle/2581.jpg b/src/main/webapp/img/productSingle/2581.jpg new file mode 100644 index 0000000..b5bf2cc Binary files /dev/null and b/src/main/webapp/img/productSingle/2581.jpg differ diff --git a/src/main/webapp/img/productSingle/3134.jpg b/src/main/webapp/img/productSingle/3134.jpg new file mode 100644 index 0000000..26df232 Binary files /dev/null and b/src/main/webapp/img/productSingle/3134.jpg differ diff --git a/src/main/webapp/img/productSingle/3135.jpg b/src/main/webapp/img/productSingle/3135.jpg new file mode 100644 index 0000000..e94b782 Binary files /dev/null and b/src/main/webapp/img/productSingle/3135.jpg differ diff --git a/src/main/webapp/img/productSingle/3136.jpg b/src/main/webapp/img/productSingle/3136.jpg new file mode 100644 index 0000000..a9e91de Binary files /dev/null and b/src/main/webapp/img/productSingle/3136.jpg differ diff --git a/src/main/webapp/img/productSingle/3137.jpg b/src/main/webapp/img/productSingle/3137.jpg new file mode 100644 index 0000000..105b480 Binary files /dev/null and b/src/main/webapp/img/productSingle/3137.jpg differ diff --git a/src/main/webapp/img/productSingle/3138.jpg b/src/main/webapp/img/productSingle/3138.jpg new file mode 100644 index 0000000..c962d9c Binary files /dev/null and b/src/main/webapp/img/productSingle/3138.jpg differ diff --git a/src/main/webapp/img/productSingle/3145.jpg b/src/main/webapp/img/productSingle/3145.jpg new file mode 100644 index 0000000..cb962ae Binary files /dev/null and b/src/main/webapp/img/productSingle/3145.jpg differ diff --git a/src/main/webapp/img/productSingle/3146.jpg b/src/main/webapp/img/productSingle/3146.jpg new file mode 100644 index 0000000..0be97b1 Binary files /dev/null and b/src/main/webapp/img/productSingle/3146.jpg differ diff --git a/src/main/webapp/img/productSingle/3147.jpg b/src/main/webapp/img/productSingle/3147.jpg new file mode 100644 index 0000000..31e4333 Binary files /dev/null and b/src/main/webapp/img/productSingle/3147.jpg differ diff --git a/src/main/webapp/img/productSingle/3148.jpg b/src/main/webapp/img/productSingle/3148.jpg new file mode 100644 index 0000000..d10a112 Binary files /dev/null and b/src/main/webapp/img/productSingle/3148.jpg differ diff --git a/src/main/webapp/img/productSingle/3149.jpg b/src/main/webapp/img/productSingle/3149.jpg new file mode 100644 index 0000000..0f5928c Binary files /dev/null and b/src/main/webapp/img/productSingle/3149.jpg differ diff --git a/src/main/webapp/img/productSingle/3156.jpg b/src/main/webapp/img/productSingle/3156.jpg new file mode 100644 index 0000000..88d1bdb Binary files /dev/null and b/src/main/webapp/img/productSingle/3156.jpg differ diff --git a/src/main/webapp/img/productSingle/3157.jpg b/src/main/webapp/img/productSingle/3157.jpg new file mode 100644 index 0000000..aaeedd2 Binary files /dev/null and b/src/main/webapp/img/productSingle/3157.jpg differ diff --git a/src/main/webapp/img/productSingle/3158.jpg b/src/main/webapp/img/productSingle/3158.jpg new file mode 100644 index 0000000..bb4fc9b Binary files /dev/null and b/src/main/webapp/img/productSingle/3158.jpg differ diff --git a/src/main/webapp/img/productSingle/3159.jpg b/src/main/webapp/img/productSingle/3159.jpg new file mode 100644 index 0000000..e355267 Binary files /dev/null and b/src/main/webapp/img/productSingle/3159.jpg differ diff --git a/src/main/webapp/img/productSingle/3160.jpg b/src/main/webapp/img/productSingle/3160.jpg new file mode 100644 index 0000000..4e9e942 Binary files /dev/null and b/src/main/webapp/img/productSingle/3160.jpg differ diff --git a/src/main/webapp/img/productSingle/3167.jpg b/src/main/webapp/img/productSingle/3167.jpg new file mode 100644 index 0000000..7f60a41 Binary files /dev/null and b/src/main/webapp/img/productSingle/3167.jpg differ diff --git a/src/main/webapp/img/productSingle/3168.jpg b/src/main/webapp/img/productSingle/3168.jpg new file mode 100644 index 0000000..50894f1 Binary files /dev/null and b/src/main/webapp/img/productSingle/3168.jpg differ diff --git a/src/main/webapp/img/productSingle/3169.jpg b/src/main/webapp/img/productSingle/3169.jpg new file mode 100644 index 0000000..c2a6faf Binary files /dev/null and b/src/main/webapp/img/productSingle/3169.jpg differ diff --git a/src/main/webapp/img/productSingle/3170.jpg b/src/main/webapp/img/productSingle/3170.jpg new file mode 100644 index 0000000..d68b9d4 Binary files /dev/null and b/src/main/webapp/img/productSingle/3170.jpg differ diff --git a/src/main/webapp/img/productSingle/3171.jpg b/src/main/webapp/img/productSingle/3171.jpg new file mode 100644 index 0000000..f46b159 Binary files /dev/null and b/src/main/webapp/img/productSingle/3171.jpg differ diff --git a/src/main/webapp/img/productSingle/3178.jpg b/src/main/webapp/img/productSingle/3178.jpg new file mode 100644 index 0000000..9ed6316 Binary files /dev/null and b/src/main/webapp/img/productSingle/3178.jpg differ diff --git a/src/main/webapp/img/productSingle/3179.jpg b/src/main/webapp/img/productSingle/3179.jpg new file mode 100644 index 0000000..6297cc6 Binary files /dev/null and b/src/main/webapp/img/productSingle/3179.jpg differ diff --git a/src/main/webapp/img/productSingle/3180.jpg b/src/main/webapp/img/productSingle/3180.jpg new file mode 100644 index 0000000..6b3372e Binary files /dev/null and b/src/main/webapp/img/productSingle/3180.jpg differ diff --git a/src/main/webapp/img/productSingle/3181.jpg b/src/main/webapp/img/productSingle/3181.jpg new file mode 100644 index 0000000..e9ed74f Binary files /dev/null and b/src/main/webapp/img/productSingle/3181.jpg differ diff --git a/src/main/webapp/img/productSingle/3182.jpg b/src/main/webapp/img/productSingle/3182.jpg new file mode 100644 index 0000000..c1026e0 Binary files /dev/null and b/src/main/webapp/img/productSingle/3182.jpg differ diff --git a/src/main/webapp/img/productSingle/3748.jpg b/src/main/webapp/img/productSingle/3748.jpg new file mode 100644 index 0000000..495ab61 Binary files /dev/null and b/src/main/webapp/img/productSingle/3748.jpg differ diff --git a/src/main/webapp/img/productSingle/3749.jpg b/src/main/webapp/img/productSingle/3749.jpg new file mode 100644 index 0000000..ea8aafe Binary files /dev/null and b/src/main/webapp/img/productSingle/3749.jpg differ diff --git a/src/main/webapp/img/productSingle/3750.jpg b/src/main/webapp/img/productSingle/3750.jpg new file mode 100644 index 0000000..ab8669a Binary files /dev/null and b/src/main/webapp/img/productSingle/3750.jpg differ diff --git a/src/main/webapp/img/productSingle/3751.jpg b/src/main/webapp/img/productSingle/3751.jpg new file mode 100644 index 0000000..e6ee7c4 Binary files /dev/null and b/src/main/webapp/img/productSingle/3751.jpg differ diff --git a/src/main/webapp/img/productSingle/3752.jpg b/src/main/webapp/img/productSingle/3752.jpg new file mode 100644 index 0000000..77abf3f Binary files /dev/null and b/src/main/webapp/img/productSingle/3752.jpg differ diff --git a/src/main/webapp/img/productSingle/3759.jpg b/src/main/webapp/img/productSingle/3759.jpg new file mode 100644 index 0000000..5ad3ddc Binary files /dev/null and b/src/main/webapp/img/productSingle/3759.jpg differ diff --git a/src/main/webapp/img/productSingle/3760.jpg b/src/main/webapp/img/productSingle/3760.jpg new file mode 100644 index 0000000..94acdb0 Binary files /dev/null and b/src/main/webapp/img/productSingle/3760.jpg differ diff --git a/src/main/webapp/img/productSingle/3761.jpg b/src/main/webapp/img/productSingle/3761.jpg new file mode 100644 index 0000000..7d9a30d Binary files /dev/null and b/src/main/webapp/img/productSingle/3761.jpg differ diff --git a/src/main/webapp/img/productSingle/3762.jpg b/src/main/webapp/img/productSingle/3762.jpg new file mode 100644 index 0000000..5971910 Binary files /dev/null and b/src/main/webapp/img/productSingle/3762.jpg differ diff --git a/src/main/webapp/img/productSingle/3763.jpg b/src/main/webapp/img/productSingle/3763.jpg new file mode 100644 index 0000000..b374bd5 Binary files /dev/null and b/src/main/webapp/img/productSingle/3763.jpg differ diff --git a/src/main/webapp/img/productSingle/3770.jpg b/src/main/webapp/img/productSingle/3770.jpg new file mode 100644 index 0000000..accdefa Binary files /dev/null and b/src/main/webapp/img/productSingle/3770.jpg differ diff --git a/src/main/webapp/img/productSingle/3771.jpg b/src/main/webapp/img/productSingle/3771.jpg new file mode 100644 index 0000000..95e1070 Binary files /dev/null and b/src/main/webapp/img/productSingle/3771.jpg differ diff --git a/src/main/webapp/img/productSingle/3772.jpg b/src/main/webapp/img/productSingle/3772.jpg new file mode 100644 index 0000000..de1143f Binary files /dev/null and b/src/main/webapp/img/productSingle/3772.jpg differ diff --git a/src/main/webapp/img/productSingle/3773.jpg b/src/main/webapp/img/productSingle/3773.jpg new file mode 100644 index 0000000..85ccb74 Binary files /dev/null and b/src/main/webapp/img/productSingle/3773.jpg differ diff --git a/src/main/webapp/img/productSingle/3774.jpg b/src/main/webapp/img/productSingle/3774.jpg new file mode 100644 index 0000000..4eb5510 Binary files /dev/null and b/src/main/webapp/img/productSingle/3774.jpg differ diff --git a/src/main/webapp/img/productSingle/3781.jpg b/src/main/webapp/img/productSingle/3781.jpg new file mode 100644 index 0000000..28e2379 Binary files /dev/null and b/src/main/webapp/img/productSingle/3781.jpg differ diff --git a/src/main/webapp/img/productSingle/3782.jpg b/src/main/webapp/img/productSingle/3782.jpg new file mode 100644 index 0000000..162bfe5 Binary files /dev/null and b/src/main/webapp/img/productSingle/3782.jpg differ diff --git a/src/main/webapp/img/productSingle/3783.jpg b/src/main/webapp/img/productSingle/3783.jpg new file mode 100644 index 0000000..7348b3d Binary files /dev/null and b/src/main/webapp/img/productSingle/3783.jpg differ diff --git a/src/main/webapp/img/productSingle/3784.jpg b/src/main/webapp/img/productSingle/3784.jpg new file mode 100644 index 0000000..44f37dd Binary files /dev/null and b/src/main/webapp/img/productSingle/3784.jpg differ diff --git a/src/main/webapp/img/productSingle/3785.jpg b/src/main/webapp/img/productSingle/3785.jpg new file mode 100644 index 0000000..3283197 Binary files /dev/null and b/src/main/webapp/img/productSingle/3785.jpg differ diff --git a/src/main/webapp/img/productSingle/3792.jpg b/src/main/webapp/img/productSingle/3792.jpg new file mode 100644 index 0000000..dcf09d7 Binary files /dev/null and b/src/main/webapp/img/productSingle/3792.jpg differ diff --git a/src/main/webapp/img/productSingle/3793.jpg b/src/main/webapp/img/productSingle/3793.jpg new file mode 100644 index 0000000..2435fcd Binary files /dev/null and b/src/main/webapp/img/productSingle/3793.jpg differ diff --git a/src/main/webapp/img/productSingle/3794.jpg b/src/main/webapp/img/productSingle/3794.jpg new file mode 100644 index 0000000..68e0efd Binary files /dev/null and b/src/main/webapp/img/productSingle/3794.jpg differ diff --git a/src/main/webapp/img/productSingle/3795.jpg b/src/main/webapp/img/productSingle/3795.jpg new file mode 100644 index 0000000..0659ab9 Binary files /dev/null and b/src/main/webapp/img/productSingle/3795.jpg differ diff --git a/src/main/webapp/img/productSingle/3796.jpg b/src/main/webapp/img/productSingle/3796.jpg new file mode 100644 index 0000000..d892a8b Binary files /dev/null and b/src/main/webapp/img/productSingle/3796.jpg differ diff --git a/src/main/webapp/img/productSingle/4354.jpg b/src/main/webapp/img/productSingle/4354.jpg new file mode 100644 index 0000000..1189113 Binary files /dev/null and b/src/main/webapp/img/productSingle/4354.jpg differ diff --git a/src/main/webapp/img/productSingle/4355.jpg b/src/main/webapp/img/productSingle/4355.jpg new file mode 100644 index 0000000..c34bd3c Binary files /dev/null and b/src/main/webapp/img/productSingle/4355.jpg differ diff --git a/src/main/webapp/img/productSingle/4356.jpg b/src/main/webapp/img/productSingle/4356.jpg new file mode 100644 index 0000000..9899113 Binary files /dev/null and b/src/main/webapp/img/productSingle/4356.jpg differ diff --git a/src/main/webapp/img/productSingle/4357.jpg b/src/main/webapp/img/productSingle/4357.jpg new file mode 100644 index 0000000..1988571 Binary files /dev/null and b/src/main/webapp/img/productSingle/4357.jpg differ diff --git a/src/main/webapp/img/productSingle/4358.jpg b/src/main/webapp/img/productSingle/4358.jpg new file mode 100644 index 0000000..365095c Binary files /dev/null and b/src/main/webapp/img/productSingle/4358.jpg differ diff --git a/src/main/webapp/img/productSingle/4365.jpg b/src/main/webapp/img/productSingle/4365.jpg new file mode 100644 index 0000000..7026cd0 Binary files /dev/null and b/src/main/webapp/img/productSingle/4365.jpg differ diff --git a/src/main/webapp/img/productSingle/4366.jpg b/src/main/webapp/img/productSingle/4366.jpg new file mode 100644 index 0000000..7a3f7e7 Binary files /dev/null and b/src/main/webapp/img/productSingle/4366.jpg differ diff --git a/src/main/webapp/img/productSingle/4367.jpg b/src/main/webapp/img/productSingle/4367.jpg new file mode 100644 index 0000000..f4a8be2 Binary files /dev/null and b/src/main/webapp/img/productSingle/4367.jpg differ diff --git a/src/main/webapp/img/productSingle/4368.jpg b/src/main/webapp/img/productSingle/4368.jpg new file mode 100644 index 0000000..9259924 Binary files /dev/null and b/src/main/webapp/img/productSingle/4368.jpg differ diff --git a/src/main/webapp/img/productSingle/4369.jpg b/src/main/webapp/img/productSingle/4369.jpg new file mode 100644 index 0000000..9a98ce1 Binary files /dev/null and b/src/main/webapp/img/productSingle/4369.jpg differ diff --git a/src/main/webapp/img/productSingle/4376.jpg b/src/main/webapp/img/productSingle/4376.jpg new file mode 100644 index 0000000..255aa06 Binary files /dev/null and b/src/main/webapp/img/productSingle/4376.jpg differ diff --git a/src/main/webapp/img/productSingle/4377.jpg b/src/main/webapp/img/productSingle/4377.jpg new file mode 100644 index 0000000..80ce08f Binary files /dev/null and b/src/main/webapp/img/productSingle/4377.jpg differ diff --git a/src/main/webapp/img/productSingle/4378.jpg b/src/main/webapp/img/productSingle/4378.jpg new file mode 100644 index 0000000..668b816 Binary files /dev/null and b/src/main/webapp/img/productSingle/4378.jpg differ diff --git a/src/main/webapp/img/productSingle/4379.jpg b/src/main/webapp/img/productSingle/4379.jpg new file mode 100644 index 0000000..aba06de Binary files /dev/null and b/src/main/webapp/img/productSingle/4379.jpg differ diff --git a/src/main/webapp/img/productSingle/4380.jpg b/src/main/webapp/img/productSingle/4380.jpg new file mode 100644 index 0000000..496e737 Binary files /dev/null and b/src/main/webapp/img/productSingle/4380.jpg differ diff --git a/src/main/webapp/img/productSingle/4387.jpg b/src/main/webapp/img/productSingle/4387.jpg new file mode 100644 index 0000000..db81b81 Binary files /dev/null and b/src/main/webapp/img/productSingle/4387.jpg differ diff --git a/src/main/webapp/img/productSingle/4388.jpg b/src/main/webapp/img/productSingle/4388.jpg new file mode 100644 index 0000000..59fc261 Binary files /dev/null and b/src/main/webapp/img/productSingle/4388.jpg differ diff --git a/src/main/webapp/img/productSingle/4389.jpg b/src/main/webapp/img/productSingle/4389.jpg new file mode 100644 index 0000000..cec69b9 Binary files /dev/null and b/src/main/webapp/img/productSingle/4389.jpg differ diff --git a/src/main/webapp/img/productSingle/4390.jpg b/src/main/webapp/img/productSingle/4390.jpg new file mode 100644 index 0000000..a681868 Binary files /dev/null and b/src/main/webapp/img/productSingle/4390.jpg differ diff --git a/src/main/webapp/img/productSingle/4397.jpg b/src/main/webapp/img/productSingle/4397.jpg new file mode 100644 index 0000000..47ed0ad Binary files /dev/null and b/src/main/webapp/img/productSingle/4397.jpg differ diff --git a/src/main/webapp/img/productSingle/4398.jpg b/src/main/webapp/img/productSingle/4398.jpg new file mode 100644 index 0000000..ef7eb5e Binary files /dev/null and b/src/main/webapp/img/productSingle/4398.jpg differ diff --git a/src/main/webapp/img/productSingle/4399.jpg b/src/main/webapp/img/productSingle/4399.jpg new file mode 100644 index 0000000..f6f5650 Binary files /dev/null and b/src/main/webapp/img/productSingle/4399.jpg differ diff --git a/src/main/webapp/img/productSingle/4400.jpg b/src/main/webapp/img/productSingle/4400.jpg new file mode 100644 index 0000000..c549417 Binary files /dev/null and b/src/main/webapp/img/productSingle/4400.jpg differ diff --git a/src/main/webapp/img/productSingle/4401.jpg b/src/main/webapp/img/productSingle/4401.jpg new file mode 100644 index 0000000..3d950fb Binary files /dev/null and b/src/main/webapp/img/productSingle/4401.jpg differ diff --git a/src/main/webapp/img/productSingle/4573.jpg b/src/main/webapp/img/productSingle/4573.jpg new file mode 100644 index 0000000..5fa4364 Binary files /dev/null and b/src/main/webapp/img/productSingle/4573.jpg differ diff --git a/src/main/webapp/img/productSingle/4574.jpg b/src/main/webapp/img/productSingle/4574.jpg new file mode 100644 index 0000000..c3f09ec Binary files /dev/null and b/src/main/webapp/img/productSingle/4574.jpg differ diff --git a/src/main/webapp/img/productSingle/4575.jpg b/src/main/webapp/img/productSingle/4575.jpg new file mode 100644 index 0000000..862fd98 Binary files /dev/null and b/src/main/webapp/img/productSingle/4575.jpg differ diff --git a/src/main/webapp/img/productSingle/4576.jpg b/src/main/webapp/img/productSingle/4576.jpg new file mode 100644 index 0000000..faf052f Binary files /dev/null and b/src/main/webapp/img/productSingle/4576.jpg differ diff --git a/src/main/webapp/img/productSingle/4583.jpg b/src/main/webapp/img/productSingle/4583.jpg new file mode 100644 index 0000000..9d98ef7 Binary files /dev/null and b/src/main/webapp/img/productSingle/4583.jpg differ diff --git a/src/main/webapp/img/productSingle/4584.jpg b/src/main/webapp/img/productSingle/4584.jpg new file mode 100644 index 0000000..37d6d62 Binary files /dev/null and b/src/main/webapp/img/productSingle/4584.jpg differ diff --git a/src/main/webapp/img/productSingle/4585.jpg b/src/main/webapp/img/productSingle/4585.jpg new file mode 100644 index 0000000..e4e56d9 Binary files /dev/null and b/src/main/webapp/img/productSingle/4585.jpg differ diff --git a/src/main/webapp/img/productSingle/4586.jpg b/src/main/webapp/img/productSingle/4586.jpg new file mode 100644 index 0000000..d74b8df Binary files /dev/null and b/src/main/webapp/img/productSingle/4586.jpg differ diff --git a/src/main/webapp/img/productSingle/4587.jpg b/src/main/webapp/img/productSingle/4587.jpg new file mode 100644 index 0000000..f7aa264 Binary files /dev/null and b/src/main/webapp/img/productSingle/4587.jpg differ diff --git a/src/main/webapp/img/productSingle/4594.jpg b/src/main/webapp/img/productSingle/4594.jpg new file mode 100644 index 0000000..a14553c Binary files /dev/null and b/src/main/webapp/img/productSingle/4594.jpg differ diff --git a/src/main/webapp/img/productSingle/4595.jpg b/src/main/webapp/img/productSingle/4595.jpg new file mode 100644 index 0000000..678cad7 Binary files /dev/null and b/src/main/webapp/img/productSingle/4595.jpg differ diff --git a/src/main/webapp/img/productSingle/4596.jpg b/src/main/webapp/img/productSingle/4596.jpg new file mode 100644 index 0000000..c93286d Binary files /dev/null and b/src/main/webapp/img/productSingle/4596.jpg differ diff --git a/src/main/webapp/img/productSingle/4597.jpg b/src/main/webapp/img/productSingle/4597.jpg new file mode 100644 index 0000000..48fa039 Binary files /dev/null and b/src/main/webapp/img/productSingle/4597.jpg differ diff --git a/src/main/webapp/img/productSingle/4598.jpg b/src/main/webapp/img/productSingle/4598.jpg new file mode 100644 index 0000000..a14553c Binary files /dev/null and b/src/main/webapp/img/productSingle/4598.jpg differ diff --git a/src/main/webapp/img/productSingle/4605.jpg b/src/main/webapp/img/productSingle/4605.jpg new file mode 100644 index 0000000..3e1e435 Binary files /dev/null and b/src/main/webapp/img/productSingle/4605.jpg differ diff --git a/src/main/webapp/img/productSingle/4606.jpg b/src/main/webapp/img/productSingle/4606.jpg new file mode 100644 index 0000000..c74025e Binary files /dev/null and b/src/main/webapp/img/productSingle/4606.jpg differ diff --git a/src/main/webapp/img/productSingle/4607.jpg b/src/main/webapp/img/productSingle/4607.jpg new file mode 100644 index 0000000..a92eb01 Binary files /dev/null and b/src/main/webapp/img/productSingle/4607.jpg differ diff --git a/src/main/webapp/img/productSingle/4608.jpg b/src/main/webapp/img/productSingle/4608.jpg new file mode 100644 index 0000000..53db629 Binary files /dev/null and b/src/main/webapp/img/productSingle/4608.jpg differ diff --git a/src/main/webapp/img/productSingle/4615.jpg b/src/main/webapp/img/productSingle/4615.jpg new file mode 100644 index 0000000..8f9d909 Binary files /dev/null and b/src/main/webapp/img/productSingle/4615.jpg differ diff --git a/src/main/webapp/img/productSingle/4616.jpg b/src/main/webapp/img/productSingle/4616.jpg new file mode 100644 index 0000000..df6469f Binary files /dev/null and b/src/main/webapp/img/productSingle/4616.jpg differ diff --git a/src/main/webapp/img/productSingle/4617.jpg b/src/main/webapp/img/productSingle/4617.jpg new file mode 100644 index 0000000..3c9a774 Binary files /dev/null and b/src/main/webapp/img/productSingle/4617.jpg differ diff --git a/src/main/webapp/img/productSingle/4618.jpg b/src/main/webapp/img/productSingle/4618.jpg new file mode 100644 index 0000000..9c1f6e2 Binary files /dev/null and b/src/main/webapp/img/productSingle/4618.jpg differ diff --git a/src/main/webapp/img/productSingle/4619.jpg b/src/main/webapp/img/productSingle/4619.jpg new file mode 100644 index 0000000..bb13661 Binary files /dev/null and b/src/main/webapp/img/productSingle/4619.jpg differ diff --git a/src/main/webapp/img/productSingle/5208.jpg b/src/main/webapp/img/productSingle/5208.jpg new file mode 100644 index 0000000..9d877a2 Binary files /dev/null and b/src/main/webapp/img/productSingle/5208.jpg differ diff --git a/src/main/webapp/img/productSingle/5209.jpg b/src/main/webapp/img/productSingle/5209.jpg new file mode 100644 index 0000000..97bc9fc Binary files /dev/null and b/src/main/webapp/img/productSingle/5209.jpg differ diff --git a/src/main/webapp/img/productSingle/5210.jpg b/src/main/webapp/img/productSingle/5210.jpg new file mode 100644 index 0000000..e31a42c Binary files /dev/null and b/src/main/webapp/img/productSingle/5210.jpg differ diff --git a/src/main/webapp/img/productSingle/5211.jpg b/src/main/webapp/img/productSingle/5211.jpg new file mode 100644 index 0000000..9bfa5ca Binary files /dev/null and b/src/main/webapp/img/productSingle/5211.jpg differ diff --git a/src/main/webapp/img/productSingle/5218.jpg b/src/main/webapp/img/productSingle/5218.jpg new file mode 100644 index 0000000..38fe4ba Binary files /dev/null and b/src/main/webapp/img/productSingle/5218.jpg differ diff --git a/src/main/webapp/img/productSingle/5219.jpg b/src/main/webapp/img/productSingle/5219.jpg new file mode 100644 index 0000000..ee9acc0 Binary files /dev/null and b/src/main/webapp/img/productSingle/5219.jpg differ diff --git a/src/main/webapp/img/productSingle/5220.jpg b/src/main/webapp/img/productSingle/5220.jpg new file mode 100644 index 0000000..25895f9 Binary files /dev/null and b/src/main/webapp/img/productSingle/5220.jpg differ diff --git a/src/main/webapp/img/productSingle/5221.jpg b/src/main/webapp/img/productSingle/5221.jpg new file mode 100644 index 0000000..1d6801c Binary files /dev/null and b/src/main/webapp/img/productSingle/5221.jpg differ diff --git a/src/main/webapp/img/productSingle/5222.jpg b/src/main/webapp/img/productSingle/5222.jpg new file mode 100644 index 0000000..26fad8f Binary files /dev/null and b/src/main/webapp/img/productSingle/5222.jpg differ diff --git a/src/main/webapp/img/productSingle/5229.jpg b/src/main/webapp/img/productSingle/5229.jpg new file mode 100644 index 0000000..3c56bf0 Binary files /dev/null and b/src/main/webapp/img/productSingle/5229.jpg differ diff --git a/src/main/webapp/img/productSingle/5230.jpg b/src/main/webapp/img/productSingle/5230.jpg new file mode 100644 index 0000000..b8f6cc3 Binary files /dev/null and b/src/main/webapp/img/productSingle/5230.jpg differ diff --git a/src/main/webapp/img/productSingle/5231.jpg b/src/main/webapp/img/productSingle/5231.jpg new file mode 100644 index 0000000..f102cc2 Binary files /dev/null and b/src/main/webapp/img/productSingle/5231.jpg differ diff --git a/src/main/webapp/img/productSingle/5232.jpg b/src/main/webapp/img/productSingle/5232.jpg new file mode 100644 index 0000000..9980f1d Binary files /dev/null and b/src/main/webapp/img/productSingle/5232.jpg differ diff --git a/src/main/webapp/img/productSingle/5233.jpg b/src/main/webapp/img/productSingle/5233.jpg new file mode 100644 index 0000000..94c2fac Binary files /dev/null and b/src/main/webapp/img/productSingle/5233.jpg differ diff --git a/src/main/webapp/img/productSingle/5240.jpg b/src/main/webapp/img/productSingle/5240.jpg new file mode 100644 index 0000000..fc58298 Binary files /dev/null and b/src/main/webapp/img/productSingle/5240.jpg differ diff --git a/src/main/webapp/img/productSingle/5241.jpg b/src/main/webapp/img/productSingle/5241.jpg new file mode 100644 index 0000000..1507b28 Binary files /dev/null and b/src/main/webapp/img/productSingle/5241.jpg differ diff --git a/src/main/webapp/img/productSingle/5242.jpg b/src/main/webapp/img/productSingle/5242.jpg new file mode 100644 index 0000000..95f79e2 Binary files /dev/null and b/src/main/webapp/img/productSingle/5242.jpg differ diff --git a/src/main/webapp/img/productSingle/5243.jpg b/src/main/webapp/img/productSingle/5243.jpg new file mode 100644 index 0000000..1ba1b37 Binary files /dev/null and b/src/main/webapp/img/productSingle/5243.jpg differ diff --git a/src/main/webapp/img/productSingle/5244.jpg b/src/main/webapp/img/productSingle/5244.jpg new file mode 100644 index 0000000..03b0e28 Binary files /dev/null and b/src/main/webapp/img/productSingle/5244.jpg differ diff --git a/src/main/webapp/img/productSingle/5251.jpg b/src/main/webapp/img/productSingle/5251.jpg new file mode 100644 index 0000000..5105a8a Binary files /dev/null and b/src/main/webapp/img/productSingle/5251.jpg differ diff --git a/src/main/webapp/img/productSingle/5252.jpg b/src/main/webapp/img/productSingle/5252.jpg new file mode 100644 index 0000000..2b3b4bd Binary files /dev/null and b/src/main/webapp/img/productSingle/5252.jpg differ diff --git a/src/main/webapp/img/productSingle/5253.jpg b/src/main/webapp/img/productSingle/5253.jpg new file mode 100644 index 0000000..2f4d6b1 Binary files /dev/null and b/src/main/webapp/img/productSingle/5253.jpg differ diff --git a/src/main/webapp/img/productSingle/5254.jpg b/src/main/webapp/img/productSingle/5254.jpg new file mode 100644 index 0000000..5a7e103 Binary files /dev/null and b/src/main/webapp/img/productSingle/5254.jpg differ diff --git a/src/main/webapp/img/productSingle/5255.jpg b/src/main/webapp/img/productSingle/5255.jpg new file mode 100644 index 0000000..03b0e28 Binary files /dev/null and b/src/main/webapp/img/productSingle/5255.jpg differ diff --git a/src/main/webapp/img/productSingle/5823.jpg b/src/main/webapp/img/productSingle/5823.jpg new file mode 100644 index 0000000..e3f08af Binary files /dev/null and b/src/main/webapp/img/productSingle/5823.jpg differ diff --git a/src/main/webapp/img/productSingle/5824.jpg b/src/main/webapp/img/productSingle/5824.jpg new file mode 100644 index 0000000..b172264 Binary files /dev/null and b/src/main/webapp/img/productSingle/5824.jpg differ diff --git a/src/main/webapp/img/productSingle/5825.jpg b/src/main/webapp/img/productSingle/5825.jpg new file mode 100644 index 0000000..811c841 Binary files /dev/null and b/src/main/webapp/img/productSingle/5825.jpg differ diff --git a/src/main/webapp/img/productSingle/5826.jpg b/src/main/webapp/img/productSingle/5826.jpg new file mode 100644 index 0000000..7fc8997 Binary files /dev/null and b/src/main/webapp/img/productSingle/5826.jpg differ diff --git a/src/main/webapp/img/productSingle/5827.jpg b/src/main/webapp/img/productSingle/5827.jpg new file mode 100644 index 0000000..345719b Binary files /dev/null and b/src/main/webapp/img/productSingle/5827.jpg differ diff --git a/src/main/webapp/img/productSingle/5834.jpg b/src/main/webapp/img/productSingle/5834.jpg new file mode 100644 index 0000000..585ca4b Binary files /dev/null and b/src/main/webapp/img/productSingle/5834.jpg differ diff --git a/src/main/webapp/img/productSingle/5835.jpg b/src/main/webapp/img/productSingle/5835.jpg new file mode 100644 index 0000000..2d93094 Binary files /dev/null and b/src/main/webapp/img/productSingle/5835.jpg differ diff --git a/src/main/webapp/img/productSingle/5836.jpg b/src/main/webapp/img/productSingle/5836.jpg new file mode 100644 index 0000000..3125ba4 Binary files /dev/null and b/src/main/webapp/img/productSingle/5836.jpg differ diff --git a/src/main/webapp/img/productSingle/5837.jpg b/src/main/webapp/img/productSingle/5837.jpg new file mode 100644 index 0000000..cccdd73 Binary files /dev/null and b/src/main/webapp/img/productSingle/5837.jpg differ diff --git a/src/main/webapp/img/productSingle/5838.jpg b/src/main/webapp/img/productSingle/5838.jpg new file mode 100644 index 0000000..30c4d57 Binary files /dev/null and b/src/main/webapp/img/productSingle/5838.jpg differ diff --git a/src/main/webapp/img/productSingle/5845.jpg b/src/main/webapp/img/productSingle/5845.jpg new file mode 100644 index 0000000..bc5b7f9 Binary files /dev/null and b/src/main/webapp/img/productSingle/5845.jpg differ diff --git a/src/main/webapp/img/productSingle/5846.jpg b/src/main/webapp/img/productSingle/5846.jpg new file mode 100644 index 0000000..22f2f5b Binary files /dev/null and b/src/main/webapp/img/productSingle/5846.jpg differ diff --git a/src/main/webapp/img/productSingle/5847.jpg b/src/main/webapp/img/productSingle/5847.jpg new file mode 100644 index 0000000..312ea05 Binary files /dev/null and b/src/main/webapp/img/productSingle/5847.jpg differ diff --git a/src/main/webapp/img/productSingle/5848.jpg b/src/main/webapp/img/productSingle/5848.jpg new file mode 100644 index 0000000..fa06494 Binary files /dev/null and b/src/main/webapp/img/productSingle/5848.jpg differ diff --git a/src/main/webapp/img/productSingle/5855.jpg b/src/main/webapp/img/productSingle/5855.jpg new file mode 100644 index 0000000..f13cc71 Binary files /dev/null and b/src/main/webapp/img/productSingle/5855.jpg differ diff --git a/src/main/webapp/img/productSingle/5856.jpg b/src/main/webapp/img/productSingle/5856.jpg new file mode 100644 index 0000000..c73ab88 Binary files /dev/null and b/src/main/webapp/img/productSingle/5856.jpg differ diff --git a/src/main/webapp/img/productSingle/5857.jpg b/src/main/webapp/img/productSingle/5857.jpg new file mode 100644 index 0000000..4eaf1d9 Binary files /dev/null and b/src/main/webapp/img/productSingle/5857.jpg differ diff --git a/src/main/webapp/img/productSingle/5858.jpg b/src/main/webapp/img/productSingle/5858.jpg new file mode 100644 index 0000000..cef3943 Binary files /dev/null and b/src/main/webapp/img/productSingle/5858.jpg differ diff --git a/src/main/webapp/img/productSingle/5859.jpg b/src/main/webapp/img/productSingle/5859.jpg new file mode 100644 index 0000000..5714206 Binary files /dev/null and b/src/main/webapp/img/productSingle/5859.jpg differ diff --git a/src/main/webapp/img/productSingle/5866.jpg b/src/main/webapp/img/productSingle/5866.jpg new file mode 100644 index 0000000..132be8e Binary files /dev/null and b/src/main/webapp/img/productSingle/5866.jpg differ diff --git a/src/main/webapp/img/productSingle/5867.jpg b/src/main/webapp/img/productSingle/5867.jpg new file mode 100644 index 0000000..4cc883e Binary files /dev/null and b/src/main/webapp/img/productSingle/5867.jpg differ diff --git a/src/main/webapp/img/productSingle/5868.jpg b/src/main/webapp/img/productSingle/5868.jpg new file mode 100644 index 0000000..44ed5d3 Binary files /dev/null and b/src/main/webapp/img/productSingle/5868.jpg differ diff --git a/src/main/webapp/img/productSingle/5869.jpg b/src/main/webapp/img/productSingle/5869.jpg new file mode 100644 index 0000000..54e8e17 Binary files /dev/null and b/src/main/webapp/img/productSingle/5869.jpg differ diff --git a/src/main/webapp/img/productSingle/5870.jpg b/src/main/webapp/img/productSingle/5870.jpg new file mode 100644 index 0000000..d622a11 Binary files /dev/null and b/src/main/webapp/img/productSingle/5870.jpg differ diff --git a/src/main/webapp/img/productSingle/629.jpg b/src/main/webapp/img/productSingle/629.jpg new file mode 100644 index 0000000..459eb36 Binary files /dev/null and b/src/main/webapp/img/productSingle/629.jpg differ diff --git a/src/main/webapp/img/productSingle/630.jpg b/src/main/webapp/img/productSingle/630.jpg new file mode 100644 index 0000000..3e34280 Binary files /dev/null and b/src/main/webapp/img/productSingle/630.jpg differ diff --git a/src/main/webapp/img/productSingle/631.jpg b/src/main/webapp/img/productSingle/631.jpg new file mode 100644 index 0000000..29fc41a Binary files /dev/null and b/src/main/webapp/img/productSingle/631.jpg differ diff --git a/src/main/webapp/img/productSingle/632.jpg b/src/main/webapp/img/productSingle/632.jpg new file mode 100644 index 0000000..8b7e042 Binary files /dev/null and b/src/main/webapp/img/productSingle/632.jpg differ diff --git a/src/main/webapp/img/productSingle/639.jpg b/src/main/webapp/img/productSingle/639.jpg new file mode 100644 index 0000000..71e08c2 Binary files /dev/null and b/src/main/webapp/img/productSingle/639.jpg differ diff --git a/src/main/webapp/img/productSingle/640.jpg b/src/main/webapp/img/productSingle/640.jpg new file mode 100644 index 0000000..b3ec3f8 Binary files /dev/null and b/src/main/webapp/img/productSingle/640.jpg differ diff --git a/src/main/webapp/img/productSingle/641.jpg b/src/main/webapp/img/productSingle/641.jpg new file mode 100644 index 0000000..567676b Binary files /dev/null and b/src/main/webapp/img/productSingle/641.jpg differ diff --git a/src/main/webapp/img/productSingle/642.jpg b/src/main/webapp/img/productSingle/642.jpg new file mode 100644 index 0000000..33a79b7 Binary files /dev/null and b/src/main/webapp/img/productSingle/642.jpg differ diff --git a/src/main/webapp/img/productSingle/6427.jpg b/src/main/webapp/img/productSingle/6427.jpg new file mode 100644 index 0000000..90a5a02 Binary files /dev/null and b/src/main/webapp/img/productSingle/6427.jpg differ diff --git a/src/main/webapp/img/productSingle/6428.jpg b/src/main/webapp/img/productSingle/6428.jpg new file mode 100644 index 0000000..c1c0d3c Binary files /dev/null and b/src/main/webapp/img/productSingle/6428.jpg differ diff --git a/src/main/webapp/img/productSingle/6429.jpg b/src/main/webapp/img/productSingle/6429.jpg new file mode 100644 index 0000000..3273bbe Binary files /dev/null and b/src/main/webapp/img/productSingle/6429.jpg differ diff --git a/src/main/webapp/img/productSingle/643.jpg b/src/main/webapp/img/productSingle/643.jpg new file mode 100644 index 0000000..c9f7877 Binary files /dev/null and b/src/main/webapp/img/productSingle/643.jpg differ diff --git a/src/main/webapp/img/productSingle/6430.jpg b/src/main/webapp/img/productSingle/6430.jpg new file mode 100644 index 0000000..148d518 Binary files /dev/null and b/src/main/webapp/img/productSingle/6430.jpg differ diff --git a/src/main/webapp/img/productSingle/6431.jpg b/src/main/webapp/img/productSingle/6431.jpg new file mode 100644 index 0000000..b53f9be Binary files /dev/null and b/src/main/webapp/img/productSingle/6431.jpg differ diff --git a/src/main/webapp/img/productSingle/6438.jpg b/src/main/webapp/img/productSingle/6438.jpg new file mode 100644 index 0000000..730ffcb Binary files /dev/null and b/src/main/webapp/img/productSingle/6438.jpg differ diff --git a/src/main/webapp/img/productSingle/6439.jpg b/src/main/webapp/img/productSingle/6439.jpg new file mode 100644 index 0000000..afe59fe Binary files /dev/null and b/src/main/webapp/img/productSingle/6439.jpg differ diff --git a/src/main/webapp/img/productSingle/6440.jpg b/src/main/webapp/img/productSingle/6440.jpg new file mode 100644 index 0000000..fe4f05b Binary files /dev/null and b/src/main/webapp/img/productSingle/6440.jpg differ diff --git a/src/main/webapp/img/productSingle/6441.jpg b/src/main/webapp/img/productSingle/6441.jpg new file mode 100644 index 0000000..b636fec Binary files /dev/null and b/src/main/webapp/img/productSingle/6441.jpg differ diff --git a/src/main/webapp/img/productSingle/6442.jpg b/src/main/webapp/img/productSingle/6442.jpg new file mode 100644 index 0000000..2948877 Binary files /dev/null and b/src/main/webapp/img/productSingle/6442.jpg differ diff --git a/src/main/webapp/img/productSingle/6449.jpg b/src/main/webapp/img/productSingle/6449.jpg new file mode 100644 index 0000000..7d98965 Binary files /dev/null and b/src/main/webapp/img/productSingle/6449.jpg differ diff --git a/src/main/webapp/img/productSingle/6450.jpg b/src/main/webapp/img/productSingle/6450.jpg new file mode 100644 index 0000000..e4cf07b Binary files /dev/null and b/src/main/webapp/img/productSingle/6450.jpg differ diff --git a/src/main/webapp/img/productSingle/6451.jpg b/src/main/webapp/img/productSingle/6451.jpg new file mode 100644 index 0000000..bfb5730 Binary files /dev/null and b/src/main/webapp/img/productSingle/6451.jpg differ diff --git a/src/main/webapp/img/productSingle/6452.jpg b/src/main/webapp/img/productSingle/6452.jpg new file mode 100644 index 0000000..65886ed Binary files /dev/null and b/src/main/webapp/img/productSingle/6452.jpg differ diff --git a/src/main/webapp/img/productSingle/6453.jpg b/src/main/webapp/img/productSingle/6453.jpg new file mode 100644 index 0000000..d27d7e5 Binary files /dev/null and b/src/main/webapp/img/productSingle/6453.jpg differ diff --git a/src/main/webapp/img/productSingle/6460.jpg b/src/main/webapp/img/productSingle/6460.jpg new file mode 100644 index 0000000..b8f78af Binary files /dev/null and b/src/main/webapp/img/productSingle/6460.jpg differ diff --git a/src/main/webapp/img/productSingle/6461.jpg b/src/main/webapp/img/productSingle/6461.jpg new file mode 100644 index 0000000..95dde83 Binary files /dev/null and b/src/main/webapp/img/productSingle/6461.jpg differ diff --git a/src/main/webapp/img/productSingle/6462.jpg b/src/main/webapp/img/productSingle/6462.jpg new file mode 100644 index 0000000..0250319 Binary files /dev/null and b/src/main/webapp/img/productSingle/6462.jpg differ diff --git a/src/main/webapp/img/productSingle/6463.jpg b/src/main/webapp/img/productSingle/6463.jpg new file mode 100644 index 0000000..d4f4ee9 Binary files /dev/null and b/src/main/webapp/img/productSingle/6463.jpg differ diff --git a/src/main/webapp/img/productSingle/6464.jpg b/src/main/webapp/img/productSingle/6464.jpg new file mode 100644 index 0000000..dd074c9 Binary files /dev/null and b/src/main/webapp/img/productSingle/6464.jpg differ diff --git a/src/main/webapp/img/productSingle/6471.jpg b/src/main/webapp/img/productSingle/6471.jpg new file mode 100644 index 0000000..178a1fb Binary files /dev/null and b/src/main/webapp/img/productSingle/6471.jpg differ diff --git a/src/main/webapp/img/productSingle/6472.jpg b/src/main/webapp/img/productSingle/6472.jpg new file mode 100644 index 0000000..ffbf491 Binary files /dev/null and b/src/main/webapp/img/productSingle/6472.jpg differ diff --git a/src/main/webapp/img/productSingle/6473.jpg b/src/main/webapp/img/productSingle/6473.jpg new file mode 100644 index 0000000..1475450 Binary files /dev/null and b/src/main/webapp/img/productSingle/6473.jpg differ diff --git a/src/main/webapp/img/productSingle/6474.jpg b/src/main/webapp/img/productSingle/6474.jpg new file mode 100644 index 0000000..b4af651 Binary files /dev/null and b/src/main/webapp/img/productSingle/6474.jpg differ diff --git a/src/main/webapp/img/productSingle/6475.jpg b/src/main/webapp/img/productSingle/6475.jpg new file mode 100644 index 0000000..b01e3a8 Binary files /dev/null and b/src/main/webapp/img/productSingle/6475.jpg differ diff --git a/src/main/webapp/img/productSingle/650.jpg b/src/main/webapp/img/productSingle/650.jpg new file mode 100644 index 0000000..31da41c Binary files /dev/null and b/src/main/webapp/img/productSingle/650.jpg differ diff --git a/src/main/webapp/img/productSingle/651.jpg b/src/main/webapp/img/productSingle/651.jpg new file mode 100644 index 0000000..a732606 Binary files /dev/null and b/src/main/webapp/img/productSingle/651.jpg differ diff --git a/src/main/webapp/img/productSingle/652.jpg b/src/main/webapp/img/productSingle/652.jpg new file mode 100644 index 0000000..b6b17ac Binary files /dev/null and b/src/main/webapp/img/productSingle/652.jpg differ diff --git a/src/main/webapp/img/productSingle/653.jpg b/src/main/webapp/img/productSingle/653.jpg new file mode 100644 index 0000000..57258f7 Binary files /dev/null and b/src/main/webapp/img/productSingle/653.jpg differ diff --git a/src/main/webapp/img/productSingle/654.jpg b/src/main/webapp/img/productSingle/654.jpg new file mode 100644 index 0000000..8d81934 Binary files /dev/null and b/src/main/webapp/img/productSingle/654.jpg differ diff --git a/src/main/webapp/img/productSingle/661.jpg b/src/main/webapp/img/productSingle/661.jpg new file mode 100644 index 0000000..b77d70e Binary files /dev/null and b/src/main/webapp/img/productSingle/661.jpg differ diff --git a/src/main/webapp/img/productSingle/662.jpg b/src/main/webapp/img/productSingle/662.jpg new file mode 100644 index 0000000..af63e44 Binary files /dev/null and b/src/main/webapp/img/productSingle/662.jpg differ diff --git a/src/main/webapp/img/productSingle/663.jpg b/src/main/webapp/img/productSingle/663.jpg new file mode 100644 index 0000000..a11bda9 Binary files /dev/null and b/src/main/webapp/img/productSingle/663.jpg differ diff --git a/src/main/webapp/img/productSingle/664.jpg b/src/main/webapp/img/productSingle/664.jpg new file mode 100644 index 0000000..6adea87 Binary files /dev/null and b/src/main/webapp/img/productSingle/664.jpg differ diff --git a/src/main/webapp/img/productSingle/665.jpg b/src/main/webapp/img/productSingle/665.jpg new file mode 100644 index 0000000..fd626f7 Binary files /dev/null and b/src/main/webapp/img/productSingle/665.jpg differ diff --git a/src/main/webapp/img/productSingle/672.jpg b/src/main/webapp/img/productSingle/672.jpg new file mode 100644 index 0000000..d84c065 Binary files /dev/null and b/src/main/webapp/img/productSingle/672.jpg differ diff --git a/src/main/webapp/img/productSingle/673.jpg b/src/main/webapp/img/productSingle/673.jpg new file mode 100644 index 0000000..7b75a51 Binary files /dev/null and b/src/main/webapp/img/productSingle/673.jpg differ diff --git a/src/main/webapp/img/productSingle/674.jpg b/src/main/webapp/img/productSingle/674.jpg new file mode 100644 index 0000000..3fc398f Binary files /dev/null and b/src/main/webapp/img/productSingle/674.jpg differ diff --git a/src/main/webapp/img/productSingle/675.jpg b/src/main/webapp/img/productSingle/675.jpg new file mode 100644 index 0000000..0405508 Binary files /dev/null and b/src/main/webapp/img/productSingle/675.jpg differ diff --git a/src/main/webapp/img/productSingle/676.jpg b/src/main/webapp/img/productSingle/676.jpg new file mode 100644 index 0000000..4e5b091 Binary files /dev/null and b/src/main/webapp/img/productSingle/676.jpg differ diff --git a/src/main/webapp/img/productSingle/7010.jpg b/src/main/webapp/img/productSingle/7010.jpg new file mode 100644 index 0000000..0339eb1 Binary files /dev/null and b/src/main/webapp/img/productSingle/7010.jpg differ diff --git a/src/main/webapp/img/productSingle/7011.jpg b/src/main/webapp/img/productSingle/7011.jpg new file mode 100644 index 0000000..41a6db9 Binary files /dev/null and b/src/main/webapp/img/productSingle/7011.jpg differ diff --git a/src/main/webapp/img/productSingle/7012.jpg b/src/main/webapp/img/productSingle/7012.jpg new file mode 100644 index 0000000..bcd1127 Binary files /dev/null and b/src/main/webapp/img/productSingle/7012.jpg differ diff --git a/src/main/webapp/img/productSingle/7013.jpg b/src/main/webapp/img/productSingle/7013.jpg new file mode 100644 index 0000000..560d638 Binary files /dev/null and b/src/main/webapp/img/productSingle/7013.jpg differ diff --git a/src/main/webapp/img/productSingle/7014.jpg b/src/main/webapp/img/productSingle/7014.jpg new file mode 100644 index 0000000..725d5be Binary files /dev/null and b/src/main/webapp/img/productSingle/7014.jpg differ diff --git a/src/main/webapp/img/productSingle/7021.jpg b/src/main/webapp/img/productSingle/7021.jpg new file mode 100644 index 0000000..3b4feed Binary files /dev/null and b/src/main/webapp/img/productSingle/7021.jpg differ diff --git a/src/main/webapp/img/productSingle/7022.jpg b/src/main/webapp/img/productSingle/7022.jpg new file mode 100644 index 0000000..ef1f21e Binary files /dev/null and b/src/main/webapp/img/productSingle/7022.jpg differ diff --git a/src/main/webapp/img/productSingle/7023.jpg b/src/main/webapp/img/productSingle/7023.jpg new file mode 100644 index 0000000..53b732b Binary files /dev/null and b/src/main/webapp/img/productSingle/7023.jpg differ diff --git a/src/main/webapp/img/productSingle/7024.jpg b/src/main/webapp/img/productSingle/7024.jpg new file mode 100644 index 0000000..4de6e1c Binary files /dev/null and b/src/main/webapp/img/productSingle/7024.jpg differ diff --git a/src/main/webapp/img/productSingle/7025.jpg b/src/main/webapp/img/productSingle/7025.jpg new file mode 100644 index 0000000..eca130d Binary files /dev/null and b/src/main/webapp/img/productSingle/7025.jpg differ diff --git a/src/main/webapp/img/productSingle/7032.jpg b/src/main/webapp/img/productSingle/7032.jpg new file mode 100644 index 0000000..11a524e Binary files /dev/null and b/src/main/webapp/img/productSingle/7032.jpg differ diff --git a/src/main/webapp/img/productSingle/7033.jpg b/src/main/webapp/img/productSingle/7033.jpg new file mode 100644 index 0000000..7b88803 Binary files /dev/null and b/src/main/webapp/img/productSingle/7033.jpg differ diff --git a/src/main/webapp/img/productSingle/7034.jpg b/src/main/webapp/img/productSingle/7034.jpg new file mode 100644 index 0000000..3d934f1 Binary files /dev/null and b/src/main/webapp/img/productSingle/7034.jpg differ diff --git a/src/main/webapp/img/productSingle/7035.jpg b/src/main/webapp/img/productSingle/7035.jpg new file mode 100644 index 0000000..7350ec8 Binary files /dev/null and b/src/main/webapp/img/productSingle/7035.jpg differ diff --git a/src/main/webapp/img/productSingle/7036.jpg b/src/main/webapp/img/productSingle/7036.jpg new file mode 100644 index 0000000..c79c823 Binary files /dev/null and b/src/main/webapp/img/productSingle/7036.jpg differ diff --git a/src/main/webapp/img/productSingle/7043.jpg b/src/main/webapp/img/productSingle/7043.jpg new file mode 100644 index 0000000..218be7a Binary files /dev/null and b/src/main/webapp/img/productSingle/7043.jpg differ diff --git a/src/main/webapp/img/productSingle/7044.jpg b/src/main/webapp/img/productSingle/7044.jpg new file mode 100644 index 0000000..a9b71cb Binary files /dev/null and b/src/main/webapp/img/productSingle/7044.jpg differ diff --git a/src/main/webapp/img/productSingle/7045.jpg b/src/main/webapp/img/productSingle/7045.jpg new file mode 100644 index 0000000..2e7bc19 Binary files /dev/null and b/src/main/webapp/img/productSingle/7045.jpg differ diff --git a/src/main/webapp/img/productSingle/7046.jpg b/src/main/webapp/img/productSingle/7046.jpg new file mode 100644 index 0000000..9cb0bf9 Binary files /dev/null and b/src/main/webapp/img/productSingle/7046.jpg differ diff --git a/src/main/webapp/img/productSingle/7047.jpg b/src/main/webapp/img/productSingle/7047.jpg new file mode 100644 index 0000000..ba2b8b8 Binary files /dev/null and b/src/main/webapp/img/productSingle/7047.jpg differ diff --git a/src/main/webapp/img/productSingle/7054.jpg b/src/main/webapp/img/productSingle/7054.jpg new file mode 100644 index 0000000..0c9270d Binary files /dev/null and b/src/main/webapp/img/productSingle/7054.jpg differ diff --git a/src/main/webapp/img/productSingle/7055.jpg b/src/main/webapp/img/productSingle/7055.jpg new file mode 100644 index 0000000..c6dfca8 Binary files /dev/null and b/src/main/webapp/img/productSingle/7055.jpg differ diff --git a/src/main/webapp/img/productSingle/7056.jpg b/src/main/webapp/img/productSingle/7056.jpg new file mode 100644 index 0000000..47e4dd9 Binary files /dev/null and b/src/main/webapp/img/productSingle/7056.jpg differ diff --git a/src/main/webapp/img/productSingle/7057.jpg b/src/main/webapp/img/productSingle/7057.jpg new file mode 100644 index 0000000..83d447a Binary files /dev/null and b/src/main/webapp/img/productSingle/7057.jpg differ diff --git a/src/main/webapp/img/productSingle/7058.jpg b/src/main/webapp/img/productSingle/7058.jpg new file mode 100644 index 0000000..3153b96 Binary files /dev/null and b/src/main/webapp/img/productSingle/7058.jpg differ diff --git a/src/main/webapp/img/productSingle/7626.jpg b/src/main/webapp/img/productSingle/7626.jpg new file mode 100644 index 0000000..0999dcd Binary files /dev/null and b/src/main/webapp/img/productSingle/7626.jpg differ diff --git a/src/main/webapp/img/productSingle/7627.jpg b/src/main/webapp/img/productSingle/7627.jpg new file mode 100644 index 0000000..aa80529 Binary files /dev/null and b/src/main/webapp/img/productSingle/7627.jpg differ diff --git a/src/main/webapp/img/productSingle/7628.jpg b/src/main/webapp/img/productSingle/7628.jpg new file mode 100644 index 0000000..3cb8e90 Binary files /dev/null and b/src/main/webapp/img/productSingle/7628.jpg differ diff --git a/src/main/webapp/img/productSingle/7629.jpg b/src/main/webapp/img/productSingle/7629.jpg new file mode 100644 index 0000000..ec82268 Binary files /dev/null and b/src/main/webapp/img/productSingle/7629.jpg differ diff --git a/src/main/webapp/img/productSingle/7630.jpg b/src/main/webapp/img/productSingle/7630.jpg new file mode 100644 index 0000000..d901816 Binary files /dev/null and b/src/main/webapp/img/productSingle/7630.jpg differ diff --git a/src/main/webapp/img/productSingle/7637.jpg b/src/main/webapp/img/productSingle/7637.jpg new file mode 100644 index 0000000..7f8df35 Binary files /dev/null and b/src/main/webapp/img/productSingle/7637.jpg differ diff --git a/src/main/webapp/img/productSingle/7638.jpg b/src/main/webapp/img/productSingle/7638.jpg new file mode 100644 index 0000000..dbbb88b Binary files /dev/null and b/src/main/webapp/img/productSingle/7638.jpg differ diff --git a/src/main/webapp/img/productSingle/7639.jpg b/src/main/webapp/img/productSingle/7639.jpg new file mode 100644 index 0000000..83c3af1 Binary files /dev/null and b/src/main/webapp/img/productSingle/7639.jpg differ diff --git a/src/main/webapp/img/productSingle/7640.jpg b/src/main/webapp/img/productSingle/7640.jpg new file mode 100644 index 0000000..751b32e Binary files /dev/null and b/src/main/webapp/img/productSingle/7640.jpg differ diff --git a/src/main/webapp/img/productSingle/7641.jpg b/src/main/webapp/img/productSingle/7641.jpg new file mode 100644 index 0000000..9123458 Binary files /dev/null and b/src/main/webapp/img/productSingle/7641.jpg differ diff --git a/src/main/webapp/img/productSingle/7648.jpg b/src/main/webapp/img/productSingle/7648.jpg new file mode 100644 index 0000000..9ad3071 Binary files /dev/null and b/src/main/webapp/img/productSingle/7648.jpg differ diff --git a/src/main/webapp/img/productSingle/7649.jpg b/src/main/webapp/img/productSingle/7649.jpg new file mode 100644 index 0000000..f70a959 Binary files /dev/null and b/src/main/webapp/img/productSingle/7649.jpg differ diff --git a/src/main/webapp/img/productSingle/7650.jpg b/src/main/webapp/img/productSingle/7650.jpg new file mode 100644 index 0000000..ce856e9 Binary files /dev/null and b/src/main/webapp/img/productSingle/7650.jpg differ diff --git a/src/main/webapp/img/productSingle/7651.jpg b/src/main/webapp/img/productSingle/7651.jpg new file mode 100644 index 0000000..65ecd81 Binary files /dev/null and b/src/main/webapp/img/productSingle/7651.jpg differ diff --git a/src/main/webapp/img/productSingle/7652.jpg b/src/main/webapp/img/productSingle/7652.jpg new file mode 100644 index 0000000..365cfbf Binary files /dev/null and b/src/main/webapp/img/productSingle/7652.jpg differ diff --git a/src/main/webapp/img/productSingle/7659.jpg b/src/main/webapp/img/productSingle/7659.jpg new file mode 100644 index 0000000..5a082bc Binary files /dev/null and b/src/main/webapp/img/productSingle/7659.jpg differ diff --git a/src/main/webapp/img/productSingle/7660.jpg b/src/main/webapp/img/productSingle/7660.jpg new file mode 100644 index 0000000..6bdde84 Binary files /dev/null and b/src/main/webapp/img/productSingle/7660.jpg differ diff --git a/src/main/webapp/img/productSingle/7661.jpg b/src/main/webapp/img/productSingle/7661.jpg new file mode 100644 index 0000000..b270f28 Binary files /dev/null and b/src/main/webapp/img/productSingle/7661.jpg differ diff --git a/src/main/webapp/img/productSingle/7662.jpg b/src/main/webapp/img/productSingle/7662.jpg new file mode 100644 index 0000000..31c25a4 Binary files /dev/null and b/src/main/webapp/img/productSingle/7662.jpg differ diff --git a/src/main/webapp/img/productSingle/7663.jpg b/src/main/webapp/img/productSingle/7663.jpg new file mode 100644 index 0000000..baac42f Binary files /dev/null and b/src/main/webapp/img/productSingle/7663.jpg differ diff --git a/src/main/webapp/img/productSingle/7670.jpg b/src/main/webapp/img/productSingle/7670.jpg new file mode 100644 index 0000000..784c37a Binary files /dev/null and b/src/main/webapp/img/productSingle/7670.jpg differ diff --git a/src/main/webapp/img/productSingle/7671.jpg b/src/main/webapp/img/productSingle/7671.jpg new file mode 100644 index 0000000..a5a25b1 Binary files /dev/null and b/src/main/webapp/img/productSingle/7671.jpg differ diff --git a/src/main/webapp/img/productSingle/7672.jpg b/src/main/webapp/img/productSingle/7672.jpg new file mode 100644 index 0000000..93cc81f Binary files /dev/null and b/src/main/webapp/img/productSingle/7672.jpg differ diff --git a/src/main/webapp/img/productSingle/7673.jpg b/src/main/webapp/img/productSingle/7673.jpg new file mode 100644 index 0000000..42d527d Binary files /dev/null and b/src/main/webapp/img/productSingle/7673.jpg differ diff --git a/src/main/webapp/img/productSingle/7674.jpg b/src/main/webapp/img/productSingle/7674.jpg new file mode 100644 index 0000000..a6ae9db Binary files /dev/null and b/src/main/webapp/img/productSingle/7674.jpg differ diff --git a/src/main/webapp/img/productSingle/8231.jpg b/src/main/webapp/img/productSingle/8231.jpg new file mode 100644 index 0000000..a6108a1 Binary files /dev/null and b/src/main/webapp/img/productSingle/8231.jpg differ diff --git a/src/main/webapp/img/productSingle/8232.jpg b/src/main/webapp/img/productSingle/8232.jpg new file mode 100644 index 0000000..ee63cbb Binary files /dev/null and b/src/main/webapp/img/productSingle/8232.jpg differ diff --git a/src/main/webapp/img/productSingle/8233.jpg b/src/main/webapp/img/productSingle/8233.jpg new file mode 100644 index 0000000..8378dcd Binary files /dev/null and b/src/main/webapp/img/productSingle/8233.jpg differ diff --git a/src/main/webapp/img/productSingle/8234.jpg b/src/main/webapp/img/productSingle/8234.jpg new file mode 100644 index 0000000..fcb712a Binary files /dev/null and b/src/main/webapp/img/productSingle/8234.jpg differ diff --git a/src/main/webapp/img/productSingle/8235.jpg b/src/main/webapp/img/productSingle/8235.jpg new file mode 100644 index 0000000..7b220a7 Binary files /dev/null and b/src/main/webapp/img/productSingle/8235.jpg differ diff --git a/src/main/webapp/img/productSingle/8242.jpg b/src/main/webapp/img/productSingle/8242.jpg new file mode 100644 index 0000000..caac18c Binary files /dev/null and b/src/main/webapp/img/productSingle/8242.jpg differ diff --git a/src/main/webapp/img/productSingle/8243.jpg b/src/main/webapp/img/productSingle/8243.jpg new file mode 100644 index 0000000..8b37dc5 Binary files /dev/null and b/src/main/webapp/img/productSingle/8243.jpg differ diff --git a/src/main/webapp/img/productSingle/8244.jpg b/src/main/webapp/img/productSingle/8244.jpg new file mode 100644 index 0000000..4d359a1 Binary files /dev/null and b/src/main/webapp/img/productSingle/8244.jpg differ diff --git a/src/main/webapp/img/productSingle/8245.jpg b/src/main/webapp/img/productSingle/8245.jpg new file mode 100644 index 0000000..72c76e2 Binary files /dev/null and b/src/main/webapp/img/productSingle/8245.jpg differ diff --git a/src/main/webapp/img/productSingle/8246.jpg b/src/main/webapp/img/productSingle/8246.jpg new file mode 100644 index 0000000..e285b16 Binary files /dev/null and b/src/main/webapp/img/productSingle/8246.jpg differ diff --git a/src/main/webapp/img/productSingle/8253.jpg b/src/main/webapp/img/productSingle/8253.jpg new file mode 100644 index 0000000..046862b Binary files /dev/null and b/src/main/webapp/img/productSingle/8253.jpg differ diff --git a/src/main/webapp/img/productSingle/8254.jpg b/src/main/webapp/img/productSingle/8254.jpg new file mode 100644 index 0000000..6c147ed Binary files /dev/null and b/src/main/webapp/img/productSingle/8254.jpg differ diff --git a/src/main/webapp/img/productSingle/8255.jpg b/src/main/webapp/img/productSingle/8255.jpg new file mode 100644 index 0000000..2152f13 Binary files /dev/null and b/src/main/webapp/img/productSingle/8255.jpg differ diff --git a/src/main/webapp/img/productSingle/8256.jpg b/src/main/webapp/img/productSingle/8256.jpg new file mode 100644 index 0000000..b319afb Binary files /dev/null and b/src/main/webapp/img/productSingle/8256.jpg differ diff --git a/src/main/webapp/img/productSingle/8257.jpg b/src/main/webapp/img/productSingle/8257.jpg new file mode 100644 index 0000000..463a40c Binary files /dev/null and b/src/main/webapp/img/productSingle/8257.jpg differ diff --git a/src/main/webapp/img/productSingle/8264.jpg b/src/main/webapp/img/productSingle/8264.jpg new file mode 100644 index 0000000..8ccf341 Binary files /dev/null and b/src/main/webapp/img/productSingle/8264.jpg differ diff --git a/src/main/webapp/img/productSingle/8265.jpg b/src/main/webapp/img/productSingle/8265.jpg new file mode 100644 index 0000000..a604c2e Binary files /dev/null and b/src/main/webapp/img/productSingle/8265.jpg differ diff --git a/src/main/webapp/img/productSingle/8266.jpg b/src/main/webapp/img/productSingle/8266.jpg new file mode 100644 index 0000000..6ff2460 Binary files /dev/null and b/src/main/webapp/img/productSingle/8266.jpg differ diff --git a/src/main/webapp/img/productSingle/8267.jpg b/src/main/webapp/img/productSingle/8267.jpg new file mode 100644 index 0000000..7aaa406 Binary files /dev/null and b/src/main/webapp/img/productSingle/8267.jpg differ diff --git a/src/main/webapp/img/productSingle/8268.jpg b/src/main/webapp/img/productSingle/8268.jpg new file mode 100644 index 0000000..94651aa Binary files /dev/null and b/src/main/webapp/img/productSingle/8268.jpg differ diff --git a/src/main/webapp/img/productSingle/8275.jpg b/src/main/webapp/img/productSingle/8275.jpg new file mode 100644 index 0000000..10fcf72 Binary files /dev/null and b/src/main/webapp/img/productSingle/8275.jpg differ diff --git a/src/main/webapp/img/productSingle/8276.jpg b/src/main/webapp/img/productSingle/8276.jpg new file mode 100644 index 0000000..7917f14 Binary files /dev/null and b/src/main/webapp/img/productSingle/8276.jpg differ diff --git a/src/main/webapp/img/productSingle/8277.jpg b/src/main/webapp/img/productSingle/8277.jpg new file mode 100644 index 0000000..43ce215 Binary files /dev/null and b/src/main/webapp/img/productSingle/8277.jpg differ diff --git a/src/main/webapp/img/productSingle/8278.jpg b/src/main/webapp/img/productSingle/8278.jpg new file mode 100644 index 0000000..a65dea1 Binary files /dev/null and b/src/main/webapp/img/productSingle/8278.jpg differ diff --git a/src/main/webapp/img/productSingle/8279.jpg b/src/main/webapp/img/productSingle/8279.jpg new file mode 100644 index 0000000..0898281 Binary files /dev/null and b/src/main/webapp/img/productSingle/8279.jpg differ diff --git a/src/main/webapp/img/productSingle/8891.jpg b/src/main/webapp/img/productSingle/8891.jpg new file mode 100644 index 0000000..83fde28 Binary files /dev/null and b/src/main/webapp/img/productSingle/8891.jpg differ diff --git a/src/main/webapp/img/productSingle/8892.jpg b/src/main/webapp/img/productSingle/8892.jpg new file mode 100644 index 0000000..d171d72 Binary files /dev/null and b/src/main/webapp/img/productSingle/8892.jpg differ diff --git a/src/main/webapp/img/productSingle/8893.jpg b/src/main/webapp/img/productSingle/8893.jpg new file mode 100644 index 0000000..00bb24a Binary files /dev/null and b/src/main/webapp/img/productSingle/8893.jpg differ diff --git a/src/main/webapp/img/productSingle/8894.jpg b/src/main/webapp/img/productSingle/8894.jpg new file mode 100644 index 0000000..e68837c Binary files /dev/null and b/src/main/webapp/img/productSingle/8894.jpg differ diff --git a/src/main/webapp/img/productSingle/8895.jpg b/src/main/webapp/img/productSingle/8895.jpg new file mode 100644 index 0000000..da329f6 Binary files /dev/null and b/src/main/webapp/img/productSingle/8895.jpg differ diff --git a/src/main/webapp/img/productSingle/8902.jpg b/src/main/webapp/img/productSingle/8902.jpg new file mode 100644 index 0000000..50856c6 Binary files /dev/null and b/src/main/webapp/img/productSingle/8902.jpg differ diff --git a/src/main/webapp/img/productSingle/8903.jpg b/src/main/webapp/img/productSingle/8903.jpg new file mode 100644 index 0000000..eede645 Binary files /dev/null and b/src/main/webapp/img/productSingle/8903.jpg differ diff --git a/src/main/webapp/img/productSingle/8904.jpg b/src/main/webapp/img/productSingle/8904.jpg new file mode 100644 index 0000000..69d4702 Binary files /dev/null and b/src/main/webapp/img/productSingle/8904.jpg differ diff --git a/src/main/webapp/img/productSingle/8905.jpg b/src/main/webapp/img/productSingle/8905.jpg new file mode 100644 index 0000000..6b7f377 Binary files /dev/null and b/src/main/webapp/img/productSingle/8905.jpg differ diff --git a/src/main/webapp/img/productSingle/8906.jpg b/src/main/webapp/img/productSingle/8906.jpg new file mode 100644 index 0000000..5503354 Binary files /dev/null and b/src/main/webapp/img/productSingle/8906.jpg differ diff --git a/src/main/webapp/img/productSingle/8913.jpg b/src/main/webapp/img/productSingle/8913.jpg new file mode 100644 index 0000000..80bf35e Binary files /dev/null and b/src/main/webapp/img/productSingle/8913.jpg differ diff --git a/src/main/webapp/img/productSingle/8914.jpg b/src/main/webapp/img/productSingle/8914.jpg new file mode 100644 index 0000000..a3171fc Binary files /dev/null and b/src/main/webapp/img/productSingle/8914.jpg differ diff --git a/src/main/webapp/img/productSingle/8915.jpg b/src/main/webapp/img/productSingle/8915.jpg new file mode 100644 index 0000000..691d426 Binary files /dev/null and b/src/main/webapp/img/productSingle/8915.jpg differ diff --git a/src/main/webapp/img/productSingle/8916.jpg b/src/main/webapp/img/productSingle/8916.jpg new file mode 100644 index 0000000..c70c925 Binary files /dev/null and b/src/main/webapp/img/productSingle/8916.jpg differ diff --git a/src/main/webapp/img/productSingle/8917.jpg b/src/main/webapp/img/productSingle/8917.jpg new file mode 100644 index 0000000..3ba4261 Binary files /dev/null and b/src/main/webapp/img/productSingle/8917.jpg differ diff --git a/src/main/webapp/img/productSingle/8924.jpg b/src/main/webapp/img/productSingle/8924.jpg new file mode 100644 index 0000000..5920890 Binary files /dev/null and b/src/main/webapp/img/productSingle/8924.jpg differ diff --git a/src/main/webapp/img/productSingle/8925.jpg b/src/main/webapp/img/productSingle/8925.jpg new file mode 100644 index 0000000..4cd4aa9 Binary files /dev/null and b/src/main/webapp/img/productSingle/8925.jpg differ diff --git a/src/main/webapp/img/productSingle/8926.jpg b/src/main/webapp/img/productSingle/8926.jpg new file mode 100644 index 0000000..dea6150 Binary files /dev/null and b/src/main/webapp/img/productSingle/8926.jpg differ diff --git a/src/main/webapp/img/productSingle/8927.jpg b/src/main/webapp/img/productSingle/8927.jpg new file mode 100644 index 0000000..63cb607 Binary files /dev/null and b/src/main/webapp/img/productSingle/8927.jpg differ diff --git a/src/main/webapp/img/productSingle/8928.jpg b/src/main/webapp/img/productSingle/8928.jpg new file mode 100644 index 0000000..7646ca4 Binary files /dev/null and b/src/main/webapp/img/productSingle/8928.jpg differ diff --git a/src/main/webapp/img/productSingle/8935.jpg b/src/main/webapp/img/productSingle/8935.jpg new file mode 100644 index 0000000..6e34d9d Binary files /dev/null and b/src/main/webapp/img/productSingle/8935.jpg differ diff --git a/src/main/webapp/img/productSingle/8936.jpg b/src/main/webapp/img/productSingle/8936.jpg new file mode 100644 index 0000000..38de1fc Binary files /dev/null and b/src/main/webapp/img/productSingle/8936.jpg differ diff --git a/src/main/webapp/img/productSingle/8937.jpg b/src/main/webapp/img/productSingle/8937.jpg new file mode 100644 index 0000000..004c55b Binary files /dev/null and b/src/main/webapp/img/productSingle/8937.jpg differ diff --git a/src/main/webapp/img/productSingle/8938.jpg b/src/main/webapp/img/productSingle/8938.jpg new file mode 100644 index 0000000..e0e3772 Binary files /dev/null and b/src/main/webapp/img/productSingle/8938.jpg differ diff --git a/src/main/webapp/img/productSingle/8939.jpg b/src/main/webapp/img/productSingle/8939.jpg new file mode 100644 index 0000000..73080a4 Binary files /dev/null and b/src/main/webapp/img/productSingle/8939.jpg differ diff --git a/src/main/webapp/img/productSingle/9495.jpg b/src/main/webapp/img/productSingle/9495.jpg new file mode 100644 index 0000000..90b0f22 Binary files /dev/null and b/src/main/webapp/img/productSingle/9495.jpg differ diff --git a/src/main/webapp/img/productSingle/9496.jpg b/src/main/webapp/img/productSingle/9496.jpg new file mode 100644 index 0000000..7381734 Binary files /dev/null and b/src/main/webapp/img/productSingle/9496.jpg differ diff --git a/src/main/webapp/img/productSingle/9497.jpg b/src/main/webapp/img/productSingle/9497.jpg new file mode 100644 index 0000000..c6e8397 Binary files /dev/null and b/src/main/webapp/img/productSingle/9497.jpg differ diff --git a/src/main/webapp/img/productSingle/9498.jpg b/src/main/webapp/img/productSingle/9498.jpg new file mode 100644 index 0000000..7447765 Binary files /dev/null and b/src/main/webapp/img/productSingle/9498.jpg differ diff --git a/src/main/webapp/img/productSingle/9499.jpg b/src/main/webapp/img/productSingle/9499.jpg new file mode 100644 index 0000000..07d2ac6 Binary files /dev/null and b/src/main/webapp/img/productSingle/9499.jpg differ diff --git a/src/main/webapp/img/productSingle/9506.jpg b/src/main/webapp/img/productSingle/9506.jpg new file mode 100644 index 0000000..959c802 Binary files /dev/null and b/src/main/webapp/img/productSingle/9506.jpg differ diff --git a/src/main/webapp/img/productSingle/9507.jpg b/src/main/webapp/img/productSingle/9507.jpg new file mode 100644 index 0000000..01ada46 Binary files /dev/null and b/src/main/webapp/img/productSingle/9507.jpg differ diff --git a/src/main/webapp/img/productSingle/9508.jpg b/src/main/webapp/img/productSingle/9508.jpg new file mode 100644 index 0000000..f211ac4 Binary files /dev/null and b/src/main/webapp/img/productSingle/9508.jpg differ diff --git a/src/main/webapp/img/productSingle/9509.jpg b/src/main/webapp/img/productSingle/9509.jpg new file mode 100644 index 0000000..536e31a Binary files /dev/null and b/src/main/webapp/img/productSingle/9509.jpg differ diff --git a/src/main/webapp/img/productSingle/9510.jpg b/src/main/webapp/img/productSingle/9510.jpg new file mode 100644 index 0000000..520586f Binary files /dev/null and b/src/main/webapp/img/productSingle/9510.jpg differ diff --git a/src/main/webapp/img/productSingle/9517.jpg b/src/main/webapp/img/productSingle/9517.jpg new file mode 100644 index 0000000..8c013e0 Binary files /dev/null and b/src/main/webapp/img/productSingle/9517.jpg differ diff --git a/src/main/webapp/img/productSingle/9518.jpg b/src/main/webapp/img/productSingle/9518.jpg new file mode 100644 index 0000000..51d29ab Binary files /dev/null and b/src/main/webapp/img/productSingle/9518.jpg differ diff --git a/src/main/webapp/img/productSingle/9519.jpg b/src/main/webapp/img/productSingle/9519.jpg new file mode 100644 index 0000000..acc98c4 Binary files /dev/null and b/src/main/webapp/img/productSingle/9519.jpg differ diff --git a/src/main/webapp/img/productSingle/9520.jpg b/src/main/webapp/img/productSingle/9520.jpg new file mode 100644 index 0000000..ff823e1 Binary files /dev/null and b/src/main/webapp/img/productSingle/9520.jpg differ diff --git a/src/main/webapp/img/productSingle/9521.jpg b/src/main/webapp/img/productSingle/9521.jpg new file mode 100644 index 0000000..a6edd7d Binary files /dev/null and b/src/main/webapp/img/productSingle/9521.jpg differ diff --git a/src/main/webapp/img/productSingle/9528.jpg b/src/main/webapp/img/productSingle/9528.jpg new file mode 100644 index 0000000..20d4059 Binary files /dev/null and b/src/main/webapp/img/productSingle/9528.jpg differ diff --git a/src/main/webapp/img/productSingle/9529.jpg b/src/main/webapp/img/productSingle/9529.jpg new file mode 100644 index 0000000..e60144d Binary files /dev/null and b/src/main/webapp/img/productSingle/9529.jpg differ diff --git a/src/main/webapp/img/productSingle/9530.jpg b/src/main/webapp/img/productSingle/9530.jpg new file mode 100644 index 0000000..1ddfa07 Binary files /dev/null and b/src/main/webapp/img/productSingle/9530.jpg differ diff --git a/src/main/webapp/img/productSingle/9531.jpg b/src/main/webapp/img/productSingle/9531.jpg new file mode 100644 index 0000000..08ce280 Binary files /dev/null and b/src/main/webapp/img/productSingle/9531.jpg differ diff --git a/src/main/webapp/img/productSingle/9532.jpg b/src/main/webapp/img/productSingle/9532.jpg new file mode 100644 index 0000000..d5aa036 Binary files /dev/null and b/src/main/webapp/img/productSingle/9532.jpg differ diff --git a/src/main/webapp/img/productSingle/9539.jpg b/src/main/webapp/img/productSingle/9539.jpg new file mode 100644 index 0000000..1d21d74 Binary files /dev/null and b/src/main/webapp/img/productSingle/9539.jpg differ diff --git a/src/main/webapp/img/productSingle/9540.jpg b/src/main/webapp/img/productSingle/9540.jpg new file mode 100644 index 0000000..8079012 Binary files /dev/null and b/src/main/webapp/img/productSingle/9540.jpg differ diff --git a/src/main/webapp/img/productSingle/9541.jpg b/src/main/webapp/img/productSingle/9541.jpg new file mode 100644 index 0000000..6984c99 Binary files /dev/null and b/src/main/webapp/img/productSingle/9541.jpg differ diff --git a/src/main/webapp/img/productSingle/9542.jpg b/src/main/webapp/img/productSingle/9542.jpg new file mode 100644 index 0000000..db7a589 Binary files /dev/null and b/src/main/webapp/img/productSingle/9542.jpg differ diff --git a/src/main/webapp/img/productSingle/9543.jpg b/src/main/webapp/img/productSingle/9543.jpg new file mode 100644 index 0000000..bca95a7 Binary files /dev/null and b/src/main/webapp/img/productSingle/9543.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10144.jpg b/src/main/webapp/img/productSingle_middle/10144.jpg new file mode 100644 index 0000000..34345c3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10144.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10145.jpg b/src/main/webapp/img/productSingle_middle/10145.jpg new file mode 100644 index 0000000..34345c3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10145.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10146.jpg b/src/main/webapp/img/productSingle_middle/10146.jpg new file mode 100644 index 0000000..4ee5966 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10146.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10147.jpg b/src/main/webapp/img/productSingle_middle/10147.jpg new file mode 100644 index 0000000..92f5b81 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10147.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10148.jpg b/src/main/webapp/img/productSingle_middle/10148.jpg new file mode 100644 index 0000000..ba1348a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10148.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10155.jpg b/src/main/webapp/img/productSingle_middle/10155.jpg new file mode 100644 index 0000000..00b7915 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10155.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10156.jpg b/src/main/webapp/img/productSingle_middle/10156.jpg new file mode 100644 index 0000000..00b7915 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10156.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10157.jpg b/src/main/webapp/img/productSingle_middle/10157.jpg new file mode 100644 index 0000000..7077d27 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10157.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10158.jpg b/src/main/webapp/img/productSingle_middle/10158.jpg new file mode 100644 index 0000000..892f2c8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10158.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10159.jpg b/src/main/webapp/img/productSingle_middle/10159.jpg new file mode 100644 index 0000000..494ebe6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10159.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10166.jpg b/src/main/webapp/img/productSingle_middle/10166.jpg new file mode 100644 index 0000000..a2f9821 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10166.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10167.jpg b/src/main/webapp/img/productSingle_middle/10167.jpg new file mode 100644 index 0000000..3601129 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10167.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10168.jpg b/src/main/webapp/img/productSingle_middle/10168.jpg new file mode 100644 index 0000000..a57c2e2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10168.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10169.jpg b/src/main/webapp/img/productSingle_middle/10169.jpg new file mode 100644 index 0000000..a625017 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10169.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10170.jpg b/src/main/webapp/img/productSingle_middle/10170.jpg new file mode 100644 index 0000000..c99c596 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10170.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10177.jpg b/src/main/webapp/img/productSingle_middle/10177.jpg new file mode 100644 index 0000000..39904e6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10177.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10178.jpg b/src/main/webapp/img/productSingle_middle/10178.jpg new file mode 100644 index 0000000..136664a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10178.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10179.jpg b/src/main/webapp/img/productSingle_middle/10179.jpg new file mode 100644 index 0000000..e1d7f57 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10179.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10180.jpg b/src/main/webapp/img/productSingle_middle/10180.jpg new file mode 100644 index 0000000..f06e4fb Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10180.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10181.jpg b/src/main/webapp/img/productSingle_middle/10181.jpg new file mode 100644 index 0000000..a9f35db Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10181.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10188.jpg b/src/main/webapp/img/productSingle_middle/10188.jpg new file mode 100644 index 0000000..5a9c8be Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10188.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10189.jpg b/src/main/webapp/img/productSingle_middle/10189.jpg new file mode 100644 index 0000000..36db7bf Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10189.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10190.jpg b/src/main/webapp/img/productSingle_middle/10190.jpg new file mode 100644 index 0000000..0c758be Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10190.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10191.jpg b/src/main/webapp/img/productSingle_middle/10191.jpg new file mode 100644 index 0000000..bc0de47 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10191.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/10192.jpg b/src/main/webapp/img/productSingle_middle/10192.jpg new file mode 100644 index 0000000..43027f9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/10192.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1276.jpg b/src/main/webapp/img/productSingle_middle/1276.jpg new file mode 100644 index 0000000..279fc50 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1276.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1277.jpg b/src/main/webapp/img/productSingle_middle/1277.jpg new file mode 100644 index 0000000..9663e75 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1277.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1278.jpg b/src/main/webapp/img/productSingle_middle/1278.jpg new file mode 100644 index 0000000..42ee345 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1278.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1279.jpg b/src/main/webapp/img/productSingle_middle/1279.jpg new file mode 100644 index 0000000..68c9ab8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1279.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1280.jpg b/src/main/webapp/img/productSingle_middle/1280.jpg new file mode 100644 index 0000000..9edb8e9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1280.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1287.jpg b/src/main/webapp/img/productSingle_middle/1287.jpg new file mode 100644 index 0000000..e003604 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1287.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1288.jpg b/src/main/webapp/img/productSingle_middle/1288.jpg new file mode 100644 index 0000000..e003604 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1288.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1289.jpg b/src/main/webapp/img/productSingle_middle/1289.jpg new file mode 100644 index 0000000..074263d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1289.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1290.jpg b/src/main/webapp/img/productSingle_middle/1290.jpg new file mode 100644 index 0000000..585e6c6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1290.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1291.jpg b/src/main/webapp/img/productSingle_middle/1291.jpg new file mode 100644 index 0000000..ac50fbc Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1291.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1298.jpg b/src/main/webapp/img/productSingle_middle/1298.jpg new file mode 100644 index 0000000..29aec8e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1298.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1299.jpg b/src/main/webapp/img/productSingle_middle/1299.jpg new file mode 100644 index 0000000..29aec8e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1299.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1300.jpg b/src/main/webapp/img/productSingle_middle/1300.jpg new file mode 100644 index 0000000..17ab9da Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1300.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1301.jpg b/src/main/webapp/img/productSingle_middle/1301.jpg new file mode 100644 index 0000000..d00fbc3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1301.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1302.jpg b/src/main/webapp/img/productSingle_middle/1302.jpg new file mode 100644 index 0000000..601df27 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1302.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1309.jpg b/src/main/webapp/img/productSingle_middle/1309.jpg new file mode 100644 index 0000000..1fe755f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1309.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1310.jpg b/src/main/webapp/img/productSingle_middle/1310.jpg new file mode 100644 index 0000000..1c9ecc9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1310.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1311.jpg b/src/main/webapp/img/productSingle_middle/1311.jpg new file mode 100644 index 0000000..7eeda7e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1311.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1312.jpg b/src/main/webapp/img/productSingle_middle/1312.jpg new file mode 100644 index 0000000..a99981b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1312.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1313.jpg b/src/main/webapp/img/productSingle_middle/1313.jpg new file mode 100644 index 0000000..48b9670 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1313.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1320.jpg b/src/main/webapp/img/productSingle_middle/1320.jpg new file mode 100644 index 0000000..65aba3d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1320.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1321.jpg b/src/main/webapp/img/productSingle_middle/1321.jpg new file mode 100644 index 0000000..65aba3d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1321.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1322.jpg b/src/main/webapp/img/productSingle_middle/1322.jpg new file mode 100644 index 0000000..eee840f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1322.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1323.jpg b/src/main/webapp/img/productSingle_middle/1323.jpg new file mode 100644 index 0000000..68593b2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1323.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1324.jpg b/src/main/webapp/img/productSingle_middle/1324.jpg new file mode 100644 index 0000000..0dddd77 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1324.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1880.jpg b/src/main/webapp/img/productSingle_middle/1880.jpg new file mode 100644 index 0000000..2d98118 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1880.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1881.jpg b/src/main/webapp/img/productSingle_middle/1881.jpg new file mode 100644 index 0000000..51a877f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1881.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1882.jpg b/src/main/webapp/img/productSingle_middle/1882.jpg new file mode 100644 index 0000000..ff332a1 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1882.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1883.jpg b/src/main/webapp/img/productSingle_middle/1883.jpg new file mode 100644 index 0000000..8df7d83 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1883.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1884.jpg b/src/main/webapp/img/productSingle_middle/1884.jpg new file mode 100644 index 0000000..171fd57 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1884.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1891.jpg b/src/main/webapp/img/productSingle_middle/1891.jpg new file mode 100644 index 0000000..9dc652e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1891.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1892.jpg b/src/main/webapp/img/productSingle_middle/1892.jpg new file mode 100644 index 0000000..2fd39b5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1892.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1893.jpg b/src/main/webapp/img/productSingle_middle/1893.jpg new file mode 100644 index 0000000..2fbf3c4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1893.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1894.jpg b/src/main/webapp/img/productSingle_middle/1894.jpg new file mode 100644 index 0000000..63760af Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1894.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1895.jpg b/src/main/webapp/img/productSingle_middle/1895.jpg new file mode 100644 index 0000000..4d7a2d0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1895.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/19.jpg b/src/main/webapp/img/productSingle_middle/19.jpg new file mode 100644 index 0000000..32bf6d4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/19.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1902.jpg b/src/main/webapp/img/productSingle_middle/1902.jpg new file mode 100644 index 0000000..d09ec90 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1902.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1903.jpg b/src/main/webapp/img/productSingle_middle/1903.jpg new file mode 100644 index 0000000..a95972c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1903.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1904.jpg b/src/main/webapp/img/productSingle_middle/1904.jpg new file mode 100644 index 0000000..704e338 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1904.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1905.jpg b/src/main/webapp/img/productSingle_middle/1905.jpg new file mode 100644 index 0000000..50c7f15 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1905.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1906.jpg b/src/main/webapp/img/productSingle_middle/1906.jpg new file mode 100644 index 0000000..91fd0b0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1906.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1913.jpg b/src/main/webapp/img/productSingle_middle/1913.jpg new file mode 100644 index 0000000..f77fc81 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1913.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1914.jpg b/src/main/webapp/img/productSingle_middle/1914.jpg new file mode 100644 index 0000000..dbf03ad Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1914.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1915.jpg b/src/main/webapp/img/productSingle_middle/1915.jpg new file mode 100644 index 0000000..8cfd1d6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1915.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1916.jpg b/src/main/webapp/img/productSingle_middle/1916.jpg new file mode 100644 index 0000000..9d4b34a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1916.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1917.jpg b/src/main/webapp/img/productSingle_middle/1917.jpg new file mode 100644 index 0000000..18622d1 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1917.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1924.jpg b/src/main/webapp/img/productSingle_middle/1924.jpg new file mode 100644 index 0000000..337bb97 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1924.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1925.jpg b/src/main/webapp/img/productSingle_middle/1925.jpg new file mode 100644 index 0000000..863bd40 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1925.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1926.jpg b/src/main/webapp/img/productSingle_middle/1926.jpg new file mode 100644 index 0000000..cbed977 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1926.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1927.jpg b/src/main/webapp/img/productSingle_middle/1927.jpg new file mode 100644 index 0000000..c785c6a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1927.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/1928.jpg b/src/main/webapp/img/productSingle_middle/1928.jpg new file mode 100644 index 0000000..aeb4d05 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/1928.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/21.jpg b/src/main/webapp/img/productSingle_middle/21.jpg new file mode 100644 index 0000000..c921f54 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/21.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/22.jpg b/src/main/webapp/img/productSingle_middle/22.jpg new file mode 100644 index 0000000..b748c7e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/22.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2533.jpg b/src/main/webapp/img/productSingle_middle/2533.jpg new file mode 100644 index 0000000..0a29e12 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2533.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2534.jpg b/src/main/webapp/img/productSingle_middle/2534.jpg new file mode 100644 index 0000000..bbf616b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2534.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2535.jpg b/src/main/webapp/img/productSingle_middle/2535.jpg new file mode 100644 index 0000000..328d447 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2535.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2536.jpg b/src/main/webapp/img/productSingle_middle/2536.jpg new file mode 100644 index 0000000..ed485c4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2536.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2537.jpg b/src/main/webapp/img/productSingle_middle/2537.jpg new file mode 100644 index 0000000..ea57675 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2537.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2544.jpg b/src/main/webapp/img/productSingle_middle/2544.jpg new file mode 100644 index 0000000..b9ba27e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2544.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2545.jpg b/src/main/webapp/img/productSingle_middle/2545.jpg new file mode 100644 index 0000000..591097a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2545.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2546.jpg b/src/main/webapp/img/productSingle_middle/2546.jpg new file mode 100644 index 0000000..a660d1b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2546.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2547.jpg b/src/main/webapp/img/productSingle_middle/2547.jpg new file mode 100644 index 0000000..d562629 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2547.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2548.jpg b/src/main/webapp/img/productSingle_middle/2548.jpg new file mode 100644 index 0000000..dbea3a0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2548.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2555.jpg b/src/main/webapp/img/productSingle_middle/2555.jpg new file mode 100644 index 0000000..4e240a4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2555.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2556.jpg b/src/main/webapp/img/productSingle_middle/2556.jpg new file mode 100644 index 0000000..743abb7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2556.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2557.jpg b/src/main/webapp/img/productSingle_middle/2557.jpg new file mode 100644 index 0000000..158034c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2557.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2558.jpg b/src/main/webapp/img/productSingle_middle/2558.jpg new file mode 100644 index 0000000..4b9cdf9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2558.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2559.jpg b/src/main/webapp/img/productSingle_middle/2559.jpg new file mode 100644 index 0000000..9f2226b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2559.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2566.jpg b/src/main/webapp/img/productSingle_middle/2566.jpg new file mode 100644 index 0000000..17a5855 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2566.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2567.jpg b/src/main/webapp/img/productSingle_middle/2567.jpg new file mode 100644 index 0000000..55242fc Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2567.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2568.jpg b/src/main/webapp/img/productSingle_middle/2568.jpg new file mode 100644 index 0000000..631dcf5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2568.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2569.jpg b/src/main/webapp/img/productSingle_middle/2569.jpg new file mode 100644 index 0000000..21f29d0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2569.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2570.jpg b/src/main/webapp/img/productSingle_middle/2570.jpg new file mode 100644 index 0000000..64cf30d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2570.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2577.jpg b/src/main/webapp/img/productSingle_middle/2577.jpg new file mode 100644 index 0000000..be3b320 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2577.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2578.jpg b/src/main/webapp/img/productSingle_middle/2578.jpg new file mode 100644 index 0000000..4003afe Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2578.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2579.jpg b/src/main/webapp/img/productSingle_middle/2579.jpg new file mode 100644 index 0000000..1e89a70 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2579.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2580.jpg b/src/main/webapp/img/productSingle_middle/2580.jpg new file mode 100644 index 0000000..4e30bb0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2580.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/2581.jpg b/src/main/webapp/img/productSingle_middle/2581.jpg new file mode 100644 index 0000000..a2160f5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/2581.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3134.jpg b/src/main/webapp/img/productSingle_middle/3134.jpg new file mode 100644 index 0000000..3b0534d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3134.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3135.jpg b/src/main/webapp/img/productSingle_middle/3135.jpg new file mode 100644 index 0000000..2886a81 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3135.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3136.jpg b/src/main/webapp/img/productSingle_middle/3136.jpg new file mode 100644 index 0000000..be6ec3b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3136.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3137.jpg b/src/main/webapp/img/productSingle_middle/3137.jpg new file mode 100644 index 0000000..f710969 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3137.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3138.jpg b/src/main/webapp/img/productSingle_middle/3138.jpg new file mode 100644 index 0000000..b3ceaa0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3138.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3145.jpg b/src/main/webapp/img/productSingle_middle/3145.jpg new file mode 100644 index 0000000..d9d102e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3145.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3146.jpg b/src/main/webapp/img/productSingle_middle/3146.jpg new file mode 100644 index 0000000..88522a1 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3146.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3147.jpg b/src/main/webapp/img/productSingle_middle/3147.jpg new file mode 100644 index 0000000..cb3a948 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3147.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3148.jpg b/src/main/webapp/img/productSingle_middle/3148.jpg new file mode 100644 index 0000000..6275009 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3148.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3149.jpg b/src/main/webapp/img/productSingle_middle/3149.jpg new file mode 100644 index 0000000..ee076a3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3149.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3156.jpg b/src/main/webapp/img/productSingle_middle/3156.jpg new file mode 100644 index 0000000..054eb74 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3156.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3157.jpg b/src/main/webapp/img/productSingle_middle/3157.jpg new file mode 100644 index 0000000..c159270 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3157.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3158.jpg b/src/main/webapp/img/productSingle_middle/3158.jpg new file mode 100644 index 0000000..f43daae Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3158.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3159.jpg b/src/main/webapp/img/productSingle_middle/3159.jpg new file mode 100644 index 0000000..a034b6a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3159.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3160.jpg b/src/main/webapp/img/productSingle_middle/3160.jpg new file mode 100644 index 0000000..110ac52 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3160.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3167.jpg b/src/main/webapp/img/productSingle_middle/3167.jpg new file mode 100644 index 0000000..cba8df4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3167.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3168.jpg b/src/main/webapp/img/productSingle_middle/3168.jpg new file mode 100644 index 0000000..62138ff Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3168.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3169.jpg b/src/main/webapp/img/productSingle_middle/3169.jpg new file mode 100644 index 0000000..47031e9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3169.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3170.jpg b/src/main/webapp/img/productSingle_middle/3170.jpg new file mode 100644 index 0000000..7c5123e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3170.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3171.jpg b/src/main/webapp/img/productSingle_middle/3171.jpg new file mode 100644 index 0000000..6b5a213 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3171.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3178.jpg b/src/main/webapp/img/productSingle_middle/3178.jpg new file mode 100644 index 0000000..c17ec5a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3178.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3179.jpg b/src/main/webapp/img/productSingle_middle/3179.jpg new file mode 100644 index 0000000..3665375 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3179.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3180.jpg b/src/main/webapp/img/productSingle_middle/3180.jpg new file mode 100644 index 0000000..4891c97 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3180.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3181.jpg b/src/main/webapp/img/productSingle_middle/3181.jpg new file mode 100644 index 0000000..1397761 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3181.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3182.jpg b/src/main/webapp/img/productSingle_middle/3182.jpg new file mode 100644 index 0000000..fa46e75 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3182.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3748.jpg b/src/main/webapp/img/productSingle_middle/3748.jpg new file mode 100644 index 0000000..f1b3067 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3748.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3749.jpg b/src/main/webapp/img/productSingle_middle/3749.jpg new file mode 100644 index 0000000..609fa2c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3749.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3750.jpg b/src/main/webapp/img/productSingle_middle/3750.jpg new file mode 100644 index 0000000..aa4250c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3750.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3751.jpg b/src/main/webapp/img/productSingle_middle/3751.jpg new file mode 100644 index 0000000..1f5a894 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3751.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3752.jpg b/src/main/webapp/img/productSingle_middle/3752.jpg new file mode 100644 index 0000000..6349ea2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3752.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3759.jpg b/src/main/webapp/img/productSingle_middle/3759.jpg new file mode 100644 index 0000000..1e8c569 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3759.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3760.jpg b/src/main/webapp/img/productSingle_middle/3760.jpg new file mode 100644 index 0000000..6ae0288 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3760.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3761.jpg b/src/main/webapp/img/productSingle_middle/3761.jpg new file mode 100644 index 0000000..b9ddc58 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3761.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3762.jpg b/src/main/webapp/img/productSingle_middle/3762.jpg new file mode 100644 index 0000000..6fa8a40 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3762.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3763.jpg b/src/main/webapp/img/productSingle_middle/3763.jpg new file mode 100644 index 0000000..984b0a4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3763.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3770.jpg b/src/main/webapp/img/productSingle_middle/3770.jpg new file mode 100644 index 0000000..3732f93 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3770.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3771.jpg b/src/main/webapp/img/productSingle_middle/3771.jpg new file mode 100644 index 0000000..990d108 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3771.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3772.jpg b/src/main/webapp/img/productSingle_middle/3772.jpg new file mode 100644 index 0000000..6b39865 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3772.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3773.jpg b/src/main/webapp/img/productSingle_middle/3773.jpg new file mode 100644 index 0000000..7c2b9a8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3773.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3774.jpg b/src/main/webapp/img/productSingle_middle/3774.jpg new file mode 100644 index 0000000..b1b2eb5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3774.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3781.jpg b/src/main/webapp/img/productSingle_middle/3781.jpg new file mode 100644 index 0000000..781a1e3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3781.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3782.jpg b/src/main/webapp/img/productSingle_middle/3782.jpg new file mode 100644 index 0000000..2060ae3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3782.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3783.jpg b/src/main/webapp/img/productSingle_middle/3783.jpg new file mode 100644 index 0000000..4d3d3b0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3783.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3784.jpg b/src/main/webapp/img/productSingle_middle/3784.jpg new file mode 100644 index 0000000..ca246b7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3784.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3785.jpg b/src/main/webapp/img/productSingle_middle/3785.jpg new file mode 100644 index 0000000..ed551e0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3785.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3792.jpg b/src/main/webapp/img/productSingle_middle/3792.jpg new file mode 100644 index 0000000..9591a2f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3792.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3793.jpg b/src/main/webapp/img/productSingle_middle/3793.jpg new file mode 100644 index 0000000..a4b1f38 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3793.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3794.jpg b/src/main/webapp/img/productSingle_middle/3794.jpg new file mode 100644 index 0000000..fa04716 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3794.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3795.jpg b/src/main/webapp/img/productSingle_middle/3795.jpg new file mode 100644 index 0000000..59646c2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3795.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/3796.jpg b/src/main/webapp/img/productSingle_middle/3796.jpg new file mode 100644 index 0000000..ce380dc Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/3796.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4354.jpg b/src/main/webapp/img/productSingle_middle/4354.jpg new file mode 100644 index 0000000..418a177 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4354.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4355.jpg b/src/main/webapp/img/productSingle_middle/4355.jpg new file mode 100644 index 0000000..418a177 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4355.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4356.jpg b/src/main/webapp/img/productSingle_middle/4356.jpg new file mode 100644 index 0000000..e52c7e7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4356.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4357.jpg b/src/main/webapp/img/productSingle_middle/4357.jpg new file mode 100644 index 0000000..ddc80e5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4357.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4358.jpg b/src/main/webapp/img/productSingle_middle/4358.jpg new file mode 100644 index 0000000..cae3e4c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4358.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4365.jpg b/src/main/webapp/img/productSingle_middle/4365.jpg new file mode 100644 index 0000000..9fb86fb Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4365.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4366.jpg b/src/main/webapp/img/productSingle_middle/4366.jpg new file mode 100644 index 0000000..cdc670e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4366.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4367.jpg b/src/main/webapp/img/productSingle_middle/4367.jpg new file mode 100644 index 0000000..bb5dc2b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4367.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4368.jpg b/src/main/webapp/img/productSingle_middle/4368.jpg new file mode 100644 index 0000000..eab381f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4368.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4369.jpg b/src/main/webapp/img/productSingle_middle/4369.jpg new file mode 100644 index 0000000..6162a69 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4369.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4376.jpg b/src/main/webapp/img/productSingle_middle/4376.jpg new file mode 100644 index 0000000..e71027f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4376.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4377.jpg b/src/main/webapp/img/productSingle_middle/4377.jpg new file mode 100644 index 0000000..679c48e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4377.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4378.jpg b/src/main/webapp/img/productSingle_middle/4378.jpg new file mode 100644 index 0000000..9828470 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4378.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4379.jpg b/src/main/webapp/img/productSingle_middle/4379.jpg new file mode 100644 index 0000000..aac4211 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4379.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4380.jpg b/src/main/webapp/img/productSingle_middle/4380.jpg new file mode 100644 index 0000000..e70ecd6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4380.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4387.jpg b/src/main/webapp/img/productSingle_middle/4387.jpg new file mode 100644 index 0000000..d37fec4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4387.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4388.jpg b/src/main/webapp/img/productSingle_middle/4388.jpg new file mode 100644 index 0000000..d20a5b8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4388.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4389.jpg b/src/main/webapp/img/productSingle_middle/4389.jpg new file mode 100644 index 0000000..f3f2c9b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4389.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4390.jpg b/src/main/webapp/img/productSingle_middle/4390.jpg new file mode 100644 index 0000000..0435b05 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4390.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4397.jpg b/src/main/webapp/img/productSingle_middle/4397.jpg new file mode 100644 index 0000000..5614efd Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4397.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4398.jpg b/src/main/webapp/img/productSingle_middle/4398.jpg new file mode 100644 index 0000000..9aa89c8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4398.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4399.jpg b/src/main/webapp/img/productSingle_middle/4399.jpg new file mode 100644 index 0000000..3427f9d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4399.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4400.jpg b/src/main/webapp/img/productSingle_middle/4400.jpg new file mode 100644 index 0000000..be0ea76 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4400.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4401.jpg b/src/main/webapp/img/productSingle_middle/4401.jpg new file mode 100644 index 0000000..81982e6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4401.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4573.jpg b/src/main/webapp/img/productSingle_middle/4573.jpg new file mode 100644 index 0000000..8a3cc20 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4573.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4574.jpg b/src/main/webapp/img/productSingle_middle/4574.jpg new file mode 100644 index 0000000..4ddb6aa Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4574.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4575.jpg b/src/main/webapp/img/productSingle_middle/4575.jpg new file mode 100644 index 0000000..91c3d2a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4575.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4576.jpg b/src/main/webapp/img/productSingle_middle/4576.jpg new file mode 100644 index 0000000..34ad79a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4576.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4583.jpg b/src/main/webapp/img/productSingle_middle/4583.jpg new file mode 100644 index 0000000..7af2a25 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4583.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4584.jpg b/src/main/webapp/img/productSingle_middle/4584.jpg new file mode 100644 index 0000000..4fe6e7b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4584.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4585.jpg b/src/main/webapp/img/productSingle_middle/4585.jpg new file mode 100644 index 0000000..eca86a3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4585.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4586.jpg b/src/main/webapp/img/productSingle_middle/4586.jpg new file mode 100644 index 0000000..b8756ea Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4586.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4587.jpg b/src/main/webapp/img/productSingle_middle/4587.jpg new file mode 100644 index 0000000..d80612d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4587.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4594.jpg b/src/main/webapp/img/productSingle_middle/4594.jpg new file mode 100644 index 0000000..a2c82a5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4594.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4595.jpg b/src/main/webapp/img/productSingle_middle/4595.jpg new file mode 100644 index 0000000..41c8c2d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4595.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4596.jpg b/src/main/webapp/img/productSingle_middle/4596.jpg new file mode 100644 index 0000000..d77db84 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4596.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4597.jpg b/src/main/webapp/img/productSingle_middle/4597.jpg new file mode 100644 index 0000000..d997913 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4597.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4598.jpg b/src/main/webapp/img/productSingle_middle/4598.jpg new file mode 100644 index 0000000..a2c82a5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4598.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4605.jpg b/src/main/webapp/img/productSingle_middle/4605.jpg new file mode 100644 index 0000000..beb0ebd Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4605.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4606.jpg b/src/main/webapp/img/productSingle_middle/4606.jpg new file mode 100644 index 0000000..0caeec6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4606.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4607.jpg b/src/main/webapp/img/productSingle_middle/4607.jpg new file mode 100644 index 0000000..60f7038 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4607.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4608.jpg b/src/main/webapp/img/productSingle_middle/4608.jpg new file mode 100644 index 0000000..3156183 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4608.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4615.jpg b/src/main/webapp/img/productSingle_middle/4615.jpg new file mode 100644 index 0000000..d238780 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4615.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4616.jpg b/src/main/webapp/img/productSingle_middle/4616.jpg new file mode 100644 index 0000000..7bc1046 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4616.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4617.jpg b/src/main/webapp/img/productSingle_middle/4617.jpg new file mode 100644 index 0000000..8f28bca Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4617.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4618.jpg b/src/main/webapp/img/productSingle_middle/4618.jpg new file mode 100644 index 0000000..66d07b8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4618.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/4619.jpg b/src/main/webapp/img/productSingle_middle/4619.jpg new file mode 100644 index 0000000..ffd9b9c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/4619.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5208.jpg b/src/main/webapp/img/productSingle_middle/5208.jpg new file mode 100644 index 0000000..86d5fe9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5208.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5209.jpg b/src/main/webapp/img/productSingle_middle/5209.jpg new file mode 100644 index 0000000..6f5ffb8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5209.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5210.jpg b/src/main/webapp/img/productSingle_middle/5210.jpg new file mode 100644 index 0000000..a369839 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5210.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5211.jpg b/src/main/webapp/img/productSingle_middle/5211.jpg new file mode 100644 index 0000000..5a98b35 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5211.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5218.jpg b/src/main/webapp/img/productSingle_middle/5218.jpg new file mode 100644 index 0000000..6fdd3cb Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5218.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5219.jpg b/src/main/webapp/img/productSingle_middle/5219.jpg new file mode 100644 index 0000000..f8f590d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5219.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5220.jpg b/src/main/webapp/img/productSingle_middle/5220.jpg new file mode 100644 index 0000000..9f1fccb Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5220.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5221.jpg b/src/main/webapp/img/productSingle_middle/5221.jpg new file mode 100644 index 0000000..d6c8e49 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5221.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5222.jpg b/src/main/webapp/img/productSingle_middle/5222.jpg new file mode 100644 index 0000000..c5b5fc5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5222.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5229.jpg b/src/main/webapp/img/productSingle_middle/5229.jpg new file mode 100644 index 0000000..dd24420 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5229.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5230.jpg b/src/main/webapp/img/productSingle_middle/5230.jpg new file mode 100644 index 0000000..8c3f480 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5230.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5231.jpg b/src/main/webapp/img/productSingle_middle/5231.jpg new file mode 100644 index 0000000..79b61e4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5231.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5232.jpg b/src/main/webapp/img/productSingle_middle/5232.jpg new file mode 100644 index 0000000..4ca8393 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5232.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5233.jpg b/src/main/webapp/img/productSingle_middle/5233.jpg new file mode 100644 index 0000000..c7540af Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5233.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5240.jpg b/src/main/webapp/img/productSingle_middle/5240.jpg new file mode 100644 index 0000000..4a0504b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5240.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5241.jpg b/src/main/webapp/img/productSingle_middle/5241.jpg new file mode 100644 index 0000000..42221c7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5241.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5242.jpg b/src/main/webapp/img/productSingle_middle/5242.jpg new file mode 100644 index 0000000..2aab693 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5242.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5243.jpg b/src/main/webapp/img/productSingle_middle/5243.jpg new file mode 100644 index 0000000..c790f3d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5243.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5244.jpg b/src/main/webapp/img/productSingle_middle/5244.jpg new file mode 100644 index 0000000..3769262 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5244.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5251.jpg b/src/main/webapp/img/productSingle_middle/5251.jpg new file mode 100644 index 0000000..193bfce Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5251.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5252.jpg b/src/main/webapp/img/productSingle_middle/5252.jpg new file mode 100644 index 0000000..e549ba2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5252.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5253.jpg b/src/main/webapp/img/productSingle_middle/5253.jpg new file mode 100644 index 0000000..d1623f7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5253.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5254.jpg b/src/main/webapp/img/productSingle_middle/5254.jpg new file mode 100644 index 0000000..a3f1a9e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5254.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5255.jpg b/src/main/webapp/img/productSingle_middle/5255.jpg new file mode 100644 index 0000000..3769262 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5255.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5823.jpg b/src/main/webapp/img/productSingle_middle/5823.jpg new file mode 100644 index 0000000..2b442e7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5823.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5824.jpg b/src/main/webapp/img/productSingle_middle/5824.jpg new file mode 100644 index 0000000..ce7fd86 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5824.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5825.jpg b/src/main/webapp/img/productSingle_middle/5825.jpg new file mode 100644 index 0000000..00fe0e7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5825.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5826.jpg b/src/main/webapp/img/productSingle_middle/5826.jpg new file mode 100644 index 0000000..8d987da Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5826.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5827.jpg b/src/main/webapp/img/productSingle_middle/5827.jpg new file mode 100644 index 0000000..60d7e0d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5827.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5834.jpg b/src/main/webapp/img/productSingle_middle/5834.jpg new file mode 100644 index 0000000..3618d76 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5834.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5835.jpg b/src/main/webapp/img/productSingle_middle/5835.jpg new file mode 100644 index 0000000..d0c4371 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5835.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5836.jpg b/src/main/webapp/img/productSingle_middle/5836.jpg new file mode 100644 index 0000000..4e08e79 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5836.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5837.jpg b/src/main/webapp/img/productSingle_middle/5837.jpg new file mode 100644 index 0000000..b9a3eed Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5837.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5838.jpg b/src/main/webapp/img/productSingle_middle/5838.jpg new file mode 100644 index 0000000..8c34926 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5838.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5845.jpg b/src/main/webapp/img/productSingle_middle/5845.jpg new file mode 100644 index 0000000..c99d8f8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5845.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5846.jpg b/src/main/webapp/img/productSingle_middle/5846.jpg new file mode 100644 index 0000000..8f2f2a8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5846.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5847.jpg b/src/main/webapp/img/productSingle_middle/5847.jpg new file mode 100644 index 0000000..2699561 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5847.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5848.jpg b/src/main/webapp/img/productSingle_middle/5848.jpg new file mode 100644 index 0000000..5c52055 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5848.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5855.jpg b/src/main/webapp/img/productSingle_middle/5855.jpg new file mode 100644 index 0000000..58430ee Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5855.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5856.jpg b/src/main/webapp/img/productSingle_middle/5856.jpg new file mode 100644 index 0000000..29f4a76 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5856.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5857.jpg b/src/main/webapp/img/productSingle_middle/5857.jpg new file mode 100644 index 0000000..30f4c54 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5857.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5858.jpg b/src/main/webapp/img/productSingle_middle/5858.jpg new file mode 100644 index 0000000..f3481f4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5858.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5859.jpg b/src/main/webapp/img/productSingle_middle/5859.jpg new file mode 100644 index 0000000..df981f6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5859.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5866.jpg b/src/main/webapp/img/productSingle_middle/5866.jpg new file mode 100644 index 0000000..3adc6f5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5866.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5867.jpg b/src/main/webapp/img/productSingle_middle/5867.jpg new file mode 100644 index 0000000..ce6ab57 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5867.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5868.jpg b/src/main/webapp/img/productSingle_middle/5868.jpg new file mode 100644 index 0000000..a520072 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5868.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5869.jpg b/src/main/webapp/img/productSingle_middle/5869.jpg new file mode 100644 index 0000000..5dff4ff Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5869.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/5870.jpg b/src/main/webapp/img/productSingle_middle/5870.jpg new file mode 100644 index 0000000..13695a9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/5870.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/629.jpg b/src/main/webapp/img/productSingle_middle/629.jpg new file mode 100644 index 0000000..ec9a147 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/629.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/630.jpg b/src/main/webapp/img/productSingle_middle/630.jpg new file mode 100644 index 0000000..5dcdd9c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/630.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/631.jpg b/src/main/webapp/img/productSingle_middle/631.jpg new file mode 100644 index 0000000..60a794c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/631.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/632.jpg b/src/main/webapp/img/productSingle_middle/632.jpg new file mode 100644 index 0000000..4819242 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/632.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/639.jpg b/src/main/webapp/img/productSingle_middle/639.jpg new file mode 100644 index 0000000..7c9b7e6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/639.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/640.jpg b/src/main/webapp/img/productSingle_middle/640.jpg new file mode 100644 index 0000000..99a9825 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/640.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/641.jpg b/src/main/webapp/img/productSingle_middle/641.jpg new file mode 100644 index 0000000..aee0fa2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/641.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/642.jpg b/src/main/webapp/img/productSingle_middle/642.jpg new file mode 100644 index 0000000..d774e12 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/642.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6427.jpg b/src/main/webapp/img/productSingle_middle/6427.jpg new file mode 100644 index 0000000..831def7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6427.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6428.jpg b/src/main/webapp/img/productSingle_middle/6428.jpg new file mode 100644 index 0000000..13788d6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6428.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6429.jpg b/src/main/webapp/img/productSingle_middle/6429.jpg new file mode 100644 index 0000000..743a825 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6429.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/643.jpg b/src/main/webapp/img/productSingle_middle/643.jpg new file mode 100644 index 0000000..905333c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/643.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6430.jpg b/src/main/webapp/img/productSingle_middle/6430.jpg new file mode 100644 index 0000000..15a5b0a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6430.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6431.jpg b/src/main/webapp/img/productSingle_middle/6431.jpg new file mode 100644 index 0000000..e54bb68 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6431.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6438.jpg b/src/main/webapp/img/productSingle_middle/6438.jpg new file mode 100644 index 0000000..dc82a81 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6438.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6439.jpg b/src/main/webapp/img/productSingle_middle/6439.jpg new file mode 100644 index 0000000..0cb8eb4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6439.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6440.jpg b/src/main/webapp/img/productSingle_middle/6440.jpg new file mode 100644 index 0000000..2d57d99 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6440.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6441.jpg b/src/main/webapp/img/productSingle_middle/6441.jpg new file mode 100644 index 0000000..affcd74 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6441.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6442.jpg b/src/main/webapp/img/productSingle_middle/6442.jpg new file mode 100644 index 0000000..65768d3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6442.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6449.jpg b/src/main/webapp/img/productSingle_middle/6449.jpg new file mode 100644 index 0000000..33af273 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6449.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6450.jpg b/src/main/webapp/img/productSingle_middle/6450.jpg new file mode 100644 index 0000000..aff5c7b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6450.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6451.jpg b/src/main/webapp/img/productSingle_middle/6451.jpg new file mode 100644 index 0000000..51c87f9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6451.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6452.jpg b/src/main/webapp/img/productSingle_middle/6452.jpg new file mode 100644 index 0000000..f8aead5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6452.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6453.jpg b/src/main/webapp/img/productSingle_middle/6453.jpg new file mode 100644 index 0000000..5f0085a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6453.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6460.jpg b/src/main/webapp/img/productSingle_middle/6460.jpg new file mode 100644 index 0000000..c75d02b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6460.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6461.jpg b/src/main/webapp/img/productSingle_middle/6461.jpg new file mode 100644 index 0000000..d6f354e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6461.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6462.jpg b/src/main/webapp/img/productSingle_middle/6462.jpg new file mode 100644 index 0000000..72c4d52 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6462.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6463.jpg b/src/main/webapp/img/productSingle_middle/6463.jpg new file mode 100644 index 0000000..4527b8d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6463.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6464.jpg b/src/main/webapp/img/productSingle_middle/6464.jpg new file mode 100644 index 0000000..8acc45e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6464.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6471.jpg b/src/main/webapp/img/productSingle_middle/6471.jpg new file mode 100644 index 0000000..645395a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6471.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6472.jpg b/src/main/webapp/img/productSingle_middle/6472.jpg new file mode 100644 index 0000000..8fa682c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6472.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6473.jpg b/src/main/webapp/img/productSingle_middle/6473.jpg new file mode 100644 index 0000000..ec80a54 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6473.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6474.jpg b/src/main/webapp/img/productSingle_middle/6474.jpg new file mode 100644 index 0000000..91f5d73 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6474.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/6475.jpg b/src/main/webapp/img/productSingle_middle/6475.jpg new file mode 100644 index 0000000..d4e0fe2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/6475.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/650.jpg b/src/main/webapp/img/productSingle_middle/650.jpg new file mode 100644 index 0000000..393b208 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/650.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/651.jpg b/src/main/webapp/img/productSingle_middle/651.jpg new file mode 100644 index 0000000..b68ba40 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/651.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/652.jpg b/src/main/webapp/img/productSingle_middle/652.jpg new file mode 100644 index 0000000..4e0af40 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/652.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/653.jpg b/src/main/webapp/img/productSingle_middle/653.jpg new file mode 100644 index 0000000..5dd3f8b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/653.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/654.jpg b/src/main/webapp/img/productSingle_middle/654.jpg new file mode 100644 index 0000000..b616c34 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/654.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/661.jpg b/src/main/webapp/img/productSingle_middle/661.jpg new file mode 100644 index 0000000..8efedb8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/661.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/662.jpg b/src/main/webapp/img/productSingle_middle/662.jpg new file mode 100644 index 0000000..8efedb8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/662.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/663.jpg b/src/main/webapp/img/productSingle_middle/663.jpg new file mode 100644 index 0000000..9b6d858 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/663.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/664.jpg b/src/main/webapp/img/productSingle_middle/664.jpg new file mode 100644 index 0000000..38241e3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/664.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/665.jpg b/src/main/webapp/img/productSingle_middle/665.jpg new file mode 100644 index 0000000..7c5dafa Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/665.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/672.jpg b/src/main/webapp/img/productSingle_middle/672.jpg new file mode 100644 index 0000000..dff14dd Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/672.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/673.jpg b/src/main/webapp/img/productSingle_middle/673.jpg new file mode 100644 index 0000000..dff14dd Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/673.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/674.jpg b/src/main/webapp/img/productSingle_middle/674.jpg new file mode 100644 index 0000000..0122359 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/674.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/675.jpg b/src/main/webapp/img/productSingle_middle/675.jpg new file mode 100644 index 0000000..813d01c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/675.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/676.jpg b/src/main/webapp/img/productSingle_middle/676.jpg new file mode 100644 index 0000000..5d71095 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/676.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7010.jpg b/src/main/webapp/img/productSingle_middle/7010.jpg new file mode 100644 index 0000000..b1bf0a4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7010.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7011.jpg b/src/main/webapp/img/productSingle_middle/7011.jpg new file mode 100644 index 0000000..3f3ebc3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7011.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7012.jpg b/src/main/webapp/img/productSingle_middle/7012.jpg new file mode 100644 index 0000000..016cb8c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7012.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7013.jpg b/src/main/webapp/img/productSingle_middle/7013.jpg new file mode 100644 index 0000000..8cbb1d7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7013.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7014.jpg b/src/main/webapp/img/productSingle_middle/7014.jpg new file mode 100644 index 0000000..07eb384 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7014.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7021.jpg b/src/main/webapp/img/productSingle_middle/7021.jpg new file mode 100644 index 0000000..c019bde Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7021.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7022.jpg b/src/main/webapp/img/productSingle_middle/7022.jpg new file mode 100644 index 0000000..631c6db Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7022.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7023.jpg b/src/main/webapp/img/productSingle_middle/7023.jpg new file mode 100644 index 0000000..b095e86 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7023.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7024.jpg b/src/main/webapp/img/productSingle_middle/7024.jpg new file mode 100644 index 0000000..0cb33e6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7024.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7025.jpg b/src/main/webapp/img/productSingle_middle/7025.jpg new file mode 100644 index 0000000..ac66970 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7025.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7032.jpg b/src/main/webapp/img/productSingle_middle/7032.jpg new file mode 100644 index 0000000..5b52f1d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7032.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7033.jpg b/src/main/webapp/img/productSingle_middle/7033.jpg new file mode 100644 index 0000000..501bb84 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7033.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7034.jpg b/src/main/webapp/img/productSingle_middle/7034.jpg new file mode 100644 index 0000000..b3d1731 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7034.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7035.jpg b/src/main/webapp/img/productSingle_middle/7035.jpg new file mode 100644 index 0000000..459a944 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7035.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7036.jpg b/src/main/webapp/img/productSingle_middle/7036.jpg new file mode 100644 index 0000000..a80369b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7036.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7043.jpg b/src/main/webapp/img/productSingle_middle/7043.jpg new file mode 100644 index 0000000..3ec8e0a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7043.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7044.jpg b/src/main/webapp/img/productSingle_middle/7044.jpg new file mode 100644 index 0000000..cb485ec Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7044.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7045.jpg b/src/main/webapp/img/productSingle_middle/7045.jpg new file mode 100644 index 0000000..1046983 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7045.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7046.jpg b/src/main/webapp/img/productSingle_middle/7046.jpg new file mode 100644 index 0000000..ec4252a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7046.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7047.jpg b/src/main/webapp/img/productSingle_middle/7047.jpg new file mode 100644 index 0000000..4d2b968 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7047.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7054.jpg b/src/main/webapp/img/productSingle_middle/7054.jpg new file mode 100644 index 0000000..11c1833 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7054.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7055.jpg b/src/main/webapp/img/productSingle_middle/7055.jpg new file mode 100644 index 0000000..20217e9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7055.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7056.jpg b/src/main/webapp/img/productSingle_middle/7056.jpg new file mode 100644 index 0000000..d244334 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7056.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7057.jpg b/src/main/webapp/img/productSingle_middle/7057.jpg new file mode 100644 index 0000000..559cbb4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7057.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7058.jpg b/src/main/webapp/img/productSingle_middle/7058.jpg new file mode 100644 index 0000000..d696977 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7058.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7626.jpg b/src/main/webapp/img/productSingle_middle/7626.jpg new file mode 100644 index 0000000..17eff3b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7626.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7627.jpg b/src/main/webapp/img/productSingle_middle/7627.jpg new file mode 100644 index 0000000..6067702 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7627.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7628.jpg b/src/main/webapp/img/productSingle_middle/7628.jpg new file mode 100644 index 0000000..8bc61e0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7628.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7629.jpg b/src/main/webapp/img/productSingle_middle/7629.jpg new file mode 100644 index 0000000..4bcdf4d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7629.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7630.jpg b/src/main/webapp/img/productSingle_middle/7630.jpg new file mode 100644 index 0000000..ddfb30b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7630.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7637.jpg b/src/main/webapp/img/productSingle_middle/7637.jpg new file mode 100644 index 0000000..624e423 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7637.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7638.jpg b/src/main/webapp/img/productSingle_middle/7638.jpg new file mode 100644 index 0000000..12e2e8c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7638.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7639.jpg b/src/main/webapp/img/productSingle_middle/7639.jpg new file mode 100644 index 0000000..909579a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7639.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7640.jpg b/src/main/webapp/img/productSingle_middle/7640.jpg new file mode 100644 index 0000000..06ff660 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7640.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7641.jpg b/src/main/webapp/img/productSingle_middle/7641.jpg new file mode 100644 index 0000000..4fc70b2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7641.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7648.jpg b/src/main/webapp/img/productSingle_middle/7648.jpg new file mode 100644 index 0000000..a601140 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7648.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7649.jpg b/src/main/webapp/img/productSingle_middle/7649.jpg new file mode 100644 index 0000000..907c014 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7649.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7650.jpg b/src/main/webapp/img/productSingle_middle/7650.jpg new file mode 100644 index 0000000..1a909e9 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7650.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7651.jpg b/src/main/webapp/img/productSingle_middle/7651.jpg new file mode 100644 index 0000000..e446a22 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7651.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7652.jpg b/src/main/webapp/img/productSingle_middle/7652.jpg new file mode 100644 index 0000000..03d311f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7652.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7659.jpg b/src/main/webapp/img/productSingle_middle/7659.jpg new file mode 100644 index 0000000..8b608a6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7659.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7660.jpg b/src/main/webapp/img/productSingle_middle/7660.jpg new file mode 100644 index 0000000..5df7754 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7660.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7661.jpg b/src/main/webapp/img/productSingle_middle/7661.jpg new file mode 100644 index 0000000..21d5172 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7661.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7662.jpg b/src/main/webapp/img/productSingle_middle/7662.jpg new file mode 100644 index 0000000..cf256b4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7662.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7663.jpg b/src/main/webapp/img/productSingle_middle/7663.jpg new file mode 100644 index 0000000..3f502c5 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7663.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7670.jpg b/src/main/webapp/img/productSingle_middle/7670.jpg new file mode 100644 index 0000000..75f0dfc Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7670.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7671.jpg b/src/main/webapp/img/productSingle_middle/7671.jpg new file mode 100644 index 0000000..1c66603 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7671.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7672.jpg b/src/main/webapp/img/productSingle_middle/7672.jpg new file mode 100644 index 0000000..468af2d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7672.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7673.jpg b/src/main/webapp/img/productSingle_middle/7673.jpg new file mode 100644 index 0000000..f4b6e6f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7673.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/7674.jpg b/src/main/webapp/img/productSingle_middle/7674.jpg new file mode 100644 index 0000000..648bc98 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/7674.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8231.jpg b/src/main/webapp/img/productSingle_middle/8231.jpg new file mode 100644 index 0000000..45ff7f2 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8231.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8232.jpg b/src/main/webapp/img/productSingle_middle/8232.jpg new file mode 100644 index 0000000..7cdb0ea Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8232.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8233.jpg b/src/main/webapp/img/productSingle_middle/8233.jpg new file mode 100644 index 0000000..41d346d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8233.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8234.jpg b/src/main/webapp/img/productSingle_middle/8234.jpg new file mode 100644 index 0000000..1a22e11 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8234.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8235.jpg b/src/main/webapp/img/productSingle_middle/8235.jpg new file mode 100644 index 0000000..cc7dd8f Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8235.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8242.jpg b/src/main/webapp/img/productSingle_middle/8242.jpg new file mode 100644 index 0000000..009a32d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8242.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8243.jpg b/src/main/webapp/img/productSingle_middle/8243.jpg new file mode 100644 index 0000000..70db093 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8243.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8244.jpg b/src/main/webapp/img/productSingle_middle/8244.jpg new file mode 100644 index 0000000..1a014d7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8244.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8245.jpg b/src/main/webapp/img/productSingle_middle/8245.jpg new file mode 100644 index 0000000..794f25d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8245.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8246.jpg b/src/main/webapp/img/productSingle_middle/8246.jpg new file mode 100644 index 0000000..9992087 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8246.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8253.jpg b/src/main/webapp/img/productSingle_middle/8253.jpg new file mode 100644 index 0000000..58e3654 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8253.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8254.jpg b/src/main/webapp/img/productSingle_middle/8254.jpg new file mode 100644 index 0000000..58e3654 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8254.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8255.jpg b/src/main/webapp/img/productSingle_middle/8255.jpg new file mode 100644 index 0000000..59a5569 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8255.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8256.jpg b/src/main/webapp/img/productSingle_middle/8256.jpg new file mode 100644 index 0000000..16e61b3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8256.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8257.jpg b/src/main/webapp/img/productSingle_middle/8257.jpg new file mode 100644 index 0000000..6122459 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8257.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8264.jpg b/src/main/webapp/img/productSingle_middle/8264.jpg new file mode 100644 index 0000000..e019979 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8264.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8265.jpg b/src/main/webapp/img/productSingle_middle/8265.jpg new file mode 100644 index 0000000..8a58069 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8265.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8266.jpg b/src/main/webapp/img/productSingle_middle/8266.jpg new file mode 100644 index 0000000..4a4f697 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8266.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8267.jpg b/src/main/webapp/img/productSingle_middle/8267.jpg new file mode 100644 index 0000000..45045e4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8267.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8268.jpg b/src/main/webapp/img/productSingle_middle/8268.jpg new file mode 100644 index 0000000..06d9cf8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8268.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8275.jpg b/src/main/webapp/img/productSingle_middle/8275.jpg new file mode 100644 index 0000000..e40583e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8275.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8276.jpg b/src/main/webapp/img/productSingle_middle/8276.jpg new file mode 100644 index 0000000..b20695a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8276.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8277.jpg b/src/main/webapp/img/productSingle_middle/8277.jpg new file mode 100644 index 0000000..32ae123 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8277.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8278.jpg b/src/main/webapp/img/productSingle_middle/8278.jpg new file mode 100644 index 0000000..bebe254 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8278.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8279.jpg b/src/main/webapp/img/productSingle_middle/8279.jpg new file mode 100644 index 0000000..23bf4e8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8279.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8891.jpg b/src/main/webapp/img/productSingle_middle/8891.jpg new file mode 100644 index 0000000..a7403bb Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8891.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8892.jpg b/src/main/webapp/img/productSingle_middle/8892.jpg new file mode 100644 index 0000000..0332a03 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8892.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8893.jpg b/src/main/webapp/img/productSingle_middle/8893.jpg new file mode 100644 index 0000000..549615e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8893.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8894.jpg b/src/main/webapp/img/productSingle_middle/8894.jpg new file mode 100644 index 0000000..c4f616a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8894.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8895.jpg b/src/main/webapp/img/productSingle_middle/8895.jpg new file mode 100644 index 0000000..14c9f9d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8895.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8902.jpg b/src/main/webapp/img/productSingle_middle/8902.jpg new file mode 100644 index 0000000..7edc917 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8902.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8903.jpg b/src/main/webapp/img/productSingle_middle/8903.jpg new file mode 100644 index 0000000..d7e5eaf Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8903.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8904.jpg b/src/main/webapp/img/productSingle_middle/8904.jpg new file mode 100644 index 0000000..bc0958e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8904.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8905.jpg b/src/main/webapp/img/productSingle_middle/8905.jpg new file mode 100644 index 0000000..ac71f12 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8905.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8906.jpg b/src/main/webapp/img/productSingle_middle/8906.jpg new file mode 100644 index 0000000..bd25133 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8906.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8913.jpg b/src/main/webapp/img/productSingle_middle/8913.jpg new file mode 100644 index 0000000..c35cc6e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8913.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8914.jpg b/src/main/webapp/img/productSingle_middle/8914.jpg new file mode 100644 index 0000000..c237c5e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8914.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8915.jpg b/src/main/webapp/img/productSingle_middle/8915.jpg new file mode 100644 index 0000000..91c520a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8915.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8916.jpg b/src/main/webapp/img/productSingle_middle/8916.jpg new file mode 100644 index 0000000..d113043 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8916.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8917.jpg b/src/main/webapp/img/productSingle_middle/8917.jpg new file mode 100644 index 0000000..424c147 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8917.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8924.jpg b/src/main/webapp/img/productSingle_middle/8924.jpg new file mode 100644 index 0000000..6994e60 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8924.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8925.jpg b/src/main/webapp/img/productSingle_middle/8925.jpg new file mode 100644 index 0000000..4d06ac7 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8925.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8926.jpg b/src/main/webapp/img/productSingle_middle/8926.jpg new file mode 100644 index 0000000..8131305 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8926.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8927.jpg b/src/main/webapp/img/productSingle_middle/8927.jpg new file mode 100644 index 0000000..4c02f5b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8927.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8928.jpg b/src/main/webapp/img/productSingle_middle/8928.jpg new file mode 100644 index 0000000..47a323d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8928.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8935.jpg b/src/main/webapp/img/productSingle_middle/8935.jpg new file mode 100644 index 0000000..091639d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8935.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8936.jpg b/src/main/webapp/img/productSingle_middle/8936.jpg new file mode 100644 index 0000000..792a534 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8936.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8937.jpg b/src/main/webapp/img/productSingle_middle/8937.jpg new file mode 100644 index 0000000..7ab10dd Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8937.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8938.jpg b/src/main/webapp/img/productSingle_middle/8938.jpg new file mode 100644 index 0000000..a46941c Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8938.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/8939.jpg b/src/main/webapp/img/productSingle_middle/8939.jpg new file mode 100644 index 0000000..94bbe6a Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/8939.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9495.jpg b/src/main/webapp/img/productSingle_middle/9495.jpg new file mode 100644 index 0000000..2b02a51 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9495.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9496.jpg b/src/main/webapp/img/productSingle_middle/9496.jpg new file mode 100644 index 0000000..0438231 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9496.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9497.jpg b/src/main/webapp/img/productSingle_middle/9497.jpg new file mode 100644 index 0000000..17d9646 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9497.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9498.jpg b/src/main/webapp/img/productSingle_middle/9498.jpg new file mode 100644 index 0000000..6b2f434 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9498.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9499.jpg b/src/main/webapp/img/productSingle_middle/9499.jpg new file mode 100644 index 0000000..ca81e97 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9499.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9506.jpg b/src/main/webapp/img/productSingle_middle/9506.jpg new file mode 100644 index 0000000..173f8a4 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9506.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9507.jpg b/src/main/webapp/img/productSingle_middle/9507.jpg new file mode 100644 index 0000000..e442b54 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9507.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9508.jpg b/src/main/webapp/img/productSingle_middle/9508.jpg new file mode 100644 index 0000000..71431fc Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9508.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9509.jpg b/src/main/webapp/img/productSingle_middle/9509.jpg new file mode 100644 index 0000000..d8232a3 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9509.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9510.jpg b/src/main/webapp/img/productSingle_middle/9510.jpg new file mode 100644 index 0000000..7bcc534 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9510.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9517.jpg b/src/main/webapp/img/productSingle_middle/9517.jpg new file mode 100644 index 0000000..9cc0643 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9517.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9518.jpg b/src/main/webapp/img/productSingle_middle/9518.jpg new file mode 100644 index 0000000..437b9da Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9518.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9519.jpg b/src/main/webapp/img/productSingle_middle/9519.jpg new file mode 100644 index 0000000..39eebb0 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9519.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9520.jpg b/src/main/webapp/img/productSingle_middle/9520.jpg new file mode 100644 index 0000000..52907d1 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9520.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9521.jpg b/src/main/webapp/img/productSingle_middle/9521.jpg new file mode 100644 index 0000000..a32400d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9521.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9528.jpg b/src/main/webapp/img/productSingle_middle/9528.jpg new file mode 100644 index 0000000..1e4772d Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9528.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9529.jpg b/src/main/webapp/img/productSingle_middle/9529.jpg new file mode 100644 index 0000000..5754a21 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9529.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9530.jpg b/src/main/webapp/img/productSingle_middle/9530.jpg new file mode 100644 index 0000000..28f079e Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9530.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9531.jpg b/src/main/webapp/img/productSingle_middle/9531.jpg new file mode 100644 index 0000000..333bfb8 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9531.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9532.jpg b/src/main/webapp/img/productSingle_middle/9532.jpg new file mode 100644 index 0000000..9f4be08 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9532.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9539.jpg b/src/main/webapp/img/productSingle_middle/9539.jpg new file mode 100644 index 0000000..376ff7b Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9539.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9540.jpg b/src/main/webapp/img/productSingle_middle/9540.jpg new file mode 100644 index 0000000..e433938 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9540.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9541.jpg b/src/main/webapp/img/productSingle_middle/9541.jpg new file mode 100644 index 0000000..26b06d6 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9541.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9542.jpg b/src/main/webapp/img/productSingle_middle/9542.jpg new file mode 100644 index 0000000..bef6c42 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9542.jpg differ diff --git a/src/main/webapp/img/productSingle_middle/9543.jpg b/src/main/webapp/img/productSingle_middle/9543.jpg new file mode 100644 index 0000000..c2c4f64 Binary files /dev/null and b/src/main/webapp/img/productSingle_middle/9543.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10144.jpg b/src/main/webapp/img/productSingle_small/10144.jpg new file mode 100644 index 0000000..0bf30a3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10144.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10145.jpg b/src/main/webapp/img/productSingle_small/10145.jpg new file mode 100644 index 0000000..0bf30a3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10145.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10146.jpg b/src/main/webapp/img/productSingle_small/10146.jpg new file mode 100644 index 0000000..8d16adb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10146.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10147.jpg b/src/main/webapp/img/productSingle_small/10147.jpg new file mode 100644 index 0000000..d512033 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10147.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10148.jpg b/src/main/webapp/img/productSingle_small/10148.jpg new file mode 100644 index 0000000..fb457db Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10148.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10155.jpg b/src/main/webapp/img/productSingle_small/10155.jpg new file mode 100644 index 0000000..5346900 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10155.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10156.jpg b/src/main/webapp/img/productSingle_small/10156.jpg new file mode 100644 index 0000000..5346900 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10156.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10157.jpg b/src/main/webapp/img/productSingle_small/10157.jpg new file mode 100644 index 0000000..7040f5b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10157.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10158.jpg b/src/main/webapp/img/productSingle_small/10158.jpg new file mode 100644 index 0000000..1a2642b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10158.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10159.jpg b/src/main/webapp/img/productSingle_small/10159.jpg new file mode 100644 index 0000000..7562066 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10159.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10166.jpg b/src/main/webapp/img/productSingle_small/10166.jpg new file mode 100644 index 0000000..7d4c27b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10166.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10167.jpg b/src/main/webapp/img/productSingle_small/10167.jpg new file mode 100644 index 0000000..d70e935 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10167.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10168.jpg b/src/main/webapp/img/productSingle_small/10168.jpg new file mode 100644 index 0000000..1ddbc54 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10168.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10169.jpg b/src/main/webapp/img/productSingle_small/10169.jpg new file mode 100644 index 0000000..23319f6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10169.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10170.jpg b/src/main/webapp/img/productSingle_small/10170.jpg new file mode 100644 index 0000000..3ae27ba Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10170.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10177.jpg b/src/main/webapp/img/productSingle_small/10177.jpg new file mode 100644 index 0000000..c4d8376 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10177.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10178.jpg b/src/main/webapp/img/productSingle_small/10178.jpg new file mode 100644 index 0000000..99bc130 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10178.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10179.jpg b/src/main/webapp/img/productSingle_small/10179.jpg new file mode 100644 index 0000000..ee78b7d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10179.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10180.jpg b/src/main/webapp/img/productSingle_small/10180.jpg new file mode 100644 index 0000000..3f521c3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10180.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10181.jpg b/src/main/webapp/img/productSingle_small/10181.jpg new file mode 100644 index 0000000..ac738f9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10181.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10188.jpg b/src/main/webapp/img/productSingle_small/10188.jpg new file mode 100644 index 0000000..e542cc8 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10188.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10189.jpg b/src/main/webapp/img/productSingle_small/10189.jpg new file mode 100644 index 0000000..cc7718b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10189.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10190.jpg b/src/main/webapp/img/productSingle_small/10190.jpg new file mode 100644 index 0000000..d05af4f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10190.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10191.jpg b/src/main/webapp/img/productSingle_small/10191.jpg new file mode 100644 index 0000000..54a1fe7 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10191.jpg differ diff --git a/src/main/webapp/img/productSingle_small/10192.jpg b/src/main/webapp/img/productSingle_small/10192.jpg new file mode 100644 index 0000000..9429fe3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/10192.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1276.jpg b/src/main/webapp/img/productSingle_small/1276.jpg new file mode 100644 index 0000000..17a9db1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1276.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1277.jpg b/src/main/webapp/img/productSingle_small/1277.jpg new file mode 100644 index 0000000..d6a925d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1277.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1278.jpg b/src/main/webapp/img/productSingle_small/1278.jpg new file mode 100644 index 0000000..37e3540 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1278.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1279.jpg b/src/main/webapp/img/productSingle_small/1279.jpg new file mode 100644 index 0000000..8d3fe33 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1279.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1280.jpg b/src/main/webapp/img/productSingle_small/1280.jpg new file mode 100644 index 0000000..74f73fc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1280.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1287.jpg b/src/main/webapp/img/productSingle_small/1287.jpg new file mode 100644 index 0000000..4ddb225 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1287.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1288.jpg b/src/main/webapp/img/productSingle_small/1288.jpg new file mode 100644 index 0000000..4ddb225 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1288.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1289.jpg b/src/main/webapp/img/productSingle_small/1289.jpg new file mode 100644 index 0000000..d115761 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1289.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1290.jpg b/src/main/webapp/img/productSingle_small/1290.jpg new file mode 100644 index 0000000..81bd1e2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1290.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1291.jpg b/src/main/webapp/img/productSingle_small/1291.jpg new file mode 100644 index 0000000..92d8663 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1291.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1298.jpg b/src/main/webapp/img/productSingle_small/1298.jpg new file mode 100644 index 0000000..1766d12 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1298.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1299.jpg b/src/main/webapp/img/productSingle_small/1299.jpg new file mode 100644 index 0000000..1766d12 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1299.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1300.jpg b/src/main/webapp/img/productSingle_small/1300.jpg new file mode 100644 index 0000000..94eeee9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1300.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1301.jpg b/src/main/webapp/img/productSingle_small/1301.jpg new file mode 100644 index 0000000..34e6c0a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1301.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1302.jpg b/src/main/webapp/img/productSingle_small/1302.jpg new file mode 100644 index 0000000..03cd3ce Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1302.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1309.jpg b/src/main/webapp/img/productSingle_small/1309.jpg new file mode 100644 index 0000000..8b39a98 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1309.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1310.jpg b/src/main/webapp/img/productSingle_small/1310.jpg new file mode 100644 index 0000000..655e640 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1310.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1311.jpg b/src/main/webapp/img/productSingle_small/1311.jpg new file mode 100644 index 0000000..0886416 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1311.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1312.jpg b/src/main/webapp/img/productSingle_small/1312.jpg new file mode 100644 index 0000000..eb76ced Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1312.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1313.jpg b/src/main/webapp/img/productSingle_small/1313.jpg new file mode 100644 index 0000000..6c4b4e2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1313.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1320.jpg b/src/main/webapp/img/productSingle_small/1320.jpg new file mode 100644 index 0000000..d62af6a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1320.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1321.jpg b/src/main/webapp/img/productSingle_small/1321.jpg new file mode 100644 index 0000000..d62af6a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1321.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1322.jpg b/src/main/webapp/img/productSingle_small/1322.jpg new file mode 100644 index 0000000..b87839a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1322.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1323.jpg b/src/main/webapp/img/productSingle_small/1323.jpg new file mode 100644 index 0000000..859f8bb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1323.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1324.jpg b/src/main/webapp/img/productSingle_small/1324.jpg new file mode 100644 index 0000000..4b33606 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1324.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1880.jpg b/src/main/webapp/img/productSingle_small/1880.jpg new file mode 100644 index 0000000..c14c547 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1880.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1881.jpg b/src/main/webapp/img/productSingle_small/1881.jpg new file mode 100644 index 0000000..e8cc091 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1881.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1882.jpg b/src/main/webapp/img/productSingle_small/1882.jpg new file mode 100644 index 0000000..7d21bda Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1882.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1883.jpg b/src/main/webapp/img/productSingle_small/1883.jpg new file mode 100644 index 0000000..50fa9ee Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1883.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1884.jpg b/src/main/webapp/img/productSingle_small/1884.jpg new file mode 100644 index 0000000..1b1612c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1884.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1891.jpg b/src/main/webapp/img/productSingle_small/1891.jpg new file mode 100644 index 0000000..5f0988c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1891.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1892.jpg b/src/main/webapp/img/productSingle_small/1892.jpg new file mode 100644 index 0000000..90d1a01 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1892.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1893.jpg b/src/main/webapp/img/productSingle_small/1893.jpg new file mode 100644 index 0000000..a61a713 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1893.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1894.jpg b/src/main/webapp/img/productSingle_small/1894.jpg new file mode 100644 index 0000000..1469ee0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1894.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1895.jpg b/src/main/webapp/img/productSingle_small/1895.jpg new file mode 100644 index 0000000..052ecc1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1895.jpg differ diff --git a/src/main/webapp/img/productSingle_small/19.jpg b/src/main/webapp/img/productSingle_small/19.jpg new file mode 100644 index 0000000..dec6a04 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/19.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1902.jpg b/src/main/webapp/img/productSingle_small/1902.jpg new file mode 100644 index 0000000..783c4c2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1902.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1903.jpg b/src/main/webapp/img/productSingle_small/1903.jpg new file mode 100644 index 0000000..cb68ada Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1903.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1904.jpg b/src/main/webapp/img/productSingle_small/1904.jpg new file mode 100644 index 0000000..411bda4 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1904.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1905.jpg b/src/main/webapp/img/productSingle_small/1905.jpg new file mode 100644 index 0000000..15f2ecf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1905.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1906.jpg b/src/main/webapp/img/productSingle_small/1906.jpg new file mode 100644 index 0000000..18f4e20 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1906.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1913.jpg b/src/main/webapp/img/productSingle_small/1913.jpg new file mode 100644 index 0000000..9727063 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1913.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1914.jpg b/src/main/webapp/img/productSingle_small/1914.jpg new file mode 100644 index 0000000..de7ff25 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1914.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1915.jpg b/src/main/webapp/img/productSingle_small/1915.jpg new file mode 100644 index 0000000..d1f18ab Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1915.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1916.jpg b/src/main/webapp/img/productSingle_small/1916.jpg new file mode 100644 index 0000000..546f734 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1916.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1917.jpg b/src/main/webapp/img/productSingle_small/1917.jpg new file mode 100644 index 0000000..4a9299c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1917.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1924.jpg b/src/main/webapp/img/productSingle_small/1924.jpg new file mode 100644 index 0000000..5bd5e0f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1924.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1925.jpg b/src/main/webapp/img/productSingle_small/1925.jpg new file mode 100644 index 0000000..98a7a17 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1925.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1926.jpg b/src/main/webapp/img/productSingle_small/1926.jpg new file mode 100644 index 0000000..2f24f0e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1926.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1927.jpg b/src/main/webapp/img/productSingle_small/1927.jpg new file mode 100644 index 0000000..c885291 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1927.jpg differ diff --git a/src/main/webapp/img/productSingle_small/1928.jpg b/src/main/webapp/img/productSingle_small/1928.jpg new file mode 100644 index 0000000..0a67d5a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/1928.jpg differ diff --git a/src/main/webapp/img/productSingle_small/21.jpg b/src/main/webapp/img/productSingle_small/21.jpg new file mode 100644 index 0000000..303293a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/21.jpg differ diff --git a/src/main/webapp/img/productSingle_small/22.jpg b/src/main/webapp/img/productSingle_small/22.jpg new file mode 100644 index 0000000..475cf50 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/22.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2533.jpg b/src/main/webapp/img/productSingle_small/2533.jpg new file mode 100644 index 0000000..61f487a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2533.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2534.jpg b/src/main/webapp/img/productSingle_small/2534.jpg new file mode 100644 index 0000000..fc4a713 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2534.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2535.jpg b/src/main/webapp/img/productSingle_small/2535.jpg new file mode 100644 index 0000000..9826127 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2535.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2536.jpg b/src/main/webapp/img/productSingle_small/2536.jpg new file mode 100644 index 0000000..4d11d7a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2536.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2537.jpg b/src/main/webapp/img/productSingle_small/2537.jpg new file mode 100644 index 0000000..adafcaa Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2537.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2544.jpg b/src/main/webapp/img/productSingle_small/2544.jpg new file mode 100644 index 0000000..722416c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2544.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2545.jpg b/src/main/webapp/img/productSingle_small/2545.jpg new file mode 100644 index 0000000..2e8c767 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2545.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2546.jpg b/src/main/webapp/img/productSingle_small/2546.jpg new file mode 100644 index 0000000..f6700e0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2546.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2547.jpg b/src/main/webapp/img/productSingle_small/2547.jpg new file mode 100644 index 0000000..387c97a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2547.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2548.jpg b/src/main/webapp/img/productSingle_small/2548.jpg new file mode 100644 index 0000000..bd4b19a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2548.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2555.jpg b/src/main/webapp/img/productSingle_small/2555.jpg new file mode 100644 index 0000000..3217173 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2555.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2556.jpg b/src/main/webapp/img/productSingle_small/2556.jpg new file mode 100644 index 0000000..b99caa7 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2556.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2557.jpg b/src/main/webapp/img/productSingle_small/2557.jpg new file mode 100644 index 0000000..dbcf9dc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2557.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2558.jpg b/src/main/webapp/img/productSingle_small/2558.jpg new file mode 100644 index 0000000..d4741ae Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2558.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2559.jpg b/src/main/webapp/img/productSingle_small/2559.jpg new file mode 100644 index 0000000..fff5b2d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2559.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2566.jpg b/src/main/webapp/img/productSingle_small/2566.jpg new file mode 100644 index 0000000..64af128 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2566.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2567.jpg b/src/main/webapp/img/productSingle_small/2567.jpg new file mode 100644 index 0000000..85d5085 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2567.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2568.jpg b/src/main/webapp/img/productSingle_small/2568.jpg new file mode 100644 index 0000000..66379b3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2568.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2569.jpg b/src/main/webapp/img/productSingle_small/2569.jpg new file mode 100644 index 0000000..9979e8d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2569.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2570.jpg b/src/main/webapp/img/productSingle_small/2570.jpg new file mode 100644 index 0000000..893418a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2570.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2577.jpg b/src/main/webapp/img/productSingle_small/2577.jpg new file mode 100644 index 0000000..3bd1949 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2577.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2578.jpg b/src/main/webapp/img/productSingle_small/2578.jpg new file mode 100644 index 0000000..94db3a9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2578.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2579.jpg b/src/main/webapp/img/productSingle_small/2579.jpg new file mode 100644 index 0000000..500b623 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2579.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2580.jpg b/src/main/webapp/img/productSingle_small/2580.jpg new file mode 100644 index 0000000..38e1efc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2580.jpg differ diff --git a/src/main/webapp/img/productSingle_small/2581.jpg b/src/main/webapp/img/productSingle_small/2581.jpg new file mode 100644 index 0000000..47ece67 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/2581.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3134.jpg b/src/main/webapp/img/productSingle_small/3134.jpg new file mode 100644 index 0000000..b5cfc12 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3134.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3135.jpg b/src/main/webapp/img/productSingle_small/3135.jpg new file mode 100644 index 0000000..64a49ef Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3135.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3136.jpg b/src/main/webapp/img/productSingle_small/3136.jpg new file mode 100644 index 0000000..1f70fcf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3136.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3137.jpg b/src/main/webapp/img/productSingle_small/3137.jpg new file mode 100644 index 0000000..d630570 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3137.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3138.jpg b/src/main/webapp/img/productSingle_small/3138.jpg new file mode 100644 index 0000000..a87eafe Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3138.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3145.jpg b/src/main/webapp/img/productSingle_small/3145.jpg new file mode 100644 index 0000000..b0c0f49 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3145.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3146.jpg b/src/main/webapp/img/productSingle_small/3146.jpg new file mode 100644 index 0000000..0c52d94 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3146.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3147.jpg b/src/main/webapp/img/productSingle_small/3147.jpg new file mode 100644 index 0000000..cfa8e4f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3147.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3148.jpg b/src/main/webapp/img/productSingle_small/3148.jpg new file mode 100644 index 0000000..5240a65 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3148.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3149.jpg b/src/main/webapp/img/productSingle_small/3149.jpg new file mode 100644 index 0000000..c4e1dc8 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3149.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3156.jpg b/src/main/webapp/img/productSingle_small/3156.jpg new file mode 100644 index 0000000..164d863 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3156.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3157.jpg b/src/main/webapp/img/productSingle_small/3157.jpg new file mode 100644 index 0000000..460fa27 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3157.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3158.jpg b/src/main/webapp/img/productSingle_small/3158.jpg new file mode 100644 index 0000000..eb11d74 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3158.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3159.jpg b/src/main/webapp/img/productSingle_small/3159.jpg new file mode 100644 index 0000000..3928c80 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3159.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3160.jpg b/src/main/webapp/img/productSingle_small/3160.jpg new file mode 100644 index 0000000..676b8c5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3160.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3167.jpg b/src/main/webapp/img/productSingle_small/3167.jpg new file mode 100644 index 0000000..e5ab3fe Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3167.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3168.jpg b/src/main/webapp/img/productSingle_small/3168.jpg new file mode 100644 index 0000000..40244e8 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3168.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3169.jpg b/src/main/webapp/img/productSingle_small/3169.jpg new file mode 100644 index 0000000..3c2df28 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3169.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3170.jpg b/src/main/webapp/img/productSingle_small/3170.jpg new file mode 100644 index 0000000..6225469 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3170.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3171.jpg b/src/main/webapp/img/productSingle_small/3171.jpg new file mode 100644 index 0000000..615201e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3171.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3178.jpg b/src/main/webapp/img/productSingle_small/3178.jpg new file mode 100644 index 0000000..db29dbd Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3178.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3179.jpg b/src/main/webapp/img/productSingle_small/3179.jpg new file mode 100644 index 0000000..ab13627 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3179.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3180.jpg b/src/main/webapp/img/productSingle_small/3180.jpg new file mode 100644 index 0000000..4312e03 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3180.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3181.jpg b/src/main/webapp/img/productSingle_small/3181.jpg new file mode 100644 index 0000000..4623aa0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3181.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3182.jpg b/src/main/webapp/img/productSingle_small/3182.jpg new file mode 100644 index 0000000..a3b0d62 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3182.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3748.jpg b/src/main/webapp/img/productSingle_small/3748.jpg new file mode 100644 index 0000000..4266cda Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3748.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3749.jpg b/src/main/webapp/img/productSingle_small/3749.jpg new file mode 100644 index 0000000..d261c5c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3749.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3750.jpg b/src/main/webapp/img/productSingle_small/3750.jpg new file mode 100644 index 0000000..f748702 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3750.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3751.jpg b/src/main/webapp/img/productSingle_small/3751.jpg new file mode 100644 index 0000000..57ba908 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3751.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3752.jpg b/src/main/webapp/img/productSingle_small/3752.jpg new file mode 100644 index 0000000..89ed37b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3752.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3759.jpg b/src/main/webapp/img/productSingle_small/3759.jpg new file mode 100644 index 0000000..ce1b09c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3759.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3760.jpg b/src/main/webapp/img/productSingle_small/3760.jpg new file mode 100644 index 0000000..d8c4b29 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3760.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3761.jpg b/src/main/webapp/img/productSingle_small/3761.jpg new file mode 100644 index 0000000..664d285 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3761.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3762.jpg b/src/main/webapp/img/productSingle_small/3762.jpg new file mode 100644 index 0000000..75d8095 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3762.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3763.jpg b/src/main/webapp/img/productSingle_small/3763.jpg new file mode 100644 index 0000000..b2c74d9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3763.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3770.jpg b/src/main/webapp/img/productSingle_small/3770.jpg new file mode 100644 index 0000000..0e5f9ef Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3770.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3771.jpg b/src/main/webapp/img/productSingle_small/3771.jpg new file mode 100644 index 0000000..abdca4a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3771.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3772.jpg b/src/main/webapp/img/productSingle_small/3772.jpg new file mode 100644 index 0000000..d014202 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3772.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3773.jpg b/src/main/webapp/img/productSingle_small/3773.jpg new file mode 100644 index 0000000..83a68ae Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3773.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3774.jpg b/src/main/webapp/img/productSingle_small/3774.jpg new file mode 100644 index 0000000..f33922b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3774.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3781.jpg b/src/main/webapp/img/productSingle_small/3781.jpg new file mode 100644 index 0000000..838b0c0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3781.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3782.jpg b/src/main/webapp/img/productSingle_small/3782.jpg new file mode 100644 index 0000000..668971d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3782.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3783.jpg b/src/main/webapp/img/productSingle_small/3783.jpg new file mode 100644 index 0000000..10b7adc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3783.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3784.jpg b/src/main/webapp/img/productSingle_small/3784.jpg new file mode 100644 index 0000000..5e40bd5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3784.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3785.jpg b/src/main/webapp/img/productSingle_small/3785.jpg new file mode 100644 index 0000000..af2b8ee Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3785.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3792.jpg b/src/main/webapp/img/productSingle_small/3792.jpg new file mode 100644 index 0000000..8275c5d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3792.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3793.jpg b/src/main/webapp/img/productSingle_small/3793.jpg new file mode 100644 index 0000000..e4f2e16 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3793.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3794.jpg b/src/main/webapp/img/productSingle_small/3794.jpg new file mode 100644 index 0000000..16d26e0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3794.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3795.jpg b/src/main/webapp/img/productSingle_small/3795.jpg new file mode 100644 index 0000000..f19c9fb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3795.jpg differ diff --git a/src/main/webapp/img/productSingle_small/3796.jpg b/src/main/webapp/img/productSingle_small/3796.jpg new file mode 100644 index 0000000..b3399eb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/3796.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4354.jpg b/src/main/webapp/img/productSingle_small/4354.jpg new file mode 100644 index 0000000..18a2269 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4354.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4355.jpg b/src/main/webapp/img/productSingle_small/4355.jpg new file mode 100644 index 0000000..18a2269 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4355.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4356.jpg b/src/main/webapp/img/productSingle_small/4356.jpg new file mode 100644 index 0000000..938e9c6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4356.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4357.jpg b/src/main/webapp/img/productSingle_small/4357.jpg new file mode 100644 index 0000000..5bfcb37 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4357.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4358.jpg b/src/main/webapp/img/productSingle_small/4358.jpg new file mode 100644 index 0000000..c59c44a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4358.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4365.jpg b/src/main/webapp/img/productSingle_small/4365.jpg new file mode 100644 index 0000000..60da66d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4365.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4366.jpg b/src/main/webapp/img/productSingle_small/4366.jpg new file mode 100644 index 0000000..0b2e46a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4366.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4367.jpg b/src/main/webapp/img/productSingle_small/4367.jpg new file mode 100644 index 0000000..6b0c0a0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4367.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4368.jpg b/src/main/webapp/img/productSingle_small/4368.jpg new file mode 100644 index 0000000..c2d3f45 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4368.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4369.jpg b/src/main/webapp/img/productSingle_small/4369.jpg new file mode 100644 index 0000000..6600ea3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4369.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4376.jpg b/src/main/webapp/img/productSingle_small/4376.jpg new file mode 100644 index 0000000..4a92665 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4376.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4377.jpg b/src/main/webapp/img/productSingle_small/4377.jpg new file mode 100644 index 0000000..63f586e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4377.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4378.jpg b/src/main/webapp/img/productSingle_small/4378.jpg new file mode 100644 index 0000000..849ceac Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4378.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4379.jpg b/src/main/webapp/img/productSingle_small/4379.jpg new file mode 100644 index 0000000..6b37c57 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4379.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4380.jpg b/src/main/webapp/img/productSingle_small/4380.jpg new file mode 100644 index 0000000..debba58 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4380.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4387.jpg b/src/main/webapp/img/productSingle_small/4387.jpg new file mode 100644 index 0000000..6f72407 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4387.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4388.jpg b/src/main/webapp/img/productSingle_small/4388.jpg new file mode 100644 index 0000000..5edacca Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4388.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4389.jpg b/src/main/webapp/img/productSingle_small/4389.jpg new file mode 100644 index 0000000..72b4808 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4389.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4390.jpg b/src/main/webapp/img/productSingle_small/4390.jpg new file mode 100644 index 0000000..9f4b87a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4390.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4397.jpg b/src/main/webapp/img/productSingle_small/4397.jpg new file mode 100644 index 0000000..05bd442 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4397.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4398.jpg b/src/main/webapp/img/productSingle_small/4398.jpg new file mode 100644 index 0000000..cf590ca Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4398.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4399.jpg b/src/main/webapp/img/productSingle_small/4399.jpg new file mode 100644 index 0000000..2e6d32b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4399.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4400.jpg b/src/main/webapp/img/productSingle_small/4400.jpg new file mode 100644 index 0000000..edade00 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4400.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4401.jpg b/src/main/webapp/img/productSingle_small/4401.jpg new file mode 100644 index 0000000..45404fc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4401.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4573.jpg b/src/main/webapp/img/productSingle_small/4573.jpg new file mode 100644 index 0000000..61c57d6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4573.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4574.jpg b/src/main/webapp/img/productSingle_small/4574.jpg new file mode 100644 index 0000000..e02a07c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4574.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4575.jpg b/src/main/webapp/img/productSingle_small/4575.jpg new file mode 100644 index 0000000..4dedf82 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4575.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4576.jpg b/src/main/webapp/img/productSingle_small/4576.jpg new file mode 100644 index 0000000..6adefc4 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4576.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4583.jpg b/src/main/webapp/img/productSingle_small/4583.jpg new file mode 100644 index 0000000..12b4c84 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4583.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4584.jpg b/src/main/webapp/img/productSingle_small/4584.jpg new file mode 100644 index 0000000..b4acf66 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4584.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4585.jpg b/src/main/webapp/img/productSingle_small/4585.jpg new file mode 100644 index 0000000..b9504a6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4585.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4586.jpg b/src/main/webapp/img/productSingle_small/4586.jpg new file mode 100644 index 0000000..aadb756 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4586.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4587.jpg b/src/main/webapp/img/productSingle_small/4587.jpg new file mode 100644 index 0000000..2c2fbc9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4587.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4594.jpg b/src/main/webapp/img/productSingle_small/4594.jpg new file mode 100644 index 0000000..743b10d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4594.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4595.jpg b/src/main/webapp/img/productSingle_small/4595.jpg new file mode 100644 index 0000000..1969780 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4595.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4596.jpg b/src/main/webapp/img/productSingle_small/4596.jpg new file mode 100644 index 0000000..3fc4bdc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4596.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4597.jpg b/src/main/webapp/img/productSingle_small/4597.jpg new file mode 100644 index 0000000..46ae366 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4597.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4598.jpg b/src/main/webapp/img/productSingle_small/4598.jpg new file mode 100644 index 0000000..743b10d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4598.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4605.jpg b/src/main/webapp/img/productSingle_small/4605.jpg new file mode 100644 index 0000000..0c77a56 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4605.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4606.jpg b/src/main/webapp/img/productSingle_small/4606.jpg new file mode 100644 index 0000000..1e7e692 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4606.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4607.jpg b/src/main/webapp/img/productSingle_small/4607.jpg new file mode 100644 index 0000000..74e5ba1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4607.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4608.jpg b/src/main/webapp/img/productSingle_small/4608.jpg new file mode 100644 index 0000000..ff6aad2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4608.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4615.jpg b/src/main/webapp/img/productSingle_small/4615.jpg new file mode 100644 index 0000000..aeebfdb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4615.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4616.jpg b/src/main/webapp/img/productSingle_small/4616.jpg new file mode 100644 index 0000000..6b1e539 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4616.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4617.jpg b/src/main/webapp/img/productSingle_small/4617.jpg new file mode 100644 index 0000000..94cdeb3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4617.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4618.jpg b/src/main/webapp/img/productSingle_small/4618.jpg new file mode 100644 index 0000000..b0a9ca1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4618.jpg differ diff --git a/src/main/webapp/img/productSingle_small/4619.jpg b/src/main/webapp/img/productSingle_small/4619.jpg new file mode 100644 index 0000000..e1b4678 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/4619.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5208.jpg b/src/main/webapp/img/productSingle_small/5208.jpg new file mode 100644 index 0000000..6d80bbf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5208.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5209.jpg b/src/main/webapp/img/productSingle_small/5209.jpg new file mode 100644 index 0000000..2dcc2e0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5209.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5210.jpg b/src/main/webapp/img/productSingle_small/5210.jpg new file mode 100644 index 0000000..c46482b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5210.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5211.jpg b/src/main/webapp/img/productSingle_small/5211.jpg new file mode 100644 index 0000000..84816af Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5211.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5218.jpg b/src/main/webapp/img/productSingle_small/5218.jpg new file mode 100644 index 0000000..ce12138 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5218.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5219.jpg b/src/main/webapp/img/productSingle_small/5219.jpg new file mode 100644 index 0000000..747f502 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5219.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5220.jpg b/src/main/webapp/img/productSingle_small/5220.jpg new file mode 100644 index 0000000..2277c83 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5220.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5221.jpg b/src/main/webapp/img/productSingle_small/5221.jpg new file mode 100644 index 0000000..d9270cf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5221.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5222.jpg b/src/main/webapp/img/productSingle_small/5222.jpg new file mode 100644 index 0000000..8d9fa7a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5222.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5229.jpg b/src/main/webapp/img/productSingle_small/5229.jpg new file mode 100644 index 0000000..9983079 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5229.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5230.jpg b/src/main/webapp/img/productSingle_small/5230.jpg new file mode 100644 index 0000000..444a28f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5230.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5231.jpg b/src/main/webapp/img/productSingle_small/5231.jpg new file mode 100644 index 0000000..d5c8899 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5231.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5232.jpg b/src/main/webapp/img/productSingle_small/5232.jpg new file mode 100644 index 0000000..e275c9f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5232.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5233.jpg b/src/main/webapp/img/productSingle_small/5233.jpg new file mode 100644 index 0000000..a404247 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5233.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5240.jpg b/src/main/webapp/img/productSingle_small/5240.jpg new file mode 100644 index 0000000..88ed46f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5240.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5241.jpg b/src/main/webapp/img/productSingle_small/5241.jpg new file mode 100644 index 0000000..2e07f10 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5241.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5242.jpg b/src/main/webapp/img/productSingle_small/5242.jpg new file mode 100644 index 0000000..c1ebf67 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5242.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5243.jpg b/src/main/webapp/img/productSingle_small/5243.jpg new file mode 100644 index 0000000..01fd064 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5243.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5244.jpg b/src/main/webapp/img/productSingle_small/5244.jpg new file mode 100644 index 0000000..030f2b5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5244.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5251.jpg b/src/main/webapp/img/productSingle_small/5251.jpg new file mode 100644 index 0000000..27d53db Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5251.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5252.jpg b/src/main/webapp/img/productSingle_small/5252.jpg new file mode 100644 index 0000000..cf02cf8 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5252.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5253.jpg b/src/main/webapp/img/productSingle_small/5253.jpg new file mode 100644 index 0000000..da83a30 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5253.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5254.jpg b/src/main/webapp/img/productSingle_small/5254.jpg new file mode 100644 index 0000000..534f879 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5254.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5255.jpg b/src/main/webapp/img/productSingle_small/5255.jpg new file mode 100644 index 0000000..030f2b5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5255.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5823.jpg b/src/main/webapp/img/productSingle_small/5823.jpg new file mode 100644 index 0000000..036de34 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5823.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5824.jpg b/src/main/webapp/img/productSingle_small/5824.jpg new file mode 100644 index 0000000..70167f6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5824.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5825.jpg b/src/main/webapp/img/productSingle_small/5825.jpg new file mode 100644 index 0000000..ce0b74e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5825.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5826.jpg b/src/main/webapp/img/productSingle_small/5826.jpg new file mode 100644 index 0000000..068da24 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5826.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5827.jpg b/src/main/webapp/img/productSingle_small/5827.jpg new file mode 100644 index 0000000..5077dfa Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5827.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5834.jpg b/src/main/webapp/img/productSingle_small/5834.jpg new file mode 100644 index 0000000..83f4087 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5834.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5835.jpg b/src/main/webapp/img/productSingle_small/5835.jpg new file mode 100644 index 0000000..387ef02 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5835.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5836.jpg b/src/main/webapp/img/productSingle_small/5836.jpg new file mode 100644 index 0000000..61efb89 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5836.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5837.jpg b/src/main/webapp/img/productSingle_small/5837.jpg new file mode 100644 index 0000000..a972488 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5837.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5838.jpg b/src/main/webapp/img/productSingle_small/5838.jpg new file mode 100644 index 0000000..7ba5731 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5838.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5845.jpg b/src/main/webapp/img/productSingle_small/5845.jpg new file mode 100644 index 0000000..3cd5437 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5845.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5846.jpg b/src/main/webapp/img/productSingle_small/5846.jpg new file mode 100644 index 0000000..e54488b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5846.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5847.jpg b/src/main/webapp/img/productSingle_small/5847.jpg new file mode 100644 index 0000000..fd231a5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5847.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5848.jpg b/src/main/webapp/img/productSingle_small/5848.jpg new file mode 100644 index 0000000..c1e7f06 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5848.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5855.jpg b/src/main/webapp/img/productSingle_small/5855.jpg new file mode 100644 index 0000000..5df4b9e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5855.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5856.jpg b/src/main/webapp/img/productSingle_small/5856.jpg new file mode 100644 index 0000000..0b55b3b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5856.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5857.jpg b/src/main/webapp/img/productSingle_small/5857.jpg new file mode 100644 index 0000000..8652dd9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5857.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5858.jpg b/src/main/webapp/img/productSingle_small/5858.jpg new file mode 100644 index 0000000..9a6b48c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5858.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5859.jpg b/src/main/webapp/img/productSingle_small/5859.jpg new file mode 100644 index 0000000..4421c34 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5859.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5866.jpg b/src/main/webapp/img/productSingle_small/5866.jpg new file mode 100644 index 0000000..e64d6f9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5866.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5867.jpg b/src/main/webapp/img/productSingle_small/5867.jpg new file mode 100644 index 0000000..d24a769 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5867.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5868.jpg b/src/main/webapp/img/productSingle_small/5868.jpg new file mode 100644 index 0000000..00b833f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5868.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5869.jpg b/src/main/webapp/img/productSingle_small/5869.jpg new file mode 100644 index 0000000..476f63b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5869.jpg differ diff --git a/src/main/webapp/img/productSingle_small/5870.jpg b/src/main/webapp/img/productSingle_small/5870.jpg new file mode 100644 index 0000000..b22daea Binary files /dev/null and b/src/main/webapp/img/productSingle_small/5870.jpg differ diff --git a/src/main/webapp/img/productSingle_small/629.jpg b/src/main/webapp/img/productSingle_small/629.jpg new file mode 100644 index 0000000..37b1054 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/629.jpg differ diff --git a/src/main/webapp/img/productSingle_small/630.jpg b/src/main/webapp/img/productSingle_small/630.jpg new file mode 100644 index 0000000..5dc3bc7 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/630.jpg differ diff --git a/src/main/webapp/img/productSingle_small/631.jpg b/src/main/webapp/img/productSingle_small/631.jpg new file mode 100644 index 0000000..30f080f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/631.jpg differ diff --git a/src/main/webapp/img/productSingle_small/632.jpg b/src/main/webapp/img/productSingle_small/632.jpg new file mode 100644 index 0000000..13f9d8f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/632.jpg differ diff --git a/src/main/webapp/img/productSingle_small/639.jpg b/src/main/webapp/img/productSingle_small/639.jpg new file mode 100644 index 0000000..6559737 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/639.jpg differ diff --git a/src/main/webapp/img/productSingle_small/640.jpg b/src/main/webapp/img/productSingle_small/640.jpg new file mode 100644 index 0000000..5e4bebb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/640.jpg differ diff --git a/src/main/webapp/img/productSingle_small/641.jpg b/src/main/webapp/img/productSingle_small/641.jpg new file mode 100644 index 0000000..fc950bf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/641.jpg differ diff --git a/src/main/webapp/img/productSingle_small/642.jpg b/src/main/webapp/img/productSingle_small/642.jpg new file mode 100644 index 0000000..07567d7 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/642.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6427.jpg b/src/main/webapp/img/productSingle_small/6427.jpg new file mode 100644 index 0000000..63572b9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6427.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6428.jpg b/src/main/webapp/img/productSingle_small/6428.jpg new file mode 100644 index 0000000..4f5f37a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6428.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6429.jpg b/src/main/webapp/img/productSingle_small/6429.jpg new file mode 100644 index 0000000..da6e761 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6429.jpg differ diff --git a/src/main/webapp/img/productSingle_small/643.jpg b/src/main/webapp/img/productSingle_small/643.jpg new file mode 100644 index 0000000..5a0a558 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/643.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6430.jpg b/src/main/webapp/img/productSingle_small/6430.jpg new file mode 100644 index 0000000..51c0ce1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6430.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6431.jpg b/src/main/webapp/img/productSingle_small/6431.jpg new file mode 100644 index 0000000..cfd801d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6431.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6438.jpg b/src/main/webapp/img/productSingle_small/6438.jpg new file mode 100644 index 0000000..3642d31 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6438.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6439.jpg b/src/main/webapp/img/productSingle_small/6439.jpg new file mode 100644 index 0000000..ade7062 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6439.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6440.jpg b/src/main/webapp/img/productSingle_small/6440.jpg new file mode 100644 index 0000000..956b8c0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6440.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6441.jpg b/src/main/webapp/img/productSingle_small/6441.jpg new file mode 100644 index 0000000..4f83a6f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6441.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6442.jpg b/src/main/webapp/img/productSingle_small/6442.jpg new file mode 100644 index 0000000..7bd4f3a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6442.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6449.jpg b/src/main/webapp/img/productSingle_small/6449.jpg new file mode 100644 index 0000000..4c6027e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6449.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6450.jpg b/src/main/webapp/img/productSingle_small/6450.jpg new file mode 100644 index 0000000..b0f3328 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6450.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6451.jpg b/src/main/webapp/img/productSingle_small/6451.jpg new file mode 100644 index 0000000..a099fcd Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6451.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6452.jpg b/src/main/webapp/img/productSingle_small/6452.jpg new file mode 100644 index 0000000..308b630 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6452.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6453.jpg b/src/main/webapp/img/productSingle_small/6453.jpg new file mode 100644 index 0000000..7a9b7d5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6453.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6460.jpg b/src/main/webapp/img/productSingle_small/6460.jpg new file mode 100644 index 0000000..a04d8c0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6460.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6461.jpg b/src/main/webapp/img/productSingle_small/6461.jpg new file mode 100644 index 0000000..bdd658f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6461.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6462.jpg b/src/main/webapp/img/productSingle_small/6462.jpg new file mode 100644 index 0000000..0aaf9da Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6462.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6463.jpg b/src/main/webapp/img/productSingle_small/6463.jpg new file mode 100644 index 0000000..9893a81 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6463.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6464.jpg b/src/main/webapp/img/productSingle_small/6464.jpg new file mode 100644 index 0000000..62c2613 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6464.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6471.jpg b/src/main/webapp/img/productSingle_small/6471.jpg new file mode 100644 index 0000000..b824168 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6471.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6472.jpg b/src/main/webapp/img/productSingle_small/6472.jpg new file mode 100644 index 0000000..7236a0c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6472.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6473.jpg b/src/main/webapp/img/productSingle_small/6473.jpg new file mode 100644 index 0000000..8121823 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6473.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6474.jpg b/src/main/webapp/img/productSingle_small/6474.jpg new file mode 100644 index 0000000..cb11bd8 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6474.jpg differ diff --git a/src/main/webapp/img/productSingle_small/6475.jpg b/src/main/webapp/img/productSingle_small/6475.jpg new file mode 100644 index 0000000..f023bb0 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/6475.jpg differ diff --git a/src/main/webapp/img/productSingle_small/650.jpg b/src/main/webapp/img/productSingle_small/650.jpg new file mode 100644 index 0000000..55902ac Binary files /dev/null and b/src/main/webapp/img/productSingle_small/650.jpg differ diff --git a/src/main/webapp/img/productSingle_small/651.jpg b/src/main/webapp/img/productSingle_small/651.jpg new file mode 100644 index 0000000..c1505a3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/651.jpg differ diff --git a/src/main/webapp/img/productSingle_small/652.jpg b/src/main/webapp/img/productSingle_small/652.jpg new file mode 100644 index 0000000..bcbc98c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/652.jpg differ diff --git a/src/main/webapp/img/productSingle_small/653.jpg b/src/main/webapp/img/productSingle_small/653.jpg new file mode 100644 index 0000000..0853e11 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/653.jpg differ diff --git a/src/main/webapp/img/productSingle_small/654.jpg b/src/main/webapp/img/productSingle_small/654.jpg new file mode 100644 index 0000000..2b7d541 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/654.jpg differ diff --git a/src/main/webapp/img/productSingle_small/661.jpg b/src/main/webapp/img/productSingle_small/661.jpg new file mode 100644 index 0000000..b51c084 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/661.jpg differ diff --git a/src/main/webapp/img/productSingle_small/662.jpg b/src/main/webapp/img/productSingle_small/662.jpg new file mode 100644 index 0000000..b51c084 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/662.jpg differ diff --git a/src/main/webapp/img/productSingle_small/663.jpg b/src/main/webapp/img/productSingle_small/663.jpg new file mode 100644 index 0000000..a8eb78f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/663.jpg differ diff --git a/src/main/webapp/img/productSingle_small/664.jpg b/src/main/webapp/img/productSingle_small/664.jpg new file mode 100644 index 0000000..e545db1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/664.jpg differ diff --git a/src/main/webapp/img/productSingle_small/665.jpg b/src/main/webapp/img/productSingle_small/665.jpg new file mode 100644 index 0000000..10b01e7 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/665.jpg differ diff --git a/src/main/webapp/img/productSingle_small/672.jpg b/src/main/webapp/img/productSingle_small/672.jpg new file mode 100644 index 0000000..09f7647 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/672.jpg differ diff --git a/src/main/webapp/img/productSingle_small/673.jpg b/src/main/webapp/img/productSingle_small/673.jpg new file mode 100644 index 0000000..09f7647 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/673.jpg differ diff --git a/src/main/webapp/img/productSingle_small/674.jpg b/src/main/webapp/img/productSingle_small/674.jpg new file mode 100644 index 0000000..8490dd5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/674.jpg differ diff --git a/src/main/webapp/img/productSingle_small/675.jpg b/src/main/webapp/img/productSingle_small/675.jpg new file mode 100644 index 0000000..67a8c8c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/675.jpg differ diff --git a/src/main/webapp/img/productSingle_small/676.jpg b/src/main/webapp/img/productSingle_small/676.jpg new file mode 100644 index 0000000..98a0c56 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/676.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7010.jpg b/src/main/webapp/img/productSingle_small/7010.jpg new file mode 100644 index 0000000..f5a989a Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7010.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7011.jpg b/src/main/webapp/img/productSingle_small/7011.jpg new file mode 100644 index 0000000..9b84230 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7011.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7012.jpg b/src/main/webapp/img/productSingle_small/7012.jpg new file mode 100644 index 0000000..aa975f9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7012.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7013.jpg b/src/main/webapp/img/productSingle_small/7013.jpg new file mode 100644 index 0000000..86e1c7d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7013.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7014.jpg b/src/main/webapp/img/productSingle_small/7014.jpg new file mode 100644 index 0000000..991e9d4 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7014.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7021.jpg b/src/main/webapp/img/productSingle_small/7021.jpg new file mode 100644 index 0000000..c812ca5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7021.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7022.jpg b/src/main/webapp/img/productSingle_small/7022.jpg new file mode 100644 index 0000000..11304dc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7022.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7023.jpg b/src/main/webapp/img/productSingle_small/7023.jpg new file mode 100644 index 0000000..dbf569c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7023.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7024.jpg b/src/main/webapp/img/productSingle_small/7024.jpg new file mode 100644 index 0000000..71e6f40 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7024.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7025.jpg b/src/main/webapp/img/productSingle_small/7025.jpg new file mode 100644 index 0000000..6deaaec Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7025.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7032.jpg b/src/main/webapp/img/productSingle_small/7032.jpg new file mode 100644 index 0000000..1618ae1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7032.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7033.jpg b/src/main/webapp/img/productSingle_small/7033.jpg new file mode 100644 index 0000000..96af209 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7033.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7034.jpg b/src/main/webapp/img/productSingle_small/7034.jpg new file mode 100644 index 0000000..dfcb2be Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7034.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7035.jpg b/src/main/webapp/img/productSingle_small/7035.jpg new file mode 100644 index 0000000..a7033bb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7035.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7036.jpg b/src/main/webapp/img/productSingle_small/7036.jpg new file mode 100644 index 0000000..aaf9988 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7036.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7043.jpg b/src/main/webapp/img/productSingle_small/7043.jpg new file mode 100644 index 0000000..842ef4d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7043.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7044.jpg b/src/main/webapp/img/productSingle_small/7044.jpg new file mode 100644 index 0000000..00666b6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7044.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7045.jpg b/src/main/webapp/img/productSingle_small/7045.jpg new file mode 100644 index 0000000..0da115e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7045.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7046.jpg b/src/main/webapp/img/productSingle_small/7046.jpg new file mode 100644 index 0000000..81a840b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7046.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7047.jpg b/src/main/webapp/img/productSingle_small/7047.jpg new file mode 100644 index 0000000..a5578e2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7047.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7054.jpg b/src/main/webapp/img/productSingle_small/7054.jpg new file mode 100644 index 0000000..61ee010 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7054.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7055.jpg b/src/main/webapp/img/productSingle_small/7055.jpg new file mode 100644 index 0000000..13cf8ae Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7055.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7056.jpg b/src/main/webapp/img/productSingle_small/7056.jpg new file mode 100644 index 0000000..8f7e114 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7056.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7057.jpg b/src/main/webapp/img/productSingle_small/7057.jpg new file mode 100644 index 0000000..882ab31 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7057.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7058.jpg b/src/main/webapp/img/productSingle_small/7058.jpg new file mode 100644 index 0000000..0f16ba9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7058.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7626.jpg b/src/main/webapp/img/productSingle_small/7626.jpg new file mode 100644 index 0000000..59342d2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7626.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7627.jpg b/src/main/webapp/img/productSingle_small/7627.jpg new file mode 100644 index 0000000..5893568 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7627.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7628.jpg b/src/main/webapp/img/productSingle_small/7628.jpg new file mode 100644 index 0000000..b46e6f1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7628.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7629.jpg b/src/main/webapp/img/productSingle_small/7629.jpg new file mode 100644 index 0000000..ed076c6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7629.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7630.jpg b/src/main/webapp/img/productSingle_small/7630.jpg new file mode 100644 index 0000000..ee387cb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7630.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7637.jpg b/src/main/webapp/img/productSingle_small/7637.jpg new file mode 100644 index 0000000..c7abf3b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7637.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7638.jpg b/src/main/webapp/img/productSingle_small/7638.jpg new file mode 100644 index 0000000..ba57834 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7638.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7639.jpg b/src/main/webapp/img/productSingle_small/7639.jpg new file mode 100644 index 0000000..1a78f6f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7639.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7640.jpg b/src/main/webapp/img/productSingle_small/7640.jpg new file mode 100644 index 0000000..d54002b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7640.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7641.jpg b/src/main/webapp/img/productSingle_small/7641.jpg new file mode 100644 index 0000000..de621ae Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7641.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7648.jpg b/src/main/webapp/img/productSingle_small/7648.jpg new file mode 100644 index 0000000..d10fdc8 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7648.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7649.jpg b/src/main/webapp/img/productSingle_small/7649.jpg new file mode 100644 index 0000000..8196e35 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7649.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7650.jpg b/src/main/webapp/img/productSingle_small/7650.jpg new file mode 100644 index 0000000..85b4707 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7650.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7651.jpg b/src/main/webapp/img/productSingle_small/7651.jpg new file mode 100644 index 0000000..76065f8 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7651.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7652.jpg b/src/main/webapp/img/productSingle_small/7652.jpg new file mode 100644 index 0000000..1686a86 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7652.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7659.jpg b/src/main/webapp/img/productSingle_small/7659.jpg new file mode 100644 index 0000000..5847bab Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7659.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7660.jpg b/src/main/webapp/img/productSingle_small/7660.jpg new file mode 100644 index 0000000..e836d41 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7660.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7661.jpg b/src/main/webapp/img/productSingle_small/7661.jpg new file mode 100644 index 0000000..116e0c2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7661.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7662.jpg b/src/main/webapp/img/productSingle_small/7662.jpg new file mode 100644 index 0000000..6922c27 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7662.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7663.jpg b/src/main/webapp/img/productSingle_small/7663.jpg new file mode 100644 index 0000000..348a2bf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7663.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7670.jpg b/src/main/webapp/img/productSingle_small/7670.jpg new file mode 100644 index 0000000..8e0b13b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7670.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7671.jpg b/src/main/webapp/img/productSingle_small/7671.jpg new file mode 100644 index 0000000..7f4ac19 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7671.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7672.jpg b/src/main/webapp/img/productSingle_small/7672.jpg new file mode 100644 index 0000000..924e287 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7672.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7673.jpg b/src/main/webapp/img/productSingle_small/7673.jpg new file mode 100644 index 0000000..142d003 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7673.jpg differ diff --git a/src/main/webapp/img/productSingle_small/7674.jpg b/src/main/webapp/img/productSingle_small/7674.jpg new file mode 100644 index 0000000..ebc8905 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/7674.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8231.jpg b/src/main/webapp/img/productSingle_small/8231.jpg new file mode 100644 index 0000000..a859c5d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8231.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8232.jpg b/src/main/webapp/img/productSingle_small/8232.jpg new file mode 100644 index 0000000..b298220 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8232.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8233.jpg b/src/main/webapp/img/productSingle_small/8233.jpg new file mode 100644 index 0000000..868b423 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8233.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8234.jpg b/src/main/webapp/img/productSingle_small/8234.jpg new file mode 100644 index 0000000..0d33618 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8234.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8235.jpg b/src/main/webapp/img/productSingle_small/8235.jpg new file mode 100644 index 0000000..515f2a1 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8235.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8242.jpg b/src/main/webapp/img/productSingle_small/8242.jpg new file mode 100644 index 0000000..b77cc29 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8242.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8243.jpg b/src/main/webapp/img/productSingle_small/8243.jpg new file mode 100644 index 0000000..b187653 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8243.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8244.jpg b/src/main/webapp/img/productSingle_small/8244.jpg new file mode 100644 index 0000000..d36bc68 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8244.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8245.jpg b/src/main/webapp/img/productSingle_small/8245.jpg new file mode 100644 index 0000000..39e6301 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8245.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8246.jpg b/src/main/webapp/img/productSingle_small/8246.jpg new file mode 100644 index 0000000..7ab157c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8246.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8253.jpg b/src/main/webapp/img/productSingle_small/8253.jpg new file mode 100644 index 0000000..5dffc72 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8253.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8254.jpg b/src/main/webapp/img/productSingle_small/8254.jpg new file mode 100644 index 0000000..5dffc72 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8254.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8255.jpg b/src/main/webapp/img/productSingle_small/8255.jpg new file mode 100644 index 0000000..9e80e1c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8255.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8256.jpg b/src/main/webapp/img/productSingle_small/8256.jpg new file mode 100644 index 0000000..a08b01b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8256.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8257.jpg b/src/main/webapp/img/productSingle_small/8257.jpg new file mode 100644 index 0000000..e06d80e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8257.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8264.jpg b/src/main/webapp/img/productSingle_small/8264.jpg new file mode 100644 index 0000000..cfcc81e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8264.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8265.jpg b/src/main/webapp/img/productSingle_small/8265.jpg new file mode 100644 index 0000000..55f8fa9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8265.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8266.jpg b/src/main/webapp/img/productSingle_small/8266.jpg new file mode 100644 index 0000000..1158cfb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8266.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8267.jpg b/src/main/webapp/img/productSingle_small/8267.jpg new file mode 100644 index 0000000..5bc6942 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8267.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8268.jpg b/src/main/webapp/img/productSingle_small/8268.jpg new file mode 100644 index 0000000..767a948 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8268.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8275.jpg b/src/main/webapp/img/productSingle_small/8275.jpg new file mode 100644 index 0000000..d15019e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8275.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8276.jpg b/src/main/webapp/img/productSingle_small/8276.jpg new file mode 100644 index 0000000..013128b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8276.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8277.jpg b/src/main/webapp/img/productSingle_small/8277.jpg new file mode 100644 index 0000000..2fd0cc4 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8277.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8278.jpg b/src/main/webapp/img/productSingle_small/8278.jpg new file mode 100644 index 0000000..e3622d9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8278.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8279.jpg b/src/main/webapp/img/productSingle_small/8279.jpg new file mode 100644 index 0000000..6d4533f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8279.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8891.jpg b/src/main/webapp/img/productSingle_small/8891.jpg new file mode 100644 index 0000000..5a4bf84 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8891.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8892.jpg b/src/main/webapp/img/productSingle_small/8892.jpg new file mode 100644 index 0000000..7da7e4f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8892.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8893.jpg b/src/main/webapp/img/productSingle_small/8893.jpg new file mode 100644 index 0000000..65e45d3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8893.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8894.jpg b/src/main/webapp/img/productSingle_small/8894.jpg new file mode 100644 index 0000000..4385134 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8894.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8895.jpg b/src/main/webapp/img/productSingle_small/8895.jpg new file mode 100644 index 0000000..0a31b77 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8895.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8902.jpg b/src/main/webapp/img/productSingle_small/8902.jpg new file mode 100644 index 0000000..a5f0b92 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8902.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8903.jpg b/src/main/webapp/img/productSingle_small/8903.jpg new file mode 100644 index 0000000..c642388 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8903.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8904.jpg b/src/main/webapp/img/productSingle_small/8904.jpg new file mode 100644 index 0000000..64b4b9c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8904.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8905.jpg b/src/main/webapp/img/productSingle_small/8905.jpg new file mode 100644 index 0000000..6b9a37f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8905.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8906.jpg b/src/main/webapp/img/productSingle_small/8906.jpg new file mode 100644 index 0000000..2aa7753 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8906.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8913.jpg b/src/main/webapp/img/productSingle_small/8913.jpg new file mode 100644 index 0000000..1b04eb9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8913.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8914.jpg b/src/main/webapp/img/productSingle_small/8914.jpg new file mode 100644 index 0000000..7d42eb3 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8914.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8915.jpg b/src/main/webapp/img/productSingle_small/8915.jpg new file mode 100644 index 0000000..71e9373 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8915.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8916.jpg b/src/main/webapp/img/productSingle_small/8916.jpg new file mode 100644 index 0000000..09c3be5 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8916.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8917.jpg b/src/main/webapp/img/productSingle_small/8917.jpg new file mode 100644 index 0000000..e145886 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8917.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8924.jpg b/src/main/webapp/img/productSingle_small/8924.jpg new file mode 100644 index 0000000..8cda0ae Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8924.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8925.jpg b/src/main/webapp/img/productSingle_small/8925.jpg new file mode 100644 index 0000000..9084813 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8925.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8926.jpg b/src/main/webapp/img/productSingle_small/8926.jpg new file mode 100644 index 0000000..b5713cf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8926.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8927.jpg b/src/main/webapp/img/productSingle_small/8927.jpg new file mode 100644 index 0000000..5090258 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8927.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8928.jpg b/src/main/webapp/img/productSingle_small/8928.jpg new file mode 100644 index 0000000..e20f524 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8928.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8935.jpg b/src/main/webapp/img/productSingle_small/8935.jpg new file mode 100644 index 0000000..230c20e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8935.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8936.jpg b/src/main/webapp/img/productSingle_small/8936.jpg new file mode 100644 index 0000000..9cfbefc Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8936.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8937.jpg b/src/main/webapp/img/productSingle_small/8937.jpg new file mode 100644 index 0000000..8b783ab Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8937.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8938.jpg b/src/main/webapp/img/productSingle_small/8938.jpg new file mode 100644 index 0000000..1b40dab Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8938.jpg differ diff --git a/src/main/webapp/img/productSingle_small/8939.jpg b/src/main/webapp/img/productSingle_small/8939.jpg new file mode 100644 index 0000000..22fcfcd Binary files /dev/null and b/src/main/webapp/img/productSingle_small/8939.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9495.jpg b/src/main/webapp/img/productSingle_small/9495.jpg new file mode 100644 index 0000000..b13a58b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9495.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9496.jpg b/src/main/webapp/img/productSingle_small/9496.jpg new file mode 100644 index 0000000..9d5c107 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9496.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9497.jpg b/src/main/webapp/img/productSingle_small/9497.jpg new file mode 100644 index 0000000..68f73b7 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9497.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9498.jpg b/src/main/webapp/img/productSingle_small/9498.jpg new file mode 100644 index 0000000..1baaa36 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9498.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9499.jpg b/src/main/webapp/img/productSingle_small/9499.jpg new file mode 100644 index 0000000..2a0456e Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9499.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9506.jpg b/src/main/webapp/img/productSingle_small/9506.jpg new file mode 100644 index 0000000..9a0fdbf Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9506.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9507.jpg b/src/main/webapp/img/productSingle_small/9507.jpg new file mode 100644 index 0000000..37249b9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9507.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9508.jpg b/src/main/webapp/img/productSingle_small/9508.jpg new file mode 100644 index 0000000..cf036f6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9508.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9509.jpg b/src/main/webapp/img/productSingle_small/9509.jpg new file mode 100644 index 0000000..fc0a6af Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9509.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9510.jpg b/src/main/webapp/img/productSingle_small/9510.jpg new file mode 100644 index 0000000..a428ceb Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9510.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9517.jpg b/src/main/webapp/img/productSingle_small/9517.jpg new file mode 100644 index 0000000..e50cb84 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9517.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9518.jpg b/src/main/webapp/img/productSingle_small/9518.jpg new file mode 100644 index 0000000..e7ce1c9 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9518.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9519.jpg b/src/main/webapp/img/productSingle_small/9519.jpg new file mode 100644 index 0000000..4bc1ad6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9519.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9520.jpg b/src/main/webapp/img/productSingle_small/9520.jpg new file mode 100644 index 0000000..2bed27b Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9520.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9521.jpg b/src/main/webapp/img/productSingle_small/9521.jpg new file mode 100644 index 0000000..cc26a50 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9521.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9528.jpg b/src/main/webapp/img/productSingle_small/9528.jpg new file mode 100644 index 0000000..b2618d2 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9528.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9529.jpg b/src/main/webapp/img/productSingle_small/9529.jpg new file mode 100644 index 0000000..b80d793 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9529.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9530.jpg b/src/main/webapp/img/productSingle_small/9530.jpg new file mode 100644 index 0000000..ecdbe30 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9530.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9531.jpg b/src/main/webapp/img/productSingle_small/9531.jpg new file mode 100644 index 0000000..40afd2d Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9531.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9532.jpg b/src/main/webapp/img/productSingle_small/9532.jpg new file mode 100644 index 0000000..e964386 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9532.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9539.jpg b/src/main/webapp/img/productSingle_small/9539.jpg new file mode 100644 index 0000000..ca51371 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9539.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9540.jpg b/src/main/webapp/img/productSingle_small/9540.jpg new file mode 100644 index 0000000..6a725da Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9540.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9541.jpg b/src/main/webapp/img/productSingle_small/9541.jpg new file mode 100644 index 0000000..57fac9f Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9541.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9542.jpg b/src/main/webapp/img/productSingle_small/9542.jpg new file mode 100644 index 0000000..ae69c8c Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9542.jpg differ diff --git a/src/main/webapp/img/productSingle_small/9543.jpg b/src/main/webapp/img/productSingle_small/9543.jpg new file mode 100644 index 0000000..d4339d6 Binary files /dev/null and b/src/main/webapp/img/productSingle_small/9543.jpg differ diff --git a/src/main/webapp/img/site/7day.png b/src/main/webapp/img/site/7day.png new file mode 100644 index 0000000..098e51e Binary files /dev/null and b/src/main/webapp/img/site/7day.png differ diff --git a/src/main/webapp/img/site/TB1LF0CKFXXXXcAXFXXXXXXXXXX-21-20.png b/src/main/webapp/img/site/TB1LF0CKFXXXXcAXFXXXXXXXXXX-21-20.png new file mode 100644 index 0000000..8cd5fdc Binary files /dev/null and b/src/main/webapp/img/site/TB1LF0CKFXXXXcAXFXXXXXXXXXX-21-20.png differ diff --git a/src/main/webapp/img/site/alipay.png b/src/main/webapp/img/site/alipay.png new file mode 100644 index 0000000..b6d3fa3 Binary files /dev/null and b/src/main/webapp/img/site/alipay.png differ diff --git a/src/main/webapp/img/site/alipay2wei.png b/src/main/webapp/img/site/alipay2wei.png new file mode 100644 index 0000000..5fbacf1 Binary files /dev/null and b/src/main/webapp/img/site/alipay2wei.png differ diff --git a/src/main/webapp/img/site/buyflow.png b/src/main/webapp/img/site/buyflow.png new file mode 100644 index 0000000..becbc2b Binary files /dev/null and b/src/main/webapp/img/site/buyflow.png differ diff --git a/src/main/webapp/img/site/canvas.png b/src/main/webapp/img/site/canvas.png new file mode 100644 index 0000000..a3d3b2b Binary files /dev/null and b/src/main/webapp/img/site/canvas.png differ diff --git a/src/main/webapp/img/site/cartNotSelected.png b/src/main/webapp/img/site/cartNotSelected.png new file mode 100644 index 0000000..b0aa56a Binary files /dev/null and b/src/main/webapp/img/site/cartNotSelected.png differ diff --git a/src/main/webapp/img/site/cartSelected.png b/src/main/webapp/img/site/cartSelected.png new file mode 100644 index 0000000..b7647cd Binary files /dev/null and b/src/main/webapp/img/site/cartSelected.png differ diff --git a/src/main/webapp/img/site/catear.png b/src/main/webapp/img/site/catear.png new file mode 100644 index 0000000..6ef8b34 Binary files /dev/null and b/src/main/webapp/img/site/catear.png differ diff --git a/src/main/webapp/img/site/cateye.png b/src/main/webapp/img/site/cateye.png new file mode 100644 index 0000000..4522191 Binary files /dev/null and b/src/main/webapp/img/site/cateye.png differ diff --git a/src/main/webapp/img/site/chaoshi.png b/src/main/webapp/img/site/chaoshi.png new file mode 100644 index 0000000..3b83995 Binary files /dev/null and b/src/main/webapp/img/site/chaoshi.png differ diff --git a/src/main/webapp/img/site/comformPayFlow.png b/src/main/webapp/img/site/comformPayFlow.png new file mode 100644 index 0000000..33221a9 Binary files /dev/null and b/src/main/webapp/img/site/comformPayFlow.png differ diff --git a/src/main/webapp/img/site/confirmOrderTmall.png b/src/main/webapp/img/site/confirmOrderTmall.png new file mode 100644 index 0000000..07c7280 Binary files /dev/null and b/src/main/webapp/img/site/confirmOrderTmall.png differ diff --git a/src/main/webapp/img/site/copyRight1.jpg b/src/main/webapp/img/site/copyRight1.jpg new file mode 100644 index 0000000..185cca9 Binary files /dev/null and b/src/main/webapp/img/site/copyRight1.jpg differ diff --git a/src/main/webapp/img/site/copyRight2.jpg b/src/main/webapp/img/site/copyRight2.jpg new file mode 100644 index 0000000..1ecd0ca Binary files /dev/null and b/src/main/webapp/img/site/copyRight2.jpg differ diff --git a/src/main/webapp/img/site/creditcard.png b/src/main/webapp/img/site/creditcard.png new file mode 100644 index 0000000..c4787a5 Binary files /dev/null and b/src/main/webapp/img/site/creditcard.png differ diff --git a/src/main/webapp/img/site/decrease.png b/src/main/webapp/img/site/decrease.png new file mode 100644 index 0000000..bb6fe21 Binary files /dev/null and b/src/main/webapp/img/site/decrease.png differ diff --git a/src/main/webapp/img/site/eachcategory.png b/src/main/webapp/img/site/eachcategory.png new file mode 100644 index 0000000..019c131 Binary files /dev/null and b/src/main/webapp/img/site/eachcategory.png differ diff --git a/src/main/webapp/img/site/end.png b/src/main/webapp/img/site/end.png new file mode 100644 index 0000000..c676321 Binary files /dev/null and b/src/main/webapp/img/site/end.png differ diff --git a/src/main/webapp/img/site/ensure.png b/src/main/webapp/img/site/ensure.png new file mode 100644 index 0000000..e5efe77 Binary files /dev/null and b/src/main/webapp/img/site/ensure.png differ diff --git a/src/main/webapp/img/site/gouwujuan.png b/src/main/webapp/img/site/gouwujuan.png new file mode 100644 index 0000000..c9744d5 Binary files /dev/null and b/src/main/webapp/img/site/gouwujuan.png differ diff --git a/src/main/webapp/img/site/guoji.png b/src/main/webapp/img/site/guoji.png new file mode 100644 index 0000000..5f74209 Binary files /dev/null and b/src/main/webapp/img/site/guoji.png differ diff --git a/src/main/webapp/img/site/increase.png b/src/main/webapp/img/site/increase.png new file mode 100644 index 0000000..52fc85a Binary files /dev/null and b/src/main/webapp/img/site/increase.png differ diff --git a/src/main/webapp/img/site/leaveMessage.png b/src/main/webapp/img/site/leaveMessage.png new file mode 100644 index 0000000..78ecef0 Binary files /dev/null and b/src/main/webapp/img/site/leaveMessage.png differ diff --git a/src/main/webapp/img/site/li_dot.png b/src/main/webapp/img/site/li_dot.png new file mode 100644 index 0000000..1ead2eb Binary files /dev/null and b/src/main/webapp/img/site/li_dot.png differ diff --git a/src/main/webapp/img/site/loginBackground.png b/src/main/webapp/img/site/loginBackground.png new file mode 100644 index 0000000..2024d4c Binary files /dev/null and b/src/main/webapp/img/site/loginBackground.png differ diff --git a/src/main/webapp/img/site/logo.gif b/src/main/webapp/img/site/logo.gif new file mode 100644 index 0000000..f01f42e Binary files /dev/null and b/src/main/webapp/img/site/logo.gif differ diff --git a/src/main/webapp/img/site/ma.png b/src/main/webapp/img/site/ma.png new file mode 100644 index 0000000..487e13f Binary files /dev/null and b/src/main/webapp/img/site/ma.png differ diff --git a/src/main/webapp/img/site/orderFinish.png b/src/main/webapp/img/site/orderFinish.png new file mode 100644 index 0000000..2dd3f22 Binary files /dev/null and b/src/main/webapp/img/site/orderFinish.png differ diff --git a/src/main/webapp/img/site/orderItemTmall.png b/src/main/webapp/img/site/orderItemTmall.png new file mode 100644 index 0000000..23cd7a8 Binary files /dev/null and b/src/main/webapp/img/site/orderItemTmall.png differ diff --git a/src/main/webapp/img/site/paySuccess.png b/src/main/webapp/img/site/paySuccess.png new file mode 100644 index 0000000..14e8824 Binary files /dev/null and b/src/main/webapp/img/site/paySuccess.png differ diff --git a/src/main/webapp/img/site/priceBackground.png b/src/main/webapp/img/site/priceBackground.png new file mode 100644 index 0000000..9637828 Binary files /dev/null and b/src/main/webapp/img/site/priceBackground.png differ diff --git a/src/main/webapp/img/site/promise.png b/src/main/webapp/img/site/promise.png new file mode 100644 index 0000000..5a2288e Binary files /dev/null and b/src/main/webapp/img/site/promise.png differ diff --git a/src/main/webapp/img/site/registerSuccess.png b/src/main/webapp/img/site/registerSuccess.png new file mode 100644 index 0000000..51f9d6d Binary files /dev/null and b/src/main/webapp/img/site/registerSuccess.png differ diff --git a/src/main/webapp/img/site/renzheng.png b/src/main/webapp/img/site/renzheng.png new file mode 100644 index 0000000..6193482 Binary files /dev/null and b/src/main/webapp/img/site/renzheng.png differ diff --git a/src/main/webapp/img/site/reviewLight.png b/src/main/webapp/img/site/reviewLight.png new file mode 100644 index 0000000..c9ad99f Binary files /dev/null and b/src/main/webapp/img/site/reviewLight.png differ diff --git a/src/main/webapp/img/site/simpleLogo.png b/src/main/webapp/img/site/simpleLogo.png new file mode 100644 index 0000000..eb47bee Binary files /dev/null and b/src/main/webapp/img/site/simpleLogo.png differ diff --git a/src/main/webapp/img/site/star/5.png b/src/main/webapp/img/site/star/5.png new file mode 100644 index 0000000..1ad3722 Binary files /dev/null and b/src/main/webapp/img/site/star/5.png differ diff --git a/src/main/webapp/img/site/tmallbuy.png b/src/main/webapp/img/site/tmallbuy.png new file mode 100644 index 0000000..4f849bc Binary files /dev/null and b/src/main/webapp/img/site/tmallbuy.png differ diff --git a/src/main/webapp/img/site/wangwang.gif b/src/main/webapp/img/site/wangwang.gif new file mode 100644 index 0000000..507ff9c Binary files /dev/null and b/src/main/webapp/img/site/wangwang.gif differ diff --git a/src/main/webapp/img/site/wangwang.png b/src/main/webapp/img/site/wangwang.png new file mode 100644 index 0000000..2367b9b Binary files /dev/null and b/src/main/webapp/img/site/wangwang.png differ diff --git a/src/main/webapp/img/site/warning.png b/src/main/webapp/img/site/warning.png new file mode 100644 index 0000000..8cd5fdc Binary files /dev/null and b/src/main/webapp/img/site/warning.png differ diff --git a/src/main/webapp/index.jsp b/src/main/webapp/index.jsp new file mode 100644 index 0000000..115614a --- /dev/null +++ b/src/main/webapp/index.jsp @@ -0,0 +1,5 @@ + + +<% + response.sendRedirect("forehome"); +%> \ No newline at end of file diff --git a/src/main/webapp/js/bootstrap/3.3.6/bootstrap.js b/src/main/webapp/js/bootstrap/3.3.6/bootstrap.js new file mode 100644 index 0000000..01fbbcb --- /dev/null +++ b/src/main/webapp/js/bootstrap/3.3.6/bootstrap.js @@ -0,0 +1,2363 @@ +/*! + * Bootstrap v3.3.6 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under the MIT license + */ + +if (typeof jQuery === 'undefined') { + throw new Error('Bootstrap\'s JavaScript requires jQuery') +} + ++function ($) { + 'use strict'; + var version = $.fn.jquery.split(' ')[0].split('.') + if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] > 2)) { + throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3') + } +}(jQuery); + +/* ======================================================================== + * Bootstrap: transition.js v3.3.6 + * http://getbootstrap.com/javascript/#transitions + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/) + // ============================================================ + + function transitionEnd() { + var el = document.createElement('bootstrap') + + var transEndEventNames = { + WebkitTransition : 'webkitTransitionEnd', + MozTransition : 'transitionend', + OTransition : 'oTransitionEnd otransitionend', + transition : 'transitionend' + } + + for (var name in transEndEventNames) { + if (el.style[name] !== undefined) { + return { end: transEndEventNames[name] } + } + } + + return false // explicit for ie8 ( ._.) + } + + // http://blog.alexmaccaw.com/css-transitions + $.fn.emulateTransitionEnd = function (duration) { + var called = false + var $el = this + $(this).one('bsTransitionEnd', function () { called = true }) + var callback = function () { if (!called) $($el).trigger($.support.transition.end) } + setTimeout(callback, duration) + return this + } + + $(function () { + $.support.transition = transitionEnd() + + if (!$.support.transition) return + + $.event.special.bsTransitionEnd = { + bindType: $.support.transition.end, + delegateType: $.support.transition.end, + handle: function (e) { + if ($(e.target).is(this)) return e.handleObj.handler.apply(this, arguments) + } + } + }) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: alert.js v3.3.6 + * http://getbootstrap.com/javascript/#alerts + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // ALERT CLASS DEFINITION + // ====================== + + var dismiss = '[data-dismiss="alert"]' + var Alert = function (el) { + $(el).on('click', dismiss, this.close) + } + + Alert.VERSION = '3.3.6' + + Alert.TRANSITION_DURATION = 150 + + Alert.prototype.close = function (e) { + var $this = $(this) + var selector = $this.attr('data-target') + + if (!selector) { + selector = $this.attr('href') + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 + } + + var $parent = $(selector) + + if (e) e.preventDefault() + + if (!$parent.length) { + $parent = $this.closest('.alert') + } + + $parent.trigger(e = $.Event('close.bs.alert')) + + if (e.isDefaultPrevented()) return + + $parent.removeClass('in') + + function removeElement() { + // detach from parent, fire event then clean up data + $parent.detach().trigger('closed.bs.alert').remove() + } + + $.support.transition && $parent.hasClass('fade') ? + $parent + .one('bsTransitionEnd', removeElement) + .emulateTransitionEnd(Alert.TRANSITION_DURATION) : + removeElement() + } + + + // ALERT PLUGIN DEFINITION + // ======================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.alert') + + if (!data) $this.data('bs.alert', (data = new Alert(this))) + if (typeof option == 'string') data[option].call($this) + }) + } + + var old = $.fn.alert + + $.fn.alert = Plugin + $.fn.alert.Constructor = Alert + + + // ALERT NO CONFLICT + // ================= + + $.fn.alert.noConflict = function () { + $.fn.alert = old + return this + } + + + // ALERT DATA-API + // ============== + + $(document).on('click.bs.alert.data-api', dismiss, Alert.prototype.close) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: button.js v3.3.6 + * http://getbootstrap.com/javascript/#buttons + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // BUTTON PUBLIC CLASS DEFINITION + // ============================== + + var Button = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, Button.DEFAULTS, options) + this.isLoading = false + } + + Button.VERSION = '3.3.6' + + Button.DEFAULTS = { + loadingText: 'loading...' + } + + Button.prototype.setState = function (state) { + var d = 'disabled' + var $el = this.$element + var val = $el.is('input') ? 'val' : 'html' + var data = $el.data() + + state += 'Text' + + if (data.resetText == null) $el.data('resetText', $el[val]()) + + // push to event loop to allow forms to submit + setTimeout($.proxy(function () { + $el[val](data[state] == null ? this.options[state] : data[state]) + + if (state == 'loadingText') { + this.isLoading = true + $el.addClass(d).attr(d, d) + } else if (this.isLoading) { + this.isLoading = false + $el.removeClass(d).removeAttr(d) + } + }, this), 0) + } + + Button.prototype.toggle = function () { + var changed = true + var $parent = this.$element.closest('[data-toggle="buttons"]') + + if ($parent.length) { + var $input = this.$element.find('input') + if ($input.prop('type') == 'radio') { + if ($input.prop('checked')) changed = false + $parent.find('.active').removeClass('active') + this.$element.addClass('active') + } else if ($input.prop('type') == 'checkbox') { + if (($input.prop('checked')) !== this.$element.hasClass('active')) changed = false + this.$element.toggleClass('active') + } + $input.prop('checked', this.$element.hasClass('active')) + if (changed) $input.trigger('change') + } else { + this.$element.attr('aria-pressed', !this.$element.hasClass('active')) + this.$element.toggleClass('active') + } + } + + + // BUTTON PLUGIN DEFINITION + // ======================== + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.button') + var options = typeof option == 'object' && option + + if (!data) $this.data('bs.button', (data = new Button(this, options))) + + if (option == 'toggle') data.toggle() + else if (option) data.setState(option) + }) + } + + var old = $.fn.button + + $.fn.button = Plugin + $.fn.button.Constructor = Button + + + // BUTTON NO CONFLICT + // ================== + + $.fn.button.noConflict = function () { + $.fn.button = old + return this + } + + + // BUTTON DATA-API + // =============== + + $(document) + .on('click.bs.button.data-api', '[data-toggle^="button"]', function (e) { + var $btn = $(e.target) + if (!$btn.hasClass('btn')) $btn = $btn.closest('.btn') + Plugin.call($btn, 'toggle') + if (!($(e.target).is('input[type="radio"]') || $(e.target).is('input[type="checkbox"]'))) e.preventDefault() + }) + .on('focus.bs.button.data-api blur.bs.button.data-api', '[data-toggle^="button"]', function (e) { + $(e.target).closest('.btn').toggleClass('focus', /^focus(in)?$/.test(e.type)) + }) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: carousel.js v3.3.6 + * http://getbootstrap.com/javascript/#carousel + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // CAROUSEL CLASS DEFINITION + // ========================= + + var Carousel = function (element, options) { + this.$element = $(element) + this.$indicators = this.$element.find('.carousel-indicators') + this.options = options + this.paused = null + this.sliding = null + this.interval = null + this.$active = null + this.$items = null + + this.options.keyboard && this.$element.on('keydown.bs.carousel', $.proxy(this.keydown, this)) + + this.options.pause == 'hover' && !('ontouchstart' in document.documentElement) && this.$element + .on('mouseenter.bs.carousel', $.proxy(this.pause, this)) + .on('mouseleave.bs.carousel', $.proxy(this.cycle, this)) + } + + Carousel.VERSION = '3.3.6' + + Carousel.TRANSITION_DURATION = 600 + + Carousel.DEFAULTS = { + interval: 5000, + pause: 'hover', + wrap: true, + keyboard: true + } + + Carousel.prototype.keydown = function (e) { + if (/input|textarea/i.test(e.target.tagName)) return + switch (e.which) { + case 37: this.prev(); break + case 39: this.next(); break + default: return + } + + e.preventDefault() + } + + Carousel.prototype.cycle = function (e) { + e || (this.paused = false) + + this.interval && clearInterval(this.interval) + + this.options.interval + && !this.paused + && (this.interval = setInterval($.proxy(this.next, this), this.options.interval)) + + return this + } + + Carousel.prototype.getItemIndex = function (item) { + this.$items = item.parent().children('.item') + return this.$items.index(item || this.$active) + } + + Carousel.prototype.getItemForDirection = function (direction, active) { + var activeIndex = this.getItemIndex(active) + var willWrap = (direction == 'prev' && activeIndex === 0) + || (direction == 'next' && activeIndex == (this.$items.length - 1)) + if (willWrap && !this.options.wrap) return active + var delta = direction == 'prev' ? -1 : 1 + var itemIndex = (activeIndex + delta) % this.$items.length + return this.$items.eq(itemIndex) + } + + Carousel.prototype.to = function (pos) { + var that = this + var activeIndex = this.getItemIndex(this.$active = this.$element.find('.item.active')) + + if (pos > (this.$items.length - 1) || pos < 0) return + + if (this.sliding) return this.$element.one('slid.bs.carousel', function () { that.to(pos) }) // yes, "slid" + if (activeIndex == pos) return this.pause().cycle() + + return this.slide(pos > activeIndex ? 'next' : 'prev', this.$items.eq(pos)) + } + + Carousel.prototype.pause = function (e) { + e || (this.paused = true) + + if (this.$element.find('.next, .prev').length && $.support.transition) { + this.$element.trigger($.support.transition.end) + this.cycle(true) + } + + this.interval = clearInterval(this.interval) + + return this + } + + Carousel.prototype.next = function () { + if (this.sliding) return + return this.slide('next') + } + + Carousel.prototype.prev = function () { + if (this.sliding) return + return this.slide('prev') + } + + Carousel.prototype.slide = function (type, next) { + var $active = this.$element.find('.item.active') + var $next = next || this.getItemForDirection(type, $active) + var isCycling = this.interval + var direction = type == 'next' ? 'left' : 'right' + var that = this + + if ($next.hasClass('active')) return (this.sliding = false) + + var relatedTarget = $next[0] + var slideEvent = $.Event('slide.bs.carousel', { + relatedTarget: relatedTarget, + direction: direction + }) + this.$element.trigger(slideEvent) + if (slideEvent.isDefaultPrevented()) return + + this.sliding = true + + isCycling && this.pause() + + if (this.$indicators.length) { + this.$indicators.find('.active').removeClass('active') + var $nextIndicator = $(this.$indicators.children()[this.getItemIndex($next)]) + $nextIndicator && $nextIndicator.addClass('active') + } + + var slidEvent = $.Event('slid.bs.carousel', { relatedTarget: relatedTarget, direction: direction }) // yes, "slid" + if ($.support.transition && this.$element.hasClass('slide')) { + $next.addClass(type) + $next[0].offsetWidth // force reflow + $active.addClass(direction) + $next.addClass(direction) + $active + .one('bsTransitionEnd', function () { + $next.removeClass([type, direction].join(' ')).addClass('active') + $active.removeClass(['active', direction].join(' ')) + that.sliding = false + setTimeout(function () { + that.$element.trigger(slidEvent) + }, 0) + }) + .emulateTransitionEnd(Carousel.TRANSITION_DURATION) + } else { + $active.removeClass('active') + $next.addClass('active') + this.sliding = false + this.$element.trigger(slidEvent) + } + + isCycling && this.cycle() + + return this + } + + + // CAROUSEL PLUGIN DEFINITION + // ========================== + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.carousel') + var options = $.extend({}, Carousel.DEFAULTS, $this.data(), typeof option == 'object' && option) + var action = typeof option == 'string' ? option : options.slide + + if (!data) $this.data('bs.carousel', (data = new Carousel(this, options))) + if (typeof option == 'number') data.to(option) + else if (action) data[action]() + else if (options.interval) data.pause().cycle() + }) + } + + var old = $.fn.carousel + + $.fn.carousel = Plugin + $.fn.carousel.Constructor = Carousel + + + // CAROUSEL NO CONFLICT + // ==================== + + $.fn.carousel.noConflict = function () { + $.fn.carousel = old + return this + } + + + // CAROUSEL DATA-API + // ================= + + var clickHandler = function (e) { + var href + var $this = $(this) + var $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '')) // strip for ie7 + if (!$target.hasClass('carousel')) return + var options = $.extend({}, $target.data(), $this.data()) + var slideIndex = $this.attr('data-slide-to') + if (slideIndex) options.interval = false + + Plugin.call($target, options) + + if (slideIndex) { + $target.data('bs.carousel').to(slideIndex) + } + + e.preventDefault() + } + + $(document) + .on('click.bs.carousel.data-api', '[data-slide]', clickHandler) + .on('click.bs.carousel.data-api', '[data-slide-to]', clickHandler) + + $(window).on('load', function () { + $('[data-ride="carousel"]').each(function () { + var $carousel = $(this) + Plugin.call($carousel, $carousel.data()) + }) + }) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: collapse.js v3.3.6 + * http://getbootstrap.com/javascript/#collapse + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // COLLAPSE PUBLIC CLASS DEFINITION + // ================================ + + var Collapse = function (element, options) { + this.$element = $(element) + this.options = $.extend({}, Collapse.DEFAULTS, options) + this.$trigger = $('[data-toggle="collapse"][href="#' + element.id + '"],' + + '[data-toggle="collapse"][data-target="#' + element.id + '"]') + this.transitioning = null + + if (this.options.parent) { + this.$parent = this.getParent() + } else { + this.addAriaAndCollapsedClass(this.$element, this.$trigger) + } + + if (this.options.toggle) this.toggle() + } + + Collapse.VERSION = '3.3.6' + + Collapse.TRANSITION_DURATION = 350 + + Collapse.DEFAULTS = { + toggle: true + } + + Collapse.prototype.dimension = function () { + var hasWidth = this.$element.hasClass('width') + return hasWidth ? 'width' : 'height' + } + + Collapse.prototype.show = function () { + if (this.transitioning || this.$element.hasClass('in')) return + + var activesData + var actives = this.$parent && this.$parent.children('.panel').children('.in, .collapsing') + + if (actives && actives.length) { + activesData = actives.data('bs.collapse') + if (activesData && activesData.transitioning) return + } + + var startEvent = $.Event('show.bs.collapse') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + if (actives && actives.length) { + Plugin.call(actives, 'hide') + activesData || actives.data('bs.collapse', null) + } + + var dimension = this.dimension() + + this.$element + .removeClass('collapse') + .addClass('collapsing')[dimension](0) + .attr('aria-expanded', true) + + this.$trigger + .removeClass('collapsed') + .attr('aria-expanded', true) + + this.transitioning = 1 + + var complete = function () { + this.$element + .removeClass('collapsing') + .addClass('collapse in')[dimension]('') + this.transitioning = 0 + this.$element + .trigger('shown.bs.collapse') + } + + if (!$.support.transition) return complete.call(this) + + var scrollSize = $.camelCase(['scroll', dimension].join('-')) + + this.$element + .one('bsTransitionEnd', $.proxy(complete, this)) + .emulateTransitionEnd(Collapse.TRANSITION_DURATION)[dimension](this.$element[0][scrollSize]) + } + + Collapse.prototype.hide = function () { + if (this.transitioning || !this.$element.hasClass('in')) return + + var startEvent = $.Event('hide.bs.collapse') + this.$element.trigger(startEvent) + if (startEvent.isDefaultPrevented()) return + + var dimension = this.dimension() + + this.$element[dimension](this.$element[dimension]())[0].offsetHeight + + this.$element + .addClass('collapsing') + .removeClass('collapse in') + .attr('aria-expanded', false) + + this.$trigger + .addClass('collapsed') + .attr('aria-expanded', false) + + this.transitioning = 1 + + var complete = function () { + this.transitioning = 0 + this.$element + .removeClass('collapsing') + .addClass('collapse') + .trigger('hidden.bs.collapse') + } + + if (!$.support.transition) return complete.call(this) + + this.$element + [dimension](0) + .one('bsTransitionEnd', $.proxy(complete, this)) + .emulateTransitionEnd(Collapse.TRANSITION_DURATION) + } + + Collapse.prototype.toggle = function () { + this[this.$element.hasClass('in') ? 'hide' : 'show']() + } + + Collapse.prototype.getParent = function () { + return $(this.options.parent) + .find('[data-toggle="collapse"][data-parent="' + this.options.parent + '"]') + .each($.proxy(function (i, element) { + var $element = $(element) + this.addAriaAndCollapsedClass(getTargetFromTrigger($element), $element) + }, this)) + .end() + } + + Collapse.prototype.addAriaAndCollapsedClass = function ($element, $trigger) { + var isOpen = $element.hasClass('in') + + $element.attr('aria-expanded', isOpen) + $trigger + .toggleClass('collapsed', !isOpen) + .attr('aria-expanded', isOpen) + } + + function getTargetFromTrigger($trigger) { + var href + var target = $trigger.attr('data-target') + || (href = $trigger.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7 + + return $(target) + } + + + // COLLAPSE PLUGIN DEFINITION + // ========================== + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.collapse') + var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option) + + if (!data && options.toggle && /show|hide/.test(option)) options.toggle = false + if (!data) $this.data('bs.collapse', (data = new Collapse(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.collapse + + $.fn.collapse = Plugin + $.fn.collapse.Constructor = Collapse + + + // COLLAPSE NO CONFLICT + // ==================== + + $.fn.collapse.noConflict = function () { + $.fn.collapse = old + return this + } + + + // COLLAPSE DATA-API + // ================= + + $(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) { + var $this = $(this) + + if (!$this.attr('data-target')) e.preventDefault() + + var $target = getTargetFromTrigger($this) + var data = $target.data('bs.collapse') + var option = data ? 'toggle' : $this.data() + + Plugin.call($target, option) + }) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: dropdown.js v3.3.6 + * http://getbootstrap.com/javascript/#dropdowns + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // DROPDOWN CLASS DEFINITION + // ========================= + + var backdrop = '.dropdown-backdrop' + var toggle = '[data-toggle="dropdown"]' + var Dropdown = function (element) { + $(element).on('click.bs.dropdown', this.toggle) + } + + Dropdown.VERSION = '3.3.6' + + function getParent($this) { + var selector = $this.attr('data-target') + + if (!selector) { + selector = $this.attr('href') + selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 + } + + var $parent = selector && $(selector) + + return $parent && $parent.length ? $parent : $this.parent() + } + + function clearMenus(e) { + if (e && e.which === 3) return + $(backdrop).remove() + $(toggle).each(function () { + var $this = $(this) + var $parent = getParent($this) + var relatedTarget = { relatedTarget: this } + + if (!$parent.hasClass('open')) return + + if (e && e.type == 'click' && /input|textarea/i.test(e.target.tagName) && $.contains($parent[0], e.target)) return + + $parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget)) + + if (e.isDefaultPrevented()) return + + $this.attr('aria-expanded', 'false') + $parent.removeClass('open').trigger($.Event('hidden.bs.dropdown', relatedTarget)) + }) + } + + Dropdown.prototype.toggle = function (e) { + var $this = $(this) + + if ($this.is('.disabled, :disabled')) return + + var $parent = getParent($this) + var isActive = $parent.hasClass('open') + + clearMenus() + + if (!isActive) { + if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) { + // if mobile we use a backdrop because click events don't delegate + $(document.createElement('div')) + .addClass('dropdown-backdrop') + .insertAfter($(this)) + .on('click', clearMenus) + } + + var relatedTarget = { relatedTarget: this } + $parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget)) + + if (e.isDefaultPrevented()) return + + $this + .trigger('focus') + .attr('aria-expanded', 'true') + + $parent + .toggleClass('open') + .trigger($.Event('shown.bs.dropdown', relatedTarget)) + } + + return false + } + + Dropdown.prototype.keydown = function (e) { + if (!/(38|40|27|32)/.test(e.which) || /input|textarea/i.test(e.target.tagName)) return + + var $this = $(this) + + e.preventDefault() + e.stopPropagation() + + if ($this.is('.disabled, :disabled')) return + + var $parent = getParent($this) + var isActive = $parent.hasClass('open') + + if (!isActive && e.which != 27 || isActive && e.which == 27) { + if (e.which == 27) $parent.find(toggle).trigger('focus') + return $this.trigger('click') + } + + var desc = ' li:not(.disabled):visible a' + var $items = $parent.find('.dropdown-menu' + desc) + + if (!$items.length) return + + var index = $items.index(e.target) + + if (e.which == 38 && index > 0) index-- // up + if (e.which == 40 && index < $items.length - 1) index++ // down + if (!~index) index = 0 + + $items.eq(index).trigger('focus') + } + + + // DROPDOWN PLUGIN DEFINITION + // ========================== + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.dropdown') + + if (!data) $this.data('bs.dropdown', (data = new Dropdown(this))) + if (typeof option == 'string') data[option].call($this) + }) + } + + var old = $.fn.dropdown + + $.fn.dropdown = Plugin + $.fn.dropdown.Constructor = Dropdown + + + // DROPDOWN NO CONFLICT + // ==================== + + $.fn.dropdown.noConflict = function () { + $.fn.dropdown = old + return this + } + + + // APPLY TO STANDARD DROPDOWN ELEMENTS + // =================================== + + $(document) + .on('click.bs.dropdown.data-api', clearMenus) + .on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() }) + .on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle) + .on('keydown.bs.dropdown.data-api', toggle, Dropdown.prototype.keydown) + .on('keydown.bs.dropdown.data-api', '.dropdown-menu', Dropdown.prototype.keydown) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: modal.js v3.3.6 + * http://getbootstrap.com/javascript/#modals + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // MODAL CLASS DEFINITION + // ====================== + + var Modal = function (element, options) { + this.options = options + this.$body = $(document.body) + this.$element = $(element) + this.$dialog = this.$element.find('.modal-dialog') + this.$backdrop = null + this.isShown = null + this.originalBodyPad = null + this.scrollbarWidth = 0 + this.ignoreBackdropClick = false + + if (this.options.remote) { + this.$element + .find('.modal-content') + .load(this.options.remote, $.proxy(function () { + this.$element.trigger('loaded.bs.modal') + }, this)) + } + } + + Modal.VERSION = '3.3.6' + + Modal.TRANSITION_DURATION = 300 + Modal.BACKDROP_TRANSITION_DURATION = 150 + + Modal.DEFAULTS = { + backdrop: true, + keyboard: true, + show: true + } + + Modal.prototype.toggle = function (_relatedTarget) { + return this.isShown ? this.hide() : this.show(_relatedTarget) + } + + Modal.prototype.show = function (_relatedTarget) { + var that = this + var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget }) + + this.$element.trigger(e) + + if (this.isShown || e.isDefaultPrevented()) return + + this.isShown = true + + this.checkScrollbar() + this.setScrollbar() + this.$body.addClass('modal-open') + + this.escape() + this.resize() + + this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this)) + + this.$dialog.on('mousedown.dismiss.bs.modal', function () { + that.$element.one('mouseup.dismiss.bs.modal', function (e) { + if ($(e.target).is(that.$element)) that.ignoreBackdropClick = true + }) + }) + + this.backdrop(function () { + var transition = $.support.transition && that.$element.hasClass('fade') + + if (!that.$element.parent().length) { + that.$element.appendTo(that.$body) // don't move modals dom position + } + + that.$element + .show() + .scrollTop(0) + + that.adjustDialog() + + if (transition) { + that.$element[0].offsetWidth // force reflow + } + + that.$element.addClass('in') + + that.enforceFocus() + + var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget }) + + transition ? + that.$dialog // wait for modal to slide in + .one('bsTransitionEnd', function () { + that.$element.trigger('focus').trigger(e) + }) + .emulateTransitionEnd(Modal.TRANSITION_DURATION) : + that.$element.trigger('focus').trigger(e) + }) + } + + Modal.prototype.hide = function (e) { + if (e) e.preventDefault() + + e = $.Event('hide.bs.modal') + + this.$element.trigger(e) + + if (!this.isShown || e.isDefaultPrevented()) return + + this.isShown = false + + this.escape() + this.resize() + + $(document).off('focusin.bs.modal') + + this.$element + .removeClass('in') + .off('click.dismiss.bs.modal') + .off('mouseup.dismiss.bs.modal') + + this.$dialog.off('mousedown.dismiss.bs.modal') + + $.support.transition && this.$element.hasClass('fade') ? + this.$element + .one('bsTransitionEnd', $.proxy(this.hideModal, this)) + .emulateTransitionEnd(Modal.TRANSITION_DURATION) : + this.hideModal() + } + + Modal.prototype.enforceFocus = function () { + $(document) + .off('focusin.bs.modal') // guard against infinite focus loop + .on('focusin.bs.modal', $.proxy(function (e) { + if (this.$element[0] !== e.target && !this.$element.has(e.target).length) { + this.$element.trigger('focus') + } + }, this)) + } + + Modal.prototype.escape = function () { + if (this.isShown && this.options.keyboard) { + this.$element.on('keydown.dismiss.bs.modal', $.proxy(function (e) { + e.which == 27 && this.hide() + }, this)) + } else if (!this.isShown) { + this.$element.off('keydown.dismiss.bs.modal') + } + } + + Modal.prototype.resize = function () { + if (this.isShown) { + $(window).on('resize.bs.modal', $.proxy(this.handleUpdate, this)) + } else { + $(window).off('resize.bs.modal') + } + } + + Modal.prototype.hideModal = function () { + var that = this + this.$element.hide() + this.backdrop(function () { + that.$body.removeClass('modal-open') + that.resetAdjustments() + that.resetScrollbar() + that.$element.trigger('hidden.bs.modal') + }) + } + + Modal.prototype.removeBackdrop = function () { + this.$backdrop && this.$backdrop.remove() + this.$backdrop = null + } + + Modal.prototype.backdrop = function (callback) { + var that = this + var animate = this.$element.hasClass('fade') ? 'fade' : '' + + if (this.isShown && this.options.backdrop) { + var doAnimate = $.support.transition && animate + + this.$backdrop = $(document.createElement('div')) + .addClass('modal-backdrop ' + animate) + .appendTo(this.$body) + + this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) { + if (this.ignoreBackdropClick) { + this.ignoreBackdropClick = false + return + } + if (e.target !== e.currentTarget) return + this.options.backdrop == 'static' + ? this.$element[0].focus() + : this.hide() + }, this)) + + if (doAnimate) this.$backdrop[0].offsetWidth // force reflow + + this.$backdrop.addClass('in') + + if (!callback) return + + doAnimate ? + this.$backdrop + .one('bsTransitionEnd', callback) + .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : + callback() + + } else if (!this.isShown && this.$backdrop) { + this.$backdrop.removeClass('in') + + var callbackRemove = function () { + that.removeBackdrop() + callback && callback() + } + $.support.transition && this.$element.hasClass('fade') ? + this.$backdrop + .one('bsTransitionEnd', callbackRemove) + .emulateTransitionEnd(Modal.BACKDROP_TRANSITION_DURATION) : + callbackRemove() + + } else if (callback) { + callback() + } + } + + // these following methods are used to handle overflowing modals + + Modal.prototype.handleUpdate = function () { + this.adjustDialog() + } + + Modal.prototype.adjustDialog = function () { + var modalIsOverflowing = this.$element[0].scrollHeight > document.documentElement.clientHeight + + this.$element.css({ + paddingLeft: !this.bodyIsOverflowing && modalIsOverflowing ? this.scrollbarWidth : '', + paddingRight: this.bodyIsOverflowing && !modalIsOverflowing ? this.scrollbarWidth : '' + }) + } + + Modal.prototype.resetAdjustments = function () { + this.$element.css({ + paddingLeft: '', + paddingRight: '' + }) + } + + Modal.prototype.checkScrollbar = function () { + var fullWindowWidth = window.innerWidth + if (!fullWindowWidth) { // workaround for missing window.innerWidth in IE8 + var documentElementRect = document.documentElement.getBoundingClientRect() + fullWindowWidth = documentElementRect.right - Math.abs(documentElementRect.left) + } + this.bodyIsOverflowing = document.body.clientWidth < fullWindowWidth + this.scrollbarWidth = this.measureScrollbar() + } + + Modal.prototype.setScrollbar = function () { + var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10) + this.originalBodyPad = document.body.style.paddingRight || '' + if (this.bodyIsOverflowing) this.$body.css('padding-right', bodyPad + this.scrollbarWidth) + } + + Modal.prototype.resetScrollbar = function () { + this.$body.css('padding-right', this.originalBodyPad) + } + + Modal.prototype.measureScrollbar = function () { // thx walsh + var scrollDiv = document.createElement('div') + scrollDiv.className = 'modal-scrollbar-measure' + this.$body.append(scrollDiv) + var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth + this.$body[0].removeChild(scrollDiv) + return scrollbarWidth + } + + + // MODAL PLUGIN DEFINITION + // ======================= + + function Plugin(option, _relatedTarget) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.modal') + var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option) + + if (!data) $this.data('bs.modal', (data = new Modal(this, options))) + if (typeof option == 'string') data[option](_relatedTarget) + else if (options.show) data.show(_relatedTarget) + }) + } + + var old = $.fn.modal + + $.fn.modal = Plugin + $.fn.modal.Constructor = Modal + + + // MODAL NO CONFLICT + // ================= + + $.fn.modal.noConflict = function () { + $.fn.modal = old + return this + } + + + // MODAL DATA-API + // ============== + + $(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) { + var $this = $(this) + var href = $this.attr('href') + var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7 + var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data()) + + if ($this.is('a')) e.preventDefault() + + $target.one('show.bs.modal', function (showEvent) { + if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown + $target.one('hidden.bs.modal', function () { + $this.is(':visible') && $this.trigger('focus') + }) + }) + Plugin.call($target, option, this) + }) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: tooltip.js v3.3.6 + * http://getbootstrap.com/javascript/#tooltip + * Inspired by the original jQuery.tipsy by Jason Frame + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // TOOLTIP PUBLIC CLASS DEFINITION + // =============================== + + var Tooltip = function (element, options) { + this.type = null + this.options = null + this.enabled = null + this.timeout = null + this.hoverState = null + this.$element = null + this.inState = null + + this.init('tooltip', element, options) + } + + Tooltip.VERSION = '3.3.6' + + Tooltip.TRANSITION_DURATION = 150 + + Tooltip.DEFAULTS = { + animation: true, + placement: 'top', + selector: false, + template: '<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>', + trigger: 'hover focus', + title: '', + delay: 0, + html: false, + container: false, + viewport: { + selector: 'body', + padding: 0 + } + } + + Tooltip.prototype.init = function (type, element, options) { + this.enabled = true + this.type = type + this.$element = $(element) + this.options = this.getOptions(options) + this.$viewport = this.options.viewport && $($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) + this.inState = { click: false, hover: false, focus: false } + + if (this.$element[0] instanceof document.constructor && !this.options.selector) { + throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') + } + + var triggers = this.options.trigger.split(' ') + + for (var i = triggers.length; i--;) { + var trigger = triggers[i] + + if (trigger == 'click') { + this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) + } else if (trigger != 'manual') { + var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' + var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' + + this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) + this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) + } + } + + this.options.selector ? + (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : + this.fixTitle() + } + + Tooltip.prototype.getDefaults = function () { + return Tooltip.DEFAULTS + } + + Tooltip.prototype.getOptions = function (options) { + options = $.extend({}, this.getDefaults(), this.$element.data(), options) + + if (options.delay && typeof options.delay == 'number') { + options.delay = { + show: options.delay, + hide: options.delay + } + } + + return options + } + + Tooltip.prototype.getDelegateOptions = function () { + var options = {} + var defaults = this.getDefaults() + + this._options && $.each(this._options, function (key, value) { + if (defaults[key] != value) options[key] = value + }) + + return options + } + + Tooltip.prototype.enter = function (obj) { + var self = obj instanceof this.constructor ? + obj : $(obj.currentTarget).data('bs.' + this.type) + + if (!self) { + self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) + $(obj.currentTarget).data('bs.' + this.type, self) + } + + if (obj instanceof $.Event) { + self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true + } + + if (self.tip().hasClass('in') || self.hoverState == 'in') { + self.hoverState = 'in' + return + } + + clearTimeout(self.timeout) + + self.hoverState = 'in' + + if (!self.options.delay || !self.options.delay.show) return self.show() + + self.timeout = setTimeout(function () { + if (self.hoverState == 'in') self.show() + }, self.options.delay.show) + } + + Tooltip.prototype.isInStateTrue = function () { + for (var key in this.inState) { + if (this.inState[key]) return true + } + + return false + } + + Tooltip.prototype.leave = function (obj) { + var self = obj instanceof this.constructor ? + obj : $(obj.currentTarget).data('bs.' + this.type) + + if (!self) { + self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) + $(obj.currentTarget).data('bs.' + this.type, self) + } + + if (obj instanceof $.Event) { + self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false + } + + if (self.isInStateTrue()) return + + clearTimeout(self.timeout) + + self.hoverState = 'out' + + if (!self.options.delay || !self.options.delay.hide) return self.hide() + + self.timeout = setTimeout(function () { + if (self.hoverState == 'out') self.hide() + }, self.options.delay.hide) + } + + Tooltip.prototype.show = function () { + var e = $.Event('show.bs.' + this.type) + + if (this.hasContent() && this.enabled) { + this.$element.trigger(e) + + var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) + if (e.isDefaultPrevented() || !inDom) return + var that = this + + var $tip = this.tip() + + var tipId = this.getUID(this.type) + + this.setContent() + $tip.attr('id', tipId) + this.$element.attr('aria-describedby', tipId) + + if (this.options.animation) $tip.addClass('fade') + + var placement = typeof this.options.placement == 'function' ? + this.options.placement.call(this, $tip[0], this.$element[0]) : + this.options.placement + + var autoToken = /\s?auto?\s?/i + var autoPlace = autoToken.test(placement) + if (autoPlace) placement = placement.replace(autoToken, '') || 'top' + + $tip + .detach() + .css({ top: 0, left: 0, display: 'block' }) + .addClass(placement) + .data('bs.' + this.type, this) + + this.options.container ? $tip.appendTo(this.options.container) : $tip.insertAfter(this.$element) + this.$element.trigger('inserted.bs.' + this.type) + + var pos = this.getPosition() + var actualWidth = $tip[0].offsetWidth + var actualHeight = $tip[0].offsetHeight + + if (autoPlace) { + var orgPlacement = placement + var viewportDim = this.getPosition(this.$viewport) + + placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : + placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : + placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : + placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : + placement + + $tip + .removeClass(orgPlacement) + .addClass(placement) + } + + var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) + + this.applyPlacement(calculatedOffset, placement) + + var complete = function () { + var prevHoverState = that.hoverState + that.$element.trigger('shown.bs.' + that.type) + that.hoverState = null + + if (prevHoverState == 'out') that.leave(that) + } + + $.support.transition && this.$tip.hasClass('fade') ? + $tip + .one('bsTransitionEnd', complete) + .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : + complete() + } + } + + Tooltip.prototype.applyPlacement = function (offset, placement) { + var $tip = this.tip() + var width = $tip[0].offsetWidth + var height = $tip[0].offsetHeight + + // manually read margins because getBoundingClientRect includes difference + var marginTop = parseInt($tip.css('margin-top'), 10) + var marginLeft = parseInt($tip.css('margin-left'), 10) + + // we must check for NaN for ie 8/9 + if (isNaN(marginTop)) marginTop = 0 + if (isNaN(marginLeft)) marginLeft = 0 + + offset.top += marginTop + offset.left += marginLeft + + // $.fn.offset doesn't round pixel values + // so we use setOffset directly with our own function B-0 + $.offset.setOffset($tip[0], $.extend({ + using: function (props) { + $tip.css({ + top: Math.round(props.top), + left: Math.round(props.left) + }) + } + }, offset), 0) + + $tip.addClass('in') + + // check to see if placing tip in new offset caused the tip to resize itself + var actualWidth = $tip[0].offsetWidth + var actualHeight = $tip[0].offsetHeight + + if (placement == 'top' && actualHeight != height) { + offset.top = offset.top + height - actualHeight + } + + var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) + + if (delta.left) offset.left += delta.left + else offset.top += delta.top + + var isVertical = /top|bottom/.test(placement) + var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight + var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' + + $tip.offset(offset) + this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) + } + + Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { + this.arrow() + .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') + .css(isVertical ? 'top' : 'left', '') + } + + Tooltip.prototype.setContent = function () { + var $tip = this.tip() + var title = this.getTitle() + + $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) + $tip.removeClass('fade in top bottom left right') + } + + Tooltip.prototype.hide = function (callback) { + var that = this + var $tip = $(this.$tip) + var e = $.Event('hide.bs.' + this.type) + + function complete() { + if (that.hoverState != 'in') $tip.detach() + that.$element + .removeAttr('aria-describedby') + .trigger('hidden.bs.' + that.type) + callback && callback() + } + + this.$element.trigger(e) + + if (e.isDefaultPrevented()) return + + $tip.removeClass('in') + + $.support.transition && $tip.hasClass('fade') ? + $tip + .one('bsTransitionEnd', complete) + .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : + complete() + + this.hoverState = null + + return this + } + + Tooltip.prototype.fixTitle = function () { + var $e = this.$element + if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { + $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') + } + } + + Tooltip.prototype.hasContent = function () { + return this.getTitle() + } + + Tooltip.prototype.getPosition = function ($element) { + $element = $element || this.$element + + var el = $element[0] + var isBody = el.tagName == 'BODY' + + var elRect = el.getBoundingClientRect() + if (elRect.width == null) { + // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 + elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) + } + var elOffset = isBody ? { top: 0, left: 0 } : $element.offset() + var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } + var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null + + return $.extend({}, elRect, scroll, outerDims, elOffset) + } + + Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { + return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : + placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : + placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : + /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } + + } + + Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { + var delta = { top: 0, left: 0 } + if (!this.$viewport) return delta + + var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 + var viewportDimensions = this.getPosition(this.$viewport) + + if (/right|left/.test(placement)) { + var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll + var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight + if (topEdgeOffset < viewportDimensions.top) { // top overflow + delta.top = viewportDimensions.top - topEdgeOffset + } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow + delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset + } + } else { + var leftEdgeOffset = pos.left - viewportPadding + var rightEdgeOffset = pos.left + viewportPadding + actualWidth + if (leftEdgeOffset < viewportDimensions.left) { // left overflow + delta.left = viewportDimensions.left - leftEdgeOffset + } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow + delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset + } + } + + return delta + } + + Tooltip.prototype.getTitle = function () { + var title + var $e = this.$element + var o = this.options + + title = $e.attr('data-original-title') + || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) + + return title + } + + Tooltip.prototype.getUID = function (prefix) { + do prefix += ~~(Math.random() * 1000000) + while (document.getElementById(prefix)) + return prefix + } + + Tooltip.prototype.tip = function () { + if (!this.$tip) { + this.$tip = $(this.options.template) + if (this.$tip.length != 1) { + throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') + } + } + return this.$tip + } + + Tooltip.prototype.arrow = function () { + return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) + } + + Tooltip.prototype.enable = function () { + this.enabled = true + } + + Tooltip.prototype.disable = function () { + this.enabled = false + } + + Tooltip.prototype.toggleEnabled = function () { + this.enabled = !this.enabled + } + + Tooltip.prototype.toggle = function (e) { + var self = this + if (e) { + self = $(e.currentTarget).data('bs.' + this.type) + if (!self) { + self = new this.constructor(e.currentTarget, this.getDelegateOptions()) + $(e.currentTarget).data('bs.' + this.type, self) + } + } + + if (e) { + self.inState.click = !self.inState.click + if (self.isInStateTrue()) self.enter(self) + else self.leave(self) + } else { + self.tip().hasClass('in') ? self.leave(self) : self.enter(self) + } + } + + Tooltip.prototype.destroy = function () { + var that = this + clearTimeout(this.timeout) + this.hide(function () { + that.$element.off('.' + that.type).removeData('bs.' + that.type) + if (that.$tip) { + that.$tip.detach() + } + that.$tip = null + that.$arrow = null + that.$viewport = null + }) + } + + + // TOOLTIP PLUGIN DEFINITION + // ========================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.tooltip') + var options = typeof option == 'object' && option + + if (!data && /destroy|hide/.test(option)) return + if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.tooltip + + $.fn.tooltip = Plugin + $.fn.tooltip.Constructor = Tooltip + + + // TOOLTIP NO CONFLICT + // =================== + + $.fn.tooltip.noConflict = function () { + $.fn.tooltip = old + return this + } + +}(jQuery); + +/* ======================================================================== + * Bootstrap: popover.js v3.3.6 + * http://getbootstrap.com/javascript/#popovers + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // POPOVER PUBLIC CLASS DEFINITION + // =============================== + + var Popover = function (element, options) { + this.init('popover', element, options) + } + + if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') + + Popover.VERSION = '3.3.6' + + Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { + placement: 'right', + trigger: 'click', + content: '', + template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>' + }) + + + // NOTE: POPOVER EXTENDS tooltip.js + // ================================ + + Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) + + Popover.prototype.constructor = Popover + + Popover.prototype.getDefaults = function () { + return Popover.DEFAULTS + } + + Popover.prototype.setContent = function () { + var $tip = this.tip() + var title = this.getTitle() + var content = this.getContent() + + $tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title) + $tip.find('.popover-content').children().detach().end()[ // we use append for html objects to maintain js events + this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text' + ](content) + + $tip.removeClass('fade top bottom left right in') + + // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do + // this manually by checking the contents. + if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() + } + + Popover.prototype.hasContent = function () { + return this.getTitle() || this.getContent() + } + + Popover.prototype.getContent = function () { + var $e = this.$element + var o = this.options + + return $e.attr('data-content') + || (typeof o.content == 'function' ? + o.content.call($e[0]) : + o.content) + } + + Popover.prototype.arrow = function () { + return (this.$arrow = this.$arrow || this.tip().find('.arrow')) + } + + + // POPOVER PLUGIN DEFINITION + // ========================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.popover') + var options = typeof option == 'object' && option + + if (!data && /destroy|hide/.test(option)) return + if (!data) $this.data('bs.popover', (data = new Popover(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.popover + + $.fn.popover = Plugin + $.fn.popover.Constructor = Popover + + + // POPOVER NO CONFLICT + // =================== + + $.fn.popover.noConflict = function () { + $.fn.popover = old + return this + } + +}(jQuery); + +/* ======================================================================== + * Bootstrap: scrollspy.js v3.3.6 + * http://getbootstrap.com/javascript/#scrollspy + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // SCROLLSPY CLASS DEFINITION + // ========================== + + function ScrollSpy(element, options) { + this.$body = $(document.body) + this.$scrollElement = $(element).is(document.body) ? $(window) : $(element) + this.options = $.extend({}, ScrollSpy.DEFAULTS, options) + this.selector = (this.options.target || '') + ' .nav li > a' + this.offsets = [] + this.targets = [] + this.activeTarget = null + this.scrollHeight = 0 + + this.$scrollElement.on('scroll.bs.scrollspy', $.proxy(this.process, this)) + this.refresh() + this.process() + } + + ScrollSpy.VERSION = '3.3.6' + + ScrollSpy.DEFAULTS = { + offset: 10 + } + + ScrollSpy.prototype.getScrollHeight = function () { + return this.$scrollElement[0].scrollHeight || Math.max(this.$body[0].scrollHeight, document.documentElement.scrollHeight) + } + + ScrollSpy.prototype.refresh = function () { + var that = this + var offsetMethod = 'offset' + var offsetBase = 0 + + this.offsets = [] + this.targets = [] + this.scrollHeight = this.getScrollHeight() + + if (!$.isWindow(this.$scrollElement[0])) { + offsetMethod = 'position' + offsetBase = this.$scrollElement.scrollTop() + } + + this.$body + .find(this.selector) + .map(function () { + var $el = $(this) + var href = $el.data('target') || $el.attr('href') + var $href = /^#./.test(href) && $(href) + + return ($href + && $href.length + && $href.is(':visible') + && [[$href[offsetMethod]().top + offsetBase, href]]) || null + }) + .sort(function (a, b) { return a[0] - b[0] }) + .each(function () { + that.offsets.push(this[0]) + that.targets.push(this[1]) + }) + } + + ScrollSpy.prototype.process = function () { + var scrollTop = this.$scrollElement.scrollTop() + this.options.offset + var scrollHeight = this.getScrollHeight() + var maxScroll = this.options.offset + scrollHeight - this.$scrollElement.height() + var offsets = this.offsets + var targets = this.targets + var activeTarget = this.activeTarget + var i + + if (this.scrollHeight != scrollHeight) { + this.refresh() + } + + if (scrollTop >= maxScroll) { + return activeTarget != (i = targets[targets.length - 1]) && this.activate(i) + } + + if (activeTarget && scrollTop < offsets[0]) { + this.activeTarget = null + return this.clear() + } + + for (i = offsets.length; i--;) { + activeTarget != targets[i] + && scrollTop >= offsets[i] + && (offsets[i + 1] === undefined || scrollTop < offsets[i + 1]) + && this.activate(targets[i]) + } + } + + ScrollSpy.prototype.activate = function (target) { + this.activeTarget = target + + this.clear() + + var selector = this.selector + + '[data-target="' + target + '"],' + + this.selector + '[href="' + target + '"]' + + var active = $(selector) + .parents('li') + .addClass('active') + + if (active.parent('.dropdown-menu').length) { + active = active + .closest('li.dropdown') + .addClass('active') + } + + active.trigger('activate.bs.scrollspy') + } + + ScrollSpy.prototype.clear = function () { + $(this.selector) + .parentsUntil(this.options.target, '.active') + .removeClass('active') + } + + + // SCROLLSPY PLUGIN DEFINITION + // =========================== + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.scrollspy') + var options = typeof option == 'object' && option + + if (!data) $this.data('bs.scrollspy', (data = new ScrollSpy(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.scrollspy + + $.fn.scrollspy = Plugin + $.fn.scrollspy.Constructor = ScrollSpy + + + // SCROLLSPY NO CONFLICT + // ===================== + + $.fn.scrollspy.noConflict = function () { + $.fn.scrollspy = old + return this + } + + + // SCROLLSPY DATA-API + // ================== + + $(window).on('load.bs.scrollspy.data-api', function () { + $('[data-spy="scroll"]').each(function () { + var $spy = $(this) + Plugin.call($spy, $spy.data()) + }) + }) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: tab.js v3.3.6 + * http://getbootstrap.com/javascript/#tabs + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // TAB CLASS DEFINITION + // ==================== + + var Tab = function (element) { + // jscs:disable requireDollarBeforejQueryAssignment + this.element = $(element) + // jscs:enable requireDollarBeforejQueryAssignment + } + + Tab.VERSION = '3.3.6' + + Tab.TRANSITION_DURATION = 150 + + Tab.prototype.show = function () { + var $this = this.element + var $ul = $this.closest('ul:not(.dropdown-menu)') + var selector = $this.data('target') + + if (!selector) { + selector = $this.attr('href') + selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7 + } + + if ($this.parent('li').hasClass('active')) return + + var $previous = $ul.find('.active:last a') + var hideEvent = $.Event('hide.bs.tab', { + relatedTarget: $this[0] + }) + var showEvent = $.Event('show.bs.tab', { + relatedTarget: $previous[0] + }) + + $previous.trigger(hideEvent) + $this.trigger(showEvent) + + if (showEvent.isDefaultPrevented() || hideEvent.isDefaultPrevented()) return + + var $target = $(selector) + + this.activate($this.closest('li'), $ul) + this.activate($target, $target.parent(), function () { + $previous.trigger({ + type: 'hidden.bs.tab', + relatedTarget: $this[0] + }) + $this.trigger({ + type: 'shown.bs.tab', + relatedTarget: $previous[0] + }) + }) + } + + Tab.prototype.activate = function (element, container, callback) { + var $active = container.find('> .active') + var transition = callback + && $.support.transition + && ($active.length && $active.hasClass('fade') || !!container.find('> .fade').length) + + function next() { + $active + .removeClass('active') + .find('> .dropdown-menu > .active') + .removeClass('active') + .end() + .find('[data-toggle="tab"]') + .attr('aria-expanded', false) + + element + .addClass('active') + .find('[data-toggle="tab"]') + .attr('aria-expanded', true) + + if (transition) { + element[0].offsetWidth // reflow for transition + element.addClass('in') + } else { + element.removeClass('fade') + } + + if (element.parent('.dropdown-menu').length) { + element + .closest('li.dropdown') + .addClass('active') + .end() + .find('[data-toggle="tab"]') + .attr('aria-expanded', true) + } + + callback && callback() + } + + $active.length && transition ? + $active + .one('bsTransitionEnd', next) + .emulateTransitionEnd(Tab.TRANSITION_DURATION) : + next() + + $active.removeClass('in') + } + + + // TAB PLUGIN DEFINITION + // ===================== + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.tab') + + if (!data) $this.data('bs.tab', (data = new Tab(this))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.tab + + $.fn.tab = Plugin + $.fn.tab.Constructor = Tab + + + // TAB NO CONFLICT + // =============== + + $.fn.tab.noConflict = function () { + $.fn.tab = old + return this + } + + + // TAB DATA-API + // ============ + + var clickHandler = function (e) { + e.preventDefault() + Plugin.call($(this), 'show') + } + + $(document) + .on('click.bs.tab.data-api', '[data-toggle="tab"]', clickHandler) + .on('click.bs.tab.data-api', '[data-toggle="pill"]', clickHandler) + +}(jQuery); + +/* ======================================================================== + * Bootstrap: affix.js v3.3.6 + * http://getbootstrap.com/javascript/#affix + * ======================================================================== + * Copyright 2011-2015 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // AFFIX CLASS DEFINITION + // ====================== + + var Affix = function (element, options) { + this.options = $.extend({}, Affix.DEFAULTS, options) + + this.$target = $(this.options.target) + .on('scroll.bs.affix.data-api', $.proxy(this.checkPosition, this)) + .on('click.bs.affix.data-api', $.proxy(this.checkPositionWithEventLoop, this)) + + this.$element = $(element) + this.affixed = null + this.unpin = null + this.pinnedOffset = null + + this.checkPosition() + } + + Affix.VERSION = '3.3.6' + + Affix.RESET = 'affix affix-top affix-bottom' + + Affix.DEFAULTS = { + offset: 0, + target: window + } + + Affix.prototype.getState = function (scrollHeight, height, offsetTop, offsetBottom) { + var scrollTop = this.$target.scrollTop() + var position = this.$element.offset() + var targetHeight = this.$target.height() + + if (offsetTop != null && this.affixed == 'top') return scrollTop < offsetTop ? 'top' : false + + if (this.affixed == 'bottom') { + if (offsetTop != null) return (scrollTop + this.unpin <= position.top) ? false : 'bottom' + return (scrollTop + targetHeight <= scrollHeight - offsetBottom) ? false : 'bottom' + } + + var initializing = this.affixed == null + var colliderTop = initializing ? scrollTop : position.top + var colliderHeight = initializing ? targetHeight : height + + if (offsetTop != null && scrollTop <= offsetTop) return 'top' + if (offsetBottom != null && (colliderTop + colliderHeight >= scrollHeight - offsetBottom)) return 'bottom' + + return false + } + + Affix.prototype.getPinnedOffset = function () { + if (this.pinnedOffset) return this.pinnedOffset + this.$element.removeClass(Affix.RESET).addClass('affix') + var scrollTop = this.$target.scrollTop() + var position = this.$element.offset() + return (this.pinnedOffset = position.top - scrollTop) + } + + Affix.prototype.checkPositionWithEventLoop = function () { + setTimeout($.proxy(this.checkPosition, this), 1) + } + + Affix.prototype.checkPosition = function () { + if (!this.$element.is(':visible')) return + + var height = this.$element.height() + var offset = this.options.offset + var offsetTop = offset.top + var offsetBottom = offset.bottom + var scrollHeight = Math.max($(document).height(), $(document.body).height()) + + if (typeof offset != 'object') offsetBottom = offsetTop = offset + if (typeof offsetTop == 'function') offsetTop = offset.top(this.$element) + if (typeof offsetBottom == 'function') offsetBottom = offset.bottom(this.$element) + + var affix = this.getState(scrollHeight, height, offsetTop, offsetBottom) + + if (this.affixed != affix) { + if (this.unpin != null) this.$element.css('top', '') + + var affixType = 'affix' + (affix ? '-' + affix : '') + var e = $.Event(affixType + '.bs.affix') + + this.$element.trigger(e) + + if (e.isDefaultPrevented()) return + + this.affixed = affix + this.unpin = affix == 'bottom' ? this.getPinnedOffset() : null + + this.$element + .removeClass(Affix.RESET) + .addClass(affixType) + .trigger(affixType.replace('affix', 'affixed') + '.bs.affix') + } + + if (affix == 'bottom') { + this.$element.offset({ + top: scrollHeight - height - offsetBottom + }) + } + } + + + // AFFIX PLUGIN DEFINITION + // ======================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.affix') + var options = typeof option == 'object' && option + + if (!data) $this.data('bs.affix', (data = new Affix(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.affix + + $.fn.affix = Plugin + $.fn.affix.Constructor = Affix + + + // AFFIX NO CONFLICT + // ================= + + $.fn.affix.noConflict = function () { + $.fn.affix = old + return this + } + + + // AFFIX DATA-API + // ============== + + $(window).on('load', function () { + $('[data-spy="affix"]').each(function () { + var $spy = $(this) + var data = $spy.data() + + data.offset = data.offset || {} + + if (data.offsetBottom != null) data.offset.bottom = data.offsetBottom + if (data.offsetTop != null) data.offset.top = data.offsetTop + + Plugin.call($spy, data) + }) + }) + +}(jQuery); diff --git a/src/main/webapp/js/bootstrap/3.3.6/bootstrap.min.js b/src/main/webapp/js/bootstrap/3.3.6/bootstrap.min.js new file mode 100644 index 0000000..e79c065 --- /dev/null +++ b/src/main/webapp/js/bootstrap/3.3.6/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v3.3.6 (http://getbootstrap.com) + * Copyright 2011-2015 Twitter, Inc. + * Licensed under the MIT license + */ +if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" ")[0].split(".");if(b[0]<2&&b[1]<9||1==b[0]&&9==b[1]&&b[2]<1||b[0]>2)throw new Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 3")}(jQuery),+function(a){"use strict";function b(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd otransitionend",transition:"transitionend"};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 0}})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new d(this)),"string"==typeof b&&e[b].call(c)})}var c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger("closed.bs.alert").remove()}var e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,""));var g=a(f);b&&b.preventDefault(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&&g.hasClass("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof b&&b;e||d.data("bs.button",e=new c(this,f)),"toggle"==b?e.toggle():b&&e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&&d.data("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&&c.trigger("change")}else this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&&b),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof b?e.to(b):g?e[g]():f.interval&&e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(".carousel-indicators"),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&&this.$element.on("keydown.bs.carousel",a.proxy(this.keydown,this)),"hover"==this.options.pause&&!("ontouchstart"in document.documentElement)&&this.$element.on("mouseenter.bs.carousel",a.proxy(this.pause,this)).on("mouseleave.bs.carousel",a.proxy(this.cycle,this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:"hover",wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&&clearInterval(this.interval),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(".item"),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d="prev"==a&&0===c||"next"==a&&c==this.$items.length-1;if(d&&!this.options.wrap)return b;var e="prev"==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(".item.active"));return a>this.$items.length-1||0>a?void 0:this.sliding?this.$element.one("slid.bs.carousel",function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a>c?"next":"prev",this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(".next, .prev").length&&a.support.transition&&(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){return this.sliding?void 0:this.slide("next")},c.prototype.prev=function(){return this.sliding?void 0:this.slide("prev")},c.prototype.slide=function(b,d){var e=this.$element.find(".item.active"),f=d||this.getItemForDirection(b,e),g=this.interval,h="next"==b?"left":"right",i=this;if(f.hasClass("active"))return this.sliding=!1;var j=f[0],k=a.Event("slide.bs.carousel",{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&&this.pause(),this.$indicators.length){this.$indicators.find(".active").removeClass("active");var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&&l.addClass("active")}var m=a.Event("slid.bs.carousel",{relatedTarget:j,direction:h});return a.support.transition&&this.$element.hasClass("slide")?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one("bsTransitionEnd",function(){f.removeClass([b,h].join(" ")).addClass("active"),e.removeClass(["active",h].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass("active"),f.addClass("active"),this.sliding=!1,this.$element.trigger(m)),g&&this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr("data-target")||(d=e.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""));if(f.hasClass("carousel")){var g=a.extend({},f.data(),e.data()),h=e.attr("data-slide-to");h&&(g.interval=!1),b.call(f,g),h&&f.data("bs.carousel").to(h),c.preventDefault()}};a(document).on("click.bs.carousel.data-api","[data-slide]",e).on("click.bs.carousel.data-api","[data-slide-to]",e),a(window).on("load",function(){a('[data-ride="carousel"]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){"use strict";function b(b){var c,d=b.attr("data-target")||(c=b.attr("href"))&&c.replace(/.*(?=#[^\s]+$)/,"");return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data("bs.collapse"),f=a.extend({},d.DEFAULTS,c.data(),"object"==typeof b&&b);!e&&f.toggle&&/show|hide/.test(b)&&(f.toggle=!1),e||c.data("bs.collapse",e=new d(this,f)),"string"==typeof b&&e[b]()})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle="collapse"][href="#'+b.id+'"],[data-toggle="collapse"][data-target="#'+b.id+'"]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&&this.toggle()};d.VERSION="3.3.6",d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass("width");return a?"width":"height"},d.prototype.show=function(){if(!this.transitioning&&!this.$element.hasClass("in")){var b,e=this.$parent&&this.$parent.children(".panel").children(".in, .collapsing");if(!(e&&e.length&&(b=e.data("bs.collapse"),b&&b.transitioning))){var f=a.Event("show.bs.collapse");if(this.$element.trigger(f),!f.isDefaultPrevented()){e&&e.length&&(c.call(e,"hide"),b||e.data("bs.collapse",null));var g=this.dimension();this.$element.removeClass("collapse").addClass("collapsing")[g](0).attr("aria-expanded",!0),this.$trigger.removeClass("collapsed").attr("aria-expanded",!0),this.transitioning=1;var h=function(){this.$element.removeClass("collapsing").addClass("collapse in")[g](""),this.transitioning=0,this.$element.trigger("shown.bs.collapse")};if(!a.support.transition)return h.call(this);var i=a.camelCase(["scroll",g].join("-"));this.$element.one("bsTransitionEnd",a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)[g](this.$element[0][i])}}}},d.prototype.hide=function(){if(!this.transitioning&&this.$element.hasClass("in")){var b=a.Event("hide.bs.collapse");if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element[c](this.$element[c]())[0].offsetHeight,this.$element.addClass("collapsing").removeClass("collapse in").attr("aria-expanded",!1),this.$trigger.addClass("collapsed").attr("aria-expanded",!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass("collapsing").addClass("collapse").trigger("hidden.bs.collapse")};return a.support.transition?void this.$element[c](0).one("bsTransitionEnd",a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this[this.$element.hasClass("in")?"hide":"show"]()},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle="collapse"][data-parent="'+this.options.parent+'"]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass("in");a.attr("aria-expanded",c),b.toggleClass("collapsed",!c).attr("aria-expanded",c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on("click.bs.collapse.data-api",'[data-toggle="collapse"]',function(d){var e=a(this);e.attr("data-target")||d.preventDefault();var f=b(e),g=f.data("bs.collapse"),h=g?"toggle":e.data();c.call(f,h)})}(jQuery),+function(a){"use strict";function b(b){var c=b.attr("data-target");c||(c=b.attr("href"),c=c&&/#[A-Za-z]/.test(c)&&c.replace(/.*(?=#[^\s]*$)/,""));var d=c&&a(c);return d&&d.length?d:b.parent()}function c(c){c&&3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass("open")&&(c&&"click"==c.type&&/input|textarea/i.test(c.target.tagName)&&a.contains(e[0],c.target)||(e.trigger(c=a.Event("hide.bs.dropdown",f)),c.isDefaultPrevented()||(d.attr("aria-expanded","false"),e.removeClass("open").trigger(a.Event("hidden.bs.dropdown",f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data("bs.dropdown");d||c.data("bs.dropdown",d=new g(this)),"string"==typeof b&&d[b].call(c)})}var e=".dropdown-backdrop",f='[data-toggle="dropdown"]',g=function(b){a(b).on("click.bs.dropdown",this.toggle)};g.VERSION="3.3.6",g.prototype.toggle=function(d){var e=a(this);if(!e.is(".disabled, :disabled")){var f=b(e),g=f.hasClass("open");if(c(),!g){"ontouchstart"in document.documentElement&&!f.closest(".navbar-nav").length&&a(document.createElement("div")).addClass("dropdown-backdrop").insertAfter(a(this)).on("click",c);var h={relatedTarget:this};if(f.trigger(d=a.Event("show.bs.dropdown",h)),d.isDefaultPrevented())return;e.trigger("focus").attr("aria-expanded","true"),f.toggleClass("open").trigger(a.Event("shown.bs.dropdown",h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&&!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(".disabled, :disabled")){var e=b(d),g=e.hasClass("open");if(!g&&27!=c.which||g&&27==c.which)return 27==c.which&&e.find(f).trigger("focus"),d.trigger("click");var h=" li:not(.disabled):visible a",i=e.find(".dropdown-menu"+h);if(i.length){var j=i.index(c.target);38==c.which&&j>0&&j--,40==c.which&&j<i.length-1&&j++,~j||(j=0),i.eq(j).trigger("focus")}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on("click.bs.dropdown.data-api",c).on("click.bs.dropdown.data-api",".dropdown form",function(a){a.stopPropagation()}).on("click.bs.dropdown.data-api",f,g.prototype.toggle).on("keydown.bs.dropdown.data-api",f,g.prototype.keydown).on("keydown.bs.dropdown.data-api",".dropdown-menu",g.prototype.keydown)}(jQuery),+function(a){"use strict";function b(b,d){return this.each(function(){var e=a(this),f=e.data("bs.modal"),g=a.extend({},c.DEFAULTS,e.data(),"object"==typeof b&&b);f||e.data("bs.modal",f=new c(this,g)),"string"==typeof b?f[b](d):g.show&&f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(".modal-dialog"),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&&this.$element.find(".modal-content").load(this.options.remote,a.proxy(function(){this.$element.trigger("loaded.bs.modal")},this))};c.VERSION="3.3.6",c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event("show.bs.modal",{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass("modal-open"),this.escape(),this.resize(),this.$element.on("click.dismiss.bs.modal",'[data-dismiss="modal"]',a.proxy(this.hide,this)),this.$dialog.on("mousedown.dismiss.bs.modal",function(){d.$element.one("mouseup.dismiss.bs.modal",function(b){a(b.target).is(d.$element)&&(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&&d.$element.hasClass("fade");d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&&d.$element[0].offsetWidth,d.$element.addClass("in"),d.enforceFocus();var f=a.Event("shown.bs.modal",{relatedTarget:b});e?d.$dialog.one("bsTransitionEnd",function(){d.$element.trigger("focus").trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger("focus").trigger(f)}))},c.prototype.hide=function(b){b&&b.preventDefault(),b=a.Event("hide.bs.modal"),this.$element.trigger(b),this.isShown&&!b.isDefaultPrevented()&&(this.isShown=!1,this.escape(),this.resize(),a(document).off("focusin.bs.modal"),this.$element.removeClass("in").off("click.dismiss.bs.modal").off("mouseup.dismiss.bs.modal"),this.$dialog.off("mousedown.dismiss.bs.modal"),a.support.transition&&this.$element.hasClass("fade")?this.$element.one("bsTransitionEnd",a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off("focusin.bs.modal").on("focusin.bs.modal",a.proxy(function(a){this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger("focus")},this))},c.prototype.escape=function(){this.isShown&&this.options.keyboard?this.$element.on("keydown.dismiss.bs.modal",a.proxy(function(a){27==a.which&&this.hide()},this)):this.isShown||this.$element.off("keydown.dismiss.bs.modal")},c.prototype.resize=function(){this.isShown?a(window).on("resize.bs.modal",a.proxy(this.handleUpdate,this)):a(window).off("resize.bs.modal")},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass("modal-open"),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger("hidden.bs.modal")})},c.prototype.removeBackdrop=function(){this.$backdrop&&this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var f=a.support.transition&&e;if(this.$backdrop=a(document.createElement("div")).addClass("modal-backdrop "+e).appendTo(this.$body),this.$element.on("click.dismiss.bs.modal",a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&&("static"==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&&this.$backdrop[0].offsetWidth,this.$backdrop.addClass("in"),!b)return;f?this.$backdrop.one("bsTransitionEnd",b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&&this.$backdrop){this.$backdrop.removeClass("in");var g=function(){d.removeBackdrop(),b&&b()};a.support.transition&&this.$element.hasClass("fade")?this.$backdrop.one("bsTransitionEnd",g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&&b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight>document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&&a?this.scrollbarWidth:"",paddingRight:this.bodyIsOverflowing&&!a?this.scrollbarWidth:""})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:"",paddingRight:""})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth<a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css("padding-right")||0,10);this.originalBodyPad=document.body.style.paddingRight||"",this.bodyIsOverflowing&&this.$body.css("padding-right",a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css("padding-right",this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement("div");a.className="modal-scrollbar-measure",this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on("click.bs.modal.data-api",'[data-toggle="modal"]',function(c){var d=a(this),e=d.attr("href"),f=a(d.attr("data-target")||e&&e.replace(/.*(?=#[^\s]+$)/,"")),g=f.data("bs.modal")?"toggle":a.extend({remote:!/#/.test(e)&&e},f.data(),d.data());d.is("a")&&c.preventDefault(),f.one("show.bs.modal",function(a){a.isDefaultPrevented()||f.one("hidden.bs.modal",function(){d.is(":visible")&&d.trigger("focus")})}),b.call(f,g,this)})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tooltip"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.tooltip",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init("tooltip",a,b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:"top",selector:!1,template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",title:"",delay:0,html:!1,container:!1,viewport:{selector:"body",padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&&a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&&!this.options.selector)throw new Error("`selector` option must be specified when initializing "+this.type+" on the window.document object!");for(var e=this.options.trigger.split(" "),f=e.length;f--;){var g=e[f];if("click"==g)this.$element.on("click."+this.type,this.options.selector,a.proxy(this.toggle,this));else if("manual"!=g){var h="hover"==g?"mouseenter":"focusin",i="hover"==g?"mouseleave":"focusout";this.$element.on(h+"."+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+"."+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:"manual",selector:""}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&&"number"==typeof b.delay&&(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&&a.each(this._options,function(a,d){c[a]!=d&&(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusin"==b.type?"focus":"hover"]=!0),c.tip().hasClass("in")||"in"==c.hoverState?void(c.hoverState="in"):(clearTimeout(c.timeout),c.hoverState="in",c.options.delay&&c.options.delay.show?void(c.timeout=setTimeout(function(){"in"==c.hoverState&&c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data("bs."+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c)),b instanceof a.Event&&(c.inState["focusout"==b.type?"focus":"hover"]=!1),c.isInStateTrue()?void 0:(clearTimeout(c.timeout),c.hoverState="out",c.options.delay&&c.options.delay.hide?void(c.timeout=setTimeout(function(){"out"==c.hoverState&&c.hide()},c.options.delay.hide)):c.hide())},c.prototype.show=function(){var b=a.Event("show.bs."+this.type);if(this.hasContent()&&this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr("id",g),this.$element.attr("aria-describedby",g),this.options.animation&&f.addClass("fade");var h="function"==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&&(h=h.replace(i,"")||"top"),f.detach().css({top:0,left:0,display:"block"}).addClass(h).data("bs."+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger("inserted.bs."+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h="bottom"==h&&k.bottom+m>o.bottom?"top":"top"==h&&k.top-m<o.top?"bottom":"right"==h&&k.right+l>o.width?"left":"left"==h&&k.left-l<o.left?"right":h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger("shown.bs."+e.type),e.hoverState=null,"out"==a&&e.leave(e)};a.support.transition&&this.$tip.hasClass("fade")?f.one("bsTransitionEnd",q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css("margin-top"),10),h=parseInt(d.css("margin-left"),10);isNaN(g)&&(g=0),isNaN(h)&&(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass("in");var i=d[0].offsetWidth,j=d[0].offsetHeight;"top"==c&&j!=f&&(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2*k.left-e+i:2*k.top-f+j,n=l?"offsetWidth":"offsetHeight";d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?"left":"top",50*(1-a/b)+"%").css(c?"top":"left","")},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(".tooltip-inner")[this.options.html?"html":"text"](b),a.removeClass("fade in top bottom left right")},c.prototype.hide=function(b){function d(){"in"!=e.hoverState&&f.detach(),e.$element.removeAttr("aria-describedby").trigger("hidden.bs."+e.type),b&&b()}var e=this,f=a(this.$tip),g=a.Event("hide.bs."+this.type);return this.$element.trigger(g),g.isDefaultPrevented()?void 0:(f.removeClass("in"),a.support.transition&&f.hasClass("fade")?f.one("bsTransitionEnd",d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this)},c.prototype.fixTitle=function(){var a=this.$element;(a.attr("title")||"string"!=typeof a.attr("data-original-title"))&&a.attr("data-original-title",a.attr("title")||"").attr("title","")},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d="BODY"==c.tagName,e=c.getBoundingClientRect();null==e.width&&(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=d?{top:0,left:0}:b.offset(),g={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},h=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,g,h,f)},c.prototype.getCalculatedOffset=function(a,b,c,d){return"bottom"==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:"top"==a?{top:b.top-d,left:b.left+b.width/2-c/2}:"left"==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&&this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h<g.top?e.top=g.top-h:i>g.top+g.height&&(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j<g.left?e.left=g.left-j:k>g.right&&(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr("data-original-title")||("function"==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&&(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+" `template` option must consist of exactly 1 top-level element!");return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".tooltip-arrow")},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&&(c=a(b.currentTarget).data("bs."+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data("bs."+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass("in")?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off("."+a.type).removeData("bs."+a.type),a.$tip&&a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.popover"),f="object"==typeof b&&b;(e||!/destroy|hide/.test(b))&&(e||d.data("bs.popover",e=new c(this,f)),"string"==typeof b&&e[b]())})}var c=function(a,b){this.init("popover",a,b)};if(!a.fn.tooltip)throw new Error("Popover requires tooltip.js");c.VERSION="3.3.6",c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:"right",trigger:"click",content:"",template:'<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(".popover-title")[this.options.html?"html":"text"](b),a.find(".popover-content").children().detach().end()[this.options.html?"string"==typeof c?"html":"append":"text"](c),a.removeClass("fade top bottom left right in"),a.find(".popover-title").html()||a.find(".popover-title").hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr("data-content")||("function"==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(".arrow")};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){"use strict";function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||"")+" .nav li > a",this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on("scroll.bs.scrollspy",a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data("bs.scrollspy"),f="object"==typeof c&&c;e||d.data("bs.scrollspy",e=new b(this,f)),"string"==typeof c&&e[c]()})}b.VERSION="3.3.6",b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c="offset",d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c="position",d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data("target")||b.attr("href"),f=/^#./.test(e)&&a(e);return f&&f.length&&f.is(":visible")&&[[f[c]().top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&&this.refresh(),b>=d)return g!=(a=f[f.length-1])&&this.activate(a);if(g&&b<e[0])return this.activeTarget=null,this.clear();for(a=e.length;a--;)g!=f[a]&&b>=e[a]&&(void 0===e[a+1]||b<e[a+1])&&this.activate(f[a])},b.prototype.activate=function(b){this.activeTarget=b,this.clear();var c=this.selector+'[data-target="'+b+'"],'+this.selector+'[href="'+b+'"]',d=a(c).parents("li").addClass("active"); +d.parent(".dropdown-menu").length&&(d=d.closest("li.dropdown").addClass("active")),d.trigger("activate.bs.scrollspy")},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,".active").removeClass("active")};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on("load.bs.scrollspy.data-api",function(){a('[data-spy="scroll"]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.tab");e||d.data("bs.tab",e=new c(this)),"string"==typeof b&&e[b]()})}var c=function(b){this.element=a(b)};c.VERSION="3.3.6",c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest("ul:not(.dropdown-menu)"),d=b.data("target");if(d||(d=b.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),!b.parent("li").hasClass("active")){var e=c.find(".active:last a"),f=a.Event("hide.bs.tab",{relatedTarget:b[0]}),g=a.Event("show.bs.tab",{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&&!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest("li"),c),this.activate(h,h.parent(),function(){e.trigger({type:"hidden.bs.tab",relatedTarget:b[0]}),b.trigger({type:"shown.bs.tab",relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass("active").find("> .dropdown-menu > .active").removeClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!1),b.addClass("active").find('[data-toggle="tab"]').attr("aria-expanded",!0),h?(b[0].offsetWidth,b.addClass("in")):b.removeClass("fade"),b.parent(".dropdown-menu").length&&b.closest("li.dropdown").addClass("active").end().find('[data-toggle="tab"]').attr("aria-expanded",!0),e&&e()}var g=d.find("> .active"),h=e&&a.support.transition&&(g.length&&g.hasClass("fade")||!!d.find("> .fade").length);g.length&&h?g.one("bsTransitionEnd",f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass("in")};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),"show")};a(document).on("click.bs.tab.data-api",'[data-toggle="tab"]',e).on("click.bs.tab.data-api",'[data-toggle="pill"]',e)}(jQuery),+function(a){"use strict";function b(b){return this.each(function(){var d=a(this),e=d.data("bs.affix"),f="object"==typeof b&&b;e||d.data("bs.affix",e=new c(this,f)),"string"==typeof b&&e[b]()})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on("scroll.bs.affix.data-api",a.proxy(this.checkPosition,this)).on("click.bs.affix.data-api",a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION="3.3.6",c.RESET="affix affix-top affix-bottom",c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&&"top"==this.affixed)return c>e?"top":!1;if("bottom"==this.affixed)return null!=c?e+this.unpin<=f.top?!1:"bottom":a-d>=e+g?!1:"bottom";var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&&c>=e?"top":null!=d&&i+j>=a-d?"bottom":!1},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass("affix");var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(":visible")){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());"object"!=typeof d&&(f=e=d),"function"==typeof e&&(e=d.top(this.$element)),"function"==typeof f&&(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&&this.$element.css("top","");var i="affix"+(h?"-"+h:""),j=a.Event(i+".bs.affix");if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin="bottom"==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace("affix","affixed")+".bs.affix")}"bottom"==h&&this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on("load",function(){a('[data-spy="affix"]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&&(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&&(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); \ No newline at end of file diff --git a/src/main/webapp/js/bootstrap/3.3.6/npm.js b/src/main/webapp/js/bootstrap/3.3.6/npm.js new file mode 100644 index 0000000..bf6aa80 --- /dev/null +++ b/src/main/webapp/js/bootstrap/3.3.6/npm.js @@ -0,0 +1,13 @@ +// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. +require('../../js/transition.js') +require('../../js/alert.js') +require('../../js/button.js') +require('../../js/carousel.js') +require('../../js/collapse.js') +require('../../js/dropdown.js') +require('../../js/modal.js') +require('../../js/tooltip.js') +require('../../js/popover.js') +require('../../js/scrollspy.js') +require('../../js/tab.js') +require('../../js/affix.js') \ No newline at end of file diff --git a/src/main/webapp/js/jquery/2.0.0/jquery.min.js b/src/main/webapp/js/jquery/2.0.0/jquery.min.js new file mode 100644 index 0000000..b18e05a --- /dev/null +++ b/src/main/webapp/js/jquery/2.0.0/jquery.min.js @@ -0,0 +1,6 @@ +/*! jQuery v2.0.0 | (c) 2005, 2013 jQuery Foundation, Inc. | jquery.org/license +//@ sourceMappingURL=jquery.min.map +*/ +(function(e,undefined){var t,n,r=typeof undefined,i=e.location,o=e.document,s=o.documentElement,a=e.jQuery,u=e.$,l={},c=[],f="2.0.0",p=c.concat,h=c.push,d=c.slice,g=c.indexOf,m=l.toString,y=l.hasOwnProperty,v=f.trim,x=function(e,n){return new x.fn.init(e,n,t)},b=/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source,w=/\S+/g,T=/^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^-ms-/,N=/-([\da-z])/gi,E=function(e,t){return t.toUpperCase()},S=function(){o.removeEventListener("DOMContentLoaded",S,!1),e.removeEventListener("load",S,!1),x.ready()};x.fn=x.prototype={jquery:f,constructor:x,init:function(e,t,n){var r,i;if(!e)return this;if("string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:T.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),C.test(r[1])&&x.isPlainObject(t))for(r in t)x.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return i=o.getElementById(r[2]),i&&i.parentNode&&(this.length=1,this[0]=i),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?n.ready(e):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return d.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,t,n,r,i,o,s=arguments[0]||{},a=1,u=arguments.length,l=!1;for("boolean"==typeof s&&(l=s,s=arguments[1]||{},a=2),"object"==typeof s||x.isFunction(s)||(s={}),u===a&&(s=this,--a);u>a;a++)if(null!=(e=arguments[a]))for(t in e)n=s[t],r=e[t],s!==r&&(l&&r&&(x.isPlainObject(r)||(i=x.isArray(r)))?(i?(i=!1,o=n&&x.isArray(n)?n:[]):o=n&&x.isPlainObject(n)?n:{},s[t]=x.extend(l,o,r)):r!==undefined&&(s[t]=r));return s},x.extend({expando:"jQuery"+(f+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=a),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){(e===!0?--x.readyWait:x.isReady)||(x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(o,[x]),x.fn.trigger&&x(o).trigger("ready").off("ready")))},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if("object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:JSON.parse,parseXML:function(e){var t,n;if(!e||"string"!=typeof e)return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&x.error("Invalid XML: "+e),t},noop:function(){},globalEval:function(e){var t,n=eval;e=x.trim(e),e&&(1===e.indexOf("use strict")?(t=o.createElement("script"),t.text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(k,"ms-").replace(N,E)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,s=j(e);if(n){if(s){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(s){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:function(e){return null==e?"":v.call(e)},makeArray:function(e,t){var n=t||[];return null!=e&&(j(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:g.call(t,e,n)},merge:function(e,t){var n=t.length,r=e.length,i=0;if("number"==typeof n)for(;n>i;i++)e[r++]=t[i];else while(t[i]!==undefined)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){var r,i=[],o=0,s=e.length;for(n=!!n;s>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,s=j(e),a=[];if(s)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(a[a.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(a[a.length]=r);return p.apply([],a)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(n=e[t],t=e,e=n),x.isFunction(e)?(r=d.call(arguments,2),i=function(){return e.apply(t||this,r.concat(d.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):undefined},access:function(e,t,n,r,i,o,s){var a=0,u=e.length,l=null==n;if("object"===x.type(n)){i=!0;for(a in n)x.access(e,t,a,n[a],!0,o,s)}else if(r!==undefined&&(i=!0,x.isFunction(r)||(s=!0),l&&(s?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;u>a;a++)t(e[a],n,s?r:r.call(e[a],a,t(e[a],n)));return i?e:l?t.call(e):u?t(e[0],n):o},now:Date.now,swap:function(e,t,n,r){var i,o,s={};for(o in t)s[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=s[o];return i}}),x.ready.promise=function(t){return n||(n=x.Deferred(),"complete"===o.readyState?setTimeout(x.ready):(o.addEventListener("DOMContentLoaded",S,!1),e.addEventListener("load",S,!1))),n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function j(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}t=x(o),function(e,undefined){var t,n,r,i,o,s,a,u,l,c,f,p,h,d,g,m,y="sizzle"+-new Date,v=e.document,b={},w=0,T=0,C=ot(),k=ot(),N=ot(),E=!1,S=function(){return 0},j=typeof undefined,D=1<<31,A=[],L=A.pop,q=A.push,H=A.push,O=A.slice,F=A.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},P="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",R="[\\x20\\t\\r\\n\\f]",M="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",W=M.replace("w","w#"),$="\\["+R+"*("+M+")"+R+"*(?:([*^$|!~]?=)"+R+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+W+")|)|)"+R+"*\\]",B=":("+M+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+$.replace(3,8)+")*)|.*)\\)|)",I=RegExp("^"+R+"+|((?:^|[^\\\\])(?:\\\\.)*)"+R+"+$","g"),z=RegExp("^"+R+"*,"+R+"*"),_=RegExp("^"+R+"*([>+~]|"+R+")"+R+"*"),X=RegExp(R+"*[+~]"),U=RegExp("="+R+"*([^\\]'\"]*)"+R+"*\\]","g"),Y=RegExp(B),V=RegExp("^"+W+"$"),G={ID:RegExp("^#("+M+")"),CLASS:RegExp("^\\.("+M+")"),TAG:RegExp("^("+M.replace("w","w*")+")"),ATTR:RegExp("^"+$),PSEUDO:RegExp("^"+B),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+R+"*(even|odd|(([+-]|)(\\d*)n|)"+R+"*(?:([+-]|)"+R+"*(\\d+)|))"+R+"*\\)|)","i"),"boolean":RegExp("^(?:"+P+")$","i"),needsContext:RegExp("^"+R+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+R+"*((?:-\\d)?\\d*)"+R+"*\\)|)(?=[^-]|$)","i")},J=/^[^{]+\{\s*\[native \w/,Q=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,K=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,et=/'|\\/g,tt=/\\([\da-fA-F]{1,6}[\x20\t\r\n\f]?|.)/g,nt=function(e,t){var n="0x"+t-65536;return n!==n?t:0>n?String.fromCharCode(n+65536):String.fromCharCode(55296|n>>10,56320|1023&n)};try{H.apply(A=O.call(v.childNodes),v.childNodes),A[v.childNodes.length].nodeType}catch(rt){H={apply:A.length?function(e,t){q.apply(e,O.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function it(e){return J.test(e+"")}function ot(){var e,t=[];return e=function(n,i){return t.push(n+=" ")>r.cacheLength&&delete e[t.shift()],e[n]=i}}function st(e){return e[y]=!0,e}function at(e){var t=c.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function ut(e,t,n,r){var i,o,s,a,u,f,d,g,x,w;if((t?t.ownerDocument||t:v)!==c&&l(t),t=t||c,n=n||[],!e||"string"!=typeof e)return n;if(1!==(a=t.nodeType)&&9!==a)return[];if(p&&!r){if(i=Q.exec(e))if(s=i[1]){if(9===a){if(o=t.getElementById(s),!o||!o.parentNode)return n;if(o.id===s)return n.push(o),n}else if(t.ownerDocument&&(o=t.ownerDocument.getElementById(s))&&m(t,o)&&o.id===s)return n.push(o),n}else{if(i[2])return H.apply(n,t.getElementsByTagName(e)),n;if((s=i[3])&&b.getElementsByClassName&&t.getElementsByClassName)return H.apply(n,t.getElementsByClassName(s)),n}if(b.qsa&&(!h||!h.test(e))){if(g=d=y,x=t,w=9===a&&e,1===a&&"object"!==t.nodeName.toLowerCase()){f=gt(e),(d=t.getAttribute("id"))?g=d.replace(et,"\\$&"):t.setAttribute("id",g),g="[id='"+g+"'] ",u=f.length;while(u--)f[u]=g+mt(f[u]);x=X.test(e)&&t.parentNode||t,w=f.join(",")}if(w)try{return H.apply(n,x.querySelectorAll(w)),n}catch(T){}finally{d||t.removeAttribute("id")}}}return kt(e.replace(I,"$1"),t,n,r)}o=ut.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},l=ut.setDocument=function(e){var t=e?e.ownerDocument||e:v;return t!==c&&9===t.nodeType&&t.documentElement?(c=t,f=t.documentElement,p=!o(t),b.getElementsByTagName=at(function(e){return e.appendChild(t.createComment("")),!e.getElementsByTagName("*").length}),b.attributes=at(function(e){return e.className="i",!e.getAttribute("className")}),b.getElementsByClassName=at(function(e){return e.innerHTML="<div class='a'></div><div class='a i'></div>",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),b.sortDetached=at(function(e){return 1&e.compareDocumentPosition(c.createElement("div"))}),b.getById=at(function(e){return f.appendChild(e).id=y,!t.getElementsByName||!t.getElementsByName(y).length}),b.getById?(r.find.ID=function(e,t){if(typeof t.getElementById!==j&&p){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},r.filter.ID=function(e){var t=e.replace(tt,nt);return function(e){return e.getAttribute("id")===t}}):(r.find.ID=function(e,t){if(typeof t.getElementById!==j&&p){var n=t.getElementById(e);return n?n.id===e||typeof n.getAttributeNode!==j&&n.getAttributeNode("id").value===e?[n]:undefined:[]}},r.filter.ID=function(e){var t=e.replace(tt,nt);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),r.find.TAG=b.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==j?t.getElementsByTagName(e):undefined}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=b.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==j&&p?t.getElementsByClassName(e):undefined},d=[],h=[],(b.qsa=it(t.querySelectorAll))&&(at(function(e){e.innerHTML="<select><option selected=''></option></select>",e.querySelectorAll("[selected]").length||h.push("\\["+R+"*(?:value|"+P+")"),e.querySelectorAll(":checked").length||h.push(":checked")}),at(function(e){var t=c.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&h.push("[*^$]="+R+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||h.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),h.push(",.*:")})),(b.matchesSelector=it(g=f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&at(function(e){b.disconnectedMatch=g.call(e,"div"),g.call(e,"[s!='']:x"),d.push("!=",B)}),h=h.length&&RegExp(h.join("|")),d=d.length&&RegExp(d.join("|")),m=it(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},S=f.compareDocumentPosition?function(e,n){if(e===n)return E=!0,0;var r=n.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(n);return r?1&r||!b.sortDetached&&n.compareDocumentPosition(e)===r?e===t||m(v,e)?-1:n===t||m(v,n)?1:u?F.call(u,e)-F.call(u,n):0:4&r?-1:1:e.compareDocumentPosition?-1:1}:function(e,n){var r,i=0,o=e.parentNode,s=n.parentNode,a=[e],l=[n];if(e===n)return E=!0,0;if(!o||!s)return e===t?-1:n===t?1:o?-1:s?1:u?F.call(u,e)-F.call(u,n):0;if(o===s)return lt(e,n);r=e;while(r=r.parentNode)a.unshift(r);r=n;while(r=r.parentNode)l.unshift(r);while(a[i]===l[i])i++;return i?lt(a[i],l[i]):a[i]===v?-1:l[i]===v?1:0},c):c},ut.matches=function(e,t){return ut(e,null,null,t)},ut.matchesSelector=function(e,t){if((e.ownerDocument||e)!==c&&l(e),t=t.replace(U,"='$1']"),!(!b.matchesSelector||!p||d&&d.test(t)||h&&h.test(t)))try{var n=g.call(e,t);if(n||b.disconnectedMatch||e.document&&11!==e.document.nodeType)return n}catch(r){}return ut(t,c,null,[e]).length>0},ut.contains=function(e,t){return(e.ownerDocument||e)!==c&&l(e),m(e,t)},ut.attr=function(e,t){(e.ownerDocument||e)!==c&&l(e);var n=r.attrHandle[t.toLowerCase()],i=n&&n(e,t,!p);return i===undefined?b.attributes||!p?e.getAttribute(t):(i=e.getAttributeNode(t))&&i.specified?i.value:null:i},ut.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},ut.uniqueSort=function(e){var t,n=[],r=0,i=0;if(E=!b.detectDuplicates,u=!b.sortStable&&e.slice(0),e.sort(S),E){while(t=e[i++])t===e[i]&&(r=n.push(i));while(r--)e.splice(n[r],1)}return e};function lt(e,t){var n=t&&e,r=n&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function ct(e,t,n){var r;return n?undefined:(r=e.getAttributeNode(t))&&r.specified?r.value:e[t]===!0?t.toLowerCase():null}function ft(e,t,n){var r;return n?undefined:r=e.getAttribute(t,"type"===t.toLowerCase()?1:2)}function pt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ht(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function dt(e){return st(function(t){return t=+t,st(function(n,r){var i,o=e([],n.length,t),s=o.length;while(s--)n[i=o[s]]&&(n[i]=!(r[i]=n[i]))})})}i=ut.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r];r++)n+=i(t);return n},r=ut.selectors={cacheLength:50,createPseudo:st,match:G,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(tt,nt),e[3]=(e[4]||e[5]||"").replace(tt,nt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ut.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ut.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return G.CHILD.test(e[0])?null:(e[4]?e[2]=e[4]:n&&Y.test(n)&&(t=gt(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(tt,nt).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=RegExp("(^|"+R+")"+e+"("+R+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ut.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,f,p,h,d,g=o!==s?"nextSibling":"previousSibling",m=t.parentNode,v=a&&t.nodeName.toLowerCase(),x=!u&&!a;if(m){if(o){while(g){f=t;while(f=f[g])if(a?f.nodeName.toLowerCase()===v:1===f.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&x){c=m[y]||(m[y]={}),l=c[e]||[],h=l[0]===w&&l[1],p=l[0]===w&&l[2],f=h&&m.childNodes[h];while(f=++h&&f&&f[g]||(p=h=0)||d.pop())if(1===f.nodeType&&++p&&f===t){c[e]=[w,h,p];break}}else if(x&&(l=(t[y]||(t[y]={}))[e])&&l[0]===w)p=l[1];else while(f=++h&&f&&f[g]||(p=h=0)||d.pop())if((a?f.nodeName.toLowerCase()===v:1===f.nodeType)&&++p&&(x&&((f[y]||(f[y]={}))[e]=[w,p]),f===t))break;return p-=i,p===r||0===p%r&&p/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||ut.error("unsupported pseudo: "+e);return i[y]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?st(function(e,n){var r,o=i(e,t),s=o.length;while(s--)r=F.call(e,o[s]),e[r]=!(n[r]=o[s])}):function(e){return i(e,0,n)}):i}},pseudos:{not:st(function(e){var t=[],n=[],r=s(e.replace(I,"$1"));return r[y]?st(function(e,t,n,i){var o,s=r(e,null,i,[]),a=e.length;while(a--)(o=s[a])&&(e[a]=!(t[a]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:st(function(e){return function(t){return ut(e,t).length>0}}),contains:st(function(e){return function(t){return(t.textContent||t.innerText||i(t)).indexOf(e)>-1}}),lang:st(function(e){return V.test(e||"")||ut.error("unsupported lang: "+e),e=e.replace(tt,nt).toLowerCase(),function(t){var n;do if(n=p?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===c.activeElement&&(!c.hasFocus||c.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return Z.test(e.nodeName)},input:function(e){return K.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:dt(function(){return[0]}),last:dt(function(e,t){return[t-1]}),eq:dt(function(e,t,n){return[0>n?n+t:n]}),even:dt(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:dt(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:dt(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:dt(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}};for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})r.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})r.pseudos[t]=ht(t);function gt(e,t){var n,i,o,s,a,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);a=e,u=[],l=r.preFilter;while(a){(!n||(i=z.exec(a)))&&(i&&(a=a.slice(i[0].length)||a),u.push(o=[])),n=!1,(i=_.exec(a))&&(n=i.shift(),o.push({value:n,type:i[0].replace(I," ")}),a=a.slice(n.length));for(s in r.filter)!(i=G[s].exec(a))||l[s]&&!(i=l[s](i))||(n=i.shift(),o.push({value:n,type:s,matches:i}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ut.error(e):k(e,u).slice(0)}function mt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function yt(e,t,r){var i=t.dir,o=r&&"parentNode"===i,s=T++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,r,a){var u,l,c,f=w+" "+s;if(a){while(t=t[i])if((1===t.nodeType||o)&&e(t,r,a))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[y]||(t[y]={}),(l=c[i])&&l[0]===f){if((u=l[1])===!0||u===n)return u===!0}else if(l=c[i]=[f],l[1]=e(t,r,a)||n,l[1]===!0)return!0}}function vt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,s=[],a=0,u=e.length,l=null!=t;for(;u>a;a++)(o=e[a])&&(!n||n(o,r,i))&&(s.push(o),l&&t.push(a));return s}function bt(e,t,n,r,i,o){return r&&!r[y]&&(r=bt(r)),i&&!i[y]&&(i=bt(i,o)),st(function(o,s,a,u){var l,c,f,p=[],h=[],d=s.length,g=o||Ct(t||"*",a.nodeType?[a]:a,[]),m=!e||!o&&t?g:xt(g,p,e,a,u),y=n?i||(o?e:d||r)?[]:s:m;if(n&&n(m,y,a,u),r){l=xt(y,h),r(l,[],a,u),c=l.length;while(c--)(f=l[c])&&(y[h[c]]=!(m[h[c]]=f))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(f=y[c])&&l.push(m[c]=f);i(null,y=[],l,u)}c=y.length;while(c--)(f=y[c])&&(l=i?F.call(o,f):p[c])>-1&&(o[l]=!(s[l]=f))}}else y=xt(y===s?y.splice(d,y.length):y),i?i(null,s,y,u):H.apply(s,y)})}function wt(e){var t,n,i,o=e.length,s=r.relative[e[0].type],u=s||r.relative[" "],l=s?1:0,c=yt(function(e){return e===t},u,!0),f=yt(function(e){return F.call(t,e)>-1},u,!0),p=[function(e,n,r){return!s&&(r||n!==a)||((t=n).nodeType?c(e,n,r):f(e,n,r))}];for(;o>l;l++)if(n=r.relative[e[l].type])p=[yt(vt(p),n)];else{if(n=r.filter[e[l].type].apply(null,e[l].matches),n[y]){for(i=++l;o>i;i++)if(r.relative[e[i].type])break;return bt(l>1&&vt(p),l>1&&mt(e.slice(0,l-1)).replace(I,"$1"),n,i>l&&wt(e.slice(l,i)),o>i&&wt(e=e.slice(i)),o>i&&mt(e))}p.push(n)}return vt(p)}function Tt(e,t){var i=0,o=t.length>0,s=e.length>0,u=function(u,l,f,p,h){var d,g,m,y=[],v=0,x="0",b=u&&[],T=null!=h,C=a,k=u||s&&r.find.TAG("*",h&&l.parentNode||l),N=w+=null==C?1:Math.random()||.1;for(T&&(a=l!==c&&l,n=i);null!=(d=k[x]);x++){if(s&&d){g=0;while(m=e[g++])if(m(d,l,f)){p.push(d);break}T&&(w=N,n=++i)}o&&((d=!m&&d)&&v--,u&&b.push(d))}if(v+=x,o&&x!==v){g=0;while(m=t[g++])m(b,y,l,f);if(u){if(v>0)while(x--)b[x]||y[x]||(y[x]=L.call(p));y=xt(y)}H.apply(p,y),T&&!u&&y.length>0&&v+t.length>1&&ut.uniqueSort(p)}return T&&(w=N,a=C),b};return o?st(u):u}s=ut.compile=function(e,t){var n,r=[],i=[],o=N[e+" "];if(!o){t||(t=gt(e)),n=t.length;while(n--)o=wt(t[n]),o[y]?r.push(o):i.push(o);o=N(e,Tt(i,r))}return o};function Ct(e,t,n){var r=0,i=t.length;for(;i>r;r++)ut(e,t[r],n);return n}function kt(e,t,n,i){var o,a,u,l,c,f=gt(e);if(!i&&1===f.length){if(a=f[0]=f[0].slice(0),a.length>2&&"ID"===(u=a[0]).type&&9===t.nodeType&&p&&r.relative[a[1].type]){if(t=(r.find.ID(u.matches[0].replace(tt,nt),t)||[])[0],!t)return n;e=e.slice(a.shift().value.length)}o=G.needsContext.test(e)?0:a.length;while(o--){if(u=a[o],r.relative[l=u.type])break;if((c=r.find[l])&&(i=c(u.matches[0].replace(tt,nt),X.test(a[0].type)&&t.parentNode||t))){if(a.splice(o,1),e=i.length&&mt(a),!e)return H.apply(n,i),n;break}}}return s(e,f)(i,t,!p,n,X.test(e)),n}r.pseudos.nth=r.pseudos.eq;function Nt(){}Nt.prototype=r.filters=r.pseudos,r.setFilters=new Nt,b.sortStable=y.split("").sort(S).join("")===y,l(),[0,0].sort(S),b.detectDuplicates=E,at(function(e){if(e.innerHTML="<a href='#'></a>","#"!==e.firstChild.getAttribute("href")){var t="type|href|height|width".split("|"),n=t.length;while(n--)r.attrHandle[t[n]]=ft}}),at(function(e){if(null!=e.getAttribute("disabled")){var t=P.split("|"),n=t.length;while(n--)r.attrHandle[t[n]]=ct}}),x.find=ut,x.expr=ut.selectors,x.expr[":"]=x.expr.pseudos,x.unique=ut.uniqueSort,x.text=ut.getText,x.isXMLDoc=ut.isXML,x.contains=ut.contains}(e);var D={};function A(e){var t=D[e]={};return x.each(e.match(w)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?D[e]||A(e):x.extend({},e);var t,n,r,i,o,s,a=[],u=!e.once&&[],l=function(f){for(t=e.memory&&f,n=!0,s=i||0,i=0,o=a.length,r=!0;a&&o>s;s++)if(a[s].apply(f[0],f[1])===!1&&e.stopOnFalse){t=!1;break}r=!1,a&&(u?u.length&&l(u.shift()):t?a=[]:c.disable())},c={add:function(){if(a){var n=a.length;(function s(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&c.has(n)||a.push(n):n&&n.length&&"string"!==r&&s(n)})})(arguments),r?o=a.length:t&&(i=n,l(t))}return this},remove:function(){return a&&x.each(arguments,function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),r&&(o>=n&&o--,s>=n&&s--)}),this},has:function(e){return e?x.inArray(e,a)>-1:!(!a||!a.length)},empty:function(){return a=[],o=0,this},disable:function(){return a=u=t=undefined,this},disabled:function(){return!a},lock:function(){return u=undefined,t||c.disable(),this},locked:function(){return!u},fireWith:function(e,t){return t=t||[],t=[e,t.slice?t.slice():t],!a||n&&!u||(r?u.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var s=o[0],a=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var s=o[2],a=o[3];r[o[1]]=s.add,a&&s.add(function(){n=a},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=s.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=d.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),s=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?d.call(arguments):r,n===a?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},a,u,l;if(r>1)for(a=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(s(t,l,n)).fail(o.reject).progress(s(t,u,a)):--i;return i||o.resolveWith(l,n),o.promise()}}),x.support=function(t){var n=o.createElement("input"),r=o.createDocumentFragment(),i=o.createElement("div"),s=o.createElement("select"),a=s.appendChild(o.createElement("option"));return n.type?(n.type="checkbox",t.checkOn=""!==n.value,t.optSelected=a.selected,t.reliableMarginRight=!0,t.boxSizingReliable=!0,t.pixelPosition=!1,n.checked=!0,t.noCloneChecked=n.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!a.disabled,n=o.createElement("input"),n.value="t",n.type="radio",t.radioValue="t"===n.value,n.setAttribute("checked","t"),n.setAttribute("name","t"),r.appendChild(n),t.checkClone=r.cloneNode(!0).cloneNode(!0).lastChild.checked,t.focusinBubbles="onfocusin"in e,i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===i.style.backgroundClip,x(function(){var n,r,s="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",a=o.getElementsByTagName("body")[0];a&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(i),i.innerHTML="",i.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",x.swap(a,null!=a.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===i.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(i,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(i,null)||{width:"4px"}).width,r=i.appendChild(o.createElement("div")),r.style.cssText=i.style.cssText=s,r.style.marginRight=r.style.width="0",i.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),a.removeChild(n))}),t):t}({});var L,q,H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,O=/([A-Z])/g;function F(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=x.expando+Math.random()}F.uid=1,F.accepts=function(e){return e.nodeType?1===e.nodeType||9===e.nodeType:!0},F.prototype={key:function(e){if(!F.accepts(e))return 0;var t={},n=e[this.expando];if(!n){n=F.uid++;try{t[this.expando]={value:n},Object.defineProperties(e,t)}catch(r){t[this.expando]=n,x.extend(e,t)}}return this.cache[n]||(this.cache[n]={}),n},set:function(e,t,n){var r,i=this.key(e),o=this.cache[i];if("string"==typeof t)o[t]=n;else if(x.isEmptyObject(o))this.cache[i]=t;else for(r in t)o[r]=t[r]},get:function(e,t){var n=this.cache[this.key(e)];return t===undefined?n:n[t]},access:function(e,t,n){return t===undefined||t&&"string"==typeof t&&n===undefined?this.get(e,t):(this.set(e,t,n),n!==undefined?n:t)},remove:function(e,t){var n,r,i=this.key(e),o=this.cache[i];if(t===undefined)this.cache[i]={};else{x.isArray(t)?r=t.concat(t.map(x.camelCase)):t in o?r=[t]:(r=x.camelCase(t),r=r in o?[r]:r.match(w)||[]),n=r.length;while(n--)delete o[r[n]]}},hasData:function(e){return!x.isEmptyObject(this.cache[e[this.expando]]||{})},discard:function(e){delete this.cache[this.key(e)]}},L=new F,q=new F,x.extend({acceptData:F.accepts,hasData:function(e){return L.hasData(e)||q.hasData(e)},data:function(e,t,n){return L.access(e,t,n)},removeData:function(e,t){L.remove(e,t)},_data:function(e,t,n){return q.access(e,t,n)},_removeData:function(e,t){q.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,r,i=this[0],o=0,s=null;if(e===undefined){if(this.length&&(s=L.get(i),1===i.nodeType&&!q.get(i,"hasDataAttrs"))){for(n=i.attributes;n.length>o;o++)r=n[o].name,0===r.indexOf("data-")&&(r=x.camelCase(r.substring(5)),P(i,r,s[r]));q.set(i,"hasDataAttrs",!0)}return s}return"object"==typeof e?this.each(function(){L.set(this,e)}):x.access(this,function(t){var n,r=x.camelCase(e);if(i&&t===undefined){if(n=L.get(i,e),n!==undefined)return n;if(n=L.get(i,r),n!==undefined)return n;if(n=P(i,r,undefined),n!==undefined)return n}else this.each(function(){var n=L.get(this,r);L.set(this,r,t),-1!==e.indexOf("-")&&n!==undefined&&L.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){L.remove(this,e)})}});function P(e,t,n){var r;if(n===undefined&&1===e.nodeType)if(r="data-"+t.replace(O,"-$1").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:H.test(n)?JSON.parse(n):n}catch(i){}L.set(e,t,n)}else n=undefined;return n}x.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=q.get(e,t),n&&(!r||x.isArray(n)?r=q.access(e,t,x.makeArray(n)):r.push(n)),r||[]):undefined},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),s=function(){x.dequeue(e,t)};"inprogress"===i&&(i=n.shift(),r--),o.cur=i,i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q.access(e,n,{empty:x.Callbacks("once memory").add(function(){q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),n>arguments.length?x.queue(this[0],e):t===undefined?this:this.each(function(){var n=x.queue(this,e,t); +x._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=undefined),e=e||"fx";while(s--)n=q.get(o[s],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(a));return a(),i.promise(t)}});var R,M,W=/[\t\r\n]/g,$=/\r/g,B=/^(?:input|select|textarea|button)$/i;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})},addClass:function(e){var t,n,r,i,o,s=0,a=this.length,u="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,s=0,a=this.length,u=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e,i="boolean"==typeof t;return x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var o,s=0,a=x(this),u=t,l=e.match(w)||[];while(o=l[s++])u=i?u:!a.hasClass(o),a[u?"addClass":"removeClass"](o)}else(n===r||"boolean"===n)&&(this.className&&q.set(this,"__className__",this.className),this.className=this.className||e===!1?"":q.get(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(W," ").indexOf(t)>=0)return!0;return!1},val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=x.isFunction(e),this.each(function(n){var i,o=x(this);1===this.nodeType&&(i=r?e.call(this,n,o.val()):e,null==i?i="":"number"==typeof i?i+="":x.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&t.set(this,i,"value")!==undefined||(this.value=i))});if(i)return t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,"string"==typeof n?n.replace($,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,s=o?null:[],a=o?i+1:r.length,u=0>i?a:o?i:0;for(;a>u;u++)if(n=r[u],!(!n.selected&&u!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),s=i.length;while(s--)r=i[s],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,t,n){var i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===r?x.prop(e,t,n):(1===s&&x.isXMLDoc(e)||(t=t.toLowerCase(),i=x.attrHooks[t]||(x.expr.match.boolean.test(t)?M:R)),n===undefined?i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=x.find.attr(e,t),null==o?undefined:o):null!==n?i&&"set"in i&&(o=i.set(e,n,t))!==undefined?o:(e.setAttribute(t,n+""),n):(x.removeAttr(e,t),undefined))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.boolean.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return o=1!==s||!x.isXMLDoc(e),o&&(t=x.propFix[t]||t,i=x.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||B.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),M={set:function(e,t,n){return t===!1?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.boolean.source.match(/\w+/g),function(e,t){var n=x.expr.attrHandle[t]||x.find.attr;x.expr.attrHandle[t]=function(e,t,r){var i=x.expr.attrHandle[t],o=r?undefined:(x.expr.attrHandle[t]=undefined)!=n(e,t,r)?t.toLowerCase():null;return x.expr.attrHandle[t]=i,o}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){return x.isArray(t)?e.checked=x.inArray(x(e).val(),t)>=0:undefined}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var I=/^key/,z=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,X=/^([^.]*)(?:\.(.+)|)$/;function U(){return!0}function Y(){return!1}function V(){try{return o.activeElement}catch(e){}}x.event={global:{},add:function(e,t,n,i,o){var s,a,u,l,c,f,p,h,d,g,m,y=q.get(e);if(y){n.handler&&(s=n,n=s.handler,o=s.selector),n.guid||(n.guid=x.guid++),(l=y.events)||(l=y.events={}),(a=y.handle)||(a=y.handle=function(e){return typeof x===r||e&&x.event.triggered===e.type?undefined:x.event.dispatch.apply(a.elem,arguments)},a.elem=e),t=(t||"").match(w)||[""],c=t.length;while(c--)u=X.exec(t[c])||[],d=m=u[1],g=(u[2]||"").split(".").sort(),d&&(p=x.event.special[d]||{},d=(o?p.delegateType:p.bindType)||d,p=x.event.special[d]||{},f=x.extend({type:d,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&x.expr.match.needsContext.test(o),namespace:g.join(".")},s),(h=l[d])||(h=l[d]=[],h.delegateCount=0,p.setup&&p.setup.call(e,i,g,a)!==!1||e.addEventListener&&e.addEventListener(d,a,!1)),p.add&&(p.add.call(e,f),f.handler.guid||(f.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,f):h.push(f),x.event.global[d]=!0);e=null}},remove:function(e,t,n,r,i){var o,s,a,u,l,c,f,p,h,d,g,m=q.hasData(e)&&q.get(e);if(m&&(u=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(a=X.exec(t[l])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){f=x.event.special[h]||{},h=(r?f.delegateType:f.bindType)||h,p=u[h]||[],a=a[2]&&RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=o=p.length;while(o--)c=p[o],!i&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(p.splice(o,1),c.selector&&p.delegateCount--,f.remove&&f.remove.call(e,c));s&&!p.length&&(f.teardown&&f.teardown.call(e,d,m.handle)!==!1||x.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)x.event.remove(e,h+t[l],n,r,!0);x.isEmptyObject(u)&&(delete m.handle,q.remove(e,"events"))}},trigger:function(t,n,r,i){var s,a,u,l,c,f,p,h=[r||o],d=y.call(t,"type")?t.type:t,g=y.call(t,"namespace")?t.namespace.split("."):[];if(a=u=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!_.test(d+x.event.triggered)&&(d.indexOf(".")>=0&&(g=d.split("."),d=g.shift(),g.sort()),c=0>d.indexOf(":")&&"on"+d,t=t[x.expando]?t:new x.Event(d,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=g.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=undefined,t.target||(t.target=r),n=null==n?[t]:x.makeArray(n,[t]),p=x.event.special[d]||{},i||!p.trigger||p.trigger.apply(r,n)!==!1)){if(!i&&!p.noBubble&&!x.isWindow(r)){for(l=p.delegateType||d,_.test(l+d)||(a=a.parentNode);a;a=a.parentNode)h.push(a),u=a;u===(r.ownerDocument||o)&&h.push(u.defaultView||u.parentWindow||e)}s=0;while((a=h[s++])&&!t.isPropagationStopped())t.type=s>1?l:p.bindType||d,f=(q.get(a,"events")||{})[t.type]&&q.get(a,"handle"),f&&f.apply(a,n),f=c&&a[c],f&&x.acceptData(a)&&f.apply&&f.apply(a,n)===!1&&t.preventDefault();return t.type=d,i||t.isDefaultPrevented()||p._default&&p._default.apply(h.pop(),n)!==!1||!x.acceptData(r)||c&&x.isFunction(r[d])&&!x.isWindow(r)&&(u=r[c],u&&(r[c]=null),x.event.triggered=d,r[d](),x.event.triggered=undefined,u&&(r[c]=u)),t.result}},dispatch:function(e){e=x.event.fix(e);var t,n,r,i,o,s=[],a=d.call(arguments),u=(q.get(this,"events")||{})[e.type]||[],l=x.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),t=0;while((i=s[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(o.namespace))&&(e.handleObj=o,e.data=o.data,r=((x.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,s=[],a=t.delegateCount,u=e.target;if(a&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!==this;u=u.parentNode||this)if(u.disabled!==!0||"click"!==e.type){for(r=[],n=0;a>n;n++)o=t[n],i=o.selector+" ",r[i]===undefined&&(r[i]=o.needsContext?x(i,this).index(u)>=0:x.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&s.push({elem:u,handlers:r})}return t.length>a&&s.push({elem:this,handlers:t.slice(a)}),s},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,s=t.button;return null==e.pageX&&null!=t.clientX&&(n=e.target.ownerDocument||o,r=n.documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||s===undefined||(e.which=1&s?1:2&s?3:4&s?2:0),e}},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,o=e,s=this.fixHooks[i];s||(this.fixHooks[i]=s=z.test(i)?this.mouseHooks:I.test(i)?this.keyHooks:{}),r=s.props?this.props.concat(s.props):this.props,e=new x.Event(o),t=r.length;while(t--)n=r[t],e[n]=o[n];return 3===e.target.nodeType&&(e.target=e.target.parentNode),s.filter?s.filter(e,o):e},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==V()&&this.focus?(this.focus(),!1):undefined},delegateType:"focusin"},blur:{trigger:function(){return this===V()&&this.blur?(this.blur(),!1):undefined},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&x.nodeName(this,"input")?(this.click(),!1):undefined},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==undefined&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)},x.Event=function(e,t){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.getPreventDefault&&e.getPreventDefault()?U:Y):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,undefined):new x.Event(e,t)},x.Event.prototype={isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=U,e&&e.preventDefault&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=U,e&&e.stopPropagation&&e.stopPropagation()},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=U,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,t,n,r,i){var o,s;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=undefined);for(s in e)this.on(s,t,n,e[s],i);return this}if(null==n&&null==r?(r=t,n=t=undefined):null==r&&("string"==typeof t?(r=n,n=undefined):(r=n,n=t,t=undefined)),r===!1)r=Y;else if(!r)return this;return 1===i&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),this.each(function(){x.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,x(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=undefined),n===!1&&(n=Y),this.each(function(){x.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?x.event.trigger(e,t,n,!0):undefined}});var G=/^.[^:#\[\.,]*$/,J=x.expr.match.needsContext,Q={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n,r,i=this.length;if("string"!=typeof e)return t=this,this.pushStack(x(e).filter(function(){for(r=0;i>r;r++)if(x.contains(t[r],this))return!0}));for(n=[],r=0;i>r;r++)x.find(e,this[r],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=(this.selector?this.selector+" ":"")+e,n},has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){var e=0;for(;n>e;e++)if(x.contains(this,t[e]))return!0})},not:function(e){return this.pushStack(Z(this,e||[],!0))},filter:function(e){return this.pushStack(Z(this,e||[],!1))},is:function(e){return!!e&&("string"==typeof e?J.test(e)?x(e,this.context).index(this[0])>=0:x.filter(e,this).length>0:this.filter(e).length>0)},closest:function(e,t){var n,r=0,i=this.length,o=[],s=J.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(s?s.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?g.call(x(e),this[0]):g.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function K(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return K(e,"nextSibling")},prev:function(e){return K(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return x.nodeName(e,"iframe")?e.contentDocument||e.contentWindow.document:x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(Q[e]||x.unique(i),"p"===e[0]&&i.reverse()),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function Z(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(G.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return g.call(t,e)>=0!==n})}var et=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,tt=/<([\w:]+)/,nt=/<|&#?\w+;/,rt=/<(?:script|style|link)/i,it=/^(?:checkbox|radio)$/i,ot=/checked\s*(?:[^=]|=\s*.checked.)/i,st=/^$|\/(?:java|ecma)script/i,at=/^true\/(.*)/,ut=/^\s*<!(?:\[CDATA\[|--)|(?:\]\]|--)>\s*$/g,lt={option:[1,"<select multiple='multiple'>","</select>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],_default:[0,"",""]};lt.optgroup=lt.option,lt.tbody=lt.tfoot=lt.colgroup=lt.caption=lt.col=lt.thead,lt.th=lt.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===undefined?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ct(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=ct(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(gt(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&ht(gt(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(gt(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!rt.test(e)&&!lt[(tt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(et,"<$1></$2>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(gt(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=p.apply([],e);var r,i,o,s,a,u,l=0,c=this.length,f=this,h=c-1,d=e[0],g=x.isFunction(d);if(g||!(1>=c||"string"!=typeof d||x.support.checkClone)&&ot.test(d))return this.each(function(r){var i=f.eq(r);g&&(e[0]=d.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(r=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),i=r.firstChild,1===r.childNodes.length&&(r=i),i)){for(o=x.map(gt(r,"script"),ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,gt(a,"script"))),t.call(this[l],a,l);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,pt),l=0;s>l;l++)a=o[l],st.test(a.type||"")&&!q.access(a,"globalEval")&&x.contains(u,a)&&(a.src?x._evalUrl(a.src):x.globalEval(a.textContent.replace(ut,"")))}return this}}),x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=[],i=x(e),o=i.length-1,s=0;for(;o>=s;s++)n=s===o?this:this.clone(!0),x(i[s])[t](n),h.apply(r,n.get());return this.pushStack(r)}}),x.extend({clone:function(e,t,n){var r,i,o,s,a=e.cloneNode(!0),u=x.contains(e.ownerDocument,e);if(!(x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(s=gt(a),o=gt(e),r=0,i=o.length;i>r;r++)mt(o[r],s[r]);if(t)if(n)for(o=o||gt(e),s=s||gt(a),r=0,i=o.length;i>r;r++)dt(o[r],s[r]);else dt(e,a);return s=gt(a,"script"),s.length>0&&ht(s,!u&>(e,"script")),a},buildFragment:function(e,t,n,r){var i,o,s,a,u,l,c=0,f=e.length,p=t.createDocumentFragment(),h=[];for(;f>c;c++)if(i=e[c],i||0===i)if("object"===x.type(i))x.merge(h,i.nodeType?[i]:i);else if(nt.test(i)){o=o||p.appendChild(t.createElement("div")),s=(tt.exec(i)||["",""])[1].toLowerCase(),a=lt[s]||lt._default,o.innerHTML=a[1]+i.replace(et,"<$1></$2>")+a[2],l=a[0];while(l--)o=o.firstChild;x.merge(h,o.childNodes),o=p.firstChild,o.textContent=""}else h.push(t.createTextNode(i));p.textContent="",c=0;while(i=h[c++])if((!r||-1===x.inArray(i,r))&&(u=x.contains(i.ownerDocument,i),o=gt(p.appendChild(i),"script"),u&&ht(o),n)){l=0;while(i=o[l++])st.test(i.type||"")&&n.push(i)}return p},cleanData:function(e){var t,n,r,i=e.length,o=0,s=x.event.special;for(;i>o;o++){if(n=e[o],x.acceptData(n)&&(t=q.access(n)))for(r in t.events)s[r]?x.event.remove(n,r):x.removeEvent(n,r,t.handle);L.discard(n),q.discard(n)}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"text",async:!1,global:!1,success:x.globalEval})}});function ct(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ft(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function pt(e){var t=at.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function ht(e,t){var n=e.length,r=0;for(;n>r;r++)q.set(e[r],"globalEval",!t||q.get(t[r],"globalEval"))}function dt(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(q.hasData(e)&&(o=q.access(e),s=x.extend({},o),l=o.events,q.set(t,s),l)){delete s.handle,s.events={};for(i in l)for(n=0,r=l[i].length;r>n;n++)x.event.add(t,i,l[i][n])}L.hasData(e)&&(a=L.access(e),u=x.extend({},a),L.set(t,u))}}function gt(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"*"):e.querySelectorAll?e.querySelectorAll(t||"*"):[];return t===undefined||t&&x.nodeName(e,t)?x.merge([e],n):n}function mt(e,t){var n=t.nodeName.toLowerCase();"input"===n&&it.test(e.type)?t.checked=e.checked:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}x.fn.extend({wrapAll:function(e){var t;return x.isFunction(e)?this.each(function(t){x(this).wrapAll(e.call(this,t))}):(this[0]&&(t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var yt,vt,xt=/^(none|table(?!-c[ea]).+)/,bt=/^margin/,wt=RegExp("^("+b+")(.*)$","i"),Tt=RegExp("^("+b+")(?!px)[a-z%]+$","i"),Ct=RegExp("^([+-])=("+b+")","i"),kt={BODY:"block"},Nt={position:"absolute",visibility:"hidden",display:"block"},Et={letterSpacing:0,fontWeight:400},St=["Top","Right","Bottom","Left"],jt=["Webkit","O","Moz","ms"];function Dt(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=jt.length;while(i--)if(t=jt[i]+n,t in e)return t;return r}function At(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function Lt(t){return e.getComputedStyle(t,null)}function qt(e,t){var n,r,i,o=[],s=0,a=e.length;for(;a>s;s++)r=e[s],r.style&&(o[s]=q.get(r,"olddisplay"),n=r.style.display,t?(o[s]||"none"!==n||(r.style.display=""),""===r.style.display&&At(r)&&(o[s]=q.access(r,"olddisplay",Pt(r.nodeName)))):o[s]||(i=At(r),(n&&"none"!==n||!i)&&q.set(r,"olddisplay",i?n:x.css(r,"display"))));for(s=0;a>s;s++)r=e[s],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[s]||"":"none"));return e}x.fn.extend({css:function(e,t){return x.access(this,function(e,t,n){var r,i,o={},s=0;if(x.isArray(t)){for(r=Lt(e),i=t.length;i>s;s++)o[t[s]]=x.css(e,t[s],!1,r);return o}return n!==undefined?x.style(e,t,n):x.css(e,t)},e,t,arguments.length>1)},show:function(){return qt(this,!0)},hide:function(){return qt(this)},toggle:function(e){var t="boolean"==typeof e;return this.each(function(){(t?e:At(this))?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=yt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,s,a=x.camelCase(t),u=e.style;return t=x.cssProps[a]||(x.cssProps[a]=Dt(u,a)),s=x.cssHooks[t]||x.cssHooks[a],n===undefined?s&&"get"in s&&(i=s.get(e,!1,r))!==undefined?i:u[t]:(o=typeof n,"string"===o&&(i=Ct.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(x.css(e,t)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||x.cssNumber[a]||(n+="px"),x.support.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),s&&"set"in s&&(n=s.set(e,n,r))===undefined||(u[t]=n)),undefined)}},css:function(e,t,n,r){var i,o,s,a=x.camelCase(t);return t=x.cssProps[a]||(x.cssProps[a]=Dt(e.style,a)),s=x.cssHooks[t]||x.cssHooks[a],s&&"get"in s&&(i=s.get(e,!0,n)),i===undefined&&(i=yt(e,t,r)),"normal"===i&&t in Et&&(i=Et[t]),""===n||n?(o=parseFloat(i),n===!0||x.isNumeric(o)?o||0:i):i}}),yt=function(e,t,n){var r,i,o,s=n||Lt(e),a=s?s.getPropertyValue(t)||s[t]:undefined,u=e.style;return s&&(""!==a||x.contains(e.ownerDocument,e)||(a=x.style(e,t)),Tt.test(a)&&bt.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=s.width,u.width=r,u.minWidth=i,u.maxWidth=o)),a};function Ht(e,t,n){var r=wt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function Ot(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,s=0;for(;4>o;o+=2)"margin"===n&&(s+=x.css(e,n+St[o],!0,i)),r?("content"===n&&(s-=x.css(e,"padding"+St[o],!0,i)),"margin"!==n&&(s-=x.css(e,"border"+St[o]+"Width",!0,i))):(s+=x.css(e,"padding"+St[o],!0,i),"padding"!==n&&(s+=x.css(e,"border"+St[o]+"Width",!0,i)));return s}function Ft(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=Lt(e),s=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=yt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Tt.test(i))return i;r=s&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+Ot(e,t,n||(s?"border":"content"),r,o)+"px"}function Pt(e){var t=o,n=kt[e];return n||(n=Rt(e,t),"none"!==n&&n||(vt=(vt||x("<iframe frameborder='0' width='0' height='0'/>").css("cssText","display:block !important")).appendTo(t.documentElement),t=(vt[0].contentWindow||vt[0].contentDocument).document,t.write("<!doctype html><html><body>"),t.close(),n=Rt(e,t),vt.detach()),kt[e]=n),n}function Rt(e,t){var n=x(t.createElement(e)).appendTo(t.body),r=x.css(n[0],"display");return n.remove(),r}x.each(["height","width"],function(e,t){x.cssHooks[t]={get:function(e,n,r){return n?0===e.offsetWidth&&xt.test(x.css(e,"display"))?x.swap(e,Nt,function(){return Ft(e,t,r)}):Ft(e,t,r):undefined},set:function(e,n,r){var i=r&&Lt(e);return Ht(e,n,r?Ot(e,t,r,x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,i),i):0)}}}),x(function(){x.support.reliableMarginRight||(x.cssHooks.marginRight={get:function(e,t){return t?x.swap(e,{display:"inline-block"},yt,[e,"marginRight"]):undefined}}),!x.support.pixelPosition&&x.fn.position&&x.each(["top","left"],function(e,t){x.cssHooks[t]={get:function(e,n){return n?(n=yt(e,t),Tt.test(n)?x(e).position()[t]+"px":n):undefined}}})}),x.expr&&x.expr.filters&&(x.expr.filters.hidden=function(e){return 0>=e.offsetWidth&&0>=e.offsetHeight},x.expr.filters.visible=function(e){return!x.expr.filters.hidden(e)}),x.each({margin:"",padding:"",border:"Width"},function(e,t){x.cssHooks[e+t]={expand:function(n){var r=0,i={},o="string"==typeof n?n.split(" "):[n];for(;4>r;r++)i[e+St[r]+t]=o[r]||o[r-2]||o[0];return i}},bt.test(e)||(x.cssHooks[e+t].set=Ht)});var Mt=/%20/g,Wt=/\[\]$/,$t=/\r?\n/g,Bt=/^(?:submit|button|image|reset|file)$/i,It=/^(?:input|select|textarea|keygen)/i;x.fn.extend({serialize:function(){return x.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var e=x.prop(this,"elements");return e?x.makeArray(e):this}).filter(function(){var e=this.type;return this.name&&!x(this).is(":disabled")&&It.test(this.nodeName)&&!Bt.test(e)&&(this.checked||!it.test(e))}).map(function(e,t){var n=x(this).val();return null==n?null:x.isArray(n)?x.map(n,function(e){return{name:t.name,value:e.replace($t,"\r\n")}}):{name:t.name,value:n.replace($t,"\r\n")}}).get()}}),x.param=function(e,t){var n,r=[],i=function(e,t){t=x.isFunction(t)?t():null==t?"":t,r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(t)};if(t===undefined&&(t=x.ajaxSettings&&x.ajaxSettings.traditional),x.isArray(e)||e.jquery&&!x.isPlainObject(e))x.each(e,function(){i(this.name,this.value)});else for(n in e)zt(n,e[n],t,i);return r.join("&").replace(Mt,"+")};function zt(e,t,n,r){var i;if(x.isArray(t))x.each(t,function(t,i){n||Wt.test(e)?r(e,i):zt(e+"["+("object"==typeof i?t:"")+"]",i,n,r)});else if(n||"object"!==x.type(t))r(e,t);else for(i in t)zt(e+"["+i+"]",t[i],n,r)}x.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu".split(" "),function(e,t){x.fn[t]=function(e,n){return arguments.length>0?this.on(t,null,e,n):this.trigger(t)}}),x.fn.extend({hover:function(e,t){return this.mouseenter(e).mouseleave(t||e)},bind:function(e,t,n){return this.on(e,null,t,n)},unbind:function(e,t){return this.off(e,null,t)},delegate:function(e,t,n,r){return this.on(t,e,n,r)},undelegate:function(e,t,n){return 1===arguments.length?this.off(e,"**"):this.off(t,e||"**",n)}});var _t,Xt,Ut=x.now(),Yt=/\?/,Vt=/#.*$/,Gt=/([?&])_=[^&]*/,Jt=/^(.*?):[ \t]*([^\r\n]*)$/gm,Qt=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Kt=/^(?:GET|HEAD)$/,Zt=/^\/\//,en=/^([\w.+-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,tn=x.fn.load,nn={},rn={},on="*/".concat("*");try{Xt=i.href}catch(sn){Xt=o.createElement("a"),Xt.href="",Xt=Xt.href}_t=en.exec(Xt.toLowerCase())||[];function an(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(w)||[]; +if(x.isFunction(n))while(r=o[i++])"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function un(e,t,n,r){var i={},o=e===rn;function s(a){var u;return i[a]=!0,x.each(e[a]||[],function(e,a){var l=a(t,n,r);return"string"!=typeof l||o||i[l]?o?!(u=l):undefined:(t.dataTypes.unshift(l),s(l),!1)}),u}return s(t.dataTypes[0])||!i["*"]&&s("*")}function ln(e,t){var n,r,i=x.ajaxSettings.flatOptions||{};for(n in t)t[n]!==undefined&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&x.extend(!0,e,r),e}x.fn.load=function(e,t,n){if("string"!=typeof e&&tn)return tn.apply(this,arguments);var r,i,o,s=this,a=e.indexOf(" ");return a>=0&&(r=e.slice(a),e=e.slice(0,a)),x.isFunction(t)?(n=t,t=undefined):t&&"object"==typeof t&&(i="POST"),s.length>0&&x.ajax({url:e,type:i,dataType:"html",data:t}).done(function(e){o=arguments,s.html(r?x("<div>").append(x.parseHTML(e)).find(r):e)}).complete(n&&function(e,t){s.each(n,o||[e.responseText,t,e])}),this},x.each(["ajaxStart","ajaxStop","ajaxComplete","ajaxError","ajaxSuccess","ajaxSend"],function(e,t){x.fn[t]=function(e){return this.on(t,e)}}),x.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Xt,type:"GET",isLocal:Qt.test(_t[1]),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":on,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":x.parseJSON,"text xml":x.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?ln(ln(e,x.ajaxSettings),t):ln(x.ajaxSettings,e)},ajaxPrefilter:an(nn),ajaxTransport:an(rn),ajax:function(e,t){"object"==typeof e&&(t=e,e=undefined),t=t||{};var n,r,i,o,s,a,u,l,c=x.ajaxSetup({},t),f=c.context||c,p=c.context&&(f.nodeType||f.jquery)?x(f):x.event,h=x.Deferred(),d=x.Callbacks("once memory"),g=c.statusCode||{},m={},y={},v=0,b="canceled",T={readyState:0,getResponseHeader:function(e){var t;if(2===v){if(!o){o={};while(t=Jt.exec(i))o[t[1].toLowerCase()]=t[2]}t=o[e.toLowerCase()]}return null==t?null:t},getAllResponseHeaders:function(){return 2===v?i:null},setRequestHeader:function(e,t){var n=e.toLowerCase();return v||(e=y[n]=y[n]||e,m[e]=t),this},overrideMimeType:function(e){return v||(c.mimeType=e),this},statusCode:function(e){var t;if(e)if(2>v)for(t in e)g[t]=[g[t],e[t]];else T.always(e[T.status]);return this},abort:function(e){var t=e||b;return n&&n.abort(t),k(0,t),this}};if(h.promise(T).complete=d.add,T.success=T.done,T.error=T.fail,c.url=((e||c.url||Xt)+"").replace(Vt,"").replace(Zt,_t[1]+"//"),c.type=t.method||t.type||c.method||c.type,c.dataTypes=x.trim(c.dataType||"*").toLowerCase().match(w)||[""],null==c.crossDomain&&(a=en.exec(c.url.toLowerCase()),c.crossDomain=!(!a||a[1]===_t[1]&&a[2]===_t[2]&&(a[3]||("http:"===a[1]?"80":"443"))===(_t[3]||("http:"===_t[1]?"80":"443")))),c.data&&c.processData&&"string"!=typeof c.data&&(c.data=x.param(c.data,c.traditional)),un(nn,c,t,T),2===v)return T;u=c.global,u&&0===x.active++&&x.event.trigger("ajaxStart"),c.type=c.type.toUpperCase(),c.hasContent=!Kt.test(c.type),r=c.url,c.hasContent||(c.data&&(r=c.url+=(Yt.test(r)?"&":"?")+c.data,delete c.data),c.cache===!1&&(c.url=Gt.test(r)?r.replace(Gt,"$1_="+Ut++):r+(Yt.test(r)?"&":"?")+"_="+Ut++)),c.ifModified&&(x.lastModified[r]&&T.setRequestHeader("If-Modified-Since",x.lastModified[r]),x.etag[r]&&T.setRequestHeader("If-None-Match",x.etag[r])),(c.data&&c.hasContent&&c.contentType!==!1||t.contentType)&&T.setRequestHeader("Content-Type",c.contentType),T.setRequestHeader("Accept",c.dataTypes[0]&&c.accepts[c.dataTypes[0]]?c.accepts[c.dataTypes[0]]+("*"!==c.dataTypes[0]?", "+on+"; q=0.01":""):c.accepts["*"]);for(l in c.headers)T.setRequestHeader(l,c.headers[l]);if(c.beforeSend&&(c.beforeSend.call(f,T,c)===!1||2===v))return T.abort();b="abort";for(l in{success:1,error:1,complete:1})T[l](c[l]);if(n=un(rn,c,t,T)){T.readyState=1,u&&p.trigger("ajaxSend",[T,c]),c.async&&c.timeout>0&&(s=setTimeout(function(){T.abort("timeout")},c.timeout));try{v=1,n.send(m,k)}catch(C){if(!(2>v))throw C;k(-1,C)}}else k(-1,"No Transport");function k(e,t,o,a){var l,m,y,b,w,C=t;2!==v&&(v=2,s&&clearTimeout(s),n=undefined,i=a||"",T.readyState=e>0?4:0,l=e>=200&&300>e||304===e,o&&(b=cn(c,T,o)),b=fn(c,b,T,l),l?(c.ifModified&&(w=T.getResponseHeader("Last-Modified"),w&&(x.lastModified[r]=w),w=T.getResponseHeader("etag"),w&&(x.etag[r]=w)),204===e?C="nocontent":304===e?C="notmodified":(C=b.state,m=b.data,y=b.error,l=!y)):(y=C,(e||!C)&&(C="error",0>e&&(e=0))),T.status=e,T.statusText=(t||C)+"",l?h.resolveWith(f,[m,C,T]):h.rejectWith(f,[T,C,y]),T.statusCode(g),g=undefined,u&&p.trigger(l?"ajaxSuccess":"ajaxError",[T,c,l?m:y]),d.fireWith(f,[T,C]),u&&(p.trigger("ajaxComplete",[T,c]),--x.active||x.event.trigger("ajaxStop")))}return T},getJSON:function(e,t,n){return x.get(e,t,n,"json")},getScript:function(e,t){return x.get(e,undefined,t,"script")}}),x.each(["get","post"],function(e,t){x[t]=function(e,n,r,i){return x.isFunction(n)&&(i=i||r,r=n,n=undefined),x.ajax({url:e,type:t,dataType:i,data:n,success:r})}});function cn(e,t,n){var r,i,o,s,a=e.contents,u=e.dataTypes;while("*"===u[0])u.shift(),r===undefined&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in a)if(a[i]&&a[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}s||(s=i)}o=o||s}return o?(o!==u[0]&&u.unshift(o),n[o]):undefined}function fn(e,t,n,r){var i,o,s,a,u,l={},c=e.dataTypes.slice();if(c[1])for(s in e.converters)l[s.toLowerCase()]=e.converters[s];o=c.shift();while(o)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(s=l[u+" "+o]||l["* "+o],!s)for(i in l)if(a=i.split(" "),a[1]===o&&(s=l[u+" "+a[0]]||l["* "+a[0]])){s===!0?s=l[i]:l[i]!==!0&&(o=a[0],c.unshift(a[1]));break}if(s!==!0)if(s&&e["throws"])t=s(t);else try{t=s(t)}catch(f){return{state:"parsererror",error:s?f:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}x.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/(?:java|ecma)script/},converters:{"text script":function(e){return x.globalEval(e),e}}}),x.ajaxPrefilter("script",function(e){e.cache===undefined&&(e.cache=!1),e.crossDomain&&(e.type="GET")}),x.ajaxTransport("script",function(e){if(e.crossDomain){var t,n;return{send:function(r,i){t=x("<script>").prop({async:!0,charset:e.scriptCharset,src:e.url}).on("load error",n=function(e){t.remove(),n=null,e&&i("error"===e.type?404:200,e.type)}),o.head.appendChild(t[0])},abort:function(){n&&n()}}}});var pn=[],hn=/(=)\?(?=&|$)|\?\?/;x.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var e=pn.pop()||x.expando+"_"+Ut++;return this[e]=!0,e}}),x.ajaxPrefilter("json jsonp",function(t,n,r){var i,o,s,a=t.jsonp!==!1&&(hn.test(t.url)?"url":"string"==typeof t.data&&!(t.contentType||"").indexOf("application/x-www-form-urlencoded")&&hn.test(t.data)&&"data");return a||"jsonp"===t.dataTypes[0]?(i=t.jsonpCallback=x.isFunction(t.jsonpCallback)?t.jsonpCallback():t.jsonpCallback,a?t[a]=t[a].replace(hn,"$1"+i):t.jsonp!==!1&&(t.url+=(Yt.test(t.url)?"&":"?")+t.jsonp+"="+i),t.converters["script json"]=function(){return s||x.error(i+" was not called"),s[0]},t.dataTypes[0]="json",o=e[i],e[i]=function(){s=arguments},r.always(function(){e[i]=o,t[i]&&(t.jsonpCallback=n.jsonpCallback,pn.push(i)),s&&x.isFunction(o)&&o(s[0]),s=o=undefined}),"script"):undefined}),x.ajaxSettings.xhr=function(){try{return new XMLHttpRequest}catch(e){}};var dn=x.ajaxSettings.xhr(),gn={0:200,1223:204},mn=0,yn={};e.ActiveXObject&&x(e).on("unload",function(){for(var e in yn)yn[e]();yn=undefined}),x.support.cors=!!dn&&"withCredentials"in dn,x.support.ajax=dn=!!dn,x.ajaxTransport(function(e){var t;return x.support.cors||dn&&!e.crossDomain?{send:function(n,r){var i,o,s=e.xhr();if(s.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(i in e.xhrFields)s[i]=e.xhrFields[i];e.mimeType&&s.overrideMimeType&&s.overrideMimeType(e.mimeType),e.crossDomain||n["X-Requested-With"]||(n["X-Requested-With"]="XMLHttpRequest");for(i in n)s.setRequestHeader(i,n[i]);t=function(e){return function(){t&&(delete yn[o],t=s.onload=s.onerror=null,"abort"===e?s.abort():"error"===e?r(s.status||404,s.statusText):r(gn[s.status]||s.status,s.statusText,"string"==typeof s.responseText?{text:s.responseText}:undefined,s.getAllResponseHeaders()))}},s.onload=t(),s.onerror=t("error"),t=yn[o=mn++]=t("abort"),s.send(e.hasContent&&e.data||null)},abort:function(){t&&t()}}:undefined});var vn,xn,bn=/^(?:toggle|show|hide)$/,wn=RegExp("^(?:([+-])=|)("+b+")([a-z%]*)$","i"),Tn=/queueHooks$/,Cn=[Dn],kn={"*":[function(e,t){var n,r,i=this.createTween(e,t),o=wn.exec(t),s=i.cur(),a=+s||0,u=1,l=20;if(o){if(n=+o[2],r=o[3]||(x.cssNumber[e]?"":"px"),"px"!==r&&a){a=x.css(i.elem,e,!0)||n||1;do u=u||".5",a/=u,x.style(i.elem,e,a+r);while(u!==(u=i.cur()/s)&&1!==u&&--l)}i.unit=r,i.start=a,i.end=o[1]?a+(o[1]+1)*n:n}return i}]};function Nn(){return setTimeout(function(){vn=undefined}),vn=x.now()}function En(e,t){x.each(t,function(t,n){var r=(kn[t]||[]).concat(kn["*"]),i=0,o=r.length;for(;o>i;i++)if(r[i].call(e,t,n))return})}function Sn(e,t,n){var r,i,o=0,s=Cn.length,a=x.Deferred().always(function(){delete u.elem}),u=function(){if(i)return!1;var t=vn||Nn(),n=Math.max(0,l.startTime+l.duration-t),r=n/l.duration||0,o=1-r,s=0,u=l.tweens.length;for(;u>s;s++)l.tweens[s].run(o);return a.notifyWith(e,[l,o,n]),1>o&&u?n:(a.resolveWith(e,[l]),!1)},l=a.promise({elem:e,props:x.extend({},t),opts:x.extend(!0,{specialEasing:{}},n),originalProperties:t,originalOptions:n,startTime:vn||Nn(),duration:n.duration,tweens:[],createTween:function(t,n){var r=x.Tween(e,l.opts,t,n,l.opts.specialEasing[t]||l.opts.easing);return l.tweens.push(r),r},stop:function(t){var n=0,r=t?l.tweens.length:0;if(i)return this;for(i=!0;r>n;n++)l.tweens[n].run(1);return t?a.resolveWith(e,[l,t]):a.rejectWith(e,[l,t]),this}}),c=l.props;for(jn(c,l.opts.specialEasing);s>o;o++)if(r=Cn[o].call(l,e,c,l.opts))return r;return En(l,c),x.isFunction(l.opts.start)&&l.opts.start.call(e,l),x.fx.timer(x.extend(u,{elem:e,anim:l,queue:l.opts.queue})),l.progress(l.opts.progress).done(l.opts.done,l.opts.complete).fail(l.opts.fail).always(l.opts.always)}function jn(e,t){var n,r,i,o,s;for(n in e)if(r=x.camelCase(n),i=t[r],o=e[n],x.isArray(o)&&(i=o[1],o=e[n]=o[0]),n!==r&&(e[r]=o,delete e[n]),s=x.cssHooks[r],s&&"expand"in s){o=s.expand(o),delete e[r];for(n in o)n in e||(e[n]=o[n],t[n]=i)}else t[r]=i}x.Animation=x.extend(Sn,{tweener:function(e,t){x.isFunction(e)?(t=e,e=["*"]):e=e.split(" ");var n,r=0,i=e.length;for(;i>r;r++)n=e[r],kn[n]=kn[n]||[],kn[n].unshift(t)},prefilter:function(e,t){t?Cn.unshift(e):Cn.push(e)}});function Dn(e,t,n){var r,i,o,s,a,u,l,c,f,p=this,h=e.style,d={},g=[],m=e.nodeType&&At(e);n.queue||(c=x._queueHooks(e,"fx"),null==c.unqueued&&(c.unqueued=0,f=c.empty.fire,c.empty.fire=function(){c.unqueued||f()}),c.unqueued++,p.always(function(){p.always(function(){c.unqueued--,x.queue(e,"fx").length||c.empty.fire()})})),1===e.nodeType&&("height"in t||"width"in t)&&(n.overflow=[h.overflow,h.overflowX,h.overflowY],"inline"===x.css(e,"display")&&"none"===x.css(e,"float")&&(h.display="inline-block")),n.overflow&&(h.overflow="hidden",p.always(function(){h.overflow=n.overflow[0],h.overflowX=n.overflow[1],h.overflowY=n.overflow[2]})),a=q.get(e,"fxshow");for(r in t)if(o=t[r],bn.exec(o)){if(delete t[r],u=u||"toggle"===o,o===(m?"hide":"show")){if("show"!==o||a===undefined||a[r]===undefined)continue;m=!0}g.push(r)}if(s=g.length){a=q.get(e,"fxshow")||q.access(e,"fxshow",{}),"hidden"in a&&(m=a.hidden),u&&(a.hidden=!m),m?x(e).show():p.done(function(){x(e).hide()}),p.done(function(){var t;q.remove(e,"fxshow");for(t in d)x.style(e,t,d[t])});for(r=0;s>r;r++)i=g[r],l=p.createTween(i,m?a[i]:0),d[i]=a[i]||x.style(e,i),i in a||(a[i]=l.start,m&&(l.end=l.start,l.start="width"===i||"height"===i?1:0))}}function An(e,t,n,r,i){return new An.prototype.init(e,t,n,r,i)}x.Tween=An,An.prototype={constructor:An,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||"swing",this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(x.cssNumber[n]?"":"px")},cur:function(){var e=An.propHooks[this.prop];return e&&e.get?e.get(this):An.propHooks._default.get(this)},run:function(e){var t,n=An.propHooks[this.prop];return this.pos=t=this.options.duration?x.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):An.propHooks._default.set(this),this}},An.prototype.init.prototype=An.prototype,An.propHooks={_default:{get:function(e){var t;return null==e.elem[e.prop]||e.elem.style&&null!=e.elem.style[e.prop]?(t=x.css(e.elem,e.prop,""),t&&"auto"!==t?t:0):e.elem[e.prop]},set:function(e){x.fx.step[e.prop]?x.fx.step[e.prop](e):e.elem.style&&(null!=e.elem.style[x.cssProps[e.prop]]||x.cssHooks[e.prop])?x.style(e.elem,e.prop,e.now+e.unit):e.elem[e.prop]=e.now}}},An.propHooks.scrollTop=An.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},x.each(["toggle","show","hide"],function(e,t){var n=x.fn[t];x.fn[t]=function(e,r,i){return null==e||"boolean"==typeof e?n.apply(this,arguments):this.animate(Ln(t,!0),e,r,i)}}),x.fn.extend({fadeTo:function(e,t,n,r){return this.filter(At).css("opacity",0).show().end().animate({opacity:t},e,n,r)},animate:function(e,t,n,r){var i=x.isEmptyObject(e),o=x.speed(t,n,r),s=function(){var t=Sn(this,x.extend({},e),o);s.finish=function(){t.stop(!0)},(i||q.get(this,"finish"))&&t.stop(!0)};return s.finish=s,i||o.queue===!1?this.each(s):this.queue(o.queue,s)},stop:function(e,t,n){var r=function(e){var t=e.stop;delete e.stop,t(n)};return"string"!=typeof e&&(n=t,t=e,e=undefined),t&&e!==!1&&this.queue(e||"fx",[]),this.each(function(){var t=!0,i=null!=e&&e+"queueHooks",o=x.timers,s=q.get(this);if(i)s[i]&&s[i].stop&&r(s[i]);else for(i in s)s[i]&&s[i].stop&&Tn.test(i)&&r(s[i]);for(i=o.length;i--;)o[i].elem!==this||null!=e&&o[i].queue!==e||(o[i].anim.stop(n),t=!1,o.splice(i,1));(t||!n)&&x.dequeue(this,e)})},finish:function(e){return e!==!1&&(e=e||"fx"),this.each(function(){var t,n=q.get(this),r=n[e+"queue"],i=n[e+"queueHooks"],o=x.timers,s=r?r.length:0;for(n.finish=!0,x.queue(this,e,[]),i&&i.cur&&i.cur.finish&&i.cur.finish.call(this),t=o.length;t--;)o[t].elem===this&&o[t].queue===e&&(o[t].anim.stop(!0),o.splice(t,1));for(t=0;s>t;t++)r[t]&&r[t].finish&&r[t].finish.call(this);delete n.finish})}});function Ln(e,t){var n,r={height:e},i=0;for(t=t?1:0;4>i;i+=2-t)n=St[i],r["margin"+n]=r["padding"+n]=e;return t&&(r.opacity=r.width=e),r}x.each({slideDown:Ln("show"),slideUp:Ln("hide"),slideToggle:Ln("toggle"),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(e,t){x.fn[e]=function(e,n,r){return this.animate(t,e,n,r)}}),x.speed=function(e,t,n){var r=e&&"object"==typeof e?x.extend({},e):{complete:n||!n&&t||x.isFunction(e)&&e,duration:e,easing:n&&t||t&&!x.isFunction(t)&&t};return r.duration=x.fx.off?0:"number"==typeof r.duration?r.duration:r.duration in x.fx.speeds?x.fx.speeds[r.duration]:x.fx.speeds._default,(null==r.queue||r.queue===!0)&&(r.queue="fx"),r.old=r.complete,r.complete=function(){x.isFunction(r.old)&&r.old.call(this),r.queue&&x.dequeue(this,r.queue)},r},x.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2}},x.timers=[],x.fx=An.prototype.init,x.fx.tick=function(){var e,t=x.timers,n=0;for(vn=x.now();t.length>n;n++)e=t[n],e()||t[n]!==e||t.splice(n--,1);t.length||x.fx.stop(),vn=undefined},x.fx.timer=function(e){e()&&x.timers.push(e)&&x.fx.start()},x.fx.interval=13,x.fx.start=function(){xn||(xn=setInterval(x.fx.tick,x.fx.interval))},x.fx.stop=function(){clearInterval(xn),xn=null},x.fx.speeds={slow:600,fast:200,_default:400},x.fx.step={},x.expr&&x.expr.filters&&(x.expr.filters.animated=function(e){return x.grep(x.timers,function(t){return e===t.elem}).length}),x.fn.offset=function(e){if(arguments.length)return e===undefined?this:this.each(function(t){x.offset.setOffset(this,e,t)});var t,n,i=this[0],o={top:0,left:0},s=i&&i.ownerDocument;if(s)return t=s.documentElement,x.contains(t,i)?(typeof i.getBoundingClientRect!==r&&(o=i.getBoundingClientRect()),n=qn(s),{top:o.top+n.pageYOffset-t.clientTop,left:o.left+n.pageXOffset-t.clientLeft}):o},x.offset={setOffset:function(e,t,n){var r,i,o,s,a,u,l,c=x.css(e,"position"),f=x(e),p={};"static"===c&&(e.style.position="relative"),a=f.offset(),o=x.css(e,"top"),u=x.css(e,"left"),l=("absolute"===c||"fixed"===c)&&(o+u).indexOf("auto")>-1,l?(r=f.position(),s=r.top,i=r.left):(s=parseFloat(o)||0,i=parseFloat(u)||0),x.isFunction(t)&&(t=t.call(e,n,a)),null!=t.top&&(p.top=t.top-a.top+s),null!=t.left&&(p.left=t.left-a.left+i),"using"in t?t.using.call(e,p):f.css(p)}},x.fn.extend({position:function(){if(this[0]){var e,t,n=this[0],r={top:0,left:0};return"fixed"===x.css(n,"position")?t=n.getBoundingClientRect():(e=this.offsetParent(),t=this.offset(),x.nodeName(e[0],"html")||(r=e.offset()),r.top+=x.css(e[0],"borderTopWidth",!0),r.left+=x.css(e[0],"borderLeftWidth",!0)),{top:t.top-r.top-x.css(n,"marginTop",!0),left:t.left-r.left-x.css(n,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){var e=this.offsetParent||s;while(e&&!x.nodeName(e,"html")&&"static"===x.css(e,"position"))e=e.offsetParent;return e||s})}}),x.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(t,n){var r="pageYOffset"===n;x.fn[t]=function(i){return x.access(this,function(t,i,o){var s=qn(t);return o===undefined?s?s[n]:t[i]:(s?s.scrollTo(r?e.pageXOffset:o,r?o:e.pageYOffset):t[i]=o,undefined)},t,i,arguments.length,null)}});function qn(e){return x.isWindow(e)?e:9===e.nodeType&&e.defaultView}x.each({Height:"height",Width:"width"},function(e,t){x.each({padding:"inner"+e,content:t,"":"outer"+e},function(n,r){x.fn[r]=function(r,i){var o=arguments.length&&(n||"boolean"!=typeof r),s=n||(r===!0||i===!0?"margin":"border");return x.access(this,function(t,n,r){var i;return x.isWindow(t)?t.document.documentElement["client"+e]:9===t.nodeType?(i=t.documentElement,Math.max(t.body["scroll"+e],i["scroll"+e],t.body["offset"+e],i["offset"+e],i["client"+e])):r===undefined?x.css(t,n,s):x.style(t,n,r,s)},t,o?r:undefined,o,null)}})}),x.fn.size=function(){return this.length},x.fn.andSelf=x.fn.addBack,"object"==typeof module&&"object"==typeof module.exports?module.exports=x:"function"==typeof define&&define.amd&&define("jquery",[],function(){return x}),"object"==typeof e&&"object"==typeof e.document&&(e.jQuery=e.$=x)})(window); \ No newline at end of file