
    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_000498cc3e9a1ed938144538.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_a7d73c2490a9f1e434d199f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_24ab39184ad45db1fc37fab4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_3b99469de151074bb9a452c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.963379;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_43c7a544661bf8300c4bd558.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_9761a2805d40d4d3bcfaeac9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.032715;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_e07d9a1c46300e7498257f2b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_83e2df5e6196f4d869b0fd83.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;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_a245eeeaf234cf2747e30ade.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964860;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_43f0a17741a4cc4736f3eed0.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.131836;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_64aa3c9fc114afdafaed1948.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_e326a9d7e300ffca74410cc3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.970703;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_418ca627fd8e2f7d90495a6a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964863;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_a5c3d6626b6a71b565c575a8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.821000;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_ea869107f530b3eadf9d3cae.woff2')format("woff");}.fff{font-family:fff;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_355c802e948b133cb9e36294.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.037000;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_c7e4022aeba1b45a63324d68.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.812500;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_c27304e8351226b0f3f1a3b0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.692871;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_f444aa8cca6c3048b9fc3f08.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7b6e55026c9391a4fbfbcda6.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.005371;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_79b0dcce1a20b3f0fed0d4d6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_cbc88347577a92426d8351f9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_1f915aaacf5c231dc7ae6bd4.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.037000;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_d1ade7bcb9e65fce0a8a2052.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_5d36abe7c6bc0df2726661de.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_1f173a258deb409ab13a0a17.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.770020;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;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250397,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252089,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255317,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266914,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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.486000px;}
