
    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_f80c4d83dcb35d52172c4d5f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.109000;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_9f224202277b46504ce51109.woff')format("woff");}.ff2{font-family:ff2;line-height:0.926000;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_0acc42b490b862c319cb5b78.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979000;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_95499af4b94f2f93b0aef74a.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_bac01c910de700e2ec36a834.woff')format("woff");}.ff5{font-family:ff5;line-height:0.700000;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_052a21ff79008e6a5bb3210d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.868000;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_e14fe574f94bf9a26d6cbd53.woff')format("woff");}.ff7{font-family:ff7;line-height:1.471823;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_8fb5bff9dc3281fc5ec59411.woff')format("woff");}.ff8{font-family:ff8;line-height:0.904000;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:ff9;src:url('chunks/assets/font_efc8575f95c05f1bd7a7bc44.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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:ffa;src:url('chunks/assets/font_2dd58cf08ada6b56a6c9bc22.woff')format("woff");}.ffa{font-family:ffa;line-height:1.132324;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:ffb;src:url('chunks/assets/font_6b8c2b718f37de5e1870f685.woff')format("woff");}.ffb{font-family:ffb;line-height:1.072000;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:ffc;src:url('chunks/assets/font_76f06f688aeabcd3cbb16790.woff')format("woff");}.ffc{font-family:ffc;line-height:0.828000;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:ffd;src:url('chunks/assets/font_72d2596f20fb943e9860a095.woff')format("woff");}.ffd{font-family:ffd;line-height:0.860840;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:ffe;src:url('chunks/assets/font_fc89365f985ec148f07e52d9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666504;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:fff;src:url('chunks/assets/font_b18a83a22e760e297ea5fddf.woff')format("woff");}.fff{font-family:fff;line-height:0.714000;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:ff10;src:url('chunks/assets/font_5ff7ca169eeac28dad719010.woff')format("woff");}.ff10{font-family:ff10;line-height:0.698000;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:ff11;src:url('chunks/assets/font_abefebcca66d1d098695630e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.106000;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:ff12;src:url('chunks/assets/font_b4df2739babd1ae06f6b8df8.woff')format("woff");}.ff12{font-family:ff12;line-height:0.712000;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:ff13;src:url('chunks/assets/font_5c116c9e5541b1c07e91394b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.120605;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:ff14;src:url('chunks/assets/font_041b6197112977e6f2aaa14e.woff')format("woff");}.ff14{font-family:ff14;line-height:0.774902;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:ff15;src:url('chunks/assets/font_c0f510723bc97c4e9d8379e4.woff')format("woff");}.ff15{font-family:ff15;line-height:0.959473;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:ff16;src:url('chunks/assets/font_fe9dc6d6637afb1024ed1ccc.woff')format("woff");}.ff16{font-family:ff16;line-height:0.937988;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:ff17;src:url('chunks/assets/font_70f5cf527a961aeecc8268aa.woff')format("woff");}.ff17{font-family:ff17;line-height:0.680000;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:ff18;src:url('chunks/assets/font_442c24d0537f43a15b32695a.woff')format("woff");}.ff18{font-family:ff18;line-height:0.848145;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:ff19;src:url('chunks/assets/font_07b4cc8023cef47d4d2dfdfe.woff')format("woff");}.ff19{font-family:ff19;line-height:0.979980;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:ff1a;src:url('chunks/assets/font_ab42efe018f44152118ec419.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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:ff1b;src:url('chunks/assets/font_bc0fdd9acb28f18c4d613809.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.666000;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:ff1c;src:url('chunks/assets/font_cb42174725e6060ba45718d7.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.926758;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:ff1d;src:url('chunks/assets/font_7df27bd2bdf3a8aace5d206f.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.910156;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:ff1e;src:url('chunks/assets/font_2aa8ef13380709215e787d6e.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.719727;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:ff1f;src:url('chunks/assets/font_1cd7257e1be9b82a4cd42f6b.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.717285;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:ff20;src:url('chunks/assets/font_0a5dd606c3f071cd94ba6f82.woff')format("woff");}.ff20{font-family:ff20;line-height:0.717285;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:ff21;src:url('chunks/assets/font_e27bda22838f8ccb873cf142.woff')format("woff");}.ff21{font-family:ff21;line-height:0.742676;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:ff22;src:url('chunks/assets/font_b85503c37d1d7be570c43dee.woff')format("woff");}.ff22{font-family:ff22;line-height:0.558000;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;}
.m5{transform:matrix(-0.179835,0.173665,0.173665,0.179835,0,0);-ms-transform:matrix(-0.179835,0.173665,0.173665,0.179835,0,0);-webkit-transform:matrix(-0.179835,0.173665,0.173665,0.179835,0,0);}
.m12{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mc{transform:matrix(0.047702,0.245407,-0.245407,0.047702,0,0);-ms-transform:matrix(0.047702,0.245407,-0.245407,0.047702,0,0);-webkit-transform:matrix(0.047702,0.245407,-0.245407,0.047702,0,0);}
.m4{transform:matrix(0.068909,0.240315,-0.240315,0.068909,0,0);-ms-transform:matrix(0.068909,0.240315,-0.240315,0.068909,0,0);-webkit-transform:matrix(0.068909,0.240315,-0.240315,0.068909,0,0);}
.ma{transform:matrix(0.073093,0.239076,-0.239076,0.073093,0,0);-ms-transform:matrix(0.073093,0.239076,-0.239076,0.073093,0,0);-webkit-transform:matrix(0.073093,0.239076,-0.239076,0.073093,0,0);}
.m2{transform:matrix(0.121202,-0.218655,0.218655,0.121202,0,0);-ms-transform:matrix(0.121202,-0.218655,0.218655,0.121202,0,0);-webkit-transform:matrix(0.121202,-0.218655,0.218655,0.121202,0,0);}
.m6{transform:matrix(0.139798,-0.207259,0.207259,0.139798,0,0);-ms-transform:matrix(0.139798,-0.207259,0.207259,0.139798,0,0);-webkit-transform:matrix(0.139798,-0.207259,0.207259,0.139798,0,0);}
.m7{transform:matrix(0.150454,0.199659,-0.199659,0.150454,0,0);-ms-transform:matrix(0.150454,0.199659,-0.199659,0.150454,0,0);-webkit-transform:matrix(0.150454,0.199659,-0.199659,0.150454,0,0);}
.me{transform:matrix(0.153915,0.197003,-0.197003,0.153915,0,0);-ms-transform:matrix(0.153915,0.197003,-0.197003,0.153915,0,0);-webkit-transform:matrix(0.153915,0.197003,-0.197003,0.153915,0,0);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);}
.mb{transform:matrix(0.207259,-0.139798,0.139798,0.207259,0,0);-ms-transform:matrix(0.207259,-0.139798,0.139798,0.207259,0,0);-webkit-transform:matrix(0.207259,-0.139798,0.139798,0.207259,0,0);}
.m8{transform:matrix(0.209668,0.136160,-0.136160,0.209668,0,0);-ms-transform:matrix(0.209668,0.136160,-0.136160,0.209668,0,0);-webkit-transform:matrix(0.209668,0.136160,-0.136160,0.209668,0,0);}
.md{transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);-ms-transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);-webkit-transform:matrix(0.230126,-0.097683,0.097683,0.230126,0,0);}
.mf{transform:matrix(0.237799,-0.077146,0.077146,0.237799,0,0);-ms-transform:matrix(0.237799,-0.077146,0.077146,0.237799,0,0);-webkit-transform:matrix(0.237799,-0.077146,0.077146,0.237799,0,0);}
.m10{transform:matrix(0.246727,-0.040318,0.040318,0.246727,0,0);-ms-transform:matrix(0.246727,-0.040318,0.040318,0.246727,0,0);-webkit-transform:matrix(0.246727,-0.040318,0.040318,0.246727,0,0);}
.m9{transform:matrix(0.249049,-0.021789,0.021789,0.249049,0,0);-ms-transform:matrix(0.249049,-0.021789,0.021789,0.249049,0,0);-webkit-transform:matrix(0.249049,-0.021789,0.021789,0.249049,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);}
.m1{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);}
.m11{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v1c{vertical-align:-56.408400px;}
.v1b{vertical-align:-32.844000px;}
.ve{vertical-align:-30.743880px;}
.vd{vertical-align:-29.487600px;}
.v13{vertical-align:-27.731994px;}
.vf{vertical-align:-25.379766px;}
.v17{vertical-align:-24.260070px;}
.v16{vertical-align:-13.453704px;}
.v3{vertical-align:-10.415772px;}
.v6{vertical-align:-9.371886px;}
.v5{vertical-align:-8.093904px;}
.vc{vertical-align:-6.230977px;}
.v12{vertical-align:-5.090328px;}
.v1a{vertical-align:-3.994800px;}
.v1{vertical-align:-2.754000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:4.612800px;}
.v10{vertical-align:10.717200px;}
.va{vertical-align:15.369012px;}
.vb{vertical-align:19.211262px;}
.v8{vertical-align:21.290400px;}
.v9{vertical-align:23.053513px;}
.v2{vertical-align:25.584060px;}
.v18{vertical-align:28.691406px;}
.v7{vertical-align:31.416000px;}
.v14{vertical-align:34.945314px;}
.v4{vertical-align:44.687772px;}
.v15{vertical-align:48.382980px;}
.v19{vertical-align:59.013600px;}
.ls34{letter-spacing:-20.124000px;}
.ls17{letter-spacing:-13.248000px;}
.ls2e{letter-spacing:-11.595235px;}
.ls39{letter-spacing:-6.000000px;}
.ls5{letter-spacing:-2.160000px;}
.ls2a{letter-spacing:-1.696185px;}
.ls25{letter-spacing:-0.347579px;}
.ls26{letter-spacing:-0.266941px;}
.ls2f{letter-spacing:-0.083419px;}
.ls2b{letter-spacing:-0.066735px;}
.ls28{letter-spacing:-0.050051px;}
.ls18{letter-spacing:-0.031200px;}
.ls4d{letter-spacing:-0.028800px;}
.ls29{letter-spacing:-0.027806px;}
.ls4e{letter-spacing:-0.024000px;}
.ls13{letter-spacing:-0.020220px;}
.ls2d{letter-spacing:-0.016684px;}
.ls41{letter-spacing:-0.016000px;}
.ls1{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000009px;}
.lsd{letter-spacing:0.000021px;}
.ls19{letter-spacing:0.000069px;}
.ls33{letter-spacing:0.000120px;}
.ls38{letter-spacing:0.000189px;}
.lse{letter-spacing:0.000505px;}
.ls4c{letter-spacing:0.000600px;}
.lsc{letter-spacing:0.000674px;}
.ls10{letter-spacing:0.000800px;}
.ls36{letter-spacing:0.009600px;}
.ls1a{letter-spacing:0.009750px;}
.lsf{letter-spacing:0.011332px;}
.ls49{letter-spacing:0.011811px;}
.ls3e{letter-spacing:0.012171px;}
.ls4b{letter-spacing:0.012411px;}
.ls16{letter-spacing:0.013480px;}
.ls45{letter-spacing:0.014400px;}
.ls40{letter-spacing:0.016000px;}
.ls3c{letter-spacing:0.016800px;}
.ls15{letter-spacing:0.016850px;}
.lsb{letter-spacing:0.016976px;}
.ls1c{letter-spacing:0.017400px;}
.ls46{letter-spacing:0.017600px;}
.ls20{letter-spacing:0.019200px;}
.ls3f{letter-spacing:0.020160px;}
.ls14{letter-spacing:0.020220px;}
.ls4a{letter-spacing:0.020400px;}
.ls1f{letter-spacing:0.020988px;}
.ls37{letter-spacing:0.021000px;}
.ls1e{letter-spacing:0.021912px;}
.ls44{letter-spacing:0.022200px;}
.ls1b{letter-spacing:0.022212px;}
.ls3d{letter-spacing:0.024000px;}
.ls43{letter-spacing:0.026400px;}
.ls3{letter-spacing:0.028800px;}
.ls2c{letter-spacing:0.033368px;}
.ls0{letter-spacing:0.045600px;}
.ls27{letter-spacing:0.050051px;}
.ls3b{letter-spacing:0.060000px;}
.ls22{letter-spacing:0.066735px;}
.ls24{letter-spacing:0.368025px;}
.ls4{letter-spacing:3.960000px;}
.ls3a{letter-spacing:9.000000px;}
.ls6{letter-spacing:10.395000px;}
.ls48{letter-spacing:28.724220px;}
.ls50{letter-spacing:38.930760px;}
.ls4f{letter-spacing:46.474560px;}
.ls35{letter-spacing:47.100000px;}
.ls1d{letter-spacing:53.148000px;}
.ls30{letter-spacing:54.009900px;}
.ls32{letter-spacing:58.498320px;}
.ls31{letter-spacing:59.554800px;}
.ls21{letter-spacing:66.735528px;}
.ls47{letter-spacing:67.104000px;}
.lsa{letter-spacing:73.057740px;}
.ls23{letter-spacing:76.467142px;}
.ls7{letter-spacing:106.920000px;}
.ls11{letter-spacing:120.780272px;}
.ls42{letter-spacing:176.000040px;}
.ls2{letter-spacing:178.305900px;}
.ls9{letter-spacing:221.919480px;}
.ls12{letter-spacing:808.719566px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-198.261000px;}
.ws1d{word-spacing:-106.585200px;}
.ws2b{word-spacing:-80.330880px;}
.ws33{word-spacing:-77.400000px;}
.ws1e{word-spacing:-71.056800px;}
.ws2{word-spacing:-69.408000px;}
.ws32{word-spacing:-62.160806px;}
.ws30{word-spacing:-51.708000px;}
.ws1{word-spacing:-48.372000px;}
.ws23{word-spacing:-46.380942px;}
.ws25{word-spacing:-46.330890px;}
.ws27{word-spacing:-46.297523px;}
.ws2c{word-spacing:-43.368000px;}
.ws3{word-spacing:-40.060800px;}
.ws5{word-spacing:-40.032000px;}
.ws38{word-spacing:-36.722400px;}
.ws8{word-spacing:-36.696000px;}
.ws3d{word-spacing:-36.329040px;}
.ws1f{word-spacing:-36.000000px;}
.ws1b{word-spacing:-34.500000px;}
.ws7{word-spacing:-33.360000px;}
.ws1a{word-spacing:-32.832000px;}
.ws26{word-spacing:-30.920625px;}
.ws28{word-spacing:-30.653684px;}
.ws18{word-spacing:-30.024000px;}
.ws31{word-spacing:-27.000000px;}
.ws19{word-spacing:-26.784000px;}
.ws3b{word-spacing:-26.707200px;}
.ws6{word-spacing:-26.688000px;}
.ws3f{word-spacing:-25.575994px;}
.wsc{word-spacing:-25.295165px;}
.ws9{word-spacing:-25.274945px;}
.wsa{word-spacing:-25.254725px;}
.ws39{word-spacing:-24.481606px;}
.ws40{word-spacing:-24.464006px;}
.ws3e{word-spacing:-24.219360px;}
.ws20{word-spacing:-24.019200px;}
.ws2d{word-spacing:-23.244000px;}
.ws1c{word-spacing:-22.999995px;}
.ws36{word-spacing:-22.255994px;}
.ws35{word-spacing:-22.239994px;}
.ws16{word-spacing:-22.115577px;}
.wse{word-spacing:-21.079304px;}
.wsf{word-spacing:-21.062454px;}
.ws3a{word-spacing:-20.030400px;}
.ws11{word-spacing:-16.863448px;}
.ws13{word-spacing:-16.863444px;}
.ws12{word-spacing:-16.849966px;}
.wsb{word-spacing:-16.849963px;}
.ws17{word-spacing:-14.743718px;}
.wsd{word-spacing:-14.041632px;}
.ws15{word-spacing:-11.233316px;}
.ws10{word-spacing:-11.233313px;}
.ws14{word-spacing:-11.233312px;}
.ws2f{word-spacing:-0.168000px;}
.ws3c{word-spacing:-0.158400px;}
.ws2e{word-spacing:-0.156000px;}
.ws0{word-spacing:0.000000px;}
.ws21{word-spacing:0.183829px;}
.ws29{word-spacing:0.184417px;}
.ws34{word-spacing:4.639800px;}
.ws24{word-spacing:15.962421px;}
.ws2a{word-spacing:446.355801px;}
.ws22{word-spacing:446.356390px;}
.ws37{word-spacing:610.343400px;}
._2a{margin-left:-40.627200px;}
._1b{margin-left:-28.624148px;}
._10{margin-left:-26.082000px;}
._21{margin-left:-24.492000px;}
._14{margin-left:-22.332000px;}
._f{margin-left:-20.412000px;}
._23{margin-left:-19.014600px;}
._1e{margin-left:-17.316000px;}
._28{margin-left:-15.984000px;}
._1d{margin-left:-14.652000px;}
._8{margin-left:-12.228000px;}
._2{margin-left:-11.100000px;}
._13{margin-left:-9.690000px;}
._9{margin-left:-8.676000px;}
._0{margin-left:-6.912000px;}
._c{margin-left:-5.220000px;}
._5{margin-left:-4.212000px;}
._1{margin-left:-2.700000px;}
._3{margin-left:-1.512000px;}
._6{width:1.512000px;}
._a{width:3.456000px;}
._7{width:5.104800px;}
._b{width:6.624000px;}
._12{width:8.694000px;}
._11{width:10.584000px;}
._1c{width:11.678654px;}
._16{width:13.248000px;}
._1a{width:15.627600px;}
._17{width:16.754400px;}
._1f{width:20.556000px;}
._e{width:25.855200px;}
._22{width:37.975800px;}
._18{width:48.898200px;}
._27{width:62.049600px;}
._26{width:63.158400px;}
._25{width:102.281054px;}
._24{width:106.835054px;}
._29{width:108.825720px;}
._19{width:117.008100px;}
._15{width:119.151600px;}
._20{width:121.869600px;}
._4{width:154.054020px;}
._d{width:178.320000px;}
._2b{width:873.568200px;}
._2c{width:1525.959000px;}
.fc24{color:rgb(255,45,233);}
.fc22{color:rgb(0,77,128);}
.fc20{color:rgb(187,60,122);}
.fc23{color:rgb(115,252,253);}
.fc1e{color:rgb(250,226,50);}
.fcc{color:rgb(3,101,192);}
.fc8{color:transparent;}
.fc13{color:rgb(138,102,186);}
.fc6{color:rgb(248,186,0);}
.fc14{color:rgb(146,146,146);}
.fc5{color:rgb(0,118,186);}
.fc18{color:rgb(94,94,94);}
.fc4{color:rgb(0,0,0);}
.fca{color:rgb(214,213,213);}
.fc3{color:rgb(255,199,200);}
.fce{color:rgb(43,99,186);}
.fcb{color:rgb(200,37,6);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(255,255,255);}
.fc7{color:rgb(115,253,234);}
.fc0{color:rgb(203,41,123);}
.fcd{color:rgb(39,102,186);}
.fc1a{color:rgb(4,51,255);}
.fc1d{color:rgb(223,167,166);}
.fc9{color:rgb(238,34,12);}
.fcf{color:rgb(255,252,121);}
.fc10{color:rgb(185,54,30);}
.fc16{color:rgb(245,211,40);}
.fc11{color:rgb(62,139,39);}
.fc19{color:rgb(153,25,94);}
.fc21{color:rgb(167,167,167);}
.fc1f{color:rgb(255,147,0);}
.fc1c{color:rgb(211,24,118);}
.fc12{color:rgb(255,252,102);}
.fc15{color:rgb(64,64,64);}
.fc17{color:rgb(128,100,162);}
.fc1b{color:rgb(29,177,0);}
.fs17{font-size:44.933249px;}
.fs25{font-size:44.933251px;}
.fs1c{font-size:44.933254px;}
.fs23{font-size:44.933258px;}
.fs1e{font-size:44.933259px;}
.fs21{font-size:44.933262px;}
.fs28{font-size:44.933263px;}
.fs19{font-size:56.166530px;}
.fs2a{font-size:58.974871px;}
.fs16{font-size:67.399853px;}
.fs24{font-size:67.399856px;}
.fs1b{font-size:67.399859px;}
.fs1f{font-size:67.399861px;}
.fs1a{font-size:67.399863px;}
.fs22{font-size:67.399865px;}
.fs1d{font-size:67.399868px;}
.fs20{font-size:67.399872px;}
.fs27{font-size:67.399873px;}
.fs26{font-size:67.399876px;}
.fs51{font-size:72.000000px;}
.fs12{font-size:76.000020px;}
.fs4f{font-size:79.999980px;}
.fs2{font-size:84.000000px;}
.fs18{font-size:84.249816px;}
.fs58{font-size:87.120000px;}
.fs13{font-size:88.000020px;}
.fs29{font-size:88.462307px;}
.fs2e{font-size:90.000000px;}
.fs37{font-size:91.999980px;}
.fsa{font-size:96.000000px;}
.fs15{font-size:101.099779px;}
.fs2c{font-size:102.000000px;}
.fs2b{font-size:108.000000px;}
.fs3f{font-size:111.225269px;}
.fs4{font-size:114.000000px;}
.fsf{font-size:120.000000px;}
.fs45{font-size:124.000020px;}
.fs57{font-size:130.680000px;}
.fsc{font-size:132.000000px;}
.fs14{font-size:138.000000px;}
.fs40{font-size:139.031594px;}
.fs56{font-size:142.560000px;}
.fsb{font-size:144.000000px;}
.fs31{font-size:144.000002px;}
.fs32{font-size:144.000007px;}
.fs53{font-size:149.222400px;}
.fs1{font-size:150.000000px;}
.fs34{font-size:156.000000px;}
.fs59{font-size:157.854120px;}
.fs46{font-size:162.000000px;}
.fs3e{font-size:166.837920px;}
.fs2f{font-size:168.000000px;}
.fs38{font-size:170.818560px;}
.fs11{font-size:173.943900px;}
.fs6{font-size:174.000000px;}
.fs48{font-size:178.245480px;}
.fs44{font-size:186.000000px;}
.fs5{font-size:192.000000px;}
.fs3d{font-size:204.458203px;}
.fs10{font-size:208.800000px;}
.fs4c{font-size:223.600020px;}
.fs3{font-size:228.000000px;}
.fs36{font-size:233.920020px;}
.fs52{font-size:240.000000px;}
.fs3a{font-size:255.600000px;}
.fs41{font-size:288.960000px;}
.fs3c{font-size:291.966360px;}
.fs30{font-size:300.000000px;}
.fs43{font-size:302.400000px;}
.fs8{font-size:309.600000px;}
.fs47{font-size:325.080000px;}
.fs3b{font-size:330.240000px;}
.fs4b{font-size:335.400000px;}
.fs50{font-size:345.720000px;}
.fs9{font-size:350.880000px;}
.fs35{font-size:351.000000px;}
.fs4e{font-size:356.040000px;}
.fs42{font-size:360.000000px;}
.fs2d{font-size:361.200000px;}
.fse{font-size:371.520000px;}
.fsd{font-size:378.000000px;}
.fs39{font-size:383.400000px;}
.fs0{font-size:384.000000px;}
.fs55{font-size:387.000000px;}
.fs54{font-size:392.160000px;}
.fs5c{font-size:398.400000px;}
.fs33{font-size:405.000000px;}
.fs7{font-size:407.640000px;}
.fs4a{font-size:417.960000px;}
.fs5a{font-size:428.280000px;}
.fs5d{font-size:441.600000px;}
.fs5e{font-size:454.080000px;}
.fs5b{font-size:480.000000px;}
.fs49{font-size:485.040000px;}
.fs4d{font-size:516.000000px;}
.y140{bottom:-20.399700px;}
.y119{bottom:-1.067655px;}
.y0{bottom:0.000000px;}
.y1c4{bottom:0.895335px;}
.y1c6{bottom:1.356000px;}
.y1c2{bottom:3.842535px;}
.y1e1{bottom:6.156420px;}
.y1e3{bottom:6.471975px;}
.y42{bottom:7.131699px;}
.y5c{bottom:7.131720px;}
.y176{bottom:7.308090px;}
.y202{bottom:8.472000px;}
.y7d{bottom:8.795250px;}
.y3f{bottom:9.168507px;}
.y144{bottom:10.097375px;}
.y19c{bottom:10.229595px;}
.y45{bottom:10.830315px;}
.yc1{bottom:11.535555px;}
.y83{bottom:11.679600px;}
.yd8{bottom:11.950200px;}
.y7f{bottom:11.959500px;}
.yd6{bottom:12.004950px;}
.y132{bottom:12.330196px;}
.y66{bottom:13.480500px;}
.y6d{bottom:13.497300px;}
.y6f{bottom:13.612350px;}
.y6a{bottom:13.676100px;}
.y72{bottom:13.683450px;}
.ya1{bottom:13.875900px;}
.y81{bottom:13.928550px;}
.y68{bottom:14.070150px;}
.ya6{bottom:14.238450px;}
.y79{bottom:14.271600px;}
.y75{bottom:14.271750px;}
.y77{bottom:14.403000px;}
.ya8{bottom:14.406450px;}
.y1ce{bottom:14.688150px;}
.y40{bottom:14.757948px;}
.y64{bottom:15.915300px;}
.ybb{bottom:16.153500px;}
.y4d{bottom:16.202850px;}
.y49{bottom:16.368000px;}
.y4f{bottom:16.952850px;}
.y4b{bottom:17.118000px;}
.y4e{bottom:17.729850px;}
.y200{bottom:17.952000px;}
.y205{bottom:17.952150px;}
.y1ed{bottom:19.160835px;}
.yf9{bottom:19.160850px;}
.y1ef{bottom:19.584150px;}
.y19b{bottom:20.156175px;}
.y14b{bottom:20.664165px;}
.y16d{bottom:21.693615px;}
.y15d{bottom:22.004880px;}
.y13f{bottom:22.143900px;}
.yfd{bottom:22.354305px;}
.y47{bottom:23.020230px;}
.y148{bottom:23.157806px;}
.y41{bottom:23.190765px;}
.y1fa{bottom:23.664000px;}
.y11b{bottom:24.212100px;}
.ycc{bottom:24.221820px;}
.y169{bottom:25.296150px;}
.yf2{bottom:25.618350px;}
.y2c{bottom:25.979250px;}
.y117{bottom:27.662595px;}
.y1df{bottom:28.081575px;}
.y109{bottom:28.359300px;}
.y107{bottom:29.919300px;}
.y10f{bottom:29.959350px;}
.y12f{bottom:31.155075px;}
.yb9{bottom:31.593690px;}
.y10c{bottom:33.305355px;}
.y162{bottom:34.809165px;}
.y1e6{bottom:37.368480px;}
.y62{bottom:38.115150px;}
.y121{bottom:38.672550px;}
.y14a{bottom:39.298650px;}
.yf4{bottom:40.800150px;}
.y154{bottom:41.126550px;}
.y13{bottom:42.105750px;}
.y170{bottom:44.211150px;}
.y126{bottom:44.912850px;}
.y181{bottom:45.614550px;}
.y151{bottom:45.856830px;}
.y174{bottom:47.002005px;}
.y1ac{bottom:47.018100px;}
.y1e5{bottom:47.719800px;}
.y16{bottom:47.719950px;}
.y5d{bottom:48.386760px;}
.y186{bottom:48.421650px;}
.y14f{bottom:48.960150px;}
.ye4{bottom:49.123500px;}
.yee{bottom:50.295000px;}
.y1c8{bottom:50.346000px;}
.y3d{bottom:50.526900px;}
.y11d{bottom:52.142550px;}
.y3{bottom:52.224300px;}
.y1cc{bottom:52.632150px;}
.y1ca{bottom:53.334000px;}
.y1f1{bottom:54.182700px;}
.y11{bottom:55.439400px;}
.y1b0{bottom:55.979055px;}
.y16a{bottom:56.791875px;}
.y17e{bottom:56.842800px;}
.y1e8{bottom:58.246350px;}
.y11f{bottom:58.559205px;}
.y17f{bottom:58.651110px;}
.y1f6{bottom:60.057900px;}
.ye5{bottom:60.148755px;}
.y19e{bottom:60.938685px;}
.y16c{bottom:61.610130px;}
.y208{bottom:61.755150px;}
.y105{bottom:61.780650px;}
.y17c{bottom:62.052840px;}
.yf8{bottom:62.660850px;}
.ya2{bottom:63.187395px;}
.y127{bottom:63.404835px;}
.y46{bottom:63.520230px;}
.y1eb{bottom:65.280300px;}
.y116{bottom:65.483460px;}
.y10d{bottom:65.959650px;}
.y13e{bottom:67.607250px;}
.y178{bottom:67.852575px;}
.y189{bottom:68.118990px;}
.y184{bottom:70.176300px;}
.y103{bottom:70.373115px;}
.yf1{bottom:70.564350px;}
.y1f7{bottom:71.686245px;}
.y17b{bottom:72.628050px;}
.y206{bottom:73.275060px;}
.yfc{bottom:73.354305px;}
.y147{bottom:73.857805px;}
.y1ad{bottom:74.167305px;}
.y167{bottom:74.196255px;}
.y150{bottom:74.356830px;}
.y61{bottom:75.154005px;}
.y10b{bottom:75.305340px;}
.y1f9{bottom:76.164000px;}
.y12e{bottom:77.355150px;}
.y120{bottom:77.672550px;}
.y2b{bottom:78.179250px;}
.y1a2{bottom:78.911865px;}
.y161{bottom:79.396005px;}
.y1ec{bottom:81.526635px;}
.y10a{bottom:83.532960px;}
.y36{bottom:84.659235px;}
.y32{bottom:84.659265px;}
.y14{bottom:85.315605px;}
.y85{bottom:87.286305px;}
.y142{bottom:89.422470px;}
.y96{bottom:90.568545px;}
.y3b{bottom:92.170650px;}
.yc2{bottom:93.519195px;}
.y1de{bottom:94.253070px;}
.y111{bottom:95.770890px;}
.y8{bottom:95.871390px;}
.y59{bottom:97.765140px;}
.yed{bottom:98.925000px;}
.yf7{bottom:107.606850px;}
.y3e{bottom:107.607735px;}
.y15c{bottom:107.636265px;}
.y128{bottom:108.346350px;}
.y115{bottom:109.240110px;}
.y38{bottom:110.658600px;}
.y7{bottom:111.463845px;}
.y13d{bottom:112.653600px;}
.y1cf{bottom:113.655780px;}
.y5{bottom:115.011375px;}
.y16b{bottom:115.639275px;}
.y173{bottom:116.887605px;}
.y5a{bottom:119.216310px;}
.yf0{bottom:121.564350px;}
.y12d{bottom:123.555150px;}
.y172{bottom:124.174695px;}
.y146{bottom:124.557806px;}
.y33{bottom:126.012315px;}
.y1af{bottom:128.938995px;}
.yfb{bottom:130.146195px;}
.yfe{bottom:131.136660px;}
.y153{bottom:132.626550px;}
.yc0{bottom:133.672500px;}
.y35{bottom:136.859235px;}
.y31{bottom:136.859265px;}
.yec{bottom:143.871000px;}
.y1dd{bottom:144.903120px;}
.yc4{bottom:146.383995px;}
.y60{bottom:147.153990px;}
.y2d{bottom:147.839985px;}
.y1a1{bottom:150.911850px;}
.y37{bottom:151.852800px;}
.y1ab{bottom:153.518100px;}
.yf6{bottom:158.606850px;}
.y86{bottom:159.021495px;}
.y14e{bottom:159.960150px;}
.ye3{bottom:160.123500px;}
.y99{bottom:162.180945px;}
.y165{bottom:165.093150px;}
.y1fe{bottom:167.226150px;}
.y1ae{bottom:167.938995px;}
.y2{bottom:169.224300px;}
.y12c{bottom:169.755150px;}
.yd3{bottom:173.765295px;}
.y82{bottom:174.600300px;}
.y145{bottom:175.257775px;}
.yf{bottom:177.644460px;}
.y34{bottom:189.059235px;}
.y30{bottom:189.059265px;}
.y1dc{bottom:191.276820px;}
.yd0{bottom:191.668395px;}
.yeb{bottom:194.871000px;}
.y114{bottom:195.902310px;}
.y1c0{bottom:196.203900px;}
.yc3{bottom:200.093295px;}
.ycb{bottom:202.199595px;}
.y118{bottom:207.231750px;}
.y1ea{bottom:210.780300px;}
.y3a{bottom:213.670650px;}
.y5b{bottom:216.245700px;}
.ya4{bottom:217.996395px;}
.y20{bottom:218.059950px;}
.y13c{bottom:218.595600px;}
.ya0{bottom:219.794400px;}
.y12b{bottom:220.455150px;}
.y17a{bottom:221.128050px;}
.y1a0{bottom:222.911850px;}
.y164{bottom:223.968900px;}
.y5f{bottom:224.476590px;}
.y80{bottom:227.113650px;}
.y183{bottom:227.676300px;}
.y175{bottom:233.754150px;}
.ye{bottom:234.644460px;}
.y156{bottom:235.531650px;}
.y113{bottom:236.402310px;}
.y1db{bottom:242.417520px;}
.y94{bottom:245.377545px;}
.y2f{bottom:247.739265px;}
.y130{bottom:251.008350px;}
.yc6{bottom:251.696295px;}
.y1bf{bottom:254.587800px;}
.y69{bottom:255.800400px;}
.y5e{bottom:262.653990px;}
.y155{bottom:264.031650px;}
.y13b{bottom:264.058950px;}
.y163{bottom:265.968900px;}
.y12a{bottom:266.655150px;}
.yd7{bottom:268.057500px;}
.ye1{bottom:271.061400px;}
.y112{bottom:279.581610px;}
.y141{bottom:284.220300px;}
.y1a6{bottom:286.430550px;}
.y8b{bottom:287.502495px;}
.yd{bottom:291.644460px;}
.y18{bottom:293.216700px;}
.ya9{bottom:296.980695px;}
.y1da{bottom:297.998520px;}
.y2e{bottom:299.939265px;}
.y13a{bottom:309.105150px;}
.y76{bottom:312.995250px;}
.y9a{bottom:319.096245px;}
.y87{bottom:320.546745px;}
.y84{bottom:320.700000px;}
.y88{bottom:320.975145px;}
.y124{bottom:324.823650px;}
.y19d{bottom:326.417100px;}
.y1f{bottom:329.274000px;}
.y1be{bottom:330.303900px;}
.ye7{bottom:332.776500px;}
.y8a{bottom:332.786745px;}
.y39{bottom:335.170650px;}
.y71{bottom:337.936650px;}
.y7e{bottom:339.660600px;}
.y1a5{bottom:341.718900px;}
.y129{bottom:344.955150px;}
.y1e2{bottom:348.681600px;}
.y15b{bottom:349.788450px;}
.y89{bottom:352.237095px;}
.ye0{bottom:357.283200px;}
.y1d9{bottom:359.529420px;}
.y182{bottom:363.783600px;}
.y179{bottom:368.427750px;}
.y2a{bottom:369.678900px;}
.y58{bottom:372.000000px;}
.ya3{bottom:377.848695px;}
.yb4{bottom:379.124145px;}
.y199{bottom:380.544300px;}
.ydc{bottom:381.879150px;}
.y93{bottom:385.857945px;}
.y1bd{bottom:386.853900px;}
.yca{bottom:388.602345px;}
.ydf{bottom:391.783200px;}
.yd5{bottom:393.324450px;}
.yf5{bottom:394.611000px;}
.yfa{bottom:395.144400px;}
.yab{bottom:404.155095px;}
.yc9{bottom:409.664745px;}
.y1d8{bottom:410.110470px;}
.yc{bottom:411.644460px;}
.y9d{bottom:412.824195px;}
.y139{bottom:415.047300px;}
.y19f{bottom:419.025750px;}
.yaf{bottom:420.085995px;}
.y8c{bottom:421.249095px;}
.ya7{bottom:421.463550px;}
.yaa{bottom:424.408545px;}
.y18a{bottom:424.611450px;}
.yf3{bottom:428.778900px;}
.y57{bottom:430.500000px;}
.yad{bottom:430.727145px;}
.yc8{bottom:434.939745px;}
.ycd{bottom:435.638595px;}
.y1bc{bottom:441.153900px;}
.yd2{bottom:444.417795px;}
.y1fc{bottom:446.869950px;}
.y1c5{bottom:447.609600px;}
.ycf{bottom:449.683395px;}
.ye9{bottom:449.824800px;}
.y1e{bottom:453.650400px;}
.y1b1{bottom:453.855450px;}
.y15a{bottom:454.788450px;}
.y138{bottom:460.093500px;}
.y177{bottom:464.789100px;}
.yae{bottom:465.480195px;}
.yb{bottom:468.644460px;}
.yb0{bottom:470.745945px;}
.ye8{bottom:478.204650px;}
.y56{bottom:489.000000px;}
.y1a7{bottom:489.538650px;}
.y8e{bottom:489.702045px;}
.y1d7{bottom:490.881870px;}
.y1b{bottom:496.747650px;}
.ybd{bottom:498.127095px;}
.y98{bottom:501.286395px;}
.y6c{bottom:505.569300px;}
.y159{bottom:507.288450px;}
.y70{bottom:508.155900px;}
.yb8{bottom:510.764595px;}
.y1bb{bottom:510.938850px;}
.yde{bottom:511.005000px;}
.y198{bottom:511.463700px;}
.yc5{bottom:511.817595px;}
.y67{bottom:512.368350px;}
.y204{bottom:514.560450px;}
.y8d{bottom:515.854245px;}
.y92{bottom:517.829145px;}
.y63{bottom:528.426300px;}
.y29{bottom:532.191300px;}
.y1e9{bottom:535.740000px;}
.y168{bottom:536.734050px;}
.y1a8{bottom:537.538650px;}
.y1d6{bottom:539.868870px;}
.yb1{bottom:541.305045px;}
.y197{bottom:543.733050px;}
.y55{bottom:547.500000px;}
.y91{bottom:552.950595px;}
.yc7{bottom:553.942545px;}
.yff{bottom:562.584000px;}
.y137{bottom:564.367215px;}
.yd4{bottom:564.473745px;}
.y9f{bottom:568.686345px;}
.y1ba{bottom:569.322900px;}
.y1b2{bottom:569.806350px;}
.y28{bottom:575.691300px;}
.y196{bottom:576.002550px;}
.ybf{bottom:576.058095px;}
.yd1{bottom:579.217545px;}
.ye6{bottom:581.170650px;}
.y78{bottom:584.832300px;}
.y102{bottom:585.720750px;}
.ya{bottom:588.644460px;}
.y19a{bottom:588.930600px;}
.yb3{bottom:590.801895px;}
.y1e4{bottom:591.590250px;}
.y1d5{bottom:594.462720px;}
.y9e{bottom:598.173795px;}
.y136{bottom:602.739945px;}
.y54{bottom:606.000000px;}
.y195{bottom:610.887150px;}
.ydd{bottom:610.976550px;}
.y158{bottom:612.288450px;}
.y27{bottom:619.191300px;}
.yb7{bottom:620.289345px;}
.yba{bottom:622.969200px;}
.y16e{bottom:624.721200px;}
.y6e{bottom:627.616500px;}
.y101{bottom:628.026750px;}
.ya5{bottom:630.149850px;}
.y8f{bottom:636.847245px;}
.y1d4{bottom:640.993320px;}
.y73{bottom:641.902500px;}
.y1a4{bottom:644.464650px;}
.yb6{bottom:645.564195px;}
.y9{bottom:645.644460px;}
.y1e0{bottom:646.369650px;}
.y1b9{bottom:646.872900px;}
.y6b{bottom:649.274250px;}
.y135{bottom:649.871655px;}
.yce{bottom:651.882945px;}
.y194{bottom:652.130400px;}
.y171{bottom:653.291550px;}
.y26{bottom:662.691300px;}
.y53{bottom:664.500000px;}
.y157{bottom:664.788450px;}
.y1b3{bottom:665.619150px;}
.y1f3{bottom:668.093100px;}
.y1a3{bottom:669.964650px;}
.yb5{bottom:670.839195px;}
.ydb{bottom:677.810400px;}
.y95{bottom:678.063795px;}
.yac{bottom:687.689145px;}
.y193{bottom:690.758700px;}
.y1d3{bottom:691.479870px;}
.y134{bottom:694.917891px;}
.y143{bottom:694.917894px;}
.y108{bottom:701.906400px;}
.y1b8{bottom:704.702100px;}
.y7b{bottom:705.089850px;}
.y25{bottom:706.879800px;}
.y43{bottom:711.348750px;}
.yea{bottom:714.397950px;}
.y1c3{bottom:718.560150px;}
.y97{bottom:719.282895px;}
.yda{bottom:719.344500px;}
.y100{bottom:721.871100px;}
.y52{bottom:723.000000px;}
.y192{bottom:723.028200px;}
.y65{bottom:723.582600px;}
.y90{bottom:724.548495px;}
.y9b{bottom:729.814095px;}
.y133{bottom:739.964130px;}
.y9c{bottom:741.398445px;}
.yb2{bottom:748.770345px;}
.y1d2{bottom:753.185670px;}
.y191{bottom:755.297700px;}
.y24{bottom:758.395350px;}
.yd9{bottom:761.317350px;}
.y1d{bottom:762.740550px;}
.yef{bottom:765.548550px;}
.ybc{bottom:770.885895px;}
.y7a{bottom:772.288050px;}
.y44{bottom:772.290900px;}
.ybe{bottom:777.204645px;}
.y51{bottom:781.500000px;}
.y4{bottom:785.558400px;}
.y190{bottom:787.567200px;}
.y1b7{bottom:790.885350px;}
.y7c{bottom:800.933250px;}
.y1d1{bottom:800.950170px;}
.y1a{bottom:803.580600px;}
.y74{bottom:803.881800px;}
.y1a9{bottom:805.663650px;}
.y23{bottom:810.599250px;}
.y18f{bottom:819.836700px;}
.y123{bottom:828.823650px;}
.y6{bottom:828.986550px;}
.y1b6{bottom:829.548750px;}
.y131{bottom:830.473710px;}
.y106{bottom:835.369350px;}
.y1fb{bottom:835.905000px;}
.y10e{bottom:836.099250px;}
.y50{bottom:840.000000px;}
.y1c1{bottom:840.459600px;}
.y1d0{bottom:851.409870px;}
.y22{bottom:854.099250px;}
.y18e{bottom:854.721150px;}
.y188{bottom:858.794850px;}
.y1f8{bottom:869.262750px;}
.y122{bottom:873.306000px;}
.y15e{bottom:874.798200px;}
.y15f{bottom:878.681100px;}
.y1c{bottom:880.912800px;}
.y1{bottom:882.580950px;}
.y1f2{bottom:887.620350px;}
.y18d{bottom:895.964550px;}
.y1b4{bottom:896.353650px;}
.y21{bottom:898.287750px;}
.y4c{bottom:898.500000px;}
.y14d{bottom:898.868250px;}
.ye2{bottom:901.242900px;}
.y11a{bottom:906.325350px;}
.y203{bottom:906.959250px;}
.y1aa{bottom:907.475850px;}
.y1ff{bottom:914.792550px;}
.y1ee{bottom:916.125300px;}
.y1b5{bottom:917.565900px;}
.y152{bottom:921.159450px;}
.y166{bottom:923.861550px;}
.y209{bottom:924.523200px;}
.y19{bottom:924.974700px;}
.y201{bottom:925.793250px;}
.y1cd{bottom:926.806200px;}
.y187{bottom:932.430000px;}
.y18c{bottom:937.207950px;}
.y1f4{bottom:939.821400px;}
.y104{bottom:956.591700px;}
.y4a{bottom:957.000000px;}
.y48{bottom:957.750000px;}
.y1fd{bottom:969.868050px;}
.y1c9{bottom:976.998600px;}
.y1cb{bottom:977.383050px;}
.y207{bottom:978.323400px;}
.y18b{bottom:979.603950px;}
.y1c7{bottom:984.600000px;}
.y160{bottom:985.289100px;}
.y1e7{bottom:986.781300px;}
.y17d{bottom:987.550200px;}
.y1f5{bottom:989.228850px;}
.y10{bottom:990.813300px;}
.y180{bottom:993.700950px;}
.y11e{bottom:994.923750px;}
.y1f0{bottom:995.747550px;}
.y185{bottom:998.199000px;}
.y14c{bottom:998.817900px;}
.y11c{bottom:1000.901400px;}
.y110{bottom:1002.894450px;}
.y3c{bottom:1007.074650px;}
.y15{bottom:1010.964600px;}
.y16f{bottom:1012.886700px;}
.y12{bottom:1015.540050px;}
.y125{bottom:1018.502400px;}
.y149{bottom:1030.160700px;}
.y17{bottom:1048.239450px;}
.h66{height:19.217085px;}
.hb3{height:20.816520px;}
.hb1{height:26.561580px;}
.h30{height:30.330750px;}
.hc6{height:32.281170px;}
.hc8{height:32.675805px;}
.hda{height:33.000000px;}
.hb5{height:36.000000px;}
.h1f{height:36.006390px;}
.ha3{height:36.300000px;}
.h93{height:36.896820px;}
.h32{height:38.966580px;}
.h40{height:41.652090px;}
.h31{height:46.831050px;}
.h3a{height:46.831052px;}
.h36{height:46.831055px;}
.h3c{height:46.831056px;}
.h35{height:46.831057px;}
.h39{height:46.831059px;}
.h37{height:46.831061px;}
.h38{height:46.831063px;}
.h3e{height:46.831064px;}
.h3b{height:46.831066px;}
.h2f{height:47.602380px;}
.hbb{height:50.592015px;}
.h2d{height:51.042420px;}
.h24{height:57.750000px;}
.h26{height:58.500000px;}
.h33{height:58.538813px;}
.hd9{height:60.168015px;}
.hdc{height:60.168030px;}
.h6e{height:61.404000px;}
.h41{height:61.465753px;}
.h12{height:61.892578px;}
.hce{height:64.469880px;}
.h4{height:64.680000px;}
.hcf{height:64.956030px;}
.hac{height:65.601562px;}
.h8f{height:68.925300px;}
.h6d{height:70.176000px;}
.h2e{height:70.246575px;}
.h89{height:71.460930px;}
.h3d{height:72.106050px;}
.h3f{height:72.185242px;}
.h68{height:73.216665px;}
.hd2{height:73.416000px;}
.h1d{height:73.435995px;}
.hf{height:73.920000px;}
.ha6{height:76.535156px;}
.h42{height:78.948000px;}
.hb4{height:79.684762px;}
.ha1{height:81.496200px;}
.ha2{height:81.496800px;}
.h48{height:82.848000px;}
.h43{height:83.334000px;}
.h7b{height:83.418952px;}
.h8a{height:84.215415px;}
.h5a{height:84.640020px;}
.h8b{height:84.714030px;}
.h58{height:86.140020px;}
.h5f{height:86.180055px;}
.h49{height:87.456000px;}
.hd7{height:87.720000px;}
.h55{height:87.750000px;}
.h6{height:87.780000px;}
.hdb{height:87.912000px;}
.ha4{height:88.417969px;}
.ha5{height:89.003906px;}
.h28{height:92.400000px;}
.hc3{height:92.449800px;}
.hc0{height:92.450400px;}
.h9f{height:93.021000px;}
.h47{height:93.204000px;}
.h11{height:94.248000px;}
.hc1{height:95.527080px;}
.h6c{height:96.099609px;}
.h25{height:96.492000px;}
.hc2{height:96.628800px;}
.hc4{height:96.945000px;}
.ha0{height:97.632000px;}
.haa{height:97.904297px;}
.h46{height:98.388000px;}
.hb2{height:99.083674px;}
.h69{height:99.527072px;}
.h62{height:100.467773px;}
.hbd{height:100.515938px;}
.hc5{height:100.623600px;}
.haf{height:101.531250px;}
.h27{height:101.640000px;}
.hb0{height:103.289062px;}
.h1c{height:103.560000px;}
.hbf{height:104.211360px;}
.h78{height:104.273696px;}
.hc7{height:104.815136px;}
.h5d{height:104.835938px;}
.h72{height:104.835939px;}
.h64{height:105.080573px;}
.h21{height:105.264000px;}
.h53{height:105.264002px;}
.h54{height:105.264005px;}
.h59{height:106.101562px;}
.h3{height:109.650000px;}
.h52{height:109.687500px;}
.hbe{height:109.771200px;}
.h2b{height:110.880000px;}
.h22{height:110.902155px;}
.h65{height:111.184373px;}
.h63{height:111.184973px;}
.h8e{height:112.482422px;}
.had{height:112.933931px;}
.h67{height:113.423524px;}
.h7c{height:113.916000px;}
.h20{height:115.498750px;}
.h5b{height:115.705078px;}
.h94{height:118.354999px;}
.h2c{height:119.094000px;}
.h23{height:119.328000px;}
.hab{height:120.269531px;}
.h80{height:121.839300px;}
.h83{height:122.308594px;}
.h15{height:122.400000px;}
.h4c{height:124.272000px;}
.h5c{height:124.711620px;}
.h77{height:125.128440px;}
.h51{height:126.464865px;}
.h13{height:128.449125px;}
.h4b{height:129.360000px;}
.hd5{height:130.926030px;}
.h14{height:131.203125px;}
.h79{height:131.801752px;}
.h76{height:131.801932px;}
.h7d{height:131.801992px;}
.h7a{height:131.802352px;}
.h10{height:132.702762px;}
.h6f{height:133.497600px;}
.h88{height:133.980000px;}
.h8c{height:135.966000px;}
.h4e{height:136.200045px;}
.hb{height:136.459950px;}
.h90{height:139.113225px;}
.hd{height:141.035325px;}
.h60{height:141.035340px;}
.h82{height:142.116000px;}
.h1a{height:144.925350px;}
.h8{height:147.840000px;}
.h1e{height:149.083200px;}
.h6a{height:151.098600px;}
.h7f{height:152.012109px;}
.h75{height:153.343652px;}
.h9d{height:153.801000px;}
.hd0{height:156.252450px;}
.hd6{height:157.296000px;}
.h99{height:158.299050px;}
.hc9{height:160.281150px;}
.h9{height:161.186700px;}
.hd3{height:162.771150px;}
.h97{height:164.449800px;}
.hca{height:165.218700px;}
.hb6{height:167.400000px;}
.h5{height:167.994141px;}
.hae{height:172.148438px;}
.hdd{height:173.676600px;}
.h92{height:174.055500px;}
.hb9{height:174.616950px;}
.hb7{height:175.001400px;}
.h4d{height:176.122500px;}
.hd8{height:182.131950px;}
.h56{height:195.408300px;}
.h29{height:210.926400px;}
.h50{height:211.717350px;}
.h74{height:218.974770px;}
.h4f{height:219.300000px;}
.ha9{height:221.849700px;}
.h7e{height:230.246850px;}
.h86{height:230.840550px;}
.ha7{height:244.524150px;}
.h44{height:250.757100px;}
.h84{height:253.131750px;}
.h81{height:261.219840px;}
.h1{height:269.419050px;}
.h87{height:273.369600px;}
.h4a{height:279.429150px;}
.hc{height:279.878400px;}
.h17{height:291.960000px;}
.h91{height:293.872320px;}
.h70{height:298.536960px;}
.h9a{height:303.201600px;}
.ha8{height:312.530880px;}
.he{height:317.195520px;}
.h5e{height:317.304000px;}
.h9e{height:321.860160px;}
.h85{height:325.440000px;}
.h45{height:326.524800px;}
.h61{height:327.804150px;}
.h2a{height:332.800800px;}
.h1b{height:335.854080px;}
.h16{height:344.160000px;}
.h6b{height:346.593600px;}
.h2{height:347.136000px;}
.h19{height:348.344751px;}
.hba{height:349.848000px;}
.hb8{height:354.512640px;}
.hd1{height:360.153600px;}
.h57{height:366.120000px;}
.ha{height:368.506560px;}
.h98{height:377.835840px;}
.hcb{height:387.165120px;}
.h95{height:387.798000px;}
.h9b{height:392.442000px;}
.h71{height:394.361400px;}
.hd4{height:399.206400px;}
.hde{height:410.488320px;}
.hcc{height:422.760000px;}
.hcd{height:433.920000px;}
.h96{height:438.476160px;}
.h9c{height:466.464000px;}
.h18{height:494.686500px;}
.h8d{height:597.980175px;}
.h73{height:802.690200px;}
.h34{height:808.798200px;}
.h7{height:859.076700px;}
.hbc{height:900.111300px;}
.h0{height:1152.000000px;}
.w39{width:21.077670px;}
.w3d{width:23.244015px;}
.w27{width:25.153035px;}
.w6{width:25.613250px;}
.w36{width:26.246640px;}
.w15{width:30.394530px;}
.w14{width:40.604880px;}
.we{width:48.647295px;}
.wb{width:51.448770px;}
.w10{width:57.072270px;}
.w13{width:58.857645px;}
.wc{width:59.873745px;}
.w12{width:61.659120px;}
.w1b{width:66.455760px;}
.w32{width:68.925300px;}
.w11{width:69.701520px;}
.w17{width:73.789560px;}
.w18{width:76.124130px;}
.w1a{width:78.126510px;}
.w44{width:79.147110px;}
.wa{width:79.907010px;}
.wd{width:79.911870px;}
.w1c{width:80.511360px;}
.w16{width:81.697935px;}
.wf{width:90.755745px;}
.w24{width:126.607695px;}
.w42{width:132.965205px;}
.w3b{width:144.811140px;}
.w43{width:162.875250px;}
.w40{width:186.396000px;}
.w8{width:234.699450px;}
.w31{width:258.083550px;}
.w37{width:261.521250px;}
.w21{width:296.661750px;}
.w7{width:299.324250px;}
.w1f{width:306.912000px;}
.w20{width:328.101000px;}
.w23{width:415.840650px;}
.w2e{width:417.131850px;}
.w1d{width:449.046600px;}
.w1e{width:451.674000px;}
.w3{width:489.011400px;}
.w33{width:511.723050px;}
.w2{width:517.256850px;}
.w3a{width:520.437000px;}
.w29{width:544.292550px;}
.w41{width:553.513350px;}
.w3f{width:589.361850px;}
.w22{width:626.570250px;}
.w34{width:714.967650px;}
.w35{width:756.958950px;}
.w30{width:757.346850px;}
.w28{width:783.213900px;}
.w26{width:934.044750px;}
.w2b{width:936.515700px;}
.w19{width:1078.397850px;}
.w2c{width:1122.639600px;}
.w2a{width:1125.136350px;}
.w25{width:1128.434850px;}
.w5{width:1184.586900px;}
.w3e{width:1295.520150px;}
.w2d{width:1344.000000px;}
.w4{width:1345.478250px;}
.w1{width:1417.434300px;}
.w9{width:1419.000000px;}
.w3c{width:1465.108500px;}
.w2f{width:1469.405550px;}
.w38{width:1470.060750px;}
.w0{width:1536.000000px;}
.xc3{left:-533.226990px;}
.xc5{left:-512.450490px;}
.xc6{left:-481.168290px;}
.xc7{left:-449.886240px;}
.xc8{left:-418.604190px;}
.x27{left:-2.087325px;}
.x0{left:0.000000px;}
.xf7{left:3.475050px;}
.xa{left:5.145600px;}
.x56{left:6.328050px;}
.x46{left:7.684800px;}
.x1c{left:9.000000px;}
.x25{left:10.883559px;}
.x109{left:12.676050px;}
.x24{left:13.792941px;}
.xcc{left:15.073725px;}
.x2b{left:16.672050px;}
.xba{left:20.308050px;}
.x9f{left:21.516285px;}
.xa1{left:22.830000px;}
.x44{left:25.500000px;}
.x40{left:26.538030px;}
.x6d{left:28.434323px;}
.xa5{left:30.346530px;}
.xa6{left:32.410950px;}
.x1b{left:34.500000px;}
.xd1{left:36.834600px;}
.x39{left:38.501700px;}
.x18{left:39.679980px;}
.xd4{left:42.744900px;}
.x7{left:43.979925px;}
.xdd{left:45.366600px;}
.xd9{left:47.231700px;}
.xa7{left:49.636950px;}
.x9b{left:50.924850px;}
.x2d{left:54.418725px;}
.x37{left:56.530650px;}
.x3f{left:58.500000px;}
.x1{left:60.143085px;}
.x38{left:62.954700px;}
.x2c{left:64.500000px;}
.x1d{left:66.180000px;}
.x3b{left:67.680750px;}
.xb4{left:69.180000px;}
.x43{left:70.500000px;}
.x36{left:74.867700px;}
.x22{left:76.787040px;}
.x3d{left:81.641700px;}
.x3c{left:82.959600px;}
.x50{left:85.513155px;}
.x1a{left:87.117360px;}
.x3a{left:88.628700px;}
.x34{left:89.837700px;}
.x35{left:91.517700px;}
.x33{left:93.523650px;}
.x1e{left:95.260860px;}
.x19{left:96.856455px;}
.x3e{left:100.154700px;}
.x81{left:101.349720px;}
.xb7{left:102.388590px;}
.x101{left:105.354225px;}
.xd2{left:111.796200px;}
.xa4{left:115.359000px;}
.xad{left:119.124360px;}
.xfc{left:120.239955px;}
.x8{left:122.525430px;}
.x26{left:124.971825px;}
.x59{left:126.374753px;}
.xf2{left:128.561760px;}
.x76{left:129.585375px;}
.x41{left:131.087325px;}
.xd7{left:134.876550px;}
.xa2{left:137.151000px;}
.x77{left:139.012253px;}
.x83{left:145.331002px;}
.xaf{left:153.135000px;}
.xce{left:155.190000px;}
.x45{left:162.308400px;}
.x104{left:163.917600px;}
.xf6{left:167.709750px;}
.xd3{left:173.354850px;}
.x69{left:176.924602px;}
.xb8{left:179.299260px;}
.xc2{left:181.128300px;}
.xfd{left:186.642300px;}
.xb1{left:188.711700px;}
.x78{left:192.791602px;}
.xfa{left:195.151800px;}
.x10e{left:196.994400px;}
.xc4{left:198.478560px;}
.x85{left:200.093302px;}
.x48{left:202.776750px;}
.xae{left:204.849150px;}
.x102{left:207.885150px;}
.x5b{left:210.106402px;}
.x107{left:211.620750px;}
.xde{left:213.872700px;}
.x8a{left:215.890253px;}
.xca{left:217.366050px;}
.x72{left:230.633902px;}
.x10f{left:236.316000px;}
.x93{left:241.165103px;}
.xe1{left:242.767500px;}
.x6e{left:249.590153px;}
.x89{left:272.758852px;}
.x75{left:275.102100px;}
.x79{left:279.077602px;}
.x10d{left:289.395000px;}
.xec{left:294.061050px;}
.x2e{left:299.199450px;}
.x4f{left:300.951600px;}
.x8f{left:313.830652px;}
.x3{left:318.878250px;}
.x90{left:321.202552px;}
.x108{left:326.972850px;}
.x5a{left:328.097152px;}
.x23{left:329.910000px;}
.xef{left:333.638700px;}
.xf0{left:335.677200px;}
.x1f{left:339.535290px;}
.xe7{left:341.590200px;}
.xa9{left:343.524000px;}
.x91{left:345.424402px;}
.xf4{left:347.825700px;}
.x12{left:350.321250px;}
.x47{left:351.481050px;}
.xeb{left:354.387450px;}
.x5c{left:374.654002px;}
.xbc{left:379.077600px;}
.x92{left:381.230453px;}
.xd6{left:388.341360px;}
.xee{left:396.080550px;}
.xe2{left:399.309000px;}
.xe6{left:407.625900px;}
.x58{left:416.791050px;}
.x7b{left:419.142953px;}
.x7c{left:420.499402px;}
.x21{left:422.444640px;}
.xf5{left:430.196850px;}
.x63{left:431.780452px;}
.x51{left:438.365700px;}
.x70{left:444.417952px;}
.x88{left:446.524102px;}
.x8b{left:454.949152px;}
.x2a{left:457.893150px;}
.xa8{left:463.514850px;}
.xc{left:465.716850px;}
.xed{left:469.617000px;}
.xfb{left:482.778450px;}
.x7a{left:484.436602px;}
.x7d{left:493.914652px;}
.x57{left:496.791900px;}
.x6{left:499.757250px;}
.x49{left:501.536550px;}
.x5d{left:509.711452px;}
.xe0{left:512.043900px;}
.x80{left:525.508403px;}
.xdf{left:526.612200px;}
.x5e{left:528.667703px;}
.x2f{left:533.898900px;}
.xa0{left:539.496300px;}
.xb3{left:553.657950px;}
.x65{left:557.725102px;}
.x62{left:561.358703px;}
.x64{left:562.906853px;}
.xf1{left:564.177000px;}
.xc1{left:567.221850px;}
.x5{left:568.388700px;}
.xcd{left:571.164600px;}
.x74{left:580.270702px;}
.x8c{left:582.377003px;}
.xb2{left:587.731950px;}
.xbb{left:588.798600px;}
.x6b{left:591.855053px;}
.x9{left:600.918600px;}
.xcf{left:606.658200px;}
.x52{left:613.885500px;}
.x20{left:619.484940px;}
.x82{left:622.395653px;}
.x100{left:623.558250px;}
.x4a{left:625.162200px;}
.xea{left:633.424800px;}
.x6f{left:638.192453px;}
.x11{left:644.982600px;}
.x2{left:651.503100px;}
.x94{left:656.095553px;}
.x73{left:659.039753px;}
.xf{left:660.289200px;}
.xd0{left:668.216700px;}
.x4d{left:675.579150px;}
.xf3{left:683.418705px;}
.x68{left:691.369703px;}
.x60{left:699.194303px;}
.x84{left:703.486103px;}
.x86{left:716.643450px;}
.x61{left:720.336053px;}
.x5f{left:731.920403px;}
.x6c{left:744.557902px;}
.x4e{left:745.700700px;}
.x13{left:751.558200px;}
.xe8{left:756.506850px;}
.xb5{left:759.177150px;}
.x15{left:760.732200px;}
.x30{left:768.598350px;}
.x10a{left:783.273000px;}
.x7f{left:793.001602px;}
.x66{left:797.985803px;}
.x87{left:805.391752px;}
.x97{left:809.716050px;}
.xdc{left:814.873050px;}
.x4c{left:819.162300px;}
.x8d{left:836.179703px;}
.x55{left:839.770050px;}
.x10c{left:863.246550px;}
.x53{left:871.972650px;}
.x6a{left:888.835853px;}
.x67{left:910.951403px;}
.x29{left:912.391800px;}
.x103{left:934.913100px;}
.xe9{left:936.424800px;}
.x8e{left:941.492003px;}
.xda{left:945.509700px;}
.xc9{left:947.432910px;}
.xb9{left:950.185950px;}
.x54{left:952.180350px;}
.x71{left:953.434350px;}
.xb0{left:962.816850px;}
.x96{left:976.572600px;}
.x4b{left:978.063000px;}
.x95{left:981.510652px;}
.xcb{left:998.560500px;}
.x31{left:1003.297800px;}
.xac{left:1017.620700px;}
.xdb{left:1020.353100px;}
.xa3{left:1029.629700px;}
.xb6{left:1034.972250px;}
.x106{left:1046.498250px;}
.xe3{left:1047.777600px;}
.x7e{left:1052.069903px;}
.xd8{left:1057.702350px;}
.x105{left:1059.008250px;}
.xc0{left:1066.106700px;}
.xfe{left:1068.573750px;}
.xd5{left:1069.873200px;}
.xf9{left:1071.263250px;}
.xab{left:1078.214700px;}
.x28{left:1088.923800px;}
.x42{left:1095.039150px;}
.xe{left:1110.503850px;}
.xbf{left:1121.325300px;}
.x99{left:1140.211200px;}
.xbe{left:1169.325300px;}
.x9c{left:1178.580000px;}
.x98{left:1185.000000px;}
.x17{left:1188.001950px;}
.x10{left:1191.732600px;}
.xbd{left:1197.876300px;}
.xe5{left:1205.713950px;}
.xaa{left:1208.479650px;}
.x16{left:1221.109500px;}
.x14{left:1225.696500px;}
.x4{left:1227.674250px;}
.x32{left:1237.997250px;}
.xe4{left:1254.969450px;}
.xb{left:1258.360500px;}
.x9d{left:1267.537650px;}
.x10b{left:1269.483000px;}
.xff{left:1273.272000px;}
.x9a{left:1275.797850px;}
.x9e{left:1311.217650px;}
.xd{left:1333.628700px;}
.xf8{left:1391.188800px;}
@media print{
.v1c{vertical-align:-50.140800pt;}
.v1b{vertical-align:-29.194667pt;}
.ve{vertical-align:-27.327893pt;}
.vd{vertical-align:-26.211200pt;}
.v13{vertical-align:-24.650661pt;}
.vf{vertical-align:-22.559792pt;}
.v17{vertical-align:-21.564507pt;}
.v16{vertical-align:-11.958848pt;}
.v3{vertical-align:-9.258464pt;}
.v6{vertical-align:-8.330565pt;}
.v5{vertical-align:-7.194581pt;}
.vc{vertical-align:-5.538647pt;}
.v12{vertical-align:-4.524736pt;}
.v1a{vertical-align:-3.550933pt;}
.v1{vertical-align:-2.448000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:4.100267pt;}
.v10{vertical-align:9.526400pt;}
.va{vertical-align:13.661344pt;}
.vb{vertical-align:17.076678pt;}
.v8{vertical-align:18.924800pt;}
.v9{vertical-align:20.492012pt;}
.v2{vertical-align:22.741387pt;}
.v18{vertical-align:25.503472pt;}
.v7{vertical-align:27.925333pt;}
.v14{vertical-align:31.062501pt;}
.v4{vertical-align:39.722464pt;}
.v15{vertical-align:43.007093pt;}
.v19{vertical-align:52.456533pt;}
.ls34{letter-spacing:-17.888000pt;}
.ls17{letter-spacing:-11.776000pt;}
.ls2e{letter-spacing:-10.306876pt;}
.ls39{letter-spacing:-5.333333pt;}
.ls5{letter-spacing:-1.920000pt;}
.ls2a{letter-spacing:-1.507720pt;}
.ls25{letter-spacing:-0.308959pt;}
.ls26{letter-spacing:-0.237281pt;}
.ls2f{letter-spacing:-0.074150pt;}
.ls2b{letter-spacing:-0.059320pt;}
.ls28{letter-spacing:-0.044490pt;}
.ls18{letter-spacing:-0.027733pt;}
.ls4d{letter-spacing:-0.025600pt;}
.ls29{letter-spacing:-0.024717pt;}
.ls4e{letter-spacing:-0.021333pt;}
.ls13{letter-spacing:-0.017973pt;}
.ls2d{letter-spacing:-0.014830pt;}
.ls41{letter-spacing:-0.014222pt;}
.ls1{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000008pt;}
.lsd{letter-spacing:0.000019pt;}
.ls19{letter-spacing:0.000061pt;}
.ls33{letter-spacing:0.000107pt;}
.ls38{letter-spacing:0.000168pt;}
.lse{letter-spacing:0.000449pt;}
.ls4c{letter-spacing:0.000533pt;}
.lsc{letter-spacing:0.000599pt;}
.ls10{letter-spacing:0.000711pt;}
.ls36{letter-spacing:0.008533pt;}
.ls1a{letter-spacing:0.008667pt;}
.lsf{letter-spacing:0.010073pt;}
.ls49{letter-spacing:0.010499pt;}
.ls3e{letter-spacing:0.010819pt;}
.ls4b{letter-spacing:0.011032pt;}
.ls16{letter-spacing:0.011982pt;}
.ls45{letter-spacing:0.012800pt;}
.ls40{letter-spacing:0.014222pt;}
.ls3c{letter-spacing:0.014933pt;}
.ls15{letter-spacing:0.014978pt;}
.lsb{letter-spacing:0.015090pt;}
.ls1c{letter-spacing:0.015467pt;}
.ls46{letter-spacing:0.015644pt;}
.ls20{letter-spacing:0.017067pt;}
.ls3f{letter-spacing:0.017920pt;}
.ls14{letter-spacing:0.017973pt;}
.ls4a{letter-spacing:0.018133pt;}
.ls1f{letter-spacing:0.018656pt;}
.ls37{letter-spacing:0.018667pt;}
.ls1e{letter-spacing:0.019477pt;}
.ls44{letter-spacing:0.019733pt;}
.ls1b{letter-spacing:0.019744pt;}
.ls3d{letter-spacing:0.021333pt;}
.ls43{letter-spacing:0.023467pt;}
.ls3{letter-spacing:0.025600pt;}
.ls2c{letter-spacing:0.029660pt;}
.ls0{letter-spacing:0.040533pt;}
.ls27{letter-spacing:0.044490pt;}
.ls3b{letter-spacing:0.053333pt;}
.ls22{letter-spacing:0.059320pt;}
.ls24{letter-spacing:0.327133pt;}
.ls4{letter-spacing:3.520000pt;}
.ls3a{letter-spacing:8.000000pt;}
.ls6{letter-spacing:9.240000pt;}
.ls48{letter-spacing:25.532640pt;}
.ls50{letter-spacing:34.605120pt;}
.ls4f{letter-spacing:41.310720pt;}
.ls35{letter-spacing:41.866667pt;}
.ls1d{letter-spacing:47.242667pt;}
.ls30{letter-spacing:48.008800pt;}
.ls32{letter-spacing:51.998507pt;}
.ls31{letter-spacing:52.937600pt;}
.ls21{letter-spacing:59.320469pt;}
.ls47{letter-spacing:59.648000pt;}
.lsa{letter-spacing:64.940213pt;}
.ls23{letter-spacing:67.970793pt;}
.ls7{letter-spacing:95.040000pt;}
.ls11{letter-spacing:107.360242pt;}
.ls42{letter-spacing:156.444480pt;}
.ls2{letter-spacing:158.494133pt;}
.ls9{letter-spacing:197.261760pt;}
.ls12{letter-spacing:718.861836pt;}
.ws4{word-spacing:-176.232000pt;}
.ws1d{word-spacing:-94.742400pt;}
.ws2b{word-spacing:-71.405227pt;}
.ws33{word-spacing:-68.800000pt;}
.ws1e{word-spacing:-63.161600pt;}
.ws2{word-spacing:-61.696000pt;}
.ws32{word-spacing:-55.254049pt;}
.ws30{word-spacing:-45.962667pt;}
.ws1{word-spacing:-42.997333pt;}
.ws23{word-spacing:-41.227504pt;}
.ws25{word-spacing:-41.183014pt;}
.ws27{word-spacing:-41.153354pt;}
.ws2c{word-spacing:-38.549333pt;}
.ws3{word-spacing:-35.609600pt;}
.ws5{word-spacing:-35.584000pt;}
.ws38{word-spacing:-32.642133pt;}
.ws8{word-spacing:-32.618667pt;}
.ws3d{word-spacing:-32.292480pt;}
.ws1f{word-spacing:-32.000000pt;}
.ws1b{word-spacing:-30.666667pt;}
.ws7{word-spacing:-29.653333pt;}
.ws1a{word-spacing:-29.184000pt;}
.ws26{word-spacing:-27.485000pt;}
.ws28{word-spacing:-27.247719pt;}
.ws18{word-spacing:-26.688000pt;}
.ws31{word-spacing:-24.000000pt;}
.ws19{word-spacing:-23.808000pt;}
.ws3b{word-spacing:-23.739733pt;}
.ws6{word-spacing:-23.722667pt;}
.ws3f{word-spacing:-22.734217pt;}
.wsc{word-spacing:-22.484591pt;}
.ws9{word-spacing:-22.466618pt;}
.wsa{word-spacing:-22.448644pt;}
.ws39{word-spacing:-21.761427pt;}
.ws40{word-spacing:-21.745783pt;}
.ws3e{word-spacing:-21.528320pt;}
.ws20{word-spacing:-21.350400pt;}
.ws2d{word-spacing:-20.661333pt;}
.ws1c{word-spacing:-20.444440pt;}
.ws36{word-spacing:-19.783106pt;}
.ws35{word-spacing:-19.768884pt;}
.ws16{word-spacing:-19.658290pt;}
.wse{word-spacing:-18.737159pt;}
.wsf{word-spacing:-18.722181pt;}
.ws3a{word-spacing:-17.804800pt;}
.ws11{word-spacing:-14.989731pt;}
.ws13{word-spacing:-14.989728pt;}
.ws12{word-spacing:-14.977748pt;}
.wsb{word-spacing:-14.977745pt;}
.ws17{word-spacing:-13.105527pt;}
.wsd{word-spacing:-12.481451pt;}
.ws15{word-spacing:-9.985169pt;}
.ws10{word-spacing:-9.985167pt;}
.ws14{word-spacing:-9.985166pt;}
.ws2f{word-spacing:-0.149333pt;}
.ws3c{word-spacing:-0.140800pt;}
.ws2e{word-spacing:-0.138667pt;}
.ws0{word-spacing:0.000000pt;}
.ws21{word-spacing:0.163403pt;}
.ws29{word-spacing:0.163926pt;}
.ws34{word-spacing:4.124267pt;}
.ws24{word-spacing:14.188818pt;}
.ws2a{word-spacing:396.760712pt;}
.ws22{word-spacing:396.761235pt;}
.ws37{word-spacing:542.527467pt;}
._2a{margin-left:-36.113067pt;}
._1b{margin-left:-25.443687pt;}
._10{margin-left:-23.184000pt;}
._21{margin-left:-21.770667pt;}
._14{margin-left:-19.850667pt;}
._f{margin-left:-18.144000pt;}
._23{margin-left:-16.901867pt;}
._1e{margin-left:-15.392000pt;}
._28{margin-left:-14.208000pt;}
._1d{margin-left:-13.024000pt;}
._8{margin-left:-10.869333pt;}
._2{margin-left:-9.866667pt;}
._13{margin-left:-8.613333pt;}
._9{margin-left:-7.712000pt;}
._0{margin-left:-6.144000pt;}
._c{margin-left:-4.640000pt;}
._5{margin-left:-3.744000pt;}
._1{margin-left:-2.400000pt;}
._3{margin-left:-1.344000pt;}
._6{width:1.344000pt;}
._a{width:3.072000pt;}
._7{width:4.537600pt;}
._b{width:5.888000pt;}
._12{width:7.728000pt;}
._11{width:9.408000pt;}
._1c{width:10.381026pt;}
._16{width:11.776000pt;}
._1a{width:13.891200pt;}
._17{width:14.892800pt;}
._1f{width:18.272000pt;}
._e{width:22.982400pt;}
._22{width:33.756267pt;}
._18{width:43.465067pt;}
._27{width:55.155200pt;}
._26{width:56.140800pt;}
._25{width:90.916493pt;}
._24{width:94.964493pt;}
._29{width:96.733973pt;}
._19{width:104.007200pt;}
._15{width:105.912533pt;}
._20{width:108.328533pt;}
._4{width:136.936907pt;}
._d{width:158.506667pt;}
._2b{width:776.505067pt;}
._2c{width:1356.408000pt;}
.fs17{font-size:39.940666pt;}
.fs25{font-size:39.940668pt;}
.fs1c{font-size:39.940670pt;}
.fs23{font-size:39.940673pt;}
.fs1e{font-size:39.940675pt;}
.fs21{font-size:39.940677pt;}
.fs28{font-size:39.940678pt;}
.fs19{font-size:49.925804pt;}
.fs2a{font-size:52.422108pt;}
.fs16{font-size:59.910980pt;}
.fs24{font-size:59.910983pt;}
.fs1b{font-size:59.910986pt;}
.fs1f{font-size:59.910987pt;}
.fs1a{font-size:59.910989pt;}
.fs22{font-size:59.910991pt;}
.fs1d{font-size:59.910994pt;}
.fs20{font-size:59.910997pt;}
.fs27{font-size:59.910998pt;}
.fs26{font-size:59.911001pt;}
.fs51{font-size:64.000000pt;}
.fs12{font-size:67.555573pt;}
.fs4f{font-size:71.111093pt;}
.fs2{font-size:74.666667pt;}
.fs18{font-size:74.888725pt;}
.fs58{font-size:77.440000pt;}
.fs13{font-size:78.222240pt;}
.fs29{font-size:78.633162pt;}
.fs2e{font-size:80.000000pt;}
.fs37{font-size:81.777760pt;}
.fsa{font-size:85.333333pt;}
.fs15{font-size:89.866470pt;}
.fs2c{font-size:90.666667pt;}
.fs2b{font-size:96.000000pt;}
.fs3f{font-size:98.866906pt;}
.fs4{font-size:101.333333pt;}
.fsf{font-size:106.666667pt;}
.fs45{font-size:110.222240pt;}
.fs57{font-size:116.160000pt;}
.fsc{font-size:117.333333pt;}
.fs14{font-size:122.666667pt;}
.fs40{font-size:123.583640pt;}
.fs56{font-size:126.720000pt;}
.fsb{font-size:128.000000pt;}
.fs31{font-size:128.000002pt;}
.fs32{font-size:128.000006pt;}
.fs53{font-size:132.642133pt;}
.fs1{font-size:133.333333pt;}
.fs34{font-size:138.666667pt;}
.fs59{font-size:140.314773pt;}
.fs46{font-size:144.000000pt;}
.fs3e{font-size:148.300373pt;}
.fs2f{font-size:149.333333pt;}
.fs38{font-size:151.838720pt;}
.fs11{font-size:154.616800pt;}
.fs6{font-size:154.666667pt;}
.fs48{font-size:158.440427pt;}
.fs44{font-size:165.333333pt;}
.fs5{font-size:170.666667pt;}
.fs3d{font-size:181.740625pt;}
.fs10{font-size:185.600000pt;}
.fs4c{font-size:198.755573pt;}
.fs3{font-size:202.666667pt;}
.fs36{font-size:207.928907pt;}
.fs52{font-size:213.333333pt;}
.fs3a{font-size:227.200000pt;}
.fs41{font-size:256.853333pt;}
.fs3c{font-size:259.525653pt;}
.fs30{font-size:266.666667pt;}
.fs43{font-size:268.800000pt;}
.fs8{font-size:275.200000pt;}
.fs47{font-size:288.960000pt;}
.fs3b{font-size:293.546667pt;}
.fs4b{font-size:298.133333pt;}
.fs50{font-size:307.306667pt;}
.fs9{font-size:311.893333pt;}
.fs35{font-size:312.000000pt;}
.fs4e{font-size:316.480000pt;}
.fs42{font-size:320.000000pt;}
.fs2d{font-size:321.066667pt;}
.fse{font-size:330.240000pt;}
.fsd{font-size:336.000000pt;}
.fs39{font-size:340.800000pt;}
.fs0{font-size:341.333333pt;}
.fs55{font-size:344.000000pt;}
.fs54{font-size:348.586667pt;}
.fs5c{font-size:354.133333pt;}
.fs33{font-size:360.000000pt;}
.fs7{font-size:362.346667pt;}
.fs4a{font-size:371.520000pt;}
.fs5a{font-size:380.693333pt;}
.fs5d{font-size:392.533333pt;}
.fs5e{font-size:403.626667pt;}
.fs5b{font-size:426.666667pt;}
.fs49{font-size:431.146667pt;}
.fs4d{font-size:458.666667pt;}
.y140{bottom:-18.133067pt;}
.y119{bottom:-0.949027pt;}
.y0{bottom:0.000000pt;}
.y1c4{bottom:0.795853pt;}
.y1c6{bottom:1.205333pt;}
.y1c2{bottom:3.415587pt;}
.y1e1{bottom:5.472373pt;}
.y1e3{bottom:5.752867pt;}
.y42{bottom:6.339288pt;}
.y5c{bottom:6.339307pt;}
.y176{bottom:6.496080pt;}
.y202{bottom:7.530667pt;}
.y7d{bottom:7.818000pt;}
.y3f{bottom:8.149784pt;}
.y144{bottom:8.975444pt;}
.y19c{bottom:9.092973pt;}
.y45{bottom:9.626947pt;}
.yc1{bottom:10.253827pt;}
.y83{bottom:10.381867pt;}
.yd8{bottom:10.622400pt;}
.y7f{bottom:10.630667pt;}
.yd6{bottom:10.671067pt;}
.y132{bottom:10.960175pt;}
.y66{bottom:11.982667pt;}
.y6d{bottom:11.997600pt;}
.y6f{bottom:12.099867pt;}
.y6a{bottom:12.156533pt;}
.y72{bottom:12.163067pt;}
.ya1{bottom:12.334133pt;}
.y81{bottom:12.380933pt;}
.y68{bottom:12.506800pt;}
.ya6{bottom:12.656400pt;}
.y79{bottom:12.685867pt;}
.y75{bottom:12.686000pt;}
.y77{bottom:12.802667pt;}
.ya8{bottom:12.805733pt;}
.y1ce{bottom:13.056133pt;}
.y40{bottom:13.118176pt;}
.y64{bottom:14.146933pt;}
.ybb{bottom:14.358667pt;}
.y4d{bottom:14.402533pt;}
.y49{bottom:14.549333pt;}
.y4f{bottom:15.069200pt;}
.y4b{bottom:15.216000pt;}
.y4e{bottom:15.759867pt;}
.y200{bottom:15.957333pt;}
.y205{bottom:15.957467pt;}
.y1ed{bottom:17.031853pt;}
.yf9{bottom:17.031867pt;}
.y1ef{bottom:17.408133pt;}
.y19b{bottom:17.916600pt;}
.y14b{bottom:18.368147pt;}
.y16d{bottom:19.283213pt;}
.y15d{bottom:19.559893pt;}
.y13f{bottom:19.683467pt;}
.yfd{bottom:19.870493pt;}
.y47{bottom:20.462427pt;}
.y148{bottom:20.584716pt;}
.y41{bottom:20.614013pt;}
.y1fa{bottom:21.034667pt;}
.y11b{bottom:21.521867pt;}
.ycc{bottom:21.530507pt;}
.y169{bottom:22.485467pt;}
.yf2{bottom:22.771867pt;}
.y2c{bottom:23.092667pt;}
.y117{bottom:24.588973pt;}
.y1df{bottom:24.961400pt;}
.y109{bottom:25.208267pt;}
.y107{bottom:26.594933pt;}
.y10f{bottom:26.630533pt;}
.y12f{bottom:27.693400pt;}
.yb9{bottom:28.083280pt;}
.y10c{bottom:29.604760pt;}
.y162{bottom:30.941480pt;}
.y1e6{bottom:33.216427pt;}
.y62{bottom:33.880133pt;}
.y121{bottom:34.375600pt;}
.y14a{bottom:34.932133pt;}
.yf4{bottom:36.266800pt;}
.y154{bottom:36.556933pt;}
.y13{bottom:37.427333pt;}
.y170{bottom:39.298800pt;}
.y126{bottom:39.922533pt;}
.y181{bottom:40.546267pt;}
.y151{bottom:40.761627pt;}
.y174{bottom:41.779560pt;}
.y1ac{bottom:41.793867pt;}
.y1e5{bottom:42.417600pt;}
.y16{bottom:42.417733pt;}
.y5d{bottom:43.010453pt;}
.y186{bottom:43.041467pt;}
.y14f{bottom:43.520133pt;}
.ye4{bottom:43.665333pt;}
.yee{bottom:44.706667pt;}
.y1c8{bottom:44.752000pt;}
.y3d{bottom:44.912800pt;}
.y11d{bottom:46.348933pt;}
.y3{bottom:46.421600pt;}
.y1cc{bottom:46.784133pt;}
.y1ca{bottom:47.408000pt;}
.y1f1{bottom:48.162400pt;}
.y11{bottom:49.279467pt;}
.y1b0{bottom:49.759160pt;}
.y16a{bottom:50.481667pt;}
.y17e{bottom:50.526933pt;}
.y1e8{bottom:51.774533pt;}
.y11f{bottom:52.052627pt;}
.y17f{bottom:52.134320pt;}
.y1f6{bottom:53.384800pt;}
.ye5{bottom:53.465560pt;}
.y19e{bottom:54.167720pt;}
.y16c{bottom:54.764560pt;}
.y208{bottom:54.893467pt;}
.y105{bottom:54.916133pt;}
.y17c{bottom:55.158080pt;}
.yf8{bottom:55.698533pt;}
.ya2{bottom:56.166573pt;}
.y127{bottom:56.359853pt;}
.y46{bottom:56.462427pt;}
.y1eb{bottom:58.026933pt;}
.y116{bottom:58.207520pt;}
.y10d{bottom:58.630800pt;}
.y13e{bottom:60.095333pt;}
.y178{bottom:60.313400pt;}
.y189{bottom:60.550213pt;}
.y184{bottom:62.378933pt;}
.y103{bottom:62.553880pt;}
.yf1{bottom:62.723867pt;}
.y1f7{bottom:63.721107pt;}
.y17b{bottom:64.558267pt;}
.y206{bottom:65.133387pt;}
.yfc{bottom:65.203827pt;}
.y147{bottom:65.651383pt;}
.y1ad{bottom:65.926493pt;}
.y167{bottom:65.952227pt;}
.y150{bottom:66.094960pt;}
.y61{bottom:66.803560pt;}
.y10b{bottom:66.938080pt;}
.y1f9{bottom:67.701333pt;}
.y12e{bottom:68.760133pt;}
.y120{bottom:69.042267pt;}
.y2b{bottom:69.492667pt;}
.y1a2{bottom:70.143880pt;}
.y161{bottom:70.574227pt;}
.y1ec{bottom:72.468120pt;}
.y10a{bottom:74.251520pt;}
.y36{bottom:75.252653pt;}
.y32{bottom:75.252680pt;}
.y14{bottom:75.836093pt;}
.y85{bottom:77.587827pt;}
.y142{bottom:79.486640pt;}
.y96{bottom:80.505373pt;}
.y3b{bottom:81.929467pt;}
.yc2{bottom:83.128173pt;}
.y1de{bottom:83.780507pt;}
.y111{bottom:85.129680pt;}
.y8{bottom:85.219013pt;}
.y59{bottom:86.902347pt;}
.yed{bottom:87.933333pt;}
.yf7{bottom:95.650533pt;}
.y3e{bottom:95.651320pt;}
.y15c{bottom:95.676680pt;}
.y128{bottom:96.307867pt;}
.y115{bottom:97.102320pt;}
.y38{bottom:98.363200pt;}
.y7{bottom:99.078973pt;}
.y13d{bottom:100.136533pt;}
.y1cf{bottom:101.027360pt;}
.y5{bottom:102.232333pt;}
.y16b{bottom:102.790467pt;}
.y173{bottom:103.900093pt;}
.y5a{bottom:105.970053pt;}
.yf0{bottom:108.057200pt;}
.y12d{bottom:109.826800pt;}
.y172{bottom:110.377507pt;}
.y146{bottom:110.718049pt;}
.y33{bottom:112.010947pt;}
.y1af{bottom:114.612440pt;}
.yfb{bottom:115.685507pt;}
.yfe{bottom:116.565920pt;}
.y153{bottom:117.890267pt;}
.yc0{bottom:118.820000pt;}
.y35{bottom:121.652653pt;}
.y31{bottom:121.652680pt;}
.yec{bottom:127.885333pt;}
.y1dd{bottom:128.802773pt;}
.yc4{bottom:130.119107pt;}
.y60{bottom:130.803547pt;}
.y2d{bottom:131.413320pt;}
.y1a1{bottom:134.143867pt;}
.y37{bottom:134.980267pt;}
.y1ab{bottom:136.460533pt;}
.yf6{bottom:140.983867pt;}
.y86{bottom:141.352440pt;}
.y14e{bottom:142.186800pt;}
.ye3{bottom:142.332000pt;}
.y99{bottom:144.160840pt;}
.y165{bottom:146.749467pt;}
.y1fe{bottom:148.645467pt;}
.y1ae{bottom:149.279107pt;}
.y2{bottom:150.421600pt;}
.y12c{bottom:150.893467pt;}
.yd3{bottom:154.458040pt;}
.y82{bottom:155.200267pt;}
.y145{bottom:155.784689pt;}
.yf{bottom:157.906187pt;}
.y34{bottom:168.052653pt;}
.y30{bottom:168.052680pt;}
.y1dc{bottom:170.023840pt;}
.yd0{bottom:170.371907pt;}
.yeb{bottom:173.218667pt;}
.y114{bottom:174.135387pt;}
.y1c0{bottom:174.403467pt;}
.yc3{bottom:177.860707pt;}
.ycb{bottom:179.732973pt;}
.y118{bottom:184.206000pt;}
.y1ea{bottom:187.360267pt;}
.y3a{bottom:189.929467pt;}
.y5b{bottom:192.218400pt;}
.ya4{bottom:193.774573pt;}
.y20{bottom:193.831067pt;}
.y13c{bottom:194.307200pt;}
.ya0{bottom:195.372800pt;}
.y12b{bottom:195.960133pt;}
.y17a{bottom:196.558267pt;}
.y1a0{bottom:198.143867pt;}
.y164{bottom:199.083467pt;}
.y5f{bottom:199.534747pt;}
.y80{bottom:201.878800pt;}
.y183{bottom:202.378933pt;}
.y175{bottom:207.781467pt;}
.ye{bottom:208.572853pt;}
.y156{bottom:209.361467pt;}
.y113{bottom:210.135387pt;}
.y1db{bottom:215.482240pt;}
.y94{bottom:218.113373pt;}
.y2f{bottom:220.212680pt;}
.y130{bottom:223.118533pt;}
.yc6{bottom:223.730040pt;}
.y1bf{bottom:226.300267pt;}
.y69{bottom:227.378133pt;}
.y5e{bottom:233.470213pt;}
.y155{bottom:234.694800pt;}
.y13b{bottom:234.719067pt;}
.y163{bottom:236.416800pt;}
.y12a{bottom:237.026800pt;}
.yd7{bottom:238.273333pt;}
.ye1{bottom:240.943467pt;}
.y112{bottom:248.516987pt;}
.y141{bottom:252.640267pt;}
.y1a6{bottom:254.604933pt;}
.y8b{bottom:255.557773pt;}
.yd{bottom:259.239520pt;}
.y18{bottom:260.637067pt;}
.ya9{bottom:263.982840pt;}
.y1da{bottom:264.887573pt;}
.y2e{bottom:266.612680pt;}
.y13a{bottom:274.760133pt;}
.y76{bottom:278.218000pt;}
.y9a{bottom:283.641107pt;}
.y87{bottom:284.930440pt;}
.y84{bottom:285.066667pt;}
.y88{bottom:285.311240pt;}
.y124{bottom:288.732133pt;}
.y19d{bottom:290.148533pt;}
.y1f{bottom:292.688000pt;}
.y1be{bottom:293.603467pt;}
.ye7{bottom:295.801333pt;}
.y8a{bottom:295.810440pt;}
.y39{bottom:297.929467pt;}
.y71{bottom:300.388133pt;}
.y7e{bottom:301.920533pt;}
.y1a5{bottom:303.750133pt;}
.y129{bottom:306.626800pt;}
.y1e2{bottom:309.939200pt;}
.y15b{bottom:310.923067pt;}
.y89{bottom:313.099640pt;}
.ye0{bottom:317.585067pt;}
.y1d9{bottom:319.581707pt;}
.y182{bottom:323.363200pt;}
.y179{bottom:327.491333pt;}
.y2a{bottom:328.603467pt;}
.y58{bottom:330.666667pt;}
.ya3{bottom:335.865507pt;}
.yb4{bottom:336.999240pt;}
.y199{bottom:338.261600pt;}
.ydc{bottom:339.448133pt;}
.y93{bottom:342.984840pt;}
.y1bd{bottom:343.870133pt;}
.yca{bottom:345.424307pt;}
.ydf{bottom:348.251733pt;}
.yd5{bottom:349.621733pt;}
.yf5{bottom:350.765333pt;}
.yfa{bottom:351.239467pt;}
.yab{bottom:359.248973pt;}
.yc9{bottom:364.146440pt;}
.y1d8{bottom:364.542640pt;}
.yc{bottom:365.906187pt;}
.y9d{bottom:366.954840pt;}
.y139{bottom:368.930933pt;}
.y19f{bottom:372.467333pt;}
.yaf{bottom:373.409773pt;}
.y8c{bottom:374.443640pt;}
.ya7{bottom:374.634267pt;}
.yaa{bottom:377.252040pt;}
.y18a{bottom:377.432400pt;}
.yf3{bottom:381.136800pt;}
.y57{bottom:382.666667pt;}
.yad{bottom:382.868573pt;}
.yc8{bottom:386.613107pt;}
.ycd{bottom:387.234307pt;}
.y1bc{bottom:392.136800pt;}
.yd2{bottom:395.038040pt;}
.y1fc{bottom:397.217733pt;}
.y1c5{bottom:397.875200pt;}
.ycf{bottom:399.718573pt;}
.ye9{bottom:399.844267pt;}
.y1e{bottom:403.244800pt;}
.y1b1{bottom:403.427067pt;}
.y15a{bottom:404.256400pt;}
.y138{bottom:408.972000pt;}
.y177{bottom:413.145867pt;}
.yae{bottom:413.760173pt;}
.yb{bottom:416.572853pt;}
.yb0{bottom:418.440840pt;}
.ye8{bottom:425.070800pt;}
.y56{bottom:434.666667pt;}
.y1a7{bottom:435.145467pt;}
.y8e{bottom:435.290707pt;}
.y1d7{bottom:436.339440pt;}
.y1b{bottom:441.553467pt;}
.ybd{bottom:442.779640pt;}
.y98{bottom:445.587907pt;}
.y6c{bottom:449.394933pt;}
.y159{bottom:450.923067pt;}
.y70{bottom:451.694133pt;}
.yb8{bottom:454.012973pt;}
.y1bb{bottom:454.167867pt;}
.yde{bottom:454.226667pt;}
.y198{bottom:454.634400pt;}
.yc5{bottom:454.948973pt;}
.y67{bottom:455.438533pt;}
.y204{bottom:457.387067pt;}
.y8d{bottom:458.537107pt;}
.y92{bottom:460.292573pt;}
.y63{bottom:469.712267pt;}
.y29{bottom:473.058933pt;}
.y1e9{bottom:476.213333pt;}
.y168{bottom:477.096933pt;}
.y1a8{bottom:477.812133pt;}
.y1d6{bottom:479.883440pt;}
.yb1{bottom:481.160040pt;}
.y197{bottom:483.318267pt;}
.y55{bottom:486.666667pt;}
.y91{bottom:491.511640pt;}
.yc7{bottom:492.393373pt;}
.yff{bottom:500.074667pt;}
.y137{bottom:501.659747pt;}
.yd4{bottom:501.754440pt;}
.y9f{bottom:505.498973pt;}
.y1ba{bottom:506.064800pt;}
.y1b2{bottom:506.494533pt;}
.y28{bottom:511.725600pt;}
.y196{bottom:512.002267pt;}
.ybf{bottom:512.051640pt;}
.yd1{bottom:514.860040pt;}
.ye6{bottom:516.596133pt;}
.y78{bottom:519.850933pt;}
.y102{bottom:520.640667pt;}
.ya{bottom:523.239520pt;}
.y19a{bottom:523.493867pt;}
.yb3{bottom:525.157240pt;}
.y1e4{bottom:525.858000pt;}
.y1d5{bottom:528.411307pt;}
.y9e{bottom:531.710040pt;}
.y136{bottom:535.768840pt;}
.y54{bottom:538.666667pt;}
.y195{bottom:543.010800pt;}
.ydd{bottom:543.090267pt;}
.y158{bottom:544.256400pt;}
.y27{bottom:550.392267pt;}
.yb7{bottom:551.368307pt;}
.yba{bottom:553.750400pt;}
.y16e{bottom:555.307733pt;}
.y6e{bottom:557.881333pt;}
.y101{bottom:558.246000pt;}
.ya5{bottom:560.133200pt;}
.y8f{bottom:566.086440pt;}
.y1d4{bottom:569.771840pt;}
.y73{bottom:570.580000pt;}
.y1a4{bottom:572.857467pt;}
.yb6{bottom:573.834840pt;}
.y9{bottom:573.906187pt;}
.y1e0{bottom:574.550800pt;}
.y1b9{bottom:574.998133pt;}
.y6b{bottom:577.132667pt;}
.y135{bottom:577.663693pt;}
.yce{bottom:579.451507pt;}
.y194{bottom:579.671467pt;}
.y171{bottom:580.703600pt;}
.y26{bottom:589.058933pt;}
.y53{bottom:590.666667pt;}
.y157{bottom:590.923067pt;}
.y1b3{bottom:591.661467pt;}
.y1f3{bottom:593.860533pt;}
.y1a3{bottom:595.524133pt;}
.yb5{bottom:596.301507pt;}
.ydb{bottom:602.498133pt;}
.y95{bottom:602.723373pt;}
.yac{bottom:611.279240pt;}
.y193{bottom:614.007733pt;}
.y1d3{bottom:614.648773pt;}
.y134{bottom:617.704792pt;}
.y143{bottom:617.704795pt;}
.y108{bottom:623.916800pt;}
.y1b8{bottom:626.401867pt;}
.y7b{bottom:626.746533pt;}
.y25{bottom:628.337600pt;}
.y43{bottom:632.310000pt;}
.yea{bottom:635.020400pt;}
.y1c3{bottom:638.720133pt;}
.y97{bottom:639.362573pt;}
.yda{bottom:639.417333pt;}
.y100{bottom:641.663200pt;}
.y52{bottom:642.666667pt;}
.y192{bottom:642.691733pt;}
.y65{bottom:643.184533pt;}
.y90{bottom:644.043107pt;}
.y9b{bottom:648.723640pt;}
.y133{bottom:657.745893pt;}
.y9c{bottom:659.020840pt;}
.yb2{bottom:665.573640pt;}
.y1d2{bottom:669.498373pt;}
.y191{bottom:671.375733pt;}
.y24{bottom:674.129200pt;}
.yd9{bottom:676.726533pt;}
.y1d{bottom:677.991600pt;}
.yef{bottom:680.487600pt;}
.ybc{bottom:685.231907pt;}
.y7a{bottom:686.478267pt;}
.y44{bottom:686.480800pt;}
.ybe{bottom:690.848573pt;}
.y51{bottom:694.666667pt;}
.y4{bottom:698.274133pt;}
.y190{bottom:700.059733pt;}
.y1b7{bottom:703.009200pt;}
.y7c{bottom:711.940667pt;}
.y1d1{bottom:711.955707pt;}
.y1a{bottom:714.293867pt;}
.y74{bottom:714.561600pt;}
.y1a9{bottom:716.145467pt;}
.y23{bottom:720.532667pt;}
.y18f{bottom:728.743733pt;}
.y123{bottom:736.732133pt;}
.y6{bottom:736.876933pt;}
.y1b6{bottom:737.376667pt;}
.y131{bottom:738.198853pt;}
.y106{bottom:742.550533pt;}
.y1fb{bottom:743.026667pt;}
.y10e{bottom:743.199333pt;}
.y50{bottom:746.666667pt;}
.y1c1{bottom:747.075200pt;}
.y1d0{bottom:756.808773pt;}
.y22{bottom:759.199333pt;}
.y18e{bottom:759.752133pt;}
.y188{bottom:763.373200pt;}
.y1f8{bottom:772.678000pt;}
.y122{bottom:776.272000pt;}
.y15e{bottom:777.598400pt;}
.y15f{bottom:781.049867pt;}
.y1c{bottom:783.033600pt;}
.y1{bottom:784.516400pt;}
.y1f2{bottom:788.995867pt;}
.y18d{bottom:796.412933pt;}
.y1b4{bottom:796.758800pt;}
.y21{bottom:798.478000pt;}
.y4c{bottom:798.666667pt;}
.y14d{bottom:798.994000pt;}
.ye2{bottom:801.104800pt;}
.y11a{bottom:805.622533pt;}
.y203{bottom:806.186000pt;}
.y1aa{bottom:806.645200pt;}
.y1ff{bottom:813.148933pt;}
.y1ee{bottom:814.333600pt;}
.y1b5{bottom:815.614133pt;}
.y152{bottom:818.808400pt;}
.y166{bottom:821.210267pt;}
.y209{bottom:821.798400pt;}
.y19{bottom:822.199733pt;}
.y201{bottom:822.927333pt;}
.y1cd{bottom:823.827733pt;}
.y187{bottom:828.826667pt;}
.y18c{bottom:833.073733pt;}
.y1f4{bottom:835.396800pt;}
.y104{bottom:850.303733pt;}
.y4a{bottom:850.666667pt;}
.y48{bottom:851.333333pt;}
.y1fd{bottom:862.104933pt;}
.y1c9{bottom:868.443200pt;}
.y1cb{bottom:868.784933pt;}
.y207{bottom:869.620800pt;}
.y18b{bottom:870.759067pt;}
.y1c7{bottom:875.200000pt;}
.y160{bottom:875.812533pt;}
.y1e7{bottom:877.138933pt;}
.y17d{bottom:877.822400pt;}
.y1f5{bottom:879.314533pt;}
.y10{bottom:880.722933pt;}
.y180{bottom:883.289733pt;}
.y11e{bottom:884.376667pt;}
.y1f0{bottom:885.108933pt;}
.y185{bottom:887.288000pt;}
.y14c{bottom:887.838133pt;}
.y11c{bottom:889.690133pt;}
.y110{bottom:891.461733pt;}
.y3c{bottom:895.177467pt;}
.y15{bottom:898.635200pt;}
.y16f{bottom:900.343733pt;}
.y12{bottom:902.702267pt;}
.y125{bottom:905.335467pt;}
.y149{bottom:915.698400pt;}
.y17{bottom:931.768400pt;}
.h66{height:17.081853pt;}
.hb3{height:18.503573pt;}
.hb1{height:23.610293pt;}
.h30{height:26.960667pt;}
.hc6{height:28.694373pt;}
.hc8{height:29.045160pt;}
.hda{height:29.333333pt;}
.hb5{height:32.000000pt;}
.h1f{height:32.005680pt;}
.ha3{height:32.266667pt;}
.h93{height:32.797173pt;}
.h32{height:34.636960pt;}
.h40{height:37.024080pt;}
.h31{height:41.627600pt;}
.h3a{height:41.627602pt;}
.h36{height:41.627604pt;}
.h3c{height:41.627605pt;}
.h35{height:41.627606pt;}
.h39{height:41.627608pt;}
.h37{height:41.627610pt;}
.h38{height:41.627612pt;}
.h3e{height:41.627613pt;}
.h3b{height:41.627614pt;}
.h2f{height:42.313227pt;}
.hbb{height:44.970680pt;}
.h2d{height:45.371040pt;}
.h24{height:51.333333pt;}
.h26{height:52.000000pt;}
.h33{height:52.034500pt;}
.hd9{height:53.482680pt;}
.hdc{height:53.482693pt;}
.h6e{height:54.581333pt;}
.h41{height:54.636225pt;}
.h12{height:55.015625pt;}
.hce{height:57.306560pt;}
.h4{height:57.493333pt;}
.hcf{height:57.738693pt;}
.hac{height:58.312500pt;}
.h8f{height:61.266933pt;}
.h6d{height:62.378667pt;}
.h2e{height:62.441400pt;}
.h89{height:63.520827pt;}
.h3d{height:64.094267pt;}
.h3f{height:64.164660pt;}
.h68{height:65.081480pt;}
.hd2{height:65.258667pt;}
.h1d{height:65.276440pt;}
.hf{height:65.706667pt;}
.ha6{height:68.031250pt;}
.h42{height:70.176000pt;}
.hb4{height:70.830899pt;}
.ha1{height:72.441067pt;}
.ha2{height:72.441600pt;}
.h48{height:73.642667pt;}
.h43{height:74.074667pt;}
.h7b{height:74.150179pt;}
.h8a{height:74.858147pt;}
.h5a{height:75.235573pt;}
.h8b{height:75.301360pt;}
.h58{height:76.568907pt;}
.h5f{height:76.604493pt;}
.h49{height:77.738667pt;}
.hd7{height:77.973333pt;}
.h55{height:78.000000pt;}
.h6{height:78.026667pt;}
.hdb{height:78.144000pt;}
.ha4{height:78.593750pt;}
.ha5{height:79.114583pt;}
.h28{height:82.133333pt;}
.hc3{height:82.177600pt;}
.hc0{height:82.178133pt;}
.h9f{height:82.685333pt;}
.h47{height:82.848000pt;}
.h11{height:83.776000pt;}
.hc1{height:84.912960pt;}
.h6c{height:85.421875pt;}
.h25{height:85.770667pt;}
.hc2{height:85.892267pt;}
.hc4{height:86.173333pt;}
.ha0{height:86.784000pt;}
.haa{height:87.026042pt;}
.h46{height:87.456000pt;}
.hb2{height:88.074377pt;}
.h69{height:88.468508pt;}
.h62{height:89.304688pt;}
.hbd{height:89.347500pt;}
.hc5{height:89.443200pt;}
.haf{height:90.250000pt;}
.h27{height:90.346667pt;}
.hb0{height:91.812500pt;}
.h1c{height:92.053333pt;}
.hbf{height:92.632320pt;}
.h78{height:92.687730pt;}
.hc7{height:93.169009pt;}
.h5d{height:93.187500pt;}
.h72{height:93.187501pt;}
.h64{height:93.404954pt;}
.h21{height:93.568000pt;}
.h53{height:93.568002pt;}
.h54{height:93.568004pt;}
.h59{height:94.312500pt;}
.h3{height:97.466667pt;}
.h52{height:97.500000pt;}
.hbe{height:97.574400pt;}
.h2b{height:98.560000pt;}
.h22{height:98.579693pt;}
.h65{height:98.830554pt;}
.h63{height:98.831087pt;}
.h8e{height:99.984375pt;}
.had{height:100.385717pt;}
.h67{height:100.820910pt;}
.h7c{height:101.258667pt;}
.h20{height:102.665555pt;}
.h5b{height:102.848958pt;}
.h94{height:105.204443pt;}
.h2c{height:105.861333pt;}
.h23{height:106.069333pt;}
.hab{height:106.906250pt;}
.h80{height:108.301600pt;}
.h83{height:108.718750pt;}
.h15{height:108.800000pt;}
.h4c{height:110.464000pt;}
.h5c{height:110.854773pt;}
.h77{height:111.225280pt;}
.h51{height:112.413213pt;}
.h13{height:114.177000pt;}
.h4b{height:114.986667pt;}
.hd5{height:116.378693pt;}
.h14{height:116.625000pt;}
.h79{height:117.157113pt;}
.h76{height:117.157273pt;}
.h7d{height:117.157326pt;}
.h7a{height:117.157646pt;}
.h10{height:117.958011pt;}
.h6f{height:118.664533pt;}
.h88{height:119.093333pt;}
.h8c{height:120.858667pt;}
.h4e{height:121.066707pt;}
.hb{height:121.297733pt;}
.h90{height:123.656200pt;}
.hd{height:125.364733pt;}
.h60{height:125.364747pt;}
.h82{height:126.325333pt;}
.h1a{height:128.822533pt;}
.h8{height:131.413333pt;}
.h1e{height:132.518400pt;}
.h6a{height:134.309867pt;}
.h7f{height:135.121875pt;}
.h75{height:136.305468pt;}
.h9d{height:136.712000pt;}
.hd0{height:138.891067pt;}
.hd6{height:139.818667pt;}
.h99{height:140.710267pt;}
.hc9{height:142.472133pt;}
.h9{height:143.277067pt;}
.hd3{height:144.685467pt;}
.h97{height:146.177600pt;}
.hca{height:146.861067pt;}
.hb6{height:148.800000pt;}
.h5{height:149.328125pt;}
.hae{height:153.020833pt;}
.hdd{height:154.379200pt;}
.h92{height:154.716000pt;}
.hb9{height:155.215067pt;}
.hb7{height:155.556800pt;}
.h4d{height:156.553333pt;}
.hd8{height:161.895067pt;}
.h56{height:173.696267pt;}
.h29{height:187.490133pt;}
.h50{height:188.193200pt;}
.h74{height:194.644240pt;}
.h4f{height:194.933333pt;}
.ha9{height:197.199733pt;}
.h7e{height:204.663867pt;}
.h86{height:205.191600pt;}
.ha7{height:217.354800pt;}
.h44{height:222.895200pt;}
.h84{height:225.006000pt;}
.h81{height:232.195413pt;}
.h1{height:239.483600pt;}
.h87{height:242.995200pt;}
.h4a{height:248.381467pt;}
.hc{height:248.780800pt;}
.h17{height:259.520000pt;}
.h91{height:261.219840pt;}
.h70{height:265.366187pt;}
.h9a{height:269.512533pt;}
.ha8{height:277.805227pt;}
.he{height:281.951573pt;}
.h5e{height:282.048000pt;}
.h9e{height:286.097920pt;}
.h85{height:289.280000pt;}
.h45{height:290.244267pt;}
.h61{height:291.381467pt;}
.h2a{height:295.822933pt;}
.h1b{height:298.536960pt;}
.h16{height:305.920000pt;}
.h6b{height:308.083200pt;}
.h2{height:308.565333pt;}
.h19{height:309.639779pt;}
.hba{height:310.976000pt;}
.hb8{height:315.122347pt;}
.hd1{height:320.136533pt;}
.h57{height:325.440000pt;}
.ha{height:327.561387pt;}
.h98{height:335.854080pt;}
.hcb{height:344.146773pt;}
.h95{height:344.709333pt;}
.h9b{height:348.837333pt;}
.h71{height:350.543467pt;}
.hd4{height:354.850133pt;}
.hde{height:364.878507pt;}
.hcc{height:375.786667pt;}
.hcd{height:385.706667pt;}
.h96{height:389.756587pt;}
.h9c{height:414.634667pt;}
.h18{height:439.721333pt;}
.h8d{height:531.537933pt;}
.h73{height:713.502400pt;}
.h34{height:718.931733pt;}
.h7{height:763.623733pt;}
.hbc{height:800.098933pt;}
.h0{height:1024.000000pt;}
.w39{width:18.735707pt;}
.w3d{width:20.661347pt;}
.w27{width:22.358253pt;}
.w6{width:22.767333pt;}
.w36{width:23.330347pt;}
.w15{width:27.017360pt;}
.w14{width:36.093227pt;}
.we{width:43.242040pt;}
.wb{width:45.732240pt;}
.w10{width:50.730907pt;}
.w13{width:52.317907pt;}
.wc{width:53.221107pt;}
.w12{width:54.808107pt;}
.w1b{width:59.071787pt;}
.w32{width:61.266933pt;}
.w11{width:61.956907pt;}
.w17{width:65.590720pt;}
.w18{width:67.665893pt;}
.w1a{width:69.445787pt;}
.w44{width:70.352987pt;}
.wa{width:71.028453pt;}
.wd{width:71.032773pt;}
.w1c{width:71.565653pt;}
.w16{width:72.620387pt;}
.wf{width:80.671773pt;}
.w24{width:112.540173pt;}
.w42{width:118.191293pt;}
.w3b{width:128.721013pt;}
.w43{width:144.778000pt;}
.w40{width:165.685333pt;}
.w8{width:208.621733pt;}
.w31{width:229.407600pt;}
.w37{width:232.463333pt;}
.w21{width:263.699333pt;}
.w7{width:266.066000pt;}
.w1f{width:272.810667pt;}
.w20{width:291.645333pt;}
.w23{width:369.636133pt;}
.w2e{width:370.783867pt;}
.w1d{width:399.152533pt;}
.w1e{width:401.488000pt;}
.w3{width:434.676800pt;}
.w33{width:454.864933pt;}
.w2{width:459.783867pt;}
.w3a{width:462.610667pt;}
.w29{width:483.815600pt;}
.w41{width:492.011867pt;}
.w3f{width:523.877200pt;}
.w22{width:556.951333pt;}
.w34{width:635.526800pt;}
.w35{width:672.852400pt;}
.w30{width:673.197200pt;}
.w28{width:696.190133pt;}
.w26{width:830.262000pt;}
.w2b{width:832.458400pt;}
.w19{width:958.575867pt;}
.w2c{width:997.901867pt;}
.w2a{width:1000.121200pt;}
.w25{width:1003.053200pt;}
.w5{width:1052.966133pt;}
.w3e{width:1151.573467pt;}
.w2d{width:1194.666667pt;}
.w4{width:1195.980667pt;}
.w1{width:1259.941600pt;}
.w9{width:1261.333333pt;}
.w3c{width:1302.318667pt;}
.w2f{width:1306.138267pt;}
.w38{width:1306.720667pt;}
.w0{width:1365.333333pt;}
.xc3{left:-473.979547pt;}
.xc5{left:-455.511547pt;}
.xc6{left:-427.705147pt;}
.xc7{left:-399.898880pt;}
.xc8{left:-372.092613pt;}
.x27{left:-1.855400pt;}
.x0{left:0.000000pt;}
.xf7{left:3.088933pt;}
.xa{left:4.573867pt;}
.x56{left:5.624933pt;}
.x46{left:6.830933pt;}
.x1c{left:8.000000pt;}
.x25{left:9.674275pt;}
.x109{left:11.267600pt;}
.x24{left:12.260392pt;}
.xcc{left:13.398867pt;}
.x2b{left:14.819600pt;}
.xba{left:18.051600pt;}
.x9f{left:19.125587pt;}
.xa1{left:20.293333pt;}
.x44{left:22.666667pt;}
.x40{left:23.589360pt;}
.x6d{left:25.274953pt;}
.xa5{left:26.974693pt;}
.xa6{left:28.809733pt;}
.x1b{left:30.666667pt;}
.xd1{left:32.741867pt;}
.x39{left:34.223733pt;}
.x18{left:35.271093pt;}
.xd4{left:37.995467pt;}
.x7{left:39.093267pt;}
.xdd{left:40.325867pt;}
.xd9{left:41.983733pt;}
.xa7{left:44.121733pt;}
.x9b{left:45.266533pt;}
.x2d{left:48.372200pt;}
.x37{left:50.249467pt;}
.x3f{left:52.000000pt;}
.x1{left:53.460520pt;}
.x38{left:55.959733pt;}
.x2c{left:57.333333pt;}
.x1d{left:58.826667pt;}
.x3b{left:60.160667pt;}
.xb4{left:61.493333pt;}
.x43{left:62.666667pt;}
.x36{left:66.549067pt;}
.x22{left:68.255147pt;}
.x3d{left:72.570400pt;}
.x3c{left:73.741867pt;}
.x50{left:76.011693pt;}
.x1a{left:77.437653pt;}
.x3a{left:78.781067pt;}
.x34{left:79.855733pt;}
.x35{left:81.349067pt;}
.x33{left:83.132133pt;}
.x1e{left:84.676320pt;}
.x19{left:86.094627pt;}
.x3e{left:89.026400pt;}
.x81{left:90.088640pt;}
.xb7{left:91.012080pt;}
.x101{left:93.648200pt;}
.xd2{left:99.374400pt;}
.xa4{left:102.541333pt;}
.xad{left:105.888320pt;}
.xfc{left:106.879960pt;}
.x8{left:108.911493pt;}
.x26{left:111.086067pt;}
.x59{left:112.333113pt;}
.xf2{left:114.277120pt;}
.x76{left:115.187000pt;}
.x41{left:116.522067pt;}
.xd7{left:119.890267pt;}
.xa2{left:121.912000pt;}
.x77{left:123.566447pt;}
.x83{left:129.183113pt;}
.xaf{left:136.120000pt;}
.xce{left:137.946667pt;}
.x45{left:144.274133pt;}
.x104{left:145.704533pt;}
.xf6{left:149.075333pt;}
.xd3{left:154.093200pt;}
.x69{left:157.266313pt;}
.xb8{left:159.377120pt;}
.xc2{left:161.002933pt;}
.xfd{left:165.904267pt;}
.xb1{left:167.743733pt;}
.x78{left:171.370313pt;}
.xfa{left:173.468267pt;}
.x10e{left:175.106133pt;}
.xc4{left:176.425387pt;}
.x85{left:177.860713pt;}
.x48{left:180.246000pt;}
.xae{left:182.088133pt;}
.x102{left:184.786800pt;}
.x5b{left:186.761247pt;}
.x107{left:188.107333pt;}
.xde{left:190.109067pt;}
.x8a{left:191.902447pt;}
.xca{left:193.214267pt;}
.x72{left:205.007913pt;}
.x10f{left:210.058667pt;}
.x93{left:214.368980pt;}
.xe1{left:215.793333pt;}
.x6e{left:221.857913pt;}
.x89{left:242.452313pt;}
.x75{left:244.535200pt;}
.x79{left:248.068980pt;}
.x10d{left:257.240000pt;}
.xec{left:261.387600pt;}
.x2e{left:265.955067pt;}
.x4f{left:267.512533pt;}
.x8f{left:278.960580pt;}
.x3{left:283.447333pt;}
.x90{left:285.513380pt;}
.x108{left:290.642533pt;}
.x5a{left:291.641913pt;}
.x23{left:293.253333pt;}
.xef{left:296.567733pt;}
.xf0{left:298.379733pt;}
.x1f{left:301.809147pt;}
.xe7{left:303.635733pt;}
.xa9{left:305.354667pt;}
.x91{left:307.043913pt;}
.xf4{left:309.178400pt;}
.x12{left:311.396667pt;}
.x47{left:312.427600pt;}
.xeb{left:315.011067pt;}
.x5c{left:333.025780pt;}
.xbc{left:336.957867pt;}
.x92{left:338.871513pt;}
.xd6{left:345.192320pt;}
.xee{left:352.071600pt;}
.xe2{left:354.941333pt;}
.xe6{left:362.334133pt;}
.x58{left:370.480933pt;}
.x7b{left:372.571513pt;}
.x7c{left:373.777247pt;}
.x21{left:375.506347pt;}
.xf5{left:382.397200pt;}
.x63{left:383.804847pt;}
.x51{left:389.658400pt;}
.x70{left:395.038180pt;}
.x88{left:396.910313pt;}
.x8b{left:404.399247pt;}
.x2a{left:407.016133pt;}
.xa8{left:412.013200pt;}
.xc{left:413.970533pt;}
.xed{left:417.437333pt;}
.xfb{left:429.136400pt;}
.x7a{left:430.610313pt;}
.x7d{left:439.035247pt;}
.x57{left:441.592800pt;}
.x6{left:444.228667pt;}
.x49{left:445.810267pt;}
.x5d{left:453.076847pt;}
.xe0{left:455.150133pt;}
.x80{left:467.118580pt;}
.xdf{left:468.099733pt;}
.x5e{left:469.926847pt;}
.x2f{left:474.576800pt;}
.xa0{left:479.552267pt;}
.xb3{left:492.140400pt;}
.x65{left:495.755647pt;}
.x62{left:498.985513pt;}
.x64{left:500.361647pt;}
.xf1{left:501.490667pt;}
.xc1{left:504.197200pt;}
.x5{left:505.234400pt;}
.xcd{left:507.701867pt;}
.x74{left:515.796180pt;}
.x8c{left:517.668447pt;}
.xb2{left:522.428400pt;}
.xbb{left:523.376533pt;}
.x6b{left:526.093380pt;}
.x9{left:534.149867pt;}
.xcf{left:539.251733pt;}
.x52{left:545.676000pt;}
.x20{left:550.653280pt;}
.x82{left:553.240580pt;}
.x100{left:554.274000pt;}
.x4a{left:555.699733pt;}
.xea{left:563.044267pt;}
.x6f{left:567.282180pt;}
.x11{left:573.317867pt;}
.x2{left:579.113867pt;}
.x94{left:583.196047pt;}
.x73{left:585.813113pt;}
.xf{left:586.923733pt;}
.xd0{left:593.970400pt;}
.x4d{left:600.514800pt;}
.xf3{left:607.483293pt;}
.x68{left:614.550847pt;}
.x60{left:621.506047pt;}
.x84{left:625.320980pt;}
.x86{left:637.016400pt;}
.x61{left:640.298713pt;}
.x5f{left:650.595913pt;}
.x6c{left:661.829247pt;}
.x4e{left:662.845067pt;}
.x13{left:668.051733pt;}
.xe8{left:672.450533pt;}
.xb5{left:674.824133pt;}
.x15{left:676.206400pt;}
.x30{left:683.198533pt;}
.x10a{left:696.242667pt;}
.x7f{left:704.890313pt;}
.x66{left:709.320713pt;}
.x87{left:715.903780pt;}
.x97{left:719.747600pt;}
.xdc{left:724.331600pt;}
.x4c{left:728.144267pt;}
.x8d{left:743.270847pt;}
.x55{left:746.462267pt;}
.x10c{left:767.330267pt;}
.x53{left:775.086800pt;}
.x6a{left:790.076313pt;}
.x67{left:809.734580pt;}
.x29{left:811.014933pt;}
.x103{left:831.033867pt;}
.xe9{left:832.377600pt;}
.x8e{left:836.881780pt;}
.xda{left:840.453067pt;}
.xc9{left:842.162587pt;}
.xb9{left:844.609733pt;}
.x54{left:846.382533pt;}
.x71{left:847.497200pt;}
.xb0{left:855.837200pt;}
.x96{left:868.064533pt;}
.x4b{left:869.389333pt;}
.x95{left:872.453913pt;}
.xcb{left:887.609333pt;}
.x31{left:891.820267pt;}
.xac{left:904.551733pt;}
.xdb{left:906.980533pt;}
.xa3{left:915.226400pt;}
.xb6{left:919.975333pt;}
.x106{left:930.220667pt;}
.xe3{left:931.357867pt;}
.x7e{left:935.173247pt;}
.xd8{left:940.179867pt;}
.x105{left:941.340667pt;}
.xc0{left:947.650400pt;}
.xfe{left:949.843333pt;}
.xd5{left:950.998400pt;}
.xf9{left:952.234000pt;}
.xab{left:958.413067pt;}
.x28{left:967.932267pt;}
.x42{left:973.368133pt;}
.xe{left:987.114533pt;}
.xbf{left:996.733600pt;}
.x99{left:1013.521067pt;}
.xbe{left:1039.400267pt;}
.x9c{left:1047.626667pt;}
.x98{left:1053.333333pt;}
.x17{left:1056.001733pt;}
.x10{left:1059.317867pt;}
.xbd{left:1064.778933pt;}
.xe5{left:1071.745733pt;}
.xaa{left:1074.204133pt;}
.x16{left:1085.430667pt;}
.x14{left:1089.508000pt;}
.x4{left:1091.266000pt;}
.x32{left:1100.442000pt;}
.xe4{left:1115.528400pt;}
.xb{left:1118.542667pt;}
.x9d{left:1126.700133pt;}
.x10b{left:1128.429333pt;}
.xff{left:1131.797333pt;}
.x9a{left:1134.042533pt;}
.x9e{left:1165.526800pt;}
.xd{left:1185.447733pt;}
.xf8{left:1236.612267pt;}
}




    .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; }
  