
    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_3a47f1a143252d4dde285133.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_5d325757e053df6ecc64169d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c7adbce2aeef284a3e1da105.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_dfe38e6d2074953719b8fb15.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008000;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_c37edd5aeed9dca3fe392430.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.008000;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_214be52cf692418bc6a747f5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_5b98c6d08ae214de6c2d78fb.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f1b846b27dabcc00067b88ff.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136000;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_f1b846b27dabcc00067b88ff.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.136000;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_38a3f6f64cb0a25aea6f92ab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-1.260000px;}
.ls2{letter-spacing:-0.630000px;}
.ls6{letter-spacing:-0.315000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.189000px;}
.ls1{letter-spacing:0.630000px;}
.ls7{letter-spacing:0.945000px;}
.ls5{letter-spacing:1.260000px;}
.lsa{letter-spacing:1.890000px;}
.ls8{letter-spacing:2.268000px;}
.ls4{letter-spacing:6.867000px;}
.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;}
}
.wse{word-spacing:-31.968000px;}
.ws107{word-spacing:-18.648000px;}
.ws3a{word-spacing:-17.010000px;}
.ws10e{word-spacing:-16.884000px;}
.ws10f{word-spacing:-16.569000px;}
.wsff{word-spacing:-16.380000px;}
.ws1{word-spacing:-14.040000px;}
.ws7a{word-spacing:-7.938000px;}
.wse7{word-spacing:-7.812000px;}
.ws3{word-spacing:-7.800000px;}
.ws9{word-spacing:-7.530000px;}
.ws90{word-spacing:-7.497000px;}
.ws103{word-spacing:-7.434000px;}
.wsa{word-spacing:-7.350000px;}
.ws9c{word-spacing:-7.056000px;}
.ws27{word-spacing:-6.993000px;}
.ws8{word-spacing:-6.990000px;}
.ws41{word-spacing:-6.678000px;}
.ws86{word-spacing:-6.615000px;}
.wsb6{word-spacing:-6.426000px;}
.wsd3{word-spacing:-6.111000px;}
.wsb{word-spacing:-6.060000px;}
.wsbb{word-spacing:-5.796000px;}
.ws50{word-spacing:-5.481000px;}
.wsb1{word-spacing:-5.418000px;}
.ws7{word-spacing:-5.220000px;}
.ws4{word-spacing:-5.040000px;}
.ws4e{word-spacing:-4.977000px;}
.ws114{word-spacing:-4.851000px;}
.wsba{word-spacing:-4.788000px;}
.ws112{word-spacing:-4.473000px;}
.wsf7{word-spacing:-4.284000px;}
.wsf4{word-spacing:-4.221000px;}
.ws109{word-spacing:-4.158000px;}
.ws2b{word-spacing:-4.095000px;}
.ws10a{word-spacing:-4.032000px;}
.wsee{word-spacing:-3.906000px;}
.ws111{word-spacing:-3.780000px;}
.wsd2{word-spacing:-3.717000px;}
.ws42{word-spacing:-3.654000px;}
.wsf0{word-spacing:-3.591000px;}
.ws110{word-spacing:-3.528000px;}
.ws15{word-spacing:-3.402000px;}
.ws72{word-spacing:-3.339000px;}
.ws43{word-spacing:-3.276000px;}
.ws62{word-spacing:-3.213000px;}
.ws88{word-spacing:-3.150000px;}
.ws85{word-spacing:-3.087000px;}
.ws6e{word-spacing:-3.024000px;}
.ws80{word-spacing:-2.961000px;}
.ws18{word-spacing:-2.898000px;}
.ws2c{word-spacing:-2.835000px;}
.ws79{word-spacing:-2.772000px;}
.ws32{word-spacing:-2.646000px;}
.wsd6{word-spacing:-2.583000px;}
.wsd8{word-spacing:-2.520000px;}
.ws5{word-spacing:-2.490000px;}
.wsec{word-spacing:-2.457000px;}
.ws5e{word-spacing:-2.394000px;}
.ws6d{word-spacing:-2.268000px;}
.ws94{word-spacing:-2.205000px;}
.ws105{word-spacing:-2.142000px;}
.wsc5{word-spacing:-2.079000px;}
.ws20{word-spacing:-2.016000px;}
.ws95{word-spacing:-1.953000px;}
.wsc3{word-spacing:-1.827000px;}
.wse3{word-spacing:-1.764000px;}
.wsaa{word-spacing:-1.701000px;}
.wsa4{word-spacing:-1.638000px;}
.wsa2{word-spacing:-1.575000px;}
.ws33{word-spacing:-1.449000px;}
.wsd7{word-spacing:-1.386000px;}
.ws5d{word-spacing:-1.323000px;}
.ws6{word-spacing:-1.320000px;}
.ws1f{word-spacing:-1.260000px;}
.ws81{word-spacing:-1.134000px;}
.wsc{word-spacing:-1.050000px;}
.ws6f{word-spacing:-1.008000px;}
.ws3d{word-spacing:-0.945000px;}
.ws91{word-spacing:-0.882000px;}
.ws10b{word-spacing:-0.756000px;}
.ws40{word-spacing:-0.630000px;}
.ws16{word-spacing:-0.567000px;}
.ws117{word-spacing:-0.504000px;}
.ws64{word-spacing:-0.441000px;}
.ws30{word-spacing:-0.378000px;}
.ws8b{word-spacing:-0.315000px;}
.ws1a{word-spacing:-0.252000px;}
.wsf8{word-spacing:-0.189000px;}
.ws57{word-spacing:-0.126000px;}
.wsdf{word-spacing:-0.063000px;}
.ws0{word-spacing:0.000000px;}
.ws75{word-spacing:0.063000px;}
.wsa0{word-spacing:0.126000px;}
.ws56{word-spacing:0.189000px;}
.ws22{word-spacing:0.252000px;}
.wsc0{word-spacing:0.315000px;}
.ws17{word-spacing:0.378000px;}
.wsce{word-spacing:0.441000px;}
.ws59{word-spacing:0.504000px;}
.ws48{word-spacing:0.567000px;}
.ws5f{word-spacing:0.630000px;}
.ws7c{word-spacing:0.693000px;}
.ws7b{word-spacing:0.756000px;}
.wsed{word-spacing:0.819000px;}
.ws5c{word-spacing:0.882000px;}
.wsca{word-spacing:0.945000px;}
.wsae{word-spacing:1.008000px;}
.wsdc{word-spacing:1.071000px;}
.ws6a{word-spacing:1.134000px;}
.ws9a{word-spacing:1.197000px;}
.ws11{word-spacing:1.260000px;}
.wsef{word-spacing:1.323000px;}
.wsbd{word-spacing:1.449000px;}
.ws2{word-spacing:1.560000px;}
.ws55{word-spacing:1.575000px;}
.ws4a{word-spacing:1.638000px;}
.wsb9{word-spacing:1.701000px;}
.ws34{word-spacing:1.764000px;}
.ws6c{word-spacing:1.827000px;}
.wseb{word-spacing:1.953000px;}
.ws7e{word-spacing:2.016000px;}
.wsfa{word-spacing:2.079000px;}
.ws2f{word-spacing:2.142000px;}
.ws1e{word-spacing:2.205000px;}
.ws9e{word-spacing:2.268000px;}
.wsbc{word-spacing:2.331000px;}
.ws77{word-spacing:2.394000px;}
.wsc2{word-spacing:2.457000px;}
.ws23{word-spacing:2.583000px;}
.ws3e{word-spacing:2.646000px;}
.ws73{word-spacing:2.709000px;}
.wsb7{word-spacing:2.772000px;}
.ws93{word-spacing:2.835000px;}
.wsb4{word-spacing:2.898000px;}
.wsfb{word-spacing:2.961000px;}
.wsb8{word-spacing:3.024000px;}
.ws26{word-spacing:3.087000px;}
.wsf6{word-spacing:3.150000px;}
.ws71{word-spacing:3.213000px;}
.ws5a{word-spacing:3.276000px;}
.wscc{word-spacing:3.339000px;}
.wsc9{word-spacing:3.402000px;}
.wsb5{word-spacing:3.465000px;}
.wsab{word-spacing:3.591000px;}
.ws25{word-spacing:3.654000px;}
.ws7d{word-spacing:3.717000px;}
.wse9{word-spacing:3.843000px;}
.ws9d{word-spacing:3.906000px;}
.ws63{word-spacing:3.969000px;}
.wsf2{word-spacing:4.032000px;}
.ws92{word-spacing:4.158000px;}
.ws21{word-spacing:4.221000px;}
.wsa3{word-spacing:4.284000px;}
.ws78{word-spacing:4.347000px;}
.ws45{word-spacing:4.536000px;}
.ws3f{word-spacing:4.662000px;}
.wse6{word-spacing:4.725000px;}
.ws68{word-spacing:4.788000px;}
.ws39{word-spacing:4.851000px;}
.ws35{word-spacing:4.914000px;}
.wsea{word-spacing:4.977000px;}
.ws10d{word-spacing:5.103000px;}
.ws106{word-spacing:5.229000px;}
.ws2d{word-spacing:5.355000px;}
.ws69{word-spacing:5.418000px;}
.wsaf{word-spacing:5.481000px;}
.wsf3{word-spacing:5.544000px;}
.ws2e{word-spacing:5.670000px;}
.wsd5{word-spacing:5.796000px;}
.ws87{word-spacing:5.859000px;}
.ws51{word-spacing:5.922000px;}
.ws6b{word-spacing:5.985000px;}
.wse8{word-spacing:6.048000px;}
.wsa8{word-spacing:6.111000px;}
.ws54{word-spacing:6.174000px;}
.ws14{word-spacing:6.237000px;}
.ws67{word-spacing:6.300000px;}
.wse2{word-spacing:6.363000px;}
.ws66{word-spacing:6.552000px;}
.ws29{word-spacing:6.615000px;}
.wsc8{word-spacing:6.678000px;}
.wsd4{word-spacing:6.741000px;}
.ws9f{word-spacing:6.804000px;}
.ws49{word-spacing:6.867000px;}
.ws96{word-spacing:6.930000px;}
.ws31{word-spacing:6.993000px;}
.ws60{word-spacing:7.119000px;}
.ws82{word-spacing:7.182000px;}
.ws2a{word-spacing:7.308000px;}
.ws74{word-spacing:7.371000px;}
.wsd9{word-spacing:7.434000px;}
.ws8c{word-spacing:7.623000px;}
.wscd{word-spacing:7.686000px;}
.wse4{word-spacing:7.812000px;}
.wsa1{word-spacing:7.875000px;}
.wsde{word-spacing:7.938000px;}
.ws4d{word-spacing:8.001000px;}
.ws38{word-spacing:8.064000px;}
.wsfc{word-spacing:8.127000px;}
.ws44{word-spacing:8.190000px;}
.ws3b{word-spacing:8.253000px;}
.wsc1{word-spacing:8.379000px;}
.ws89{word-spacing:8.442000px;}
.ws8e{word-spacing:8.505000px;}
.ws47{word-spacing:8.631000px;}
.wsdb{word-spacing:8.694000px;}
.wscb{word-spacing:8.757000px;}
.wsf9{word-spacing:8.820000px;}
.ws84{word-spacing:8.883000px;}
.ws8d{word-spacing:8.946000px;}
.wsfd{word-spacing:9.009000px;}
.ws3c{word-spacing:9.072000px;}
.wse5{word-spacing:9.198000px;}
.ws24{word-spacing:9.261000px;}
.ws5b{word-spacing:9.324000px;}
.ws12{word-spacing:9.387000px;}
.ws100{word-spacing:9.450000px;}
.wsd0{word-spacing:9.765000px;}
.ws37{word-spacing:9.828000px;}
.ws65{word-spacing:9.954000px;}
.ws58{word-spacing:10.017000px;}
.wsb0{word-spacing:10.080000px;}
.wsa5{word-spacing:10.269000px;}
.ws8f{word-spacing:10.332000px;}
.ws104{word-spacing:10.521000px;}
.ws13{word-spacing:10.584000px;}
.wsb2{word-spacing:10.710000px;}
.ws98{word-spacing:10.836000px;}
.ws52{word-spacing:10.962000px;}
.ws76{word-spacing:11.025000px;}
.wsf5{word-spacing:11.214000px;}
.ws99{word-spacing:11.340000px;}
.wsbf{word-spacing:11.403000px;}
.ws28{word-spacing:11.529000px;}
.ws1c{word-spacing:11.592000px;}
.ws4c{word-spacing:11.655000px;}
.wsc4{word-spacing:11.718000px;}
.ws4b{word-spacing:11.907000px;}
.wsc6{word-spacing:11.970000px;}
.ws8a{word-spacing:12.033000px;}
.wse1{word-spacing:12.159000px;}
.ws1b{word-spacing:12.348000px;}
.wsa7{word-spacing:12.474000px;}
.wsc7{word-spacing:12.600000px;}
.ws7f{word-spacing:12.663000px;}
.wsa9{word-spacing:12.789000px;}
.wsda{word-spacing:13.356000px;}
.ws19{word-spacing:13.419000px;}
.wscf{word-spacing:13.482000px;}
.wsdd{word-spacing:14.049000px;}
.wsb3{word-spacing:14.175000px;}
.wse0{word-spacing:14.238000px;}
.ws36{word-spacing:14.301000px;}
.ws4f{word-spacing:14.427000px;}
.ws97{word-spacing:14.490000px;}
.ws116{word-spacing:14.679000px;}
.ws10{word-spacing:15.057000px;}
.ws61{word-spacing:15.120000px;}
.ws53{word-spacing:15.183000px;}
.wsfe{word-spacing:15.309000px;}
.ws83{word-spacing:15.561000px;}
.wsad{word-spacing:15.687000px;}
.ws115{word-spacing:16.380000px;}
.ws1d{word-spacing:16.758000px;}
.ws10c{word-spacing:17.010000px;}
.wsf{word-spacing:17.640000px;}
.ws46{word-spacing:17.703000px;}
.wsbe{word-spacing:18.081000px;}
.ws102{word-spacing:18.522000px;}
.wsa6{word-spacing:18.648000px;}
.ws101{word-spacing:18.711000px;}
.wsf1{word-spacing:19.404000px;}
.ws70{word-spacing:19.530000px;}
.ws108{word-spacing:20.916000px;}
.ws9b{word-spacing:21.231000px;}
.wsac{word-spacing:22.428000px;}
.wsd1{word-spacing:30.807000px;}
.ws113{word-spacing:35.595000px;}
.wsd{word-spacing:63.519000px;}
._16{margin-left:-28.854000px;}
._14{margin-left:-24.752700px;}
._18{margin-left:-22.239000px;}
._5{margin-left:-18.348000px;}
._3{margin-left:-17.160000px;}
._1a{margin-left:-15.912900px;}
._15{margin-left:-12.474000px;}
._19{margin-left:-10.735200px;}
._7{margin-left:-8.007300px;}
._11{margin-left:-6.993000px;}
._1{margin-left:-5.466000px;}
._8{margin-left:-4.376100px;}
._2{margin-left:-3.318000px;}
._9{margin-left:-2.223900px;}
._0{margin-left:-1.080000px;}
._a{width:1.044900px;}
._f{width:2.110200px;}
._4{width:3.552000px;}
._b{width:4.788000px;}
._6{width:6.577200px;}
._10{width:7.837200px;}
._e{width:8.870400px;}
._13{width:10.149300px;}
._17{width:11.648700px;}
._c{width:13.595400px;}
._12{width:18.194400px;}
._d{width:63.519000px;}
.fc5{color:rgb(87,87,86);}
.fc4{color:rgb(174,82,107);}
.fc3{color:rgb(141,2,60);}
.fc2{color:rgb(82,0,28);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:30.000000px;}
.fs9{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fsd{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:69.000000px;}
.fsa{font-size:72.000000px;}
.fsb{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fsc{font-size:108.000000px;}
.fs5{font-size:120.000000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y3a{bottom:62.787450px;}
.y22{bottom:122.349900px;}
.y22e{bottom:127.275600px;}
.y16d{bottom:127.385850px;}
.y5b{bottom:127.459200px;}
.ybe{bottom:127.609650px;}
.y196{bottom:127.637850px;}
.y1de{bottom:136.006650px;}
.y9c{bottom:136.725600px;}
.y248{bottom:137.670600px;}
.y12b{bottom:141.830250px;}
.y21{bottom:142.802400px;}
.y7c{bottom:143.732550px;}
.y22d{bottom:146.175600px;}
.y16c{bottom:146.553600px;}
.y195{bottom:146.758350px;}
.y5a{bottom:146.894700px;}
.ybd{bottom:147.186900px;}
.y30{bottom:154.318350px;}
.y141{bottom:154.450500px;}
.y1dd{bottom:154.906650px;}
.y9b{bottom:155.625600px;}
.y247{bottom:156.570600px;}
.y1b3{bottom:158.843850px;}
.y20{bottom:159.002400px;}
.y12a{bottom:160.730250px;}
.y20c{bottom:161.521650px;}
.y7b{bottom:162.632550px;}
.y194{bottom:165.863100px;}
.y59{bottom:166.330200px;}
.ybc{bottom:166.764150px;}
.y1e8{bottom:166.965600px;}
.y140{bottom:173.350500px;}
.y1dc{bottom:173.806650px;}
.y9a{bottom:174.525600px;}
.y1f{bottom:175.202400px;}
.y1b2{bottom:177.743850px;}
.y129{bottom:179.630250px;}
.y20b{bottom:180.421650px;}
.y108{bottom:181.992750px;}
.y22c{bottom:182.085600px;}
.y193{bottom:184.983600px;}
.y1e7{bottom:185.865600px;}
.ybb{bottom:186.341400px;}
.y1e{bottom:191.402400px;}
.y13f{bottom:192.250500px;}
.y246{bottom:192.480600px;}
.y1db{bottom:192.706650px;}
.y99{bottom:193.425600px;}
.y2f{bottom:195.378150px;}
.y16b{bottom:195.473100px;}
.y1b1{bottom:196.643850px;}
.y128{bottom:198.530250px;}
.y20a{bottom:199.321650px;}
.y107{bottom:200.892750px;}
.ye1{bottom:200.985600px;}
.y192{bottom:204.088350px;}
.y1e6{bottom:204.765600px;}
.yba{bottom:205.918650px;}
.y1d{bottom:207.602400px;}
.y13e{bottom:211.150500px;}
.y245{bottom:211.380600px;}
.y1da{bottom:211.606650px;}
.y98{bottom:212.325600px;}
.y16a{bottom:214.640850px;}
.y1b0{bottom:215.543850px;}
.y7a{bottom:215.552550px;}
.y127{bottom:217.430250px;}
.y58{bottom:219.769950px;}
.y106{bottom:219.792750px;}
.ye0{bottom:219.885600px;}
.y191{bottom:223.193100px;}
.y1e5{bottom:223.665600px;}
.yb9{bottom:225.495900px;}
.y13d{bottom:230.050500px;}
.y1d9{bottom:230.506650px;}
.y22b{bottom:232.643100px;}
.y169{bottom:233.808600px;}
.y1af{bottom:234.443850px;}
.y79{bottom:234.452550px;}
.y209{bottom:235.231650px;}
.y126{bottom:236.330250px;}
.y2e{bottom:236.437950px;}
.y105{bottom:238.692750px;}
.ydf{bottom:238.785600px;}
.y57{bottom:239.205450px;}
.y190{bottom:242.313600px;}
.y1e4{bottom:242.565600px;}
.yb8{bottom:245.073150px;}
.y244{bottom:247.290600px;}
.y13c{bottom:248.950500px;}
.y1d8{bottom:249.406650px;}
.y22a{bottom:251.543100px;}
.y168{bottom:252.976350px;}
.y1ae{bottom:253.343850px;}
.y78{bottom:253.352550px;}
.y208{bottom:254.131650px;}
.y104{bottom:257.592750px;}
.yde{bottom:257.685600px;}
.y56{bottom:258.640950px;}
.y1e3{bottom:261.465600px;}
.yb7{bottom:264.650400px;}
.y97{bottom:265.245600px;}
.y243{bottom:266.190600px;}
.y13b{bottom:267.850500px;}
.y167{bottom:272.144100px;}
.y1ad{bottom:272.243850px;}
.y77{bottom:272.252550px;}
.y103{bottom:276.492750px;}
.ydd{bottom:276.585600px;}
.y2d{bottom:277.497750px;}
.y55{bottom:278.076450px;}
.y1e2{bottom:280.365600px;}
.y229{bottom:283.200600px;}
.y96{bottom:284.145600px;}
.yb6{bottom:284.227650px;}
.y125{bottom:284.997750px;}
.y207{bottom:290.041650px;}
.y1ac{bottom:291.143850px;}
.y76{bottom:291.152550px;}
.y18f{bottom:291.185850px;}
.y166{bottom:291.311850px;}
.y102{bottom:295.392750px;}
.ydc{bottom:295.485600px;}
.y54{bottom:297.511950px;}
.y1b5{bottom:299.265600px;}
.y228{bottom:302.100600px;}
.y1d7{bottom:302.326650px;}
.y95{bottom:303.045600px;}
.yb5{bottom:303.804900px;}
.y124{bottom:303.897750px;}
.y1c{bottom:308.765700px;}
.y1ab{bottom:310.043850px;}
.y75{bottom:310.052550px;}
.y18e{bottom:310.306350px;}
.ydb{bottom:314.385600px;}
.y53{bottom:316.947450px;}
.y1b4{bottom:318.165600px;}
.y2c{bottom:318.557700px;}
.y242{bottom:321.000600px;}
.y1d6{bottom:321.226650px;}
.y94{bottom:321.945600px;}
.y123{bottom:322.797750px;}
.y227{bottom:325.253100px;}
.y206{bottom:325.951650px;}
.y1aa{bottom:328.943850px;}
.y74{bottom:328.952550px;}
.y18d{bottom:329.411100px;}
.y1b{bottom:331.010700px;}
.yda{bottom:333.285600px;}
.y52{bottom:336.382950px;}
.y110{bottom:337.065600px;}
.y241{bottom:339.900600px;}
.y1d5{bottom:340.126650px;}
.y165{bottom:340.231350px;}
.y93{bottom:340.845600px;}
.y122{bottom:341.697750px;}
.y226{bottom:344.153100px;}
.y205{bottom:344.851650px;}
.y1a9{bottom:347.843850px;}
.y73{bottom:347.852550px;}
.y101{bottom:348.312750px;}
.y18c{bottom:348.531600px;}
.yd9{bottom:352.185600px;}
.y51{bottom:355.818450px;}
.y10f{bottom:355.965600px;}
.yb4{bottom:357.402150px;}
.y1d4{bottom:359.026650px;}
.y164{bottom:359.399100px;}
.y2b{bottom:359.617500px;}
.y92{bottom:359.745600px;}
.y121{bottom:360.597750px;}
.y1a{bottom:366.020700px;}
.y1a8{bottom:366.743850px;}
.y100{bottom:367.212750px;}
.y18b{bottom:367.636350px;}
.yd8{bottom:371.085600px;}
.y10e{bottom:374.865600px;}
.y50{bottom:375.253950px;}
.y225{bottom:375.810600px;}
.yb3{bottom:376.979400px;}
.y1d3{bottom:377.926650px;}
.y163{bottom:378.566850px;}
.y120{bottom:379.497750px;}
.y204{bottom:380.761650px;}
.y13a{bottom:381.932550px;}
.y19{bottom:384.020700px;}
.yff{bottom:386.112750px;}
.y18a{bottom:386.741100px;}
.yd7{bottom:389.985600px;}
.y10d{bottom:393.765600px;}
.y4f{bottom:394.689450px;}
.y224{bottom:394.710600px;}
.yb2{bottom:396.556650px;}
.y1d2{bottom:396.826650px;}
.y11f{bottom:398.397750px;}
.y203{bottom:399.661650px;}
.y2a{bottom:400.677300px;}
.yfe{bottom:405.012750px;}
.y189{bottom:405.861600px;}
.y18{bottom:406.265700px;}
.yd6{bottom:408.885600px;}
.y91{bottom:412.665600px;}
.y1d1{bottom:415.726650px;}
.yb1{bottom:416.133900px;}
.y1a7{bottom:419.663850px;}
.yfd{bottom:423.912750px;}
.y17{bottom:424.265700px;}
.y223{bottom:426.368100px;}
.y162{bottom:427.486350px;}
.yd5{bottom:427.785600px;}
.y240{bottom:430.620600px;}
.y90{bottom:431.565600px;}
.y1d0{bottom:434.626650px;}
.y202{bottom:435.571650px;}
.yb0{bottom:435.711150px;}
.y1a6{bottom:438.563850px;}
.y29{bottom:441.737100px;}
.y16{bottom:442.265700px;}
.yfc{bottom:442.812750px;}
.y161{bottom:446.654100px;}
.yd4{bottom:446.685600px;}
.y11e{bottom:447.065250px;}
.y4e{bottom:448.129200px;}
.y222{bottom:449.520600px;}
.y8f{bottom:450.465600px;}
.y1cf{bottom:453.526650px;}
.y201{bottom:454.471650px;}
.y188{bottom:454.733850px;}
.y72{bottom:455.539350px;}
.y1a5{bottom:457.463850px;}
.yfb{bottom:461.712750px;}
.yd3{bottom:465.585600px;}
.y160{bottom:465.821850px;}
.y11d{bottom:465.965250px;}
.y4d{bottom:467.564700px;}
.y8e{bottom:469.365600px;}
.y1ce{bottom:472.426650px;}
.y200{bottom:473.371650px;}
.y187{bottom:473.854350px;}
.y1a4{bottom:476.363850px;}
.y15{bottom:477.275700px;}
.yfa{bottom:480.612750px;}
.y28{bottom:482.797050px;}
.y1e1{bottom:484.485600px;}
.y11c{bottom:484.865250px;}
.y15f{bottom:484.989600px;}
.y23f{bottom:485.430600px;}
.y4c{bottom:487.000200px;}
.y8d{bottom:488.265600px;}
.yaf{bottom:489.308400px;}
.y221{bottom:489.683100px;}
.y1cd{bottom:491.326650px;}
.y71{bottom:491.548350px;}
.y186{bottom:492.959100px;}
.y1a3{bottom:495.263850px;}
.y14{bottom:495.275700px;}
.yf9{bottom:499.512750px;}
.y1e0{bottom:503.385600px;}
.y11b{bottom:503.765250px;}
.y15e{bottom:504.157350px;}
.y23e{bottom:504.330600px;}
.y4b{bottom:506.435700px;}
.y8c{bottom:507.165600px;}
.yae{bottom:508.885650px;}
.y1ff{bottom:509.281650px;}
.y1ed{bottom:510.226650px;}
.y185{bottom:512.063850px;}
.y220{bottom:512.835600px;}
.y13{bottom:513.275700px;}
.y1a2{bottom:514.163850px;}
.yd2{bottom:518.505600px;}
.y10c{bottom:522.285600px;}
.y11a{bottom:522.665250px;}
.y23d{bottom:523.230600px;}
.y15d{bottom:523.325100px;}
.y27{bottom:523.849050px;}
.y4a{bottom:525.871200px;}
.y8b{bottom:526.065600px;}
.y1fe{bottom:528.181650px;}
.yad{bottom:528.462900px;}
.y184{bottom:531.184350px;}
.y1a1{bottom:533.063850px;}
.y12{bottom:535.520700px;}
.yd1{bottom:537.405600px;}
.y10b{bottom:541.185600px;}
.y119{bottom:541.565250px;}
.y15c{bottom:542.492850px;}
.y1cc{bottom:544.246650px;}
.y8a{bottom:544.965600px;}
.y49{bottom:545.306700px;}
.yac{bottom:548.040150px;}
.y183{bottom:550.289100px;}
.yf8{bottom:552.432750px;}
.y21f{bottom:552.998100px;}
.y11{bottom:553.520700px;}
.yd0{bottom:556.305600px;}
.y23c{bottom:559.140600px;}
.y10a{bottom:560.085600px;}
.y118{bottom:560.465250px;}
.y15b{bottom:561.660600px;}
.y1cb{bottom:563.146650px;}
.y139{bottom:563.865600px;}
.y1fd{bottom:564.091650px;}
.yab{bottom:567.617400px;}
.yf7{bottom:571.332750px;}
.y10{bottom:571.520700px;}
.ycf{bottom:575.205600px;}
.y21e{bottom:576.150600px;}
.y23b{bottom:578.040600px;}
.y109{bottom:578.985600px;}
.y117{bottom:579.365250px;}
.y15a{bottom:580.828350px;}
.y1ca{bottom:582.046650px;}
.y138{bottom:582.765600px;}
.y1a0{bottom:585.983850px;}
.yaa{bottom:587.194650px;}
.yf6{bottom:590.232750px;}
.y26{bottom:592.913400px;}
.yce{bottom:594.105600px;}
.y21d{bottom:595.050600px;}
.y23a{bottom:596.940600px;}
.y89{bottom:597.885600px;}
.y116{bottom:598.265250px;}
.y48{bottom:598.746450px;}
.y182{bottom:599.161350px;}
.y159{bottom:599.996100px;}
.y1fc{bottom:600.001650px;}
.y1c9{bottom:600.946650px;}
.y137{bottom:601.665600px;}
.y19f{bottom:604.883850px;}
.yf{bottom:606.530700px;}
.ya9{bottom:606.771900px;}
.yf5{bottom:609.132750px;}
.ycd{bottom:613.005600px;}
.y88{bottom:616.785600px;}
.y115{bottom:617.165250px;}
.y47{bottom:618.181950px;}
.y181{bottom:618.281850px;}
.y158{bottom:619.163850px;}
.y1c8{bottom:619.846650px;}
.y136{bottom:620.565600px;}
.y19e{bottom:623.783850px;}
.ye{bottom:624.530700px;}
.ya8{bottom:626.349150px;}
.y21c{bottom:626.708100px;}
.ycc{bottom:631.905600px;}
.y239{bottom:632.850600px;}
.y87{bottom:635.685600px;}
.y1fb{bottom:635.911650px;}
.y180{bottom:637.386600px;}
.y46{bottom:637.617450px;}
.y1c7{bottom:638.746650px;}
.y135{bottom:639.465600px;}
.yd{bottom:642.530700px;}
.y19d{bottom:642.683850px;}
.ya7{bottom:645.926400px;}
.y21b{bottom:649.860600px;}
.ycb{bottom:650.805600px;}
.y238{bottom:651.750600px;}
.y86{bottom:654.585600px;}
.y1fa{bottom:654.811650px;}
.y17f{bottom:656.491350px;}
.y45{bottom:657.052950px;}
.y1c6{bottom:657.646650px;}
.y134{bottom:658.365600px;}
.y19c{bottom:661.583850px;}
.yf4{bottom:662.052750px;}
.yc{bottom:664.775700px;}
.ya6{bottom:665.503650px;}
.y114{bottom:665.832750px;}
.y157{bottom:668.083350px;}
.y21a{bottom:668.760600px;}
.yca{bottom:669.705600px;}
.y70{bottom:673.485600px;}
.y44{bottom:676.488450px;}
.y1c5{bottom:676.546650px;}
.y133{bottom:677.265600px;}
.y19b{bottom:680.483850px;}
.yf3{bottom:680.952750px;}
.yb{bottom:682.775700px;}
.y113{bottom:684.732750px;}
.ya5{bottom:685.080900px;}
.y156{bottom:687.251100px;}
.y237{bottom:687.660600px;}
.yc9{bottom:688.605600px;}
.y1f9{bottom:690.721650px;}
.y6f{bottom:692.385600px;}
.y1c4{bottom:695.446650px;}
.y43{bottom:695.923950px;}
.y132{bottom:696.165600px;}
.y19a{bottom:699.383850px;}
.yf2{bottom:699.852750px;}
.y219{bottom:700.418100px;}
.ya{bottom:700.775700px;}
.y112{bottom:703.632750px;}
.y17e{bottom:705.363600px;}
.y155{bottom:706.418850px;}
.y236{bottom:706.560600px;}
.yc8{bottom:707.505600px;}
.y6e{bottom:711.285600px;}
.y1c3{bottom:714.346650px;}
.y131{bottom:715.065600px;}
.y42{bottom:715.359450px;}
.y38{bottom:718.124400px;}
.y199{bottom:718.283850px;}
.yf1{bottom:718.752750px;}
.y218{bottom:719.318100px;}
.y111{bottom:722.532750px;}
.y17d{bottom:724.468350px;}
.y154{bottom:725.586600px;}
.yc7{bottom:726.405600px;}
.y1f8{bottom:726.631650px;}
.y6d{bottom:730.185600px;}
.y1c2{bottom:733.246650px;}
.y130{bottom:733.965600px;}
.y9{bottom:735.785700px;}
.yf0{bottom:737.652750px;}
.y217{bottom:738.218100px;}
.y37{bottom:738.824400px;}
.y235{bottom:742.470600px;}
.y17c{bottom:743.588850px;}
.y153{bottom:744.754350px;}
.yc6{bottom:745.305600px;}
.y1f7{bottom:745.531650px;}
.y6c{bottom:749.085600px;}
.y1c1{bottom:752.146650px;}
.yef{bottom:756.552750px;}
.y36{bottom:759.524400px;}
.y152{bottom:763.922100px;}
.y85{bottom:764.205600px;}
.y234{bottom:765.623100px;}
.y6b{bottom:767.985600px;}
.y41{bottom:768.799200px;}
.y216{bottom:769.875600px;}
.y1c0{bottom:771.046650px;}
.yee{bottom:775.452750px;}
.y35{bottom:780.224400px;}
.y1f6{bottom:781.441650px;}
.y151{bottom:783.089850px;}
.y84{bottom:783.105600px;}
.y233{bottom:784.523100px;}
.y1ec{bottom:786.166650px;}
.y6a{bottom:786.885600px;}
.y40{bottom:788.234700px;}
.y1bf{bottom:789.946650px;}
.y17b{bottom:792.461100px;}
.yed{bottom:794.352750px;}
.ya4{bottom:799.842750px;}
.y1f5{bottom:800.341650px;}
.y34{bottom:800.924400px;}
.y215{bottom:801.533100px;}
.y83{bottom:802.005600px;}
.y150{bottom:802.257600px;}
.y1eb{bottom:805.066650px;}
.y69{bottom:805.785600px;}
.y3f{bottom:807.670200px;}
.y1be{bottom:808.846650px;}
.y17a{bottom:811.565850px;}
.yec{bottom:813.252750px;}
.y1f4{bottom:819.241650px;}
.y232{bottom:820.433100px;}
.y8{bottom:820.729350px;}
.y82{bottom:820.905600px;}
.y14f{bottom:821.425350px;}
.y33{bottom:821.624400px;}
.y1ea{bottom:823.966650px;}
.y12f{bottom:824.685600px;}
.y198{bottom:825.970650px;}
.y3e{bottom:827.105700px;}
.y179{bottom:830.670600px;}
.yeb{bottom:832.152750px;}
.y214{bottom:833.190600px;}
.y231{bottom:839.333100px;}
.y81{bottom:839.805600px;}
.y14e{bottom:840.593100px;}
.y32{bottom:842.324400px;}
.y1e9{bottom:842.866650px;}
.y12e{bottom:843.585600px;}
.y3d{bottom:846.541200px;}
.y7{bottom:847.234350px;}
.y178{bottom:849.791100px;}
.yea{bottom:851.052750px;}
.y213{bottom:852.090600px;}
.yc5{bottom:854.925600px;}
.y1f3{bottom:855.151650px;}
.y68{bottom:858.705600px;}
.y14d{bottom:859.760850px;}
.y1bd{bottom:861.766650px;}
.y197{bottom:861.979650px;}
.y12d{bottom:862.485600px;}
.y31{bottom:863.024400px;}
.y3c{bottom:865.976700px;}
.y6{bottom:869.479350px;}
.ye9{bottom:869.952750px;}
.y212{bottom:870.990600px;}
.yc4{bottom:873.825600px;}
.y67{bottom:877.605600px;}
.y1f2{bottom:878.304150px;}
.y14c{bottom:878.928600px;}
.y1bc{bottom:880.666650px;}
.y12c{bottom:881.385600px;}
.ye8{bottom:888.852750px;}
.yc3{bottom:892.725600px;}
.y5{bottom:895.984350px;}
.y66{bottom:896.505600px;}
.y1f1{bottom:897.204150px;}
.y177{bottom:898.663350px;}
.y1bb{bottom:899.566650px;}
.y211{bottom:902.648100px;}
.ye7{bottom:907.752750px;}
.yc2{bottom:911.625600px;}
.y65{bottom:915.405600px;}
.y1f0{bottom:916.104150px;}
.y230{bottom:917.295600px;}
.y176{bottom:917.783850px;}
.y1ba{bottom:918.466650px;}
.y210{bottom:921.548100px;}
.ye6{bottom:926.652750px;}
.y14b{bottom:927.848100px;}
.yc1{bottom:930.525600px;}
.y64{bottom:934.305600px;}
.y22f{bottom:936.195600px;}
.y175{bottom:936.888600px;}
.y1b9{bottom:937.366650px;}
.ye5{bottom:945.552750px;}
.y14a{bottom:947.015850px;}
.yc0{bottom:949.425600px;}
.y1ef{bottom:952.014150px;}
.y63{bottom:953.205600px;}
.y174{bottom:956.009100px;}
.y1b8{bottom:956.266650px;}
.ye4{bottom:964.452750px;}
.y149{bottom:966.183600px;}
.ybf{bottom:968.325600px;}
.y4{bottom:968.763750px;}
.y62{bottom:972.105600px;}
.y173{bottom:975.113850px;}
.y1b7{bottom:975.166650px;}
.y3b{bottom:980.589600px;}
.ya3{bottom:982.484850px;}
.y148{bottom:985.351350px;}
.y80{bottom:987.225600px;}
.y61{bottom:991.005600px;}
.y1b6{bottom:994.066650px;}
.ya2{bottom:1002.062100px;}
.y147{bottom:1004.519100px;}
.y7f{bottom:1006.125600px;}
.y60{bottom:1009.905600px;}
.ya1{bottom:1021.639350px;}
.y146{bottom:1023.686850px;}
.y172{bottom:1023.986100px;}
.y7e{bottom:1025.025600px;}
.y20f{bottom:1026.915600px;}
.y1df{bottom:1028.805600px;}
.y3{bottom:1031.579550px;}
.ya0{bottom:1041.216600px;}
.y145{bottom:1042.854600px;}
.y171{bottom:1043.090850px;}
.y7d{bottom:1043.925600px;}
.y20e{bottom:1045.815600px;}
.y9f{bottom:1060.793850px;}
.y144{bottom:1062.022350px;}
.y170{bottom:1062.211350px;}
.y5f{bottom:1062.825600px;}
.y20d{bottom:1064.715600px;}
.y2{bottom:1071.179550px;}
.ye3{bottom:1072.139550px;}
.y25{bottom:1074.779550px;}
.y9e{bottom:1080.371100px;}
.y143{bottom:1081.190100px;}
.y16f{bottom:1081.316100px;}
.y5e{bottom:1081.725600px;}
.y24{bottom:1092.779550px;}
.y9d{bottom:1099.948350px;}
.y142{bottom:1100.357850px;}
.y16e{bottom:1100.420850px;}
.y5d{bottom:1100.625600px;}
.y1ee{bottom:1103.648550px;}
.ye2{bottom:1108.148550px;}
.y1{bottom:1110.779550px;}
.y5c{bottom:1119.525600px;}
.y23{bottom:1128.779550px;}
.y39{bottom:1186.305150px;}
.h5{height:45.360000px;}
.hb{height:45.696000px;}
.h7{height:46.080000px;}
.h6{height:48.384000px;}
.h4{height:53.760000px;}
.hc{height:54.432000px;}
.he{height:56.448000px;}
.h9{height:59.136000px;}
.ha{height:61.824000px;}
.hd{height:69.120000px;}
.h3{height:72.576000px;}
.hf{height:82.944000px;}
.h2{height:101.376000px;}
.h8{height:107.040000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:106.299150px;}
.x7{left:115.178100px;}
.xd{left:119.056650px;}
.x9{left:148.824150px;}
.x8{left:157.697850px;}
.xc{left:160.794150px;}
.xa{left:166.527150px;}
.x1{left:170.078700px;}
.x4{left:178.807650px;}
.x3{left:225.354300px;}
.x5{left:273.331200px;}
.xb{left:766.598250px;}
.x6{left:776.606100px;}
@media print{
.v1{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-1.120000pt;}
.ls2{letter-spacing:-0.560000pt;}
.ls6{letter-spacing:-0.280000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.168000pt;}
.ls1{letter-spacing:0.560000pt;}
.ls7{letter-spacing:0.840000pt;}
.ls5{letter-spacing:1.120000pt;}
.lsa{letter-spacing:1.680000pt;}
.ls8{letter-spacing:2.016000pt;}
.ls4{letter-spacing:6.104000pt;}
.wse{word-spacing:-28.416000pt;}
.ws107{word-spacing:-16.576000pt;}
.ws3a{word-spacing:-15.120000pt;}
.ws10e{word-spacing:-15.008000pt;}
.ws10f{word-spacing:-14.728000pt;}
.wsff{word-spacing:-14.560000pt;}
.ws1{word-spacing:-12.480000pt;}
.ws7a{word-spacing:-7.056000pt;}
.wse7{word-spacing:-6.944000pt;}
.ws3{word-spacing:-6.933333pt;}
.ws9{word-spacing:-6.693333pt;}
.ws90{word-spacing:-6.664000pt;}
.ws103{word-spacing:-6.608000pt;}
.wsa{word-spacing:-6.533333pt;}
.ws9c{word-spacing:-6.272000pt;}
.ws27{word-spacing:-6.216000pt;}
.ws8{word-spacing:-6.213333pt;}
.ws41{word-spacing:-5.936000pt;}
.ws86{word-spacing:-5.880000pt;}
.wsb6{word-spacing:-5.712000pt;}
.wsd3{word-spacing:-5.432000pt;}
.wsb{word-spacing:-5.386667pt;}
.wsbb{word-spacing:-5.152000pt;}
.ws50{word-spacing:-4.872000pt;}
.wsb1{word-spacing:-4.816000pt;}
.ws7{word-spacing:-4.640000pt;}
.ws4{word-spacing:-4.480000pt;}
.ws4e{word-spacing:-4.424000pt;}
.ws114{word-spacing:-4.312000pt;}
.wsba{word-spacing:-4.256000pt;}
.ws112{word-spacing:-3.976000pt;}
.wsf7{word-spacing:-3.808000pt;}
.wsf4{word-spacing:-3.752000pt;}
.ws109{word-spacing:-3.696000pt;}
.ws2b{word-spacing:-3.640000pt;}
.ws10a{word-spacing:-3.584000pt;}
.wsee{word-spacing:-3.472000pt;}
.ws111{word-spacing:-3.360000pt;}
.wsd2{word-spacing:-3.304000pt;}
.ws42{word-spacing:-3.248000pt;}
.wsf0{word-spacing:-3.192000pt;}
.ws110{word-spacing:-3.136000pt;}
.ws15{word-spacing:-3.024000pt;}
.ws72{word-spacing:-2.968000pt;}
.ws43{word-spacing:-2.912000pt;}
.ws62{word-spacing:-2.856000pt;}
.ws88{word-spacing:-2.800000pt;}
.ws85{word-spacing:-2.744000pt;}
.ws6e{word-spacing:-2.688000pt;}
.ws80{word-spacing:-2.632000pt;}
.ws18{word-spacing:-2.576000pt;}
.ws2c{word-spacing:-2.520000pt;}
.ws79{word-spacing:-2.464000pt;}
.ws32{word-spacing:-2.352000pt;}
.wsd6{word-spacing:-2.296000pt;}
.wsd8{word-spacing:-2.240000pt;}
.ws5{word-spacing:-2.213333pt;}
.wsec{word-spacing:-2.184000pt;}
.ws5e{word-spacing:-2.128000pt;}
.ws6d{word-spacing:-2.016000pt;}
.ws94{word-spacing:-1.960000pt;}
.ws105{word-spacing:-1.904000pt;}
.wsc5{word-spacing:-1.848000pt;}
.ws20{word-spacing:-1.792000pt;}
.ws95{word-spacing:-1.736000pt;}
.wsc3{word-spacing:-1.624000pt;}
.wse3{word-spacing:-1.568000pt;}
.wsaa{word-spacing:-1.512000pt;}
.wsa4{word-spacing:-1.456000pt;}
.wsa2{word-spacing:-1.400000pt;}
.ws33{word-spacing:-1.288000pt;}
.wsd7{word-spacing:-1.232000pt;}
.ws5d{word-spacing:-1.176000pt;}
.ws6{word-spacing:-1.173333pt;}
.ws1f{word-spacing:-1.120000pt;}
.ws81{word-spacing:-1.008000pt;}
.wsc{word-spacing:-0.933333pt;}
.ws6f{word-spacing:-0.896000pt;}
.ws3d{word-spacing:-0.840000pt;}
.ws91{word-spacing:-0.784000pt;}
.ws10b{word-spacing:-0.672000pt;}
.ws40{word-spacing:-0.560000pt;}
.ws16{word-spacing:-0.504000pt;}
.ws117{word-spacing:-0.448000pt;}
.ws64{word-spacing:-0.392000pt;}
.ws30{word-spacing:-0.336000pt;}
.ws8b{word-spacing:-0.280000pt;}
.ws1a{word-spacing:-0.224000pt;}
.wsf8{word-spacing:-0.168000pt;}
.ws57{word-spacing:-0.112000pt;}
.wsdf{word-spacing:-0.056000pt;}
.ws0{word-spacing:0.000000pt;}
.ws75{word-spacing:0.056000pt;}
.wsa0{word-spacing:0.112000pt;}
.ws56{word-spacing:0.168000pt;}
.ws22{word-spacing:0.224000pt;}
.wsc0{word-spacing:0.280000pt;}
.ws17{word-spacing:0.336000pt;}
.wsce{word-spacing:0.392000pt;}
.ws59{word-spacing:0.448000pt;}
.ws48{word-spacing:0.504000pt;}
.ws5f{word-spacing:0.560000pt;}
.ws7c{word-spacing:0.616000pt;}
.ws7b{word-spacing:0.672000pt;}
.wsed{word-spacing:0.728000pt;}
.ws5c{word-spacing:0.784000pt;}
.wsca{word-spacing:0.840000pt;}
.wsae{word-spacing:0.896000pt;}
.wsdc{word-spacing:0.952000pt;}
.ws6a{word-spacing:1.008000pt;}
.ws9a{word-spacing:1.064000pt;}
.ws11{word-spacing:1.120000pt;}
.wsef{word-spacing:1.176000pt;}
.wsbd{word-spacing:1.288000pt;}
.ws2{word-spacing:1.386667pt;}
.ws55{word-spacing:1.400000pt;}
.ws4a{word-spacing:1.456000pt;}
.wsb9{word-spacing:1.512000pt;}
.ws34{word-spacing:1.568000pt;}
.ws6c{word-spacing:1.624000pt;}
.wseb{word-spacing:1.736000pt;}
.ws7e{word-spacing:1.792000pt;}
.wsfa{word-spacing:1.848000pt;}
.ws2f{word-spacing:1.904000pt;}
.ws1e{word-spacing:1.960000pt;}
.ws9e{word-spacing:2.016000pt;}
.wsbc{word-spacing:2.072000pt;}
.ws77{word-spacing:2.128000pt;}
.wsc2{word-spacing:2.184000pt;}
.ws23{word-spacing:2.296000pt;}
.ws3e{word-spacing:2.352000pt;}
.ws73{word-spacing:2.408000pt;}
.wsb7{word-spacing:2.464000pt;}
.ws93{word-spacing:2.520000pt;}
.wsb4{word-spacing:2.576000pt;}
.wsfb{word-spacing:2.632000pt;}
.wsb8{word-spacing:2.688000pt;}
.ws26{word-spacing:2.744000pt;}
.wsf6{word-spacing:2.800000pt;}
.ws71{word-spacing:2.856000pt;}
.ws5a{word-spacing:2.912000pt;}
.wscc{word-spacing:2.968000pt;}
.wsc9{word-spacing:3.024000pt;}
.wsb5{word-spacing:3.080000pt;}
.wsab{word-spacing:3.192000pt;}
.ws25{word-spacing:3.248000pt;}
.ws7d{word-spacing:3.304000pt;}
.wse9{word-spacing:3.416000pt;}
.ws9d{word-spacing:3.472000pt;}
.ws63{word-spacing:3.528000pt;}
.wsf2{word-spacing:3.584000pt;}
.ws92{word-spacing:3.696000pt;}
.ws21{word-spacing:3.752000pt;}
.wsa3{word-spacing:3.808000pt;}
.ws78{word-spacing:3.864000pt;}
.ws45{word-spacing:4.032000pt;}
.ws3f{word-spacing:4.144000pt;}
.wse6{word-spacing:4.200000pt;}
.ws68{word-spacing:4.256000pt;}
.ws39{word-spacing:4.312000pt;}
.ws35{word-spacing:4.368000pt;}
.wsea{word-spacing:4.424000pt;}
.ws10d{word-spacing:4.536000pt;}
.ws106{word-spacing:4.648000pt;}
.ws2d{word-spacing:4.760000pt;}
.ws69{word-spacing:4.816000pt;}
.wsaf{word-spacing:4.872000pt;}
.wsf3{word-spacing:4.928000pt;}
.ws2e{word-spacing:5.040000pt;}
.wsd5{word-spacing:5.152000pt;}
.ws87{word-spacing:5.208000pt;}
.ws51{word-spacing:5.264000pt;}
.ws6b{word-spacing:5.320000pt;}
.wse8{word-spacing:5.376000pt;}
.wsa8{word-spacing:5.432000pt;}
.ws54{word-spacing:5.488000pt;}
.ws14{word-spacing:5.544000pt;}
.ws67{word-spacing:5.600000pt;}
.wse2{word-spacing:5.656000pt;}
.ws66{word-spacing:5.824000pt;}
.ws29{word-spacing:5.880000pt;}
.wsc8{word-spacing:5.936000pt;}
.wsd4{word-spacing:5.992000pt;}
.ws9f{word-spacing:6.048000pt;}
.ws49{word-spacing:6.104000pt;}
.ws96{word-spacing:6.160000pt;}
.ws31{word-spacing:6.216000pt;}
.ws60{word-spacing:6.328000pt;}
.ws82{word-spacing:6.384000pt;}
.ws2a{word-spacing:6.496000pt;}
.ws74{word-spacing:6.552000pt;}
.wsd9{word-spacing:6.608000pt;}
.ws8c{word-spacing:6.776000pt;}
.wscd{word-spacing:6.832000pt;}
.wse4{word-spacing:6.944000pt;}
.wsa1{word-spacing:7.000000pt;}
.wsde{word-spacing:7.056000pt;}
.ws4d{word-spacing:7.112000pt;}
.ws38{word-spacing:7.168000pt;}
.wsfc{word-spacing:7.224000pt;}
.ws44{word-spacing:7.280000pt;}
.ws3b{word-spacing:7.336000pt;}
.wsc1{word-spacing:7.448000pt;}
.ws89{word-spacing:7.504000pt;}
.ws8e{word-spacing:7.560000pt;}
.ws47{word-spacing:7.672000pt;}
.wsdb{word-spacing:7.728000pt;}
.wscb{word-spacing:7.784000pt;}
.wsf9{word-spacing:7.840000pt;}
.ws84{word-spacing:7.896000pt;}
.ws8d{word-spacing:7.952000pt;}
.wsfd{word-spacing:8.008000pt;}
.ws3c{word-spacing:8.064000pt;}
.wse5{word-spacing:8.176000pt;}
.ws24{word-spacing:8.232000pt;}
.ws5b{word-spacing:8.288000pt;}
.ws12{word-spacing:8.344000pt;}
.ws100{word-spacing:8.400000pt;}
.wsd0{word-spacing:8.680000pt;}
.ws37{word-spacing:8.736000pt;}
.ws65{word-spacing:8.848000pt;}
.ws58{word-spacing:8.904000pt;}
.wsb0{word-spacing:8.960000pt;}
.wsa5{word-spacing:9.128000pt;}
.ws8f{word-spacing:9.184000pt;}
.ws104{word-spacing:9.352000pt;}
.ws13{word-spacing:9.408000pt;}
.wsb2{word-spacing:9.520000pt;}
.ws98{word-spacing:9.632000pt;}
.ws52{word-spacing:9.744000pt;}
.ws76{word-spacing:9.800000pt;}
.wsf5{word-spacing:9.968000pt;}
.ws99{word-spacing:10.080000pt;}
.wsbf{word-spacing:10.136000pt;}
.ws28{word-spacing:10.248000pt;}
.ws1c{word-spacing:10.304000pt;}
.ws4c{word-spacing:10.360000pt;}
.wsc4{word-spacing:10.416000pt;}
.ws4b{word-spacing:10.584000pt;}
.wsc6{word-spacing:10.640000pt;}
.ws8a{word-spacing:10.696000pt;}
.wse1{word-spacing:10.808000pt;}
.ws1b{word-spacing:10.976000pt;}
.wsa7{word-spacing:11.088000pt;}
.wsc7{word-spacing:11.200000pt;}
.ws7f{word-spacing:11.256000pt;}
.wsa9{word-spacing:11.368000pt;}
.wsda{word-spacing:11.872000pt;}
.ws19{word-spacing:11.928000pt;}
.wscf{word-spacing:11.984000pt;}
.wsdd{word-spacing:12.488000pt;}
.wsb3{word-spacing:12.600000pt;}
.wse0{word-spacing:12.656000pt;}
.ws36{word-spacing:12.712000pt;}
.ws4f{word-spacing:12.824000pt;}
.ws97{word-spacing:12.880000pt;}
.ws116{word-spacing:13.048000pt;}
.ws10{word-spacing:13.384000pt;}
.ws61{word-spacing:13.440000pt;}
.ws53{word-spacing:13.496000pt;}
.wsfe{word-spacing:13.608000pt;}
.ws83{word-spacing:13.832000pt;}
.wsad{word-spacing:13.944000pt;}
.ws115{word-spacing:14.560000pt;}
.ws1d{word-spacing:14.896000pt;}
.ws10c{word-spacing:15.120000pt;}
.wsf{word-spacing:15.680000pt;}
.ws46{word-spacing:15.736000pt;}
.wsbe{word-spacing:16.072000pt;}
.ws102{word-spacing:16.464000pt;}
.wsa6{word-spacing:16.576000pt;}
.ws101{word-spacing:16.632000pt;}
.wsf1{word-spacing:17.248000pt;}
.ws70{word-spacing:17.360000pt;}
.ws108{word-spacing:18.592000pt;}
.ws9b{word-spacing:18.872000pt;}
.wsac{word-spacing:19.936000pt;}
.wsd1{word-spacing:27.384000pt;}
.ws113{word-spacing:31.640000pt;}
.wsd{word-spacing:56.461333pt;}
._16{margin-left:-25.648000pt;}
._14{margin-left:-22.002400pt;}
._18{margin-left:-19.768000pt;}
._5{margin-left:-16.309333pt;}
._3{margin-left:-15.253333pt;}
._1a{margin-left:-14.144800pt;}
._15{margin-left:-11.088000pt;}
._19{margin-left:-9.542400pt;}
._7{margin-left:-7.117600pt;}
._11{margin-left:-6.216000pt;}
._1{margin-left:-4.858667pt;}
._8{margin-left:-3.889867pt;}
._2{margin-left:-2.949333pt;}
._9{margin-left:-1.976800pt;}
._0{margin-left:-0.960000pt;}
._a{width:0.928800pt;}
._f{width:1.875733pt;}
._4{width:3.157333pt;}
._b{width:4.256000pt;}
._6{width:5.846400pt;}
._10{width:6.966400pt;}
._e{width:7.884800pt;}
._13{width:9.021600pt;}
._17{width:10.354400pt;}
._c{width:12.084800pt;}
._12{width:16.172800pt;}
._d{width:56.461333pt;}
.fs7{font-size:26.666667pt;}
.fs9{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fsd{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:61.333333pt;}
.fsa{font-size:64.000000pt;}
.fsb{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fsc{font-size:96.000000pt;}
.fs5{font-size:106.666667pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y3a{bottom:55.811067pt;}
.y22{bottom:108.755467pt;}
.y22e{bottom:113.133867pt;}
.y16d{bottom:113.231867pt;}
.y5b{bottom:113.297067pt;}
.ybe{bottom:113.430800pt;}
.y196{bottom:113.455867pt;}
.y1de{bottom:120.894800pt;}
.y9c{bottom:121.533867pt;}
.y248{bottom:122.373867pt;}
.y12b{bottom:126.071333pt;}
.y21{bottom:126.935467pt;}
.y7c{bottom:127.762267pt;}
.y22d{bottom:129.933867pt;}
.y16c{bottom:130.269867pt;}
.y195{bottom:130.451867pt;}
.y5a{bottom:130.573067pt;}
.ybd{bottom:130.832800pt;}
.y30{bottom:137.171867pt;}
.y141{bottom:137.289333pt;}
.y1dd{bottom:137.694800pt;}
.y9b{bottom:138.333867pt;}
.y247{bottom:139.173867pt;}
.y1b3{bottom:141.194533pt;}
.y20{bottom:141.335467pt;}
.y12a{bottom:142.871333pt;}
.y20c{bottom:143.574800pt;}
.y7b{bottom:144.562267pt;}
.y194{bottom:147.433867pt;}
.y59{bottom:147.849067pt;}
.ybc{bottom:148.234800pt;}
.y1e8{bottom:148.413867pt;}
.y140{bottom:154.089333pt;}
.y1dc{bottom:154.494800pt;}
.y9a{bottom:155.133867pt;}
.y1f{bottom:155.735467pt;}
.y1b2{bottom:157.994533pt;}
.y129{bottom:159.671333pt;}
.y20b{bottom:160.374800pt;}
.y108{bottom:161.771333pt;}
.y22c{bottom:161.853867pt;}
.y193{bottom:164.429867pt;}
.y1e7{bottom:165.213867pt;}
.ybb{bottom:165.636800pt;}
.y1e{bottom:170.135467pt;}
.y13f{bottom:170.889333pt;}
.y246{bottom:171.093867pt;}
.y1db{bottom:171.294800pt;}
.y99{bottom:171.933867pt;}
.y2f{bottom:173.669467pt;}
.y16b{bottom:173.753867pt;}
.y1b1{bottom:174.794533pt;}
.y128{bottom:176.471333pt;}
.y20a{bottom:177.174800pt;}
.y107{bottom:178.571333pt;}
.ye1{bottom:178.653867pt;}
.y192{bottom:181.411867pt;}
.y1e6{bottom:182.013867pt;}
.yba{bottom:183.038800pt;}
.y1d{bottom:184.535467pt;}
.y13e{bottom:187.689333pt;}
.y245{bottom:187.893867pt;}
.y1da{bottom:188.094800pt;}
.y98{bottom:188.733867pt;}
.y16a{bottom:190.791867pt;}
.y1b0{bottom:191.594533pt;}
.y7a{bottom:191.602267pt;}
.y127{bottom:193.271333pt;}
.y58{bottom:195.351067pt;}
.y106{bottom:195.371333pt;}
.ye0{bottom:195.453867pt;}
.y191{bottom:198.393867pt;}
.y1e5{bottom:198.813867pt;}
.yb9{bottom:200.440800pt;}
.y13d{bottom:204.489333pt;}
.y1d9{bottom:204.894800pt;}
.y22b{bottom:206.793867pt;}
.y169{bottom:207.829867pt;}
.y1af{bottom:208.394533pt;}
.y79{bottom:208.402267pt;}
.y209{bottom:209.094800pt;}
.y126{bottom:210.071333pt;}
.y2e{bottom:210.167067pt;}
.y105{bottom:212.171333pt;}
.ydf{bottom:212.253867pt;}
.y57{bottom:212.627067pt;}
.y190{bottom:215.389867pt;}
.y1e4{bottom:215.613867pt;}
.yb8{bottom:217.842800pt;}
.y244{bottom:219.813867pt;}
.y13c{bottom:221.289333pt;}
.y1d8{bottom:221.694800pt;}
.y22a{bottom:223.593867pt;}
.y168{bottom:224.867867pt;}
.y1ae{bottom:225.194533pt;}
.y78{bottom:225.202267pt;}
.y208{bottom:225.894800pt;}
.y104{bottom:228.971333pt;}
.yde{bottom:229.053867pt;}
.y56{bottom:229.903067pt;}
.y1e3{bottom:232.413867pt;}
.yb7{bottom:235.244800pt;}
.y97{bottom:235.773867pt;}
.y243{bottom:236.613867pt;}
.y13b{bottom:238.089333pt;}
.y167{bottom:241.905867pt;}
.y1ad{bottom:241.994533pt;}
.y77{bottom:242.002267pt;}
.y103{bottom:245.771333pt;}
.ydd{bottom:245.853867pt;}
.y2d{bottom:246.664667pt;}
.y55{bottom:247.179067pt;}
.y1e2{bottom:249.213867pt;}
.y229{bottom:251.733867pt;}
.y96{bottom:252.573867pt;}
.yb6{bottom:252.646800pt;}
.y125{bottom:253.331333pt;}
.y207{bottom:257.814800pt;}
.y1ac{bottom:258.794533pt;}
.y76{bottom:258.802267pt;}
.y18f{bottom:258.831867pt;}
.y166{bottom:258.943867pt;}
.y102{bottom:262.571333pt;}
.ydc{bottom:262.653867pt;}
.y54{bottom:264.455067pt;}
.y1b5{bottom:266.013867pt;}
.y228{bottom:268.533867pt;}
.y1d7{bottom:268.734800pt;}
.y95{bottom:269.373867pt;}
.yb5{bottom:270.048800pt;}
.y124{bottom:270.131333pt;}
.y1c{bottom:274.458400pt;}
.y1ab{bottom:275.594533pt;}
.y75{bottom:275.602267pt;}
.y18e{bottom:275.827867pt;}
.ydb{bottom:279.453867pt;}
.y53{bottom:281.731067pt;}
.y1b4{bottom:282.813867pt;}
.y2c{bottom:283.162400pt;}
.y242{bottom:285.333867pt;}
.y1d6{bottom:285.534800pt;}
.y94{bottom:286.173867pt;}
.y123{bottom:286.931333pt;}
.y227{bottom:289.113867pt;}
.y206{bottom:289.734800pt;}
.y1aa{bottom:292.394533pt;}
.y74{bottom:292.402267pt;}
.y18d{bottom:292.809867pt;}
.y1b{bottom:294.231733pt;}
.yda{bottom:296.253867pt;}
.y52{bottom:299.007067pt;}
.y110{bottom:299.613867pt;}
.y241{bottom:302.133867pt;}
.y1d5{bottom:302.334800pt;}
.y165{bottom:302.427867pt;}
.y93{bottom:302.973867pt;}
.y122{bottom:303.731333pt;}
.y226{bottom:305.913867pt;}
.y205{bottom:306.534800pt;}
.y1a9{bottom:309.194533pt;}
.y73{bottom:309.202267pt;}
.y101{bottom:309.611333pt;}
.y18c{bottom:309.805867pt;}
.yd9{bottom:313.053867pt;}
.y51{bottom:316.283067pt;}
.y10f{bottom:316.413867pt;}
.yb4{bottom:317.690800pt;}
.y1d4{bottom:319.134800pt;}
.y164{bottom:319.465867pt;}
.y2b{bottom:319.660000pt;}
.y92{bottom:319.773867pt;}
.y121{bottom:320.531333pt;}
.y1a{bottom:325.351733pt;}
.y1a8{bottom:325.994533pt;}
.y100{bottom:326.411333pt;}
.y18b{bottom:326.787867pt;}
.yd8{bottom:329.853867pt;}
.y10e{bottom:333.213867pt;}
.y50{bottom:333.559067pt;}
.y225{bottom:334.053867pt;}
.yb3{bottom:335.092800pt;}
.y1d3{bottom:335.934800pt;}
.y163{bottom:336.503867pt;}
.y120{bottom:337.331333pt;}
.y204{bottom:338.454800pt;}
.y13a{bottom:339.495600pt;}
.y19{bottom:341.351733pt;}
.yff{bottom:343.211333pt;}
.y18a{bottom:343.769867pt;}
.yd7{bottom:346.653867pt;}
.y10d{bottom:350.013867pt;}
.y4f{bottom:350.835067pt;}
.y224{bottom:350.853867pt;}
.yb2{bottom:352.494800pt;}
.y1d2{bottom:352.734800pt;}
.y11f{bottom:354.131333pt;}
.y203{bottom:355.254800pt;}
.y2a{bottom:356.157600pt;}
.yfe{bottom:360.011333pt;}
.y189{bottom:360.765867pt;}
.y18{bottom:361.125067pt;}
.yd6{bottom:363.453867pt;}
.y91{bottom:366.813867pt;}
.y1d1{bottom:369.534800pt;}
.yb1{bottom:369.896800pt;}
.y1a7{bottom:373.034533pt;}
.yfd{bottom:376.811333pt;}
.y17{bottom:377.125067pt;}
.y223{bottom:378.993867pt;}
.y162{bottom:379.987867pt;}
.yd5{bottom:380.253867pt;}
.y240{bottom:382.773867pt;}
.y90{bottom:383.613867pt;}
.y1d0{bottom:386.334800pt;}
.y202{bottom:387.174800pt;}
.yb0{bottom:387.298800pt;}
.y1a6{bottom:389.834533pt;}
.y29{bottom:392.655200pt;}
.y16{bottom:393.125067pt;}
.yfc{bottom:393.611333pt;}
.y161{bottom:397.025867pt;}
.yd4{bottom:397.053867pt;}
.y11e{bottom:397.391333pt;}
.y4e{bottom:398.337067pt;}
.y222{bottom:399.573867pt;}
.y8f{bottom:400.413867pt;}
.y1cf{bottom:403.134800pt;}
.y201{bottom:403.974800pt;}
.y188{bottom:404.207867pt;}
.y72{bottom:404.923867pt;}
.y1a5{bottom:406.634533pt;}
.yfb{bottom:410.411333pt;}
.yd3{bottom:413.853867pt;}
.y160{bottom:414.063867pt;}
.y11d{bottom:414.191333pt;}
.y4d{bottom:415.613067pt;}
.y8e{bottom:417.213867pt;}
.y1ce{bottom:419.934800pt;}
.y200{bottom:420.774800pt;}
.y187{bottom:421.203867pt;}
.y1a4{bottom:423.434533pt;}
.y15{bottom:424.245067pt;}
.yfa{bottom:427.211333pt;}
.y28{bottom:429.152933pt;}
.y1e1{bottom:430.653867pt;}
.y11c{bottom:430.991333pt;}
.y15f{bottom:431.101867pt;}
.y23f{bottom:431.493867pt;}
.y4c{bottom:432.889067pt;}
.y8d{bottom:434.013867pt;}
.yaf{bottom:434.940800pt;}
.y221{bottom:435.273867pt;}
.y1cd{bottom:436.734800pt;}
.y71{bottom:436.931867pt;}
.y186{bottom:438.185867pt;}
.y1a3{bottom:440.234533pt;}
.y14{bottom:440.245067pt;}
.yf9{bottom:444.011333pt;}
.y1e0{bottom:447.453867pt;}
.y11b{bottom:447.791333pt;}
.y15e{bottom:448.139867pt;}
.y23e{bottom:448.293867pt;}
.y4b{bottom:450.165067pt;}
.y8c{bottom:450.813867pt;}
.yae{bottom:452.342800pt;}
.y1ff{bottom:452.694800pt;}
.y1ed{bottom:453.534800pt;}
.y185{bottom:455.167867pt;}
.y220{bottom:455.853867pt;}
.y13{bottom:456.245067pt;}
.y1a2{bottom:457.034533pt;}
.yd2{bottom:460.893867pt;}
.y10c{bottom:464.253867pt;}
.y11a{bottom:464.591333pt;}
.y23d{bottom:465.093867pt;}
.y15d{bottom:465.177867pt;}
.y27{bottom:465.643600pt;}
.y4a{bottom:467.441067pt;}
.y8b{bottom:467.613867pt;}
.y1fe{bottom:469.494800pt;}
.yad{bottom:469.744800pt;}
.y184{bottom:472.163867pt;}
.y1a1{bottom:473.834533pt;}
.y12{bottom:476.018400pt;}
.yd1{bottom:477.693867pt;}
.y10b{bottom:481.053867pt;}
.y119{bottom:481.391333pt;}
.y15c{bottom:482.215867pt;}
.y1cc{bottom:483.774800pt;}
.y8a{bottom:484.413867pt;}
.y49{bottom:484.717067pt;}
.yac{bottom:487.146800pt;}
.y183{bottom:489.145867pt;}
.yf8{bottom:491.051333pt;}
.y21f{bottom:491.553867pt;}
.y11{bottom:492.018400pt;}
.yd0{bottom:494.493867pt;}
.y23c{bottom:497.013867pt;}
.y10a{bottom:497.853867pt;}
.y118{bottom:498.191333pt;}
.y15b{bottom:499.253867pt;}
.y1cb{bottom:500.574800pt;}
.y139{bottom:501.213867pt;}
.y1fd{bottom:501.414800pt;}
.yab{bottom:504.548800pt;}
.yf7{bottom:507.851333pt;}
.y10{bottom:508.018400pt;}
.ycf{bottom:511.293867pt;}
.y21e{bottom:512.133867pt;}
.y23b{bottom:513.813867pt;}
.y109{bottom:514.653867pt;}
.y117{bottom:514.991333pt;}
.y15a{bottom:516.291867pt;}
.y1ca{bottom:517.374800pt;}
.y138{bottom:518.013867pt;}
.y1a0{bottom:520.874533pt;}
.yaa{bottom:521.950800pt;}
.yf6{bottom:524.651333pt;}
.y26{bottom:527.034133pt;}
.yce{bottom:528.093867pt;}
.y21d{bottom:528.933867pt;}
.y23a{bottom:530.613867pt;}
.y89{bottom:531.453867pt;}
.y116{bottom:531.791333pt;}
.y48{bottom:532.219067pt;}
.y182{bottom:532.587867pt;}
.y159{bottom:533.329867pt;}
.y1fc{bottom:533.334800pt;}
.y1c9{bottom:534.174800pt;}
.y137{bottom:534.813867pt;}
.y19f{bottom:537.674533pt;}
.yf{bottom:539.138400pt;}
.ya9{bottom:539.352800pt;}
.yf5{bottom:541.451333pt;}
.ycd{bottom:544.893867pt;}
.y88{bottom:548.253867pt;}
.y115{bottom:548.591333pt;}
.y47{bottom:549.495067pt;}
.y181{bottom:549.583867pt;}
.y158{bottom:550.367867pt;}
.y1c8{bottom:550.974800pt;}
.y136{bottom:551.613867pt;}
.y19e{bottom:554.474533pt;}
.ye{bottom:555.138400pt;}
.ya8{bottom:556.754800pt;}
.y21c{bottom:557.073867pt;}
.ycc{bottom:561.693867pt;}
.y239{bottom:562.533867pt;}
.y87{bottom:565.053867pt;}
.y1fb{bottom:565.254800pt;}
.y180{bottom:566.565867pt;}
.y46{bottom:566.771067pt;}
.y1c7{bottom:567.774800pt;}
.y135{bottom:568.413867pt;}
.yd{bottom:571.138400pt;}
.y19d{bottom:571.274533pt;}
.ya7{bottom:574.156800pt;}
.y21b{bottom:577.653867pt;}
.ycb{bottom:578.493867pt;}
.y238{bottom:579.333867pt;}
.y86{bottom:581.853867pt;}
.y1fa{bottom:582.054800pt;}
.y17f{bottom:583.547867pt;}
.y45{bottom:584.047067pt;}
.y1c6{bottom:584.574800pt;}
.y134{bottom:585.213867pt;}
.y19c{bottom:588.074533pt;}
.yf4{bottom:588.491333pt;}
.yc{bottom:590.911733pt;}
.ya6{bottom:591.558800pt;}
.y114{bottom:591.851333pt;}
.y157{bottom:593.851867pt;}
.y21a{bottom:594.453867pt;}
.yca{bottom:595.293867pt;}
.y70{bottom:598.653867pt;}
.y44{bottom:601.323067pt;}
.y1c5{bottom:601.374800pt;}
.y133{bottom:602.013867pt;}
.y19b{bottom:604.874533pt;}
.yf3{bottom:605.291333pt;}
.yb{bottom:606.911733pt;}
.y113{bottom:608.651333pt;}
.ya5{bottom:608.960800pt;}
.y156{bottom:610.889867pt;}
.y237{bottom:611.253867pt;}
.yc9{bottom:612.093867pt;}
.y1f9{bottom:613.974800pt;}
.y6f{bottom:615.453867pt;}
.y1c4{bottom:618.174800pt;}
.y43{bottom:618.599067pt;}
.y132{bottom:618.813867pt;}
.y19a{bottom:621.674533pt;}
.yf2{bottom:622.091333pt;}
.y219{bottom:622.593867pt;}
.ya{bottom:622.911733pt;}
.y112{bottom:625.451333pt;}
.y17e{bottom:626.989867pt;}
.y155{bottom:627.927867pt;}
.y236{bottom:628.053867pt;}
.yc8{bottom:628.893867pt;}
.y6e{bottom:632.253867pt;}
.y1c3{bottom:634.974800pt;}
.y131{bottom:635.613867pt;}
.y42{bottom:635.875067pt;}
.y38{bottom:638.332800pt;}
.y199{bottom:638.474533pt;}
.yf1{bottom:638.891333pt;}
.y218{bottom:639.393867pt;}
.y111{bottom:642.251333pt;}
.y17d{bottom:643.971867pt;}
.y154{bottom:644.965867pt;}
.yc7{bottom:645.693867pt;}
.y1f8{bottom:645.894800pt;}
.y6d{bottom:649.053867pt;}
.y1c2{bottom:651.774800pt;}
.y130{bottom:652.413867pt;}
.y9{bottom:654.031733pt;}
.yf0{bottom:655.691333pt;}
.y217{bottom:656.193867pt;}
.y37{bottom:656.732800pt;}
.y235{bottom:659.973867pt;}
.y17c{bottom:660.967867pt;}
.y153{bottom:662.003867pt;}
.yc6{bottom:662.493867pt;}
.y1f7{bottom:662.694800pt;}
.y6c{bottom:665.853867pt;}
.y1c1{bottom:668.574800pt;}
.yef{bottom:672.491333pt;}
.y36{bottom:675.132800pt;}
.y152{bottom:679.041867pt;}
.y85{bottom:679.293867pt;}
.y234{bottom:680.553867pt;}
.y6b{bottom:682.653867pt;}
.y41{bottom:683.377067pt;}
.y216{bottom:684.333867pt;}
.y1c0{bottom:685.374800pt;}
.yee{bottom:689.291333pt;}
.y35{bottom:693.532800pt;}
.y1f6{bottom:694.614800pt;}
.y151{bottom:696.079867pt;}
.y84{bottom:696.093867pt;}
.y233{bottom:697.353867pt;}
.y1ec{bottom:698.814800pt;}
.y6a{bottom:699.453867pt;}
.y40{bottom:700.653067pt;}
.y1bf{bottom:702.174800pt;}
.y17b{bottom:704.409867pt;}
.yed{bottom:706.091333pt;}
.ya4{bottom:710.971333pt;}
.y1f5{bottom:711.414800pt;}
.y34{bottom:711.932800pt;}
.y215{bottom:712.473867pt;}
.y83{bottom:712.893867pt;}
.y150{bottom:713.117867pt;}
.y1eb{bottom:715.614800pt;}
.y69{bottom:716.253867pt;}
.y3f{bottom:717.929067pt;}
.y1be{bottom:718.974800pt;}
.y17a{bottom:721.391867pt;}
.yec{bottom:722.891333pt;}
.y1f4{bottom:728.214800pt;}
.y232{bottom:729.273867pt;}
.y8{bottom:729.537200pt;}
.y82{bottom:729.693867pt;}
.y14f{bottom:730.155867pt;}
.y33{bottom:730.332800pt;}
.y1ea{bottom:732.414800pt;}
.y12f{bottom:733.053867pt;}
.y198{bottom:734.196133pt;}
.y3e{bottom:735.205067pt;}
.y179{bottom:738.373867pt;}
.yeb{bottom:739.691333pt;}
.y214{bottom:740.613867pt;}
.y231{bottom:746.073867pt;}
.y81{bottom:746.493867pt;}
.y14e{bottom:747.193867pt;}
.y32{bottom:748.732800pt;}
.y1e9{bottom:749.214800pt;}
.y12e{bottom:749.853867pt;}
.y3d{bottom:752.481067pt;}
.y7{bottom:753.097200pt;}
.y178{bottom:755.369867pt;}
.yea{bottom:756.491333pt;}
.y213{bottom:757.413867pt;}
.yc5{bottom:759.933867pt;}
.y1f3{bottom:760.134800pt;}
.y68{bottom:763.293867pt;}
.y14d{bottom:764.231867pt;}
.y1bd{bottom:766.014800pt;}
.y197{bottom:766.204133pt;}
.y12d{bottom:766.653867pt;}
.y31{bottom:767.132800pt;}
.y3c{bottom:769.757067pt;}
.y6{bottom:772.870533pt;}
.ye9{bottom:773.291333pt;}
.y212{bottom:774.213867pt;}
.yc4{bottom:776.733867pt;}
.y67{bottom:780.093867pt;}
.y1f2{bottom:780.714800pt;}
.y14c{bottom:781.269867pt;}
.y1bc{bottom:782.814800pt;}
.y12c{bottom:783.453867pt;}
.ye8{bottom:790.091333pt;}
.yc3{bottom:793.533867pt;}
.y5{bottom:796.430533pt;}
.y66{bottom:796.893867pt;}
.y1f1{bottom:797.514800pt;}
.y177{bottom:798.811867pt;}
.y1bb{bottom:799.614800pt;}
.y211{bottom:802.353867pt;}
.ye7{bottom:806.891333pt;}
.yc2{bottom:810.333867pt;}
.y65{bottom:813.693867pt;}
.y1f0{bottom:814.314800pt;}
.y230{bottom:815.373867pt;}
.y176{bottom:815.807867pt;}
.y1ba{bottom:816.414800pt;}
.y210{bottom:819.153867pt;}
.ye6{bottom:823.691333pt;}
.y14b{bottom:824.753867pt;}
.yc1{bottom:827.133867pt;}
.y64{bottom:830.493867pt;}
.y22f{bottom:832.173867pt;}
.y175{bottom:832.789867pt;}
.y1b9{bottom:833.214800pt;}
.ye5{bottom:840.491333pt;}
.y14a{bottom:841.791867pt;}
.yc0{bottom:843.933867pt;}
.y1ef{bottom:846.234800pt;}
.y63{bottom:847.293867pt;}
.y174{bottom:849.785867pt;}
.y1b8{bottom:850.014800pt;}
.ye4{bottom:857.291333pt;}
.y149{bottom:858.829867pt;}
.ybf{bottom:860.733867pt;}
.y4{bottom:861.123333pt;}
.y62{bottom:864.093867pt;}
.y173{bottom:866.767867pt;}
.y1b7{bottom:866.814800pt;}
.y3b{bottom:871.635200pt;}
.ya3{bottom:873.319867pt;}
.y148{bottom:875.867867pt;}
.y80{bottom:877.533867pt;}
.y61{bottom:880.893867pt;}
.y1b6{bottom:883.614800pt;}
.ya2{bottom:890.721867pt;}
.y147{bottom:892.905867pt;}
.y7f{bottom:894.333867pt;}
.y60{bottom:897.693867pt;}
.ya1{bottom:908.123867pt;}
.y146{bottom:909.943867pt;}
.y172{bottom:910.209867pt;}
.y7e{bottom:911.133867pt;}
.y20f{bottom:912.813867pt;}
.y1df{bottom:914.493867pt;}
.y3{bottom:916.959600pt;}
.ya0{bottom:925.525867pt;}
.y145{bottom:926.981867pt;}
.y171{bottom:927.191867pt;}
.y7d{bottom:927.933867pt;}
.y20e{bottom:929.613867pt;}
.y9f{bottom:942.927867pt;}
.y144{bottom:944.019867pt;}
.y170{bottom:944.187867pt;}
.y5f{bottom:944.733867pt;}
.y20d{bottom:946.413867pt;}
.y2{bottom:952.159600pt;}
.ye3{bottom:953.012933pt;}
.y25{bottom:955.359600pt;}
.y9e{bottom:960.329867pt;}
.y143{bottom:961.057867pt;}
.y16f{bottom:961.169867pt;}
.y5e{bottom:961.533867pt;}
.y24{bottom:971.359600pt;}
.y9d{bottom:977.731867pt;}
.y142{bottom:978.095867pt;}
.y16e{bottom:978.151867pt;}
.y5d{bottom:978.333867pt;}
.y1ee{bottom:981.020933pt;}
.ye2{bottom:985.020933pt;}
.y1{bottom:987.359600pt;}
.y5c{bottom:995.133867pt;}
.y23{bottom:1003.359600pt;}
.y39{bottom:1054.493467pt;}
.h5{height:40.320000pt;}
.hb{height:40.618667pt;}
.h7{height:40.960000pt;}
.h6{height:43.008000pt;}
.h4{height:47.786667pt;}
.hc{height:48.384000pt;}
.he{height:50.176000pt;}
.h9{height:52.565333pt;}
.ha{height:54.954667pt;}
.hd{height:61.440000pt;}
.h3{height:64.512000pt;}
.hf{height:73.728000pt;}
.h2{height:90.112000pt;}
.h8{height:95.146667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:94.488133pt;}
.x7{left:102.380533pt;}
.xd{left:105.828133pt;}
.x9{left:132.288133pt;}
.x8{left:140.175867pt;}
.xc{left:142.928133pt;}
.xa{left:148.024133pt;}
.x1{left:151.181067pt;}
.x4{left:158.940133pt;}
.x3{left:200.314933pt;}
.x5{left:242.961067pt;}
.xb{left:681.420667pt;}
.x6{left:690.316533pt;}
}




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