.v1{vertical-align:21.978000px;}
.ls10{letter-spacing:-5.724000px;}
.ls4{letter-spacing:-1.938000px;}
.ls3{letter-spacing:-1.632000px;}
.lsb{letter-spacing:-0.960000px;}
.ls8{letter-spacing:-0.918000px;}
.ls6{letter-spacing:-0.691200px;}
.ls9{letter-spacing:-0.600000px;}
.ls5{letter-spacing:-0.408000px;}
.lsf{letter-spacing:-0.283338px;}
.lse{letter-spacing:-0.240000px;}
.ls7{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.160276px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.lsc{letter-spacing:399.358374px;}
.lsd{letter-spacing:1210.637402px;}
.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;}
}
.ws7{word-spacing:-17.928000px;}
.wsab{word-spacing:-16.434000px;}
.ws5{word-spacing:-14.940000px;}
.ws69{word-spacing:-14.880000px;}
.ws2c{word-spacing:-14.700000px;}
.ws8{word-spacing:-14.520000px;}
.ws4e{word-spacing:-14.100000px;}
.ws6a{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.230000px;}
.ws9{word-spacing:-12.366000px;}
.wsd{word-spacing:-12.150000px;}
.wsc{word-spacing:-12.042000px;}
.wsa{word-spacing:-11.448000px;}
.wsb{word-spacing:-11.232000px;}
.wse{word-spacing:-10.992000px;}
.ws2b{word-spacing:-10.800000px;}
.ws4{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.wsb7{word-spacing:-7.524198px;}
.ws70{word-spacing:-3.780000px;}
.ws44{word-spacing:-3.120000px;}
.ws25{word-spacing:-3.000000px;}
.wsa8{word-spacing:-2.700000px;}
.ws8f{word-spacing:-2.640000px;}
.wsbe{word-spacing:-2.592000px;}
.ws52{word-spacing:-2.460000px;}
.ws23{word-spacing:-2.400000px;}
.ws6e{word-spacing:-2.340000px;}
.ws6f{word-spacing:-2.220000px;}
.ws4f{word-spacing:-1.998000px;}
.ws47{word-spacing:-1.980000px;}
.ws1d{word-spacing:-1.944000px;}
.ws7d{word-spacing:-1.860000px;}
.ws43{word-spacing:-1.680000px;}
.wsa6{word-spacing:-1.500000px;}
.wscb{word-spacing:-1.458000px;}
.ws8a{word-spacing:-1.440000px;}
.ws20{word-spacing:-1.404000px;}
.ws1f{word-spacing:-1.350000px;}
.ws53{word-spacing:-1.320000px;}
.wsa4{word-spacing:-1.200000px;}
.ws78{word-spacing:-1.188000px;}
.wsaf{word-spacing:-1.080000px;}
.ws24{word-spacing:-1.020000px;}
.ws66{word-spacing:-0.780000px;}
.ws7a{word-spacing:-0.660000px;}
.wsa5{word-spacing:-0.600000px;}
.ws55{word-spacing:-0.480000px;}
.ws1c{word-spacing:-0.432000px;}
.ws8e{word-spacing:-0.420000px;}
.ws92{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.216000px;}
.ws65{word-spacing:-0.180000px;}
.wscc{word-spacing:-0.162000px;}
.ws68{word-spacing:-0.054000px;}
.ws6d{word-spacing:-0.047335px;}
.wsf{word-spacing:0.000000px;}
.ws12{word-spacing:0.054000px;}
.ws22{word-spacing:0.060000px;}
.ws95{word-spacing:0.120000px;}
.ws83{word-spacing:0.162000px;}
.ws29{word-spacing:0.180000px;}
.ws46{word-spacing:0.240000px;}
.ws2{word-spacing:0.306000px;}
.ws3d{word-spacing:0.420000px;}
.ws7b{word-spacing:0.540000px;}
.ws79{word-spacing:0.594000px;}
.ws42{word-spacing:0.600000px;}
.wsa1{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.ws5a{word-spacing:0.720000px;}
.ws50{word-spacing:0.756000px;}
.ws7f{word-spacing:0.780000px;}
.ws2a{word-spacing:0.918000px;}
.ws63{word-spacing:0.960000px;}
.ws32{word-spacing:1.020000px;}
.wsa7{word-spacing:1.080000px;}
.wsc3{word-spacing:1.188000px;}
.ws72{word-spacing:1.200000px;}
.ws18{word-spacing:1.242000px;}
.ws84{word-spacing:1.260000px;}
.wsc7{word-spacing:1.296000px;}
.ws9f{word-spacing:1.320000px;}
.ws4c{word-spacing:1.380000px;}
.wsad{word-spacing:1.404000px;}
.ws99{word-spacing:1.440000px;}
.ws7c{word-spacing:1.500000px;}
.ws1b{word-spacing:1.512000px;}
.ws0{word-spacing:1.530000px;}
.ws3c{word-spacing:1.680000px;}
.ws21{word-spacing:1.782000px;}
.ws1{word-spacing:1.836000px;}
.ws59{word-spacing:1.920000px;}
.ws2f{word-spacing:1.980000px;}
.ws96{word-spacing:2.040000px;}
.ws7e{word-spacing:2.100000px;}
.ws2d{word-spacing:2.160000px;}
.wsae{word-spacing:2.214000px;}
.ws97{word-spacing:2.220000px;}
.ws48{word-spacing:2.340000px;}
.ws8d{word-spacing:2.460000px;}
.ws3b{word-spacing:2.520000px;}
.ws9d{word-spacing:2.580000px;}
.wsb2{word-spacing:2.592000px;}
.ws56{word-spacing:2.640000px;}
.ws77{word-spacing:2.760000px;}
.ws14{word-spacing:2.862000px;}
.ws4b{word-spacing:2.880000px;}
.ws39{word-spacing:3.000000px;}
.ws15{word-spacing:3.078000px;}
.ws80{word-spacing:3.120000px;}
.ws64{word-spacing:3.180000px;}
.ws19{word-spacing:3.186000px;}
.ws13{word-spacing:3.294000px;}
.ws28{word-spacing:3.300000px;}
.wsc1{word-spacing:3.348000px;}
.ws27{word-spacing:3.360000px;}
.ws3a{word-spacing:3.420000px;}
.ws26{word-spacing:3.480000px;}
.wsa9{word-spacing:3.510000px;}
.wsc5{word-spacing:3.618000px;}
.ws86{word-spacing:3.780000px;}
.wsb5{word-spacing:3.834000px;}
.wsb0{word-spacing:3.942000px;}
.ws9c{word-spacing:3.960000px;}
.wsa2{word-spacing:4.020000px;}
.ws8c{word-spacing:4.260000px;}
.ws91{word-spacing:4.320000px;}
.ws58{word-spacing:4.380000px;}
.ws34{word-spacing:4.440000px;}
.ws16{word-spacing:4.482000px;}
.ws35{word-spacing:4.560000px;}
.ws8b{word-spacing:4.800000px;}
.wsbd{word-spacing:4.806000px;}
.wsbc{word-spacing:4.860000px;}
.ws17{word-spacing:4.914000px;}
.ws40{word-spacing:4.980000px;}
.ws57{word-spacing:5.100000px;}
.ws9b{word-spacing:5.160000px;}
.wsca{word-spacing:5.184000px;}
.ws38{word-spacing:5.280000px;}
.wsc4{word-spacing:5.346000px;}
.wsc6{word-spacing:5.454000px;}
.ws9a{word-spacing:5.460000px;}
.ws81{word-spacing:5.640000px;}
.ws89{word-spacing:5.700000px;}
.ws1a{word-spacing:5.724000px;}
.ws41{word-spacing:5.940000px;}
.ws54{word-spacing:6.000000px;}
.ws82{word-spacing:6.048000px;}
.ws67{word-spacing:6.156000px;}
.ws3f{word-spacing:6.180000px;}
.wsc2{word-spacing:6.210000px;}
.ws94{word-spacing:6.240000px;}
.ws30{word-spacing:6.300000px;}
.ws31{word-spacing:6.360000px;}
.ws4a{word-spacing:6.480000px;}
.ws45{word-spacing:6.540000px;}
.ws87{word-spacing:6.600000px;}
.wsb9{word-spacing:6.642000px;}
.ws90{word-spacing:6.720000px;}
.ws1e{word-spacing:6.804000px;}
.ws36{word-spacing:6.840000px;}
.ws93{word-spacing:6.900000px;}
.ws3e{word-spacing:7.020000px;}
.ws76{word-spacing:7.080000px;}
.ws75{word-spacing:7.140000px;}
.wsb4{word-spacing:7.182000px;}
.wsb3{word-spacing:7.236000px;}
.ws9e{word-spacing:7.320000px;}
.ws71{word-spacing:7.380000px;}
.ws49{word-spacing:7.440000px;}
.ws85{word-spacing:7.500000px;}
.wsaa{word-spacing:7.506000px;}
.wscd{word-spacing:7.884000px;}
.ws33{word-spacing:7.920000px;}
.wsce{word-spacing:7.992000px;}
.ws98{word-spacing:8.400000px;}
.ws51{word-spacing:8.580000px;}
.wsbf{word-spacing:8.694000px;}
.ws74{word-spacing:8.700000px;}
.wsbb{word-spacing:8.802000px;}
.ws73{word-spacing:8.820000px;}
.wsba{word-spacing:8.910000px;}
.wsac{word-spacing:9.018000px;}
.wsa3{word-spacing:9.060000px;}
.ws88{word-spacing:9.780000px;}
.wsb8{word-spacing:9.882000px;}
.ws2e{word-spacing:10.500000px;}
.wsa0{word-spacing:13.080000px;}
.wsc9{word-spacing:13.662000px;}
.wsc8{word-spacing:13.824000px;}
.wsb6{word-spacing:14.202000px;}
.ws37{word-spacing:15.060000px;}
.wsc0{word-spacing:15.282000px;}
.wsb1{word-spacing:22.734000px;}
.ws5f{word-spacing:79.824000px;}
.ws5d{word-spacing:92.112000px;}
.ws5e{word-spacing:201.120000px;}
.ws60{word-spacing:212.976000px;}
.ws5c{word-spacing:230.400000px;}
.ws5b{word-spacing:338.592000px;}
.ws4d{word-spacing:353.835100px;}
.ws6c{word-spacing:371.232000px;}
.ws6b{word-spacing:549.854400px;}
.ws62{word-spacing:604.356234px;}
.ws61{word-spacing:1401.947552px;}
._17{margin-left:-659.106692px;}
._e{margin-left:-337.303838px;}
._10{margin-left:-333.654680px;}
._14{margin-left:-331.830101px;}
._f{margin-left:-320.517711px;}
._11{margin-left:-316.706368px;}
._15{margin-left:-310.827169px;}
._13{margin-left:-299.920241px;}
._12{margin-left:-298.906586px;}
._b{margin-left:-11.471400px;}
._56{margin-left:-8.591400px;}
._a{margin-left:-6.334200px;}
._5{margin-left:-5.028600px;}
._4{margin-left:-3.661800px;}
._1{margin-left:-2.182800px;}
._0{margin-left:-1.152600px;}
._2{width:1.254600px;}
._3{width:2.315400px;}
._7{width:3.925800px;}
._8{width:5.379000px;}
._9{width:6.502800px;}
._c{width:7.575000px;}
._53{width:9.288000px;}
._54{width:10.584000px;}
._49{width:17.802000px;}
._6{width:36.369600px;}
._26{width:37.776000px;}
._1a{width:40.896000px;}
._55{width:42.363000px;}
._2b{width:57.552000px;}
._39{width:91.728000px;}
._27{width:101.808000px;}
._1e{width:108.000000px;}
._46{width:119.568000px;}
._34{width:121.584000px;}
._1d{width:129.718800px;}
._42{width:136.966800px;}
._1c{width:153.648000px;}
._3a{width:155.760000px;}
._1b{width:156.838800px;}
._22{width:182.688000px;}
._45{width:184.608000px;}
._41{width:188.518800px;}
._2f{width:195.408000px;}
._25{width:200.976000px;}
._32{width:214.512000px;}
._3c{width:222.384000px;}
._2e{width:224.880000px;}
._2a{width:234.288000px;}
._48{width:239.808000px;}
._21{width:241.440000px;}
._24{width:252.432000px;}
._31{width:265.920000px;}
._52{width:270.624000px;}
._29{width:279.408000px;}
._3f{width:281.568000px;}
._20{width:292.896000px;}
._2d{width:294.480000px;}
._4b{width:297.600000px;}
._44{width:299.184000px;}
._36{width:307.968000px;}
._37{width:315.840000px;}
._50{width:338.064000px;}
._40{width:347.568600px;}
._43{width:351.024000px;}
._47{width:359.472000px;}
._4d{width:488.592600px;}
._4c{width:534.742800px;}
._18{width:598.869779px;}
._4a{width:604.512000px;}
._4e{width:614.688000px;}
._28{width:656.304000px;}
._51{width:681.936000px;}
._4f{width:698.784000px;}
._23{width:778.320000px;}
._3b{width:784.800000px;}
._3d{width:831.552000px;}
._38{width:846.166800px;}
._2c{width:861.168000px;}
._30{width:891.757800px;}
._33{width:896.592000px;}
._3e{width:899.472000px;}
._1f{width:915.360000px;}
._35{width:946.896000px;}
._19{width:1228.955322px;}
._d{width:2110.201442px;}
._16{width:2112.416474px;}
.fc9{color:rgb(16,15,13);}
.fc8{color:transparent;}
.fc7{color:rgb(237,31,36);}
.fc6{color:rgb(17,15,13);}
.fc5{color:rgb(212,26,150);}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:26.712600px;}
.fs15{font-size:27.775800px;}
.fs18{font-size:31.482000px;}
.fs14{font-size:34.719600px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:40.546200px;}
.fs16{font-size:41.663400px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs9{font-size:44.599800px;}
.fse{font-size:46.963800px;}
.fs11{font-size:47.335200px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsf{font-size:54.791400px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs10{font-size:70.446000px;}
.fs8{font-size:72.000000px;}
.fs12{font-size:82.836000px;}
.fsc{font-size:84.543000px;}
.fs17{font-size:86.798400px;}
.fs13{font-size:94.669800px;}
.fs1{font-size:102.000000px;}
.fsd{font-size:323.076600px;}
.y7c{bottom:-0.106050px;}
.yce{bottom:-0.000450px;}
.y0{bottom:0.000000px;}
.yac{bottom:3.502350px;}
.y77{bottom:8.206800px;}
.y1{bottom:68.124750px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.040050px;}
.y154{bottom:112.928700px;}
.y12e{bottom:113.066850px;}
.y6f{bottom:113.078700px;}
.y127{bottom:113.078850px;}
.ybb{bottom:117.112950px;}
.ya3{bottom:117.137400px;}
.yb{bottom:117.205050px;}
.y2a{bottom:117.212550px;}
.ya{bottom:131.601450px;}
.y183{bottom:133.922850px;}
.y153{bottom:133.934700px;}
.y12d{bottom:134.072850px;}
.y6e{bottom:134.078700px;}
.y126{bottom:134.078850px;}
.yba{bottom:138.016950px;}
.ya2{bottom:138.041400px;}
.y29{bottom:138.212550px;}
.y9{bottom:145.997850px;}
.y182{bottom:154.928850px;}
.y152{bottom:154.940700px;}
.y6d{bottom:155.078700px;}
.y125{bottom:155.078850px;}
.yb9{bottom:158.920950px;}
.ya1{bottom:158.945400px;}
.y28{bottom:159.212550px;}
.y8{bottom:160.397850px;}
.y181{bottom:175.934850px;}
.y151{bottom:175.946700px;}
.y6c{bottom:176.078700px;}
.y124{bottom:176.078850px;}
.yb8{bottom:179.824950px;}
.ya0{bottom:179.849400px;}
.y27{bottom:180.212550px;}
.y12c{bottom:181.529400px;}
.y180{bottom:196.940850px;}
.y150{bottom:196.952700px;}
.y6b{bottom:197.078700px;}
.y123{bottom:197.078850px;}
.yb7{bottom:200.728950px;}
.y9f{bottom:200.753400px;}
.y26{bottom:201.212550px;}
.y3b{bottom:203.463300px;}
.y17f{bottom:217.946850px;}
.y14f{bottom:217.958700px;}
.y6a{bottom:218.078700px;}
.y122{bottom:218.078850px;}
.y3a{bottom:221.458800px;}
.yb6{bottom:221.632950px;}
.y9e{bottom:221.657400px;}
.y25{bottom:222.212550px;}
.yaa{bottom:237.616950px;}
.y17e{bottom:238.952850px;}
.y14e{bottom:238.964700px;}
.y69{bottom:239.078700px;}
.y121{bottom:239.078850px;}
.y39{bottom:239.454300px;}
.yb5{bottom:242.536950px;}
.y9d{bottom:242.561400px;}
.y24{bottom:243.212550px;}
.y12b{bottom:244.937100px;}
.y38{bottom:257.449800px;}
.y17d{bottom:259.958850px;}
.y14d{bottom:259.970700px;}
.y68{bottom:260.078700px;}
.y120{bottom:260.078850px;}
.y9c{bottom:263.465400px;}
.y84{bottom:274.440900px;}
.y12a{bottom:274.441050px;}
.yb4{bottom:274.719750px;}
.y37{bottom:275.445300px;}
.y23{bottom:276.796350px;}
.y17c{bottom:280.964850px;}
.y14c{bottom:280.976700px;}
.y67{bottom:281.078700px;}
.y11f{bottom:281.078850px;}
.y9b{bottom:284.369400px;}
.y36{bottom:293.440800px;}
.y17b{bottom:301.970850px;}
.y14b{bottom:301.982700px;}
.y66{bottom:302.078700px;}
.y11e{bottom:302.078850px;}
.y9a{bottom:305.273400px;}
.y35{bottom:311.436300px;}
.y17a{bottom:322.976850px;}
.y14a{bottom:322.988700px;}
.y65{bottom:323.078700px;}
.y11d{bottom:323.078850px;}
.y99{bottom:326.177400px;}
.ybe{bottom:329.181000px;}
.y34{bottom:329.431800px;}
.y179{bottom:343.982850px;}
.y149{bottom:343.994700px;}
.y64{bottom:344.078700px;}
.y11c{bottom:344.078850px;}
.y98{bottom:347.081400px;}
.y33{bottom:347.427300px;}
.ybd{bottom:348.985500px;}
.y178{bottom:364.988850px;}
.y148{bottom:365.000700px;}
.y63{bottom:365.078700px;}
.y11b{bottom:365.078850px;}
.y22{bottom:365.823450px;}
.y97{bottom:367.985400px;}
.ybc{bottom:368.790000px;}
.y32{bottom:382.432800px;}
.y21{bottom:385.627950px;}
.y177{bottom:385.994850px;}
.y147{bottom:386.006700px;}
.y62{bottom:386.078700px;}
.y11a{bottom:386.078850px;}
.y96{bottom:388.889400px;}
.ybf{bottom:393.645600px;}
.yc8{bottom:397.830750px;}
.y31{bottom:400.428300px;}
.y176{bottom:407.000850px;}
.y146{bottom:407.012700px;}
.y61{bottom:407.078700px;}
.y119{bottom:407.078850px;}
.y95{bottom:409.793400px;}
.y30{bottom:418.423800px;}
.y20{bottom:426.606750px;}
.y175{bottom:428.006850px;}
.y145{bottom:428.018700px;}
.y60{bottom:428.078700px;}
.y118{bottom:428.078850px;}
.y94{bottom:430.697400px;}
.ycc{bottom:435.996150px;}
.y1f{bottom:446.411250px;}
.y174{bottom:449.012850px;}
.y144{bottom:449.024700px;}
.y5f{bottom:449.078700px;}
.y117{bottom:449.078850px;}
.y93{bottom:451.601400px;}
.y2f{bottom:453.429300px;}
.ycb{bottom:455.800650px;}
.y129{bottom:463.441050px;}
.y1e{bottom:466.215750px;}
.y173{bottom:470.018850px;}
.y143{bottom:470.030700px;}
.y5e{bottom:470.078700px;}
.y116{bottom:470.078850px;}
.y2e{bottom:471.429300px;}
.yc3{bottom:471.492002px;}
.y92{bottom:472.505400px;}
.yca{bottom:475.605150px;}
.y1d{bottom:486.020250px;}
.y2d{bottom:489.429300px;}
.y172{bottom:491.024850px;}
.y142{bottom:491.036700px;}
.y5d{bottom:491.078700px;}
.y115{bottom:491.078850px;}
.y91{bottom:493.409400px;}
.yc0{bottom:494.682150px;}
.yc9{bottom:495.409650px;}
.y1c{bottom:505.824750px;}
.y2c{bottom:507.433800px;}
.y171{bottom:512.030850px;}
.y141{bottom:512.042700px;}
.y5c{bottom:512.078700px;}
.y114{bottom:512.078850px;}
.y90{bottom:514.313400px;}
.ycd{bottom:516.165000px;}
.y2b{bottom:525.429300px;}
.y1b{bottom:525.629250px;}
.y170{bottom:533.036850px;}
.y140{bottom:533.048700px;}
.y5b{bottom:533.078700px;}
.y113{bottom:533.078850px;}
.y8e{bottom:533.513400px;}
.yea{bottom:538.254900px;}
.y1a{bottom:545.433750px;}
.yc7{bottom:549.014542px;}
.y8f{bottom:552.713400px;}
.ydd{bottom:553.053900px;}
.y16f{bottom:554.042850px;}
.y13f{bottom:554.054700px;}
.y5a{bottom:554.078700px;}
.y112{bottom:554.078850px;}
.yc5{bottom:554.749584px;}
.y19{bottom:565.238250px;}
.ye8{bottom:568.674300px;}
.y16e{bottom:575.048850px;}
.y13e{bottom:575.060700px;}
.y59{bottom:575.078700px;}
.y111{bottom:575.078850px;}
.yff{bottom:581.055750px;}
.y8d{bottom:583.200000px;}
.y18{bottom:585.042750px;}
.yfe{bottom:592.704600px;}
.y101{bottom:592.707698px;}
.y16d{bottom:596.054850px;}
.y13d{bottom:596.066700px;}
.y58{bottom:596.078700px;}
.y110{bottom:596.078850px;}
.y83{bottom:600.726900px;}
.y100{bottom:604.345758px;}
.y17{bottom:604.847250px;}
.yc1{bottom:605.963550px;}
.y102{bottom:615.997706px;}
.yf7{bottom:617.030942px;}
.y16c{bottom:617.060850px;}
.y13c{bottom:617.072700px;}
.y10f{bottom:617.078850px;}
.y82{bottom:620.531400px;}
.y16{bottom:624.651750px;}
.ye4{bottom:629.228100px;}
.y57{bottom:631.440900px;}
.y16b{bottom:638.066850px;}
.y13b{bottom:638.078700px;}
.y10e{bottom:638.078850px;}
.ya6{bottom:638.234550px;}
.y81{bottom:640.335900px;}
.yf4{bottom:644.027100px;}
.y15{bottom:644.456250px;}
.ya5{bottom:658.039050px;}
.ycf{bottom:658.827000px;}
.y16a{bottom:659.072850px;}
.y10d{bottom:659.078850px;}
.y14{bottom:664.260750px;}
.yf5{bottom:666.145500px;}
.y72{bottom:666.245850px;}
.y13a{bottom:673.440900px;}
.ye9{bottom:673.626000px;}
.ya4{bottom:677.843550px;}
.y169{bottom:679.952850px;}
.y56{bottom:680.078700px;}
.y10c{bottom:680.078850px;}
.y76{bottom:680.610000px;}
.yc2{bottom:682.749000px;}
.y13{bottom:684.065250px;}
.yd6{bottom:688.425000px;}
.y78{bottom:688.816800px;}
.ya9{bottom:698.598000px;}
.y168{bottom:700.958850px;}
.y55{bottom:701.078700px;}
.y10b{bottom:701.078850px;}
.yef{bottom:703.224000px;}
.y12{bottom:703.869750px;}
.y75{bottom:709.024950px;}
.ydc{bottom:718.023000px;}
.y167{bottom:721.964850px;}
.y139{bottom:722.072700px;}
.y54{bottom:722.078700px;}
.y10a{bottom:722.078850px;}
.y11{bottom:723.674250px;}
.ya7{bottom:724.304850px;}
.y7a{bottom:727.345825px;}
.y74{bottom:729.521100px;}
.ye3{bottom:732.831300px;}
.y166{bottom:742.970850px;}
.y53{bottom:743.078700px;}
.y109{bottom:743.078850px;}
.y10{bottom:743.478750px;}
.yad{bottom:745.878300px;}
.yde{bottom:747.630300px;}
.y73{bottom:748.293600px;}
.y71{bottom:749.905950px;}
.ya8{bottom:757.078050px;}
.yd7{bottom:762.429300px;}
.yf{bottom:763.283250px;}
.y165{bottom:763.976850px;}
.y52{bottom:764.078700px;}
.y108{bottom:764.078850px;}
.y7d{bottom:769.359600px;}
.y138{bottom:769.529250px;}
.yc4{bottom:772.691100px;}
.yd4{bottom:777.228300px;}
.ye{bottom:783.087750px;}
.y164{bottom:784.982850px;}
.y51{bottom:785.078700px;}
.y107{bottom:785.078850px;}
.yf8{bottom:789.067303px;}
.yc6{bottom:791.463900px;}
.yd5{bottom:792.028050px;}
.yf6{bottom:798.990207px;}
.y163{bottom:805.988850px;}
.y137{bottom:806.072700px;}
.y50{bottom:806.078700px;}
.y106{bottom:806.078850px;}
.yec{bottom:806.827050px;}
.yd{bottom:814.185300px;}
.y128{bottom:820.441050px;}
.yee{bottom:821.626050px;}
.y80{bottom:822.444712px;}
.y162{bottom:826.994850px;}
.y136{bottom:827.072700px;}
.y4f{bottom:827.078700px;}
.y105{bottom:827.078850px;}
.y104{bottom:830.371835px;}
.yf9{bottom:834.925149px;}
.ye2{bottom:836.425500px;}
.y161{bottom:848.000850px;}
.y4e{bottom:848.078700px;}
.yb3{bottom:848.078850px;}
.yd3{bottom:851.232900px;}
.yab{bottom:853.300650px;}
.yf3{bottom:866.032350px;}
.y160{bottom:869.006850px;}
.y4d{bottom:869.078700px;}
.yb2{bottom:869.078850px;}
.y79{bottom:869.103300px;}
.y135{bottom:874.529250px;}
.y7f{bottom:879.483079px;}
.ye6{bottom:880.831350px;}
.yfa{bottom:880.831602px;}
.y15f{bottom:890.012850px;}
.y4c{bottom:890.078700px;}
.yb1{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.yd8{bottom:895.630800px;}
.y70{bottom:901.545900px;}
.yf2{bottom:910.429800px;}
.y15e{bottom:911.018850px;}
.y134{bottom:911.066850px;}
.y4b{bottom:911.078700px;}
.yb0{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.yda{bottom:925.228800px;}
.y15d{bottom:932.024850px;}
.y133{bottom:932.072850px;}
.y4a{bottom:932.078700px;}
.yaf{bottom:932.078850px;}
.yfb{bottom:933.077882px;}
.ye7{bottom:940.028250px;}
.y5{bottom:946.474800px;}
.y15c{bottom:953.030850px;}
.y49{bottom:953.078700px;}
.yae{bottom:953.078850px;}
.yeb{bottom:954.827250px;}
.yfd{bottom:965.221350px;}
.ye5{bottom:969.634950px;}
.y15b{bottom:974.036850px;}
.y48{bottom:974.078700px;}
.y8c{bottom:974.078850px;}
.y132{bottom:979.529250px;}
.y4{bottom:983.288550px;}
.yd9{bottom:984.434400px;}
.y15a{bottom:995.042850px;}
.y47{bottom:995.078700px;}
.y8b{bottom:995.078850px;}
.ye1{bottom:999.233400px;}
.y103{bottom:1008.568950px;}
.yd0{bottom:1014.032400px;}
.y159{bottom:1016.048850px;}
.y131{bottom:1016.072850px;}
.y46{bottom:1016.078700px;}
.y8a{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yfc{bottom:1018.863440px;}
.y7b{bottom:1026.939000px;}
.yed{bottom:1028.831850px;}
.y158{bottom:1037.054850px;}
.y45{bottom:1037.078700px;}
.y89{bottom:1037.078850px;}
.yf1{bottom:1043.630700px;}
.y7e{bottom:1045.854274px;}
.y2{bottom:1049.282550px;}
.y157{bottom:1058.060850px;}
.y44{bottom:1058.078700px;}
.y88{bottom:1058.078850px;}
.ye0{bottom:1058.430300px;}
.y130{bottom:1063.529250px;}
.ydf{bottom:1073.229150px;}
.y156{bottom:1079.066850px;}
.y43{bottom:1079.078700px;}
.y87{bottom:1079.078850px;}
.yf0{bottom:1088.037150px;}
.y155{bottom:1100.072850px;}
.y42{bottom:1100.078700px;}
.y86{bottom:1100.078850px;}
.yd2{bottom:1102.836150px;}
.yc{bottom:1109.815500px;}
.yd1{bottom:1117.635600px;}
.y41{bottom:1121.078700px;}
.y85{bottom:1121.078850px;}
.y12f{bottom:1125.451800px;}
.ydb{bottom:1132.434600px;}
.y3d{bottom:1159.189500px;}
.y3c{bottom:1178.689500px;}
.y40{bottom:1178.692050px;}
.h14{height:14.161500px;}
.h15{height:18.573605px;}
.h28{height:19.285736px;}
.h27{height:19.299299px;}
.h26{height:24.124019px;}
.h12{height:28.172482px;}
.h2a{height:28.928396px;}
.h29{height:28.948739px;}
.h11{height:31.219860px;}
.h1c{height:32.631586px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h13{height:35.680656px;}
.h19{height:36.000000px;}
.h1e{height:38.070392px;}
.h1a{height:38.226562px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:40.500000px;}
.h21{height:41.654976px;}
.hf{height:43.057617px;}
.h1b{height:43.312500px;}
.ha{height:43.321289px;}
.h2d{height:43.345289px;}
.h9{height:45.615234px;}
.hd{height:48.134766px;}
.hb{height:48.726562px;}
.h1f{height:48.947587px;}
.h2e{height:49.230563px;}
.h20{height:49.863385px;}
.h2c{height:50.176758px;}
.h4{height:52.948242px;}
.he{height:54.140625px;}
.hc{height:54.738281px;}
.h22{height:57.556459px;}
.h16{height:58.577401px;}
.h2b{height:60.309630px;}
.h17{height:64.566000px;}
.h24{height:65.778870px;}
.h3{height:81.231445px;}
.h23{height:87.647594px;}
.h18{height:215.169016px;}
.h1d{height:251.716500px;}
.h25{height:625.914000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:52.458000px;}
.w2{width:225.021000px;}
.w5{width:660.970500px;}
.w4{width:710.929500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:15.215550px;}
.x2{left:73.984200px;}
.xa{left:107.063850px;}
.xc{left:108.289650px;}
.x19{left:112.226850px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x23{left:126.417600px;}
.x25{left:128.949450px;}
.x11{left:146.347500px;}
.x12{left:149.734800px;}
.x2a{left:155.873100px;}
.xe{left:158.227800px;}
.x14{left:161.289000px;}
.xf{left:166.050750px;}
.x10{left:176.793750px;}
.x28{left:199.507050px;}
.x15{left:222.530850px;}
.x2c{left:253.554300px;}
.x22{left:255.691200px;}
.x2e{left:287.551879px;}
.x4{left:300.189000px;}
.x21{left:304.444200px;}
.x2f{left:308.328178px;}
.xb{left:317.199000px;}
.x30{left:348.026740px;}
.x32{left:363.595076px;}
.x31{left:365.539382px;}
.x2d{left:378.566232px;}
.x3{left:379.689900px;}
.x16{left:381.590850px;}
.x20{left:386.836200px;}
.x17{left:396.938850px;}
.x1b{left:398.694600px;}
.xd{left:405.690900px;}
.x18{left:413.822850px;}
.x1e{left:434.614350px;}
.x2b{left:446.080650px;}
.x26{left:448.237208px;}
.x13{left:478.584450px;}
.x27{left:500.234400px;}
.x29{left:518.023592px;}
.x1d{left:571.923300px;}
.x24{left:616.524000px;}
.x34{left:639.409200px;}
.x9{left:648.907800px;}
.x8{left:669.715800px;}
.x33{left:698.953950px;}
.x1f{left:750.648450px;}
.x1a{left:771.302700px;}
.x1{left:801.157500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.432000pt;}
.v1{vertical-align:19.536000pt;}
.ls10{letter-spacing:-5.088000pt;}
.ls4{letter-spacing:-1.722667pt;}
.ls3{letter-spacing:-1.450667pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls8{letter-spacing:-0.816000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls9{letter-spacing:-0.533333pt;}
.ls5{letter-spacing:-0.362667pt;}
.lsf{letter-spacing:-0.251856pt;}
.lse{letter-spacing:-0.213333pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.142467pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.lsc{letter-spacing:354.985221pt;}
.lsd{letter-spacing:1076.122135pt;}
.ws7{word-spacing:-15.936000pt;}
.wsab{word-spacing:-14.608000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws69{word-spacing:-13.226667pt;}
.ws2c{word-spacing:-13.066667pt;}
.ws8{word-spacing:-12.906667pt;}
.ws4e{word-spacing:-12.533333pt;}
.ws6a{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.760000pt;}
.ws9{word-spacing:-10.992000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsc{word-spacing:-10.704000pt;}
.wsa{word-spacing:-10.176000pt;}
.wsb{word-spacing:-9.984000pt;}
.wse{word-spacing:-9.770667pt;}
.ws2b{word-spacing:-9.600000pt;}
.ws4{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.wsb7{word-spacing:-6.688176pt;}
.ws70{word-spacing:-3.360000pt;}
.ws44{word-spacing:-2.773333pt;}
.ws25{word-spacing:-2.666667pt;}
.wsa8{word-spacing:-2.400000pt;}
.ws8f{word-spacing:-2.346667pt;}
.wsbe{word-spacing:-2.304000pt;}
.ws52{word-spacing:-2.186667pt;}
.ws23{word-spacing:-2.133333pt;}
.ws6e{word-spacing:-2.080000pt;}
.ws6f{word-spacing:-1.973333pt;}
.ws4f{word-spacing:-1.776000pt;}
.ws47{word-spacing:-1.760000pt;}
.ws1d{word-spacing:-1.728000pt;}
.ws7d{word-spacing:-1.653333pt;}
.ws43{word-spacing:-1.493333pt;}
.wsa6{word-spacing:-1.333333pt;}
.wscb{word-spacing:-1.296000pt;}
.ws8a{word-spacing:-1.280000pt;}
.ws20{word-spacing:-1.248000pt;}
.ws1f{word-spacing:-1.200000pt;}
.ws53{word-spacing:-1.173333pt;}
.wsa4{word-spacing:-1.066667pt;}
.ws78{word-spacing:-1.056000pt;}
.wsaf{word-spacing:-0.960000pt;}
.ws24{word-spacing:-0.906667pt;}
.ws66{word-spacing:-0.693333pt;}
.ws7a{word-spacing:-0.586667pt;}
.wsa5{word-spacing:-0.533333pt;}
.ws55{word-spacing:-0.426667pt;}
.ws1c{word-spacing:-0.384000pt;}
.ws8e{word-spacing:-0.373333pt;}
.ws92{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.192000pt;}
.ws65{word-spacing:-0.160000pt;}
.wscc{word-spacing:-0.144000pt;}
.ws68{word-spacing:-0.048000pt;}
.ws6d{word-spacing:-0.042076pt;}
.wsf{word-spacing:0.000000pt;}
.ws12{word-spacing:0.048000pt;}
.ws22{word-spacing:0.053333pt;}
.ws95{word-spacing:0.106667pt;}
.ws83{word-spacing:0.144000pt;}
.ws29{word-spacing:0.160000pt;}
.ws46{word-spacing:0.213333pt;}
.ws2{word-spacing:0.272000pt;}
.ws3d{word-spacing:0.373333pt;}
.ws7b{word-spacing:0.480000pt;}
.ws79{word-spacing:0.528000pt;}
.ws42{word-spacing:0.533333pt;}
.wsa1{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.ws5a{word-spacing:0.640000pt;}
.ws50{word-spacing:0.672000pt;}
.ws7f{word-spacing:0.693333pt;}
.ws2a{word-spacing:0.816000pt;}
.ws63{word-spacing:0.853333pt;}
.ws32{word-spacing:0.906667pt;}
.wsa7{word-spacing:0.960000pt;}
.wsc3{word-spacing:1.056000pt;}
.ws72{word-spacing:1.066667pt;}
.ws18{word-spacing:1.104000pt;}
.ws84{word-spacing:1.120000pt;}
.wsc7{word-spacing:1.152000pt;}
.ws9f{word-spacing:1.173333pt;}
.ws4c{word-spacing:1.226667pt;}
.wsad{word-spacing:1.248000pt;}
.ws99{word-spacing:1.280000pt;}
.ws7c{word-spacing:1.333333pt;}
.ws1b{word-spacing:1.344000pt;}
.ws0{word-spacing:1.360000pt;}
.ws3c{word-spacing:1.493333pt;}
.ws21{word-spacing:1.584000pt;}
.ws1{word-spacing:1.632000pt;}
.ws59{word-spacing:1.706667pt;}
.ws2f{word-spacing:1.760000pt;}
.ws96{word-spacing:1.813333pt;}
.ws7e{word-spacing:1.866667pt;}
.ws2d{word-spacing:1.920000pt;}
.wsae{word-spacing:1.968000pt;}
.ws97{word-spacing:1.973333pt;}
.ws48{word-spacing:2.080000pt;}
.ws8d{word-spacing:2.186667pt;}
.ws3b{word-spacing:2.240000pt;}
.ws9d{word-spacing:2.293333pt;}
.wsb2{word-spacing:2.304000pt;}
.ws56{word-spacing:2.346667pt;}
.ws77{word-spacing:2.453333pt;}
.ws14{word-spacing:2.544000pt;}
.ws4b{word-spacing:2.560000pt;}
.ws39{word-spacing:2.666667pt;}
.ws15{word-spacing:2.736000pt;}
.ws80{word-spacing:2.773333pt;}
.ws64{word-spacing:2.826667pt;}
.ws19{word-spacing:2.832000pt;}
.ws13{word-spacing:2.928000pt;}
.ws28{word-spacing:2.933333pt;}
.wsc1{word-spacing:2.976000pt;}
.ws27{word-spacing:2.986667pt;}
.ws3a{word-spacing:3.040000pt;}
.ws26{word-spacing:3.093333pt;}
.wsa9{word-spacing:3.120000pt;}
.wsc5{word-spacing:3.216000pt;}
.ws86{word-spacing:3.360000pt;}
.wsb5{word-spacing:3.408000pt;}
.wsb0{word-spacing:3.504000pt;}
.ws9c{word-spacing:3.520000pt;}
.wsa2{word-spacing:3.573333pt;}
.ws8c{word-spacing:3.786667pt;}
.ws91{word-spacing:3.840000pt;}
.ws58{word-spacing:3.893333pt;}
.ws34{word-spacing:3.946667pt;}
.ws16{word-spacing:3.984000pt;}
.ws35{word-spacing:4.053333pt;}
.ws8b{word-spacing:4.266667pt;}
.wsbd{word-spacing:4.272000pt;}
.wsbc{word-spacing:4.320000pt;}
.ws17{word-spacing:4.368000pt;}
.ws40{word-spacing:4.426667pt;}
.ws57{word-spacing:4.533333pt;}
.ws9b{word-spacing:4.586667pt;}
.wsca{word-spacing:4.608000pt;}
.ws38{word-spacing:4.693333pt;}
.wsc4{word-spacing:4.752000pt;}
.wsc6{word-spacing:4.848000pt;}
.ws9a{word-spacing:4.853333pt;}
.ws81{word-spacing:5.013333pt;}
.ws89{word-spacing:5.066667pt;}
.ws1a{word-spacing:5.088000pt;}
.ws41{word-spacing:5.280000pt;}
.ws54{word-spacing:5.333333pt;}
.ws82{word-spacing:5.376000pt;}
.ws67{word-spacing:5.472000pt;}
.ws3f{word-spacing:5.493333pt;}
.wsc2{word-spacing:5.520000pt;}
.ws94{word-spacing:5.546667pt;}
.ws30{word-spacing:5.600000pt;}
.ws31{word-spacing:5.653333pt;}
.ws4a{word-spacing:5.760000pt;}
.ws45{word-spacing:5.813333pt;}
.ws87{word-spacing:5.866667pt;}
.wsb9{word-spacing:5.904000pt;}
.ws90{word-spacing:5.973333pt;}
.ws1e{word-spacing:6.048000pt;}
.ws36{word-spacing:6.080000pt;}
.ws93{word-spacing:6.133333pt;}
.ws3e{word-spacing:6.240000pt;}
.ws76{word-spacing:6.293333pt;}
.ws75{word-spacing:6.346667pt;}
.wsb4{word-spacing:6.384000pt;}
.wsb3{word-spacing:6.432000pt;}
.ws9e{word-spacing:6.506667pt;}
.ws71{word-spacing:6.560000pt;}
.ws49{word-spacing:6.613333pt;}
.ws85{word-spacing:6.666667pt;}
.wsaa{word-spacing:6.672000pt;}
.wscd{word-spacing:7.008000pt;}
.ws33{word-spacing:7.040000pt;}
.wsce{word-spacing:7.104000pt;}
.ws98{word-spacing:7.466667pt;}
.ws51{word-spacing:7.626667pt;}
.wsbf{word-spacing:7.728000pt;}
.ws74{word-spacing:7.733333pt;}
.wsbb{word-spacing:7.824000pt;}
.ws73{word-spacing:7.840000pt;}
.wsba{word-spacing:7.920000pt;}
.wsac{word-spacing:8.016000pt;}
.wsa3{word-spacing:8.053333pt;}
.ws88{word-spacing:8.693333pt;}
.wsb8{word-spacing:8.784000pt;}
.ws2e{word-spacing:9.333333pt;}
.wsa0{word-spacing:11.626667pt;}
.wsc9{word-spacing:12.144000pt;}
.wsc8{word-spacing:12.288000pt;}
.wsb6{word-spacing:12.624000pt;}
.ws37{word-spacing:13.386667pt;}
.wsc0{word-spacing:13.584000pt;}
.wsb1{word-spacing:20.208000pt;}
.ws5f{word-spacing:70.954667pt;}
.ws5d{word-spacing:81.877333pt;}
.ws5e{word-spacing:178.773333pt;}
.ws60{word-spacing:189.312000pt;}
.ws5c{word-spacing:204.800000pt;}
.ws5b{word-spacing:300.970667pt;}
.ws4d{word-spacing:314.520089pt;}
.ws6c{word-spacing:329.984000pt;}
.ws6b{word-spacing:488.759467pt;}
.ws62{word-spacing:537.205541pt;}
.ws61{word-spacing:1246.175602pt;}
._17{margin-left:-585.872615pt;}
._e{margin-left:-299.825634pt;}
._10{margin-left:-296.581938pt;}
._14{margin-left:-294.960090pt;}
._f{margin-left:-284.904632pt;}
._11{margin-left:-281.516772pt;}
._15{margin-left:-276.290817pt;}
._13{margin-left:-266.595770pt;}
._12{margin-left:-265.694743pt;}
._b{margin-left:-10.196800pt;}
._56{margin-left:-7.636800pt;}
._a{margin-left:-5.630400pt;}
._5{margin-left:-4.469867pt;}
._4{margin-left:-3.254933pt;}
._1{margin-left:-1.940267pt;}
._0{margin-left:-1.024533pt;}
._2{width:1.115200pt;}
._3{width:2.058133pt;}
._7{width:3.489600pt;}
._8{width:4.781333pt;}
._9{width:5.780267pt;}
._c{width:6.733333pt;}
._53{width:8.256000pt;}
._54{width:9.408000pt;}
._49{width:15.824000pt;}
._6{width:32.328533pt;}
._26{width:33.578667pt;}
._1a{width:36.352000pt;}
._55{width:37.656000pt;}
._2b{width:51.157333pt;}
._39{width:81.536000pt;}
._27{width:90.496000pt;}
._1e{width:96.000000pt;}
._46{width:106.282667pt;}
._34{width:108.074667pt;}
._1d{width:115.305600pt;}
._42{width:121.748267pt;}
._1c{width:136.576000pt;}
._3a{width:138.453333pt;}
._1b{width:139.412267pt;}
._22{width:162.389333pt;}
._45{width:164.096000pt;}
._41{width:167.572267pt;}
._2f{width:173.696000pt;}
._25{width:178.645333pt;}
._32{width:190.677333pt;}
._3c{width:197.674667pt;}
._2e{width:199.893333pt;}
._2a{width:208.256000pt;}
._48{width:213.162667pt;}
._21{width:214.613333pt;}
._24{width:224.384000pt;}
._31{width:236.373333pt;}
._52{width:240.554667pt;}
._29{width:248.362667pt;}
._3f{width:250.282667pt;}
._20{width:260.352000pt;}
._2d{width:261.760000pt;}
._4b{width:264.533333pt;}
._44{width:265.941333pt;}
._36{width:273.749333pt;}
._37{width:280.746667pt;}
._50{width:300.501333pt;}
._40{width:308.949867pt;}
._43{width:312.021333pt;}
._47{width:319.530667pt;}
._4d{width:434.304533pt;}
._4c{width:475.326933pt;}
._18{width:532.328693pt;}
._4a{width:537.344000pt;}
._4e{width:546.389333pt;}
._28{width:583.381333pt;}
._51{width:606.165333pt;}
._4f{width:621.141333pt;}
._23{width:691.840000pt;}
._3b{width:697.600000pt;}
._3d{width:739.157333pt;}
._38{width:752.148267pt;}
._2c{width:765.482667pt;}
._30{width:792.673600pt;}
._33{width:796.970667pt;}
._3e{width:799.530667pt;}
._1f{width:813.653333pt;}
._35{width:841.685333pt;}
._19{width:1092.404731pt;}
._d{width:1875.734615pt;}
._16{width:1877.703532pt;}
.fsb{font-size:23.744533pt;}
.fs15{font-size:24.689600pt;}
.fs18{font-size:27.984000pt;}
.fs14{font-size:30.861867pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:36.041067pt;}
.fs16{font-size:37.034133pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs9{font-size:39.644267pt;}
.fse{font-size:41.745600pt;}
.fs11{font-size:42.075733pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsf{font-size:48.703467pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs10{font-size:62.618667pt;}
.fs8{font-size:64.000000pt;}
.fs12{font-size:73.632000pt;}
.fsc{font-size:75.149333pt;}
.fs17{font-size:77.154133pt;}
.fs13{font-size:84.150933pt;}
.fs1{font-size:90.666667pt;}
.fsd{font-size:287.179200pt;}
.y7c{bottom:-0.094267pt;}
.yce{bottom:-0.000400pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:3.113200pt;}
.y77{bottom:7.294933pt;}
.y1{bottom:60.555333pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.702267pt;}
.y154{bottom:100.381067pt;}
.y12e{bottom:100.503867pt;}
.y6f{bottom:100.514400pt;}
.y127{bottom:100.514533pt;}
.ybb{bottom:104.100400pt;}
.ya3{bottom:104.122133pt;}
.yb{bottom:104.182267pt;}
.y2a{bottom:104.188933pt;}
.ya{bottom:116.979067pt;}
.y183{bottom:119.042533pt;}
.y153{bottom:119.053067pt;}
.y12d{bottom:119.175867pt;}
.y6e{bottom:119.181067pt;}
.y126{bottom:119.181200pt;}
.yba{bottom:122.681733pt;}
.ya2{bottom:122.703467pt;}
.y29{bottom:122.855600pt;}
.y9{bottom:129.775867pt;}
.y182{bottom:137.714533pt;}
.y152{bottom:137.725067pt;}
.y6d{bottom:137.847733pt;}
.y125{bottom:137.847867pt;}
.yb9{bottom:141.263067pt;}
.ya1{bottom:141.284800pt;}
.y28{bottom:141.522267pt;}
.y8{bottom:142.575867pt;}
.y181{bottom:156.386533pt;}
.y151{bottom:156.397067pt;}
.y6c{bottom:156.514400pt;}
.y124{bottom:156.514533pt;}
.yb8{bottom:159.844400pt;}
.ya0{bottom:159.866133pt;}
.y27{bottom:160.188933pt;}
.y12c{bottom:161.359467pt;}
.y180{bottom:175.058533pt;}
.y150{bottom:175.069067pt;}
.y6b{bottom:175.181067pt;}
.y123{bottom:175.181200pt;}
.yb7{bottom:178.425733pt;}
.y9f{bottom:178.447467pt;}
.y26{bottom:178.855600pt;}
.y3b{bottom:180.856267pt;}
.y17f{bottom:193.730533pt;}
.y14f{bottom:193.741067pt;}
.y6a{bottom:193.847733pt;}
.y122{bottom:193.847867pt;}
.y3a{bottom:196.852267pt;}
.yb6{bottom:197.007067pt;}
.y9e{bottom:197.028800pt;}
.y25{bottom:197.522267pt;}
.yaa{bottom:211.215067pt;}
.y17e{bottom:212.402533pt;}
.y14e{bottom:212.413067pt;}
.y69{bottom:212.514400pt;}
.y121{bottom:212.514533pt;}
.y39{bottom:212.848267pt;}
.yb5{bottom:215.588400pt;}
.y9d{bottom:215.610133pt;}
.y24{bottom:216.188933pt;}
.y12b{bottom:217.721867pt;}
.y38{bottom:228.844267pt;}
.y17d{bottom:231.074533pt;}
.y14d{bottom:231.085067pt;}
.y68{bottom:231.181067pt;}
.y120{bottom:231.181200pt;}
.y9c{bottom:234.191467pt;}
.y84{bottom:243.947467pt;}
.y12a{bottom:243.947600pt;}
.yb4{bottom:244.195333pt;}
.y37{bottom:244.840267pt;}
.y23{bottom:246.041200pt;}
.y17c{bottom:249.746533pt;}
.y14c{bottom:249.757067pt;}
.y67{bottom:249.847733pt;}
.y11f{bottom:249.847867pt;}
.y9b{bottom:252.772800pt;}
.y36{bottom:260.836267pt;}
.y17b{bottom:268.418533pt;}
.y14b{bottom:268.429067pt;}
.y66{bottom:268.514400pt;}
.y11e{bottom:268.514533pt;}
.y9a{bottom:271.354133pt;}
.y35{bottom:276.832267pt;}
.y17a{bottom:287.090533pt;}
.y14a{bottom:287.101067pt;}
.y65{bottom:287.181067pt;}
.y11d{bottom:287.181200pt;}
.y99{bottom:289.935467pt;}
.ybe{bottom:292.605333pt;}
.y34{bottom:292.828267pt;}
.y179{bottom:305.762533pt;}
.y149{bottom:305.773067pt;}
.y64{bottom:305.847733pt;}
.y11c{bottom:305.847867pt;}
.y98{bottom:308.516800pt;}
.y33{bottom:308.824267pt;}
.ybd{bottom:310.209333pt;}
.y178{bottom:324.434533pt;}
.y148{bottom:324.445067pt;}
.y63{bottom:324.514400pt;}
.y11b{bottom:324.514533pt;}
.y22{bottom:325.176400pt;}
.y97{bottom:327.098133pt;}
.ybc{bottom:327.813333pt;}
.y32{bottom:339.940267pt;}
.y21{bottom:342.780400pt;}
.y177{bottom:343.106533pt;}
.y147{bottom:343.117067pt;}
.y62{bottom:343.181067pt;}
.y11a{bottom:343.181200pt;}
.y96{bottom:345.679467pt;}
.ybf{bottom:349.907200pt;}
.yc8{bottom:353.627333pt;}
.y31{bottom:355.936267pt;}
.y176{bottom:361.778533pt;}
.y146{bottom:361.789067pt;}
.y61{bottom:361.847733pt;}
.y119{bottom:361.847867pt;}
.y95{bottom:364.260800pt;}
.y30{bottom:371.932267pt;}
.y20{bottom:379.206000pt;}
.y175{bottom:380.450533pt;}
.y145{bottom:380.461067pt;}
.y60{bottom:380.514400pt;}
.y118{bottom:380.514533pt;}
.y94{bottom:382.842133pt;}
.ycc{bottom:387.552133pt;}
.y1f{bottom:396.810000pt;}
.y174{bottom:399.122533pt;}
.y144{bottom:399.133067pt;}
.y5f{bottom:399.181067pt;}
.y117{bottom:399.181200pt;}
.y93{bottom:401.423467pt;}
.y2f{bottom:403.048267pt;}
.ycb{bottom:405.156133pt;}
.y129{bottom:411.947600pt;}
.y1e{bottom:414.414000pt;}
.y173{bottom:417.794533pt;}
.y143{bottom:417.805067pt;}
.y5e{bottom:417.847733pt;}
.y116{bottom:417.847867pt;}
.y2e{bottom:419.048267pt;}
.yc3{bottom:419.104002pt;}
.y92{bottom:420.004800pt;}
.yca{bottom:422.760133pt;}
.y1d{bottom:432.018000pt;}
.y2d{bottom:435.048267pt;}
.y172{bottom:436.466533pt;}
.y142{bottom:436.477067pt;}
.y5d{bottom:436.514400pt;}
.y115{bottom:436.514533pt;}
.y91{bottom:438.586133pt;}
.yc0{bottom:439.717467pt;}
.yc9{bottom:440.364133pt;}
.y1c{bottom:449.622000pt;}
.y2c{bottom:451.052267pt;}
.y171{bottom:455.138533pt;}
.y141{bottom:455.149067pt;}
.y5c{bottom:455.181067pt;}
.y114{bottom:455.181200pt;}
.y90{bottom:457.167467pt;}
.ycd{bottom:458.813333pt;}
.y2b{bottom:467.048267pt;}
.y1b{bottom:467.226000pt;}
.y170{bottom:473.810533pt;}
.y140{bottom:473.821067pt;}
.y5b{bottom:473.847733pt;}
.y113{bottom:473.847867pt;}
.y8e{bottom:474.234133pt;}
.yea{bottom:478.448800pt;}
.y1a{bottom:484.830000pt;}
.yc7{bottom:488.012926pt;}
.y8f{bottom:491.300800pt;}
.ydd{bottom:491.603467pt;}
.y16f{bottom:492.482533pt;}
.y13f{bottom:492.493067pt;}
.y5a{bottom:492.514400pt;}
.y112{bottom:492.514533pt;}
.yc5{bottom:493.110741pt;}
.y19{bottom:502.434000pt;}
.ye8{bottom:505.488267pt;}
.y16e{bottom:511.154533pt;}
.y13e{bottom:511.165067pt;}
.y59{bottom:511.181067pt;}
.y111{bottom:511.181200pt;}
.yff{bottom:516.494000pt;}
.y8d{bottom:518.400000pt;}
.y18{bottom:520.038000pt;}
.yfe{bottom:526.848533pt;}
.y101{bottom:526.851287pt;}
.y16d{bottom:529.826533pt;}
.y13d{bottom:529.837067pt;}
.y58{bottom:529.847733pt;}
.y110{bottom:529.847867pt;}
.y83{bottom:533.979467pt;}
.y100{bottom:537.196230pt;}
.y17{bottom:537.642000pt;}
.yc1{bottom:538.634267pt;}
.y102{bottom:547.553517pt;}
.yf7{bottom:548.471948pt;}
.y16c{bottom:548.498533pt;}
.y13c{bottom:548.509067pt;}
.y10f{bottom:548.514533pt;}
.y82{bottom:551.583467pt;}
.y16{bottom:555.246000pt;}
.ye4{bottom:559.313867pt;}
.y57{bottom:561.280800pt;}
.y16b{bottom:567.170533pt;}
.y13b{bottom:567.181067pt;}
.y10e{bottom:567.181200pt;}
.ya6{bottom:567.319600pt;}
.y81{bottom:569.187467pt;}
.yf4{bottom:572.468533pt;}
.y15{bottom:572.850000pt;}
.ya5{bottom:584.923600pt;}
.ycf{bottom:585.624000pt;}
.y16a{bottom:585.842533pt;}
.y10d{bottom:585.847867pt;}
.y14{bottom:590.454000pt;}
.yf5{bottom:592.129333pt;}
.y72{bottom:592.218533pt;}
.y13a{bottom:598.614133pt;}
.ye9{bottom:598.778667pt;}
.ya4{bottom:602.527600pt;}
.y169{bottom:604.402533pt;}
.y56{bottom:604.514400pt;}
.y10c{bottom:604.514533pt;}
.y76{bottom:604.986667pt;}
.yc2{bottom:606.888000pt;}
.y13{bottom:608.058000pt;}
.yd6{bottom:611.933333pt;}
.y78{bottom:612.281600pt;}
.ya9{bottom:620.976000pt;}
.y168{bottom:623.074533pt;}
.y55{bottom:623.181067pt;}
.y10b{bottom:623.181200pt;}
.yef{bottom:625.088000pt;}
.y12{bottom:625.662000pt;}
.y75{bottom:630.244400pt;}
.ydc{bottom:638.242667pt;}
.y167{bottom:641.746533pt;}
.y139{bottom:641.842400pt;}
.y54{bottom:641.847733pt;}
.y10a{bottom:641.847867pt;}
.y11{bottom:643.266000pt;}
.ya7{bottom:643.826533pt;}
.y7a{bottom:646.529622pt;}
.y74{bottom:648.463200pt;}
.ye3{bottom:651.405600pt;}
.y166{bottom:660.418533pt;}
.y53{bottom:660.514400pt;}
.y109{bottom:660.514533pt;}
.y10{bottom:660.870000pt;}
.yad{bottom:663.002933pt;}
.yde{bottom:664.560267pt;}
.y73{bottom:665.149867pt;}
.y71{bottom:666.583067pt;}
.ya8{bottom:672.958267pt;}
.yd7{bottom:677.714933pt;}
.yf{bottom:678.474000pt;}
.y165{bottom:679.090533pt;}
.y52{bottom:679.181067pt;}
.y108{bottom:679.181200pt;}
.y7d{bottom:683.875200pt;}
.y138{bottom:684.026000pt;}
.yc4{bottom:686.836533pt;}
.yd4{bottom:690.869600pt;}
.ye{bottom:696.078000pt;}
.y164{bottom:697.762533pt;}
.y51{bottom:697.847733pt;}
.y107{bottom:697.847867pt;}
.yf8{bottom:701.393158pt;}
.yc6{bottom:703.523467pt;}
.yd5{bottom:704.024933pt;}
.yf6{bottom:710.213518pt;}
.y163{bottom:716.434533pt;}
.y137{bottom:716.509067pt;}
.y50{bottom:716.514400pt;}
.y106{bottom:716.514533pt;}
.yec{bottom:717.179600pt;}
.yd{bottom:723.720267pt;}
.y128{bottom:729.280933pt;}
.yee{bottom:730.334267pt;}
.y80{bottom:731.061967pt;}
.y162{bottom:735.106533pt;}
.y136{bottom:735.175733pt;}
.y4f{bottom:735.181067pt;}
.y105{bottom:735.181200pt;}
.y104{bottom:738.108298pt;}
.yf9{bottom:742.155688pt;}
.ye2{bottom:743.489333pt;}
.y161{bottom:753.778533pt;}
.y4e{bottom:753.847733pt;}
.yb3{bottom:753.847867pt;}
.yd3{bottom:756.651467pt;}
.yab{bottom:758.489467pt;}
.yf3{bottom:769.806533pt;}
.y160{bottom:772.450533pt;}
.y4d{bottom:772.514400pt;}
.yb2{bottom:772.514533pt;}
.y79{bottom:772.536267pt;}
.y135{bottom:777.359333pt;}
.y7f{bottom:781.762737pt;}
.ye6{bottom:782.961200pt;}
.yfa{bottom:782.961424pt;}
.y15f{bottom:791.122533pt;}
.y4c{bottom:791.181067pt;}
.yb1{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.yd8{bottom:796.116267pt;}
.y70{bottom:801.374133pt;}
.yf2{bottom:809.270933pt;}
.y15e{bottom:809.794533pt;}
.y134{bottom:809.837200pt;}
.y4b{bottom:809.847733pt;}
.yb0{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.yda{bottom:822.425600pt;}
.y15d{bottom:828.466533pt;}
.y133{bottom:828.509200pt;}
.y4a{bottom:828.514400pt;}
.yaf{bottom:828.514533pt;}
.yfb{bottom:829.402562pt;}
.ye7{bottom:835.580667pt;}
.y5{bottom:841.310933pt;}
.y15c{bottom:847.138533pt;}
.y49{bottom:847.181067pt;}
.yae{bottom:847.181200pt;}
.yeb{bottom:848.735333pt;}
.yfd{bottom:857.974533pt;}
.ye5{bottom:861.897733pt;}
.y15b{bottom:865.810533pt;}
.y48{bottom:865.847733pt;}
.y8c{bottom:865.847867pt;}
.y132{bottom:870.692667pt;}
.y4{bottom:874.034267pt;}
.yd9{bottom:875.052800pt;}
.y15a{bottom:884.482533pt;}
.y47{bottom:884.514400pt;}
.y8b{bottom:884.514533pt;}
.ye1{bottom:888.207467pt;}
.y103{bottom:896.505733pt;}
.yd0{bottom:901.362133pt;}
.y159{bottom:903.154533pt;}
.y131{bottom:903.175867pt;}
.y46{bottom:903.181067pt;}
.y8a{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yfc{bottom:905.656391pt;}
.y7b{bottom:912.834667pt;}
.yed{bottom:914.517200pt;}
.y158{bottom:921.826533pt;}
.y45{bottom:921.847733pt;}
.y89{bottom:921.847867pt;}
.yf1{bottom:927.671733pt;}
.y7e{bottom:929.648244pt;}
.y2{bottom:932.695600pt;}
.y157{bottom:940.498533pt;}
.y44{bottom:940.514400pt;}
.y88{bottom:940.514533pt;}
.ye0{bottom:940.826933pt;}
.y130{bottom:945.359333pt;}
.ydf{bottom:953.981467pt;}
.y156{bottom:959.170533pt;}
.y43{bottom:959.181067pt;}
.y87{bottom:959.181200pt;}
.yf0{bottom:967.144133pt;}
.y155{bottom:977.842533pt;}
.y42{bottom:977.847733pt;}
.y86{bottom:977.847867pt;}
.yd2{bottom:980.298800pt;}
.yc{bottom:986.502667pt;}
.yd1{bottom:993.453867pt;}
.y41{bottom:996.514400pt;}
.y85{bottom:996.514533pt;}
.y12f{bottom:1000.401600pt;}
.ydb{bottom:1006.608533pt;}
.y3d{bottom:1030.390667pt;}
.y3c{bottom:1047.724000pt;}
.y40{bottom:1047.726267pt;}
.h14{height:12.588000pt;}
.h15{height:16.509871pt;}
.h28{height:17.142877pt;}
.h27{height:17.154932pt;}
.h26{height:21.443572pt;}
.h12{height:25.042206pt;}
.h2a{height:25.714130pt;}
.h29{height:25.732213pt;}
.h11{height:27.750987pt;}
.h1c{height:29.005854pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h13{height:31.716139pt;}
.h19{height:32.000000pt;}
.h1e{height:33.840348pt;}
.h1a{height:33.979167pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:36.000000pt;}
.h21{height:37.026645pt;}
.hf{height:38.273438pt;}
.h1b{height:38.500000pt;}
.ha{height:38.507812pt;}
.h2d{height:38.529146pt;}
.h9{height:40.546875pt;}
.hd{height:42.786458pt;}
.hb{height:43.312500pt;}
.h1f{height:43.508966pt;}
.h2e{height:43.760500pt;}
.h20{height:44.323009pt;}
.h2c{height:44.601562pt;}
.h4{height:47.065104pt;}
.he{height:48.125000pt;}
.hc{height:48.656250pt;}
.h22{height:51.161297pt;}
.h16{height:52.068801pt;}
.h2b{height:53.608560pt;}
.h17{height:57.392000pt;}
.h24{height:58.470107pt;}
.h3{height:72.205729pt;}
.h23{height:77.908972pt;}
.h18{height:191.261347pt;}
.h1d{height:223.748000pt;}
.h25{height:556.368000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:46.629333pt;}
.w2{width:200.018667pt;}
.w5{width:587.529333pt;}
.w4{width:631.937333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:13.524933pt;}
.x2{left:65.763733pt;}
.xa{left:95.167867pt;}
.xc{left:96.257467pt;}
.x19{left:99.757200pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x23{left:112.371200pt;}
.x25{left:114.621733pt;}
.x11{left:130.086667pt;}
.x12{left:133.097600pt;}
.x2a{left:138.553867pt;}
.xe{left:140.646933pt;}
.x14{left:143.368000pt;}
.xf{left:147.600667pt;}
.x10{left:157.150000pt;}
.x28{left:177.339600pt;}
.x15{left:197.805200pt;}
.x2c{left:225.381600pt;}
.x22{left:227.281067pt;}
.x2e{left:255.601670pt;}
.x4{left:266.834667pt;}
.x21{left:270.617067pt;}
.x2f{left:274.069491pt;}
.xb{left:281.954667pt;}
.x30{left:309.357102pt;}
.x32{left:323.195623pt;}
.x31{left:324.923895pt;}
.x2d{left:336.503317pt;}
.x3{left:337.502133pt;}
.x16{left:339.191867pt;}
.x20{left:343.854400pt;}
.x17{left:352.834533pt;}
.x1b{left:354.395200pt;}
.xd{left:360.614133pt;}
.x18{left:367.842533pt;}
.x1e{left:386.323867pt;}
.x2b{left:396.516133pt;}
.x26{left:398.433074pt;}
.x13{left:425.408400pt;}
.x27{left:444.652800pt;}
.x29{left:460.465415pt;}
.x1d{left:508.376267pt;}
.x24{left:548.021333pt;}
.x34{left:568.363733pt;}
.x9{left:576.806933pt;}
.x8{left:595.302933pt;}
.x33{left:621.292400pt;}
.x1f{left:667.243067pt;}
.x1a{left:685.602400pt;}
.x1{left:712.140000pt;}
}




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