
    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_d2fd280c46578204a0e9b336.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912000;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_eec9d01765c430367a3d870a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.912000;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_fc4f4ceba12c987dce3ce984.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_a15e5dee8099e14a7446978c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.912000;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_a91345938958711f7cb5601b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_173d894ddfad8f55916cbaf8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.991699;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_d3c0018e0a6de56a7e2554fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.985000;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_9c140d53ec20db12da8d5263.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.765065;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_532a11372bca763fa486c800.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912000;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_fc4f4ceba12c987dce3ce984.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_423989942348c0b7374f59fa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.707031;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_d97493891b1d3bca545f048a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006000;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_47d3b7caea73edd335d55a0c.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;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_eec9d01765c430367a3d870a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912000;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_fc4f4ceba12c987dce3ce984.woff2')format("woff");}.fff{font-family:fff;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_a15e5dee8099e14a7446978c.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.912000;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_a9efac7a80985606132924ea.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.964000;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_eec9d01765c430367a3d870a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912000;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_fc4f4ceba12c987dce3ce984.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a15e5dee8099e14a7446978c.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.912000;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_eec9d01765c430367a3d870a.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.912000;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_fc4f4ceba12c987dce3ce984.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_a15e5dee8099e14a7446978c.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.912000;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_f756d06aa4156c109446c83e.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.679000;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_23d2a0f173343f320dbd0bf9.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.941000;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.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);}
