
    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_0a6f29c02780fca0be38947f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_b83aad588f657ea4b7ed9928.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_8f40883a70cab6b8e2bc125e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.717000;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_2f5da44496a76d85f0c33aa3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_7ece0e6f30d307189e171138.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_2b274fbc006f5233d208f7d3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911000;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_29249f4d12615ce15c121302.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_c103fd88fe8a4ea3718eca6e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.898000;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_1dd3a8c13ff6e788d8acc026.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.748000;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_72808d3700bf84fdf3dcd059.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.683000;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_95c9c33f70bcd81e839d4ed2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_e49db2b4df57eb0828ce0d85.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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_9f2c602bda1b3448e852afb9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.431000;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_9579c353d89797b040d4cd1c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.923000;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_6f8d38c6df80782d9952ef9c.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;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_d161d9921a9a089effe5d52c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.736000;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_e6b8560bd0289533768bea4b.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;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_fc21b6ebea27ec1d852843a5.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.898000;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_bbd35d7985f80536238b29f2.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;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_04adf421323629554ebc3a4b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.734000;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_712d69a084f4192436f8f610.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.685000;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_51d970f0d2df8098e736cb9b.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.736000;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_138bb9f258d207f3da68dfc1.woff2')format("woff");}.ff17{font-family:ff17;line-height:2.399000;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_d162d1db3faac7dfbdd1ee45.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.704000;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_34cc9de11e14f58583c8738a.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.000000;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_323f3da9a3e8890eea12795b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.683000;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.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);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m7{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-25.104000px;}
