
    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_5833abc6a8968b99e86fdcfb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6e831d2f76df6f1950cd5d9c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_329a8ab744b8953d8f2aa23d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_847bcc7da9c545d961832a82.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.933000;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_7f9a2492b513f1ef32f4a11a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_597a6357f91568819c4f5cd7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_f69c161fd25c7dcaf0e8ad22.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9b58d842617b633c6a8d08aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_55262aef17c08e54bf7502c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_6201bc840ecf0b4b345816e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_e2d923ee031f2c4451f1957d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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_c057a255a675ea0bb79954d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740723;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_2c921a806a1ffb62fe90253a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.843750;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_f1013cc8fc479c4bfba0d3ba.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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_7318e8613028ab8243ba5152.woff2')format("woff");}.fff{font-family:fff;line-height:0.895996;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_ef951bbb5b1bfbd797861b74.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.895996;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_d6184bc21b54e7ee593c2d7f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895996;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_a6a476904df535d4c98dedd3.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893555;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_9988da38780426aaddae0859.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.971000;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;}
.mb{transform:matrix(0.000000,-0.213998,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.213998,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.213998,0.250000,0.000000,0,0);}
.m8{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);}
.m7{transform:matrix(0.145176,-0.203529,0.203529,0.145176,0,0);-ms-transform:matrix(0.145176,-0.203529,0.203529,0.145176,0,0);-webkit-transform:matrix(0.145176,-0.203529,0.203529,0.145176,0,0);}
.m3{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,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);}
.m2{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253275,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254507,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.292057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292057,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.292058,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.v2{vertical-align:-21.978000px;}
.v1{vertical-align:-19.980000px;}
.v5{vertical-align:-5.129400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.892943px;}
.v7{vertical-align:19.980000px;}
.v3{vertical-align:21.978000px;}
.v6{vertical-align:33.120000px;}
.ls6{letter-spacing:-1.800000px;}
.ls1e{letter-spacing:-1.593720px;}
.ls1a{letter-spacing:-0.328291px;}
.ls1b{letter-spacing:-0.246218px;}
.ls7{letter-spacing:-0.240000px;}
.ls19{letter-spacing:-0.164146px;}
.ls25{letter-spacing:-0.143376px;}
.ls24{letter-spacing:-0.128781px;}
.ls18{letter-spacing:-0.123109px;}
.ls8{letter-spacing:-0.120000px;}
.ls26{letter-spacing:-0.112572px;}
.ls1d{letter-spacing:-0.037548px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.001200px;}
.ls1{letter-spacing:0.060000px;}
.ls1c{letter-spacing:0.068531px;}
.lse{letter-spacing:0.082073px;}
.ls21{letter-spacing:0.085854px;}
.lsf{letter-spacing:0.102600px;}
.ls10{letter-spacing:0.109157px;}
.ls13{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.300000px;}
.ls3{letter-spacing:0.420000px;}
.ls1f{letter-spacing:0.587160px;}
.ls20{letter-spacing:1.931715px;}
.lsa{letter-spacing:2.257002px;}
.ls23{letter-spacing:2.527830px;}
.ls9{letter-spacing:5.129550px;}
.lsd{letter-spacing:5.745096px;}
.ls22{letter-spacing:7.082955px;}
.ls11{letter-spacing:7.200000px;}
.lsb{letter-spacing:8.002098px;}
.ls12{letter-spacing:18.000000px;}
.lsc{letter-spacing:19.081926px;}
.ls17{letter-spacing:50.915160px;}
.ls16{letter-spacing:51.250680px;}
.ls15{letter-spacing:93.861720px;}
.ls14{letter-spacing:117.264240px;}
.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;}
}
.ws46{word-spacing:-82.286280px;}
.ws3{word-spacing:-16.500000px;}
.ws22{word-spacing:-15.000000px;}
.wsb8{word-spacing:-11.718000px;}
.ws68{word-spacing:-10.731750px;}
.ws6a{word-spacing:-10.602969px;}
.ws43{word-spacing:-10.259100px;}
.ws41{word-spacing:-10.135991px;}
.ws42{word-spacing:-9.930809px;}
.ws2{word-spacing:-8.745000px;}
.ws45{word-spacing:-8.448300px;}
.ws6e{word-spacing:-8.426100px;}
.ws1{word-spacing:-8.349726px;}
.ws0{word-spacing:-7.590660px;}
.ws69{word-spacing:-7.136550px;}
.ws36{word-spacing:-3.300000px;}
.ws9d{word-spacing:-3.000000px;}
.wsb7{word-spacing:-2.940000px;}
.ws7{word-spacing:-2.700000px;}
.wsa3{word-spacing:-2.640000px;}
.wsc0{word-spacing:-2.520000px;}
.wsb9{word-spacing:-2.484000px;}
.ws19{word-spacing:-2.460000px;}
.wsa1{word-spacing:-2.400000px;}
.ws8e{word-spacing:-2.280000px;}
.wsc3{word-spacing:-2.220000px;}
.ws74{word-spacing:-2.160000px;}
.ws2f{word-spacing:-2.040000px;}
.wsad{word-spacing:-1.920000px;}
.wsa4{word-spacing:-1.800000px;}
.wsb2{word-spacing:-1.680000px;}
.wsaf{word-spacing:-1.620000px;}
.ws39{word-spacing:-1.560000px;}
.ws35{word-spacing:-1.500000px;}
.ws8a{word-spacing:-1.320000px;}
.ws31{word-spacing:-1.260000px;}
.ws32{word-spacing:-1.080000px;}
.ws9a{word-spacing:-0.960000px;}
.ws9{word-spacing:-0.924000px;}
.ws12{word-spacing:-0.780000px;}
.ws2a{word-spacing:-0.660000px;}
.ws67{word-spacing:-0.587160px;}
.ws47{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.480000px;}
.ws13{word-spacing:-0.300000px;}
.wsa8{word-spacing:-0.180000px;}
.ws7b{word-spacing:-0.171708px;}
.ws87{word-spacing:-0.134818px;}
.ws5a{word-spacing:-0.109157px;}
.ws5d{word-spacing:-0.068531px;}
.wsd{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws88{word-spacing:0.112572px;}
.ws10{word-spacing:0.120000px;}
.ws7a{word-spacing:0.128781px;}
.ws4d{word-spacing:0.164146px;}
.ws5e{word-spacing:0.239037px;}
.wsf{word-spacing:0.240000px;}
.ws53{word-spacing:0.246218px;}
.ws1a{word-spacing:0.300000px;}
.ws75{word-spacing:0.360000px;}
.ws3c{word-spacing:0.540000px;}
.ws9f{word-spacing:0.600000px;}
.ws81{word-spacing:0.600978px;}
.ws11{word-spacing:0.720000px;}
.wsba{word-spacing:0.756000px;}
.ws96{word-spacing:0.780000px;}
.wsb6{word-spacing:0.840000px;}
.ws63{word-spacing:1.008000px;}
.ws95{word-spacing:1.020000px;}
.ws4a{word-spacing:1.025910px;}
.ws65{word-spacing:1.080000px;}
.ws73{word-spacing:1.140000px;}
.ws64{word-spacing:1.152000px;}
.ws77{word-spacing:1.200000px;}
.ws8f{word-spacing:1.260000px;}
.ws94{word-spacing:1.320000px;}
.ws92{word-spacing:1.380000px;}
.ws16{word-spacing:1.500000px;}
.wsb4{word-spacing:1.620000px;}
.ws97{word-spacing:1.740000px;}
.ws7d{word-spacing:1.760007px;}
.ws9b{word-spacing:1.800000px;}
.wsb{word-spacing:1.860000px;}
.ws58{word-spacing:1.887674px;}
.ws7c{word-spacing:1.888788px;}
.ws89{word-spacing:1.920000px;}
.ws8{word-spacing:1.998000px;}
.ws2c{word-spacing:2.040000px;}
.ws79{word-spacing:2.103423px;}
.ws78{word-spacing:2.146350px;}
.ws86{word-spacing:2.157082px;}
.ws23{word-spacing:2.160000px;}
.ws4e{word-spacing:2.215966px;}
.ws33{word-spacing:2.220000px;}
.ws4f{word-spacing:2.257002px;}
.ws82{word-spacing:2.318058px;}
.ws84{word-spacing:2.325604px;}
.wsc1{word-spacing:2.340000px;}
.wsbf{word-spacing:2.400000px;}
.ws3d{word-spacing:2.460000px;}
.ws85{word-spacing:2.494126px;}
.ws38{word-spacing:2.520000px;}
.wsa9{word-spacing:2.580000px;}
.ws6{word-spacing:2.808000px;}
.ws2d{word-spacing:2.940000px;}
.ws59{word-spacing:3.036694px;}
.wsab{word-spacing:3.060000px;}
.ws48{word-spacing:3.180000px;}
.ws2b{word-spacing:3.300000px;}
.ws18{word-spacing:3.360000px;}
.ws1f{word-spacing:3.480000px;}
.wsae{word-spacing:3.600000px;}
.wsa0{word-spacing:3.660000px;}
.wsc{word-spacing:3.720000px;}
.ws2e{word-spacing:3.900000px;}
.ws90{word-spacing:4.020000px;}
.wsb0{word-spacing:4.080000px;}
.wsa5{word-spacing:4.140000px;}
.ws9e{word-spacing:4.680000px;}
.ws8b{word-spacing:4.740000px;}
.ws14{word-spacing:4.860000px;}
.wse{word-spacing:4.920000px;}
.ws28{word-spacing:4.980000px;}
.ws4c{word-spacing:5.088514px;}
.ws91{word-spacing:5.160000px;}
.ws4b{word-spacing:5.170586px;}
.wsa2{word-spacing:5.280000px;}
.wsaa{word-spacing:5.340000px;}
.wsbe{word-spacing:5.520000px;}
.ws72{word-spacing:5.580000px;}
.wsa{word-spacing:5.640000px;}
.ws57{word-spacing:5.704060px;}
.ws1b{word-spacing:6.060000px;}
.ws25{word-spacing:6.120000px;}
.wsc2{word-spacing:6.360000px;}
.ws20{word-spacing:6.600000px;}
.ws1d{word-spacing:6.780000px;}
.ws15{word-spacing:6.840000px;}
.ws9c{word-spacing:7.020000px;}
.ws7e{word-spacing:7.040028px;}
.ws61{word-spacing:7.128000px;}
.ws49{word-spacing:7.140000px;}
.wsac{word-spacing:7.200000px;}
.ws7f{word-spacing:7.254663px;}
.wsb1{word-spacing:7.260000px;}
.ws60{word-spacing:7.272000px;}
.wsbc{word-spacing:7.398000px;}
.ws30{word-spacing:7.620000px;}
.ws17{word-spacing:7.680000px;}
.ws98{word-spacing:7.740000px;}
.ws3f{word-spacing:7.860000px;}
.ws5{word-spacing:7.872000px;}
.ws52{word-spacing:7.961062px;}
.ws76{word-spacing:8.040000px;}
.ws1c{word-spacing:8.100000px;}
.ws80{word-spacing:8.327838px;}
.ws37{word-spacing:8.520000px;}
.ws3b{word-spacing:8.760000px;}
.ws29{word-spacing:8.880000px;}
.ws21{word-spacing:9.000000px;}
.wsc4{word-spacing:9.120000px;}
.ws50{word-spacing:9.192154px;}
.wsa6{word-spacing:9.240000px;}
.ws51{word-spacing:9.274226px;}
.wsa7{word-spacing:9.420000px;}
.ws83{word-spacing:9.437232px;}
.ws1e{word-spacing:9.660000px;}
.ws24{word-spacing:9.900000px;}
.ws99{word-spacing:10.140000px;}
.ws40{word-spacing:10.200000px;}
.ws5c{word-spacing:10.423246px;}
.ws5b{word-spacing:10.464282px;}
.wsb5{word-spacing:10.740000px;}
.wsbb{word-spacing:10.908000px;}
.ws34{word-spacing:11.040000px;}
.ws8c{word-spacing:11.340000px;}
.ws27{word-spacing:11.760000px;}
.ws8d{word-spacing:11.820000px;}
.ws93{word-spacing:12.240000px;}
.ws3e{word-spacing:12.780000px;}
.wsbd{word-spacing:12.960000px;}
.wsb3{word-spacing:13.140000px;}
.ws62{word-spacing:17.928000px;}
.ws55{word-spacing:18.835708px;}
.ws3a{word-spacing:18.840000px;}
.ws54{word-spacing:18.999853px;}
.ws56{word-spacing:19.040890px;}
.ws66{word-spacing:22.608000px;}
.ws6b{word-spacing:78.032388px;}
.ws70{word-spacing:84.731514px;}
.ws6d{word-spacing:107.702868px;}
.ws6c{word-spacing:107.974116px;}
.ws6f{word-spacing:152.876626px;}
.ws26{word-spacing:201.000000px;}
.ws44{word-spacing:235.848748px;}
.ws71{word-spacing:699.462000px;}
._15{margin-left:-3222.882000px;}
._d{margin-left:-3211.164000px;}
._12{margin-left:-201.000000px;}
._10{margin-left:-112.308000px;}
._e{margin-left:-24.001780px;}
._33{margin-left:-21.240000px;}
._13{margin-left:-12.372000px;}
._3{margin-left:-8.889600px;}
._35{margin-left:-7.632000px;}
._8{margin-left:-6.498000px;}
._0{margin-left:-5.022000px;}
._4{margin-left:-3.720000px;}
._5{margin-left:-2.652000px;}
._1{margin-left:-1.620000px;}
._2{width:1.812000px;}
._9{width:3.726000px;}
._6{width:4.740000px;}
._7{width:5.802000px;}
._c{width:7.212000px;}
._a{width:8.286000px;}
._b{width:9.378000px;}
._11{width:10.542000px;}
._f{width:11.934000px;}
._14{width:13.272000px;}
._2b{width:16.146000px;}
._36{width:18.000000px;}
._16{width:19.080000px;}
._2c{width:21.096000px;}
._30{width:23.052000px;}
._1a{width:25.143482px;}
._2f{width:27.960000px;}
._1b{width:33.569582px;}
._32{width:36.180000px;}
._34{width:48.000000px;}
._2d{width:57.600000px;}
._21{width:72.300000px;}
._19{width:82.474667px;}
._18{width:92.754509px;}
._17{width:99.718008px;}
._1e{width:131.112000px;}
._31{width:159.060000px;}
._1d{width:167.292000px;}
._1c{width:169.924445px;}
._2e{width:201.000000px;}
._1f{width:312.876000px;}
._22{width:325.512000px;}
._28{width:460.566000px;}
._25{width:463.218000px;}
._23{width:487.566000px;}
._2a{width:560.088000px;}
._27{width:563.112000px;}
._26{width:565.764000px;}
._29{width:587.088000px;}
._24{width:647.136000px;}
._20{width:699.462000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(0,93,164);}
.fc0{color:rgb(0,102,179);}
.fsa{font-size:27.289200px;}
.fs15{font-size:28.143000px;}
.fs11{font-size:28.546200px;}
.fs17{font-size:30.839400px;}
.fs14{font-size:33.704400px;}
.fsb{font-size:34.265400px;}
.fs3{font-size:34.980000px;}
.fs12{font-size:35.844000px;}
.fs16{font-size:36.027600px;}
.fsc{font-size:37.548000px;}
.fs5{font-size:38.478000px;}
.fs13{font-size:39.277800px;}
.fs9{font-size:41.036400px;}
.fs10{font-size:42.927000px;}
.fsd{font-size:47.807400px;}
.fse{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fsf{font-size:83.880000px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:102.000000px;}
.fs8{font-size:322.604565px;}
.ye6{bottom:-284.370000px;}
.ye5{bottom:-253.320000px;}
.ye4{bottom:-222.270000px;}
.y114{bottom:-216.762956px;}
.y113{bottom:-198.250688px;}
.ye3{bottom:-191.220000px;}
.y130{bottom:-190.045842px;}
.y112{bottom:-179.738419px;}
.y12f{bottom:-175.493967px;}
.y111{bottom:-161.230288px;}
.y12e{bottom:-160.958945px;}
.ye2{bottom:-160.170000px;}
.y12d{bottom:-146.423922px;}
.y110{bottom:-142.718020px;}
.y12c{bottom:-131.888900px;}
.ye1{bottom:-129.120000px;}
.y10f{bottom:-124.205751px;}
.y12b{bottom:-117.353877px;}
.y10e{bottom:-105.693482px;}
.y12a{bottom:-102.818855px;}
.ye0{bottom:-98.070000px;}
.y129{bottom:-88.325963px;}
.y10d{bottom:-87.181214px;}
.y128{bottom:-73.790940px;}
.y10c{bottom:-68.668945px;}
.ydf{bottom:-67.020000px;}
.y127{bottom:-59.255918px;}
.y10b{bottom:-50.135213px;}
.y126{bottom:-44.720895px;}
.yca{bottom:-40.955230px;}
.yde{bottom:-35.970000px;}
.y10a{bottom:-31.622944px;}
.y125{bottom:-30.185873px;}
.yc9{bottom:-23.237764px;}
.y124{bottom:-15.650850px;}
.y109{bottom:-13.110675px;}
.ydd{bottom:-8.970000px;}
.yc8{bottom:-7.900410px;}
.y123{bottom:-3.011700px;}
.y0{bottom:0.000000px;}
.y121{bottom:2.235600px;}
.y108{bottom:2.986950px;}
.ye9{bottom:5.580000px;}
.y139{bottom:8.166900px;}
.y13b{bottom:10.119000px;}
.ye8{bottom:26.730000px;}
.y138{bottom:34.919850px;}
.y131{bottom:44.048100px;}
.y40{bottom:73.280400px;}
.ya3{bottom:73.701000px;}
.y14a{bottom:75.772500px;}
.y132{bottom:77.457600px;}
.y180{bottom:77.595150px;}
.y181{bottom:77.685150px;}
.yf1{bottom:78.024000px;}
.y14b{bottom:78.769500px;}
.y1{bottom:79.057650px;}
.y2{bottom:79.503150px;}
.yf0{bottom:79.522500px;}
.y1df{bottom:81.117300px;}
.y13a{bottom:92.708850px;}
.y34{bottom:104.025450px;}
.ydc{bottom:104.400000px;}
.y1de{bottom:104.647800px;}
.y3f{bottom:104.805450px;}
.y1b7{bottom:106.605150px;}
.y1d8{bottom:108.399600px;}
.y73{bottom:109.599600px;}
.ya2{bottom:109.841250px;}
.yea{bottom:110.190000px;}
.y133{bottom:110.881050px;}
.yef{bottom:112.080000px;}
.y17e{bottom:115.599600px;}
.y1dd{bottom:121.144800px;}
.y33{bottom:122.025450px;}
.y3e{bottom:122.805450px;}
.y1b6{bottom:124.605150px;}
.y120{bottom:125.453550px;}
.y1d7{bottom:126.399600px;}
.y72{bottom:127.599600px;}
.ya1{bottom:127.841250px;}
.y43{bottom:129.496082px;}
.y17d{bottom:133.599600px;}
.yee{bottom:137.640000px;}
.y1dc{bottom:137.641800px;}
.y32{bottom:140.025450px;}
.y3d{bottom:140.805450px;}
.y1b5{bottom:142.605150px;}
.y134{bottom:144.290550px;}
.y1d6{bottom:144.399600px;}
.y71{bottom:145.599600px;}
.ya0{bottom:145.841250px;}
.y17c{bottom:151.599600px;}
.y1db{bottom:154.138800px;}
.y31{bottom:158.025450px;}
.y3c{bottom:158.805450px;}
.y1b4{bottom:160.605150px;}
.y1d5{bottom:162.399600px;}
.yed{bottom:163.290000px;}
.y70{bottom:163.599600px;}
.y9f{bottom:163.841250px;}
.y17b{bottom:169.599600px;}
.y1da{bottom:170.635800px;}
.y30{bottom:176.025450px;}
.y3b{bottom:176.805450px;}
.y135{bottom:177.714150px;}
.y1b3{bottom:178.605150px;}
.y149{bottom:179.499600px;}
.y1d4{bottom:180.399600px;}
.y9e{bottom:181.841250px;}
.y17a{bottom:187.599600px;}
.yec{bottom:188.940000px;}
.y2f{bottom:194.025450px;}
.y1b2{bottom:196.605150px;}
.yd5{bottom:196.891950px;}
.y148{bottom:197.499600px;}
.y1d3{bottom:198.399600px;}
.y6f{bottom:199.599600px;}
.y9d{bottom:199.841250px;}
.y179{bottom:205.599600px;}
.y136{bottom:211.137600px;}
.y2e{bottom:212.025450px;}
.y3a{bottom:212.805450px;}
.yeb{bottom:214.590000px;}
.y1b1{bottom:214.605150px;}
.y147{bottom:215.499600px;}
.y1d2{bottom:216.399600px;}
.y6e{bottom:217.599600px;}
.y9c{bottom:217.841250px;}
.y178{bottom:223.599600px;}
.y2d{bottom:230.025450px;}
.y39{bottom:230.805450px;}
.y1b0{bottom:232.605150px;}
.yc7{bottom:234.388755px;}
.y1d1{bottom:234.399600px;}
.y6d{bottom:235.599600px;}
.y9b{bottom:235.841250px;}
.y11c{bottom:238.547100px;}
.y177{bottom:241.599600px;}
.y137{bottom:244.547100px;}
.y146{bottom:247.325700px;}
.y2c{bottom:248.025450px;}
.y38{bottom:248.805450px;}
.y1af{bottom:250.605150px;}
.yc6{bottom:252.085703px;}
.y1d0{bottom:252.399600px;}
.y6c{bottom:253.599600px;}
.y9a{bottom:253.841250px;}
.y176{bottom:259.599600px;}
.y2b{bottom:266.025450px;}
.y37{bottom:266.805450px;}
.y1ae{bottom:268.605150px;}
.y145{bottom:268.682700px;}
.yc5{bottom:269.778564px;}
.y1cf{bottom:270.399600px;}
.y99{bottom:271.841250px;}
.y175{bottom:277.599600px;}
.y2a{bottom:284.025450px;}
.y36{bottom:284.805450px;}
.y1ad{bottom:286.605150px;}
.yc4{bottom:287.475512px;}
.y1ce{bottom:288.399600px;}
.y6b{bottom:289.599600px;}
.y98{bottom:289.841250px;}
.y144{bottom:290.039700px;}
.y174{bottom:295.599600px;}
.y29{bottom:302.025450px;}
.y1ac{bottom:304.605150px;}
.yc3{bottom:305.172459px;}
.y1cd{bottom:306.399600px;}
.y6a{bottom:307.599600px;}
.y97{bottom:307.841250px;}
.y143{bottom:311.396700px;}
.y173{bottom:313.599600px;}
.y28{bottom:320.025450px;}
.y35{bottom:320.805450px;}
.y1ab{bottom:322.605150px;}
.yc2{bottom:322.869407px;}
.y1cc{bottom:324.399600px;}
.y69{bottom:325.599600px;}
.y172{bottom:331.599600px;}
.y142{bottom:332.753700px;}
.yc1{bottom:340.566354px;}
.y1aa{bottom:340.605150px;}
.y1cb{bottom:342.399600px;}
.y68{bottom:343.599600px;}
.y96{bottom:343.841250px;}
.y27{bottom:347.625450px;}
.y171{bottom:349.599600px;}
.y141{bottom:354.110700px;}
.y42{bottom:356.211450px;}
.yc0{bottom:358.263302px;}
.y1a9{bottom:358.605150px;}
.y1d9{bottom:360.399600px;}
.y170{bottom:367.599600px;}
.y140{bottom:375.467700px;}
.ybf{bottom:375.960249px;}
.y1a8{bottom:376.605150px;}
.y1ca{bottom:378.399600px;}
.y67{bottom:379.599600px;}
.y95{bottom:379.841250px;}
.y26{bottom:380.929500px;}
.y16f{bottom:385.599600px;}
.ybe{bottom:393.657197px;}
.y1a7{bottom:394.605150px;}
.y1c9{bottom:396.399600px;}
.y25{bottom:397.429500px;}
.y66{bottom:397.599600px;}
.y94{bottom:397.841250px;}
.y13f{bottom:398.593200px;}
.y16e{bottom:403.599600px;}
.ybd{bottom:411.354144px;}
.y1a6{bottom:412.605150px;}
.y41{bottom:413.814000px;}
.y1c8{bottom:414.399600px;}
.y65{bottom:415.599600px;}
.y93{bottom:415.841250px;}
.y13e{bottom:419.950200px;}
.y16d{bottom:421.599600px;}
.ybc{bottom:429.051092px;}
.y24{bottom:430.429500px;}
.y1a5{bottom:430.605150px;}
.y1c7{bottom:432.399600px;}
.y64{bottom:433.599600px;}
.y92{bottom:433.841250px;}
.y16c{bottom:439.599600px;}
.y13d{bottom:441.307200px;}
.ybb{bottom:446.748039px;}
.y23{bottom:446.929500px;}
.y1a4{bottom:448.605150px;}
.y1c6{bottom:450.399600px;}
.y63{bottom:451.599600px;}
.y91{bottom:451.841250px;}
.y16b{bottom:457.599600px;}
.y22{bottom:463.429500px;}
.yba{bottom:464.465505px;}
.y1a3{bottom:466.605150px;}
.y1c5{bottom:468.399600px;}
.y62{bottom:469.599600px;}
.y17f{bottom:475.599600px;}
.y13c{bottom:477.641400px;}
.y21{bottom:479.929500px;}
.yb9{bottom:482.162452px;}
.y1a2{bottom:484.605150px;}
.y1c4{bottom:486.399600px;}
.y61{bottom:487.599600px;}
.y90{bottom:487.841250px;}
.y16a{bottom:493.599600px;}
.y20{bottom:496.429500px;}
.yb8{bottom:499.859400px;}
.y1a1{bottom:502.605150px;}
.y102{bottom:504.399600px;}
.y60{bottom:505.599600px;}
.y8f{bottom:505.841250px;}
.y169{bottom:511.599600px;}
.y1f{bottom:512.929500px;}
.y1a0{bottom:520.605150px;}
.y101{bottom:522.399600px;}
.y5f{bottom:523.599600px;}
.y8e{bottom:523.841250px;}
.y168{bottom:529.599600px;}
.y19f{bottom:538.605150px;}
.y100{bottom:540.399600px;}
.y8d{bottom:541.841250px;}
.y1e{bottom:545.929500px;}
.y167{bottom:547.599600px;}
.y19e{bottom:556.605150px;}
.yff{bottom:558.399600px;}
.y5e{bottom:559.599600px;}
.y8c{bottom:559.841250px;}
.y1d{bottom:562.429500px;}
.y166{bottom:565.599600px;}
.y1fc{bottom:574.599600px;}
.y19d{bottom:574.605150px;}
.yfe{bottom:576.399600px;}
.y5d{bottom:577.599600px;}
.y8b{bottom:577.841250px;}
.y1c{bottom:578.929500px;}
.y165{bottom:583.599600px;}
.y1fb{bottom:592.599600px;}
.y106{bottom:594.399600px;}
.y1b{bottom:595.429500px;}
.y5c{bottom:595.599600px;}
.y164{bottom:601.599600px;}
.y1fa{bottom:610.599600px;}
.y19c{bottom:610.605150px;}
.y1a{bottom:611.929500px;}
.yfd{bottom:612.399600px;}
.y5b{bottom:613.599600px;}
.y8a{bottom:613.841250px;}
.y163{bottom:619.599600px;}
.y1f9{bottom:628.599600px;}
.y19b{bottom:628.605150px;}
.yfc{bottom:630.399600px;}
.y5a{bottom:631.599600px;}
.y89{bottom:631.841250px;}
.y162{bottom:637.599600px;}
.y19{bottom:644.929500px;}
.y1f8{bottom:646.599600px;}
.y19a{bottom:646.605150px;}
.y105{bottom:648.399600px;}
.y59{bottom:649.599600px;}
.y88{bottom:649.841250px;}
.y161{bottom:655.599600px;}
.y107{bottom:660.405000px;}
.y18{bottom:661.429500px;}
.y11f{bottom:663.946500px;}
.y11b{bottom:664.054500px;}
.y1f7{bottom:664.599600px;}
.y199{bottom:664.605150px;}
.y1c3{bottom:666.399600px;}
.y87{bottom:667.841250px;}
.y160{bottom:673.599600px;}
.y11e{bottom:674.874900px;}
.y17{bottom:677.929500px;}
.y1f6{bottom:682.599600px;}
.y198{bottom:682.605150px;}
.y104{bottom:684.399600px;}
.y58{bottom:685.599600px;}
.y86{bottom:685.841250px;}
.ye7{bottom:690.930000px;}
.ydb{bottom:690.941250px;}
.y15f{bottom:691.599600px;}
.y11d{bottom:691.866750px;}
.y1f5{bottom:700.599600px;}
.y197{bottom:700.605150px;}
.y103{bottom:702.399600px;}
.y115{bottom:703.492650px;}
.y57{bottom:703.599600px;}
.y85{bottom:703.841250px;}
.yda{bottom:708.941250px;}
.y15e{bottom:709.599600px;}
.y16{bottom:717.062550px;}
.y122{bottom:718.417500px;}
.y1f4{bottom:718.599600px;}
.y196{bottom:718.605150px;}
.y1c2{bottom:720.399600px;}
.y56{bottom:721.599600px;}
.y84{bottom:721.841250px;}
.y15d{bottom:727.599600px;}
.y15{bottom:733.562550px;}
.yb6{bottom:736.299600px;}
.y1f3{bottom:736.599600px;}
.y195{bottom:736.605150px;}
.y116{bottom:736.675233px;}
.y1c1{bottom:738.399600px;}
.y55{bottom:739.599600px;}
.y83{bottom:739.841250px;}
.y15c{bottom:745.599600px;}
.y14{bottom:750.062550px;}
.yb5{bottom:754.299600px;}
.y1f2{bottom:754.599600px;}
.y194{bottom:754.605150px;}
.y1c0{bottom:756.399600px;}
.y54{bottom:757.599600px;}
.y82{bottom:757.841250px;}
.y15b{bottom:763.599600px;}
.y117{bottom:769.875738px;}
.yb4{bottom:772.299600px;}
.y1f1{bottom:772.599600px;}
.y193{bottom:772.605150px;}
.y1bf{bottom:774.399600px;}
.y53{bottom:775.599600px;}
.y81{bottom:775.841250px;}
.y15a{bottom:781.599600px;}
.yb3{bottom:790.299600px;}
.y1f0{bottom:790.599600px;}
.y192{bottom:790.605150px;}
.y1be{bottom:792.399600px;}
.y13{bottom:792.502650px;}
.y80{bottom:793.841250px;}
.ya{bottom:798.191700px;}
.y159{bottom:799.599600px;}
.y118{bottom:803.058321px;}
.yb2{bottom:808.299600px;}
.y1ef{bottom:808.599600px;}
.y191{bottom:808.605150px;}
.y1bd{bottom:810.399600px;}
.y12{bottom:810.502650px;}
.y52{bottom:811.599600px;}
.y158{bottom:817.599600px;}
.yb1{bottom:826.299600px;}
.y1ee{bottom:826.599600px;}
.y190{bottom:826.605150px;}
.y1bc{bottom:828.399600px;}
.y51{bottom:829.599600px;}
.y7f{bottom:829.841250px;}
.y9{bottom:832.697700px;}
.y11{bottom:833.497650px;}
.y157{bottom:835.599600px;}
.y119{bottom:836.258826px;}
.yb0{bottom:844.299600px;}
.y1ed{bottom:844.599600px;}
.y18f{bottom:844.605150px;}
.y1bb{bottom:846.399600px;}
.y50{bottom:847.599600px;}
.y7e{bottom:847.841250px;}
.yb7{bottom:850.690500px;}
.y8{bottom:850.697700px;}
.y156{bottom:853.599600px;}
.yd8{bottom:858.063300px;}
.yaf{bottom:862.299600px;}
.y1ec{bottom:862.599600px;}
.y18e{bottom:862.605150px;}
.y1ba{bottom:864.399600px;}
.y10{bottom:864.502650px;}
.y4f{bottom:865.599600px;}
.y7{bottom:868.697700px;}
.y11a{bottom:869.441409px;}
.y155{bottom:871.599600px;}
.yd4{bottom:875.190860px;}
.yae{bottom:880.299600px;}
.y1eb{bottom:880.599600px;}
.y18d{bottom:880.605150px;}
.y1b9{bottom:882.399600px;}
.y4e{bottom:883.599600px;}
.y7d{bottom:883.841250px;}
.ycb{bottom:886.292850px;}
.yf{bottom:887.497650px;}
.y6{bottom:891.692700px;}
.yad{bottom:898.299600px;}
.y1ea{bottom:898.599600px;}
.y18c{bottom:898.605150px;}
.y154{bottom:899.722050px;}
.y1b8{bottom:900.399600px;}
.y4d{bottom:901.599600px;}
.y7c{bottom:901.841250px;}
.ycc{bottom:908.419732px;}
.yac{bottom:916.299600px;}
.y1e9{bottom:916.599600px;}
.y18b{bottom:916.605150px;}
.yfb{bottom:918.399600px;}
.y4c{bottom:919.599600px;}
.y7b{bottom:919.839600px;}
.y153{bottom:921.079050px;}
.yc{bottom:925.899150px;}
.ycd{bottom:930.529481px;}
.yd9{bottom:932.766450px;}
.y1e8{bottom:934.599600px;}
.y18a{bottom:934.605150px;}
.yfa{bottom:936.399600px;}
.y4b{bottom:937.599600px;}
.y152{bottom:942.436050px;}
.yb{bottom:945.699150px;}
.yd7{bottom:946.186419px;}
.yab{bottom:952.299600px;}
.y1e7{bottom:952.599600px;}
.y189{bottom:952.605150px;}
.yce{bottom:952.656363px;}
.yf9{bottom:954.399600px;}
.yd6{bottom:955.695450px;}
.y7a{bottom:955.839600px;}
.y151{bottom:963.793050px;}
.yaa{bottom:970.299600px;}
.y1e6{bottom:970.599600px;}
.y188{bottom:970.605150px;}
.yf8{bottom:972.399600px;}
.y4a{bottom:973.599600px;}
.y79{bottom:973.839600px;}
.y4{bottom:973.872450px;}
.ycf{bottom:974.766113px;}
.y150{bottom:985.150050px;}
.ya9{bottom:988.299600px;}
.y1e5{bottom:988.599600px;}
.y187{bottom:988.605150px;}
.yf7{bottom:990.399600px;}
.y49{bottom:991.599600px;}
.y78{bottom:991.839600px;}
.yd0{bottom:996.892995px;}
.y3{bottom:1002.672450px;}
.ya8{bottom:1006.299600px;}
.y14f{bottom:1006.507050px;}
.y1e4{bottom:1006.599600px;}
.y186{bottom:1006.605150px;}
.yf6{bottom:1008.399600px;}
.y48{bottom:1009.599600px;}
.y77{bottom:1009.839600px;}
.yd1{bottom:1019.002744px;}
.y14e{bottom:1022.707050px;}
.ya7{bottom:1024.299600px;}
.y1e3{bottom:1024.599600px;}
.y185{bottom:1024.605150px;}
.yf5{bottom:1026.399600px;}
.y47{bottom:1027.599600px;}
.y5{bottom:1034.714850px;}
.yd{bottom:1040.058900px;}
.yd2{bottom:1041.112494px;}
.ya6{bottom:1042.299600px;}
.y1e2{bottom:1042.599600px;}
.y184{bottom:1042.605150px;}
.yf4{bottom:1044.399600px;}
.y46{bottom:1045.599600px;}
.y76{bottom:1045.839600px;}
.y14d{bottom:1057.241250px;}
.ya5{bottom:1060.299600px;}
.y1e1{bottom:1060.599600px;}
.y183{bottom:1060.605150px;}
.yf3{bottom:1062.399600px;}
.yd3{bottom:1063.239376px;}
.y45{bottom:1063.599600px;}
.y75{bottom:1063.839600px;}
.y14c{bottom:1075.241250px;}
.ye{bottom:1076.675700px;}
.ya4{bottom:1078.299600px;}
.y1e0{bottom:1078.599600px;}
.y182{bottom:1078.605150px;}
.yf2{bottom:1080.399600px;}
.y44{bottom:1081.599600px;}
.y74{bottom:1081.839600px;}
.h1b{height:-8.730000px;}
.h2a{height:20.200298px;}
.h2c{height:22.135702px;}
.h28{height:23.418633px;}
.h8{height:24.287871px;}
.h14{height:24.594794px;}
.h23{height:25.727871px;}
.h2b{height:25.859654px;}
.h4{height:26.235000px;}
.h16{height:26.950957px;}
.h26{height:28.192562px;}
.h12{height:28.513085px;}
.h6{height:28.858500px;}
.h21{height:29.826719px;}
.h17{height:34.314882px;}
.h2d{height:36.597656px;}
.h5{height:37.520508px;}
.h13{height:37.854140px;}
.h2f{height:38.556000px;}
.h22{height:39.597745px;}
.h1{height:40.500000px;}
.ha{height:40.634766px;}
.hf{height:40.664062px;}
.h10{height:40.670663px;}
.h9{height:41.660156px;}
.hc{height:41.689453px;}
.h1f{height:44.284951px;}
.hb{height:44.730469px;}
.h2e{height:45.000000px;}
.h19{height:50.027344px;}
.h1c{height:52.417969px;}
.h3{height:54.000000px;}
.h1e{height:60.206836px;}
.h1a{height:66.388184px;}
.h7{height:71.400000px;}
.h2{height:72.000000px;}
.h1d{height:130.140000px;}
.he{height:218.640203px;}
.h15{height:226.147500px;}
.h11{height:238.009500px;}
.h24{height:247.473000px;}
.h25{height:247.581000px;}
.h20{height:252.195000px;}
.h29{height:255.108000px;}
.h27{height:255.382500px;}
.h18{height:577.800000px;}
.hd{height:774.186000px;}
.h0{height:1188.000000px;}
.w1{width:11.728500px;}
.w6{width:269.820000px;}
.w8{width:379.912500px;}
.w9{width:380.011500px;}
.w7{width:382.915500px;}
.w3{width:393.948000px;}
.w2{width:396.000000px;}
.w5{width:705.600000px;}
.w4{width:712.800000px;}
.w0{width:918.000000px;}
.x21{left:-1.071238px;}
.x0{left:0.000000px;}
.xf{left:2.051850px;}
.x1b{left:7.200000px;}
.x1d{left:10.800000px;}
.x28{left:16.241850px;}
.x29{left:25.937850px;}
.x24{left:50.099250px;}
.x2b{left:52.105350px;}
.x3{left:54.567750px;}
.x4{left:55.767750px;}
.x2{left:56.970000px;}
.x26{left:60.973950px;}
.x8{left:66.280050px;}
.x30{left:81.000000px;}
.x9{left:89.247600px;}
.x19{left:102.600000px;}
.x23{left:104.103462px;}
.x1c{left:109.800000px;}
.x22{left:110.895900px;}
.x1f{left:120.600000px;}
.x1e{left:156.810000px;}
.x2d{left:187.795500px;}
.x25{left:192.582150px;}
.x2a{left:211.226700px;}
.xd{left:228.692400px;}
.x2c{left:253.504650px;}
.x6{left:295.287600px;}
.xe{left:304.736237px;}
.x15{left:360.828300px;}
.x27{left:379.994850px;}
.x33{left:381.597900px;}
.x2e{left:390.039000px;}
.x20{left:399.362550px;}
.x10{left:402.210810px;}
.x5{left:453.000000px;}
.xa{left:468.000000px;}
.x14{left:470.052000px;}
.x32{left:471.150000px;}
.x18{left:482.106150px;}
.x12{left:491.869311px;}
.x31{left:495.000000px;}
.x11{left:496.212450px;}
.x13{left:538.941404px;}
.x17{left:596.785500px;}
.x2f{left:690.750000px;}
.xb{left:718.500000px;}
.x1{left:719.766000px;}
.x7{left:732.925200px;}
.x1a{left:735.120000px;}
.x16{left:829.409850px;}
.xc{left:906.271500px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v1{vertical-align:-17.760000pt;}
.v5{vertical-align:-4.559467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.793727pt;}
.v7{vertical-align:17.760000pt;}
.v3{vertical-align:19.536000pt;}
.v6{vertical-align:29.440000pt;}
.ls6{letter-spacing:-1.600000pt;}
.ls1e{letter-spacing:-1.416640pt;}
.ls1a{letter-spacing:-0.291814pt;}
.ls1b{letter-spacing:-0.218861pt;}
.ls7{letter-spacing:-0.213333pt;}
.ls19{letter-spacing:-0.145907pt;}
.ls25{letter-spacing:-0.127445pt;}
.ls24{letter-spacing:-0.114472pt;}
.ls18{letter-spacing:-0.109430pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls26{letter-spacing:-0.100064pt;}
.ls1d{letter-spacing:-0.033376pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.001067pt;}
.ls1{letter-spacing:0.053333pt;}
.ls1c{letter-spacing:0.060916pt;}
.lse{letter-spacing:0.072954pt;}
.ls21{letter-spacing:0.076315pt;}
.lsf{letter-spacing:0.091200pt;}
.ls10{letter-spacing:0.097028pt;}
.ls13{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.266667pt;}
.ls3{letter-spacing:0.373333pt;}
.ls1f{letter-spacing:0.521920pt;}
.ls20{letter-spacing:1.717080pt;}
.lsa{letter-spacing:2.006224pt;}
.ls23{letter-spacing:2.246960pt;}
.ls9{letter-spacing:4.559600pt;}
.lsd{letter-spacing:5.106752pt;}
.ls22{letter-spacing:6.295960pt;}
.ls11{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.112976pt;}
.ls12{letter-spacing:16.000000pt;}
.lsc{letter-spacing:16.961712pt;}
.ls17{letter-spacing:45.257920pt;}
.ls16{letter-spacing:45.556160pt;}
.ls15{letter-spacing:83.432640pt;}
.ls14{letter-spacing:104.234880pt;}
.ws46{word-spacing:-73.143360pt;}
.ws3{word-spacing:-14.666667pt;}
.ws22{word-spacing:-13.333333pt;}
.wsb8{word-spacing:-10.416000pt;}
.ws68{word-spacing:-9.539333pt;}
.ws6a{word-spacing:-9.424861pt;}
.ws43{word-spacing:-9.119200pt;}
.ws41{word-spacing:-9.009770pt;}
.ws42{word-spacing:-8.827386pt;}
.ws2{word-spacing:-7.773333pt;}
.ws45{word-spacing:-7.509600pt;}
.ws6e{word-spacing:-7.489867pt;}
.ws1{word-spacing:-7.421979pt;}
.ws0{word-spacing:-6.747253pt;}
.ws69{word-spacing:-6.343600pt;}
.ws36{word-spacing:-2.933333pt;}
.ws9d{word-spacing:-2.666667pt;}
.wsb7{word-spacing:-2.613333pt;}
.ws7{word-spacing:-2.400000pt;}
.wsa3{word-spacing:-2.346667pt;}
.wsc0{word-spacing:-2.240000pt;}
.wsb9{word-spacing:-2.208000pt;}
.ws19{word-spacing:-2.186667pt;}
.wsa1{word-spacing:-2.133333pt;}
.ws8e{word-spacing:-2.026667pt;}
.wsc3{word-spacing:-1.973333pt;}
.ws74{word-spacing:-1.920000pt;}
.ws2f{word-spacing:-1.813333pt;}
.wsad{word-spacing:-1.706667pt;}
.wsa4{word-spacing:-1.600000pt;}
.wsb2{word-spacing:-1.493333pt;}
.wsaf{word-spacing:-1.440000pt;}
.ws39{word-spacing:-1.386667pt;}
.ws35{word-spacing:-1.333333pt;}
.ws8a{word-spacing:-1.173333pt;}
.ws31{word-spacing:-1.120000pt;}
.ws32{word-spacing:-0.960000pt;}
.ws9a{word-spacing:-0.853333pt;}
.ws9{word-spacing:-0.821333pt;}
.ws12{word-spacing:-0.693333pt;}
.ws2a{word-spacing:-0.586667pt;}
.ws67{word-spacing:-0.521920pt;}
.ws47{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.426667pt;}
.ws13{word-spacing:-0.266667pt;}
.wsa8{word-spacing:-0.160000pt;}
.ws7b{word-spacing:-0.152629pt;}
.ws87{word-spacing:-0.119838pt;}
.ws5a{word-spacing:-0.097028pt;}
.ws5d{word-spacing:-0.060916pt;}
.wsd{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws88{word-spacing:0.100064pt;}
.ws10{word-spacing:0.106667pt;}
.ws7a{word-spacing:0.114472pt;}
.ws4d{word-spacing:0.145907pt;}
.ws5e{word-spacing:0.212477pt;}
.wsf{word-spacing:0.213333pt;}
.ws53{word-spacing:0.218861pt;}
.ws1a{word-spacing:0.266667pt;}
.ws75{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.480000pt;}
.ws9f{word-spacing:0.533333pt;}
.ws81{word-spacing:0.534203pt;}
.ws11{word-spacing:0.640000pt;}
.wsba{word-spacing:0.672000pt;}
.ws96{word-spacing:0.693333pt;}
.wsb6{word-spacing:0.746667pt;}
.ws63{word-spacing:0.896000pt;}
.ws95{word-spacing:0.906667pt;}
.ws4a{word-spacing:0.911920pt;}
.ws65{word-spacing:0.960000pt;}
.ws73{word-spacing:1.013333pt;}
.ws64{word-spacing:1.024000pt;}
.ws77{word-spacing:1.066667pt;}
.ws8f{word-spacing:1.120000pt;}
.ws94{word-spacing:1.173333pt;}
.ws92{word-spacing:1.226667pt;}
.ws16{word-spacing:1.333333pt;}
.wsb4{word-spacing:1.440000pt;}
.ws97{word-spacing:1.546667pt;}
.ws7d{word-spacing:1.564451pt;}
.ws9b{word-spacing:1.600000pt;}
.wsb{word-spacing:1.653333pt;}
.ws58{word-spacing:1.677933pt;}
.ws7c{word-spacing:1.678923pt;}
.ws89{word-spacing:1.706667pt;}
.ws8{word-spacing:1.776000pt;}
.ws2c{word-spacing:1.813333pt;}
.ws79{word-spacing:1.869709pt;}
.ws78{word-spacing:1.907867pt;}
.ws86{word-spacing:1.917406pt;}
.ws23{word-spacing:1.920000pt;}
.ws4e{word-spacing:1.969747pt;}
.ws33{word-spacing:1.973333pt;}
.ws4f{word-spacing:2.006224pt;}
.ws82{word-spacing:2.060496pt;}
.ws84{word-spacing:2.067203pt;}
.wsc1{word-spacing:2.080000pt;}
.wsbf{word-spacing:2.133333pt;}
.ws3d{word-spacing:2.186667pt;}
.ws85{word-spacing:2.217001pt;}
.ws38{word-spacing:2.240000pt;}
.wsa9{word-spacing:2.293333pt;}
.ws6{word-spacing:2.496000pt;}
.ws2d{word-spacing:2.613333pt;}
.ws59{word-spacing:2.699283pt;}
.wsab{word-spacing:2.720000pt;}
.ws48{word-spacing:2.826667pt;}
.ws2b{word-spacing:2.933333pt;}
.ws18{word-spacing:2.986667pt;}
.ws1f{word-spacing:3.093333pt;}
.wsae{word-spacing:3.200000pt;}
.wsa0{word-spacing:3.253333pt;}
.wsc{word-spacing:3.306667pt;}
.ws2e{word-spacing:3.466667pt;}
.ws90{word-spacing:3.573333pt;}
.wsb0{word-spacing:3.626667pt;}
.wsa5{word-spacing:3.680000pt;}
.ws9e{word-spacing:4.160000pt;}
.ws8b{word-spacing:4.213333pt;}
.ws14{word-spacing:4.320000pt;}
.wse{word-spacing:4.373333pt;}
.ws28{word-spacing:4.426667pt;}
.ws4c{word-spacing:4.523123pt;}
.ws91{word-spacing:4.586667pt;}
.ws4b{word-spacing:4.596077pt;}
.wsa2{word-spacing:4.693333pt;}
.wsaa{word-spacing:4.746667pt;}
.wsbe{word-spacing:4.906667pt;}
.ws72{word-spacing:4.960000pt;}
.wsa{word-spacing:5.013333pt;}
.ws57{word-spacing:5.070275pt;}
.ws1b{word-spacing:5.386667pt;}
.ws25{word-spacing:5.440000pt;}
.wsc2{word-spacing:5.653333pt;}
.ws20{word-spacing:5.866667pt;}
.ws1d{word-spacing:6.026667pt;}
.ws15{word-spacing:6.080000pt;}
.ws9c{word-spacing:6.240000pt;}
.ws7e{word-spacing:6.257803pt;}
.ws61{word-spacing:6.336000pt;}
.ws49{word-spacing:6.346667pt;}
.wsac{word-spacing:6.400000pt;}
.ws7f{word-spacing:6.448589pt;}
.wsb1{word-spacing:6.453333pt;}
.ws60{word-spacing:6.464000pt;}
.wsbc{word-spacing:6.576000pt;}
.ws30{word-spacing:6.773333pt;}
.ws17{word-spacing:6.826667pt;}
.ws98{word-spacing:6.880000pt;}
.ws3f{word-spacing:6.986667pt;}
.ws5{word-spacing:6.997333pt;}
.ws52{word-spacing:7.076499pt;}
.ws76{word-spacing:7.146667pt;}
.ws1c{word-spacing:7.200000pt;}
.ws80{word-spacing:7.402523pt;}
.ws37{word-spacing:7.573333pt;}
.ws3b{word-spacing:7.786667pt;}
.ws29{word-spacing:7.893333pt;}
.ws21{word-spacing:8.000000pt;}
.wsc4{word-spacing:8.106667pt;}
.ws50{word-spacing:8.170803pt;}
.wsa6{word-spacing:8.213333pt;}
.ws51{word-spacing:8.243757pt;}
.wsa7{word-spacing:8.373333pt;}
.ws83{word-spacing:8.388651pt;}
.ws1e{word-spacing:8.586667pt;}
.ws24{word-spacing:8.800000pt;}
.ws99{word-spacing:9.013333pt;}
.ws40{word-spacing:9.066667pt;}
.ws5c{word-spacing:9.265107pt;}
.ws5b{word-spacing:9.301584pt;}
.wsb5{word-spacing:9.546667pt;}
.wsbb{word-spacing:9.696000pt;}
.ws34{word-spacing:9.813333pt;}
.ws8c{word-spacing:10.080000pt;}
.ws27{word-spacing:10.453333pt;}
.ws8d{word-spacing:10.506667pt;}
.ws93{word-spacing:10.880000pt;}
.ws3e{word-spacing:11.360000pt;}
.wsbd{word-spacing:11.520000pt;}
.wsb3{word-spacing:11.680000pt;}
.ws62{word-spacing:15.936000pt;}
.ws55{word-spacing:16.742851pt;}
.ws3a{word-spacing:16.746667pt;}
.ws54{word-spacing:16.888758pt;}
.ws56{word-spacing:16.925235pt;}
.ws66{word-spacing:20.096000pt;}
.ws6b{word-spacing:69.362123pt;}
.ws70{word-spacing:75.316901pt;}
.ws6d{word-spacing:95.735883pt;}
.ws6c{word-spacing:95.976992pt;}
.ws6f{word-spacing:135.890334pt;}
.ws26{word-spacing:178.666667pt;}
.ws44{word-spacing:209.643332pt;}
.ws71{word-spacing:621.744000pt;}
._15{margin-left:-2864.784000pt;}
._d{margin-left:-2854.368000pt;}
._12{margin-left:-178.666667pt;}
._10{margin-left:-99.829333pt;}
._e{margin-left:-21.334915pt;}
._33{margin-left:-18.880000pt;}
._13{margin-left:-10.997333pt;}
._3{margin-left:-7.901867pt;}
._35{margin-left:-6.784000pt;}
._8{margin-left:-5.776000pt;}
._0{margin-left:-4.464000pt;}
._4{margin-left:-3.306667pt;}
._5{margin-left:-2.357333pt;}
._1{margin-left:-1.440000pt;}
._2{width:1.610667pt;}
._9{width:3.312000pt;}
._6{width:4.213333pt;}
._7{width:5.157333pt;}
._c{width:6.410667pt;}
._a{width:7.365333pt;}
._b{width:8.336000pt;}
._11{width:9.370667pt;}
._f{width:10.608000pt;}
._14{width:11.797333pt;}
._2b{width:14.352000pt;}
._36{width:16.000000pt;}
._16{width:16.960000pt;}
._2c{width:18.752000pt;}
._30{width:20.490667pt;}
._1a{width:22.349762pt;}
._2f{width:24.853333pt;}
._1b{width:29.839629pt;}
._32{width:32.160000pt;}
._34{width:42.666667pt;}
._2d{width:51.200000pt;}
._21{width:64.266667pt;}
._19{width:73.310815pt;}
._18{width:82.448452pt;}
._17{width:88.638229pt;}
._1e{width:116.544000pt;}
._31{width:141.386667pt;}
._1d{width:148.704000pt;}
._1c{width:151.043951pt;}
._2e{width:178.666667pt;}
._1f{width:278.112000pt;}
._22{width:289.344000pt;}
._28{width:409.392000pt;}
._25{width:411.749333pt;}
._23{width:433.392000pt;}
._2a{width:497.856000pt;}
._27{width:500.544000pt;}
._26{width:502.901333pt;}
._29{width:521.856000pt;}
._24{width:575.232000pt;}
._20{width:621.744000pt;}
.fsa{font-size:24.257067pt;}
.fs15{font-size:25.016000pt;}
.fs11{font-size:25.374400pt;}
.fs17{font-size:27.412800pt;}
.fs14{font-size:29.959467pt;}
.fsb{font-size:30.458133pt;}
.fs3{font-size:31.093333pt;}
.fs12{font-size:31.861333pt;}
.fs16{font-size:32.024533pt;}
.fsc{font-size:33.376000pt;}
.fs5{font-size:34.202667pt;}
.fs13{font-size:34.913600pt;}
.fs9{font-size:36.476800pt;}
.fs10{font-size:38.157333pt;}
.fsd{font-size:42.495467pt;}
.fse{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fsf{font-size:74.560000pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:90.666667pt;}
.fs8{font-size:286.759613pt;}
.ye6{bottom:-252.773333pt;}
.ye5{bottom:-225.173333pt;}
.ye4{bottom:-197.573333pt;}
.y114{bottom:-192.678183pt;}
.y113{bottom:-176.222833pt;}
.ye3{bottom:-169.973333pt;}
.y130{bottom:-168.929637pt;}
.y112{bottom:-159.767483pt;}
.y12f{bottom:-155.994637pt;}
.y111{bottom:-143.315812pt;}
.y12e{bottom:-143.074617pt;}
.ye2{bottom:-142.373333pt;}
.y12d{bottom:-130.154597pt;}
.y110{bottom:-126.860462pt;}
.y12c{bottom:-117.234577pt;}
.ye1{bottom:-114.773333pt;}
.y10f{bottom:-110.405112pt;}
.y12b{bottom:-104.314557pt;}
.y10e{bottom:-93.949762pt;}
.y12a{bottom:-91.394537pt;}
.ye0{bottom:-87.173333pt;}
.y129{bottom:-78.511967pt;}
.y10d{bottom:-77.494412pt;}
.y128{bottom:-65.591947pt;}
.y10c{bottom:-61.039062pt;}
.ydf{bottom:-59.573333pt;}
.y127{bottom:-52.671927pt;}
.y10b{bottom:-44.564633pt;}
.y126{bottom:-39.751907pt;}
.yca{bottom:-36.404649pt;}
.yde{bottom:-31.973333pt;}
.y10a{bottom:-28.109283pt;}
.y125{bottom:-26.831887pt;}
.yc9{bottom:-20.655790pt;}
.y124{bottom:-13.911867pt;}
.y109{bottom:-11.653933pt;}
.ydd{bottom:-7.973333pt;}
.yc8{bottom:-7.022586pt;}
.y123{bottom:-2.677067pt;}
.y0{bottom:0.000000pt;}
.y121{bottom:1.987200pt;}
.y108{bottom:2.655067pt;}
.ye9{bottom:4.960000pt;}
.y139{bottom:7.259467pt;}
.y13b{bottom:8.994667pt;}
.ye8{bottom:23.760000pt;}
.y138{bottom:31.039867pt;}
.y131{bottom:39.153867pt;}
.y40{bottom:65.138133pt;}
.ya3{bottom:65.512000pt;}
.y14a{bottom:67.353333pt;}
.y132{bottom:68.851200pt;}
.y180{bottom:68.973467pt;}
.y181{bottom:69.053467pt;}
.yf1{bottom:69.354667pt;}
.y14b{bottom:70.017333pt;}
.y1{bottom:70.273467pt;}
.y2{bottom:70.669467pt;}
.yf0{bottom:70.686667pt;}
.y1df{bottom:72.104267pt;}
.y13a{bottom:82.407867pt;}
.y34{bottom:92.467067pt;}
.ydc{bottom:92.800000pt;}
.y1de{bottom:93.020267pt;}
.y3f{bottom:93.160400pt;}
.y1b7{bottom:94.760133pt;}
.y1d8{bottom:96.355200pt;}
.y73{bottom:97.421867pt;}
.ya2{bottom:97.636667pt;}
.yea{bottom:97.946667pt;}
.y133{bottom:98.560933pt;}
.yef{bottom:99.626667pt;}
.y17e{bottom:102.755200pt;}
.y1dd{bottom:107.684267pt;}
.y33{bottom:108.467067pt;}
.y3e{bottom:109.160400pt;}
.y1b6{bottom:110.760133pt;}
.y120{bottom:111.514267pt;}
.y1d7{bottom:112.355200pt;}
.y72{bottom:113.421867pt;}
.ya1{bottom:113.636667pt;}
.y43{bottom:115.107628pt;}
.y17d{bottom:118.755200pt;}
.yee{bottom:122.346667pt;}
.y1dc{bottom:122.348267pt;}
.y32{bottom:124.467067pt;}
.y3d{bottom:125.160400pt;}
.y1b5{bottom:126.760133pt;}
.y134{bottom:128.258267pt;}
.y1d6{bottom:128.355200pt;}
.y71{bottom:129.421867pt;}
.ya0{bottom:129.636667pt;}
.y17c{bottom:134.755200pt;}
.y1db{bottom:137.012267pt;}
.y31{bottom:140.467067pt;}
.y3c{bottom:141.160400pt;}
.y1b4{bottom:142.760133pt;}
.y1d5{bottom:144.355200pt;}
.yed{bottom:145.146667pt;}
.y70{bottom:145.421867pt;}
.y9f{bottom:145.636667pt;}
.y17b{bottom:150.755200pt;}
.y1da{bottom:151.676267pt;}
.y30{bottom:156.467067pt;}
.y3b{bottom:157.160400pt;}
.y135{bottom:157.968133pt;}
.y1b3{bottom:158.760133pt;}
.y149{bottom:159.555200pt;}
.y1d4{bottom:160.355200pt;}
.y9e{bottom:161.636667pt;}
.y17a{bottom:166.755200pt;}
.yec{bottom:167.946667pt;}
.y2f{bottom:172.467067pt;}
.y1b2{bottom:174.760133pt;}
.yd5{bottom:175.015067pt;}
.y148{bottom:175.555200pt;}
.y1d3{bottom:176.355200pt;}
.y6f{bottom:177.421867pt;}
.y9d{bottom:177.636667pt;}
.y179{bottom:182.755200pt;}
.y136{bottom:187.677867pt;}
.y2e{bottom:188.467067pt;}
.y3a{bottom:189.160400pt;}
.yeb{bottom:190.746667pt;}
.y1b1{bottom:190.760133pt;}
.y147{bottom:191.555200pt;}
.y1d2{bottom:192.355200pt;}
.y6e{bottom:193.421867pt;}
.y9c{bottom:193.636667pt;}
.y178{bottom:198.755200pt;}
.y2d{bottom:204.467067pt;}
.y39{bottom:205.160400pt;}
.y1b0{bottom:206.760133pt;}
.yc7{bottom:208.345560pt;}
.y1d1{bottom:208.355200pt;}
.y6d{bottom:209.421867pt;}
.y9b{bottom:209.636667pt;}
.y11c{bottom:212.041867pt;}
.y177{bottom:214.755200pt;}
.y137{bottom:217.375200pt;}
.y146{bottom:219.845067pt;}
.y2c{bottom:220.467067pt;}
.y38{bottom:221.160400pt;}
.y1af{bottom:222.760133pt;}
.yc6{bottom:224.076180pt;}
.y1d0{bottom:224.355200pt;}
.y6c{bottom:225.421867pt;}
.y9a{bottom:225.636667pt;}
.y176{bottom:230.755200pt;}
.y2b{bottom:236.467067pt;}
.y37{bottom:237.160400pt;}
.y1ae{bottom:238.760133pt;}
.y145{bottom:238.829067pt;}
.yc5{bottom:239.803168pt;}
.y1cf{bottom:240.355200pt;}
.y99{bottom:241.636667pt;}
.y175{bottom:246.755200pt;}
.y2a{bottom:252.467067pt;}
.y36{bottom:253.160400pt;}
.y1ad{bottom:254.760133pt;}
.yc4{bottom:255.533788pt;}
.y1ce{bottom:256.355200pt;}
.y6b{bottom:257.421867pt;}
.y98{bottom:257.636667pt;}
.y144{bottom:257.813067pt;}
.y174{bottom:262.755200pt;}
.y29{bottom:268.467067pt;}
.y1ac{bottom:270.760133pt;}
.yc3{bottom:271.264408pt;}
.y1cd{bottom:272.355200pt;}
.y6a{bottom:273.421867pt;}
.y97{bottom:273.636667pt;}
.y143{bottom:276.797067pt;}
.y173{bottom:278.755200pt;}
.y28{bottom:284.467067pt;}
.y35{bottom:285.160400pt;}
.y1ab{bottom:286.760133pt;}
.yc2{bottom:286.995028pt;}
.y1cc{bottom:288.355200pt;}
.y69{bottom:289.421867pt;}
.y172{bottom:294.755200pt;}
.y142{bottom:295.781067pt;}
.yc1{bottom:302.725648pt;}
.y1aa{bottom:302.760133pt;}
.y1cb{bottom:304.355200pt;}
.y68{bottom:305.421867pt;}
.y96{bottom:305.636667pt;}
.y27{bottom:309.000400pt;}
.y171{bottom:310.755200pt;}
.y141{bottom:314.765067pt;}
.y42{bottom:316.632400pt;}
.yc0{bottom:318.456268pt;}
.y1a9{bottom:318.760133pt;}
.y1d9{bottom:320.355200pt;}
.y170{bottom:326.755200pt;}
.y140{bottom:333.749067pt;}
.ybf{bottom:334.186888pt;}
.y1a8{bottom:334.760133pt;}
.y1ca{bottom:336.355200pt;}
.y67{bottom:337.421867pt;}
.y95{bottom:337.636667pt;}
.y26{bottom:338.604000pt;}
.y16f{bottom:342.755200pt;}
.ybe{bottom:349.917508pt;}
.y1a7{bottom:350.760133pt;}
.y1c9{bottom:352.355200pt;}
.y25{bottom:353.270667pt;}
.y66{bottom:353.421867pt;}
.y94{bottom:353.636667pt;}
.y13f{bottom:354.305067pt;}
.y16e{bottom:358.755200pt;}
.ybd{bottom:365.648128pt;}
.y1a6{bottom:366.760133pt;}
.y41{bottom:367.834667pt;}
.y1c8{bottom:368.355200pt;}
.y65{bottom:369.421867pt;}
.y93{bottom:369.636667pt;}
.y13e{bottom:373.289067pt;}
.y16d{bottom:374.755200pt;}
.ybc{bottom:381.378748pt;}
.y24{bottom:382.604000pt;}
.y1a5{bottom:382.760133pt;}
.y1c7{bottom:384.355200pt;}
.y64{bottom:385.421867pt;}
.y92{bottom:385.636667pt;}
.y16c{bottom:390.755200pt;}
.y13d{bottom:392.273067pt;}
.ybb{bottom:397.109368pt;}
.y23{bottom:397.270667pt;}
.y1a4{bottom:398.760133pt;}
.y1c6{bottom:400.355200pt;}
.y63{bottom:401.421867pt;}
.y91{bottom:401.636667pt;}
.y16b{bottom:406.755200pt;}
.y22{bottom:411.937333pt;}
.yba{bottom:412.858227pt;}
.y1a3{bottom:414.760133pt;}
.y1c5{bottom:416.355200pt;}
.y62{bottom:417.421867pt;}
.y17f{bottom:422.755200pt;}
.y13c{bottom:424.570133pt;}
.y21{bottom:426.604000pt;}
.yb9{bottom:428.588847pt;}
.y1a2{bottom:430.760133pt;}
.y1c4{bottom:432.355200pt;}
.y61{bottom:433.421867pt;}
.y90{bottom:433.636667pt;}
.y16a{bottom:438.755200pt;}
.y20{bottom:441.270667pt;}
.yb8{bottom:444.319467pt;}
.y1a1{bottom:446.760133pt;}
.y102{bottom:448.355200pt;}
.y60{bottom:449.421867pt;}
.y8f{bottom:449.636667pt;}
.y169{bottom:454.755200pt;}
.y1f{bottom:455.937333pt;}
.y1a0{bottom:462.760133pt;}
.y101{bottom:464.355200pt;}
.y5f{bottom:465.421867pt;}
.y8e{bottom:465.636667pt;}
.y168{bottom:470.755200pt;}
.y19f{bottom:478.760133pt;}
.y100{bottom:480.355200pt;}
.y8d{bottom:481.636667pt;}
.y1e{bottom:485.270667pt;}
.y167{bottom:486.755200pt;}
.y19e{bottom:494.760133pt;}
.yff{bottom:496.355200pt;}
.y5e{bottom:497.421867pt;}
.y8c{bottom:497.636667pt;}
.y1d{bottom:499.937333pt;}
.y166{bottom:502.755200pt;}
.y1fc{bottom:510.755200pt;}
.y19d{bottom:510.760133pt;}
.yfe{bottom:512.355200pt;}
.y5d{bottom:513.421867pt;}
.y8b{bottom:513.636667pt;}
.y1c{bottom:514.604000pt;}
.y165{bottom:518.755200pt;}
.y1fb{bottom:526.755200pt;}
.y106{bottom:528.355200pt;}
.y1b{bottom:529.270667pt;}
.y5c{bottom:529.421867pt;}
.y164{bottom:534.755200pt;}
.y1fa{bottom:542.755200pt;}
.y19c{bottom:542.760133pt;}
.y1a{bottom:543.937333pt;}
.yfd{bottom:544.355200pt;}
.y5b{bottom:545.421867pt;}
.y8a{bottom:545.636667pt;}
.y163{bottom:550.755200pt;}
.y1f9{bottom:558.755200pt;}
.y19b{bottom:558.760133pt;}
.yfc{bottom:560.355200pt;}
.y5a{bottom:561.421867pt;}
.y89{bottom:561.636667pt;}
.y162{bottom:566.755200pt;}
.y19{bottom:573.270667pt;}
.y1f8{bottom:574.755200pt;}
.y19a{bottom:574.760133pt;}
.y105{bottom:576.355200pt;}
.y59{bottom:577.421867pt;}
.y88{bottom:577.636667pt;}
.y161{bottom:582.755200pt;}
.y107{bottom:587.026667pt;}
.y18{bottom:587.937333pt;}
.y11f{bottom:590.174667pt;}
.y11b{bottom:590.270667pt;}
.y1f7{bottom:590.755200pt;}
.y199{bottom:590.760133pt;}
.y1c3{bottom:592.355200pt;}
.y87{bottom:593.636667pt;}
.y160{bottom:598.755200pt;}
.y11e{bottom:599.888800pt;}
.y17{bottom:602.604000pt;}
.y1f6{bottom:606.755200pt;}
.y198{bottom:606.760133pt;}
.y104{bottom:608.355200pt;}
.y58{bottom:609.421867pt;}
.y86{bottom:609.636667pt;}
.ye7{bottom:614.160000pt;}
.ydb{bottom:614.170000pt;}
.y15f{bottom:614.755200pt;}
.y11d{bottom:614.992667pt;}
.y1f5{bottom:622.755200pt;}
.y197{bottom:622.760133pt;}
.y103{bottom:624.355200pt;}
.y115{bottom:625.326800pt;}
.y57{bottom:625.421867pt;}
.y85{bottom:625.636667pt;}
.yda{bottom:630.170000pt;}
.y15e{bottom:630.755200pt;}
.y16{bottom:637.388933pt;}
.y122{bottom:638.593333pt;}
.y1f4{bottom:638.755200pt;}
.y196{bottom:638.760133pt;}
.y1c2{bottom:640.355200pt;}
.y56{bottom:641.421867pt;}
.y84{bottom:641.636667pt;}
.y15d{bottom:646.755200pt;}
.y15{bottom:652.055600pt;}
.yb6{bottom:654.488533pt;}
.y1f3{bottom:654.755200pt;}
.y195{bottom:654.760133pt;}
.y116{bottom:654.822429pt;}
.y1c1{bottom:656.355200pt;}
.y55{bottom:657.421867pt;}
.y83{bottom:657.636667pt;}
.y15c{bottom:662.755200pt;}
.y14{bottom:666.722267pt;}
.yb5{bottom:670.488533pt;}
.y1f2{bottom:670.755200pt;}
.y194{bottom:670.760133pt;}
.y1c0{bottom:672.355200pt;}
.y54{bottom:673.421867pt;}
.y82{bottom:673.636667pt;}
.y15b{bottom:678.755200pt;}
.y117{bottom:684.333989pt;}
.yb4{bottom:686.488533pt;}
.y1f1{bottom:686.755200pt;}
.y193{bottom:686.760133pt;}
.y1bf{bottom:688.355200pt;}
.y53{bottom:689.421867pt;}
.y81{bottom:689.636667pt;}
.y15a{bottom:694.755200pt;}
.yb3{bottom:702.488533pt;}
.y1f0{bottom:702.755200pt;}
.y192{bottom:702.760133pt;}
.y1be{bottom:704.355200pt;}
.y13{bottom:704.446800pt;}
.y80{bottom:705.636667pt;}
.ya{bottom:709.503733pt;}
.y159{bottom:710.755200pt;}
.y118{bottom:713.829619pt;}
.yb2{bottom:718.488533pt;}
.y1ef{bottom:718.755200pt;}
.y191{bottom:718.760133pt;}
.y1bd{bottom:720.355200pt;}
.y12{bottom:720.446800pt;}
.y52{bottom:721.421867pt;}
.y158{bottom:726.755200pt;}
.yb1{bottom:734.488533pt;}
.y1ee{bottom:734.755200pt;}
.y190{bottom:734.760133pt;}
.y1bc{bottom:736.355200pt;}
.y51{bottom:737.421867pt;}
.y7f{bottom:737.636667pt;}
.y9{bottom:740.175733pt;}
.y11{bottom:740.886800pt;}
.y157{bottom:742.755200pt;}
.y119{bottom:743.341179pt;}
.yb0{bottom:750.488533pt;}
.y1ed{bottom:750.755200pt;}
.y18f{bottom:750.760133pt;}
.y1bb{bottom:752.355200pt;}
.y50{bottom:753.421867pt;}
.y7e{bottom:753.636667pt;}
.yb7{bottom:756.169333pt;}
.y8{bottom:756.175733pt;}
.y156{bottom:758.755200pt;}
.yd8{bottom:762.722933pt;}
.yaf{bottom:766.488533pt;}
.y1ec{bottom:766.755200pt;}
.y18e{bottom:766.760133pt;}
.y1ba{bottom:768.355200pt;}
.y10{bottom:768.446800pt;}
.y4f{bottom:769.421867pt;}
.y7{bottom:772.175733pt;}
.y11a{bottom:772.836808pt;}
.y155{bottom:774.755200pt;}
.yd4{bottom:777.947431pt;}
.yae{bottom:782.488533pt;}
.y1eb{bottom:782.755200pt;}
.y18d{bottom:782.760133pt;}
.y1b9{bottom:784.355200pt;}
.y4e{bottom:785.421867pt;}
.y7d{bottom:785.636667pt;}
.ycb{bottom:787.815867pt;}
.yf{bottom:788.886800pt;}
.y6{bottom:792.615733pt;}
.yad{bottom:798.488533pt;}
.y1ea{bottom:798.755200pt;}
.y18c{bottom:798.760133pt;}
.y154{bottom:799.752933pt;}
.y1b8{bottom:800.355200pt;}
.y4d{bottom:801.421867pt;}
.y7c{bottom:801.636667pt;}
.ycc{bottom:807.484206pt;}
.yac{bottom:814.488533pt;}
.y1e9{bottom:814.755200pt;}
.y18b{bottom:814.760133pt;}
.yfb{bottom:816.355200pt;}
.y4c{bottom:817.421867pt;}
.y7b{bottom:817.635200pt;}
.y153{bottom:818.736933pt;}
.yc{bottom:823.021467pt;}
.ycd{bottom:827.137317pt;}
.yd9{bottom:829.125733pt;}
.y1e8{bottom:830.755200pt;}
.y18a{bottom:830.760133pt;}
.yfa{bottom:832.355200pt;}
.y4b{bottom:833.421867pt;}
.y152{bottom:837.720933pt;}
.yb{bottom:840.621467pt;}
.yd7{bottom:841.054595pt;}
.yab{bottom:846.488533pt;}
.y1e7{bottom:846.755200pt;}
.y189{bottom:846.760133pt;}
.yce{bottom:846.805656pt;}
.yf9{bottom:848.355200pt;}
.yd6{bottom:849.507067pt;}
.y7a{bottom:849.635200pt;}
.y151{bottom:856.704933pt;}
.yaa{bottom:862.488533pt;}
.y1e6{bottom:862.755200pt;}
.y188{bottom:862.760133pt;}
.yf8{bottom:864.355200pt;}
.y4a{bottom:865.421867pt;}
.y79{bottom:865.635200pt;}
.y4{bottom:865.664400pt;}
.ycf{bottom:866.458767pt;}
.y150{bottom:875.688933pt;}
.ya9{bottom:878.488533pt;}
.y1e5{bottom:878.755200pt;}
.y187{bottom:878.760133pt;}
.yf7{bottom:880.355200pt;}
.y49{bottom:881.421867pt;}
.y78{bottom:881.635200pt;}
.yd0{bottom:886.127107pt;}
.y3{bottom:891.264400pt;}
.ya8{bottom:894.488533pt;}
.y14f{bottom:894.672933pt;}
.y1e4{bottom:894.755200pt;}
.y186{bottom:894.760133pt;}
.yf6{bottom:896.355200pt;}
.y48{bottom:897.421867pt;}
.y77{bottom:897.635200pt;}
.yd1{bottom:905.780217pt;}
.y14e{bottom:909.072933pt;}
.ya7{bottom:910.488533pt;}
.y1e3{bottom:910.755200pt;}
.y185{bottom:910.760133pt;}
.yf5{bottom:912.355200pt;}
.y47{bottom:913.421867pt;}
.y5{bottom:919.746533pt;}
.yd{bottom:924.496800pt;}
.yd2{bottom:925.433328pt;}
.ya6{bottom:926.488533pt;}
.y1e2{bottom:926.755200pt;}
.y184{bottom:926.760133pt;}
.yf4{bottom:928.355200pt;}
.y46{bottom:929.421867pt;}
.y76{bottom:929.635200pt;}
.y14d{bottom:939.770000pt;}
.ya5{bottom:942.488533pt;}
.y1e1{bottom:942.755200pt;}
.y183{bottom:942.760133pt;}
.yf3{bottom:944.355200pt;}
.yd3{bottom:945.101667pt;}
.y45{bottom:945.421867pt;}
.y75{bottom:945.635200pt;}
.y14c{bottom:955.770000pt;}
.ye{bottom:957.045067pt;}
.ya4{bottom:958.488533pt;}
.y1e0{bottom:958.755200pt;}
.y182{bottom:958.760133pt;}
.yf2{bottom:960.355200pt;}
.y44{bottom:961.421867pt;}
.y74{bottom:961.635200pt;}
.h1b{height:-7.760000pt;}
.h2a{height:17.955820pt;}
.h2c{height:19.676180pt;}
.h28{height:20.816563pt;}
.h8{height:21.589219pt;}
.h14{height:21.862039pt;}
.h23{height:22.869219pt;}
.h2b{height:22.986359pt;}
.h4{height:23.320000pt;}
.h16{height:23.956406pt;}
.h26{height:25.060055pt;}
.h12{height:25.344964pt;}
.h6{height:25.652000pt;}
.h21{height:26.512639pt;}
.h17{height:30.502117pt;}
.h2d{height:32.531250pt;}
.h5{height:33.351562pt;}
.h13{height:33.648124pt;}
.h2f{height:34.272000pt;}
.h22{height:35.197996pt;}
.h1{height:36.000000pt;}
.ha{height:36.119792pt;}
.hf{height:36.145833pt;}
.h10{height:36.151700pt;}
.h9{height:37.031250pt;}
.hc{height:37.057292pt;}
.h1f{height:39.364401pt;}
.hb{height:39.760417pt;}
.h2e{height:40.000000pt;}
.h19{height:44.468750pt;}
.h1c{height:46.593750pt;}
.h3{height:48.000000pt;}
.h1e{height:53.517187pt;}
.h1a{height:59.011719pt;}
.h7{height:63.466667pt;}
.h2{height:64.000000pt;}
.h1d{height:115.680000pt;}
.he{height:194.346847pt;}
.h15{height:201.020000pt;}
.h11{height:211.564000pt;}
.h24{height:219.976000pt;}
.h25{height:220.072000pt;}
.h20{height:224.173333pt;}
.h29{height:226.762667pt;}
.h27{height:227.006667pt;}
.h18{height:513.600000pt;}
.hd{height:688.165333pt;}
.h0{height:1056.000000pt;}
.w1{width:10.425333pt;}
.w6{width:239.840000pt;}
.w8{width:337.700000pt;}
.w9{width:337.788000pt;}
.w7{width:340.369333pt;}
.w3{width:350.176000pt;}
.w2{width:352.000000pt;}
.w5{width:627.200000pt;}
.w4{width:633.600000pt;}
.w0{width:816.000000pt;}
.x21{left:-0.952211pt;}
.x0{left:0.000000pt;}
.xf{left:1.823867pt;}
.x1b{left:6.400000pt;}
.x1d{left:9.600000pt;}
.x28{left:14.437200pt;}
.x29{left:23.055867pt;}
.x24{left:44.532667pt;}
.x2b{left:46.315867pt;}
.x3{left:48.504667pt;}
.x4{left:49.571333pt;}
.x2{left:50.640000pt;}
.x26{left:54.199067pt;}
.x8{left:58.915600pt;}
.x30{left:72.000000pt;}
.x9{left:79.331200pt;}
.x19{left:91.200000pt;}
.x23{left:92.536411pt;}
.x1c{left:97.600000pt;}
.x22{left:98.574133pt;}
.x1f{left:107.200000pt;}
.x1e{left:139.386667pt;}
.x2d{left:166.929333pt;}
.x25{left:171.184133pt;}
.x2a{left:187.757067pt;}
.xd{left:203.282133pt;}
.x2c{left:225.337467pt;}
.x6{left:262.477867pt;}
.xe{left:270.876655pt;}
.x15{left:320.736267pt;}
.x27{left:337.773200pt;}
.x33{left:339.198133pt;}
.x2e{left:346.701333pt;}
.x20{left:354.988933pt;}
.x10{left:357.520720pt;}
.x5{left:402.666667pt;}
.xa{left:416.000000pt;}
.x14{left:417.824000pt;}
.x32{left:418.800000pt;}
.x18{left:428.538800pt;}
.x12{left:437.217165pt;}
.x31{left:440.000000pt;}
.x11{left:441.077733pt;}
.x13{left:479.059026pt;}
.x17{left:530.476000pt;}
.x2f{left:614.000000pt;}
.xb{left:638.666667pt;}
.x1{left:639.792000pt;}
.x7{left:651.489067pt;}
.x1a{left:653.440000pt;}
.x16{left:737.253200pt;}
.xc{left:805.574667pt;}
}




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