
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_9b5cb44b398f4d016f690644.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a1e42c2aa7d3428acccf0c4c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_df1e4745fb431316eda9d8c3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a7b71f05b9b60c17949a5470.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4a03b0ae5b56ff378df44517.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c30f75fb492c7e0f1f75c083.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_19682afa91e96b4537acd15d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c30f75fb492c7e0f1f75c083.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2f{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247513,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247765,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247790,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247832,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247848,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247867,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247978,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248042,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248102,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248187,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248213,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248257,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.248287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248287,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248332,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248337,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248347,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248565,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248622,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248677,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248682,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248700,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248765,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248870,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248883,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248893,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248965,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248978,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249005,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249010,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249015,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249055,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249083,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249113,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249143,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249205,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249233,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249328,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249335,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249340,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249420,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249455,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249460,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249465,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249507,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249563,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249638,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249643,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249709,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249710,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249748,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249780,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249843,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249888,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249905,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249913,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249998,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250040,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250057,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250063,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250073,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250107,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250113,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250192,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250217,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250235,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250255,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250260,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250270,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250275,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250280,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250327,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250383,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250488,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250493,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250510,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250527,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250543,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250547,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250553,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250580,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250620,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250655,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250688,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250712,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250738,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250740,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250813,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250857,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250935,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250940,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250965,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250975,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251072,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251097,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251110,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251135,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251142,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251215,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251240,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251242,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251255,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251287,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251423,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251462,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251522,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251625,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251707,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251713,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251722,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251785,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251878,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251993,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252035,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252150,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252357,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252418,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252425,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls13{letter-spacing:-1.260000px;}
.ls14{letter-spacing:-1.200000px;}
.ls16{letter-spacing:-1.080000px;}
.ls15{letter-spacing:-0.840000px;}
.ls5{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.180000px;}
.ls9{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.120000px;}
.ls8{letter-spacing:-0.083952px;}
.ls7{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.030000px;}
.ls12{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.lse{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.270000px;}
.ls1{letter-spacing:0.300000px;}
.ls17{letter-spacing:0.330000px;}
.lsd{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.480000px;}
.ls18{letter-spacing:0.660000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws34{word-spacing:-12.360000px;}
.ws49{word-spacing:-12.120000px;}
.ws36{word-spacing:-12.060000px;}
.ws0{word-spacing:-12.000000px;}
.ws35{word-spacing:-11.160000px;}
.ws37{word-spacing:-10.920000px;}
.ws33{word-spacing:-10.800000px;}
.ws32{word-spacing:-10.740000px;}
.ws26{word-spacing:-1.860000px;}
.ws6{word-spacing:-1.800000px;}
.ws59{word-spacing:-1.740000px;}
.ws51{word-spacing:-1.680000px;}
.ws56{word-spacing:-1.620000px;}
.ws43{word-spacing:-1.560000px;}
.ws45{word-spacing:-1.500000px;}
.wse{word-spacing:-1.440000px;}
.ws28{word-spacing:-1.380000px;}
.ws46{word-spacing:-1.260000px;}
.ws4{word-spacing:-1.200000px;}
.ws3b{word-spacing:-1.140000px;}
.ws40{word-spacing:-1.080000px;}
.ws44{word-spacing:-1.020000px;}
.ws18{word-spacing:-0.960000px;}
.ws4b{word-spacing:-0.900000px;}
.ws48{word-spacing:-0.840000px;}
.ws2a{word-spacing:-0.780000px;}
.ws1e{word-spacing:-0.720000px;}
.ws4a{word-spacing:-0.660000px;}
.ws23{word-spacing:-0.600000px;}
.ws20{word-spacing:-0.540000px;}
.ws39{word-spacing:-0.480000px;}
.ws2{word-spacing:-0.420000px;}
.ws1b{word-spacing:-0.360000px;}
.ws1a{word-spacing:-0.300000px;}
.ws31{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.180000px;}
.ws11{word-spacing:-0.120000px;}
.ws2c{word-spacing:-0.060000px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.060000px;}
.wsd{word-spacing:0.083952px;}
.ws21{word-spacing:0.120000px;}
.ws27{word-spacing:0.180000px;}
.ws52{word-spacing:0.240000px;}
.ws47{word-spacing:0.300000px;}
.ws8{word-spacing:0.360000px;}
.ws54{word-spacing:0.420000px;}
.ws53{word-spacing:0.480000px;}
.ws42{word-spacing:0.540000px;}
.ws50{word-spacing:0.600000px;}
.ws7{word-spacing:0.660000px;}
.ws2f{word-spacing:0.720000px;}
.ws10{word-spacing:0.780000px;}
.ws25{word-spacing:0.900000px;}
.ws55{word-spacing:0.960000px;}
.ws4e{word-spacing:1.020000px;}
.ws24{word-spacing:1.080000px;}
.ws4d{word-spacing:1.140000px;}
.ws22{word-spacing:1.200000px;}
.ws2b{word-spacing:1.260000px;}
.ws29{word-spacing:1.320000px;}
.ws57{word-spacing:1.380000px;}
.wsa{word-spacing:1.440000px;}
.ws13{word-spacing:1.500000px;}
.ws3e{word-spacing:1.560000px;}
.wsc{word-spacing:1.620000px;}
.ws16{word-spacing:1.680000px;}
.ws4f{word-spacing:1.740000px;}
.ws2e{word-spacing:1.800000px;}
.ws15{word-spacing:1.860000px;}
.ws38{word-spacing:1.920000px;}
.ws2d{word-spacing:1.980000px;}
.ws1d{word-spacing:2.040000px;}
.ws14{word-spacing:2.100000px;}
.ws1f{word-spacing:2.160000px;}
.ws19{word-spacing:2.220000px;}
.ws3{word-spacing:2.280000px;}
.ws12{word-spacing:2.340000px;}
.ws5{word-spacing:2.400000px;}
.ws1c{word-spacing:2.520000px;}
.ws30{word-spacing:2.580000px;}
.ws3c{word-spacing:2.700000px;}
.wsb{word-spacing:2.760000px;}
.ws3f{word-spacing:2.820000px;}
.wsf{word-spacing:2.880000px;}
.ws58{word-spacing:2.940000px;}
.ws5a{word-spacing:3.000000px;}
.ws41{word-spacing:3.300000px;}
.ws3d{word-spacing:3.360000px;}
.ws3a{word-spacing:3.540000px;}
.ws4c{word-spacing:6.900000px;}
._7{margin-left:-7.293600px;}
._2{margin-left:-6.135000px;}
._1{margin-left:-4.311600px;}
._5{margin-left:-3.206400px;}
._0{margin-left:-1.894200px;}
._3{width:1.364400px;}
._4{width:2.692200px;}
._6{width:3.820800px;}
._8{width:4.837800px;}
._9{width:5.953800px;}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:27.984000px;}
.fs0{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:50.226900px;}
.y26{bottom:54.502500px;}
.y23{bottom:86.740050px;}
.y49{bottom:86.740200px;}
.yb5{bottom:87.048750px;}
.y22{bottom:101.740050px;}
.y48{bottom:107.005500px;}
.y1c3{bottom:107.076150px;}
.yd8{bottom:107.178750px;}
.y8f{bottom:107.276850px;}
.yb4{bottom:107.298750px;}
.y6d{bottom:107.380650px;}
.y127{bottom:107.490750px;}
.y149{bottom:107.762850px;}
.y107{bottom:108.139200px;}
.y21{bottom:116.740050px;}
.y20{bottom:120.736050px;}
.y197{bottom:124.191450px;}
.y47{bottom:127.270800px;}
.yb3{bottom:127.548750px;}
.yd7{bottom:127.617450px;}
.y8e{bottom:127.813500px;}
.y6c{bottom:128.021100px;}
.y163{bottom:128.241300px;}
.y148{bottom:128.785500px;}
.y106{bottom:129.538200px;}
.y1c2{bottom:144.420000px;}
.y1a4{bottom:144.821400px;}
.y126{bottom:145.249200px;}
.y46{bottom:147.536100px;}
.yb2{bottom:147.798750px;}
.yd6{bottom:148.056150px;}
.ye8{bottom:148.350300px;}
.y6b{bottom:148.661700px;}
.y162{bottom:148.991850px;}
.y147{bottom:149.808150px;}
.y196{bottom:161.642850px;}
.y1c1{bottom:164.756100px;}
.y8d{bottom:165.358200px;}
.y125{bottom:165.999750px;}
.y1f{bottom:166.020000px;}
.y45{bottom:167.801400px;}
.y105{bottom:167.945100px;}
.yb1{bottom:168.048750px;}
.yd5{bottom:168.494850px;}
.ye7{bottom:168.886950px;}
.y6a{bottom:169.302150px;}
.y161{bottom:169.742550px;}
.y146{bottom:170.830800px;}
.y195{bottom:182.086200px;}
.y1a3{bottom:182.366100px;}
.y1c0{bottom:185.092050px;}
.y8c{bottom:185.894850px;}
.y1e{bottom:186.270000px;}
.y124{bottom:186.750300px;}
.y44{bottom:188.066850px;}
.yb0{bottom:188.298750px;}
.yd4{bottom:188.933550px;}
.y104{bottom:189.344250px;}
.ye6{bottom:189.423750px;}
.y160{bottom:190.493100px;}
.y145{bottom:191.853450px;}
.y194{bottom:202.529550px;}
.y1a2{bottom:202.902750px;}
.y8b{bottom:206.431650px;}
.y1d{bottom:206.520000px;}
.y69{bottom:206.950500px;}
.y123{bottom:207.501000px;}
.yaf{bottom:208.548750px;}
.yd3{bottom:209.372250px;}
.ye5{bottom:209.960400px;}
.y15f{bottom:211.243650px;}
.y144{bottom:212.876100px;}
.y1bf{bottom:222.436050px;}
.y193{bottom:222.973050px;}
.y1a1{bottom:223.439400px;}
.y43{bottom:225.340050px;}
.y1c{bottom:226.770000px;}
.y8a{bottom:226.968300px;}
.y68{bottom:227.591100px;}
.y103{bottom:227.751000px;}
.y122{bottom:228.251550px;}
.yae{bottom:228.798750px;}
.yd2{bottom:229.810950px;}
.ye4{bottom:230.497200px;}
.y15e{bottom:231.994200px;}
.y143{bottom:233.898750px;}
.y1be{bottom:242.772150px;}
.y1a0{bottom:243.976200px;}
.y42{bottom:245.605350px;}
.y1b{bottom:247.020000px;}
.y89{bottom:247.504950px;}
.y67{bottom:248.231550px;}
.yad{bottom:249.048750px;}
.y102{bottom:249.150150px;}
.yd1{bottom:250.249650px;}
.ye3{bottom:251.033850px;}
.y15d{bottom:252.744750px;}
.y142{bottom:254.921400px;}
.y192{bottom:260.424300px;}
.y19f{bottom:264.512850px;}
.y41{bottom:265.870650px;}
.y121{bottom:266.010000px;}
.y1a{bottom:267.270000px;}
.y88{bottom:268.041750px;}
.y66{bottom:268.872000px;}
.yac{bottom:269.298750px;}
.y101{bottom:270.549150px;}
.yd0{bottom:270.688350px;}
.ye2{bottom:271.570500px;}
.y15c{bottom:273.495450px;}
.y141{bottom:275.944050px;}
.y1bd{bottom:280.116000px;}
.y191{bottom:280.867650px;}
.y19e{bottom:285.049650px;}
.y40{bottom:286.135950px;}
.y120{bottom:286.760550px;}
.y19{bottom:287.520000px;}
.y87{bottom:288.578400px;}
.y65{bottom:289.512600px;}
.yab{bottom:289.548750px;}
.ycf{bottom:291.127050px;}
.y100{bottom:291.948150px;}
.ye1{bottom:292.107300px;}
.y15b{bottom:294.246000px;}
.y140{bottom:296.966700px;}
.y1bc{bottom:300.452100px;}
.y190{bottom:301.311150px;}
.y19d{bottom:305.586300px;}
.y3f{bottom:306.401250px;}
.y11f{bottom:307.511100px;}
.y18{bottom:307.770000px;}
.y86{bottom:309.115200px;}
.yaa{bottom:309.798750px;}
.y64{bottom:310.153050px;}
.yce{bottom:311.565750px;}
.ye0{bottom:312.643950px;}
.yff{bottom:313.347300px;}
.y15a{bottom:314.996550px;}
.y13f{bottom:317.989350px;}
.y1bb{bottom:320.788050px;}
.y19c{bottom:326.122950px;}
.y17{bottom:328.020000px;}
.y11e{bottom:328.261650px;}
.y175{bottom:329.651850px;}
.ya9{bottom:330.048750px;}
.y63{bottom:330.793500px;}
.ycd{bottom:332.004450px;}
.yfe{bottom:334.746300px;}
.y159{bottom:335.747100px;}
.y18f{bottom:338.762400px;}
.y13e{bottom:339.012000px;}
.y1ba{bottom:341.124150px;}
.y3e{bottom:343.674450px;}
.y85{bottom:346.659750px;}
.y16{bottom:348.270000px;}
.y11d{bottom:349.012350px;}
.ydf{bottom:350.188500px;}
.ya8{bottom:350.298750px;}
.y62{bottom:351.434100px;}
.ycc{bottom:352.443150px;}
.yfd{bottom:356.145300px;}
.y158{bottom:356.497650px;}
.y18e{bottom:359.205750px;}
.y13d{bottom:360.034650px;}
.y1b9{bottom:361.460100px;}
.y3d{bottom:363.939900px;}
.y84{bottom:367.196400px;}
.y15{bottom:368.520000px;}
.y11c{bottom:369.762900px;}
.ya7{bottom:370.548750px;}
.yde{bottom:370.725300px;}
.y61{bottom:372.074550px;}
.ycb{bottom:372.881850px;}
.y157{bottom:377.248350px;}
.yfc{bottom:377.544300px;}
.y18d{bottom:379.649250px;}
.y13c{bottom:381.057300px;}
.y1b8{bottom:381.796200px;}
.y3c{bottom:384.205200px;}
.y83{bottom:387.733200px;}
.y14{bottom:388.770000px;}
.y11b{bottom:390.513450px;}
.ya6{bottom:390.798750px;}
.y174{bottom:391.261950px;}
.yca{bottom:393.320550px;}
.y156{bottom:397.998900px;}
.yfb{bottom:398.943300px;}
.y18c{bottom:400.092600px;}
.y13b{bottom:402.079950px;}
.y3b{bottom:404.470500px;}
.y82{bottom:408.269850px;}
.y13{bottom:409.020000px;}
.y60{bottom:409.722900px;}
.ya5{bottom:411.048750px;}
.y11a{bottom:411.264000px;}
.y173{bottom:411.798750px;}
.yc9{bottom:413.759100px;}
.y155{bottom:418.749450px;}
.y1b7{bottom:419.140200px;}
.yfa{bottom:420.342450px;}
.y18b{bottom:420.535950px;}
.y13a{bottom:423.102600px;}
.y3a{bottom:424.735800px;}
.y81{bottom:428.806650px;}
.y12{bottom:429.270000px;}
.y5f{bottom:430.363350px;}
.ya4{bottom:431.298750px;}
.y119{bottom:432.014550px;}
.y172{bottom:432.335400px;}
.yc8{bottom:434.197800px;}
.y1b6{bottom:439.476150px;}
.y154{bottom:439.500000px;}
.y18a{bottom:440.979450px;}
.y139{bottom:444.125250px;}
.y39{bottom:445.001100px;}
.y80{bottom:449.343300px;}
.y11{bottom:449.520000px;}
.y5e{bottom:451.003950px;}
.ya3{bottom:451.548750px;}
.y118{bottom:452.765250px;}
.y171{bottom:452.872200px;}
.yc7{bottom:454.636500px;}
.yf9{bottom:458.749350px;}
.y1b5{bottom:459.812250px;}
.y189{bottom:461.422800px;}
.y38{bottom:465.266400px;}
.y10{bottom:469.770000px;}
.y7f{bottom:469.879950px;}
.y5d{bottom:471.644400px;}
.ya2{bottom:471.798750px;}
.y170{bottom:473.408850px;}
.y117{bottom:473.515800px;}
.yc6{bottom:475.075200px;}
.y153{bottom:477.258450px;}
.y1b4{bottom:480.148200px;}
.yf8{bottom:480.148350px;}
.y188{bottom:481.866150px;}
.y138{bottom:482.155800px;}
.y37{bottom:485.531850px;}
.yf{bottom:490.020000px;}
.y7e{bottom:490.416750px;}
.ya1{bottom:492.048750px;}
.y5c{bottom:492.284850px;}
.y16f{bottom:493.945650px;}
.y116{bottom:494.266350px;}
.yc5{bottom:495.513900px;}
.y152{bottom:498.009000px;}
.yf7{bottom:501.547350px;}
.y137{bottom:503.178450px;}
.y36{bottom:505.797150px;}
.ydd{bottom:507.424650px;}
.ye{bottom:510.270000px;}
.y7d{bottom:510.953400px;}
.ya0{bottom:512.298750px;}
.y5b{bottom:512.925450px;}
.y16e{bottom:514.482300px;}
.y115{bottom:515.016900px;}
.y1b3{bottom:517.492200px;}
.y151{bottom:518.759700px;}
.y187{bottom:519.317550px;}
.yf6{bottom:522.946500px;}
.y136{bottom:524.201100px;}
.y35{bottom:526.062450px;}
.ydc{bottom:527.961300px;}
.yd{bottom:530.520000px;}
.y7c{bottom:531.490200px;}
.y9f{bottom:532.548750px;}
.yc4{bottom:532.960500px;}
.y5a{bottom:533.565900px;}
.y16d{bottom:535.018950px;}
.y114{bottom:535.767450px;}
.y1b2{bottom:537.828300px;}
.y150{bottom:539.510250px;}
.yf5{bottom:544.345500px;}
.y135{bottom:545.223750px;}
.y34{bottom:546.327750px;}
.ydb{bottom:548.497950px;}
.yc{bottom:550.770000px;}
.y7b{bottom:552.026850px;}
.y9e{bottom:552.798750px;}
.yc3{bottom:553.399200px;}
.y59{bottom:554.206350px;}
.y16c{bottom:555.555750px;}
.y113{bottom:556.518150px;}
.y186{bottom:556.768800px;}
.y1b1{bottom:558.164250px;}
.y14f{bottom:560.260800px;}
.yf4{bottom:565.744500px;}
.y1c7{bottom:565.767300px;}
.y134{bottom:566.246400px;}
.y33{bottom:566.593200px;}
.yda{bottom:569.034750px;}
.yb{bottom:571.020000px;}
.y7a{bottom:572.563500px;}
.y9d{bottom:573.048750px;}
.yc2{bottom:573.837900px;}
.y58{bottom:574.846950px;}
.y16b{bottom:576.092400px;}
.y112{bottom:577.268700px;}
.y1b0{bottom:578.500350px;}
.y14e{bottom:581.011350px;}
.y32{bottom:586.858500px;}
.yf3{bottom:587.143500px;}
.y133{bottom:587.269050px;}
.yd9{bottom:589.571400px;}
.ya{bottom:591.270000px;}
.y179{bottom:593.100300px;}
.y9c{bottom:593.298750px;}
.y185{bottom:594.220050px;}
.yc1{bottom:594.276600px;}
.y57{bottom:595.487400px;}
.y16a{bottom:596.629050px;}
.y111{bottom:598.019250px;}
.y1af{bottom:598.836300px;}
.y14d{bottom:601.762050px;}
.y1c6{bottom:603.025050px;}
.y31{bottom:607.123800px;}
.y132{bottom:608.291700px;}
.yf2{bottom:608.542650px;}
.y79{bottom:610.108200px;}
.y9{bottom:611.520000px;}
.y9b{bottom:613.548750px;}
.y178{bottom:613.636950px;}
.y184{bottom:614.663400px;}
.yc0{bottom:614.715300px;}
.y56{bottom:616.128000px;}
.y169{bottom:617.165850px;}
.y110{bottom:618.769800px;}
.y1ae{bottom:619.172400px;}
.y30{bottom:627.389100px;}
.y131{bottom:629.314350px;}
.y78{bottom:630.644850px;}
.y8{bottom:631.770000px;}
.y9a{bottom:633.798750px;}
.y177{bottom:634.173750px;}
.y183{bottom:635.106900px;}
.ybf{bottom:635.154000px;}
.y55{bottom:636.768450px;}
.y168{bottom:637.702500px;}
.y1ad{bottom:639.508500px;}
.y10f{bottom:639.520500px;}
.y1c5{bottom:640.282950px;}
.yf1{bottom:646.949550px;}
.y2f{bottom:647.654400px;}
.y130{bottom:650.337000px;}
.y77{bottom:651.181500px;}
.y7{bottom:652.020000px;}
.y99{bottom:654.048750px;}
.y176{bottom:654.710400px;}
.y182{bottom:655.550250px;}
.ybe{bottom:655.592700px;}
.y167{bottom:658.239300px;}
.y1ac{bottom:659.844450px;}
.y10e{bottom:660.271050px;}
.yf0{bottom:668.348550px;}
.y12f{bottom:671.359650px;}
.y76{bottom:671.718300px;}
.y98{bottom:674.298750px;}
.y54{bottom:674.416800px;}
.y19b{bottom:675.247050px;}
.y181{bottom:675.993750px;}
.ybd{bottom:676.031400px;}
.y14c{bottom:677.278950px;}
.y1c4{bottom:677.540850px;}
.y166{bottom:678.775950px;}
.yef{bottom:689.747550px;}
.y75{bottom:692.254950px;}
.y97{bottom:694.548750px;}
.y53{bottom:695.057400px;}
.y19a{bottom:695.783850px;}
.ybc{bottom:696.470100px;}
.y1ab{bottom:697.188450px;}
.y10d{bottom:698.029500px;}
.y165{bottom:699.312750px;}
.y12e{bottom:709.390200px;}
.yee{bottom:711.146550px;}
.y74{bottom:712.791750px;}
.y180{bottom:713.445000px;}
.y2e{bottom:714.691350px;}
.y96{bottom:714.798750px;}
.y52{bottom:715.697850px;}
.y199{bottom:716.320500px;}
.ybb{bottom:716.908650px;}
.y14b{bottom:718.780050px;}
.y12d{bottom:730.412850px;}
.yed{bottom:732.545700px;}
.y73{bottom:733.328400px;}
.y17f{bottom:733.888350px;}
.y1aa{bottom:734.532300px;}
.y2d{bottom:734.956800px;}
.y95{bottom:735.048750px;}
.y10c{bottom:735.787950px;}
.y51{bottom:736.338300px;}
.y164{bottom:736.857300px;}
.y6{bottom:744.553500px;}
.y12c{bottom:751.435500px;}
.y72{bottom:753.865200px;}
.yec{bottom:753.944700px;}
.y17e{bottom:754.331700px;}
.yba{bottom:754.355250px;}
.y1a9{bottom:754.868400px;}
.y2c{bottom:755.222100px;}
.y94{bottom:755.298750px;}
.y10b{bottom:756.538500px;}
.y50{bottom:756.978900px;}
.y198{bottom:757.393950px;}
.y5{bottom:765.553500px;}
.y12b{bottom:772.458000px;}
.y71{bottom:774.401850px;}
.y17d{bottom:774.775200px;}
.yb9{bottom:774.793950px;}
.y1a8{bottom:775.204500px;}
.yeb{bottom:775.343700px;}
.y2b{bottom:775.487400px;}
.y93{bottom:775.548750px;}
.y10a{bottom:777.289050px;}
.y4f{bottom:777.619350px;}
.y4{bottom:786.553500px;}
.y12a{bottom:793.480800px;}
.y70{bottom:794.938500px;}
.y17c{bottom:795.218700px;}
.yb8{bottom:795.232650px;}
.y1a7{bottom:795.540600px;}
.y2a{bottom:795.752700px;}
.y92{bottom:795.798750px;}
.y14a{bottom:798.039600px;}
.y3{bottom:807.553500px;}
.yea{bottom:813.750600px;}
.y129{bottom:814.503450px;}
.y109{bottom:815.047650px;}
.y4e{bottom:815.267700px;}
.y6f{bottom:815.475300px;}
.y17b{bottom:815.662050px;}
.yb7{bottom:815.671350px;}
.y1a6{bottom:815.876550px;}
.y29{bottom:816.018000px;}
.y91{bottom:816.048750px;}
.ye9{bottom:835.149600px;}
.y128{bottom:835.526100px;}
.y108{bottom:835.798050px;}
.y4d{bottom:835.908300px;}
.y6e{bottom:836.011950px;}
.y17a{bottom:836.105400px;}
.yb6{bottom:836.110050px;}
.y1a5{bottom:836.212650px;}
.y28{bottom:836.283450px;}
.y90{bottom:836.298750px;}
.y27{bottom:856.548750px;}
.y2{bottom:880.653450px;}
.y1{bottom:880.653600px;}
.y25{bottom:898.288950px;}
.y4b{bottom:898.290300px;}
.y24{bottom:898.309800px;}
.y4a{bottom:898.311150px;}
.h5{height:19.756704px;}
.h2{height:29.652000px;}
.h7{height:33.888000px;}
.h6{height:34.032000px;}
.h8{height:42.360000px;}
.h4{height:42.540000px;}
.h3{height:50.832000px;}
.h0{height:977.953500px;}
.h1{height:978.000000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5{left:114.803100px;}
.x2{left:170.078700px;}
.x4{left:180.303750px;}
.x3{left:191.338500px;}
.x1{left:441.664650px;}
.x6{left:569.915550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls13{letter-spacing:-1.120000pt;}
.ls14{letter-spacing:-1.066667pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls15{letter-spacing:-0.746667pt;}
.ls5{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.160000pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.106667pt;}
.ls8{letter-spacing:-0.074624pt;}
.ls7{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.026667pt;}
.ls12{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.240000pt;}
.ls1{letter-spacing:0.266667pt;}
.ls17{letter-spacing:0.293333pt;}
.lsd{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.426667pt;}
.ls18{letter-spacing:0.586667pt;}
.ws34{word-spacing:-10.986667pt;}
.ws49{word-spacing:-10.773333pt;}
.ws36{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws35{word-spacing:-9.920000pt;}
.ws37{word-spacing:-9.706667pt;}
.ws33{word-spacing:-9.600000pt;}
.ws32{word-spacing:-9.546667pt;}
.ws26{word-spacing:-1.653333pt;}
.ws6{word-spacing:-1.600000pt;}
.ws59{word-spacing:-1.546667pt;}
.ws51{word-spacing:-1.493333pt;}
.ws56{word-spacing:-1.440000pt;}
.ws43{word-spacing:-1.386667pt;}
.ws45{word-spacing:-1.333333pt;}
.wse{word-spacing:-1.280000pt;}
.ws28{word-spacing:-1.226667pt;}
.ws46{word-spacing:-1.120000pt;}
.ws4{word-spacing:-1.066667pt;}
.ws3b{word-spacing:-1.013333pt;}
.ws40{word-spacing:-0.960000pt;}
.ws44{word-spacing:-0.906667pt;}
.ws18{word-spacing:-0.853333pt;}
.ws4b{word-spacing:-0.800000pt;}
.ws48{word-spacing:-0.746667pt;}
.ws2a{word-spacing:-0.693333pt;}
.ws1e{word-spacing:-0.640000pt;}
.ws4a{word-spacing:-0.586667pt;}
.ws23{word-spacing:-0.533333pt;}
.ws20{word-spacing:-0.480000pt;}
.ws39{word-spacing:-0.426667pt;}
.ws2{word-spacing:-0.373333pt;}
.ws1b{word-spacing:-0.320000pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws31{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.160000pt;}
.ws11{word-spacing:-0.106667pt;}
.ws2c{word-spacing:-0.053333pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.053333pt;}
.wsd{word-spacing:0.074624pt;}
.ws21{word-spacing:0.106667pt;}
.ws27{word-spacing:0.160000pt;}
.ws52{word-spacing:0.213333pt;}
.ws47{word-spacing:0.266667pt;}
.ws8{word-spacing:0.320000pt;}
.ws54{word-spacing:0.373333pt;}
.ws53{word-spacing:0.426667pt;}
.ws42{word-spacing:0.480000pt;}
.ws50{word-spacing:0.533333pt;}
.ws7{word-spacing:0.586667pt;}
.ws2f{word-spacing:0.640000pt;}
.ws10{word-spacing:0.693333pt;}
.ws25{word-spacing:0.800000pt;}
.ws55{word-spacing:0.853333pt;}
.ws4e{word-spacing:0.906667pt;}
.ws24{word-spacing:0.960000pt;}
.ws4d{word-spacing:1.013333pt;}
.ws22{word-spacing:1.066667pt;}
.ws2b{word-spacing:1.120000pt;}
.ws29{word-spacing:1.173333pt;}
.ws57{word-spacing:1.226667pt;}
.wsa{word-spacing:1.280000pt;}
.ws13{word-spacing:1.333333pt;}
.ws3e{word-spacing:1.386667pt;}
.wsc{word-spacing:1.440000pt;}
.ws16{word-spacing:1.493333pt;}
.ws4f{word-spacing:1.546667pt;}
.ws2e{word-spacing:1.600000pt;}
.ws15{word-spacing:1.653333pt;}
.ws38{word-spacing:1.706667pt;}
.ws2d{word-spacing:1.760000pt;}
.ws1d{word-spacing:1.813333pt;}
.ws14{word-spacing:1.866667pt;}
.ws1f{word-spacing:1.920000pt;}
.ws19{word-spacing:1.973333pt;}
.ws3{word-spacing:2.026667pt;}
.ws12{word-spacing:2.080000pt;}
.ws5{word-spacing:2.133333pt;}
.ws1c{word-spacing:2.240000pt;}
.ws30{word-spacing:2.293333pt;}
.ws3c{word-spacing:2.400000pt;}
.wsb{word-spacing:2.453333pt;}
.ws3f{word-spacing:2.506667pt;}
.wsf{word-spacing:2.560000pt;}
.ws58{word-spacing:2.613333pt;}
.ws5a{word-spacing:2.666667pt;}
.ws41{word-spacing:2.933333pt;}
.ws3d{word-spacing:2.986667pt;}
.ws3a{word-spacing:3.146667pt;}
.ws4c{word-spacing:6.133333pt;}
._7{margin-left:-6.483200pt;}
._2{margin-left:-5.453333pt;}
._1{margin-left:-3.832533pt;}
._5{margin-left:-2.850133pt;}
._0{margin-left:-1.683733pt;}
._3{width:1.212800pt;}
._4{width:2.393067pt;}
._6{width:3.396267pt;}
._8{width:4.300267pt;}
._9{width:5.292267pt;}
.fs3{font-size:24.874667pt;}
.fs0{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:44.646133pt;}
.y26{bottom:48.446667pt;}
.y23{bottom:77.102267pt;}
.y49{bottom:77.102400pt;}
.yb5{bottom:77.376667pt;}
.y22{bottom:90.435600pt;}
.y48{bottom:95.116000pt;}
.y1c3{bottom:95.178800pt;}
.yd8{bottom:95.270000pt;}
.y8f{bottom:95.357200pt;}
.yb4{bottom:95.376667pt;}
.y6d{bottom:95.449467pt;}
.y127{bottom:95.547333pt;}
.y149{bottom:95.789200pt;}
.y107{bottom:96.123733pt;}
.y21{bottom:103.768933pt;}
.y20{bottom:107.320933pt;}
.y197{bottom:110.392400pt;}
.y47{bottom:113.129600pt;}
.yb3{bottom:113.376667pt;}
.yd7{bottom:113.437733pt;}
.y8e{bottom:113.612000pt;}
.y6c{bottom:113.796533pt;}
.y163{bottom:113.992267pt;}
.y148{bottom:114.476000pt;}
.y106{bottom:115.145067pt;}
.y1c2{bottom:128.373333pt;}
.y1a4{bottom:128.730133pt;}
.y126{bottom:129.110400pt;}
.y46{bottom:131.143200pt;}
.yb2{bottom:131.376667pt;}
.yd6{bottom:131.605467pt;}
.ye8{bottom:131.866933pt;}
.y6b{bottom:132.143733pt;}
.y162{bottom:132.437200pt;}
.y147{bottom:133.162800pt;}
.y196{bottom:143.682533pt;}
.y1c1{bottom:146.449867pt;}
.y8d{bottom:146.985067pt;}
.y125{bottom:147.555333pt;}
.y1f{bottom:147.573333pt;}
.y45{bottom:149.156800pt;}
.y105{bottom:149.284533pt;}
.yb1{bottom:149.376667pt;}
.yd5{bottom:149.773200pt;}
.ye7{bottom:150.121733pt;}
.y6a{bottom:150.490800pt;}
.y161{bottom:150.882267pt;}
.y146{bottom:151.849600pt;}
.y195{bottom:161.854400pt;}
.y1a3{bottom:162.103200pt;}
.y1c0{bottom:164.526267pt;}
.y8c{bottom:165.239867pt;}
.y1e{bottom:165.573333pt;}
.y124{bottom:166.000267pt;}
.y44{bottom:167.170533pt;}
.yb0{bottom:167.376667pt;}
.yd4{bottom:167.940933pt;}
.y104{bottom:168.306000pt;}
.ye6{bottom:168.376667pt;}
.y160{bottom:169.327200pt;}
.y145{bottom:170.536400pt;}
.y194{bottom:180.026267pt;}
.y1a2{bottom:180.358000pt;}
.y8b{bottom:183.494800pt;}
.y1d{bottom:183.573333pt;}
.y69{bottom:183.956000pt;}
.y123{bottom:184.445333pt;}
.yaf{bottom:185.376667pt;}
.yd3{bottom:186.108667pt;}
.ye5{bottom:186.631467pt;}
.y15f{bottom:187.772133pt;}
.y144{bottom:189.223200pt;}
.y1bf{bottom:197.720933pt;}
.y193{bottom:198.198267pt;}
.y1a1{bottom:198.612800pt;}
.y43{bottom:200.302267pt;}
.y1c{bottom:201.573333pt;}
.y8a{bottom:201.749600pt;}
.y68{bottom:202.303200pt;}
.y103{bottom:202.445333pt;}
.y122{bottom:202.890267pt;}
.yae{bottom:203.376667pt;}
.yd2{bottom:204.276400pt;}
.ye4{bottom:204.886400pt;}
.y15e{bottom:206.217067pt;}
.y143{bottom:207.910000pt;}
.y1be{bottom:215.797467pt;}
.y1a0{bottom:216.867733pt;}
.y42{bottom:218.315867pt;}
.y1b{bottom:219.573333pt;}
.y89{bottom:220.004400pt;}
.y67{bottom:220.650267pt;}
.yad{bottom:221.376667pt;}
.y102{bottom:221.466800pt;}
.yd1{bottom:222.444133pt;}
.ye3{bottom:223.141200pt;}
.y15d{bottom:224.662000pt;}
.y142{bottom:226.596800pt;}
.y192{bottom:231.488267pt;}
.y19f{bottom:235.122533pt;}
.y41{bottom:236.329467pt;}
.y121{bottom:236.453333pt;}
.y1a{bottom:237.573333pt;}
.y88{bottom:238.259333pt;}
.y66{bottom:238.997333pt;}
.yac{bottom:239.376667pt;}
.y101{bottom:240.488133pt;}
.yd0{bottom:240.611867pt;}
.ye2{bottom:241.396000pt;}
.y15c{bottom:243.107067pt;}
.y141{bottom:245.283600pt;}
.y1bd{bottom:248.992000pt;}
.y191{bottom:249.660133pt;}
.y19e{bottom:253.377467pt;}
.y40{bottom:254.343067pt;}
.y120{bottom:254.898267pt;}
.y19{bottom:255.573333pt;}
.y87{bottom:256.514133pt;}
.y65{bottom:257.344533pt;}
.yab{bottom:257.376667pt;}
.ycf{bottom:258.779600pt;}
.y100{bottom:259.509467pt;}
.ye1{bottom:259.650933pt;}
.y15b{bottom:261.552000pt;}
.y140{bottom:263.970400pt;}
.y1bc{bottom:267.068533pt;}
.y190{bottom:267.832133pt;}
.y19d{bottom:271.632267pt;}
.y3f{bottom:272.356667pt;}
.y11f{bottom:273.343200pt;}
.y18{bottom:273.573333pt;}
.y86{bottom:274.769067pt;}
.yaa{bottom:275.376667pt;}
.y64{bottom:275.691600pt;}
.yce{bottom:276.947333pt;}
.ye0{bottom:277.905733pt;}
.yff{bottom:278.530933pt;}
.y15a{bottom:279.996933pt;}
.y13f{bottom:282.657200pt;}
.y1bb{bottom:285.144933pt;}
.y19c{bottom:289.887067pt;}
.y17{bottom:291.573333pt;}
.y11e{bottom:291.788133pt;}
.y175{bottom:293.023867pt;}
.ya9{bottom:293.376667pt;}
.y63{bottom:294.038667pt;}
.ycd{bottom:295.115067pt;}
.yfe{bottom:297.552267pt;}
.y159{bottom:298.441867pt;}
.y18f{bottom:301.122133pt;}
.y13e{bottom:301.344000pt;}
.y1ba{bottom:303.221467pt;}
.y3e{bottom:305.488400pt;}
.y85{bottom:308.142000pt;}
.y16{bottom:309.573333pt;}
.y11d{bottom:310.233200pt;}
.ydf{bottom:311.278667pt;}
.ya8{bottom:311.376667pt;}
.y62{bottom:312.385867pt;}
.ycc{bottom:313.282800pt;}
.yfd{bottom:316.573600pt;}
.y158{bottom:316.886800pt;}
.y18e{bottom:319.294000pt;}
.y13d{bottom:320.030800pt;}
.y1b9{bottom:321.297867pt;}
.y3d{bottom:323.502133pt;}
.y84{bottom:326.396800pt;}
.y15{bottom:327.573333pt;}
.y11c{bottom:328.678133pt;}
.ya7{bottom:329.376667pt;}
.yde{bottom:329.533600pt;}
.y61{bottom:330.732933pt;}
.ycb{bottom:331.450533pt;}
.y157{bottom:335.331867pt;}
.yfc{bottom:335.594933pt;}
.y18d{bottom:337.466000pt;}
.y13c{bottom:338.717600pt;}
.y1b8{bottom:339.374400pt;}
.y3c{bottom:341.515733pt;}
.y83{bottom:344.651733pt;}
.y14{bottom:345.573333pt;}
.y11b{bottom:347.123067pt;}
.ya6{bottom:347.376667pt;}
.y174{bottom:347.788400pt;}
.yca{bottom:349.618267pt;}
.y156{bottom:353.776800pt;}
.yfb{bottom:354.616267pt;}
.y18c{bottom:355.637867pt;}
.y13b{bottom:357.404400pt;}
.y3b{bottom:359.529333pt;}
.y82{bottom:362.906533pt;}
.y13{bottom:363.573333pt;}
.y60{bottom:364.198133pt;}
.ya5{bottom:365.376667pt;}
.y11a{bottom:365.568000pt;}
.y173{bottom:366.043333pt;}
.yc9{bottom:367.785867pt;}
.y155{bottom:372.221733pt;}
.y1b7{bottom:372.569067pt;}
.yfa{bottom:373.637733pt;}
.y18b{bottom:373.809733pt;}
.y13a{bottom:376.091200pt;}
.y3a{bottom:377.542933pt;}
.y81{bottom:381.161467pt;}
.y12{bottom:381.573333pt;}
.y5f{bottom:382.545200pt;}
.ya4{bottom:383.376667pt;}
.y119{bottom:384.012933pt;}
.y172{bottom:384.298133pt;}
.yc8{bottom:385.953600pt;}
.y1b6{bottom:390.645467pt;}
.y154{bottom:390.666667pt;}
.y18a{bottom:391.981733pt;}
.y139{bottom:394.778000pt;}
.y39{bottom:395.556533pt;}
.y80{bottom:399.416267pt;}
.y11{bottom:399.573333pt;}
.y5e{bottom:400.892400pt;}
.ya3{bottom:401.376667pt;}
.y118{bottom:402.458000pt;}
.y171{bottom:402.553067pt;}
.yc7{bottom:404.121333pt;}
.yf9{bottom:407.777200pt;}
.y1b5{bottom:408.722000pt;}
.y189{bottom:410.153600pt;}
.y38{bottom:413.570133pt;}
.y10{bottom:417.573333pt;}
.y7f{bottom:417.671067pt;}
.y5d{bottom:419.239467pt;}
.ya2{bottom:419.376667pt;}
.y170{bottom:420.807867pt;}
.y117{bottom:420.902933pt;}
.yc6{bottom:422.289067pt;}
.y153{bottom:424.229733pt;}
.y1b4{bottom:426.798400pt;}
.yf8{bottom:426.798533pt;}
.y188{bottom:428.325467pt;}
.y138{bottom:428.582933pt;}
.y37{bottom:431.583867pt;}
.yf{bottom:435.573333pt;}
.y7e{bottom:435.926000pt;}
.ya1{bottom:437.376667pt;}
.y5c{bottom:437.586533pt;}
.y16f{bottom:439.062800pt;}
.y116{bottom:439.347867pt;}
.yc5{bottom:440.456800pt;}
.y152{bottom:442.674667pt;}
.yf7{bottom:445.819867pt;}
.y137{bottom:447.269733pt;}
.y36{bottom:449.597467pt;}
.ydd{bottom:451.044133pt;}
.ye{bottom:453.573333pt;}
.y7d{bottom:454.180800pt;}
.ya0{bottom:455.376667pt;}
.y5b{bottom:455.933733pt;}
.y16e{bottom:457.317600pt;}
.y115{bottom:457.792800pt;}
.y1b3{bottom:459.993067pt;}
.y151{bottom:461.119733pt;}
.y187{bottom:461.615600pt;}
.yf6{bottom:464.841333pt;}
.y136{bottom:465.956533pt;}
.y35{bottom:467.611067pt;}
.ydc{bottom:469.298933pt;}
.yd{bottom:471.573333pt;}
.y7c{bottom:472.435733pt;}
.y9f{bottom:473.376667pt;}
.yc4{bottom:473.742667pt;}
.y5a{bottom:474.280800pt;}
.y16d{bottom:475.572400pt;}
.y114{bottom:476.237733pt;}
.y1b2{bottom:478.069600pt;}
.y150{bottom:479.564667pt;}
.yf5{bottom:483.862667pt;}
.y135{bottom:484.643333pt;}
.y34{bottom:485.624667pt;}
.ydb{bottom:487.553733pt;}
.yc{bottom:489.573333pt;}
.y7b{bottom:490.690533pt;}
.y9e{bottom:491.376667pt;}
.yc3{bottom:491.910400pt;}
.y59{bottom:492.627867pt;}
.y16c{bottom:493.827333pt;}
.y113{bottom:494.682800pt;}
.y186{bottom:494.905600pt;}
.y1b1{bottom:496.146000pt;}
.y14f{bottom:498.009600pt;}
.yf4{bottom:502.884000pt;}
.y1c7{bottom:502.904267pt;}
.y134{bottom:503.330133pt;}
.y33{bottom:503.638400pt;}
.yda{bottom:505.808667pt;}
.yb{bottom:507.573333pt;}
.y7a{bottom:508.945333pt;}
.y9d{bottom:509.376667pt;}
.yc2{bottom:510.078133pt;}
.y58{bottom:510.975067pt;}
.y16b{bottom:512.082133pt;}
.y112{bottom:513.127733pt;}
.y1b0{bottom:514.222533pt;}
.y14e{bottom:516.454533pt;}
.y32{bottom:521.652000pt;}
.yf3{bottom:521.905333pt;}
.y133{bottom:522.016933pt;}
.yd9{bottom:524.063467pt;}
.ya{bottom:525.573333pt;}
.y179{bottom:527.200267pt;}
.y9c{bottom:527.376667pt;}
.y185{bottom:528.195600pt;}
.yc1{bottom:528.245867pt;}
.y57{bottom:529.322133pt;}
.y16a{bottom:530.336933pt;}
.y111{bottom:531.572667pt;}
.y1af{bottom:532.298933pt;}
.y14d{bottom:534.899600pt;}
.y1c6{bottom:536.022267pt;}
.y31{bottom:539.665600pt;}
.y132{bottom:540.703733pt;}
.yf2{bottom:540.926800pt;}
.y79{bottom:542.318400pt;}
.y9{bottom:543.573333pt;}
.y9b{bottom:545.376667pt;}
.y178{bottom:545.455067pt;}
.y184{bottom:546.367467pt;}
.yc0{bottom:546.413600pt;}
.y56{bottom:547.669333pt;}
.y169{bottom:548.591867pt;}
.y110{bottom:550.017600pt;}
.y1ae{bottom:550.375467pt;}
.y30{bottom:557.679200pt;}
.y131{bottom:559.390533pt;}
.y78{bottom:560.573200pt;}
.y8{bottom:561.573333pt;}
.y9a{bottom:563.376667pt;}
.y177{bottom:563.710000pt;}
.y183{bottom:564.539467pt;}
.ybf{bottom:564.581333pt;}
.y55{bottom:566.016400pt;}
.y168{bottom:566.846667pt;}
.y1ad{bottom:568.452000pt;}
.y10f{bottom:568.462667pt;}
.y1c5{bottom:569.140400pt;}
.yf1{bottom:575.066267pt;}
.y2f{bottom:575.692800pt;}
.y130{bottom:578.077333pt;}
.y77{bottom:578.828000pt;}
.y7{bottom:579.573333pt;}
.y99{bottom:581.376667pt;}
.y176{bottom:581.964800pt;}
.y182{bottom:582.711333pt;}
.ybe{bottom:582.749067pt;}
.y167{bottom:585.101600pt;}
.y1ac{bottom:586.528400pt;}
.y10e{bottom:586.907600pt;}
.yf0{bottom:594.087600pt;}
.y12f{bottom:596.764133pt;}
.y76{bottom:597.082933pt;}
.y98{bottom:599.376667pt;}
.y54{bottom:599.481600pt;}
.y19b{bottom:600.219600pt;}
.y181{bottom:600.883333pt;}
.ybd{bottom:600.916800pt;}
.y14c{bottom:602.025733pt;}
.y1c4{bottom:602.258533pt;}
.y166{bottom:603.356400pt;}
.yef{bottom:613.108933pt;}
.y75{bottom:615.337733pt;}
.y97{bottom:617.376667pt;}
.y53{bottom:617.828800pt;}
.y19a{bottom:618.474533pt;}
.ybc{bottom:619.084533pt;}
.y1ab{bottom:619.723067pt;}
.y10d{bottom:620.470667pt;}
.y165{bottom:621.611333pt;}
.y12e{bottom:630.569067pt;}
.yee{bottom:632.130267pt;}
.y74{bottom:633.592667pt;}
.y180{bottom:634.173333pt;}
.y2e{bottom:635.281200pt;}
.y96{bottom:635.376667pt;}
.y52{bottom:636.175867pt;}
.y199{bottom:636.729333pt;}
.ybb{bottom:637.252133pt;}
.y14b{bottom:638.915600pt;}
.y12d{bottom:649.255867pt;}
.yed{bottom:651.151733pt;}
.y73{bottom:651.847467pt;}
.y17f{bottom:652.345200pt;}
.y1aa{bottom:652.917600pt;}
.y2d{bottom:653.294933pt;}
.y95{bottom:653.376667pt;}
.y10c{bottom:654.033733pt;}
.y51{bottom:654.522933pt;}
.y164{bottom:654.984267pt;}
.y6{bottom:661.825333pt;}
.y12c{bottom:667.942667pt;}
.y72{bottom:670.102400pt;}
.yec{bottom:670.173067pt;}
.y17e{bottom:670.517067pt;}
.yba{bottom:670.538000pt;}
.y1a9{bottom:670.994133pt;}
.y2c{bottom:671.308533pt;}
.y94{bottom:671.376667pt;}
.y10b{bottom:672.478667pt;}
.y50{bottom:672.870133pt;}
.y198{bottom:673.239067pt;}
.y5{bottom:680.492000pt;}
.y12b{bottom:686.629333pt;}
.y71{bottom:688.357200pt;}
.y17d{bottom:688.689067pt;}
.yb9{bottom:688.705733pt;}
.y1a8{bottom:689.070667pt;}
.yeb{bottom:689.194400pt;}
.y2b{bottom:689.322133pt;}
.y93{bottom:689.376667pt;}
.y10a{bottom:690.923600pt;}
.y4f{bottom:691.217200pt;}
.y4{bottom:699.158667pt;}
.y12a{bottom:705.316267pt;}
.y70{bottom:706.612000pt;}
.y17c{bottom:706.861067pt;}
.yb8{bottom:706.873467pt;}
.y1a7{bottom:707.147200pt;}
.y2a{bottom:707.335733pt;}
.y92{bottom:707.376667pt;}
.y14a{bottom:709.368533pt;}
.y3{bottom:717.825333pt;}
.yea{bottom:723.333867pt;}
.y129{bottom:724.003067pt;}
.y109{bottom:724.486800pt;}
.y4e{bottom:724.682400pt;}
.y6f{bottom:724.866933pt;}
.y17b{bottom:725.032933pt;}
.yb7{bottom:725.041200pt;}
.y1a6{bottom:725.223600pt;}
.y29{bottom:725.349333pt;}
.y91{bottom:725.376667pt;}
.ye9{bottom:742.355200pt;}
.y128{bottom:742.689867pt;}
.y108{bottom:742.931600pt;}
.y4d{bottom:743.029600pt;}
.y6e{bottom:743.121733pt;}
.y17a{bottom:743.204800pt;}
.yb6{bottom:743.208933pt;}
.y1a5{bottom:743.300133pt;}
.y28{bottom:743.363067pt;}
.y90{bottom:743.376667pt;}
.y27{bottom:761.376667pt;}
.y2{bottom:782.803067pt;}
.y1{bottom:782.803200pt;}
.y25{bottom:798.479067pt;}
.y4b{bottom:798.480267pt;}
.y24{bottom:798.497600pt;}
.y4a{bottom:798.498800pt;}
.h5{height:17.561515pt;}
.h2{height:26.357333pt;}
.h7{height:30.122667pt;}
.h6{height:30.250667pt;}
.h8{height:37.653333pt;}
.h4{height:37.813333pt;}
.h3{height:45.184000pt;}
.h0{height:869.292000pt;}
.h1{height:869.333333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5{left:102.047200pt;}
.x2{left:151.181067pt;}
.x4{left:160.270000pt;}
.x3{left:170.078667pt;}
.x1{left:392.590800pt;}
.x6{left:506.591600pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  