.v2{vertical-align:-22.854000px;}
.v9{vertical-align:-18.570000px;}
.vc{vertical-align:-17.304000px;}
.v3{vertical-align:-9.816000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:5.520000px;}
.v5{vertical-align:16.182000px;}
.v4{vertical-align:27.024000px;}
.vd{vertical-align:33.618000px;}
.v8{vertical-align:35.082000px;}
.v7{vertical-align:44.904000px;}
.va{vertical-align:85.704000px;}
.vb{vertical-align:130.602000px;}
.ls1{letter-spacing:0.000000px;}
.ls2f{letter-spacing:0.000810px;}
.ls4{letter-spacing:0.001590px;}
.ls2c{letter-spacing:0.001593px;}
.ls3{letter-spacing:0.002137px;}
.ls9{letter-spacing:0.002147px;}
.ls1a{letter-spacing:0.002613px;}
.ls3a{letter-spacing:0.002690px;}
.ls16{letter-spacing:0.002700px;}
.ls20{letter-spacing:0.003181px;}
.ls1f{letter-spacing:0.003239px;}
.ls38{letter-spacing:0.011915px;}
.ls42{letter-spacing:0.012888px;}
.lsc{letter-spacing:0.016745px;}
.ls10{letter-spacing:0.020540px;}
.ls28{letter-spacing:0.020719px;}
.ls46{letter-spacing:0.024974px;}
.ls4b{letter-spacing:0.027601px;}
.lsf{letter-spacing:0.031228px;}
.ls11{letter-spacing:0.327273px;}
.ls12{letter-spacing:1.813576px;}
.ls4e{letter-spacing:1.819576px;}
.ls40{letter-spacing:2.487275px;}
.ls50{letter-spacing:2.984915px;}
.ls22{letter-spacing:2.988103px;}
.ls8{letter-spacing:2.989739px;}
.ls29{letter-spacing:2.992362px;}
.ls7{letter-spacing:5.808810px;}
.lse{letter-spacing:5.814810px;}
.ls33{letter-spacing:5.976248px;}
.ls31{letter-spacing:5.982248px;}
.ls45{letter-spacing:6.395989px;}
.ls4f{letter-spacing:6.715739px;}
.ls13{letter-spacing:6.721739px;}
.ls41{letter-spacing:7.003642px;}
.ls21{letter-spacing:7.043428px;}
.ls1c{letter-spacing:7.069097px;}
.ls3b{letter-spacing:7.173181px;}
.ls1b{letter-spacing:8.301329px;}
.ls23{letter-spacing:10.905181px;}
.ls2d{letter-spacing:10.930918px;}
.ls37{letter-spacing:14.530921px;}
.ls2b{letter-spacing:16.716810px;}
.ls30{letter-spacing:16.884532px;}
.ls32{letter-spacing:16.890532px;}
.ls14{letter-spacing:18.130924px;}
.lsd{letter-spacing:18.196379px;}
.ls36{letter-spacing:20.358810px;}
.ls17{letter-spacing:21.169739px;}
.ls2{letter-spacing:21.419468px;}
.ls4d{letter-spacing:21.796382px;}
.ls1e{letter-spacing:21.861836px;}
.ls26{letter-spacing:23.170928px;}
.ls6{letter-spacing:23.994810px;}
.ls3f{letter-spacing:24.805739px;}
.ls5{letter-spacing:27.630810px;}
.lsb{letter-spacing:29.650934px;}
.ls3e{letter-spacing:35.869121px;}
.ls4a{letter-spacing:36.327303px;}
.ls35{letter-spacing:42.174810px;}
.ls3c{letter-spacing:102.268326px;}
.ls2a{letter-spacing:142.385479px;}
.ls47{letter-spacing:159.780179px;}
.ls49{letter-spacing:195.346661px;}
.ls27{letter-spacing:256.975304px;}
.ls0{letter-spacing:349.381819px;}
.ls48{letter-spacing:523.723708px;}
.ls4c{letter-spacing:536.465902px;}
.ls43{letter-spacing:601.658683px;}
.ls44{letter-spacing:644.302362px;}
.ls3d{letter-spacing:658.931458px;}
.ls24{letter-spacing:701.018766px;}
.ls34{letter-spacing:734.007884px;}
.ls1d{letter-spacing:870.480725px;}
.ls2e{letter-spacing:909.033485px;}
.ls19{letter-spacing:925.135316px;}
.ls39{letter-spacing:972.458992px;}
.ls18{letter-spacing:1002.764472px;}
.ls25{letter-spacing:1044.262688px;}
.ls51{letter-spacing:1050.153602px;}
.lsa{letter-spacing:1050.264810px;}
.ls15{letter-spacing:1074.044531px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3e{word-spacing:-65.454600px;}
.ws5d{word-spacing:-54.523682px;}
.ws3f{word-spacing:-47.258221px;}
.ws3d{word-spacing:-42.637126px;}
.ws68{word-spacing:-38.937826px;}
.ws50{word-spacing:-36.379667px;}
.ws42{word-spacing:-32.727300px;}
.ws47{word-spacing:-31.706208px;}
.ws19{word-spacing:-29.887800px;}
.ws5f{word-spacing:-29.061842px;}
.ws1c{word-spacing:-27.646998px;}
.ws61{word-spacing:-18.183288px;}
.ws78{word-spacing:-17.214560px;}
.ws69{word-spacing:-16.605662px;}
.ws58{word-spacing:-16.429105px;}
.ws64{word-spacing:-16.232741px;}
.ws0{word-spacing:-16.139475px;}
.ws3b{word-spacing:-16.101832px;}
.ws4f{word-spacing:-14.989103px;}
.ws8{word-spacing:-14.939816px;}
.ws67{word-spacing:-14.596376px;}
.ws49{word-spacing:-14.465467px;}
.ws13{word-spacing:-14.346144px;}
.ws72{word-spacing:-14.138194px;}
.ws40{word-spacing:-14.111859px;}
.ws24{word-spacing:-13.810921px;}
.wsd{word-spacing:-13.756251px;}
.ws3{word-spacing:-13.449600px;}
.ws4a{word-spacing:-13.418193px;}
.ws6{word-spacing:-13.379662px;}
.ws4b{word-spacing:-13.352738px;}
.ws38{word-spacing:-13.156375px;}
.ws7{word-spacing:-12.960035px;}
.ws80{word-spacing:-12.829102px;}
.ws71{word-spacing:-12.763647px;}
.ws75{word-spacing:-12.632738px;}
.ws7b{word-spacing:-12.501829px;}
.ws25{word-spacing:-12.370919px;}
.ws28{word-spacing:-12.305465px;}
.ws43{word-spacing:-12.240010px;}
.ws76{word-spacing:-12.174556px;}
.ws48{word-spacing:-12.043646px;}
.ws3c{word-spacing:-11.476915px;}
.ws39{word-spacing:-11.454555px;}
.ws7d{word-spacing:-11.417140px;}
.ws63{word-spacing:-11.389100px;}
.ws6b{word-spacing:-11.323646px;}
.ws5c{word-spacing:-11.258191px;}
.ws46{word-spacing:-11.237813px;}
.ws36{word-spacing:-11.192737px;}
.ws2b{word-spacing:-11.127282px;}
.ws87{word-spacing:-11.118262px;}
.ws31{word-spacing:-11.061827px;}
.ws60{word-spacing:-10.996373px;}
.ws81{word-spacing:-10.938935px;}
.ws1e{word-spacing:-10.930918px;}
.ws1f{word-spacing:-10.865464px;}
.ws2a{word-spacing:-10.800009px;}
.ws2e{word-spacing:-10.734554px;}
.ws26{word-spacing:-10.669100px;}
.ws83{word-spacing:-10.646034px;}
.ws3a{word-spacing:-10.603645px;}
.ws44{word-spacing:-10.538191px;}
.ws45{word-spacing:-10.472736px;}
.ws35{word-spacing:-10.407281px;}
.ws18{word-spacing:-10.341179px;}
.ws1b{word-spacing:-10.281403px;}
.ws15{word-spacing:-10.221628px;}
.ws88{word-spacing:-10.167830px;}
.ws14{word-spacing:-10.161852px;}
.ws27{word-spacing:-10.145463px;}
.ws82{word-spacing:-9.988503px;}
.ws4{word-spacing:-9.982525px;}
.ws7f{word-spacing:-9.949099px;}
.wsb{word-spacing:-9.936564px;}
.ws56{word-spacing:-9.922750px;}
.ws17{word-spacing:-9.803198px;}
.ws74{word-spacing:-9.752735px;}
.ws93{word-spacing:-9.743423px;}
.ws77{word-spacing:-9.687281px;}
.ws16{word-spacing:-9.683647px;}
.ws30{word-spacing:-9.621826px;}
.wse{word-spacing:-9.570735px;}
.ws8d{word-spacing:-9.564096px;}
.ws51{word-spacing:-9.556372px;}
.wsc{word-spacing:-9.516937px;}
.ws8b{word-spacing:-9.510298px;}
.ws37{word-spacing:-9.497462px;}
.ws9{word-spacing:-9.247945px;}
.ws5{word-spacing:-9.194147px;}
.ws84{word-spacing:-9.151644px;}
.ws91{word-spacing:-9.032093px;}
.ws8c{word-spacing:-8.972318px;}
.ws92{word-spacing:-8.912542px;}
.ws2f{word-spacing:-8.908371px;}
.ws55{word-spacing:-8.901826px;}
.ws8e{word-spacing:-8.733215px;}
.wsa{word-spacing:-8.656163px;}
.ws6f{word-spacing:-8.574553px;}
.ws2d{word-spacing:-8.378189px;}
.ws85{word-spacing:-8.368584px;}
.ws1a{word-spacing:-8.189257px;}
.ws57{word-spacing:-8.116370px;}
.ws34{word-spacing:-8.050916px;}
.ws29{word-spacing:-7.985461px;}
.ws86{word-spacing:-7.776806px;}
.ws4e{word-spacing:-7.418817px;}
.ws6a{word-spacing:-7.396370px;}
.ws4c{word-spacing:-7.252370px;}
.ws73{word-spacing:-7.134551px;}
.ws6e{word-spacing:-6.545460px;}
.ws7c{word-spacing:-6.283642px;}
.ws90{word-spacing:-6.162864px;}
.ws23{word-spacing:-6.021823px;}
.ws1d{word-spacing:-5.825459px;}
.ws8f{word-spacing:-5.499355px;}
.ws5b{word-spacing:-5.498186px;}
.ws59{word-spacing:-5.432732px;}
.ws70{word-spacing:-5.367277px;}
.ws7e{word-spacing:-5.105459px;}
.ws12{word-spacing:-5.027128px;}
.ws7a{word-spacing:-4.581822px;}
.ws5a{word-spacing:-3.992731px;}
.ws54{word-spacing:-3.861821px;}
.ws53{word-spacing:-3.665458px;}
.ws65{word-spacing:-3.652367px;}
.ws32{word-spacing:-3.272730px;}
.ws2c{word-spacing:-3.207275px;}
.ws79{word-spacing:-3.010912px;}
.ws33{word-spacing:-2.814548px;}
.ws66{word-spacing:-2.618184px;}
.ws8a{word-spacing:-0.783060px;}
.ws89{word-spacing:-0.777083px;}
.ws2{word-spacing:-0.167372px;}
.ws62{word-spacing:-0.059776px;}
.ws5e{word-spacing:-0.052364px;}
.wsf{word-spacing:0.000000px;}
.ws41{word-spacing:0.013091px;}
.ws10{word-spacing:2.683639px;}
.ws52{word-spacing:3.416730px;}
.ws6c{word-spacing:5.939985px;}
.ws4d{word-spacing:6.264444px;}
.ws11{word-spacing:11.429123px;}
.ws6d{word-spacing:18.209470px;}
.ws1{word-spacing:23.312640px;}
.ws22{word-spacing:34.370970px;}
.ws20{word-spacing:2252.023881px;}
.ws21{word-spacing:2278.218812px;}
._34{margin-left:-18.199140px;}
._3{margin-left:-10.759650px;}
._1{margin-left:-8.091257px;}
._4{margin-left:-5.881958px;}
._9{margin-left:-4.680461px;}
._2{margin-left:-2.668393px;}
._6{margin-left:-1.560154px;}
._8{width:1.506355px;}
._0{width:2.668393px;}
._3f{width:3.959662px;}
._33{width:7.174310px;}
._39{width:10.911543px;}
._a{width:14.794560px;}
._7{width:17.441586px;}
._3a{width:18.573861px;}
._49{width:19.954697px;}
._5{width:20.959727px;}
._18{width:22.842563px;}
._38{width:24.077602px;}
._c{width:26.247487px;}
._b{width:27.450214px;}
._3c{width:28.451237px;}
._22{width:29.509075px;}
._2f{width:31.136677px;}
._2e{width:32.780199px;}
._41{width:34.074945px;}
._35{width:35.738212px;}
._40{width:37.046404px;}
._31{width:38.805622px;}
._48{width:44.559337px;}
._3b{width:55.165672px;}
._30{width:63.740228px;}
._32{width:69.148404px;}
._45{width:86.354233px;}
._37{width:147.514216px;}
._46{width:158.960078px;}
._36{width:186.834595px;}
._43{width:315.543427px;}
._42{width:324.007702px;}
._3d{width:377.760283px;}
._47{width:386.009316px;}
._44{width:421.525566px;}
._3e{width:536.584052px;}
._19{width:700.298765px;}
._12{width:823.118858px;}
._23{width:1005.138776px;}
._28{width:1109.080489px;}
._21{width:1176.131102px;}
._20{width:1208.411876px;}
._16{width:1223.542645px;}
._1b{width:1285.430426px;}
._1a{width:1312.742212px;}
._27{width:1330.942889px;}
._2c{width:1338.746330px;}
._14{width:1393.158843px;}
._f{width:1422.261911px;}
._2d{width:1462.813273px;}
._1d{width:1471.670277px;}
._1c{width:1507.523253px;}
._2a{width:1525.026533px;}
._15{width:1568.307269px;}
._10{width:1580.073851px;}
._13{width:1656.362525px;}
._24{width:1667.685290px;}
._e{width:1719.840950px;}
._26{width:1812.828610px;}
._1f{width:1851.054097px;}
._11{width:1878.743191px;}
._29{width:1903.720846px;}
._1e{width:1918.539588px;}
._25{width:1930.190507px;}
._17{width:1962.917807px;}
._2b{width:2014.725580px;}
._d{width:2286.767644px;}
.fc2{color:rgb(236,0,140);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.865600px;}
.fs8{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs5{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs6{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.fs3{font-size:117.160200px;}
.fs2{font-size:167.372400px;}
.y0{bottom:0.000000px;}
.y75{bottom:156.268500px;}
.y3d{bottom:160.314000px;}
.y21{bottom:173.425500px;}
.y8f{bottom:188.475000px;}
.y60{bottom:190.800000px;}
.y3c{bottom:191.493000px;}
.y74{bottom:199.738500px;}
.y8e{bottom:210.769500px;}
.yf1{bottom:215.128500px;}
.y5f{bottom:221.286000px;}
.y11{bottom:222.673500px;}
.yb9{bottom:234.109500px;}
.y8d{bottom:239.085000px;}
.y10{bottom:247.332000px;}
.y73{bottom:251.484000px;}
.y5e{bottom:251.770500px;}
.y8c{bottom:269.571000px;}
.yf0{bottom:269.944500px;}
.y3b{bottom:270.910500px;}
.yf{bottom:274.977000px;}
.yb8{bottom:278.832000px;}
.y5d{bottom:282.256500px;}
.y8b{bottom:297.732000px;}
.ye{bottom:299.635500px;}
.y3a{bottom:302.089500px;}
.ycc{bottom:303.516000px;}
.ya3{bottom:305.199000px;}
.y5c{bottom:312.742500px;}
.y8a{bottom:320.026500px;}
.yb7{bottom:322.143000px;}
.yef{bottom:324.759000px;}
.yd{bottom:327.282000px;}
.y72{bottom:329.854500px;}
.ya2{bottom:332.097000px;}
.y39{bottom:333.270000px;}
.y5b{bottom:343.228500px;}
.y89{bottom:348.343500px;}
.yc{bottom:351.939000px;}
.yb6{bottom:352.627500px;}
.y71{bottom:356.754000px;}
.ycb{bottom:363.769500px;}
.y38{bottom:364.449000px;}
.y5a{bottom:373.714500px;}
.yee{bottom:379.575000px;}
.yb{bottom:379.585500px;}
.y88{bottom:387.729000px;}
.yca{bottom:394.255500px;}
.y37{bottom:395.629500px;}
.y105{bottom:395.785500px;}
.ydc{bottom:396.486000px;}
.ya1{bottom:402.624000px;}
.ya{bottom:404.242500px;}
.yb5{bottom:404.373000px;}
.y59{bottom:406.093500px;}
.y70{bottom:407.080500px;}
.y12c{bottom:407.637000px;}
.yc9{bottom:424.741500px;}
.y36{bottom:426.808500px;}
.y87{bottom:427.114500px;}
.ya0{bottom:433.110000px;}
.yed{bottom:434.389500px;}
.y12b{bottom:434.536500px;}
.y58{bottom:436.579500px;}
.yc8{bottom:455.227500px;}
.y35{bottom:457.987500px;}
.y104{bottom:461.340000px;}
.y12a{bottom:461.434500px;}
.yec{bottom:464.875500px;}
.yb4{bottom:464.955000px;}
.ydb{bottom:466.039500px;}
.y57{bottom:467.065500px;}
.y86{bottom:478.860000px;}
.y129{bottom:488.334000px;}
.y9{bottom:491.260500px;}
.y103{bottom:491.826000px;}
.y9f{bottom:494.233500px;}
.yeb{bottom:495.361500px;}
.yb3{bottom:495.441000px;}
.yda{bottom:496.524000px;}
.y56{bottom:497.551500px;}
.y6f{bottom:500.583000px;}
.y34{bottom:506.224500px;}
.yc7{bottom:506.973000px;}
.y128{bottom:515.233500px;}
.y102{bottom:522.312000px;}
.y55{bottom:528.036000px;}
.yb2{bottom:529.021500px;}
.y9e{bottom:529.633500px;}
.y33{bottom:537.405000px;}
.y85{bottom:538.590000px;}
.yb1{bottom:540.246000px;}
.y127{bottom:542.133000px;}
.y8{bottom:543.672000px;}
.yd9{bottom:547.983000px;}
.yea{bottom:548.983500px;}
.y101{bottom:553.609500px;}
.y9d{bottom:556.533000px;}
.y54{bottom:560.416500px;}
.y84{bottom:566.751000px;}
.y32{bottom:568.584000px;}
.y126{bottom:569.031000px;}
.y7{bottom:570.570000px;}
.y9c{bottom:583.432500px;}
.y100{bottom:584.095500px;}
.yb0{bottom:585.049500px;}
.yc6{bottom:588.327000px;}
.y83{bottom:589.045500px;}
.y53{bottom:590.902500px;}
.y6e{bottom:593.835000px;}
.y125{bottom:595.930500px;}
.y6{bottom:597.469500px;}
.yd8{bottom:599.442000px;}
.y31{bottom:599.764500px;}
.y9b{bottom:610.330500px;}
.yff{bottom:614.581500px;}
.yaf{bottom:615.535500px;}
.y82{bottom:617.362500px;}
.y52{bottom:621.388500px;}
.y124{bottom:622.830000px;}
.yc5{bottom:623.727000px;}
.y6d{bottom:628.812000px;}
.yd7{bottom:629.928000px;}
.y30{bottom:630.943500px;}
.y9a{bottom:637.828500px;}
.yfe{bottom:645.066000px;}
.y81{bottom:647.847000px;}
.y123{bottom:649.729500px;}
.ye9{bottom:650.167500px;}
.yc4{bottom:650.626500px;}
.y51{bottom:651.874500px;}
.y6c{bottom:659.298000px;}
.yae{bottom:660.339000px;}
.yd6{bottom:660.414000px;}
.y2f{bottom:662.124000px;}
.yfd{bottom:675.552000px;}
.y80{bottom:676.008000px;}
.y122{bottom:676.627500px;}
.yc3{bottom:677.526000px;}
.y50{bottom:684.253500px;}
.ye8{bottom:685.567500px;}
.y6b{bottom:689.784000px;}
.y2e{bottom:693.303000px;}
.y7f{bottom:698.304000px;}
.y121{bottom:703.527000px;}
.yc2{bottom:704.425500px;}
.yad{bottom:705.144000px;}
.y99{bottom:709.069500px;}
.y114{bottom:711.535500px;}
.ye7{bottom:712.467000px;}
.yd5{bottom:713.671500px;}
.y4f{bottom:714.739500px;}
.y6a{bottom:720.268500px;}
.y7e{bottom:726.619500px;}
.yfc{bottom:728.110500px;}
.y120{bottom:730.426500px;}
.yc1{bottom:731.323500px;}
.yac{bottom:735.630000px;}
.ye6{bottom:739.366500px;}
.y5{bottom:741.493500px;}
.y2d{bottom:741.540000px;}
.y113{bottom:742.020000px;}
.y4e{bottom:747.120000px;}
.y20{bottom:756.250500px;}
.y7d{bottom:757.105500px;}
.y11f{bottom:757.326000px;}
.yc0{bottom:758.821500px;}
.ye5{bottom:766.264500px;}
.y69{bottom:772.014000px;}
.y112{bottom:772.506000px;}
.y2c{bottom:772.719000px;}
.y4d{bottom:777.606000px;}
.y98{bottom:779.595000px;}
.yd4{bottom:783.225000px;}
.y11e{bottom:784.224000px;}
.y10c{bottom:785.082000px;}
.y1f{bottom:786.736500px;}
.yab{bottom:787.375500px;}
.ye4{bottom:793.164000px;}
.yfb{bottom:793.665000px;}
.y2b{bottom:803.899500px;}
.y4c{bottom:808.090500px;}
.y7c{bottom:808.851000px;}
.y97{bottom:810.081000px;}
.y11d{bottom:811.123500px;}
.yd3{bottom:813.711000px;}
.y10b{bottom:815.568000px;}
.ybf{bottom:820.527000px;}
.ye3{bottom:820.660500px;}
.yfa{bottom:824.151000px;}
.y111{bottom:824.251500px;}
.y1e{bottom:827.113500px;}
.y68{bottom:831.751500px;}
.y2a{bottom:835.078500px;}
.y11c{bottom:838.023000px;}
.y4b{bottom:838.576500px;}
.y96{bottom:840.567000px;}
.yaa{bottom:847.957500px;}
.y1d{bottom:854.013000px;}
.yf9{bottom:854.635500px;}
.y10a{bottom:860.997000px;}
.y67{bottom:862.236000px;}
.y11b{bottom:864.922500px;}
.y29{bottom:866.259000px;}
.yd2{bottom:866.698500px;}
.y7b{bottom:868.581000px;}
.y4a{bottom:869.062500px;}
.y95{bottom:871.053000px;}
.ybe{bottom:880.779000px;}
.y1c{bottom:880.912500px;}
.yf8{bottom:885.121500px;}
.y110{bottom:885.166500px;}
.y11a{bottom:891.820500px;}
.ye2{bottom:892.683000px;}
.ya9{bottom:892.761000px;}
.y28{bottom:897.438000px;}
.y7a{bottom:899.067000px;}
.y66{bottom:900.166500px;}
.y49{bottom:901.443000px;}
.y4{bottom:902.547000px;}
.y109{bottom:906.426000px;}
.y1b{bottom:907.810500px;}
.ybd{bottom:911.265000px;}
.y10f{bottom:915.652500px;}
.yf7{bottom:916.419000px;}
.y119{bottom:918.720000px;}
.yd1{bottom:919.686000px;}
.y42{bottom:922.008000px;}
.y94{bottom:924.480000px;}
.y79{bottom:929.551500px;}
.y65{bottom:930.652500px;}
.y48{bottom:931.927500px;}
.y3{bottom:933.928500px;}
.y1a{bottom:934.710000px;}
.ya8{bottom:937.566000px;}
.ybc{bottom:941.751000px;}
.y118{bottom:945.619500px;}
.y27{bottom:945.675000px;}
.yf6{bottom:946.905000px;}
.y108{bottom:951.856500px;}
.y10e{bottom:958.531500px;}
.y78{bottom:960.037500px;}
.y19{bottom:961.609500px;}
.y47{bottom:962.413500px;}
.y10d{bottom:962.577000px;}
.ye1{bottom:964.326000px;}
.y41{bottom:968.857500px;}
.y64{bottom:970.075500px;}
.ybb{bottom:972.237000px;}
.y117{bottom:972.519000px;}
.yd0{bottom:972.673500px;}
.y26{bottom:976.855500px;}
.yf5{bottom:977.391000px;}
.ya7{bottom:982.369500px;}
.y18{bottom:988.509000px;}
.y46{bottom:994.794000px;}
.ye0{bottom:994.810500px;}
.y93{bottom:995.005500px;}
.y107{bottom:997.285500px;}
.y116{bottom:999.417000px;}
.y2{bottom:999.790500px;}
.yf4{bottom:1007.877000px;}
.y25{bottom:1008.034500px;}
.y63{bottom:1009.500000px;}
.y77{bottom:1011.783000px;}
.yba{bottom:1014.948000px;}
.y40{bottom:1015.707000px;}
.y45{bottom:1025.280000px;}
.ydf{bottom:1025.296500px;}
.y92{bottom:1025.491500px;}
.ycf{bottom:1025.662500px;}
.y115{bottom:1026.316500px;}
.ya6{bottom:1027.174500px;}
.y17{bottom:1027.213500px;}
.y16{bottom:1032.636000px;}
.yf3{bottom:1038.363000px;}
.y24{bottom:1039.213500px;}
.y62{bottom:1039.986000px;}
.y1{bottom:1040.139000px;}
.y106{bottom:1042.716000px;}
.y44{bottom:1055.764500px;}
.yde{bottom:1055.782500px;}
.y91{bottom:1055.977500px;}
.yce{bottom:1056.148500px;}
.ya5{bottom:1057.659000px;}
.y14{bottom:1059.342000px;}
.y3f{bottom:1062.555000px;}
.y15{bottom:1065.280500px;}
.y76{bottom:1071.513000px;}
.y43{bottom:1086.250500px;}
.ydd{bottom:1086.268500px;}
.y90{bottom:1086.463500px;}
.ycd{bottom:1086.633000px;}
.y23{bottom:1087.452000px;}
.ya4{bottom:1088.145000px;}
.yf2{bottom:1090.920000px;}
.y61{bottom:1091.731500px;}
.y13{bottom:1108.509000px;}
.y3e{bottom:1109.404500px;}
.y12{bottom:1139.890500px;}
.y22{bottom:1192.194000px;}
.hd{height:16.677504px;}
.hb{height:28.578632px;}
.ha{height:33.187496px;}
.h7{height:37.927872px;}
.h8{height:40.348800px;}
.hc{height:42.799330px;}
.h6{height:44.831700px;}
.h9{height:49.090950px;}
.h5{height:50.211840px;}
.h3{height:53.798400px;}
.he{height:60.211496px;}
.h2{height:60.254040px;}
.hf{height:65.272950px;}
.h14{height:93.370950px;}
.h11{height:93.988950px;}
.h10{height:93.994950px;}
.h4{height:118.812914px;}
.h13{height:132.993024px;}
.h12{height:138.268950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:106.215000px;}
.x14{left:108.000000px;}
.x15{left:110.739000px;}
.x19{left:114.363000px;}
.x7b{left:115.471500px;}
.x18{left:120.727500px;}
.xb{left:125.932500px;}
.x1d{left:130.416000px;}
.x1a{left:138.133500px;}
.x1b{left:139.270500px;}
.x79{left:144.004500px;}
.x58{left:153.772500px;}
.x37{left:154.936500px;}
.x13{left:158.809500px;}
.x4e{left:161.710500px;}
.x1{left:164.451000px;}
.x7a{left:169.542000px;}
.x38{left:171.093000px;}
.xd{left:172.627500px;}
.x12{left:173.754000px;}
.x59{left:176.326500px;}
.x33{left:183.447000px;}
.x24{left:185.163000px;}
.x2{left:186.421500px;}
.x4f{left:188.833500px;}
.x69{left:190.534500px;}
.x73{left:201.670500px;}
.x47{left:204.930000px;}
.x10{left:214.422000px;}
.x48{left:218.031000px;}
.x11{left:221.125500px;}
.x6b{left:228.057000px;}
.x71{left:231.412500px;}
.x66{left:234.681000px;}
.x77{left:239.170500px;}
.x6a{left:240.888000px;}
.x4b{left:247.581000px;}
.x74{left:254.629500px;}
.x43{left:259.294500px;}
.x22{left:263.949000px;}
.x46{left:265.893000px;}
.xc{left:269.161500px;}
.x68{left:270.412500px;}
.x44{left:272.574000px;}
.x3{left:274.819500px;}
.x2a{left:276.511500px;}
.x4d{left:277.735500px;}
.x6c{left:281.518500px;}
.x3a{left:288.469500px;}
.x2b{left:289.627500px;}
.x23{left:291.726000px;}
.x65{left:300.141000px;}
.x64{left:302.685000px;}
.x5e{left:304.191000px;}
.x76{left:309.096000px;}
.x42{left:311.491500px;}
.x29{left:313.420500px;}
.x5b{left:314.461500px;}
.x4a{left:319.519500px;}
.x32{left:322.984500px;}
.x3d{left:327.229500px;}
.x7{left:329.793000px;}
.x3c{left:331.065000px;}
.x57{left:333.234000px;}
.x72{left:349.179000px;}
.x7c{left:351.852000px;}
.x4{left:353.088000px;}
.x75{left:360.058500px;}
.x67{left:362.553000px;}
.x49{left:363.933000px;}
.x3b{left:367.794000px;}
.x4c{left:371.854500px;}
.x1c{left:373.006500px;}
.x5{left:375.504000px;}
.x56{left:376.981500px;}
.x6{left:381.384000px;}
.xe{left:382.602000px;}
.x39{left:387.093000px;}
.x8{left:392.640000px;}
.x2f{left:400.720500px;}
.x36{left:402.669000px;}
.x27{left:404.926500px;}
.x9{left:405.966000px;}
.x17{left:409.203000px;}
.x5d{left:410.730000px;}
.x30{left:412.318500px;}
.x41{left:416.869500px;}
.x78{left:424.521000px;}
.x5a{left:428.283000px;}
.x31{left:430.492500px;}
.x5f{left:446.782500px;}
.x60{left:470.872500px;}
.x6d{left:482.625000px;}
.x6e{left:507.582000px;}
.xf{left:511.759500px;}
.x5c{left:523.711500px;}
.x3e{left:524.715000px;}
.x50{left:529.072500px;}
.x2c{left:532.452000px;}
.x3f{left:539.665500px;}
.x34{left:543.003000px;}
.x40{left:546.676500px;}
.x51{left:568.092000px;}
.x2d{left:576.660000px;}
.x2e{left:589.797000px;}
.x25{left:603.934500px;}
.x35{left:607.996500px;}
.x52{left:613.902000px;}
.x53{left:639.505500px;}
.x26{left:642.955500px;}
.x45{left:657.693000px;}
.x54{left:664.858500px;}
.x55{left:685.027500px;}
.x61{left:747.753000px;}
.x6f{left:748.903500px;}
.x28{left:750.993000px;}
.x62{left:755.422500px;}
.x70{left:769.330500px;}
.x1e{left:775.842000px;}
.x1f{left:784.023000px;}
.x63{left:791.013000px;}
.x20{left:793.461000px;}
.x16{left:799.195500px;}
.x21{left:801.643500px;}
@media print{
.v1{vertical-align:-22.314667pt;}
.v2{vertical-align:-20.314667pt;}
.v9{vertical-align:-16.506667pt;}
.vc{vertical-align:-15.381333pt;}
.v3{vertical-align:-8.725333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:4.906667pt;}
.v5{vertical-align:14.384000pt;}
.v4{vertical-align:24.021333pt;}
.vd{vertical-align:29.882667pt;}
.v8{vertical-align:31.184000pt;}
.v7{vertical-align:39.914667pt;}
.va{vertical-align:76.181333pt;}
.vb{vertical-align:116.090667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2f{letter-spacing:0.000720pt;}
.ls4{letter-spacing:0.001414pt;}
.ls2c{letter-spacing:0.001416pt;}
.ls3{letter-spacing:0.001899pt;}
.ls9{letter-spacing:0.001908pt;}
.ls1a{letter-spacing:0.002323pt;}
.ls3a{letter-spacing:0.002391pt;}
.ls16{letter-spacing:0.002400pt;}
.ls20{letter-spacing:0.002827pt;}
.ls1f{letter-spacing:0.002879pt;}
.ls38{letter-spacing:0.010591pt;}
.ls42{letter-spacing:0.011456pt;}
.lsc{letter-spacing:0.014884pt;}
.ls10{letter-spacing:0.018258pt;}
.ls28{letter-spacing:0.018417pt;}
.ls46{letter-spacing:0.022199pt;}
.ls4b{letter-spacing:0.024534pt;}
.lsf{letter-spacing:0.027758pt;}
.ls11{letter-spacing:0.290909pt;}
.ls12{letter-spacing:1.612067pt;}
.ls4e{letter-spacing:1.617401pt;}
.ls40{letter-spacing:2.210911pt;}
.ls50{letter-spacing:2.653258pt;}
.ls22{letter-spacing:2.656092pt;}
.ls8{letter-spacing:2.657546pt;}
.ls29{letter-spacing:2.659878pt;}
.ls7{letter-spacing:5.163387pt;}
.lse{letter-spacing:5.168720pt;}
.ls33{letter-spacing:5.312220pt;}
.ls31{letter-spacing:5.317553pt;}
.ls45{letter-spacing:5.685324pt;}
.ls4f{letter-spacing:5.969546pt;}
.ls13{letter-spacing:5.974879pt;}
.ls41{letter-spacing:6.225460pt;}
.ls21{letter-spacing:6.260825pt;}
.ls1c{letter-spacing:6.283642pt;}
.ls3b{letter-spacing:6.376161pt;}
.ls1b{letter-spacing:7.378959pt;}
.ls23{letter-spacing:9.693494pt;}
.ls2d{letter-spacing:9.716372pt;}
.ls37{letter-spacing:12.916374pt;}
.ls2b{letter-spacing:14.859387pt;}
.ls30{letter-spacing:15.008473pt;}
.ls32{letter-spacing:15.013806pt;}
.ls14{letter-spacing:16.116377pt;}
.lsd{letter-spacing:16.174559pt;}
.ls36{letter-spacing:18.096720pt;}
.ls17{letter-spacing:18.817546pt;}
.ls2{letter-spacing:19.039527pt;}
.ls4d{letter-spacing:19.374562pt;}
.ls1e{letter-spacing:19.432743pt;}
.ls26{letter-spacing:20.596381pt;}
.ls6{letter-spacing:21.328720pt;}
.ls3f{letter-spacing:22.049546pt;}
.ls5{letter-spacing:24.560720pt;}
.lsb{letter-spacing:26.356386pt;}
.ls3e{letter-spacing:31.883663pt;}
.ls4a{letter-spacing:32.290936pt;}
.ls35{letter-spacing:37.488720pt;}
.ls3c{letter-spacing:90.905178pt;}
.ls2a{letter-spacing:126.564870pt;}
.ls47{letter-spacing:142.026826pt;}
.ls49{letter-spacing:173.641476pt;}
.ls27{letter-spacing:228.422493pt;}
.ls0{letter-spacing:310.561617pt;}
.ls48{letter-spacing:465.532185pt;}
.ls4c{letter-spacing:476.858579pt;}
.ls43{letter-spacing:534.807718pt;}
.ls44{letter-spacing:572.713211pt;}
.ls3d{letter-spacing:585.716852pt;}
.ls24{letter-spacing:623.127792pt;}
.ls34{letter-spacing:652.451453pt;}
.ls1d{letter-spacing:773.760645pt;}
.ls2e{letter-spacing:808.029764pt;}
.ls19{letter-spacing:822.342503pt;}
.ls39{letter-spacing:864.407993pt;}
.ls18{letter-spacing:891.346197pt;}
.ls25{letter-spacing:928.233501pt;}
.ls51{letter-spacing:933.469869pt;}
.lsa{letter-spacing:933.568720pt;}
.ls15{letter-spacing:954.706250pt;}
.ws3e{word-spacing:-58.181867pt;}
.ws5d{word-spacing:-48.465495pt;}
.ws3f{word-spacing:-42.007308pt;}
.ws3d{word-spacing:-37.899668pt;}
.ws68{word-spacing:-34.611401pt;}
.ws50{word-spacing:-32.337481pt;}
.ws42{word-spacing:-29.090933pt;}
.ws47{word-spacing:-28.183296pt;}
.ws19{word-spacing:-26.566933pt;}
.ws5f{word-spacing:-25.832749pt;}
.ws1c{word-spacing:-24.575109pt;}
.ws61{word-spacing:-16.162923pt;}
.ws78{word-spacing:-15.301831pt;}
.ws69{word-spacing:-14.760588pt;}
.ws58{word-spacing:-14.603649pt;}
.ws64{word-spacing:-14.429103pt;}
.ws0{word-spacing:-14.346200pt;}
.ws3b{word-spacing:-14.312739pt;}
.ws4f{word-spacing:-13.323647pt;}
.ws8{word-spacing:-13.279836pt;}
.ws67{word-spacing:-12.974556pt;}
.ws49{word-spacing:-12.858193pt;}
.ws13{word-spacing:-12.752128pt;}
.ws72{word-spacing:-12.567283pt;}
.ws40{word-spacing:-12.543875pt;}
.ws24{word-spacing:-12.276374pt;}
.wsd{word-spacing:-12.227779pt;}
.ws3{word-spacing:-11.955200pt;}
.ws4a{word-spacing:-11.927283pt;}
.ws6{word-spacing:-11.893033pt;}
.ws4b{word-spacing:-11.869101pt;}
.ws38{word-spacing:-11.694555pt;}
.ws7{word-spacing:-11.520031pt;}
.ws80{word-spacing:-11.403646pt;}
.ws71{word-spacing:-11.345464pt;}
.ws75{word-spacing:-11.229100pt;}
.ws7b{word-spacing:-11.112737pt;}
.ws25{word-spacing:-10.996373pt;}
.ws28{word-spacing:-10.938191pt;}
.ws43{word-spacing:-10.880009pt;}
.ws76{word-spacing:-10.821827pt;}
.ws48{word-spacing:-10.705463pt;}
.ws3c{word-spacing:-10.201702pt;}
.ws39{word-spacing:-10.181827pt;}
.ws7d{word-spacing:-10.148569pt;}
.ws63{word-spacing:-10.123645pt;}
.ws6b{word-spacing:-10.065463pt;}
.ws5c{word-spacing:-10.007281pt;}
.ws46{word-spacing:-9.989167pt;}
.ws36{word-spacing:-9.949099pt;}
.ws2b{word-spacing:-9.890917pt;}
.ws87{word-spacing:-9.882899pt;}
.ws31{word-spacing:-9.832735pt;}
.ws60{word-spacing:-9.774554pt;}
.ws81{word-spacing:-9.723498pt;}
.ws1e{word-spacing:-9.716372pt;}
.ws1f{word-spacing:-9.658190pt;}
.ws2a{word-spacing:-9.600008pt;}
.ws2e{word-spacing:-9.541826pt;}
.ws26{word-spacing:-9.483644pt;}
.ws83{word-spacing:-9.463142pt;}
.ws3a{word-spacing:-9.425462pt;}
.ws44{word-spacing:-9.367281pt;}
.ws45{word-spacing:-9.309099pt;}
.ws35{word-spacing:-9.250917pt;}
.ws18{word-spacing:-9.192159pt;}
.ws1b{word-spacing:-9.139025pt;}
.ws15{word-spacing:-9.085891pt;}
.ws88{word-spacing:-9.038071pt;}
.ws14{word-spacing:-9.032757pt;}
.ws27{word-spacing:-9.018189pt;}
.ws82{word-spacing:-8.878669pt;}
.ws4{word-spacing:-8.873356pt;}
.ws7f{word-spacing:-8.843644pt;}
.wsb{word-spacing:-8.832502pt;}
.ws56{word-spacing:-8.820222pt;}
.ws17{word-spacing:-8.713954pt;}
.ws74{word-spacing:-8.669098pt;}
.ws93{word-spacing:-8.660820pt;}
.ws77{word-spacing:-8.610916pt;}
.ws16{word-spacing:-8.607686pt;}
.ws30{word-spacing:-8.552734pt;}
.wse{word-spacing:-8.507320pt;}
.ws8d{word-spacing:-8.501419pt;}
.ws51{word-spacing:-8.494553pt;}
.wsc{word-spacing:-8.459500pt;}
.ws8b{word-spacing:-8.453598pt;}
.ws37{word-spacing:-8.442189pt;}
.ws9{word-spacing:-8.220396pt;}
.ws5{word-spacing:-8.172575pt;}
.ws84{word-spacing:-8.134795pt;}
.ws91{word-spacing:-8.028527pt;}
.ws8c{word-spacing:-7.975393pt;}
.ws92{word-spacing:-7.922260pt;}
.ws2f{word-spacing:-7.918552pt;}
.ws55{word-spacing:-7.912734pt;}
.ws8e{word-spacing:-7.762858pt;}
.wsa{word-spacing:-7.694367pt;}
.ws6f{word-spacing:-7.621825pt;}
.ws2d{word-spacing:-7.447279pt;}
.ws85{word-spacing:-7.438741pt;}
.ws1a{word-spacing:-7.279340pt;}
.ws57{word-spacing:-7.214551pt;}
.ws34{word-spacing:-7.156370pt;}
.ws29{word-spacing:-7.098188pt;}
.ws86{word-spacing:-6.912716pt;}
.ws4e{word-spacing:-6.594504pt;}
.ws6a{word-spacing:-6.574551pt;}
.ws4c{word-spacing:-6.446551pt;}
.ws73{word-spacing:-6.341823pt;}
.ws6e{word-spacing:-5.818187pt;}
.ws7c{word-spacing:-5.585459pt;}
.ws90{word-spacing:-5.478102pt;}
.ws23{word-spacing:-5.352732pt;}
.ws1d{word-spacing:-5.178186pt;}
.ws8f{word-spacing:-4.888316pt;}
.ws5b{word-spacing:-4.887277pt;}
.ws59{word-spacing:-4.829095pt;}
.ws70{word-spacing:-4.770913pt;}
.ws7e{word-spacing:-4.538186pt;}
.ws12{word-spacing:-4.468558pt;}
.ws7a{word-spacing:-4.072731pt;}
.ws5a{word-spacing:-3.549094pt;}
.ws54{word-spacing:-3.432730pt;}
.ws53{word-spacing:-3.258185pt;}
.ws65{word-spacing:-3.246548pt;}
.ws32{word-spacing:-2.909093pt;}
.ws2c{word-spacing:-2.850911pt;}
.ws79{word-spacing:-2.676366pt;}
.ws33{word-spacing:-2.501820pt;}
.ws66{word-spacing:-2.327275pt;}
.ws8a{word-spacing:-0.696054pt;}
.ws89{word-spacing:-0.690740pt;}
.ws2{word-spacing:-0.148775pt;}
.ws62{word-spacing:-0.053134pt;}
.ws5e{word-spacing:-0.046545pt;}
.wsf{word-spacing:0.000000pt;}
.ws41{word-spacing:0.011636pt;}
.ws10{word-spacing:2.385457pt;}
.ws52{word-spacing:3.037093pt;}
.ws6c{word-spacing:5.279986pt;}
.ws4d{word-spacing:5.568395pt;}
.ws11{word-spacing:10.159221pt;}
.ws6d{word-spacing:16.186195pt;}
.ws1{word-spacing:20.722347pt;}
.ws22{word-spacing:30.551973pt;}
.ws20{word-spacing:2001.799006pt;}
.ws21{word-spacing:2025.083389pt;}
._34{margin-left:-16.177013pt;}
._3{margin-left:-9.564133pt;}
._1{margin-left:-7.192228pt;}
._4{margin-left:-5.228407pt;}
._9{margin-left:-4.160410pt;}
._2{margin-left:-2.371905pt;}
._6{margin-left:-1.386803pt;}
._8{width:1.338982pt;}
._0{width:2.371905pt;}
._3f{width:3.519699pt;}
._33{width:6.377164pt;}
._39{width:9.699149pt;}
._a{width:13.150720pt;}
._7{width:15.503632pt;}
._3a{width:16.510099pt;}
._49{width:17.737509pt;}
._5{width:18.630868pt;}
._18{width:20.304501pt;}
._38{width:21.402313pt;}
._c{width:23.331100pt;}
._b{width:24.400190pt;}
._3c{width:25.289989pt;}
._22{width:26.230289pt;}
._2f{width:27.677046pt;}
._2e{width:29.137955pt;}
._41{width:30.288840pt;}
._35{width:31.767299pt;}
._40{width:32.930137pt;}
._31{width:34.493886pt;}
._48{width:39.608300pt;}
._3b{width:49.036153pt;}
._30{width:56.657981pt;}
._32{width:61.465248pt;}
._45{width:76.759318pt;}
._37{width:131.123747pt;}
._46{width:141.297847pt;}
._36{width:166.075196pt;}
._43{width:280.483046pt;}
._42{width:288.006846pt;}
._3d{width:335.786918pt;}
._47{width:343.119392pt;}
._44{width:374.689392pt;}
._3e{width:476.963602pt;}
._19{width:622.487791pt;}
._12{width:731.661207pt;}
._23{width:893.456690pt;}
._28{width:985.849323pt;}
._21{width:1045.449868pt;}
._20{width:1074.143890pt;}
._16{width:1087.593462pt;}
._1b{width:1142.604823pt;}
._1a{width:1166.881966pt;}
._27{width:1183.060346pt;}
._2c{width:1189.996738pt;}
._14{width:1238.363416pt;}
._f{width:1264.232810pt;}
._2d{width:1300.278465pt;}
._1d{width:1308.151357pt;}
._1c{width:1340.020669pt;}
._2a{width:1355.579140pt;}
._15{width:1394.050906pt;}
._10{width:1404.510090pt;}
._13{width:1472.322244pt;}
._24{width:1482.386925pt;}
._e{width:1528.747511pt;}
._26{width:1611.403209pt;}
._1f{width:1645.381419pt;}
._11{width:1669.993948pt;}
._29{width:1692.196308pt;}
._1e{width:1705.368523pt;}
._25{width:1715.724895pt;}
._17{width:1744.815828pt;}
._2b{width:1790.867182pt;}
._d{width:2032.682350pt;}
.fs9{font-size:31.880533pt;}
.fs8{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs5{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs6{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.fs3{font-size:104.142400pt;}
.fs2{font-size:148.775467pt;}
.y0{bottom:0.000000pt;}
.y75{bottom:138.905333pt;}
.y3d{bottom:142.501333pt;}
.y21{bottom:154.156000pt;}
.y8f{bottom:167.533333pt;}
.y60{bottom:169.600000pt;}
.y3c{bottom:170.216000pt;}
.y74{bottom:177.545333pt;}
.y8e{bottom:187.350667pt;}
.yf1{bottom:191.225333pt;}
.y5f{bottom:196.698667pt;}
.y11{bottom:197.932000pt;}
.yb9{bottom:208.097333pt;}
.y8d{bottom:212.520000pt;}
.y10{bottom:219.850667pt;}
.y73{bottom:223.541333pt;}
.y5e{bottom:223.796000pt;}
.y8c{bottom:239.618667pt;}
.yf0{bottom:239.950667pt;}
.y3b{bottom:240.809333pt;}
.yf{bottom:244.424000pt;}
.yb8{bottom:247.850667pt;}
.y5d{bottom:250.894667pt;}
.y8b{bottom:264.650667pt;}
.ye{bottom:266.342667pt;}
.y3a{bottom:268.524000pt;}
.ycc{bottom:269.792000pt;}
.ya3{bottom:271.288000pt;}
.y5c{bottom:277.993333pt;}
.y8a{bottom:284.468000pt;}
.yb7{bottom:286.349333pt;}
.yef{bottom:288.674667pt;}
.yd{bottom:290.917333pt;}
.y72{bottom:293.204000pt;}
.ya2{bottom:295.197333pt;}
.y39{bottom:296.240000pt;}
.y5b{bottom:305.092000pt;}
.y89{bottom:309.638667pt;}
.yc{bottom:312.834667pt;}
.yb6{bottom:313.446667pt;}
.y71{bottom:317.114667pt;}
.ycb{bottom:323.350667pt;}
.y38{bottom:323.954667pt;}
.y5a{bottom:332.190667pt;}
.yee{bottom:337.400000pt;}
.yb{bottom:337.409333pt;}
.y88{bottom:344.648000pt;}
.yca{bottom:350.449333pt;}
.y37{bottom:351.670667pt;}
.y105{bottom:351.809333pt;}
.ydc{bottom:352.432000pt;}
.ya1{bottom:357.888000pt;}
.ya{bottom:359.326667pt;}
.yb5{bottom:359.442667pt;}
.y59{bottom:360.972000pt;}
.y70{bottom:361.849333pt;}
.y12c{bottom:362.344000pt;}
.yc9{bottom:377.548000pt;}
.y36{bottom:379.385333pt;}
.y87{bottom:379.657333pt;}
.ya0{bottom:384.986667pt;}
.yed{bottom:386.124000pt;}
.y12b{bottom:386.254667pt;}
.y58{bottom:388.070667pt;}
.yc8{bottom:404.646667pt;}
.y35{bottom:407.100000pt;}
.y104{bottom:410.080000pt;}
.y12a{bottom:410.164000pt;}
.yec{bottom:413.222667pt;}
.yb4{bottom:413.293333pt;}
.ydb{bottom:414.257333pt;}
.y57{bottom:415.169333pt;}
.y86{bottom:425.653333pt;}
.y129{bottom:434.074667pt;}
.y9{bottom:436.676000pt;}
.y103{bottom:437.178667pt;}
.y9f{bottom:439.318667pt;}
.yeb{bottom:440.321333pt;}
.yb3{bottom:440.392000pt;}
.yda{bottom:441.354667pt;}
.y56{bottom:442.268000pt;}
.y6f{bottom:444.962667pt;}
.y34{bottom:449.977333pt;}
.yc7{bottom:450.642667pt;}
.y128{bottom:457.985333pt;}
.y102{bottom:464.277333pt;}
.y55{bottom:469.365333pt;}
.yb2{bottom:470.241333pt;}
.y9e{bottom:470.785333pt;}
.y33{bottom:477.693333pt;}
.y85{bottom:478.746667pt;}
.yb1{bottom:480.218667pt;}
.y127{bottom:481.896000pt;}
.y8{bottom:483.264000pt;}
.yd9{bottom:487.096000pt;}
.yea{bottom:487.985333pt;}
.y101{bottom:492.097333pt;}
.y9d{bottom:494.696000pt;}
.y54{bottom:498.148000pt;}
.y84{bottom:503.778667pt;}
.y32{bottom:505.408000pt;}
.y126{bottom:505.805333pt;}
.y7{bottom:507.173333pt;}
.y9c{bottom:518.606667pt;}
.y100{bottom:519.196000pt;}
.yb0{bottom:520.044000pt;}
.yc6{bottom:522.957333pt;}
.y83{bottom:523.596000pt;}
.y53{bottom:525.246667pt;}
.y6e{bottom:527.853333pt;}
.y125{bottom:529.716000pt;}
.y6{bottom:531.084000pt;}
.yd8{bottom:532.837333pt;}
.y31{bottom:533.124000pt;}
.y9b{bottom:542.516000pt;}
.yff{bottom:546.294667pt;}
.yaf{bottom:547.142667pt;}
.y82{bottom:548.766667pt;}
.y52{bottom:552.345333pt;}
.y124{bottom:553.626667pt;}
.yc5{bottom:554.424000pt;}
.y6d{bottom:558.944000pt;}
.yd7{bottom:559.936000pt;}
.y30{bottom:560.838667pt;}
.y9a{bottom:566.958667pt;}
.yfe{bottom:573.392000pt;}
.y81{bottom:575.864000pt;}
.y123{bottom:577.537333pt;}
.ye9{bottom:577.926667pt;}
.yc4{bottom:578.334667pt;}
.y51{bottom:579.444000pt;}
.y6c{bottom:586.042667pt;}
.yae{bottom:586.968000pt;}
.yd6{bottom:587.034667pt;}
.y2f{bottom:588.554667pt;}
.yfd{bottom:600.490667pt;}
.y80{bottom:600.896000pt;}
.y122{bottom:601.446667pt;}
.yc3{bottom:602.245333pt;}
.y50{bottom:608.225333pt;}
.ye8{bottom:609.393333pt;}
.y6b{bottom:613.141333pt;}
.y2e{bottom:616.269333pt;}
.y7f{bottom:620.714667pt;}
.y121{bottom:625.357333pt;}
.yc2{bottom:626.156000pt;}
.yad{bottom:626.794667pt;}
.y99{bottom:630.284000pt;}
.y114{bottom:632.476000pt;}
.ye7{bottom:633.304000pt;}
.yd5{bottom:634.374667pt;}
.y4f{bottom:635.324000pt;}
.y6a{bottom:640.238667pt;}
.y7e{bottom:645.884000pt;}
.yfc{bottom:647.209333pt;}
.y120{bottom:649.268000pt;}
.yc1{bottom:650.065333pt;}
.yac{bottom:653.893333pt;}
.ye6{bottom:657.214667pt;}
.y5{bottom:659.105333pt;}
.y2d{bottom:659.146667pt;}
.y113{bottom:659.573333pt;}
.y4e{bottom:664.106667pt;}
.y20{bottom:672.222667pt;}
.y7d{bottom:672.982667pt;}
.y11f{bottom:673.178667pt;}
.yc0{bottom:674.508000pt;}
.ye5{bottom:681.124000pt;}
.y69{bottom:686.234667pt;}
.y112{bottom:686.672000pt;}
.y2c{bottom:686.861333pt;}
.y4d{bottom:691.205333pt;}
.y98{bottom:692.973333pt;}
.yd4{bottom:696.200000pt;}
.y11e{bottom:697.088000pt;}
.y10c{bottom:697.850667pt;}
.y1f{bottom:699.321333pt;}
.yab{bottom:699.889333pt;}
.ye4{bottom:705.034667pt;}
.yfb{bottom:705.480000pt;}
.y2b{bottom:714.577333pt;}
.y4c{bottom:718.302667pt;}
.y7c{bottom:718.978667pt;}
.y97{bottom:720.072000pt;}
.y11d{bottom:720.998667pt;}
.yd3{bottom:723.298667pt;}
.y10b{bottom:724.949333pt;}
.ybf{bottom:729.357333pt;}
.ye3{bottom:729.476000pt;}
.yfa{bottom:732.578667pt;}
.y111{bottom:732.668000pt;}
.y1e{bottom:735.212000pt;}
.y68{bottom:739.334667pt;}
.y2a{bottom:742.292000pt;}
.y11c{bottom:744.909333pt;}
.y4b{bottom:745.401333pt;}
.y96{bottom:747.170667pt;}
.yaa{bottom:753.740000pt;}
.y1d{bottom:759.122667pt;}
.yf9{bottom:759.676000pt;}
.y10a{bottom:765.330667pt;}
.y67{bottom:766.432000pt;}
.y11b{bottom:768.820000pt;}
.y29{bottom:770.008000pt;}
.yd2{bottom:770.398667pt;}
.y7b{bottom:772.072000pt;}
.y4a{bottom:772.500000pt;}
.y95{bottom:774.269333pt;}
.ybe{bottom:782.914667pt;}
.y1c{bottom:783.033333pt;}
.yf8{bottom:786.774667pt;}
.y110{bottom:786.814667pt;}
.y11a{bottom:792.729333pt;}
.ye2{bottom:793.496000pt;}
.ya9{bottom:793.565333pt;}
.y28{bottom:797.722667pt;}
.y7a{bottom:799.170667pt;}
.y66{bottom:800.148000pt;}
.y49{bottom:801.282667pt;}
.y4{bottom:802.264000pt;}
.y109{bottom:805.712000pt;}
.y1b{bottom:806.942667pt;}
.ybd{bottom:810.013333pt;}
.y10f{bottom:813.913333pt;}
.yf7{bottom:814.594667pt;}
.y119{bottom:816.640000pt;}
.yd1{bottom:817.498667pt;}
.y42{bottom:819.562667pt;}
.y94{bottom:821.760000pt;}
.y79{bottom:826.268000pt;}
.y65{bottom:827.246667pt;}
.y48{bottom:828.380000pt;}
.y3{bottom:830.158667pt;}
.y1a{bottom:830.853333pt;}
.ya8{bottom:833.392000pt;}
.ybc{bottom:837.112000pt;}
.y118{bottom:840.550667pt;}
.y27{bottom:840.600000pt;}
.yf6{bottom:841.693333pt;}
.y108{bottom:846.094667pt;}
.y10e{bottom:852.028000pt;}
.y78{bottom:853.366667pt;}
.y19{bottom:854.764000pt;}
.y47{bottom:855.478667pt;}
.y10d{bottom:855.624000pt;}
.ye1{bottom:857.178667pt;}
.y41{bottom:861.206667pt;}
.y64{bottom:862.289333pt;}
.ybb{bottom:864.210667pt;}
.y117{bottom:864.461333pt;}
.yd0{bottom:864.598667pt;}
.y26{bottom:868.316000pt;}
.yf5{bottom:868.792000pt;}
.ya7{bottom:873.217333pt;}
.y18{bottom:878.674667pt;}
.y46{bottom:884.261333pt;}
.ye0{bottom:884.276000pt;}
.y93{bottom:884.449333pt;}
.y107{bottom:886.476000pt;}
.y116{bottom:888.370667pt;}
.y2{bottom:888.702667pt;}
.yf4{bottom:895.890667pt;}
.y25{bottom:896.030667pt;}
.y63{bottom:897.333333pt;}
.y77{bottom:899.362667pt;}
.yba{bottom:902.176000pt;}
.y40{bottom:902.850667pt;}
.y45{bottom:911.360000pt;}
.ydf{bottom:911.374667pt;}
.y92{bottom:911.548000pt;}
.ycf{bottom:911.700000pt;}
.y115{bottom:912.281333pt;}
.ya6{bottom:913.044000pt;}
.y17{bottom:913.078667pt;}
.y16{bottom:917.898667pt;}
.yf3{bottom:922.989333pt;}
.y24{bottom:923.745333pt;}
.y62{bottom:924.432000pt;}
.y1{bottom:924.568000pt;}
.y106{bottom:926.858667pt;}
.y44{bottom:938.457333pt;}
.yde{bottom:938.473333pt;}
.y91{bottom:938.646667pt;}
.yce{bottom:938.798667pt;}
.ya5{bottom:940.141333pt;}
.y14{bottom:941.637333pt;}
.y3f{bottom:944.493333pt;}
.y15{bottom:946.916000pt;}
.y76{bottom:952.456000pt;}
.y43{bottom:965.556000pt;}
.ydd{bottom:965.572000pt;}
.y90{bottom:965.745333pt;}
.ycd{bottom:965.896000pt;}
.y23{bottom:966.624000pt;}
.ya4{bottom:967.240000pt;}
.yf2{bottom:969.706667pt;}
.y61{bottom:970.428000pt;}
.y13{bottom:985.341333pt;}
.y3e{bottom:986.137333pt;}
.y12{bottom:1013.236000pt;}
.y22{bottom:1059.728000pt;}
.hd{height:14.824448pt;}
.hb{height:25.403229pt;}
.ha{height:29.499997pt;}
.h7{height:33.713664pt;}
.h8{height:35.865600pt;}
.hc{height:38.043849pt;}
.h6{height:39.850400pt;}
.h9{height:43.636400pt;}
.h5{height:44.632747pt;}
.h3{height:47.820800pt;}
.he{height:53.521330pt;}
.h2{height:53.559147pt;}
.hf{height:58.020400pt;}
.h14{height:82.996400pt;}
.h11{height:83.545733pt;}
.h10{height:83.551067pt;}
.h4{height:105.611479pt;}
.h13{height:118.216021pt;}
.h12{height:122.905733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:94.413333pt;}
.x14{left:96.000000pt;}
.x15{left:98.434667pt;}
.x19{left:101.656000pt;}
.x7b{left:102.641333pt;}
.x18{left:107.313333pt;}
.xb{left:111.940000pt;}
.x1d{left:115.925333pt;}
.x1a{left:122.785333pt;}
.x1b{left:123.796000pt;}
.x79{left:128.004000pt;}
.x58{left:136.686667pt;}
.x37{left:137.721333pt;}
.x13{left:141.164000pt;}
.x4e{left:143.742667pt;}
.x1{left:146.178667pt;}
.x7a{left:150.704000pt;}
.x38{left:152.082667pt;}
.xd{left:153.446667pt;}
.x12{left:154.448000pt;}
.x59{left:156.734667pt;}
.x33{left:163.064000pt;}
.x24{left:164.589333pt;}
.x2{left:165.708000pt;}
.x4f{left:167.852000pt;}
.x69{left:169.364000pt;}
.x73{left:179.262667pt;}
.x47{left:182.160000pt;}
.x10{left:190.597333pt;}
.x48{left:193.805333pt;}
.x11{left:196.556000pt;}
.x6b{left:202.717333pt;}
.x71{left:205.700000pt;}
.x66{left:208.605333pt;}
.x77{left:212.596000pt;}
.x6a{left:214.122667pt;}
.x4b{left:220.072000pt;}
.x74{left:226.337333pt;}
.x43{left:230.484000pt;}
.x22{left:234.621333pt;}
.x46{left:236.349333pt;}
.xc{left:239.254667pt;}
.x68{left:240.366667pt;}
.x44{left:242.288000pt;}
.x3{left:244.284000pt;}
.x2a{left:245.788000pt;}
.x4d{left:246.876000pt;}
.x6c{left:250.238667pt;}
.x3a{left:256.417333pt;}
.x2b{left:257.446667pt;}
.x23{left:259.312000pt;}
.x65{left:266.792000pt;}
.x64{left:269.053333pt;}
.x5e{left:270.392000pt;}
.x76{left:274.752000pt;}
.x42{left:276.881333pt;}
.x29{left:278.596000pt;}
.x5b{left:279.521333pt;}
.x4a{left:284.017333pt;}
.x32{left:287.097333pt;}
.x3d{left:290.870667pt;}
.x7{left:293.149333pt;}
.x3c{left:294.280000pt;}
.x57{left:296.208000pt;}
.x72{left:310.381333pt;}
.x7c{left:312.757333pt;}
.x4{left:313.856000pt;}
.x75{left:320.052000pt;}
.x67{left:322.269333pt;}
.x49{left:323.496000pt;}
.x3b{left:326.928000pt;}
.x4c{left:330.537333pt;}
.x1c{left:331.561333pt;}
.x5{left:333.781333pt;}
.x56{left:335.094667pt;}
.x6{left:339.008000pt;}
.xe{left:340.090667pt;}
.x39{left:344.082667pt;}
.x8{left:349.013333pt;}
.x2f{left:356.196000pt;}
.x36{left:357.928000pt;}
.x27{left:359.934667pt;}
.x9{left:360.858667pt;}
.x17{left:363.736000pt;}
.x5d{left:365.093333pt;}
.x30{left:366.505333pt;}
.x41{left:370.550667pt;}
.x78{left:377.352000pt;}
.x5a{left:380.696000pt;}
.x31{left:382.660000pt;}
.x5f{left:397.140000pt;}
.x60{left:418.553333pt;}
.x6d{left:429.000000pt;}
.x6e{left:451.184000pt;}
.xf{left:454.897333pt;}
.x5c{left:465.521333pt;}
.x3e{left:466.413333pt;}
.x50{left:470.286667pt;}
.x2c{left:473.290667pt;}
.x3f{left:479.702667pt;}
.x34{left:482.669333pt;}
.x40{left:485.934667pt;}
.x51{left:504.970667pt;}
.x2d{left:512.586667pt;}
.x2e{left:524.264000pt;}
.x25{left:536.830667pt;}
.x35{left:540.441333pt;}
.x52{left:545.690667pt;}
.x53{left:568.449333pt;}
.x26{left:571.516000pt;}
.x45{left:584.616000pt;}
.x54{left:590.985333pt;}
.x55{left:608.913333pt;}
.x61{left:664.669333pt;}
.x6f{left:665.692000pt;}
.x28{left:667.549333pt;}
.x62{left:671.486667pt;}
.x70{left:683.849333pt;}
.x1e{left:689.637333pt;}
.x1f{left:696.909333pt;}
.x63{left:703.122667pt;}
.x20{left:705.298667pt;}
.x16{left:710.396000pt;}
.x21{left:712.572000pt;}
}




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