.m3{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);}
.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(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);}
.v4{vertical-align:-21.599400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:24.192000px;}
.v3{vertical-align:27.000000px;}
.v1{vertical-align:29.700000px;}
.ls6{letter-spacing:-1.776000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000240px;}
.ls1{letter-spacing:0.000552px;}
.lsa{letter-spacing:0.010800px;}
.lsc{letter-spacing:0.011400px;}
.ls10{letter-spacing:0.225000px;}
.lsf{letter-spacing:0.449550px;}
.lsb{letter-spacing:1.193400px;}
.lse{letter-spacing:1.312740px;}
.ls8{letter-spacing:1.800000px;}
.ls9{letter-spacing:1.801800px;}
.lsd{letter-spacing:1.980000px;}
.ls0{letter-spacing:3.780000px;}
.ls2{letter-spacing:17.200200px;}
.ls4{letter-spacing:24.492000px;}
.ls7{letter-spacing:1568.637600px;}
.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;}
}
.ws1{word-spacing:-20.460000px;}
.wse3{word-spacing:-17.580000px;}
.ws6{word-spacing:-15.600000px;}
.ws7{word-spacing:-15.012000px;}
.ws2{word-spacing:-14.400000px;}
.wse2{word-spacing:-13.344000px;}
.ws3{word-spacing:-12.960000px;}
.ws13b{word-spacing:-12.374550px;}
.ws0{word-spacing:-12.164724px;}
.wse4{word-spacing:-11.655540px;}
.ws36{word-spacing:-11.536200px;}
.wsa{word-spacing:-11.520480px;}
.ws137{word-spacing:-11.520000px;}
.ws5{word-spacing:-10.342800px;}
.ws4{word-spacing:-8.592480px;}
.wsb2{word-spacing:-8.099400px;}
.ws136{word-spacing:-7.637760px;}
.ws51{word-spacing:-7.140000px;}
.ws107{word-spacing:-6.960000px;}
.wsb{word-spacing:-6.210540px;}
.wsb0{word-spacing:-5.639400px;}
.ws130{word-spacing:-4.320600px;}
.wsab{word-spacing:-3.959400px;}
.ws29{word-spacing:-3.900000px;}
.ws50{word-spacing:-3.780000px;}
.ws103{word-spacing:-3.660000px;}
.ws87{word-spacing:-3.420600px;}
.wsd7{word-spacing:-3.360000px;}
.ws8e{word-spacing:-3.240000px;}
.ws105{word-spacing:-3.179400px;}
.wsc9{word-spacing:-3.000000px;}
.ws111{word-spacing:-2.940000px;}
.ws124{word-spacing:-2.880000px;}
.ws35{word-spacing:-2.808000px;}
.ws78{word-spacing:-2.760600px;}
.ws126{word-spacing:-2.700000px;}
.ws4a{word-spacing:-2.640600px;}
.ws17{word-spacing:-2.580000px;}
.ws40{word-spacing:-2.520600px;}
.ws12{word-spacing:-2.460000px;}
.wsf{word-spacing:-2.340000px;}
.ws101{word-spacing:-2.220000px;}
.wsca{word-spacing:-2.160000px;}
.ws42{word-spacing:-2.100000px;}
.wsc6{word-spacing:-2.040000px;}
.ws20{word-spacing:-1.980000px;}
.ws5b{word-spacing:-1.800000px;}
.ws135{word-spacing:-1.740600px;}
.wsa8{word-spacing:-1.680000px;}
.ws7a{word-spacing:-1.619400px;}
.wse7{word-spacing:-1.560000px;}
.ws9c{word-spacing:-1.440000px;}
.wsc0{word-spacing:-1.379400px;}
.ws131{word-spacing:-1.320000px;}
.ws10a{word-spacing:-1.312740px;}
.ws44{word-spacing:-1.260000px;}
.wsf6{word-spacing:-1.140000px;}
.wsf1{word-spacing:-1.080600px;}
.ws8d{word-spacing:-1.020000px;}
.ws88{word-spacing:-0.960600px;}
.ws6c{word-spacing:-0.900000px;}
.ws6f{word-spacing:-0.840600px;}
.ws4d{word-spacing:-0.719400px;}
.ws34{word-spacing:-0.702000px;}
.ws12c{word-spacing:-0.660000px;}
.wsaf{word-spacing:-0.599400px;}
.wsf5{word-spacing:-0.540000px;}
.ws13a{word-spacing:-0.449550px;}
.ws32{word-spacing:-0.432000px;}
.wsad{word-spacing:-0.360000px;}
.ws119{word-spacing:-0.240000px;}
.ws13d{word-spacing:-0.225000px;}
.ws121{word-spacing:-0.180600px;}
.ws13c{word-spacing:-0.135450px;}
.wsa6{word-spacing:-0.120000px;}
.ws89{word-spacing:-0.060600px;}
.ws8a{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054540px;}
.ws139{word-spacing:-0.045450px;}
.ws8{word-spacing:0.000000px;}
.ws10e{word-spacing:0.060600px;}
.ws15{word-spacing:0.119738px;}
.wsdc{word-spacing:0.120000px;}
.ws16{word-spacing:0.180600px;}
.wsf2{word-spacing:0.240000px;}
.ws2e{word-spacing:0.324000px;}
.wsa3{word-spacing:0.360000px;}
.ws4b{word-spacing:0.480000px;}
.ws4c{word-spacing:0.540000px;}
.wsec{word-spacing:0.599400px;}
.ws2c{word-spacing:0.647460px;}
.ws7d{word-spacing:0.660000px;}
.wsa0{word-spacing:0.780000px;}
.ws132{word-spacing:0.840600px;}
.ws80{word-spacing:0.900000px;}
.wsba{word-spacing:0.960600px;}
.wsae{word-spacing:1.020000px;}
.wse6{word-spacing:1.080600px;}
.wsb9{word-spacing:1.140000px;}
.wscf{word-spacing:1.200000px;}
.ws47{word-spacing:1.260000px;}
.ws91{word-spacing:1.320000px;}
.ws4e{word-spacing:1.379400px;}
.wsf3{word-spacing:1.440000px;}
.ws5c{word-spacing:1.499400px;}
.ws90{word-spacing:1.560000px;}
.ws7c{word-spacing:1.619400px;}
.ws95{word-spacing:1.740600px;}
.ws9{word-spacing:1.776000px;}
.wsdb{word-spacing:1.800000px;}
.ws129{word-spacing:1.920000px;}
.ws86{word-spacing:1.980000px;}
.wsda{word-spacing:2.040000px;}
.ws84{word-spacing:2.100000px;}
.ws9a{word-spacing:2.160000px;}
.ws57{word-spacing:2.220000px;}
.ws10f{word-spacing:2.279400px;}
.ws5a{word-spacing:2.340000px;}
.ws60{word-spacing:2.460000px;}
.ws12f{word-spacing:2.520600px;}
.wse9{word-spacing:2.580000px;}
.ws1d{word-spacing:2.640600px;}
.wsd0{word-spacing:2.760600px;}
.ws82{word-spacing:2.880000px;}
.wsd6{word-spacing:2.940000px;}
.ws138{word-spacing:3.000000px;}
.ws25{word-spacing:3.120000px;}
.wsd9{word-spacing:3.240000px;}
.ws75{word-spacing:3.360000px;}
.ws33{word-spacing:3.402000px;}
.ws19{word-spacing:3.420600px;}
.ws62{word-spacing:3.480000px;}
.wsdd{word-spacing:3.540600px;}
.wsc4{word-spacing:3.660000px;}
.ws7e{word-spacing:3.720000px;}
.ws98{word-spacing:3.780000px;}
.ws127{word-spacing:3.900000px;}
.ws5f{word-spacing:3.959400px;}
.ws11e{word-spacing:4.020000px;}
.ws24{word-spacing:4.079400px;}
.ws108{word-spacing:4.140000px;}
.ws77{word-spacing:4.200600px;}
.wsa9{word-spacing:4.260000px;}
.ws39{word-spacing:4.320600px;}
.wsc1{word-spacing:4.380000px;}
.ws2d{word-spacing:4.428000px;}
.ws6a{word-spacing:4.440600px;}
.ws6d{word-spacing:4.620000px;}
.ws81{word-spacing:4.739400px;}
.ws113{word-spacing:4.800000px;}
.wsb8{word-spacing:4.859400px;}
.ws31{word-spacing:4.914000px;}
.ws134{word-spacing:4.920000px;}
.wsb5{word-spacing:4.979400px;}
.ws99{word-spacing:5.040000px;}
.ws97{word-spacing:5.100600px;}
.ws72{word-spacing:5.160000px;}
.ws102{word-spacing:5.280000px;}
.wsd4{word-spacing:5.340000px;}
.ws59{word-spacing:5.400000px;}
.ws2f{word-spacing:5.400540px;}
.wsb7{word-spacing:5.520000px;}
.ws94{word-spacing:5.580000px;}
.ws93{word-spacing:5.639400px;}
.ws70{word-spacing:5.700000px;}
.ws12a{word-spacing:5.820000px;}
.ws92{word-spacing:5.940000px;}
.wse8{word-spacing:6.000600px;}
.ws43{word-spacing:6.060000px;}
.ws3f{word-spacing:6.180000px;}
.wsc3{word-spacing:6.240000px;}
.ws11d{word-spacing:6.300000px;}
.ws9f{word-spacing:6.360000px;}
.wsb6{word-spacing:6.480000px;}
.wsac{word-spacing:6.600000px;}
.ws10{word-spacing:6.840000px;}
.wsdf{word-spacing:6.960000px;}
.ws27{word-spacing:7.020000px;}
.wse0{word-spacing:7.080000px;}
.wsea{word-spacing:7.140000px;}
.ws64{word-spacing:7.260000px;}
.ws9b{word-spacing:7.319400px;}
.ws118{word-spacing:7.380000px;}
.ws8b{word-spacing:7.439400px;}
.ws26{word-spacing:7.560600px;}
.ws56{word-spacing:7.800000px;}
.ws106{word-spacing:7.860000px;}
.wsed{word-spacing:7.980000px;}
.ws5d{word-spacing:8.040000px;}
.wsfa{word-spacing:8.099400px;}
.ws9e{word-spacing:8.160000px;}
.wsff{word-spacing:8.219400px;}
.ws11f{word-spacing:8.400000px;}
.ws74{word-spacing:8.460600px;}
.ws55{word-spacing:8.520000px;}
.ws109{word-spacing:8.580600px;}
.ws21{word-spacing:8.640000px;}
.ws38{word-spacing:8.672040px;}
.ws110{word-spacing:8.760000px;}
.ws41{word-spacing:8.820000px;}
.ws45{word-spacing:8.940000px;}
.ws2a{word-spacing:9.018540px;}
.ws9d{word-spacing:9.060000px;}
.ws69{word-spacing:9.240600px;}
.wsbd{word-spacing:9.300000px;}
.wsd8{word-spacing:9.420000px;}
.wsee{word-spacing:9.540000px;}
.wse1{word-spacing:9.660000px;}
.ws116{word-spacing:9.666540px;}
.ws3d{word-spacing:9.706320px;}
.wsc8{word-spacing:9.720000px;}
.wsd2{word-spacing:9.899400px;}
.ws1f{word-spacing:9.904822px;}
.wsbc{word-spacing:10.020600px;}
.ws83{word-spacing:10.080000px;}
.ws67{word-spacing:10.140600px;}
.wsbf{word-spacing:10.200000px;}
.ws120{word-spacing:10.380000px;}
.ws46{word-spacing:10.440000px;}
.wsb3{word-spacing:10.500000px;}
.ws10d{word-spacing:10.559400px;}
.ws10b{word-spacing:10.620000px;}
.ws73{word-spacing:10.679400px;}
.wsaa{word-spacing:10.860000px;}
.ws133{word-spacing:11.040600px;}
.ws96{word-spacing:11.160000px;}
.wsa5{word-spacing:11.220000px;}
.wsf0{word-spacing:11.280000px;}
.ws7f{word-spacing:11.340000px;}
.ws123{word-spacing:11.400000px;}
.wsc2{word-spacing:11.459400px;}
.ws12d{word-spacing:11.520000px;}
.ws8f{word-spacing:11.579400px;}
.ws2b{word-spacing:11.610000px;}
.wsce{word-spacing:11.640000px;}
.wsd1{word-spacing:11.700600px;}
.ws7b{word-spacing:11.760000px;}
.ws100{word-spacing:11.820600px;}
.ws65{word-spacing:11.880000px;}
.ws76{word-spacing:11.940600px;}
.wscc{word-spacing:12.060000px;}
.ws4f{word-spacing:12.300000px;}
.ws6b{word-spacing:12.420000px;}
.ws52{word-spacing:12.660000px;}
.ws54{word-spacing:12.720600px;}
.wseb{word-spacing:12.780000px;}
.ws125{word-spacing:12.900000px;}
.ws8c{word-spacing:12.960000px;}
.wsbe{word-spacing:13.020000px;}
.ws37{word-spacing:13.080000px;}
.wsf7{word-spacing:13.139400px;}
.ws14{word-spacing:13.200000px;}
.wsc5{word-spacing:13.259400px;}
.ws3b{word-spacing:13.440000px;}
.ws1a{word-spacing:13.500600px;}
.ws68{word-spacing:13.620600px;}
.wsa2{word-spacing:13.680000px;}
.ws104{word-spacing:13.800000px;}
.ws71{word-spacing:13.919400px;}
.wsa4{word-spacing:13.980000px;}
.ws117{word-spacing:14.039400px;}
.ws3a{word-spacing:14.159400px;}
.ws5e{word-spacing:14.280600px;}
.wsef{word-spacing:14.340000px;}
.ws49{word-spacing:14.400600px;}
.wsd5{word-spacing:14.460000px;}
.ws61{word-spacing:14.520000px;}
.ws115{word-spacing:14.580000px;}
.ws3e{word-spacing:14.640000px;}
.ws30{word-spacing:14.741460px;}
.ws1e{word-spacing:14.939400px;}
.wsa7{word-spacing:15.120000px;}
.ws12e{word-spacing:15.420000px;}
.ws3c{word-spacing:15.660000px;}
.ws58{word-spacing:15.719400px;}
.wsc7{word-spacing:15.840600px;}
.wsf8{word-spacing:16.200000px;}
.wsf4{word-spacing:16.379400px;}
.ws18{word-spacing:16.740600px;}
.ws128{word-spacing:16.860600px;}
.ws23{word-spacing:16.980000px;}
.ws85{word-spacing:17.220000px;}
.wscb{word-spacing:17.279400px;}
.wsb4{word-spacing:17.760600px;}
.ws28{word-spacing:18.240000px;}
.ws114{word-spacing:18.600000px;}
.ws6e{word-spacing:18.780000px;}
.ws11{word-spacing:19.020000px;}
.wse5{word-spacing:19.260000px;}
.wsbb{word-spacing:19.800000px;}
.wsf9{word-spacing:20.460000px;}
.ws10c{word-spacing:20.759400px;}
.ws11c{word-spacing:20.880600px;}
.wsfe{word-spacing:20.940000px;}
.ws112{word-spacing:21.000600px;}
.wsde{word-spacing:21.180000px;}
.ws11a{word-spacing:21.240000px;}
.wsfc{word-spacing:21.419400px;}
.ws53{word-spacing:21.600000px;}
.ws79{word-spacing:22.200000px;}
.wsfd{word-spacing:22.260000px;}
.wsb1{word-spacing:22.380000px;}
.ws13{word-spacing:22.620000px;}
.ws66{word-spacing:22.740000px;}
.wsa1{word-spacing:22.920000px;}
.ws1c{word-spacing:24.300000px;}
.ws11b{word-spacing:24.720000px;}
.ws1b{word-spacing:25.020600px;}
.wsd{word-spacing:25.200000px;}
.ws48{word-spacing:25.679400px;}
.ws63{word-spacing:26.280000px;}
.wsd3{word-spacing:26.579400px;}
.ws12b{word-spacing:28.440000px;}
.ws22{word-spacing:28.620600px;}
.ws122{word-spacing:31.260000px;}
.wse{word-spacing:31.860600px;}
.wsfb{word-spacing:35.820000px;}
.wscd{word-spacing:101.280000px;}
._b{margin-left:-3019.459680px;}
._a{margin-left:-1779.892380px;}
._9{margin-left:-59.040000px;}
._4{margin-left:-47.970000px;}
._4d{margin-left:-43.860000px;}
._e{margin-left:-30.900000px;}
._10{margin-left:-26.166000px;}
._c{margin-left:-24.000000px;}
._11{margin-left:-22.080000px;}
._d{margin-left:-18.660000px;}
._12{margin-left:-14.580000px;}
._f{margin-left:-12.666000px;}
._6{margin-left:-11.520000px;}
._13{margin-left:-9.540000px;}
._52{margin-left:-8.512200px;}
._1{margin-left:-7.326000px;}
._2{margin-left:-6.078600px;}
._7{margin-left:-4.914000px;}
._3{margin-left:-3.552000px;}
._0{margin-left:-1.780800px;}
._5{width:1.334400px;}
._50{width:11.520000px;}
._4f{width:12.960000px;}
._8{width:14.040000px;}
._53{width:18.563250px;}
._51{width:20.610000px;}
._14{width:22.494000px;}
._54{width:32.894100px;}
._4e{width:38.016000px;}
._15{width:39.072600px;}
._1b{width:40.608000px;}
._1c{width:46.608000px;}
._2e{width:48.000000px;}
._1e{width:52.608000px;}
._19{width:57.456000px;}
._17{width:64.608000px;}
._28{width:74.160000px;}
._2c{width:88.464000px;}
._30{width:98.592000px;}
._2b{width:100.176000px;}
._20{width:111.936000px;}
._47{width:114.624000px;}
._2a{width:117.024000px;}
._32{width:119.280000px;}
._22{width:129.936000px;}
._3b{width:132.624000px;}
._34{width:137.280000px;}
._45{width:140.976000px;}
._36{width:143.280000px;}
._43{width:145.824000px;}
._24{width:147.936000px;}
._3d{width:150.624000px;}
._29{width:152.976000px;}
._46{width:154.224000px;}
._25{width:155.664000px;}
._2d{width:156.864000px;}
._26{width:162.624000px;}
._40{width:165.312000px;}
._27{width:168.624000px;}
._23{width:172.512000px;}
._44{width:175.008000px;}
._21{width:179.664000px;}
._16{width:181.536000px;}
._18{width:193.536000px;}
._1d{width:205.536000px;}
._1a{width:211.536000px;}
._4c{width:229.440000px;}
._35{width:247.248000px;}
._37{width:253.248000px;}
._38{width:258.864000px;}
._3e{width:260.592000px;}
._4a{width:267.552000px;}
._4b{width:272.592000px;}
._49{width:277.440000px;}
._48{width:284.592000px;}
._33{width:288.096000px;}
._31{width:295.248000px;}
._3f{width:297.552000px;}
._3c{width:301.440000px;}
._41{width:302.592000px;}
._3a{width:308.592000px;}
._42{width:320.352000px;}
._1f{width:445.824000px;}
._39{width:606.384000px;}
._2f{width:609.312000px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(65,64,153);}
.fs9{font-size:31.824000px;}
.fs7{font-size:35.802000px;}
.fs5{font-size:39.000000px;}
.fs8{font-size:39.780000px;}
.fs4{font-size:43.758000px;}
.fsa{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:41.383350px;}
.y1{bottom:41.386350px;}
.y1de{bottom:81.060750px;}
.y19e{bottom:81.062400px;}
.y11e{bottom:81.586350px;}
.y175{bottom:81.601350px;}
.y68{bottom:81.604650px;}
.y51{bottom:81.610800px;}
.yb3{bottom:81.612000px;}
.yeb{bottom:81.616350px;}
.y1f0{bottom:81.624900px;}
.y14e{bottom:81.631350px;}
.y20{bottom:81.637800px;}
.y233{bottom:81.680100px;}
.y1b9{bottom:81.879900px;}
.y284{bottom:82.962600px;}
.y176{bottom:87.586350px;}
.y232{bottom:94.426350px;}
.y283{bottom:95.798850px;}
.y1f{bottom:96.637800px;}
.y1dd{bottom:99.060750px;}
.y19d{bottom:99.062400px;}
.y11d{bottom:99.586350px;}
.y174{bottom:99.601350px;}
.y67{bottom:99.604650px;}
.y50{bottom:99.610800px;}
.yb2{bottom:99.612000px;}
.yea{bottom:99.616350px;}
.y14d{bottom:99.631350px;}
.y1ef{bottom:99.699900px;}
.y1b8{bottom:99.894900px;}
.y231{bottom:107.172600px;}
.y282{bottom:108.635100px;}
.y1e{bottom:111.637800px;}
.y1dc{bottom:117.060750px;}
.y19c{bottom:117.062400px;}
.y11c{bottom:117.586350px;}
.y173{bottom:117.601350px;}
.y66{bottom:117.604650px;}
.y4f{bottom:117.610800px;}
.yb1{bottom:117.612000px;}
.ye9{bottom:117.616350px;}
.y14c{bottom:117.631350px;}
.y1ee{bottom:117.774900px;}
.y1b7{bottom:117.909900px;}
.y230{bottom:119.918850px;}
.y281{bottom:121.471350px;}
.y22f{bottom:132.665100px;}
.y280{bottom:134.307600px;}
.y1db{bottom:135.060750px;}
.y19b{bottom:135.062400px;}
.y11b{bottom:135.586350px;}
.y172{bottom:135.601350px;}
.y65{bottom:135.604650px;}
.y4e{bottom:135.610800px;}
.yb0{bottom:135.612000px;}
.ye8{bottom:135.616350px;}
.y14b{bottom:135.631350px;}
.y1ed{bottom:135.849900px;}
.y1b6{bottom:135.924900px;}
.y1d{bottom:140.137800px;}
.y22e{bottom:145.411350px;}
.y27f{bottom:147.143850px;}
.y1da{bottom:153.060750px;}
.y19a{bottom:153.062400px;}
.y11a{bottom:153.586350px;}
.y171{bottom:153.601350px;}
.y64{bottom:153.604650px;}
.y4d{bottom:153.610800px;}
.yaf{bottom:153.612000px;}
.ye7{bottom:153.616350px;}
.y14a{bottom:153.631350px;}
.y1ec{bottom:153.924900px;}
.y1b5{bottom:153.939900px;}
.y1c{bottom:155.137800px;}
.y22d{bottom:158.157600px;}
.y27e{bottom:159.980100px;}
.y22c{bottom:170.903850px;}
.y1d9{bottom:171.060750px;}
.y199{bottom:171.062400px;}
.y119{bottom:171.586350px;}
.y170{bottom:171.601350px;}
.y63{bottom:171.604650px;}
.y4c{bottom:171.610800px;}
.ye6{bottom:171.616350px;}
.y149{bottom:171.631350px;}
.y1b4{bottom:171.954900px;}
.y1eb{bottom:171.999900px;}
.y27d{bottom:172.816350px;}
.y26{bottom:174.205650px;}
.y22b{bottom:183.650100px;}
.y27c{bottom:185.652600px;}
.yae{bottom:187.407000px;}
.y25{bottom:188.605650px;}
.y1d8{bottom:189.060750px;}
.y198{bottom:189.062400px;}
.y118{bottom:189.586350px;}
.y16f{bottom:189.601350px;}
.y62{bottom:189.604650px;}
.y4b{bottom:189.610800px;}
.ye5{bottom:189.616350px;}
.y1b3{bottom:189.969900px;}
.y1ea{bottom:190.074900px;}
.y22a{bottom:196.396350px;}
.y27b{bottom:198.488850px;}
.y24{bottom:203.005650px;}
.yad{bottom:205.407000px;}
.y148{bottom:205.921350px;}
.y1d7{bottom:207.060750px;}
.y197{bottom:207.062400px;}
.y117{bottom:207.586350px;}
.y16e{bottom:207.601350px;}
.y61{bottom:207.604650px;}
.y4a{bottom:207.610800px;}
.ye4{bottom:207.616350px;}
.y1b2{bottom:207.984900px;}
.y1e9{bottom:208.149900px;}
.y229{bottom:209.142600px;}
.y27a{bottom:211.325100px;}
.y23{bottom:217.405650px;}
.y228{bottom:221.888850px;}
.yac{bottom:223.407000px;}
.y147{bottom:223.921350px;}
.y279{bottom:224.161350px;}
.y1d6{bottom:225.060750px;}
.y196{bottom:225.062400px;}
.y116{bottom:225.586350px;}
.y16d{bottom:225.601350px;}
.y60{bottom:225.604650px;}
.y49{bottom:225.610800px;}
.ye3{bottom:225.616350px;}
.y1b1{bottom:225.999900px;}
.y1e8{bottom:226.224900px;}
.y22{bottom:231.805650px;}
.y227{bottom:234.635100px;}
.y278{bottom:236.997600px;}
.yab{bottom:241.407000px;}
.y146{bottom:241.921350px;}
.y1d5{bottom:243.060750px;}
.y195{bottom:243.062400px;}
.y115{bottom:243.586350px;}
.y16c{bottom:243.601350px;}
.y5f{bottom:243.604650px;}
.ye2{bottom:243.616350px;}
.y1c5{bottom:244.014750px;}
.y1b0{bottom:244.014900px;}
.y1e7{bottom:244.299900px;}
.y21{bottom:246.205650px;}
.y226{bottom:247.381350px;}
.y277{bottom:249.833850px;}
.y177{bottom:254.086350px;}
.yaa{bottom:259.407000px;}
.y145{bottom:259.921350px;}
.y225{bottom:260.127600px;}
.y1d4{bottom:261.060750px;}
.y194{bottom:261.062400px;}
.y114{bottom:261.586350px;}
.y16b{bottom:261.601350px;}
.y5e{bottom:261.604650px;}
.ye1{bottom:261.616350px;}
.y1c4{bottom:262.029750px;}
.y1af{bottom:262.029900px;}
.y1e6{bottom:262.374900px;}
.y276{bottom:262.670100px;}
.y224{bottom:272.873850px;}
.y275{bottom:275.506350px;}
.ya9{bottom:277.407000px;}
.y144{bottom:277.921350px;}
.y1d3{bottom:279.060750px;}
.y193{bottom:279.062400px;}
.y113{bottom:279.586350px;}
.y16a{bottom:279.601350px;}
.y5d{bottom:279.604650px;}
.ye0{bottom:279.616350px;}
.y1c3{bottom:280.044750px;}
.y1ae{bottom:280.044900px;}
.y1e5{bottom:280.449900px;}
.y48{bottom:285.352800px;}
.y223{bottom:285.620100px;}
.y274{bottom:288.342600px;}
.ya8{bottom:295.407000px;}
.y143{bottom:295.921350px;}
.y1d2{bottom:297.060750px;}
.y192{bottom:297.062400px;}
.y112{bottom:297.586350px;}
.y169{bottom:297.601350px;}
.y5c{bottom:297.604650px;}
.ydf{bottom:297.616350px;}
.y1c2{bottom:298.059750px;}
.y1ad{bottom:298.059900px;}
.y222{bottom:298.366350px;}
.y1e4{bottom:298.524900px;}
.y273{bottom:301.178850px;}
.y47{bottom:301.849800px;}
.y221{bottom:311.112600px;}
.ya7{bottom:313.407000px;}
.y142{bottom:313.921350px;}
.y272{bottom:314.015100px;}
.y1d1{bottom:315.060750px;}
.y191{bottom:315.062400px;}
.y111{bottom:315.586350px;}
.y168{bottom:315.601350px;}
.y5b{bottom:315.604650px;}
.yde{bottom:315.616350px;}
.y1c1{bottom:316.074750px;}
.y1ac{bottom:316.074900px;}
.y1e3{bottom:316.599900px;}
.y46{bottom:318.346800px;}
.y220{bottom:323.858850px;}
.y271{bottom:326.851350px;}
.ya6{bottom:331.407000px;}
.y141{bottom:331.921350px;}
.y1d0{bottom:333.060750px;}
.y190{bottom:333.062400px;}
.y110{bottom:333.586350px;}
.y167{bottom:333.601350px;}
.y5a{bottom:333.604650px;}
.ydd{bottom:333.616350px;}
.y1c0{bottom:334.089750px;}
.y1ab{bottom:334.089900px;}
.y1e2{bottom:334.674900px;}
.y45{bottom:334.843800px;}
.y21f{bottom:336.605100px;}
.y270{bottom:339.687600px;}
.y21e{bottom:349.351350px;}
.ya5{bottom:349.407000px;}
.y140{bottom:349.921350px;}
.y1cf{bottom:351.060750px;}
.y18f{bottom:351.062400px;}
.y44{bottom:351.343800px;}
.y10f{bottom:351.586350px;}
.y166{bottom:351.601350px;}
.y59{bottom:351.604650px;}
.ydc{bottom:351.616350px;}
.y1bf{bottom:352.104750px;}
.y1aa{bottom:352.104900px;}
.y26f{bottom:352.523850px;}
.y1e1{bottom:352.749900px;}
.y21d{bottom:362.097600px;}
.y26e{bottom:365.360100px;}
.ya4{bottom:367.407000px;}
.y7b{bottom:367.775100px;}
.y43{bottom:367.849800px;}
.y13f{bottom:367.921350px;}
.y1ce{bottom:369.060750px;}
.y18e{bottom:369.062400px;}
.y10e{bottom:369.586350px;}
.y165{bottom:369.601350px;}
.y58{bottom:369.604650px;}
.ydb{bottom:369.616350px;}
.y1be{bottom:370.119750px;}
.y1a9{bottom:370.119900px;}
.y1e0{bottom:370.824900px;}
.y21c{bottom:374.843850px;}
.y26d{bottom:378.196350px;}
.y42{bottom:384.346800px;}
.ya3{bottom:385.407000px;}
.y13e{bottom:385.921350px;}
.y1cd{bottom:387.060750px;}
.y18d{bottom:387.062400px;}
.y10d{bottom:387.586350px;}
.y21b{bottom:387.590100px;}
.y164{bottom:387.601350px;}
.y57{bottom:387.604650px;}
.yda{bottom:387.616350px;}
.y1bd{bottom:388.134750px;}
.y1a8{bottom:388.134900px;}
.y26c{bottom:391.032600px;}
.y178{bottom:398.086350px;}
.y21a{bottom:400.336350px;}
.y41{bottom:400.843800px;}
.ya2{bottom:403.407000px;}
.y26b{bottom:403.868850px;}
.y13d{bottom:403.921350px;}
.y1cc{bottom:405.060750px;}
.y18c{bottom:405.062400px;}
.y10c{bottom:405.586350px;}
.y163{bottom:405.601350px;}
.y56{bottom:405.604650px;}
.yd9{bottom:405.616350px;}
.y1bc{bottom:406.149750px;}
.y1a7{bottom:406.149900px;}
.y219{bottom:413.086350px;}
.y26a{bottom:416.705100px;}
.y40{bottom:417.343800px;}
.ya1{bottom:421.407000px;}
.y13c{bottom:421.921350px;}
.y1cb{bottom:423.060750px;}
.y18b{bottom:423.062400px;}
.y10b{bottom:423.586350px;}
.y162{bottom:423.601350px;}
.y55{bottom:423.604650px;}
.yd8{bottom:423.616350px;}
.y1bb{bottom:424.164750px;}
.y1a6{bottom:424.164900px;}
.y269{bottom:429.541350px;}
.y3f{bottom:433.843800px;}
.ya0{bottom:439.407000px;}
.y13b{bottom:439.921350px;}
.y1df{bottom:440.985750px;}
.y1ca{bottom:441.060750px;}
.y18a{bottom:441.062400px;}
.y10a{bottom:441.586350px;}
.y161{bottom:441.601350px;}
.y54{bottom:441.604650px;}
.yd7{bottom:441.616350px;}
.y1ba{bottom:442.179750px;}
.y1a5{bottom:442.179900px;}
.y268{bottom:442.377600px;}
.y3e{bottom:450.349800px;}
.y267{bottom:455.213850px;}
.y9f{bottom:457.407000px;}
.y13a{bottom:457.921350px;}
.y1c9{bottom:459.060750px;}
.y189{bottom:459.062400px;}
.y109{bottom:459.586350px;}
.y160{bottom:459.601350px;}
.y53{bottom:459.604650px;}
.yd6{bottom:459.616350px;}
.y1a4{bottom:460.194750px;}
.y3d{bottom:466.846800px;}
.y266{bottom:468.050100px;}
.y9e{bottom:475.407000px;}
.y139{bottom:475.921350px;}
.y188{bottom:477.062400px;}
.y108{bottom:477.586350px;}
.y15f{bottom:477.601350px;}
.y52{bottom:477.610800px;}
.yd5{bottom:477.616350px;}
.y1a3{bottom:478.209750px;}
.y265{bottom:480.886350px;}
.y3c{bottom:483.343800px;}
.y218{bottom:483.571350px;}
.y9d{bottom:493.407000px;}
.y264{bottom:493.722600px;}
.y138{bottom:493.921350px;}
.y187{bottom:495.062400px;}
.y107{bottom:495.586350px;}
.y15e{bottom:495.601350px;}
.yd4{bottom:495.608850px;}
.y1f4{bottom:496.290750px;}
.y217{bottom:497.971350px;}
.y3b{bottom:499.870800px;}
.y263{bottom:506.558850px;}
.y9c{bottom:511.407000px;}
.y137{bottom:511.921350px;}
.y216{bottom:512.371350px;}
.y1f3{bottom:512.490750px;}
.y186{bottom:513.062400px;}
.y106{bottom:513.586350px;}
.y15d{bottom:513.601350px;}
.yd3{bottom:513.608850px;}
.y3a{bottom:516.367800px;}
.y262{bottom:519.395100px;}
.y7a{bottom:525.112350px;}
.y215{bottom:526.771350px;}
.y1f2{bottom:528.690750px;}
.y9b{bottom:529.407000px;}
.y136{bottom:529.921350px;}
.y185{bottom:531.062400px;}
.y105{bottom:531.586350px;}
.yd2{bottom:531.608850px;}
.y1c8{bottom:531.624600px;}
.y261{bottom:532.231350px;}
.y39{bottom:532.864800px;}
.y214{bottom:541.171350px;}
.y79{bottom:541.609350px;}
.y179{bottom:543.298350px;}
.y1f1{bottom:544.890750px;}
.y260{bottom:545.067600px;}
.y9a{bottom:547.407000px;}
.y1c7{bottom:547.824600px;}
.y135{bottom:547.921350px;}
.y184{bottom:549.062400px;}
.y38{bottom:549.361800px;}
.y104{bottom:549.586350px;}
.yd1{bottom:549.608850px;}
.y1b{bottom:554.434650px;}
.y213{bottom:555.571350px;}
.y25f{bottom:557.903850px;}
.y78{bottom:558.115350px;}
.y1c6{bottom:564.024600px;}
.y99{bottom:565.407000px;}
.y37{bottom:565.858800px;}
.y134{bottom:565.921350px;}
.y183{bottom:567.062400px;}
.y15c{bottom:567.571350px;}
.y103{bottom:567.586350px;}
.yd0{bottom:567.608850px;}
.y1a{bottom:569.434650px;}
.y25e{bottom:570.740100px;}
.y77{bottom:574.612350px;}
.y212{bottom:575.971350px;}
.y36{bottom:582.355800px;}
.y98{bottom:583.407000px;}
.y25d{bottom:583.576350px;}
.y133{bottom:583.921350px;}
.y19{bottom:584.434650px;}
.y182{bottom:585.062400px;}
.y15b{bottom:585.571350px;}
.y102{bottom:585.586350px;}
.ycf{bottom:585.608850px;}
.y211{bottom:590.371350px;}
.y76{bottom:591.109350px;}
.y25c{bottom:596.412600px;}
.y35{bottom:598.852800px;}
.y97{bottom:601.407000px;}
.y132{bottom:601.921350px;}
.y181{bottom:603.062400px;}
.y15a{bottom:603.571350px;}
.y101{bottom:603.586350px;}
.yce{bottom:603.608850px;}
.y75{bottom:607.618350px;}
.y25b{bottom:609.248850px;}
.y210{bottom:610.771350px;}
.y18{bottom:612.934650px;}
.y34{bottom:615.349800px;}
.y96{bottom:619.407000px;}
.y131{bottom:619.921350px;}
.y180{bottom:621.062400px;}
.y159{bottom:621.571350px;}
.y100{bottom:621.586350px;}
.ycd{bottom:621.608850px;}
.y25a{bottom:622.085100px;}
.y74{bottom:624.115350px;}
.y17{bottom:627.934650px;}
.y20f{bottom:631.171350px;}
.y33{bottom:631.846800px;}
.y259{bottom:634.921350px;}
.y95{bottom:637.407000px;}
.y130{bottom:637.921350px;}
.y17f{bottom:639.062400px;}
.y158{bottom:639.571350px;}
.yff{bottom:639.586350px;}
.ycc{bottom:639.608850px;}
.y73{bottom:640.612350px;}
.y16{bottom:642.934650px;}
.y20e{bottom:645.571350px;}
.y258{bottom:647.757600px;}
.y32{bottom:648.343800px;}
.y94{bottom:655.407000px;}
.y12f{bottom:655.921350px;}
.y17e{bottom:657.062400px;}
.y72{bottom:657.109350px;}
.y157{bottom:657.571350px;}
.yfe{bottom:657.586350px;}
.ycb{bottom:657.608850px;}
.y15{bottom:657.934650px;}
.y257{bottom:660.593850px;}
.y31{bottom:664.867800px;}
.y20d{bottom:665.971350px;}
.y14{bottom:672.934650px;}
.y93{bottom:673.411350px;}
.y256{bottom:673.430100px;}
.y71{bottom:673.618350px;}
.y17d{bottom:675.062400px;}
.y156{bottom:675.571350px;}
.yfd{bottom:675.586350px;}
.yca{bottom:675.608850px;}
.y30{bottom:681.364800px;}
.y255{bottom:686.266350px;}
.y20c{bottom:686.971350px;}
.y13{bottom:687.934650px;}
.y17a{bottom:688.798350px;}
.y70{bottom:690.115350px;}
.y12e{bottom:690.211350px;}
.y92{bottom:691.411350px;}
.y155{bottom:693.571350px;}
.yfc{bottom:693.586350px;}
.yc9{bottom:693.608850px;}
.y2f{bottom:697.861800px;}
.y254{bottom:699.102600px;}
.y6f{bottom:706.612350px;}
.y20b{bottom:707.371350px;}
.y12d{bottom:708.211350px;}
.y91{bottom:709.411350px;}
.y154{bottom:711.571350px;}
.yfb{bottom:711.586350px;}
.y12{bottom:711.934650px;}
.y253{bottom:711.938850px;}
.y1a2{bottom:712.292250px;}
.y2e{bottom:714.358800px;}
.y20a{bottom:721.771350px;}
.y6e{bottom:723.109350px;}
.y252{bottom:724.775100px;}
.y12c{bottom:726.211350px;}
.y11{bottom:726.934650px;}
.y2a3{bottom:727.381350px;}
.y90{bottom:727.411350px;}
.y2c2{bottom:727.493850px;}
.y1a1{bottom:728.492250px;}
.yc8{bottom:729.353850px;}
.y153{bottom:729.571350px;}
.yfa{bottom:729.586350px;}
.y2d{bottom:730.855800px;}
.y209{bottom:736.171350px;}
.y251{bottom:737.611350px;}
.y6d{bottom:739.618350px;}
.y2a2{bottom:740.127600px;}
.y2c1{bottom:740.240100px;}
.y10{bottom:741.934650px;}
.y12b{bottom:744.211350px;}
.y1a0{bottom:744.692250px;}
.y8f{bottom:745.411350px;}
.y2c{bottom:747.352800px;}
.yc7{bottom:747.353850px;}
.y152{bottom:747.571350px;}
.yf9{bottom:747.586350px;}
.y250{bottom:750.447600px;}
.y208{bottom:750.571350px;}
.y2a1{bottom:752.873850px;}
.y2c0{bottom:752.986350px;}
.y6c{bottom:756.115350px;}
.yf{bottom:756.934650px;}
.y19f{bottom:760.892250px;}
.y12a{bottom:762.211350px;}
.y24f{bottom:763.283850px;}
.y8e{bottom:763.411350px;}
.y2b{bottom:763.849800px;}
.yc6{bottom:765.353850px;}
.y151{bottom:765.571350px;}
.yf8{bottom:765.586350px;}
.y2a0{bottom:765.620100px;}
.y2bf{bottom:765.732600px;}
.y207{bottom:770.971350px;}
.ye{bottom:771.934650px;}
.y6b{bottom:772.612350px;}
.y24e{bottom:776.120100px;}
.y29f{bottom:778.366350px;}
.y2be{bottom:778.478850px;}
.y129{bottom:780.211350px;}
.y2a{bottom:780.346800px;}
.yc5{bottom:783.353850px;}
.y150{bottom:783.571350px;}
.yf7{bottom:783.586350px;}
.y206{bottom:785.371350px;}
.yd{bottom:786.934650px;}
.y24d{bottom:788.956350px;}
.y6a{bottom:789.109350px;}
.y29e{bottom:791.112600px;}
.y2bd{bottom:791.225100px;}
.y29{bottom:796.843800px;}
.y128{bottom:798.211350px;}
.y205{bottom:799.771350px;}
.yc4{bottom:801.353850px;}
.y14f{bottom:801.571350px;}
.yf6{bottom:801.586350px;}
.y24c{bottom:801.792600px;}
.yc{bottom:801.934650px;}
.y29d{bottom:803.858850px;}
.y2bc{bottom:803.971350px;}
.y28{bottom:813.340800px;}
.y204{bottom:814.171350px;}
.y24b{bottom:814.628850px;}
.y127{bottom:816.211350px;}
.y29c{bottom:816.605100px;}
.y2bb{bottom:816.717600px;}
.yb{bottom:816.934650px;}
.yc3{bottom:819.353850px;}
.y8d{bottom:819.571350px;}
.yf5{bottom:819.586350px;}
.y69{bottom:820.840650px;}
.y24a{bottom:827.465100px;}
.y29b{bottom:829.351350px;}
.y2ba{bottom:829.463850px;}
.y27{bottom:829.840800px;}
.y17b{bottom:831.298350px;}
.ya{bottom:831.934650px;}
.y126{bottom:834.211350px;}
.yc2{bottom:837.353850px;}
.y8c{bottom:837.571350px;}
.yf4{bottom:837.586350px;}
.y249{bottom:840.301350px;}
.y29a{bottom:842.097600px;}
.y2b9{bottom:842.210100px;}
.y203{bottom:846.571350px;}
.y125{bottom:852.211350px;}
.y248{bottom:853.137600px;}
.y299{bottom:854.843850px;}
.y2b8{bottom:854.956350px;}
.yc1{bottom:855.353850px;}
.y8b{bottom:855.571350px;}
.yf3{bottom:855.586350px;}
.y247{bottom:865.973850px;}
.y202{bottom:866.971200px;}
.y298{bottom:867.590100px;}
.y2b7{bottom:867.702600px;}
.y124{bottom:870.211350px;}
.yc0{bottom:873.346350px;}
.y8a{bottom:873.571350px;}
.yf2{bottom:873.586350px;}
.y201{bottom:876.571350px;}
.y246{bottom:878.810100px;}
.y297{bottom:880.336350px;}
.y2b6{bottom:880.448850px;}
.y123{bottom:888.211350px;}
.ybf{bottom:891.346350px;}
.y89{bottom:891.571350px;}
.yf1{bottom:891.586350px;}
.y245{bottom:891.646350px;}
.y296{bottom:893.082600px;}
.y2b5{bottom:893.195100px;}
.y200{bottom:896.971200px;}
.y9{bottom:898.837650px;}
.y244{bottom:904.482600px;}
.y295{bottom:905.828850px;}
.y2b4{bottom:905.941350px;}
.y122{bottom:906.211350px;}
.y1ff{bottom:906.571350px;}
.ybe{bottom:909.346350px;}
.y88{bottom:909.571350px;}
.yf0{bottom:909.586350px;}
.y243{bottom:917.318850px;}
.y8{bottom:918.340650px;}
.y294{bottom:918.575100px;}
.y2b3{bottom:918.687600px;}
.y121{bottom:924.211350px;}
.y1fe{bottom:926.971200px;}
.y87{bottom:927.571350px;}
.yef{bottom:927.586350px;}
.y242{bottom:930.155100px;}
.y293{bottom:931.321350px;}
.y2b2{bottom:931.433850px;}
.y1fd{bottom:936.571350px;}
.y120{bottom:942.211350px;}
.y241{bottom:942.991350px;}
.y292{bottom:944.067600px;}
.y2b1{bottom:944.180100px;}
.ybd{bottom:945.091350px;}
.y86{bottom:945.571350px;}
.yee{bottom:945.586350px;}
.y240{bottom:955.827600px;}
.y291{bottom:956.813850px;}
.y2b0{bottom:956.926350px;}
.y1fc{bottom:956.971200px;}
.y11f{bottom:960.211350px;}
.ybc{bottom:963.091350px;}
.y85{bottom:963.571350px;}
.yed{bottom:963.586350px;}
.y1fb{bottom:966.571350px;}
.y23f{bottom:968.663850px;}
.y290{bottom:969.560100px;}
.y2af{bottom:969.672600px;}
.y7{bottom:976.822650px;}
.y17c{bottom:978.298350px;}
.ybb{bottom:981.091350px;}
.y23e{bottom:981.500100px;}
.y84{bottom:981.571350px;}
.yec{bottom:981.586350px;}
.y28f{bottom:982.306350px;}
.y2ae{bottom:982.418850px;}
.y1fa{bottom:986.971200px;}
.y23d{bottom:994.336350px;}
.y28e{bottom:995.052600px;}
.y2ad{bottom:995.165100px;}
.y1f9{bottom:996.571350px;}
.yba{bottom:999.091350px;}
.y83{bottom:999.571350px;}
.y23c{bottom:1007.172600px;}
.y28d{bottom:1007.798850px;}
.y2ac{bottom:1007.911350px;}
.y6{bottom:1015.828650px;}
.y1f8{bottom:1016.971200px;}
.yb9{bottom:1017.087000px;}
.y82{bottom:1017.571350px;}
.y23b{bottom:1020.008850px;}
.y28c{bottom:1020.545100px;}
.y2ab{bottom:1020.657600px;}
.y1f7{bottom:1026.571350px;}
.y23a{bottom:1032.845100px;}
.y28b{bottom:1033.291350px;}
.y2aa{bottom:1033.403850px;}
.yb8{bottom:1035.087000px;}
.y81{bottom:1035.571350px;}
.y239{bottom:1045.681350px;}
.y28a{bottom:1046.037600px;}
.y2a9{bottom:1046.150100px;}
.y1f6{bottom:1046.971200px;}
.yb7{bottom:1053.087000px;}
.y80{bottom:1053.571350px;}
.y5{bottom:1054.834650px;}
.y1f5{bottom:1056.571350px;}
.y238{bottom:1058.517600px;}
.y289{bottom:1058.783850px;}
.y2a8{bottom:1058.896350px;}
.yb6{bottom:1071.087000px;}
.y237{bottom:1071.353850px;}
.y288{bottom:1071.530100px;}
.y7f{bottom:1071.571350px;}
.y2a7{bottom:1071.642600px;}
.y236{bottom:1084.190100px;}
.y287{bottom:1084.276350px;}
.y2a6{bottom:1084.388850px;}
.yb5{bottom:1089.087000px;}
.y7e{bottom:1089.571350px;}
.y4{bottom:1093.840650px;}
.y286{bottom:1097.022600px;}
.y235{bottom:1097.026350px;}
.y2a5{bottom:1097.135100px;}
.yb4{bottom:1107.087000px;}
.y7d{bottom:1107.571350px;}
.y285{bottom:1109.768850px;}
.y234{bottom:1109.862600px;}
.y2a4{bottom:1109.881350px;}
.y3{bottom:1140.946200px;}
.y7c{bottom:1140.946350px;}
.h1b{height:23.167872px;}
.h1d{height:32.895000px;}
.h1c{height:34.875000px;}
.h3{height:34.944000px;}
.h17{height:35.088000px;}
.h8{height:36.000000px;}
.h18{height:37.200000px;}
.h9{height:39.312000px;}
.h16{height:41.850000px;}
.h2{height:43.680000px;}
.h4{height:43.860000px;}
.he{height:44.040000px;}
.h13{height:44.460000px;}
.hb{height:50.243856px;}
.ha{height:50.255856px;}
.hc{height:50.327856px;}
.hd{height:50.351856px;}
.h10{height:56.173920px;}
.h12{height:56.181120px;}
.h19{height:56.197920px;}
.hf{height:56.198520px;}
.h1a{height:56.199120px;}
.h14{height:56.215920px;}
.h15{height:56.228520px;}
.h11{height:56.320312px;}
.h6{height:63.612450px;}
.h7{height:63.624450px;}
.h5{height:95.906250px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:60.750000px;}
.x3{left:66.450000px;}
.x6{left:70.399950px;}
.xe{left:74.250000px;}
.x21{left:84.667500px;}
.x12{left:110.258850px;}
.x13{left:131.201700px;}
.x14{left:145.601700px;}
.x15{left:166.169700px;}
.x16{left:189.737700px;}
.x17{left:208.805700px;}
.x4{left:220.379400px;}
.x18{left:229.373700px;}
.x19{left:249.941700px;}
.x2{left:260.429700px;}
.x1a{left:270.509700px;}
.x1b{left:291.077700px;}
.x1c{left:311.645700px;}
.x1d{left:332.213700px;}
.x1e{left:351.281700px;}
.x1f{left:377.848200px;}
.x20{left:392.248200px;}
.xf{left:460.342500px;}
.x10{left:473.838450px;}
.x22{left:484.166250px;}
.x8{left:537.520200px;}
.xa{left:546.518850px;}
.x9{left:551.022750px;}
.xb{left:558.395850px;}
.xc{left:564.518850px;}
.x11{left:723.708900px;}
.x7{left:752.065200px;}
.x1{left:824.963400px;}
.xd{left:867.000000px;}
@media print{
.v4{vertical-align:-19.199467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.504000pt;}
.v3{vertical-align:24.000000pt;}
.v1{vertical-align:26.400000pt;}
.ls6{letter-spacing:-1.578667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000213pt;}
.ls1{letter-spacing:0.000491pt;}
.lsa{letter-spacing:0.009600pt;}
.lsc{letter-spacing:0.010133pt;}
.ls10{letter-spacing:0.200000pt;}
.lsf{letter-spacing:0.399600pt;}
.lsb{letter-spacing:1.060800pt;}
.lse{letter-spacing:1.166880pt;}
.ls8{letter-spacing:1.600000pt;}
.ls9{letter-spacing:1.601600pt;}
.lsd{letter-spacing:1.760000pt;}
.ls0{letter-spacing:3.360000pt;}
.ls2{letter-spacing:15.289067pt;}
.ls4{letter-spacing:21.770667pt;}
.ls7{letter-spacing:1394.344533pt;}
.ws1{word-spacing:-18.186667pt;}
.wse3{word-spacing:-15.626667pt;}
.ws6{word-spacing:-13.866667pt;}
.ws7{word-spacing:-13.344000pt;}
.ws2{word-spacing:-12.800000pt;}
.wse2{word-spacing:-11.861333pt;}
.ws3{word-spacing:-11.520000pt;}
.ws13b{word-spacing:-10.999600pt;}
.ws0{word-spacing:-10.813088pt;}
.wse4{word-spacing:-10.360480pt;}
.ws36{word-spacing:-10.254400pt;}
.wsa{word-spacing:-10.240427pt;}
.ws137{word-spacing:-10.240000pt;}
.ws5{word-spacing:-9.193600pt;}
.ws4{word-spacing:-7.637760pt;}
.wsb2{word-spacing:-7.199467pt;}
.ws136{word-spacing:-6.789120pt;}
.ws51{word-spacing:-6.346667pt;}
.ws107{word-spacing:-6.186667pt;}
.wsb{word-spacing:-5.520480pt;}
.wsb0{word-spacing:-5.012800pt;}
.ws130{word-spacing:-3.840533pt;}
.wsab{word-spacing:-3.519467pt;}
.ws29{word-spacing:-3.466667pt;}
.ws50{word-spacing:-3.360000pt;}
.ws103{word-spacing:-3.253333pt;}
.ws87{word-spacing:-3.040533pt;}
.wsd7{word-spacing:-2.986667pt;}
.ws8e{word-spacing:-2.880000pt;}
.ws105{word-spacing:-2.826133pt;}
.wsc9{word-spacing:-2.666667pt;}
.ws111{word-spacing:-2.613333pt;}
.ws124{word-spacing:-2.560000pt;}
.ws35{word-spacing:-2.496000pt;}
.ws78{word-spacing:-2.453867pt;}
.ws126{word-spacing:-2.400000pt;}
.ws4a{word-spacing:-2.347200pt;}
.ws17{word-spacing:-2.293333pt;}
.ws40{word-spacing:-2.240533pt;}
.ws12{word-spacing:-2.186667pt;}
.wsf{word-spacing:-2.080000pt;}
.ws101{word-spacing:-1.973333pt;}
.wsca{word-spacing:-1.920000pt;}
.ws42{word-spacing:-1.866667pt;}
.wsc6{word-spacing:-1.813333pt;}
.ws20{word-spacing:-1.760000pt;}
.ws5b{word-spacing:-1.600000pt;}
.ws135{word-spacing:-1.547200pt;}
.wsa8{word-spacing:-1.493333pt;}
.ws7a{word-spacing:-1.439467pt;}
.wse7{word-spacing:-1.386667pt;}
.ws9c{word-spacing:-1.280000pt;}
.wsc0{word-spacing:-1.226133pt;}
.ws131{word-spacing:-1.173333pt;}
.ws10a{word-spacing:-1.166880pt;}
.ws44{word-spacing:-1.120000pt;}
.wsf6{word-spacing:-1.013333pt;}
.wsf1{word-spacing:-0.960533pt;}
.ws8d{word-spacing:-0.906667pt;}
.ws88{word-spacing:-0.853867pt;}
.ws6c{word-spacing:-0.800000pt;}
.ws6f{word-spacing:-0.747200pt;}
.ws4d{word-spacing:-0.639467pt;}
.ws34{word-spacing:-0.624000pt;}
.ws12c{word-spacing:-0.586667pt;}
.wsaf{word-spacing:-0.532800pt;}
.wsf5{word-spacing:-0.480000pt;}
.ws13a{word-spacing:-0.399600pt;}
.ws32{word-spacing:-0.384000pt;}
.wsad{word-spacing:-0.320000pt;}
.ws119{word-spacing:-0.213333pt;}
.ws13d{word-spacing:-0.200000pt;}
.ws121{word-spacing:-0.160533pt;}
.ws13c{word-spacing:-0.120400pt;}
.wsa6{word-spacing:-0.106667pt;}
.ws89{word-spacing:-0.053867pt;}
.ws8a{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048480pt;}
.ws139{word-spacing:-0.040400pt;}
.ws8{word-spacing:0.000000pt;}
.ws10e{word-spacing:0.053867pt;}
.ws15{word-spacing:0.106434pt;}
.wsdc{word-spacing:0.106667pt;}
.ws16{word-spacing:0.160533pt;}
.wsf2{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.288000pt;}
.wsa3{word-spacing:0.320000pt;}
.ws4b{word-spacing:0.426667pt;}
.ws4c{word-spacing:0.480000pt;}
.wsec{word-spacing:0.532800pt;}
.ws2c{word-spacing:0.575520pt;}
.ws7d{word-spacing:0.586667pt;}
.wsa0{word-spacing:0.693333pt;}
.ws132{word-spacing:0.747200pt;}
.ws80{word-spacing:0.800000pt;}
.wsba{word-spacing:0.853867pt;}
.wsae{word-spacing:0.906667pt;}
.wse6{word-spacing:0.960533pt;}
.wsb9{word-spacing:1.013333pt;}
.wscf{word-spacing:1.066667pt;}
.ws47{word-spacing:1.120000pt;}
.ws91{word-spacing:1.173333pt;}
.ws4e{word-spacing:1.226133pt;}
.wsf3{word-spacing:1.280000pt;}
.ws5c{word-spacing:1.332800pt;}
.ws90{word-spacing:1.386667pt;}
.ws7c{word-spacing:1.439467pt;}
.ws95{word-spacing:1.547200pt;}
.ws9{word-spacing:1.578667pt;}
.wsdb{word-spacing:1.600000pt;}
.ws129{word-spacing:1.706667pt;}
.ws86{word-spacing:1.760000pt;}
.wsda{word-spacing:1.813333pt;}
.ws84{word-spacing:1.866667pt;}
.ws9a{word-spacing:1.920000pt;}
.ws57{word-spacing:1.973333pt;}
.ws10f{word-spacing:2.026133pt;}
.ws5a{word-spacing:2.080000pt;}
.ws60{word-spacing:2.186667pt;}
.ws12f{word-spacing:2.240533pt;}
.wse9{word-spacing:2.293333pt;}
.ws1d{word-spacing:2.347200pt;}
.wsd0{word-spacing:2.453867pt;}
.ws82{word-spacing:2.560000pt;}
.wsd6{word-spacing:2.613333pt;}
.ws138{word-spacing:2.666667pt;}
.ws25{word-spacing:2.773333pt;}
.wsd9{word-spacing:2.880000pt;}
.ws75{word-spacing:2.986667pt;}
.ws33{word-spacing:3.024000pt;}
.ws19{word-spacing:3.040533pt;}
.ws62{word-spacing:3.093333pt;}
.wsdd{word-spacing:3.147200pt;}
.wsc4{word-spacing:3.253333pt;}
.ws7e{word-spacing:3.306667pt;}
.ws98{word-spacing:3.360000pt;}
.ws127{word-spacing:3.466667pt;}
.ws5f{word-spacing:3.519467pt;}
.ws11e{word-spacing:3.573333pt;}
.ws24{word-spacing:3.626133pt;}
.ws108{word-spacing:3.680000pt;}
.ws77{word-spacing:3.733867pt;}
.wsa9{word-spacing:3.786667pt;}
.ws39{word-spacing:3.840533pt;}
.wsc1{word-spacing:3.893333pt;}
.ws2d{word-spacing:3.936000pt;}
.ws6a{word-spacing:3.947200pt;}
.ws6d{word-spacing:4.106667pt;}
.ws81{word-spacing:4.212800pt;}
.ws113{word-spacing:4.266667pt;}
.wsb8{word-spacing:4.319467pt;}
.ws31{word-spacing:4.368000pt;}
.ws134{word-spacing:4.373333pt;}
.wsb5{word-spacing:4.426133pt;}
.ws99{word-spacing:4.480000pt;}
.ws97{word-spacing:4.533867pt;}
.ws72{word-spacing:4.586667pt;}
.ws102{word-spacing:4.693333pt;}
.wsd4{word-spacing:4.746667pt;}
.ws59{word-spacing:4.800000pt;}
.ws2f{word-spacing:4.800480pt;}
.wsb7{word-spacing:4.906667pt;}
.ws94{word-spacing:4.960000pt;}
.ws93{word-spacing:5.012800pt;}
.ws70{word-spacing:5.066667pt;}
.ws12a{word-spacing:5.173333pt;}
.ws92{word-spacing:5.280000pt;}
.wse8{word-spacing:5.333867pt;}
.ws43{word-spacing:5.386667pt;}
.ws3f{word-spacing:5.493333pt;}
.wsc3{word-spacing:5.546667pt;}
.ws11d{word-spacing:5.600000pt;}
.ws9f{word-spacing:5.653333pt;}
.wsb6{word-spacing:5.760000pt;}
.wsac{word-spacing:5.866667pt;}
.ws10{word-spacing:6.080000pt;}
.wsdf{word-spacing:6.186667pt;}
.ws27{word-spacing:6.240000pt;}
.wse0{word-spacing:6.293333pt;}
.wsea{word-spacing:6.346667pt;}
.ws64{word-spacing:6.453333pt;}
.ws9b{word-spacing:6.506133pt;}
.ws118{word-spacing:6.560000pt;}
.ws8b{word-spacing:6.612800pt;}
.ws26{word-spacing:6.720533pt;}
.ws56{word-spacing:6.933333pt;}
.ws106{word-spacing:6.986667pt;}
.wsed{word-spacing:7.093333pt;}
.ws5d{word-spacing:7.146667pt;}
.wsfa{word-spacing:7.199467pt;}
.ws9e{word-spacing:7.253333pt;}
.wsff{word-spacing:7.306133pt;}
.ws11f{word-spacing:7.466667pt;}
.ws74{word-spacing:7.520533pt;}
.ws55{word-spacing:7.573333pt;}
.ws109{word-spacing:7.627200pt;}
.ws21{word-spacing:7.680000pt;}
.ws38{word-spacing:7.708480pt;}
.ws110{word-spacing:7.786667pt;}
.ws41{word-spacing:7.840000pt;}
.ws45{word-spacing:7.946667pt;}
.ws2a{word-spacing:8.016480pt;}
.ws9d{word-spacing:8.053333pt;}
.ws69{word-spacing:8.213867pt;}
.wsbd{word-spacing:8.266667pt;}
.wsd8{word-spacing:8.373333pt;}
.wsee{word-spacing:8.480000pt;}
.wse1{word-spacing:8.586667pt;}
.ws116{word-spacing:8.592480pt;}
.ws3d{word-spacing:8.627840pt;}
.wsc8{word-spacing:8.640000pt;}
.wsd2{word-spacing:8.799467pt;}
.ws1f{word-spacing:8.804286pt;}
.wsbc{word-spacing:8.907200pt;}
.ws83{word-spacing:8.960000pt;}
.ws67{word-spacing:9.013867pt;}
.wsbf{word-spacing:9.066667pt;}
.ws120{word-spacing:9.226667pt;}
.ws46{word-spacing:9.280000pt;}
.wsb3{word-spacing:9.333333pt;}
.ws10d{word-spacing:9.386133pt;}
.ws10b{word-spacing:9.440000pt;}
.ws73{word-spacing:9.492800pt;}
.wsaa{word-spacing:9.653333pt;}
.ws133{word-spacing:9.813867pt;}
.ws96{word-spacing:9.920000pt;}
.wsa5{word-spacing:9.973333pt;}
.wsf0{word-spacing:10.026667pt;}
.ws7f{word-spacing:10.080000pt;}
.ws123{word-spacing:10.133333pt;}
.wsc2{word-spacing:10.186133pt;}
.ws12d{word-spacing:10.240000pt;}
.ws8f{word-spacing:10.292800pt;}
.ws2b{word-spacing:10.320000pt;}
.wsce{word-spacing:10.346667pt;}
.wsd1{word-spacing:10.400533pt;}
.ws7b{word-spacing:10.453333pt;}
.ws100{word-spacing:10.507200pt;}
.ws65{word-spacing:10.560000pt;}
.ws76{word-spacing:10.613867pt;}
.wscc{word-spacing:10.720000pt;}
.ws4f{word-spacing:10.933333pt;}
.ws6b{word-spacing:11.040000pt;}
.ws52{word-spacing:11.253333pt;}
.ws54{word-spacing:11.307200pt;}
.wseb{word-spacing:11.360000pt;}
.ws125{word-spacing:11.466667pt;}
.ws8c{word-spacing:11.520000pt;}
.wsbe{word-spacing:11.573333pt;}
.ws37{word-spacing:11.626667pt;}
.wsf7{word-spacing:11.679467pt;}
.ws14{word-spacing:11.733333pt;}
.wsc5{word-spacing:11.786133pt;}
.ws3b{word-spacing:11.946667pt;}
.ws1a{word-spacing:12.000533pt;}
.ws68{word-spacing:12.107200pt;}
.wsa2{word-spacing:12.160000pt;}
.ws104{word-spacing:12.266667pt;}
.ws71{word-spacing:12.372800pt;}
.wsa4{word-spacing:12.426667pt;}
.ws117{word-spacing:12.479467pt;}
.ws3a{word-spacing:12.586133pt;}
.ws5e{word-spacing:12.693867pt;}
.wsef{word-spacing:12.746667pt;}
.ws49{word-spacing:12.800533pt;}
.wsd5{word-spacing:12.853333pt;}
.ws61{word-spacing:12.906667pt;}
.ws115{word-spacing:12.960000pt;}
.ws3e{word-spacing:13.013333pt;}
.ws30{word-spacing:13.103520pt;}
.ws1e{word-spacing:13.279467pt;}
.wsa7{word-spacing:13.440000pt;}
.ws12e{word-spacing:13.706667pt;}
.ws3c{word-spacing:13.920000pt;}
.ws58{word-spacing:13.972800pt;}
.wsc7{word-spacing:14.080533pt;}
.wsf8{word-spacing:14.400000pt;}
.wsf4{word-spacing:14.559467pt;}
.ws18{word-spacing:14.880533pt;}
.ws128{word-spacing:14.987200pt;}
.ws23{word-spacing:15.093333pt;}
.ws85{word-spacing:15.306667pt;}
.wscb{word-spacing:15.359467pt;}
.wsb4{word-spacing:15.787200pt;}
.ws28{word-spacing:16.213333pt;}
.ws114{word-spacing:16.533333pt;}
.ws6e{word-spacing:16.693333pt;}
.ws11{word-spacing:16.906667pt;}
.wse5{word-spacing:17.120000pt;}
.wsbb{word-spacing:17.600000pt;}
.wsf9{word-spacing:18.186667pt;}
.ws10c{word-spacing:18.452800pt;}
.ws11c{word-spacing:18.560533pt;}
.wsfe{word-spacing:18.613333pt;}
.ws112{word-spacing:18.667200pt;}
.wsde{word-spacing:18.826667pt;}
.ws11a{word-spacing:18.880000pt;}
.wsfc{word-spacing:19.039467pt;}
.ws53{word-spacing:19.200000pt;}
.ws79{word-spacing:19.733333pt;}
.wsfd{word-spacing:19.786667pt;}
.wsb1{word-spacing:19.893333pt;}
.ws13{word-spacing:20.106667pt;}
.ws66{word-spacing:20.213333pt;}
.wsa1{word-spacing:20.373333pt;}
.ws1c{word-spacing:21.600000pt;}
.ws11b{word-spacing:21.973333pt;}
.ws1b{word-spacing:22.240533pt;}
.wsd{word-spacing:22.400000pt;}
.ws48{word-spacing:22.826133pt;}
.ws63{word-spacing:23.360000pt;}
.wsd3{word-spacing:23.626133pt;}
.ws12b{word-spacing:25.280000pt;}
.ws22{word-spacing:25.440533pt;}
.ws122{word-spacing:27.786667pt;}
.wse{word-spacing:28.320533pt;}
.wsfb{word-spacing:31.840000pt;}
.wscd{word-spacing:90.026667pt;}
._b{margin-left:-2683.964160pt;}
._a{margin-left:-1582.126560pt;}
._9{margin-left:-52.480000pt;}
._4{margin-left:-42.640000pt;}
._4d{margin-left:-38.986667pt;}
._e{margin-left:-27.466667pt;}
._10{margin-left:-23.258667pt;}
._c{margin-left:-21.333333pt;}
._11{margin-left:-19.626667pt;}
._d{margin-left:-16.586667pt;}
._12{margin-left:-12.960000pt;}
._f{margin-left:-11.258667pt;}
._6{margin-left:-10.240000pt;}
._13{margin-left:-8.480000pt;}
._52{margin-left:-7.566400pt;}
._1{margin-left:-6.512000pt;}
._2{margin-left:-5.403200pt;}
._7{margin-left:-4.368000pt;}
._3{margin-left:-3.157333pt;}
._0{margin-left:-1.582933pt;}
._5{width:1.186133pt;}
._50{width:10.240000pt;}
._4f{width:11.520000pt;}
._8{width:12.480000pt;}
._53{width:16.500667pt;}
._51{width:18.320000pt;}
._14{width:19.994667pt;}
._54{width:29.239200pt;}
._4e{width:33.792000pt;}
._15{width:34.731200pt;}
._1b{width:36.096000pt;}
._1c{width:41.429333pt;}
._2e{width:42.666667pt;}
._1e{width:46.762667pt;}
._19{width:51.072000pt;}
._17{width:57.429333pt;}
._28{width:65.920000pt;}
._2c{width:78.634667pt;}
._30{width:87.637333pt;}
._2b{width:89.045333pt;}
._20{width:99.498667pt;}
._47{width:101.888000pt;}
._2a{width:104.021333pt;}
._32{width:106.026667pt;}
._22{width:115.498667pt;}
._3b{width:117.888000pt;}
._34{width:122.026667pt;}
._45{width:125.312000pt;}
._36{width:127.360000pt;}
._43{width:129.621333pt;}
._24{width:131.498667pt;}
._3d{width:133.888000pt;}
._29{width:135.978667pt;}
._46{width:137.088000pt;}
._25{width:138.368000pt;}
._2d{width:139.434667pt;}
._26{width:144.554667pt;}
._40{width:146.944000pt;}
._27{width:149.888000pt;}
._23{width:153.344000pt;}
._44{width:155.562667pt;}
._21{width:159.701333pt;}
._16{width:161.365333pt;}
._18{width:172.032000pt;}
._1d{width:182.698667pt;}
._1a{width:188.032000pt;}
._4c{width:203.946667pt;}
._35{width:219.776000pt;}
._37{width:225.109333pt;}
._38{width:230.101333pt;}
._3e{width:231.637333pt;}
._4a{width:237.824000pt;}
._4b{width:242.304000pt;}
._49{width:246.613333pt;}
._48{width:252.970667pt;}
._33{width:256.085333pt;}
._31{width:262.442667pt;}
._3f{width:264.490667pt;}
._3c{width:267.946667pt;}
._41{width:268.970667pt;}
._3a{width:274.304000pt;}
._42{width:284.757333pt;}
._1f{width:396.288000pt;}
._39{width:539.008000pt;}
._2f{width:541.610667pt;}
.fs9{font-size:28.288000pt;}
.fs7{font-size:31.824000pt;}
.fs5{font-size:34.666667pt;}
.fs8{font-size:35.360000pt;}
.fs4{font-size:38.896000pt;}
.fsa{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:36.785200pt;}
.y1{bottom:36.787867pt;}
.y1de{bottom:72.054000pt;}
.y19e{bottom:72.055467pt;}
.y11e{bottom:72.521200pt;}
.y175{bottom:72.534533pt;}
.y68{bottom:72.537467pt;}
.y51{bottom:72.542933pt;}
.yb3{bottom:72.544000pt;}
.yeb{bottom:72.547867pt;}
.y1f0{bottom:72.555467pt;}
.y14e{bottom:72.561200pt;}
.y20{bottom:72.566933pt;}
.y233{bottom:72.604533pt;}
.y1b9{bottom:72.782133pt;}
.y284{bottom:73.744533pt;}
.y176{bottom:77.854533pt;}
.y232{bottom:83.934533pt;}
.y283{bottom:85.154533pt;}
.y1f{bottom:85.900267pt;}
.y1dd{bottom:88.054000pt;}
.y19d{bottom:88.055467pt;}
.y11d{bottom:88.521200pt;}
.y174{bottom:88.534533pt;}
.y67{bottom:88.537467pt;}
.y50{bottom:88.542933pt;}
.yb2{bottom:88.544000pt;}
.yea{bottom:88.547867pt;}
.y14d{bottom:88.561200pt;}
.y1ef{bottom:88.622133pt;}
.y1b8{bottom:88.795467pt;}
.y231{bottom:95.264533pt;}
.y282{bottom:96.564533pt;}
.y1e{bottom:99.233600pt;}
.y1dc{bottom:104.054000pt;}
.y19c{bottom:104.055467pt;}
.y11c{bottom:104.521200pt;}
.y173{bottom:104.534533pt;}
.y66{bottom:104.537467pt;}
.y4f{bottom:104.542933pt;}
.yb1{bottom:104.544000pt;}
.ye9{bottom:104.547867pt;}
.y14c{bottom:104.561200pt;}
.y1ee{bottom:104.688800pt;}
.y1b7{bottom:104.808800pt;}
.y230{bottom:106.594533pt;}
.y281{bottom:107.974533pt;}
.y22f{bottom:117.924533pt;}
.y280{bottom:119.384533pt;}
.y1db{bottom:120.054000pt;}
.y19b{bottom:120.055467pt;}
.y11b{bottom:120.521200pt;}
.y172{bottom:120.534533pt;}
.y65{bottom:120.537467pt;}
.y4e{bottom:120.542933pt;}
.yb0{bottom:120.544000pt;}
.ye8{bottom:120.547867pt;}
.y14b{bottom:120.561200pt;}
.y1ed{bottom:120.755467pt;}
.y1b6{bottom:120.822133pt;}
.y1d{bottom:124.566933pt;}
.y22e{bottom:129.254533pt;}
.y27f{bottom:130.794533pt;}
.y1da{bottom:136.054000pt;}
.y19a{bottom:136.055467pt;}
.y11a{bottom:136.521200pt;}
.y171{bottom:136.534533pt;}
.y64{bottom:136.537467pt;}
.y4d{bottom:136.542933pt;}
.yaf{bottom:136.544000pt;}
.ye7{bottom:136.547867pt;}
.y14a{bottom:136.561200pt;}
.y1ec{bottom:136.822133pt;}
.y1b5{bottom:136.835467pt;}
.y1c{bottom:137.900267pt;}
.y22d{bottom:140.584533pt;}
.y27e{bottom:142.204533pt;}
.y22c{bottom:151.914533pt;}
.y1d9{bottom:152.054000pt;}
.y199{bottom:152.055467pt;}
.y119{bottom:152.521200pt;}
.y170{bottom:152.534533pt;}
.y63{bottom:152.537467pt;}
.y4c{bottom:152.542933pt;}
.ye6{bottom:152.547867pt;}
.y149{bottom:152.561200pt;}
.y1b4{bottom:152.848800pt;}
.y1eb{bottom:152.888800pt;}
.y27d{bottom:153.614533pt;}
.y26{bottom:154.849467pt;}
.y22b{bottom:163.244533pt;}
.y27c{bottom:165.024533pt;}
.yae{bottom:166.584000pt;}
.y25{bottom:167.649467pt;}
.y1d8{bottom:168.054000pt;}
.y198{bottom:168.055467pt;}
.y118{bottom:168.521200pt;}
.y16f{bottom:168.534533pt;}
.y62{bottom:168.537467pt;}
.y4b{bottom:168.542933pt;}
.ye5{bottom:168.547867pt;}
.y1b3{bottom:168.862133pt;}
.y1ea{bottom:168.955467pt;}
.y22a{bottom:174.574533pt;}
.y27b{bottom:176.434533pt;}
.y24{bottom:180.449467pt;}
.yad{bottom:182.584000pt;}
.y148{bottom:183.041200pt;}
.y1d7{bottom:184.054000pt;}
.y197{bottom:184.055467pt;}
.y117{bottom:184.521200pt;}
.y16e{bottom:184.534533pt;}
.y61{bottom:184.537467pt;}
.y4a{bottom:184.542933pt;}
.ye4{bottom:184.547867pt;}
.y1b2{bottom:184.875467pt;}
.y1e9{bottom:185.022133pt;}
.y229{bottom:185.904533pt;}
.y27a{bottom:187.844533pt;}
.y23{bottom:193.249467pt;}
.y228{bottom:197.234533pt;}
.yac{bottom:198.584000pt;}
.y147{bottom:199.041200pt;}
.y279{bottom:199.254533pt;}
.y1d6{bottom:200.054000pt;}
.y196{bottom:200.055467pt;}
.y116{bottom:200.521200pt;}
.y16d{bottom:200.534533pt;}
.y60{bottom:200.537467pt;}
.y49{bottom:200.542933pt;}
.ye3{bottom:200.547867pt;}
.y1b1{bottom:200.888800pt;}
.y1e8{bottom:201.088800pt;}
.y22{bottom:206.049467pt;}
.y227{bottom:208.564533pt;}
.y278{bottom:210.664533pt;}
.yab{bottom:214.584000pt;}
.y146{bottom:215.041200pt;}
.y1d5{bottom:216.054000pt;}
.y195{bottom:216.055467pt;}
.y115{bottom:216.521200pt;}
.y16c{bottom:216.534533pt;}
.y5f{bottom:216.537467pt;}
.ye2{bottom:216.547867pt;}
.y1c5{bottom:216.902000pt;}
.y1b0{bottom:216.902133pt;}
.y1e7{bottom:217.155467pt;}
.y21{bottom:218.849467pt;}
.y226{bottom:219.894533pt;}
.y277{bottom:222.074533pt;}
.y177{bottom:225.854533pt;}
.yaa{bottom:230.584000pt;}
.y145{bottom:231.041200pt;}
.y225{bottom:231.224533pt;}
.y1d4{bottom:232.054000pt;}
.y194{bottom:232.055467pt;}
.y114{bottom:232.521200pt;}
.y16b{bottom:232.534533pt;}
.y5e{bottom:232.537467pt;}
.ye1{bottom:232.547867pt;}
.y1c4{bottom:232.915333pt;}
.y1af{bottom:232.915467pt;}
.y1e6{bottom:233.222133pt;}
.y276{bottom:233.484533pt;}
.y224{bottom:242.554533pt;}
.y275{bottom:244.894533pt;}
.ya9{bottom:246.584000pt;}
.y144{bottom:247.041200pt;}
.y1d3{bottom:248.054000pt;}
.y193{bottom:248.055467pt;}
.y113{bottom:248.521200pt;}
.y16a{bottom:248.534533pt;}
.y5d{bottom:248.537467pt;}
.ye0{bottom:248.547867pt;}
.y1c3{bottom:248.928667pt;}
.y1ae{bottom:248.928800pt;}
.y1e5{bottom:249.288800pt;}
.y48{bottom:253.646933pt;}
.y223{bottom:253.884533pt;}
.y274{bottom:256.304533pt;}
.ya8{bottom:262.584000pt;}
.y143{bottom:263.041200pt;}
.y1d2{bottom:264.054000pt;}
.y192{bottom:264.055467pt;}
.y112{bottom:264.521200pt;}
.y169{bottom:264.534533pt;}
.y5c{bottom:264.537467pt;}
.ydf{bottom:264.547867pt;}
.y1c2{bottom:264.942000pt;}
.y1ad{bottom:264.942133pt;}
.y222{bottom:265.214533pt;}
.y1e4{bottom:265.355467pt;}
.y273{bottom:267.714533pt;}
.y47{bottom:268.310933pt;}
.y221{bottom:276.544533pt;}
.ya7{bottom:278.584000pt;}
.y142{bottom:279.041200pt;}
.y272{bottom:279.124533pt;}
.y1d1{bottom:280.054000pt;}
.y191{bottom:280.055467pt;}
.y111{bottom:280.521200pt;}
.y168{bottom:280.534533pt;}
.y5b{bottom:280.537467pt;}
.yde{bottom:280.547867pt;}
.y1c1{bottom:280.955333pt;}
.y1ac{bottom:280.955467pt;}
.y1e3{bottom:281.422133pt;}
.y46{bottom:282.974933pt;}
.y220{bottom:287.874533pt;}
.y271{bottom:290.534533pt;}
.ya6{bottom:294.584000pt;}
.y141{bottom:295.041200pt;}
.y1d0{bottom:296.054000pt;}
.y190{bottom:296.055467pt;}
.y110{bottom:296.521200pt;}
.y167{bottom:296.534533pt;}
.y5a{bottom:296.537467pt;}
.ydd{bottom:296.547867pt;}
.y1c0{bottom:296.968667pt;}
.y1ab{bottom:296.968800pt;}
.y1e2{bottom:297.488800pt;}
.y45{bottom:297.638933pt;}
.y21f{bottom:299.204533pt;}
.y270{bottom:301.944533pt;}
.y21e{bottom:310.534533pt;}
.ya5{bottom:310.584000pt;}
.y140{bottom:311.041200pt;}
.y1cf{bottom:312.054000pt;}
.y18f{bottom:312.055467pt;}
.y44{bottom:312.305600pt;}
.y10f{bottom:312.521200pt;}
.y166{bottom:312.534533pt;}
.y59{bottom:312.537467pt;}
.ydc{bottom:312.547867pt;}
.y1bf{bottom:312.982000pt;}
.y1aa{bottom:312.982133pt;}
.y26f{bottom:313.354533pt;}
.y1e1{bottom:313.555467pt;}
.y21d{bottom:321.864533pt;}
.y26e{bottom:324.764533pt;}
.ya4{bottom:326.584000pt;}
.y7b{bottom:326.911200pt;}
.y43{bottom:326.977600pt;}
.y13f{bottom:327.041200pt;}
.y1ce{bottom:328.054000pt;}
.y18e{bottom:328.055467pt;}
.y10e{bottom:328.521200pt;}
.y165{bottom:328.534533pt;}
.y58{bottom:328.537467pt;}
.ydb{bottom:328.547867pt;}
.y1be{bottom:328.995333pt;}
.y1a9{bottom:328.995467pt;}
.y1e0{bottom:329.622133pt;}
.y21c{bottom:333.194533pt;}
.y26d{bottom:336.174533pt;}
.y42{bottom:341.641600pt;}
.ya3{bottom:342.584000pt;}
.y13e{bottom:343.041200pt;}
.y1cd{bottom:344.054000pt;}
.y18d{bottom:344.055467pt;}
.y10d{bottom:344.521200pt;}
.y21b{bottom:344.524533pt;}
.y164{bottom:344.534533pt;}
.y57{bottom:344.537467pt;}
.yda{bottom:344.547867pt;}
.y1bd{bottom:345.008667pt;}
.y1a8{bottom:345.008800pt;}
.y26c{bottom:347.584533pt;}
.y178{bottom:353.854533pt;}
.y21a{bottom:355.854533pt;}
.y41{bottom:356.305600pt;}
.ya2{bottom:358.584000pt;}
.y26b{bottom:358.994533pt;}
.y13d{bottom:359.041200pt;}
.y1cc{bottom:360.054000pt;}
.y18c{bottom:360.055467pt;}
.y10c{bottom:360.521200pt;}
.y163{bottom:360.534533pt;}
.y56{bottom:360.537467pt;}
.yd9{bottom:360.547867pt;}
.y1bc{bottom:361.022000pt;}
.y1a7{bottom:361.022133pt;}
.y219{bottom:367.187867pt;}
.y26a{bottom:370.404533pt;}
.y40{bottom:370.972267pt;}
.ya1{bottom:374.584000pt;}
.y13c{bottom:375.041200pt;}
.y1cb{bottom:376.054000pt;}
.y18b{bottom:376.055467pt;}
.y10b{bottom:376.521200pt;}
.y162{bottom:376.534533pt;}
.y55{bottom:376.537467pt;}
.yd8{bottom:376.547867pt;}
.y1bb{bottom:377.035333pt;}
.y1a6{bottom:377.035467pt;}
.y269{bottom:381.814533pt;}
.y3f{bottom:385.638933pt;}
.ya0{bottom:390.584000pt;}
.y13b{bottom:391.041200pt;}
.y1df{bottom:391.987333pt;}
.y1ca{bottom:392.054000pt;}
.y18a{bottom:392.055467pt;}
.y10a{bottom:392.521200pt;}
.y161{bottom:392.534533pt;}
.y54{bottom:392.537467pt;}
.yd7{bottom:392.547867pt;}
.y1ba{bottom:393.048667pt;}
.y1a5{bottom:393.048800pt;}
.y268{bottom:393.224533pt;}
.y3e{bottom:400.310933pt;}
.y267{bottom:404.634533pt;}
.y9f{bottom:406.584000pt;}
.y13a{bottom:407.041200pt;}
.y1c9{bottom:408.054000pt;}
.y189{bottom:408.055467pt;}
.y109{bottom:408.521200pt;}
.y160{bottom:408.534533pt;}
.y53{bottom:408.537467pt;}
.yd6{bottom:408.547867pt;}
.y1a4{bottom:409.062000pt;}
.y3d{bottom:414.974933pt;}
.y266{bottom:416.044533pt;}
.y9e{bottom:422.584000pt;}
.y139{bottom:423.041200pt;}
.y188{bottom:424.055467pt;}
.y108{bottom:424.521200pt;}
.y15f{bottom:424.534533pt;}
.y52{bottom:424.542933pt;}
.yd5{bottom:424.547867pt;}
.y1a3{bottom:425.075333pt;}
.y265{bottom:427.454533pt;}
.y3c{bottom:429.638933pt;}
.y218{bottom:429.841200pt;}
.y9d{bottom:438.584000pt;}
.y264{bottom:438.864533pt;}
.y138{bottom:439.041200pt;}
.y187{bottom:440.055467pt;}
.y107{bottom:440.521200pt;}
.y15e{bottom:440.534533pt;}
.yd4{bottom:440.541200pt;}
.y1f4{bottom:441.147333pt;}
.y217{bottom:442.641200pt;}
.y3b{bottom:444.329600pt;}
.y263{bottom:450.274533pt;}
.y9c{bottom:454.584000pt;}
.y137{bottom:455.041200pt;}
.y216{bottom:455.441200pt;}
.y1f3{bottom:455.547333pt;}
.y186{bottom:456.055467pt;}
.y106{bottom:456.521200pt;}
.y15d{bottom:456.534533pt;}
.yd3{bottom:456.541200pt;}
.y3a{bottom:458.993600pt;}
.y262{bottom:461.684533pt;}
.y7a{bottom:466.766533pt;}
.y215{bottom:468.241200pt;}
.y1f2{bottom:469.947333pt;}
.y9b{bottom:470.584000pt;}
.y136{bottom:471.041200pt;}
.y185{bottom:472.055467pt;}
.y105{bottom:472.521200pt;}
.yd2{bottom:472.541200pt;}
.y1c8{bottom:472.555200pt;}
.y261{bottom:473.094533pt;}
.y39{bottom:473.657600pt;}
.y214{bottom:481.041200pt;}
.y79{bottom:481.430533pt;}
.y179{bottom:482.931867pt;}
.y1f1{bottom:484.347333pt;}
.y260{bottom:484.504533pt;}
.y9a{bottom:486.584000pt;}
.y1c7{bottom:486.955200pt;}
.y135{bottom:487.041200pt;}
.y184{bottom:488.055467pt;}
.y38{bottom:488.321600pt;}
.y104{bottom:488.521200pt;}
.yd1{bottom:488.541200pt;}
.y1b{bottom:492.830800pt;}
.y213{bottom:493.841200pt;}
.y25f{bottom:495.914533pt;}
.y78{bottom:496.102533pt;}
.y1c6{bottom:501.355200pt;}
.y99{bottom:502.584000pt;}
.y37{bottom:502.985600pt;}
.y134{bottom:503.041200pt;}
.y183{bottom:504.055467pt;}
.y15c{bottom:504.507867pt;}
.y103{bottom:504.521200pt;}
.yd0{bottom:504.541200pt;}
.y1a{bottom:506.164133pt;}
.y25e{bottom:507.324533pt;}
.y77{bottom:510.766533pt;}
.y212{bottom:511.974533pt;}
.y36{bottom:517.649600pt;}
.y98{bottom:518.584000pt;}
.y25d{bottom:518.734533pt;}
.y133{bottom:519.041200pt;}
.y19{bottom:519.497467pt;}
.y182{bottom:520.055467pt;}
.y15b{bottom:520.507867pt;}
.y102{bottom:520.521200pt;}
.ycf{bottom:520.541200pt;}
.y211{bottom:524.774533pt;}
.y76{bottom:525.430533pt;}
.y25c{bottom:530.144533pt;}
.y35{bottom:532.313600pt;}
.y97{bottom:534.584000pt;}
.y132{bottom:535.041200pt;}
.y181{bottom:536.055467pt;}
.y15a{bottom:536.507867pt;}
.y101{bottom:536.521200pt;}
.yce{bottom:536.541200pt;}
.y75{bottom:540.105200pt;}
.y25b{bottom:541.554533pt;}
.y210{bottom:542.907867pt;}
.y18{bottom:544.830800pt;}
.y34{bottom:546.977600pt;}
.y96{bottom:550.584000pt;}
.y131{bottom:551.041200pt;}
.y180{bottom:552.055467pt;}
.y159{bottom:552.507867pt;}
.y100{bottom:552.521200pt;}
.ycd{bottom:552.541200pt;}
.y25a{bottom:552.964533pt;}
.y74{bottom:554.769200pt;}
.y17{bottom:558.164133pt;}
.y20f{bottom:561.041200pt;}
.y33{bottom:561.641600pt;}
.y259{bottom:564.374533pt;}
.y95{bottom:566.584000pt;}
.y130{bottom:567.041200pt;}
.y17f{bottom:568.055467pt;}
.y158{bottom:568.507867pt;}
.yff{bottom:568.521200pt;}
.ycc{bottom:568.541200pt;}
.y73{bottom:569.433200pt;}
.y16{bottom:571.497467pt;}
.y20e{bottom:573.841200pt;}
.y258{bottom:575.784533pt;}
.y32{bottom:576.305600pt;}
.y94{bottom:582.584000pt;}
.y12f{bottom:583.041200pt;}
.y17e{bottom:584.055467pt;}
.y72{bottom:584.097200pt;}
.y157{bottom:584.507867pt;}
.yfe{bottom:584.521200pt;}
.ycb{bottom:584.541200pt;}
.y15{bottom:584.830800pt;}
.y257{bottom:587.194533pt;}
.y31{bottom:590.993600pt;}
.y20d{bottom:591.974533pt;}
.y14{bottom:598.164133pt;}
.y93{bottom:598.587867pt;}
.y256{bottom:598.604533pt;}
.y71{bottom:598.771867pt;}
.y17d{bottom:600.055467pt;}
.y156{bottom:600.507867pt;}
.yfd{bottom:600.521200pt;}
.yca{bottom:600.541200pt;}
.y30{bottom:605.657600pt;}
.y255{bottom:610.014533pt;}
.y20c{bottom:610.641200pt;}
.y13{bottom:611.497467pt;}
.y17a{bottom:612.265200pt;}
.y70{bottom:613.435867pt;}
.y12e{bottom:613.521200pt;}
.y92{bottom:614.587867pt;}
.y155{bottom:616.507867pt;}
.yfc{bottom:616.521200pt;}
.yc9{bottom:616.541200pt;}
.y2f{bottom:620.321600pt;}
.y254{bottom:621.424533pt;}
.y6f{bottom:628.099867pt;}
.y20b{bottom:628.774533pt;}
.y12d{bottom:629.521200pt;}
.y91{bottom:630.587867pt;}
.y154{bottom:632.507867pt;}
.yfb{bottom:632.521200pt;}
.y12{bottom:632.830800pt;}
.y253{bottom:632.834533pt;}
.y1a2{bottom:633.148667pt;}
.y2e{bottom:634.985600pt;}
.y20a{bottom:641.574533pt;}
.y6e{bottom:642.763867pt;}
.y252{bottom:644.244533pt;}
.y12c{bottom:645.521200pt;}
.y11{bottom:646.164133pt;}
.y2a3{bottom:646.561200pt;}
.y90{bottom:646.587867pt;}
.y2c2{bottom:646.661200pt;}
.y1a1{bottom:647.548667pt;}
.yc8{bottom:648.314533pt;}
.y153{bottom:648.507867pt;}
.yfa{bottom:648.521200pt;}
.y2d{bottom:649.649600pt;}
.y209{bottom:654.374533pt;}
.y251{bottom:655.654533pt;}
.y6d{bottom:657.438533pt;}
.y2a2{bottom:657.891200pt;}
.y2c1{bottom:657.991200pt;}
.y10{bottom:659.497467pt;}
.y12b{bottom:661.521200pt;}
.y1a0{bottom:661.948667pt;}
.y8f{bottom:662.587867pt;}
.y2c{bottom:664.313600pt;}
.yc7{bottom:664.314533pt;}
.y152{bottom:664.507867pt;}
.yf9{bottom:664.521200pt;}
.y250{bottom:667.064533pt;}
.y208{bottom:667.174533pt;}
.y2a1{bottom:669.221200pt;}
.y2c0{bottom:669.321200pt;}
.y6c{bottom:672.102533pt;}
.yf{bottom:672.830800pt;}
.y19f{bottom:676.348667pt;}
.y12a{bottom:677.521200pt;}
.y24f{bottom:678.474533pt;}
.y8e{bottom:678.587867pt;}
.y2b{bottom:678.977600pt;}
.yc6{bottom:680.314533pt;}
.y151{bottom:680.507867pt;}
.yf8{bottom:680.521200pt;}
.y2a0{bottom:680.551200pt;}
.y2bf{bottom:680.651200pt;}
.y207{bottom:685.307867pt;}
.ye{bottom:686.164133pt;}
.y6b{bottom:686.766533pt;}
.y24e{bottom:689.884533pt;}
.y29f{bottom:691.881200pt;}
.y2be{bottom:691.981200pt;}
.y129{bottom:693.521200pt;}
.y2a{bottom:693.641600pt;}
.yc5{bottom:696.314533pt;}
.y150{bottom:696.507867pt;}
.yf7{bottom:696.521200pt;}
.y206{bottom:698.107867pt;}
.yd{bottom:699.497467pt;}
.y24d{bottom:701.294533pt;}
.y6a{bottom:701.430533pt;}
.y29e{bottom:703.211200pt;}
.y2bd{bottom:703.311200pt;}
.y29{bottom:708.305600pt;}
.y128{bottom:709.521200pt;}
.y205{bottom:710.907867pt;}
.yc4{bottom:712.314533pt;}
.y14f{bottom:712.507867pt;}
.yf6{bottom:712.521200pt;}
.y24c{bottom:712.704533pt;}
.yc{bottom:712.830800pt;}
.y29d{bottom:714.541200pt;}
.y2bc{bottom:714.641200pt;}
.y28{bottom:722.969600pt;}
.y204{bottom:723.707867pt;}
.y24b{bottom:724.114533pt;}
.y127{bottom:725.521200pt;}
.y29c{bottom:725.871200pt;}
.y2bb{bottom:725.971200pt;}
.yb{bottom:726.164133pt;}
.yc3{bottom:728.314533pt;}
.y8d{bottom:728.507867pt;}
.yf5{bottom:728.521200pt;}
.y69{bottom:729.636133pt;}
.y24a{bottom:735.524533pt;}
.y29b{bottom:737.201200pt;}
.y2ba{bottom:737.301200pt;}
.y27{bottom:737.636267pt;}
.y17b{bottom:738.931867pt;}
.ya{bottom:739.497467pt;}
.y126{bottom:741.521200pt;}
.yc2{bottom:744.314533pt;}
.y8c{bottom:744.507867pt;}
.yf4{bottom:744.521200pt;}
.y249{bottom:746.934533pt;}
.y29a{bottom:748.531200pt;}
.y2b9{bottom:748.631200pt;}
.y203{bottom:752.507867pt;}
.y125{bottom:757.521200pt;}
.y248{bottom:758.344533pt;}
.y299{bottom:759.861200pt;}
.y2b8{bottom:759.961200pt;}
.yc1{bottom:760.314533pt;}
.y8b{bottom:760.507867pt;}
.yf3{bottom:760.521200pt;}
.y247{bottom:769.754533pt;}
.y202{bottom:770.641067pt;}
.y298{bottom:771.191200pt;}
.y2b7{bottom:771.291200pt;}
.y124{bottom:773.521200pt;}
.yc0{bottom:776.307867pt;}
.y8a{bottom:776.507867pt;}
.yf2{bottom:776.521200pt;}
.y201{bottom:779.174533pt;}
.y246{bottom:781.164533pt;}
.y297{bottom:782.521200pt;}
.y2b6{bottom:782.621200pt;}
.y123{bottom:789.521200pt;}
.ybf{bottom:792.307867pt;}
.y89{bottom:792.507867pt;}
.yf1{bottom:792.521200pt;}
.y245{bottom:792.574533pt;}
.y296{bottom:793.851200pt;}
.y2b5{bottom:793.951200pt;}
.y200{bottom:797.307733pt;}
.y9{bottom:798.966800pt;}
.y244{bottom:803.984533pt;}
.y295{bottom:805.181200pt;}
.y2b4{bottom:805.281200pt;}
.y122{bottom:805.521200pt;}
.y1ff{bottom:805.841200pt;}
.ybe{bottom:808.307867pt;}
.y88{bottom:808.507867pt;}
.yf0{bottom:808.521200pt;}
.y243{bottom:815.394533pt;}
.y8{bottom:816.302800pt;}
.y294{bottom:816.511200pt;}
.y2b3{bottom:816.611200pt;}
.y121{bottom:821.521200pt;}
.y1fe{bottom:823.974400pt;}
.y87{bottom:824.507867pt;}
.yef{bottom:824.521200pt;}
.y242{bottom:826.804533pt;}
.y293{bottom:827.841200pt;}
.y2b2{bottom:827.941200pt;}
.y1fd{bottom:832.507867pt;}
.y120{bottom:837.521200pt;}
.y241{bottom:838.214533pt;}
.y292{bottom:839.171200pt;}
.y2b1{bottom:839.271200pt;}
.ybd{bottom:840.081200pt;}
.y86{bottom:840.507867pt;}
.yee{bottom:840.521200pt;}
.y240{bottom:849.624533pt;}
.y291{bottom:850.501200pt;}
.y2b0{bottom:850.601200pt;}
.y1fc{bottom:850.641067pt;}
.y11f{bottom:853.521200pt;}
.ybc{bottom:856.081200pt;}
.y85{bottom:856.507867pt;}
.yed{bottom:856.521200pt;}
.y1fb{bottom:859.174533pt;}
.y23f{bottom:861.034533pt;}
.y290{bottom:861.831200pt;}
.y2af{bottom:861.931200pt;}
.y7{bottom:868.286800pt;}
.y17c{bottom:869.598533pt;}
.ybb{bottom:872.081200pt;}
.y23e{bottom:872.444533pt;}
.y84{bottom:872.507867pt;}
.yec{bottom:872.521200pt;}
.y28f{bottom:873.161200pt;}
.y2ae{bottom:873.261200pt;}
.y1fa{bottom:877.307733pt;}
.y23d{bottom:883.854533pt;}
.y28e{bottom:884.491200pt;}
.y2ad{bottom:884.591200pt;}
.y1f9{bottom:885.841200pt;}
.yba{bottom:888.081200pt;}
.y83{bottom:888.507867pt;}
.y23c{bottom:895.264533pt;}
.y28d{bottom:895.821200pt;}
.y2ac{bottom:895.921200pt;}
.y6{bottom:902.958800pt;}
.y1f8{bottom:903.974400pt;}
.yb9{bottom:904.077333pt;}
.y82{bottom:904.507867pt;}
.y23b{bottom:906.674533pt;}
.y28c{bottom:907.151200pt;}
.y2ab{bottom:907.251200pt;}
.y1f7{bottom:912.507867pt;}
.y23a{bottom:918.084533pt;}
.y28b{bottom:918.481200pt;}
.y2aa{bottom:918.581200pt;}
.yb8{bottom:920.077333pt;}
.y81{bottom:920.507867pt;}
.y239{bottom:929.494533pt;}
.y28a{bottom:929.811200pt;}
.y2a9{bottom:929.911200pt;}
.y1f6{bottom:930.641067pt;}
.yb7{bottom:936.077333pt;}
.y80{bottom:936.507867pt;}
.y5{bottom:937.630800pt;}
.y1f5{bottom:939.174533pt;}
.y238{bottom:940.904533pt;}
.y289{bottom:941.141200pt;}
.y2a8{bottom:941.241200pt;}
.yb6{bottom:952.077333pt;}
.y237{bottom:952.314533pt;}
.y288{bottom:952.471200pt;}
.y7f{bottom:952.507867pt;}
.y2a7{bottom:952.571200pt;}
.y236{bottom:963.724533pt;}
.y287{bottom:963.801200pt;}
.y2a6{bottom:963.901200pt;}
.yb5{bottom:968.077333pt;}
.y7e{bottom:968.507867pt;}
.y4{bottom:972.302800pt;}
.y286{bottom:975.131200pt;}
.y235{bottom:975.134533pt;}
.y2a5{bottom:975.231200pt;}
.yb4{bottom:984.077333pt;}
.y7d{bottom:984.507867pt;}
.y285{bottom:986.461200pt;}
.y234{bottom:986.544533pt;}
.y2a4{bottom:986.561200pt;}
.y3{bottom:1014.174400pt;}
.y7c{bottom:1014.174533pt;}
.h1b{height:20.593664pt;}
.h1d{height:29.240000pt;}
.h1c{height:31.000000pt;}
.h3{height:31.061333pt;}
.h17{height:31.189333pt;}
.h8{height:32.000000pt;}
.h18{height:33.066667pt;}
.h9{height:34.944000pt;}
.h16{height:37.200000pt;}
.h2{height:38.826667pt;}
.h4{height:38.986667pt;}
.he{height:39.146667pt;}
.h13{height:39.520000pt;}
.hb{height:44.661205pt;}
.ha{height:44.671872pt;}
.hc{height:44.735872pt;}
.hd{height:44.757205pt;}
.h10{height:49.932373pt;}
.h12{height:49.938773pt;}
.h19{height:49.953707pt;}
.hf{height:49.954240pt;}
.h1a{height:49.954773pt;}
.h14{height:49.969707pt;}
.h15{height:49.980907pt;}
.h11{height:50.062500pt;}
.h6{height:56.544400pt;}
.h7{height:56.555067pt;}
.h5{height:85.250000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:54.000000pt;}
.x3{left:59.066667pt;}
.x6{left:62.577733pt;}
.xe{left:66.000000pt;}
.x21{left:75.260000pt;}
.x12{left:98.007867pt;}
.x13{left:116.623733pt;}
.x14{left:129.423733pt;}
.x15{left:147.706400pt;}
.x16{left:168.655733pt;}
.x17{left:185.605067pt;}
.x4{left:195.892800pt;}
.x18{left:203.887733pt;}
.x19{left:222.170400pt;}
.x2{left:231.493067pt;}
.x1a{left:240.453067pt;}
.x1b{left:258.735733pt;}
.x1c{left:277.018400pt;}
.x1d{left:295.301067pt;}
.x1e{left:312.250400pt;}
.x1f{left:335.865067pt;}
.x20{left:348.665067pt;}
.xf{left:409.193333pt;}
.x10{left:421.189733pt;}
.x22{left:430.370000pt;}
.x8{left:477.795733pt;}
.xa{left:485.794533pt;}
.x9{left:489.798000pt;}
.xb{left:496.351867pt;}
.xc{left:501.794533pt;}
.x11{left:643.296800pt;}
.x7{left:668.502400pt;}
.x1{left:733.300800pt;}
.xd{left:770.666667pt;}
}




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