
    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_45fd90874bfce923e3ff4c4a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.925000;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_c0e61c5e053b077f0ad72e9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.908000;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_bf5abeab88e205f6ef223019.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8d407a7711b0aa4f1dc5819d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_6a53c6e8038f11178a10cdc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_458156a9ff8168184349f7a2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a1c209174df51a1ceff322bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bab9fd8df40285552d21a897.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e017fbce7f573b5095df47c9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_716d6ef500b1c62d9f321305.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.731445;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_db9ecda29b3cc53102d45c27.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893066;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f9a0c55a0555766cddc51e89.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.833496;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_1dc2a5ff0f88700d4b79ce41.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.919000;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_4935c152aae3fd57263388de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.890000;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);}
.v2{vertical-align:-45.119995px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:45.119120px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000069px;}
.ls8{letter-spacing:17.999988px;}
.ls4{letter-spacing:18.000000px;}
.ls6{letter-spacing:22.500000px;}
.ls2{letter-spacing:22.810870px;}
.ls7{letter-spacing:24.503904px;}
.ls9{letter-spacing:25.004900px;}
.lsa{letter-spacing:27.000000px;}
.ls5{letter-spacing:53.999989px;}
.ls1{letter-spacing:54.310870px;}
.ls3{letter-spacing:72.000000px;}
.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;}
}
.ws2{word-spacing:-59.999999px;}
.ws1a{word-spacing:-49.500001px;}
.ws44{word-spacing:-41.027344px;}
.ws4b{word-spacing:-40.605468px;}
.ws9a{word-spacing:-40.032000px;}
.wsa4{word-spacing:-36.000069px;}
.ws3{word-spacing:-36.000000px;}
.ws6c{word-spacing:-34.189452px;}
.ws1b{word-spacing:-26.691720px;}
.ws6a{word-spacing:-23.027378px;}
.ws3b{word-spacing:-23.027367px;}
.ws59{word-spacing:-23.027355px;}
.ws51{word-spacing:-23.027346px;}
.ws36{word-spacing:-23.027344px;}
.ws42{word-spacing:-23.027343px;}
.ws5a{word-spacing:-23.027341px;}
.ws4c{word-spacing:-23.027321px;}
.ws55{word-spacing:-22.605503px;}
.ws53{word-spacing:-22.605492px;}
.ws15{word-spacing:-22.605491px;}
.ws1d{word-spacing:-22.605480px;}
.wse{word-spacing:-22.605471px;}
.wsb{word-spacing:-22.605470px;}
.ws9{word-spacing:-22.605468px;}
.ws38{word-spacing:-22.605467px;}
.wsa{word-spacing:-22.605466px;}
.ws67{word-spacing:-22.605458px;}
.ws2d{word-spacing:-22.605457px;}
.ws63{word-spacing:-22.605446px;}
.wsb9{word-spacing:-22.605435px;}
.ws8c{word-spacing:-22.031881px;}
.ws90{word-spacing:-22.031872px;}
.ws96{word-spacing:-22.031870px;}
.ws32{word-spacing:-21.146286px;}
.ws29{word-spacing:-21.146192px;}
.ws34{word-spacing:-21.143519px;}
.ws33{word-spacing:-21.140920px;}
.ws35{word-spacing:-21.131860px;}
.ws88{word-spacing:-20.759837px;}
.ws87{word-spacing:-20.759832px;}
.ws85{word-spacing:-19.208457px;}
.ws6b{word-spacing:-19.208413px;}
.ws69{word-spacing:-19.208400px;}
.ws75{word-spacing:-19.208313px;}
.ws86{word-spacing:-19.208187px;}
.ws7c{word-spacing:-19.207115px;}
.ws6e{word-spacing:-19.207046px;}
.ws6f{word-spacing:-19.207030px;}
.ws71{word-spacing:-19.207028px;}
.ws74{word-spacing:-19.201785px;}
.ws54{word-spacing:-18.527355px;}
.ws58{word-spacing:-18.527346px;}
.ws2a{word-spacing:-18.527344px;}
.ws5e{word-spacing:-18.105503px;}
.ws46{word-spacing:-18.105492px;}
.ws1e{word-spacing:-18.105480px;}
.ws4e{word-spacing:-18.105470px;}
.ws1f{word-spacing:-18.105468px;}
.ws66{word-spacing:-18.105466px;}
.ws20{word-spacing:-18.105457px;}
.ws8a{word-spacing:-18.105446px;}
.ws8e{word-spacing:-18.105435px;}
.wsb7{word-spacing:-18.000138px;}
.wsa0{word-spacing:-18.000036px;}
.wsa7{word-spacing:-18.000029px;}
.ws5b{word-spacing:-18.000023px;}
.ws5c{word-spacing:-18.000011px;}
.ws1{word-spacing:-18.000000px;}
.ws23{word-spacing:-17.999978px;}
.wsaf{word-spacing:-17.999951px;}
.wsab{word-spacing:-17.999949px;}
.ws17{word-spacing:-17.999934px;}
.wsae{word-spacing:-17.999894px;}
.ws11{word-spacing:-17.999889px;}
.ws18{word-spacing:-17.999883px;}
.ws14{word-spacing:-17.999881px;}
.ws12{word-spacing:-17.999878px;}
.ws10{word-spacing:-17.999873px;}
.wsc{word-spacing:-17.999872px;}
.ws13{word-spacing:-17.999870px;}
.ws8{word-spacing:-17.999868px;}
.wsd{word-spacing:-17.999867px;}
.ws4{word-spacing:-17.999865px;}
.ws6{word-spacing:-17.999863px;}
.wsf{word-spacing:-17.999858px;}
.ws7{word-spacing:-17.999856px;}
.ws19{word-spacing:-17.999845px;}
.ws5{word-spacing:-17.999844px;}
.ws93{word-spacing:-17.999841px;}
.wsaa{word-spacing:-17.999785px;}
.ws28{word-spacing:-16.638362px;}
.ws6d{word-spacing:-14.705683px;}
.ws68{word-spacing:-14.704402px;}
.ws52{word-spacing:-14.027355px;}
.ws5d{word-spacing:-14.027346px;}
.ws41{word-spacing:-14.027344px;}
.ws2c{word-spacing:-14.027342px;}
.ws57{word-spacing:-13.605503px;}
.ws45{word-spacing:-13.605491px;}
.ws40{word-spacing:-13.605480px;}
.ws1c{word-spacing:-13.605468px;}
.ws50{word-spacing:-13.605458px;}
.ws5f{word-spacing:-13.605457px;}
.ws4f{word-spacing:-13.605447px;}
.ws8d{word-spacing:-13.605435px;}
.wsb8{word-spacing:-13.500064px;}
.wsb5{word-spacing:-13.500041px;}
.ws84{word-spacing:-13.500012px;}
.ws22{word-spacing:-13.500002px;}
.ws24{word-spacing:-13.499998px;}
.ws82{word-spacing:-13.499978px;}
.ws99{word-spacing:-13.499949px;}
.ws94{word-spacing:-13.499934px;}
.ws9c{word-spacing:-13.499928px;}
.wsa3{word-spacing:-13.499870px;}
.wsb6{word-spacing:-13.499863px;}
.ws95{word-spacing:-13.499861px;}
.ws9d{word-spacing:-13.499730px;}
.ws4d{word-spacing:-11.211509px;}
.ws70{word-spacing:-10.208313px;}
.ws7a{word-spacing:-10.207092px;}
.ws7b{word-spacing:-10.207030px;}
.ws7f{word-spacing:-10.201741px;}
.ws3a{word-spacing:-9.527354px;}
.ws56{word-spacing:-9.527344px;}
.ws64{word-spacing:-9.105503px;}
.ws21{word-spacing:-9.105491px;}
.ws48{word-spacing:-9.105481px;}
.ws27{word-spacing:-9.105480px;}
.ws47{word-spacing:-9.105468px;}
.ws39{word-spacing:-9.105466px;}
.ws37{word-spacing:-9.105458px;}
.ws8b{word-spacing:-9.105457px;}
.wsb1{word-spacing:-9.000069px;}
.ws80{word-spacing:-9.000011px;}
.ws83{word-spacing:-9.000003px;}
.ws81{word-spacing:-9.000000px;}
.ws9e{word-spacing:-8.999994px;}
.ws9b{word-spacing:-8.999943px;}
.ws92{word-spacing:-8.999863px;}
.ws98{word-spacing:-8.999847px;}
.wsb2{word-spacing:-8.999772px;}
.ws9f{word-spacing:-8.999737px;}
.ws78{word-spacing:-5.708312px;}
.ws76{word-spacing:-5.027344px;}
.ws31{word-spacing:-5.027341px;}
.ws2b{word-spacing:-4.605492px;}
.ws65{word-spacing:-4.605480px;}
.ws2f{word-spacing:-4.605468px;}
.ws91{word-spacing:-4.500069px;}
.wsa2{word-spacing:-4.500026px;}
.ws77{word-spacing:-4.500011px;}
.wsad{word-spacing:-4.499862px;}
.wsa9{word-spacing:-4.499860px;}
.ws79{word-spacing:-1.516315px;}
.ws7e{word-spacing:-1.516165px;}
.ws2e{word-spacing:-0.527344px;}
.ws49{word-spacing:-0.105492px;}
.ws43{word-spacing:-0.105480px;}
.ws30{word-spacing:-0.105468px;}
.ws16{word-spacing:-0.072000px;}
.wsb4{word-spacing:-0.000130px;}
.ws7d{word-spacing:-0.000034px;}
.ws0{word-spacing:0.000000px;}
.ws3f{word-spacing:0.000033px;}
.wsa6{word-spacing:0.000039px;}
.wsac{word-spacing:0.000137px;}
.ws8f{word-spacing:4.394531px;}
.ws3d{word-spacing:4.499988px;}
.ws3e{word-spacing:4.500000px;}
.wsb3{word-spacing:4.500128px;}
.wsa8{word-spacing:4.500141px;}
.ws25{word-spacing:8.894531px;}
.ws3c{word-spacing:8.999999px;}
.ws97{word-spacing:9.000012px;}
.ws72{word-spacing:11.134163px;}
.ws62{word-spacing:13.394508px;}
.ws4a{word-spacing:13.394520px;}
.ws61{word-spacing:13.394554px;}
.wsa5{word-spacing:13.500154px;}
.ws60{word-spacing:17.894534px;}
.wsb0{word-spacing:18.000007px;}
.wsa1{word-spacing:18.000154px;}
.ws26{word-spacing:59.456060px;}
.ws73{word-spacing:229.394532px;}
.ws89{word-spacing:301.394532px;}
._2a{margin-left:-9.292904px;}
._4{margin-left:-7.918753px;}
._5{margin-left:-6.479612px;}
._6{margin-left:-5.399784px;}
._f{margin-left:-4.303282px;}
._2{margin-left:-2.671866px;}
._3{margin-left:-1.007448px;}
._0{width:1.128061px;}
._1d{width:14.358767px;}
._1c{width:15.436062px;}
._b{width:18.000024px;}
._1e{width:19.417492px;}
._11{width:20.907573px;}
._8{width:22.343831px;}
._9{width:23.497117px;}
._a{width:27.000002px;}
._22{width:28.111708px;}
._21{width:29.719135px;}
._1{width:31.505466px;}
._13{width:32.984756px;}
._7{width:35.794832px;}
._d{width:36.820661px;}
._10{width:40.500003px;}
._12{width:42.281180px;}
._c{width:44.706536px;}
._e{width:45.880401px;}
._15{width:49.206768px;}
._1b{width:53.999995px;}
._16{width:57.398617px;}
._1a{width:58.500006px;}
._25{width:62.983599px;}
._17{width:71.387389px;}
._20{width:72.782890px;}
._14{width:80.999974px;}
._1f{width:84.023438px;}
._28{width:87.956850px;}
._27{width:89.387359px;}
._18{width:93.887369px;}
._26{width:98.387356px;}
._29{width:117.574753px;}
._24{width:148.272144px;}
._19{width:155.482966px;}
._23{width:164.760423px;}
.fc8{color:rgb(17,85,204);}
.fc7{color:rgb(255,0,0);}
.fc5{color:rgb(4,12,40);}
.fc4{color:transparent;}
.fc6{color:rgb(31,31,31);}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:48.000000px;}
.fs7{font-size:50.911687px;}
.fs8{font-size:59.999999px;}
.fs5{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.969997px;}
.fs2{font-size:89.999996px;}
.fs9{font-size:90.000000px;}
.fs4{font-size:119.999997px;}
.fs0{font-size:131.984995px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y183{bottom:11.118164px;}
.y152{bottom:11.119629px;}
.y17b{bottom:11.443357px;}
.y14f{bottom:11.443360px;}
.y180{bottom:11.765625px;}
.y18e{bottom:11.765629px;}
.y191{bottom:11.768548px;}
.y131{bottom:11.768552px;}
.y157{bottom:11.768553px;}
.y11b{bottom:11.768554px;}
.y15b{bottom:11.768559px;}
.y195{bottom:11.768564px;}
.y193{bottom:11.768567px;}
.y188{bottom:11.771479px;}
.y18a{bottom:11.771492px;}
.y8d{bottom:25.032000px;}
.y151{bottom:29.017090px;}
.y14e{bottom:30.741211px;}
.y130{bottom:32.466797px;}
.y18d{bottom:53.162119px;}
.y167{bottom:53.165034px;}
.y156{bottom:53.165039px;}
.y15a{bottom:53.165049px;}
.y187{bottom:53.167970px;}
.y18c{bottom:94.558594px;}
.y155{bottom:94.561524px;}
.y186{bottom:94.564453px;}
.yb{bottom:99.176756px;}
.y163{bottom:115.554198px;}
.y1c7{bottom:116.197268px;}
.y17e{bottom:116.355468px;}
.ya{bottom:120.551755px;}
.yc6{bottom:123.317873px;}
.y20a{bottom:123.904830px;}
.yff{bottom:128.917973px;}
.y162{bottom:132.802728px;}
.y119{bottom:133.334478px;}
.y139{bottom:138.050544px;}
.y1ad{bottom:143.106442px;}
.y209{bottom:145.508340px;}
.y1c6{bottom:147.243157px;}
.y17d{bottom:149.408208px;}
.y161{bottom:150.051270px;}
.y118{bottom:150.583008px;}
.yc5{bottom:154.365233px;}
.yfe{bottom:159.966803px;}
.y9{bottom:163.301753px;}
.y208{bottom:167.106000px;}
.ydd{bottom:168.606442px;}
.y138{bottom:173.397952px;}
.y1ac{bottom:174.152347px;}
.yea{bottom:175.727048px;}
.y14b{bottom:183.836418px;}
.y8{bottom:184.676752px;}
.yc4{bottom:185.412592px;}
.y17c{bottom:186.981438px;}
.yfd{bottom:191.012692px;}
.y175{bottom:198.603517px;}
.y14a{bottom:198.965328px;}
.ydc{bottom:199.653802px;}
.y8c{bottom:203.916503px;}
.y1ab{bottom:205.201178px;}
.ye9{bottom:206.774408px;}
.y137{bottom:207.906009px;}
.y1c5{bottom:209.337892px;}
.y207{bottom:210.307170px;}
.yc2{bottom:216.886455px;}
.y1d5{bottom:216.887910px;}
.yfc{bottom:222.061523px;}
.y179{bottom:224.554686px;}
.y17a{bottom:226.280271px;}
.y1d6{bottom:228.164759px;}
.yc3{bottom:228.166229px;}
.y174{bottom:229.652347px;}
.ydb{bottom:230.701178px;}
.y206{bottom:231.904830px;}
.ya6{bottom:232.384283px;}
.y8b{bottom:234.963863px;}
.y1aa{bottom:236.249992px;}
.y149{bottom:236.538573px;}
.ye8{bottom:237.821783px;}
.y1c4{bottom:240.386723px;}
.y136{bottom:243.253418px;}
.y178{bottom:245.252928px;}
.yfb{bottom:253.107428px;}
.y205{bottom:253.508340px;}
.yc1{bottom:254.627933px;}
.yda{bottom:261.748537px;}
.ya5{bottom:263.431642px;}
.ye7{bottom:268.869142px;}
.y1c3{bottom:271.432613px;}
.y173{bottom:273.638678px;}
.y148{bottom:274.111818px;}
.y135{bottom:274.300778px;}
.y204{bottom:275.106000px;}
.yfa{bottom:284.156242px;}
.yc0{bottom:285.675293px;}
.y1d3{bottom:286.101780px;}
.yd9{bottom:292.795898px;}
.ya4{bottom:294.479002px;}
.y8a{bottom:297.058598px;}
.y1d4{bottom:297.381554px;}
.y1a9{bottom:298.341803px;}
.ye6{bottom:299.916503px;}
.y1c2{bottom:302.481443px;}
.y172{bottom:304.684567px;}
.ybf{bottom:316.722652px;}
.y203{bottom:318.307170px;}
.y1d2{bottom:323.841803px;}
.ya3{bottom:325.526362px;}
.y89{bottom:328.105957px;}
.y1a7{bottom:329.815650px;}
.yf9{bottom:330.726563px;}
.y1c1{bottom:333.527348px;}
.y171{bottom:335.730473px;}
.y177{bottom:336.691406px;}
.y202{bottom:339.904830px;}
.y1ea{bottom:340.368157px;}
.y1a8{bottom:341.098364px;}
.y147{bottom:344.852043px;}
.y134{bottom:346.095708px;}
.y112{bottom:346.488278px;}
.ybe{bottom:347.770013px;}
.y72{bottom:351.744868px;}
.y2f{bottom:352.521967px;}
.yd8{bottom:354.890617px;}
.ya2{bottom:356.573737px;}
.y88{bottom:359.153318px;}
.y201{bottom:361.508340px;}
.yf8{bottom:361.773923px;}
.ye5{bottom:362.011238px;}
.y146{bottom:362.100588px;}
.y133{bottom:363.344238px;}
.y1c0{bottom:364.576178px;}
.y170{bottom:366.779302px;}
.y1a6{bottom:367.558598px;}
.y1e9{bottom:371.414062px;}
.y194{bottom:376.350579px;}
.y111{bottom:377.534183px;}
.y145{bottom:377.906253px;}
.y12f{bottom:378.473151px;}
.y71{bottom:380.204593px;}
.y200{bottom:383.106000px;}
.y5d{bottom:384.109858px;}
.y1d1{bottom:385.936523px;}
.yd7{bottom:385.937992px;}
.ya1{bottom:387.621098px;}
.y87{bottom:390.200677px;}
.yf7{bottom:392.821283px;}
.ye4{bottom:393.058598px;}
.y46{bottom:393.444135px;}
.y2e{bottom:395.730390px;}
.y192{bottom:397.048821px;}
.y16f{bottom:397.828117px;}
.y1a5{bottom:398.604488px;}
.y132{bottom:399.171393px;}
.y1e8{bottom:402.462892px;}
.y1ff{bottom:404.703660px;}
.y110{bottom:408.583012px;}
.ybd{bottom:409.864748px;}
.y5c{bottom:412.570318px;}
.y144{bottom:415.479498px;}
.yd6{bottom:416.985353px;}
.y86{bottom:421.248053px;}
.yf6{bottom:423.868657px;}
.ye3{bottom:424.105957px;}
.y45{bottom:425.844285px;}
.y70{bottom:426.351563px;}
.y1bf{bottom:426.670898px;}
.y16e{bottom:428.874023px;}
.y1a4{bottom:429.650393px;}
.y12e{bottom:436.744623px;}
.y2d{bottom:438.028845px;}
.y10f{bottom:439.628902px;}
.ybc{bottom:440.912108px;}
.y1fe{bottom:447.904830px;}
.y1d0{bottom:448.031242px;}
.yd5{bottom:448.032712px;}
.ya0{bottom:449.715817px;}
.y143{bottom:453.052728px;}
.yf5{bottom:454.916017px;}
.ye2{bottom:455.153318px;}
.y190{bottom:455.320314px;}
.y6f{bottom:457.398923px;}
.y1be{bottom:457.716803px;}
.y44{bottom:458.244435px;}
.y16d{bottom:459.919927px;}
.y1e7{bottom:464.557613px;}
.y5b{bottom:468.089362px;}
.y1fd{bottom:469.508340px;}
.y10e{bottom:470.677733px;}
.ybb{bottom:471.959468px;}
.y12d{bottom:474.317868px;}
.y18f{bottom:476.018556px;}
.yd4{bottom:479.080073px;}
.y9f{bottom:480.763178px;}
.y2c{bottom:481.228560px;}
.y1a3{bottom:481.397467px;}
.y85{bottom:483.342773px;}
.yf4{bottom:485.963377px;}
.yeb{bottom:486.200677px;}
.y6e{bottom:488.446283px;}
.y1bd{bottom:488.765618px;}
.y43{bottom:490.644570px;}
.y16c{bottom:490.968742px;}
.y1fc{bottom:491.106000px;}
.y1e6{bottom:495.603518px;}
.y5a{bottom:499.136723px;}
.y2b{bottom:502.829145px;}
.yba{bottom:503.006842px;}
.y1cf{bottom:510.125977px;}
.yd3{bottom:510.127448px;}
.y9e{bottom:511.810552px;}
.y1a2{bottom:512.443357px;}
.y1fb{bottom:512.703660px;}
.y84{bottom:514.390133px;}
.yf3{bottom:517.010738px;}
.ye1{bottom:517.248052px;}
.y16b{bottom:522.017573px;}
.y42{bottom:523.044360px;}
.y2a{bottom:524.428995px;}
.y1e5{bottom:526.652348px;}
.y59{bottom:530.184082px;}
.yb9{bottom:534.054202px;}
.y142{bottom:534.791018px;}
.y6d{bottom:535.993658px;}
.y1ce{bottom:541.174808px;}
.yd1{bottom:541.601295px;}
.y9d{bottom:542.857912px;}
.y1a1{bottom:543.492188px;}
.y29{bottom:546.028845px;}
.yf2{bottom:548.058112px;}
.ye0{bottom:548.295412px;}
.y1bc{bottom:550.860352px;}
.yd2{bottom:552.881069px;}
.y83{bottom:552.937492px;}
.y16a{bottom:553.063477px;}
.y41{bottom:555.444135px;}
.y1fa{bottom:555.904830px;}
.y12c{bottom:556.056158px;}
.y1e4{bottom:557.701178px;}
.yb7{bottom:565.528050px;}
.y141{bottom:565.838377px;}
.y6c{bottom:567.041018px;}
.y1cd{bottom:572.220698px;}
.y58{bottom:574.168208px;}
.y1a0{bottom:574.541018px;}
.yb8{bottom:576.808559px;}
.y1f9{bottom:577.508340px;}
.ydf{bottom:579.342773px;}
.y1ba{bottom:582.334200px;}
.y28{bottom:586.514648px;}
.y12b{bottom:587.103518px;}
.y40{bottom:587.844285px;}
.y1e3{bottom:588.747068px;}
.y82{bottom:591.484868px;}
.y1bb{bottom:593.613989px;}
.y140{bottom:596.885738px;}
.y6b{bottom:598.088377px;}
.y1f8{bottom:599.106000px;}
.y169{bottom:604.160148px;}
.y9c{bottom:604.952633px;}
.y57{bottom:605.215582px;}
.y19f{bottom:605.586908px;}
.y27{bottom:607.212893px;}
.yf1{bottom:610.152833px;}
.yd0{bottom:610.390133px;}
.y12a{bottom:618.150877px;}
.y1e2{bottom:619.792973px;}
.y1b9{bottom:620.074223px;}
.y3f{bottom:620.244435px;}
.y168{bottom:621.410148px;}
.y10d{bottom:625.913092px;}
.y26{bottom:627.911137px;}
.y6a{bottom:629.135738px;}
.y1cc{bottom:634.315433px;}
.yb6{bottom:634.316888px;}
.y9b{bottom:635.999992px;}
.y56{bottom:636.262943px;}
.y19e{bottom:636.632812px;}
.yf0{bottom:641.200192px;}
.ycf{bottom:641.437492px;}
.y1f7{bottom:642.307170px;}
.y25{bottom:648.609367px;}
.y3e{bottom:652.644570px;}
.y117{bottom:652.828118px;}
.y1e1{bottom:653.106000px;}
.y10c{bottom:656.961908px;}
.y81{bottom:658.230473px;}
.y69{bottom:660.183112px;}
.y1f6{bottom:663.904830px;}
.yb5{bottom:665.364262px;}
.y13f{bottom:665.879887px;}
.y9a{bottom:667.047368px;}
.y55{bottom:667.310303px;}
.y19d{bottom:667.681642px;}
.y160{bottom:668.578118px;}
.y24{bottom:669.307613px;}
.yef{bottom:672.247552px;}
.yce{bottom:672.484868px;}
.y129{bottom:680.245612px;}
.y1b8{bottom:682.171867px;}
.y116{bottom:683.875492px;}
.y1f5{bottom:685.508340px;}
.y3d{bottom:685.649409px;}
.y10b{bottom:688.007812px;}
.y80{bottom:689.277833px;}
.y23{bottom:690.005858px;}
.y68{bottom:691.230473px;}
.y1cb{bottom:696.410152px;}
.yb4{bottom:696.411623px;}
.y13e{bottom:696.927248px;}
.y99{bottom:698.094728px;}
.y54{bottom:698.357663px;}
.y15f{bottom:699.625492px;}
.y19c{bottom:700.994670px;}
.yee{bottom:703.294928px;}
.ycd{bottom:703.532228px;}
.y1f4{bottom:707.106000px;}
.y128{bottom:711.292973px;}
.y22{bottom:712.516395px;}
.y1b7{bottom:713.217773px;}
.y115{bottom:714.922852px;}
.y3c{bottom:716.995612px;}
.y1e0{bottom:717.904830px;}
.y10a{bottom:719.056643px;}
.y7f{bottom:720.325192px;}
.y67{bottom:722.277833px;}
.yb3{bottom:727.458982px;}
.y13d{bottom:727.974608px;}
.y1f3{bottom:728.703660px;}
.y7{bottom:728.717402px;}
.y98{bottom:729.142088px;}
.y53{bottom:729.405022px;}
.y15e{bottom:730.672852px;}
.yed{bottom:734.381836px;}
.y19b{bottom:734.578118px;}
.ycc{bottom:734.579588px;}
.y127{bottom:742.340333px;}
.y1b6{bottom:744.263678px;}
.y6{bottom:747.842401px;}
.y109{bottom:750.102533px;}
.y3b{bottom:750.305700px;}
.y1df{bottom:750.307170px;}
.y7e{bottom:751.372552px;}
.y21{bottom:753.002198px;}
.y66{bottom:753.325192px;}
.y1ca{bottom:758.504887px;}
.yb2{bottom:758.506342px;}
.y13c{bottom:759.021968px;}
.y97{bottom:760.189448px;}
.y52{bottom:760.452398px;}
.yec{bottom:765.547846px;}
.ycb{bottom:765.626948px;}
.y1f2{bottom:771.904830px;}
.y20{bottom:773.700443px;}
.y15d{bottom:781.769523px;}
.y7d{bottom:782.419928px;}
.y1de{bottom:782.703660px;}
.y3a{bottom:782.706225px;}
.y65{bottom:784.372552px;}
.y5{bottom:786.092400px;}
.y126{bottom:786.325192px;}
.yb1{bottom:789.553718px;}
.y96{bottom:791.236822px;}
.y51{bottom:791.499757px;}
.y1f1{bottom:793.508340px;}
.y1f{bottom:794.398688px;}
.yca{bottom:796.674322px;}
.y19a{bottom:796.675777px;}
.y114{bottom:797.066898px;}
.y15c{bottom:799.018068px;}
.y176{bottom:804.079100px;}
.y1b4{bottom:806.786355px;}
.y13b{bottom:810.118653px;}
.y113{bottom:814.315434px;}
.y1e{bottom:815.096918px;}
.y39{bottom:815.106000px;}
.y64{bottom:815.419928px;}
.y125{bottom:817.372552px;}
.y1b5{bottom:818.066129px;}
.y1c8{bottom:821.027565px;}
.y50{bottom:822.547118px;}
.y13a{bottom:827.367184px;}
.yde{bottom:827.721683px;}
.y166{bottom:828.771973px;}
.y7c{bottom:829.967288px;}
.y1c9{bottom:832.307339px;}
.y18b{bottom:833.835933px;}
.y1d{bottom:835.795163px;}
.y11f{bottom:844.069338px;}
.y1b3{bottom:844.529303px;}
.y38{bottom:847.505775px;}
.y1dd{bottom:847.508340px;}
.y124{bottom:848.419928px;}
.yb0{bottom:851.648438px;}
.y95{bottom:853.331543px;}
.y4f{bottom:853.594477px;}
.y159{bottom:857.121088px;}
.y1c{bottom:858.305700px;}
.y1f0{bottom:858.307170px;}
.y199{bottom:858.767573px;}
.yc9{bottom:858.769043px;}
.y7b{bottom:861.014648px;}
.y63{bottom:862.967287px;}
.y213{bottom:869.118158px;}
.y108{bottom:874.291988px;}
.y1b1{bottom:876.000225px;}
.y12{bottom:877.397467px;}
.y123{bottom:879.467287px;}
.y1dc{bottom:879.904830px;}
.y37{bottom:879.906300px;}
.y11e{bottom:881.642583px;}
.yaf{bottom:882.695798px;}
.y94{bottom:887.097652px;}
.y1b2{bottom:887.282924px;}
.yc8{bottom:889.816402px;}
.y165{bottom:890.866701px;}
.y7a{bottom:892.062007px;}
.y62{bottom:894.014647px;}
.y189{bottom:895.927731px;}
.y4e{bottom:897.578617px;}
.y212{bottom:900.164062px;}
.y11{bottom:901.200443px;}
.y1b{bottom:901.506150px;}
.y1ef{bottom:901.508340px;}
.y107{bottom:905.340817px;}
.y122{bottom:910.514647px;}
.y36{bottom:912.305700px;}
.yae{bottom:913.743158px;}
.y93{bottom:918.145013px;}
.y11d{bottom:919.215813px;}
.y158{bottom:919.215816px;}
.yc7{bottom:920.863762px;}
.y198{bottom:920.865232px;}
.y1a{bottom:923.106000px;}
.y10{bottom:925.003417px;}
.y61{bottom:925.062007px;}
.y4d{bottom:928.625978px;}
.y211{bottom:931.212892px;}
.y106{bottom:936.386723px;}
.y79{bottom:939.609367px;}
.y121{bottom:941.562007px;}
.y1db{bottom:944.703660px;}
.y19{bottom:944.705850px;}
.y35{bottom:944.706225px;}
.yad{bottom:944.790532px;}
.y1af{bottom:945.217020px;}
.yf{bottom:948.806393px;}
.yc{bottom:949.232333px;}
.y92{bottom:951.911137px;}
.y185{bottom:954.199218px;}
.y60{bottom:956.109367px;}
.y1b0{bottom:956.496794px;}
.y11c{bottom:956.789058px;}
.y4c{bottom:959.673338px;}
.y164{bottom:959.939943px;}
.y210{bottom:962.261723px;}
.y1ee{bottom:966.307170px;}
.y105{bottom:967.435552px;}
.y78{bottom:970.656742px;}
.ye{bottom:972.609367px;}
.yac{bottom:975.837892px;}
.y34{bottom:977.106000px;}
.y154{bottom:977.487304px;}
.y1ae{bottom:982.957027px;}
.y91{bottom:982.958498px;}
.y5f{bottom:987.156742px;}
.y1ed{bottom:987.904830px;}
.y18{bottom:987.906300px;}
.y4b{bottom:990.720697px;}
.y20f{bottom:993.307613px;}
.y11a{bottom:994.362305px;}
.y104{bottom:998.481446px;}
.y4{bottom:998.831385px;}
.y77{bottom:1001.704101px;}
.y120{bottom:1003.656738px;}
.yab{bottom:1006.885254px;}
.y33{bottom:1009.505781px;}
.y17{bottom:1009.506147px;}
.y1da{bottom:1009.508343px;}
.yd{bottom:1014.005859px;}
.y184{bottom:1016.296875px;}
.y4a{bottom:1021.768066px;}
.y20e{bottom:1024.353516px;}
.y103{bottom:1029.530274px;}
.y16{bottom:1031.106000px;}
.y3{bottom:1032.581383px;}
.y76{bottom:1032.751465px;}
.y5e{bottom:1034.704101px;}
.yaa{bottom:1037.932617px;}
.y153{bottom:1039.582032px;}
.y1d9{bottom:1041.904828px;}
.y32{bottom:1041.906292px;}
.y90{bottom:1045.053222px;}
.y197{bottom:1045.054688px;}
.y1ec{bottom:1052.703655px;}
.y15{bottom:1052.705853px;}
.y20d{bottom:1055.402343px;}
.y102{bottom:1060.576171px;}
.y75{bottom:1063.798828px;}
.y49{bottom:1065.751465px;}
.y2{bottom:1066.331382px;}
.ya9{bottom:1068.979980px;}
.y14{bottom:1074.305707px;}
.y1d8{bottom:1074.307171px;}
.y17f{bottom:1074.568359px;}
.y8f{bottom:1076.100586px;}
.y181{bottom:1076.291015px;}
.y182{bottom:1078.016601px;}
.y20c{bottom:1086.451171px;}
.y101{bottom:1091.625000px;}
.y1eb{bottom:1095.904828px;}
.y48{bottom:1096.798828px;}
.y14c{bottom:1097.853516px;}
.y14d{bottom:1099.579101px;}
.ya8{bottom:1100.027343px;}
.y74{bottom:1100.997071px;}
.y150{bottom:1101.303222px;}
.y1d7{bottom:1106.703655px;}
.y31{bottom:1106.706219px;}
.y196{bottom:1107.146484px;}
.y8e{bottom:1107.147950px;}
.y20b{bottom:1117.497071px;}
.y100{bottom:1122.670899px;}
.y13{bottom:1128.510000px;}
.ya7{bottom:1131.501195px;}
.y73{bottom:1138.195312px;}
.y30{bottom:1139.106000px;}
.y47{bottom:1139.523194px;}
.h1a{height:32.997070px;}
.hd{height:34.500000px;}
.h19{height:34.722657px;}
.hf{height:35.573547px;}
.h18{height:36.445312px;}
.h11{height:36.448242px;}
.ha{height:48.049806px;}
.h6{height:49.992188px;}
.h1e{height:51.336000px;}
.h10{height:53.291014px;}
.h15{height:53.696778px;}
.h14{height:53.789061px;}
.h13{height:55.420899px;}
.h12{height:57.146484px;}
.hb{height:58.620119px;}
.h17{height:59.167970px;}
.h4{height:59.954578px;}
.h5{height:61.649997px;}
.hc{height:63.949219px;}
.h8{height:64.080000px;}
.h9{height:64.546875px;}
.h1d{height:77.844726px;}
.he{height:80.692667px;}
.h3{height:94.237286px;}
.h7{height:106.799997px;}
.h1c{height:119.238282px;}
.h16{height:119.241211px;}
.h1b{height:119.244141px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w16{width:41.625000px;}
.w17{width:42.750000px;}
.w18{width:47.250000px;}
.w24{width:48.375000px;}
.w25{width:51.750000px;}
.w26{width:54.000000px;}
.w23{width:60.750000px;}
.w22{width:61.875000px;}
.w21{width:63.000000px;}
.w27{width:73.125000px;}
.w7{width:96.750000px;}
.w6{width:99.000000px;}
.w1c{width:124.875000px;}
.w1b{width:126.000000px;}
.wc{width:130.500000px;}
.w1d{width:137.250000px;}
.we{width:138.375000px;}
.wa{width:139.500000px;}
.w1e{width:144.000000px;}
.wb{width:154.125000px;}
.w14{width:155.250000px;}
.w13{width:156.375000px;}
.w5{width:164.250000px;}
.w1f{width:167.625000px;}
.w15{width:182.250000px;}
.w12{width:183.375000px;}
.w20{width:192.375000px;}
.w19{width:248.625000px;}
.wd{width:277.875000px;}
.w9{width:279.000000px;}
.w10{width:284.625000px;}
.wf{width:285.750000px;}
.w1a{width:286.875000px;}
.w11{width:288.000000px;}
.w8{width:289.125000px;}
.w4{width:290.250000px;}
.w3{width:446.062500px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.w2{width:894.000000px;}
.x0{left:0.000000px;}
.x16{left:6.750000px;}
.x11{left:7.875000px;}
.x14{left:9.461426px;}
.x2c{left:11.887207px;}
.x3c{left:14.062500px;}
.x34{left:15.750000px;}
.x2a{left:18.892090px;}
.x2e{left:19.977539px;}
.x51{left:21.937500px;}
.x49{left:23.431641px;}
.x4b{left:25.875000px;}
.x41{left:29.250000px;}
.x53{left:31.500000px;}
.x3a{left:44.024415px;}
.x31{left:46.019531px;}
.x19{left:48.375000px;}
.x22{left:49.500000px;}
.x27{left:50.625000px;}
.x2f{left:51.750000px;}
.x47{left:55.520508px;}
.x1c{left:57.375000px;}
.x3d{left:59.625000px;}
.x3b{left:61.330078px;}
.x48{left:64.634766px;}
.x1b{left:66.375000px;}
.x25{left:70.875000px;}
.x26{left:72.000000px;}
.x3e{left:73.125000px;}
.x23{left:74.250000px;}
.x24{left:75.375000px;}
.x7{left:81.000000px;}
.x18{left:82.125000px;}
.xa{left:85.500000px;}
.x9{left:86.625000px;}
.x56{left:91.800000px;}
.x55{left:105.596837px;}
.xc{left:108.000000px;}
.x10{left:111.375000px;}
.x17{left:112.500000px;}
.x8{left:135.000000px;}
.x1a{left:141.363281px;}
.x1{left:223.228337px;}
.x42{left:231.750000px;}
.x46{left:232.875000px;}
.x28{left:234.000000px;}
.x30{left:235.125000px;}
.xf{left:244.633008px;}
.x4a{left:309.375000px;}
.xd{left:333.973830px;}
.x32{left:335.250000px;}
.x1d{left:360.000000px;}
.x20{left:361.125000px;}
.x54{left:369.472845px;}
.x43{left:372.375000px;}
.x29{left:374.625000px;}
.x5a{left:388.624215px;}
.x3{left:391.931526px;}
.x12{left:401.625000px;}
.x59{left:425.002155px;}
.x4{left:429.091680px;}
.x4c{left:434.250000px;}
.xe{left:456.370320px;}
.x5{left:476.728397px;}
.x4d{left:483.750000px;}
.x3f{left:487.125000px;}
.x57{left:498.074415px;}
.x1e{left:500.625000px;}
.x2{left:509.740114px;}
.x33{left:519.750000px;}
.x44{left:529.875000px;}
.x2b{left:532.125000px;}
.x4e{left:533.250000px;}
.x6{left:556.720511px;}
.x35{left:562.500000px;}
.x13{left:567.000000px;}
.x4f{left:581.625000px;}
.x36{left:606.375000px;}
.x40{left:613.125000px;}
.x50{left:634.500000px;}
.x37{left:650.250000px;}
.x1f{left:655.875000px;}
.x15{left:667.125000px;}
.x45{left:675.000000px;}
.x2d{left:689.625000px;}
.x38{left:694.125000px;}
.x5b{left:701.576370px;}
.x39{left:738.000000px;}
.x52{left:742.500000px;}
.x58{left:747.868365px;}
.x21{left:858.150000px;}
.xb{left:864.825000px;}
@media print{
.v2{vertical-align:-40.106662pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:40.105884pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000061pt;}
.ls8{letter-spacing:15.999990pt;}
.ls4{letter-spacing:16.000000pt;}
.ls6{letter-spacing:20.000000pt;}
.ls2{letter-spacing:20.276329pt;}
.ls7{letter-spacing:21.781248pt;}
.ls9{letter-spacing:22.226578pt;}
.lsa{letter-spacing:24.000000pt;}
.ls5{letter-spacing:47.999990pt;}
.ls1{letter-spacing:48.276329pt;}
.ls3{letter-spacing:64.000000pt;}
.ws2{word-spacing:-53.333332pt;}
.ws1a{word-spacing:-44.000001pt;}
.ws44{word-spacing:-36.468750pt;}
.ws4b{word-spacing:-36.093750pt;}
.ws9a{word-spacing:-35.584000pt;}
.wsa4{word-spacing:-32.000061pt;}
.ws3{word-spacing:-32.000000pt;}
.ws6c{word-spacing:-30.390624pt;}
.ws1b{word-spacing:-23.725974pt;}
.ws6a{word-spacing:-20.468780pt;}
.ws3b{word-spacing:-20.468770pt;}
.ws59{word-spacing:-20.468760pt;}
.ws51{word-spacing:-20.468752pt;}
.ws36{word-spacing:-20.468750pt;}
.ws42{word-spacing:-20.468749pt;}
.ws5a{word-spacing:-20.468748pt;}
.ws4c{word-spacing:-20.468730pt;}
.ws55{word-spacing:-20.093780pt;}
.ws53{word-spacing:-20.093771pt;}
.ws15{word-spacing:-20.093770pt;}
.ws1d{word-spacing:-20.093760pt;}
.wse{word-spacing:-20.093752pt;}
.wsb{word-spacing:-20.093751pt;}
.ws9{word-spacing:-20.093750pt;}
.ws38{word-spacing:-20.093749pt;}
.wsa{word-spacing:-20.093748pt;}
.ws67{word-spacing:-20.093740pt;}
.ws2d{word-spacing:-20.093740pt;}
.ws63{word-spacing:-20.093730pt;}
.wsb9{word-spacing:-20.093720pt;}
.ws8c{word-spacing:-19.583894pt;}
.ws90{word-spacing:-19.583886pt;}
.ws96{word-spacing:-19.583884pt;}
.ws32{word-spacing:-18.796699pt;}
.ws29{word-spacing:-18.796615pt;}
.ws34{word-spacing:-18.794239pt;}
.ws33{word-spacing:-18.791928pt;}
.ws35{word-spacing:-18.783875pt;}
.ws88{word-spacing:-18.453188pt;}
.ws87{word-spacing:-18.453184pt;}
.ws85{word-spacing:-17.074184pt;}
.ws6b{word-spacing:-17.074145pt;}
.ws69{word-spacing:-17.074133pt;}
.ws75{word-spacing:-17.074056pt;}
.ws86{word-spacing:-17.073944pt;}
.ws7c{word-spacing:-17.072992pt;}
.ws6e{word-spacing:-17.072930pt;}
.ws6f{word-spacing:-17.072916pt;}
.ws71{word-spacing:-17.072914pt;}
.ws74{word-spacing:-17.068253pt;}
.ws54{word-spacing:-16.468760pt;}
.ws58{word-spacing:-16.468752pt;}
.ws2a{word-spacing:-16.468750pt;}
.ws5e{word-spacing:-16.093780pt;}
.ws46{word-spacing:-16.093770pt;}
.ws1e{word-spacing:-16.093760pt;}
.ws4e{word-spacing:-16.093751pt;}
.ws1f{word-spacing:-16.093750pt;}
.ws66{word-spacing:-16.093748pt;}
.ws20{word-spacing:-16.093740pt;}
.ws8a{word-spacing:-16.093730pt;}
.ws8e{word-spacing:-16.093720pt;}
.wsb7{word-spacing:-16.000122pt;}
.wsa0{word-spacing:-16.000032pt;}
.wsa7{word-spacing:-16.000026pt;}
.ws5b{word-spacing:-16.000020pt;}
.ws5c{word-spacing:-16.000010pt;}
.ws1{word-spacing:-16.000000pt;}
.ws23{word-spacing:-15.999980pt;}
.wsaf{word-spacing:-15.999957pt;}
.wsab{word-spacing:-15.999955pt;}
.ws17{word-spacing:-15.999941pt;}
.wsae{word-spacing:-15.999906pt;}
.ws11{word-spacing:-15.999901pt;}
.ws18{word-spacing:-15.999896pt;}
.ws14{word-spacing:-15.999894pt;}
.ws12{word-spacing:-15.999892pt;}
.ws10{word-spacing:-15.999887pt;}
.wsc{word-spacing:-15.999886pt;}
.ws13{word-spacing:-15.999885pt;}
.ws8{word-spacing:-15.999883pt;}
.wsd{word-spacing:-15.999882pt;}
.ws4{word-spacing:-15.999880pt;}
.ws6{word-spacing:-15.999878pt;}
.wsf{word-spacing:-15.999874pt;}
.ws7{word-spacing:-15.999872pt;}
.ws19{word-spacing:-15.999862pt;}
.ws5{word-spacing:-15.999861pt;}
.ws93{word-spacing:-15.999859pt;}
.wsaa{word-spacing:-15.999809pt;}
.ws28{word-spacing:-14.789655pt;}
.ws6d{word-spacing:-13.071718pt;}
.ws68{word-spacing:-13.070580pt;}
.ws52{word-spacing:-12.468760pt;}
.ws5d{word-spacing:-12.468752pt;}
.ws41{word-spacing:-12.468750pt;}
.ws2c{word-spacing:-12.468748pt;}
.ws57{word-spacing:-12.093780pt;}
.ws45{word-spacing:-12.093770pt;}
.ws40{word-spacing:-12.093760pt;}
.ws1c{word-spacing:-12.093750pt;}
.ws50{word-spacing:-12.093741pt;}
.ws5f{word-spacing:-12.093740pt;}
.ws4f{word-spacing:-12.093731pt;}
.ws8d{word-spacing:-12.093720pt;}
.wsb8{word-spacing:-12.000057pt;}
.wsb5{word-spacing:-12.000037pt;}
.ws84{word-spacing:-12.000010pt;}
.ws22{word-spacing:-12.000002pt;}
.ws24{word-spacing:-11.999998pt;}
.ws82{word-spacing:-11.999980pt;}
.ws99{word-spacing:-11.999954pt;}
.ws94{word-spacing:-11.999941pt;}
.ws9c{word-spacing:-11.999936pt;}
.wsa3{word-spacing:-11.999884pt;}
.wsb6{word-spacing:-11.999878pt;}
.ws95{word-spacing:-11.999877pt;}
.ws9d{word-spacing:-11.999760pt;}
.ws4d{word-spacing:-9.965786pt;}
.ws70{word-spacing:-9.074056pt;}
.ws7a{word-spacing:-9.072970pt;}
.ws7b{word-spacing:-9.072916pt;}
.ws7f{word-spacing:-9.068214pt;}
.ws3a{word-spacing:-8.468759pt;}
.ws56{word-spacing:-8.468750pt;}
.ws64{word-spacing:-8.093780pt;}
.ws21{word-spacing:-8.093770pt;}
.ws48{word-spacing:-8.093761pt;}
.ws27{word-spacing:-8.093760pt;}
.ws47{word-spacing:-8.093750pt;}
.ws39{word-spacing:-8.093748pt;}
.ws37{word-spacing:-8.093740pt;}
.ws8b{word-spacing:-8.093739pt;}
.wsb1{word-spacing:-8.000061pt;}
.ws80{word-spacing:-8.000010pt;}
.ws83{word-spacing:-8.000002pt;}
.ws81{word-spacing:-8.000000pt;}
.ws9e{word-spacing:-7.999994pt;}
.ws9b{word-spacing:-7.999950pt;}
.ws92{word-spacing:-7.999878pt;}
.ws98{word-spacing:-7.999864pt;}
.wsb2{word-spacing:-7.999797pt;}
.ws9f{word-spacing:-7.999766pt;}
.ws78{word-spacing:-5.074055pt;}
.ws76{word-spacing:-4.468750pt;}
.ws31{word-spacing:-4.468748pt;}
.ws2b{word-spacing:-4.093770pt;}
.ws65{word-spacing:-4.093760pt;}
.ws2f{word-spacing:-4.093750pt;}
.ws91{word-spacing:-4.000061pt;}
.wsa2{word-spacing:-4.000023pt;}
.ws77{word-spacing:-4.000010pt;}
.wsad{word-spacing:-3.999877pt;}
.wsa9{word-spacing:-3.999875pt;}
.ws79{word-spacing:-1.347836pt;}
.ws7e{word-spacing:-1.347703pt;}
.ws2e{word-spacing:-0.468750pt;}
.ws49{word-spacing:-0.093770pt;}
.ws43{word-spacing:-0.093760pt;}
.ws30{word-spacing:-0.093750pt;}
.ws16{word-spacing:-0.064000pt;}
.wsb4{word-spacing:-0.000115pt;}
.ws7d{word-spacing:-0.000030pt;}
.ws0{word-spacing:0.000000pt;}
.ws3f{word-spacing:0.000030pt;}
.wsa6{word-spacing:0.000035pt;}
.wsac{word-spacing:0.000122pt;}
.ws8f{word-spacing:3.906250pt;}
.ws3d{word-spacing:3.999990pt;}
.ws3e{word-spacing:4.000000pt;}
.wsb3{word-spacing:4.000114pt;}
.wsa8{word-spacing:4.000126pt;}
.ws25{word-spacing:7.906250pt;}
.ws3c{word-spacing:7.999999pt;}
.ws97{word-spacing:8.000011pt;}
.ws72{word-spacing:9.897034pt;}
.ws62{word-spacing:11.906230pt;}
.ws4a{word-spacing:11.906240pt;}
.ws61{word-spacing:11.906270pt;}
.wsa5{word-spacing:12.000137pt;}
.ws60{word-spacing:15.906253pt;}
.wsb0{word-spacing:16.000006pt;}
.wsa1{word-spacing:16.000137pt;}
.ws26{word-spacing:52.849831pt;}
.ws73{word-spacing:203.906250pt;}
.ws89{word-spacing:267.906250pt;}
._2a{margin-left:-8.260359pt;}
._4{margin-left:-7.038892pt;}
._5{margin-left:-5.759655pt;}
._6{margin-left:-4.799808pt;}
._f{margin-left:-3.825139pt;}
._2{margin-left:-2.374992pt;}
._3{margin-left:-0.895510pt;}
._0{width:1.002721pt;}
._1d{width:12.763349pt;}
._1c{width:13.720944pt;}
._b{width:16.000021pt;}
._1e{width:17.259993pt;}
._11{width:18.584509pt;}
._8{width:19.861183pt;}
._9{width:20.886326pt;}
._a{width:24.000002pt;}
._22{width:24.988185pt;}
._21{width:26.417009pt;}
._1{width:28.004859pt;}
._13{width:29.319783pt;}
._7{width:31.817628pt;}
._d{width:32.729476pt;}
._10{width:36.000002pt;}
._12{width:37.583271pt;}
._c{width:39.739143pt;}
._e{width:40.782579pt;}
._15{width:43.739350pt;}
._1b{width:47.999996pt;}
._16{width:51.020993pt;}
._1a{width:52.000006pt;}
._25{width:55.985422pt;}
._17{width:63.455456pt;}
._20{width:64.695902pt;}
._14{width:71.999977pt;}
._1f{width:74.687500pt;}
._28{width:78.183867pt;}
._27{width:79.455430pt;}
._18{width:83.455439pt;}
._26{width:87.455428pt;}
._29{width:104.510891pt;}
._24{width:131.797461pt;}
._19{width:138.207081pt;}
._23{width:146.453709pt;}
.fs6{font-size:42.666667pt;}
.fs7{font-size:45.254833pt;}
.fs8{font-size:53.333332pt;}
.fs5{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.639997pt;}
.fs2{font-size:79.999997pt;}
.fs9{font-size:80.000000pt;}
.fs4{font-size:106.666664pt;}
.fs0{font-size:117.319995pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y183{bottom:9.882812pt;}
.y152{bottom:9.884115pt;}
.y17b{bottom:10.171873pt;}
.y14f{bottom:10.171876pt;}
.y180{bottom:10.458333pt;}
.y18e{bottom:10.458337pt;}
.y191{bottom:10.460932pt;}
.y131{bottom:10.460935pt;}
.y157{bottom:10.460936pt;}
.y11b{bottom:10.460937pt;}
.y15b{bottom:10.460941pt;}
.y195{bottom:10.460945pt;}
.y193{bottom:10.460948pt;}
.y188{bottom:10.463537pt;}
.y18a{bottom:10.463548pt;}
.y8d{bottom:22.250667pt;}
.y151{bottom:25.792969pt;}
.y14e{bottom:27.325521pt;}
.y130{bottom:28.859375pt;}
.y18d{bottom:47.255217pt;}
.y167{bottom:47.257808pt;}
.y156{bottom:47.257812pt;}
.y15a{bottom:47.257821pt;}
.y187{bottom:47.260417pt;}
.y18c{bottom:84.052084pt;}
.y155{bottom:84.054688pt;}
.y186{bottom:84.057292pt;}
.yb{bottom:88.157116pt;}
.y163{bottom:102.714843pt;}
.y1c7{bottom:103.286460pt;}
.y17e{bottom:103.427083pt;}
.ya{bottom:107.157116pt;}
.yc6{bottom:109.615887pt;}
.y20a{bottom:110.137626pt;}
.yff{bottom:114.593753pt;}
.y162{bottom:118.046870pt;}
.y119{bottom:118.519536pt;}
.y139{bottom:122.711594pt;}
.y1ad{bottom:127.205727pt;}
.y209{bottom:129.340746pt;}
.y1c6{bottom:130.882807pt;}
.y17d{bottom:132.807296pt;}
.y161{bottom:133.378907pt;}
.y118{bottom:133.851563pt;}
.yc5{bottom:137.213540pt;}
.yfe{bottom:142.192713pt;}
.y9{bottom:145.157114pt;}
.y208{bottom:148.538666pt;}
.ydd{bottom:149.872393pt;}
.y138{bottom:154.131513pt;}
.y1ac{bottom:154.802087pt;}
.yea{bottom:156.201820pt;}
.y14b{bottom:163.410150pt;}
.y8{bottom:164.157113pt;}
.yc4{bottom:164.811193pt;}
.y17c{bottom:166.205723pt;}
.yfd{bottom:169.789060pt;}
.y175{bottom:176.536460pt;}
.y14a{bottom:176.858069pt;}
.ydc{bottom:177.470047pt;}
.y8c{bottom:181.259113pt;}
.y1ab{bottom:182.401047pt;}
.ye9{bottom:183.799473pt;}
.y137{bottom:184.805341pt;}
.y1c5{bottom:186.078127pt;}
.y207{bottom:186.939706pt;}
.yc2{bottom:192.787960pt;}
.y1d5{bottom:192.789253pt;}
.yfc{bottom:197.388020pt;}
.y179{bottom:199.604165pt;}
.y17a{bottom:201.138019pt;}
.y1d6{bottom:202.813119pt;}
.yc3{bottom:202.814426pt;}
.y174{bottom:204.135420pt;}
.ydb{bottom:205.067713pt;}
.y206{bottom:206.137626pt;}
.ya6{bottom:206.563807pt;}
.y8b{bottom:208.856767pt;}
.y1aa{bottom:209.999993pt;}
.y149{bottom:210.256509pt;}
.ye8{bottom:211.397140pt;}
.y1c4{bottom:213.677087pt;}
.y136{bottom:216.225260pt;}
.y178{bottom:218.002603pt;}
.yfb{bottom:224.984380pt;}
.y205{bottom:225.340746pt;}
.yc1{bottom:226.335940pt;}
.yda{bottom:232.665367pt;}
.ya5{bottom:234.161460pt;}
.ye7{bottom:238.994793pt;}
.y1c3{bottom:241.273433pt;}
.y173{bottom:243.234380pt;}
.y148{bottom:243.654949pt;}
.y135{bottom:243.822913pt;}
.y204{bottom:244.538666pt;}
.yfa{bottom:252.583327pt;}
.yc0{bottom:253.933593pt;}
.y1d3{bottom:254.312693pt;}
.yd9{bottom:260.263020pt;}
.ya4{bottom:261.759113pt;}
.y8a{bottom:264.052087pt;}
.y1d4{bottom:264.339159pt;}
.y1a9{bottom:265.192713pt;}
.ye6{bottom:266.592447pt;}
.y1c2{bottom:268.872393pt;}
.y172{bottom:270.830727pt;}
.ybf{bottom:281.531247pt;}
.y203{bottom:282.939706pt;}
.y1d2{bottom:287.859380pt;}
.ya3{bottom:289.356767pt;}
.y89{bottom:291.649740pt;}
.y1a7{bottom:293.169466pt;}
.yf9{bottom:293.979167pt;}
.y1c1{bottom:296.468753pt;}
.y171{bottom:298.427087pt;}
.y177{bottom:299.281250pt;}
.y202{bottom:302.137626pt;}
.y1ea{bottom:302.549473pt;}
.y1a8{bottom:303.198546pt;}
.y147{bottom:306.535150pt;}
.y134{bottom:307.640630pt;}
.y112{bottom:307.989580pt;}
.ybe{bottom:309.128900pt;}
.y72{bottom:312.662105pt;}
.y2f{bottom:313.352860pt;}
.yd8{bottom:315.458327pt;}
.ya2{bottom:316.954433pt;}
.y88{bottom:319.247393pt;}
.y201{bottom:321.340746pt;}
.yf8{bottom:321.576820pt;}
.ye5{bottom:321.787767pt;}
.y146{bottom:321.867190pt;}
.y133{bottom:322.972656pt;}
.y1c0{bottom:324.067713pt;}
.y170{bottom:326.026047pt;}
.y1a6{bottom:326.718753pt;}
.y1e9{bottom:330.145833pt;}
.y194{bottom:334.533848pt;}
.y111{bottom:335.585940pt;}
.y145{bottom:335.916669pt;}
.y12f{bottom:336.420579pt;}
.y71{bottom:337.959639pt;}
.y200{bottom:340.538666pt;}
.y5d{bottom:341.430985pt;}
.y1d1{bottom:343.054687pt;}
.yd7{bottom:343.055993pt;}
.ya1{bottom:344.552087pt;}
.y87{bottom:346.845047pt;}
.yf7{bottom:349.174473pt;}
.ye4{bottom:349.385420pt;}
.y46{bottom:349.728120pt;}
.y2e{bottom:351.760346pt;}
.y192{bottom:352.932285pt;}
.y16f{bottom:353.624993pt;}
.y1a5{bottom:354.315100pt;}
.y132{bottom:354.819016pt;}
.y1e8{bottom:357.744793pt;}
.y1ff{bottom:359.736586pt;}
.y110{bottom:363.184900pt;}
.ybd{bottom:364.324220pt;}
.y5c{bottom:366.729172pt;}
.y144{bottom:369.315109pt;}
.yd6{bottom:370.653647pt;}
.y86{bottom:374.442713pt;}
.yf6{bottom:376.772140pt;}
.ye3{bottom:376.983073pt;}
.y45{bottom:378.528253pt;}
.y70{bottom:378.979167pt;}
.y1bf{bottom:379.263020pt;}
.y16e{bottom:381.221353pt;}
.y1a4{bottom:381.911460pt;}
.y12e{bottom:388.217443pt;}
.y2d{bottom:389.358973pt;}
.y10f{bottom:390.781247pt;}
.ybc{bottom:391.921873pt;}
.y1fe{bottom:398.137626pt;}
.y1d0{bottom:398.249993pt;}
.yd5{bottom:398.251300pt;}
.ya0{bottom:399.747393pt;}
.y143{bottom:402.713536pt;}
.yf5{bottom:404.369793pt;}
.ye2{bottom:404.580727pt;}
.y190{bottom:404.729168pt;}
.y6f{bottom:406.576820pt;}
.y1be{bottom:406.859380pt;}
.y44{bottom:407.328386pt;}
.y16d{bottom:408.817713pt;}
.y1e7{bottom:412.940100pt;}
.y5b{bottom:416.079433pt;}
.y1fd{bottom:417.340746pt;}
.y10e{bottom:418.380207pt;}
.ybb{bottom:419.519527pt;}
.y12d{bottom:421.615883pt;}
.y18f{bottom:423.127605pt;}
.yd4{bottom:425.848953pt;}
.y9f{bottom:427.345047pt;}
.y2c{bottom:427.758720pt;}
.y1a3{bottom:427.908860pt;}
.y85{bottom:429.638020pt;}
.yf4{bottom:431.967447pt;}
.yeb{bottom:432.178380pt;}
.y6e{bottom:434.174473pt;}
.y1bd{bottom:434.458327pt;}
.y43{bottom:436.128506pt;}
.y16c{bottom:436.416660pt;}
.y1fc{bottom:436.538666pt;}
.y1e6{bottom:440.536460pt;}
.y5a{bottom:443.677087pt;}
.y2b{bottom:446.959240pt;}
.yba{bottom:447.117193pt;}
.y1cf{bottom:453.445313pt;}
.yd3{bottom:453.446620pt;}
.y9e{bottom:454.942713pt;}
.y1a2{bottom:455.505207pt;}
.y1fb{bottom:455.736586pt;}
.y84{bottom:457.235673pt;}
.yf3{bottom:459.565100pt;}
.ye1{bottom:459.776047pt;}
.y16b{bottom:464.015620pt;}
.y42{bottom:464.928320pt;}
.y2a{bottom:466.159106pt;}
.y1e5{bottom:468.135420pt;}
.y59{bottom:471.274740pt;}
.yb9{bottom:474.714847pt;}
.y142{bottom:475.369793pt;}
.y6d{bottom:476.438807pt;}
.y1ce{bottom:481.044273pt;}
.yd1{bottom:481.423373pt;}
.y9d{bottom:482.540367pt;}
.y1a1{bottom:483.104167pt;}
.y29{bottom:485.358973pt;}
.yf2{bottom:487.162767pt;}
.ye0{bottom:487.373700pt;}
.y1bc{bottom:489.653647pt;}
.yd2{bottom:491.449839pt;}
.y83{bottom:491.499993pt;}
.y16a{bottom:491.611980pt;}
.y41{bottom:493.728120pt;}
.y1fa{bottom:494.137626pt;}
.y12c{bottom:494.272140pt;}
.y1e4{bottom:495.734380pt;}
.yb7{bottom:502.691600pt;}
.y141{bottom:502.967447pt;}
.y6c{bottom:504.036460pt;}
.y1cd{bottom:508.640620pt;}
.y58{bottom:510.371740pt;}
.y1a0{bottom:510.703127pt;}
.yb8{bottom:512.718719pt;}
.y1f9{bottom:513.340746pt;}
.ydf{bottom:514.971353pt;}
.y1ba{bottom:517.630400pt;}
.y28{bottom:521.346353pt;}
.y12b{bottom:521.869793pt;}
.y40{bottom:522.528253pt;}
.y1e3{bottom:523.330727pt;}
.y82{bottom:525.764327pt;}
.y1bb{bottom:527.656879pt;}
.y140{bottom:530.565100pt;}
.y6b{bottom:531.634113pt;}
.y1f8{bottom:532.538666pt;}
.y169{bottom:537.031243pt;}
.y9c{bottom:537.735673pt;}
.y57{bottom:537.969407pt;}
.y19f{bottom:538.299473pt;}
.y27{bottom:539.744793pt;}
.yf1{bottom:542.358073pt;}
.yd0{bottom:542.569007pt;}
.y12a{bottom:549.467447pt;}
.y1e2{bottom:550.927087pt;}
.y1b9{bottom:551.177087pt;}
.y3f{bottom:551.328386pt;}
.y168{bottom:552.364576pt;}
.y10d{bottom:556.367193pt;}
.y26{bottom:558.143233pt;}
.y6a{bottom:559.231767pt;}
.y1cc{bottom:563.835940pt;}
.yb6{bottom:563.837233pt;}
.y9b{bottom:565.333327pt;}
.y56{bottom:565.567060pt;}
.y19e{bottom:565.895833pt;}
.yf0{bottom:569.955727pt;}
.ycf{bottom:570.166660pt;}
.y1f7{bottom:570.939706pt;}
.y25{bottom:576.541660pt;}
.y3e{bottom:580.128506pt;}
.y117{bottom:580.291660pt;}
.y1e1{bottom:580.538666pt;}
.y10c{bottom:583.966140pt;}
.y81{bottom:585.093753pt;}
.y69{bottom:586.829433pt;}
.y1f6{bottom:590.137626pt;}
.yb5{bottom:591.434900pt;}
.y13f{bottom:591.893233pt;}
.y9a{bottom:592.930993pt;}
.y55{bottom:593.164713pt;}
.y19d{bottom:593.494793pt;}
.y160{bottom:594.291660pt;}
.y24{bottom:594.940100pt;}
.yef{bottom:597.553380pt;}
.yce{bottom:597.764327pt;}
.y129{bottom:604.662767pt;}
.y1b8{bottom:606.374993pt;}
.y116{bottom:607.889327pt;}
.y1f5{bottom:609.340746pt;}
.y3d{bottom:609.466142pt;}
.y10b{bottom:611.562500pt;}
.y80{bottom:612.691407pt;}
.y23{bottom:613.338540pt;}
.y68{bottom:614.427087pt;}
.y1cb{bottom:619.031247pt;}
.yb4{bottom:619.032553pt;}
.y13e{bottom:619.490887pt;}
.y99{bottom:620.528647pt;}
.y54{bottom:620.762367pt;}
.y15f{bottom:621.889327pt;}
.y19c{bottom:623.106373pt;}
.yee{bottom:625.151047pt;}
.ycd{bottom:625.361980pt;}
.y1f4{bottom:628.538666pt;}
.y128{bottom:632.260420pt;}
.y22{bottom:633.347906pt;}
.y1b7{bottom:633.971353pt;}
.y115{bottom:635.486980pt;}
.y3c{bottom:637.329433pt;}
.y1e0{bottom:638.137626pt;}
.y10a{bottom:639.161460pt;}
.y7f{bottom:640.289060pt;}
.y67{bottom:642.024740pt;}
.yb3{bottom:646.630207pt;}
.y13d{bottom:647.088540pt;}
.y1f3{bottom:647.736586pt;}
.y7{bottom:647.748802pt;}
.y98{bottom:648.126300pt;}
.y53{bottom:648.360020pt;}
.y15e{bottom:649.486980pt;}
.yed{bottom:652.783854pt;}
.y19b{bottom:652.958327pt;}
.ycc{bottom:652.959633pt;}
.y127{bottom:659.858073pt;}
.y1b6{bottom:661.567713pt;}
.y6{bottom:664.748801pt;}
.y109{bottom:666.757807pt;}
.y3b{bottom:666.938400pt;}
.y1df{bottom:666.939706pt;}
.y7e{bottom:667.886713pt;}
.y21{bottom:669.335287pt;}
.y66{bottom:669.622393pt;}
.y1ca{bottom:674.226567pt;}
.yb2{bottom:674.227860pt;}
.y13c{bottom:674.686193pt;}
.y97{bottom:675.723953pt;}
.y52{bottom:675.957687pt;}
.yec{bottom:680.486974pt;}
.ycb{bottom:680.557287pt;}
.y1f2{bottom:686.137626pt;}
.y20{bottom:687.733727pt;}
.y15d{bottom:694.906243pt;}
.y7d{bottom:695.484380pt;}
.y1de{bottom:695.736586pt;}
.y3a{bottom:695.738866pt;}
.y65{bottom:697.220047pt;}
.y5{bottom:698.748800pt;}
.y126{bottom:698.955727pt;}
.yb1{bottom:701.825527pt;}
.y96{bottom:703.321620pt;}
.y51{bottom:703.555340pt;}
.y1f1{bottom:705.340746pt;}
.y1f{bottom:706.132167pt;}
.yca{bottom:708.154953pt;}
.y19a{bottom:708.156247pt;}
.y114{bottom:708.503910pt;}
.y15c{bottom:710.238283pt;}
.y176{bottom:714.736978pt;}
.y1b4{bottom:717.143426pt;}
.y13b{bottom:720.105470pt;}
.y113{bottom:723.835942pt;}
.y1e{bottom:724.530593pt;}
.y39{bottom:724.538666pt;}
.y64{bottom:724.817713pt;}
.y125{bottom:726.553380pt;}
.y1b5{bottom:727.169892pt;}
.y1c8{bottom:729.802280pt;}
.y50{bottom:731.152993pt;}
.y13a{bottom:735.437497pt;}
.yde{bottom:735.752607pt;}
.y166{bottom:736.686199pt;}
.y7c{bottom:737.748700pt;}
.y1c9{bottom:739.828745pt;}
.y18b{bottom:741.187496pt;}
.y1d{bottom:742.929033pt;}
.y11f{bottom:750.283856pt;}
.y1b3{bottom:750.692713pt;}
.y38{bottom:753.338466pt;}
.y1dd{bottom:753.340746pt;}
.y124{bottom:754.151047pt;}
.yb0{bottom:757.020833pt;}
.y95{bottom:758.516927pt;}
.y4f{bottom:758.750647pt;}
.y159{bottom:761.885412pt;}
.y1c{bottom:762.938400pt;}
.y1f0{bottom:762.939706pt;}
.y199{bottom:763.348953pt;}
.yc9{bottom:763.350260pt;}
.y7b{bottom:765.346353pt;}
.y63{bottom:767.082033pt;}
.y213{bottom:772.549473pt;}
.y108{bottom:777.148433pt;}
.y1b1{bottom:778.666866pt;}
.y12{bottom:779.908860pt;}
.y123{bottom:781.748700pt;}
.y1dc{bottom:782.137626pt;}
.y37{bottom:782.138933pt;}
.y11e{bottom:783.682296pt;}
.yaf{bottom:784.618487pt;}
.y94{bottom:788.531247pt;}
.y1b2{bottom:788.695932pt;}
.yc8{bottom:790.947913pt;}
.y165{bottom:791.881512pt;}
.y7a{bottom:792.944007pt;}
.y62{bottom:794.679687pt;}
.y189{bottom:796.380205pt;}
.y4e{bottom:797.847660pt;}
.y212{bottom:800.145833pt;}
.y11{bottom:801.067060pt;}
.y1b{bottom:801.338800pt;}
.y1ef{bottom:801.340746pt;}
.y107{bottom:804.747393pt;}
.y122{bottom:809.346353pt;}
.y36{bottom:810.938400pt;}
.yae{bottom:812.216140pt;}
.y93{bottom:816.128900pt;}
.y11d{bottom:817.080723pt;}
.y158{bottom:817.080725pt;}
.yc7{bottom:818.545567pt;}
.y198{bottom:818.546873pt;}
.y1a{bottom:820.538666pt;}
.y10{bottom:822.225260pt;}
.y61{bottom:822.277340pt;}
.y4d{bottom:825.445313pt;}
.y211{bottom:827.744793pt;}
.y106{bottom:832.343753pt;}
.y79{bottom:835.208327pt;}
.y121{bottom:836.944007pt;}
.y1db{bottom:839.736586pt;}
.y19{bottom:839.738533pt;}
.y35{bottom:839.738866pt;}
.yad{bottom:839.813807pt;}
.y1af{bottom:840.192906pt;}
.yf{bottom:843.383460pt;}
.yc{bottom:843.762074pt;}
.y92{bottom:846.143233pt;}
.y185{bottom:848.177083pt;}
.y60{bottom:849.874993pt;}
.y1b0{bottom:850.219372pt;}
.y11c{bottom:850.479163pt;}
.y4c{bottom:853.042967pt;}
.y164{bottom:853.279949pt;}
.y210{bottom:855.343753pt;}
.y1ee{bottom:858.939706pt;}
.y105{bottom:859.942713pt;}
.y78{bottom:862.805993pt;}
.ye{bottom:864.541660pt;}
.yac{bottom:867.411460pt;}
.y34{bottom:868.538666pt;}
.y154{bottom:868.877604pt;}
.y1ae{bottom:873.739580pt;}
.y91{bottom:873.740887pt;}
.y5f{bottom:877.472660pt;}
.y1ed{bottom:878.137626pt;}
.y18{bottom:878.138933pt;}
.y4b{bottom:880.640620pt;}
.y20f{bottom:882.940100pt;}
.y11a{bottom:883.877604pt;}
.y104{bottom:887.539063pt;}
.y4{bottom:887.850120pt;}
.y77{bottom:890.403645pt;}
.y120{bottom:892.139323pt;}
.yab{bottom:895.009115pt;}
.y33{bottom:897.338472pt;}
.y17{bottom:897.338797pt;}
.y1da{bottom:897.340749pt;}
.yd{bottom:901.338541pt;}
.y184{bottom:903.375000pt;}
.y4a{bottom:908.238281pt;}
.y20e{bottom:910.536459pt;}
.y103{bottom:915.138021pt;}
.y16{bottom:916.538666pt;}
.y3{bottom:917.850119pt;}
.y76{bottom:918.001303pt;}
.y5e{bottom:919.736979pt;}
.yaa{bottom:922.606771pt;}
.y153{bottom:924.072917pt;}
.y1d9{bottom:926.137625pt;}
.y32{bottom:926.138926pt;}
.y90{bottom:928.936197pt;}
.y197{bottom:928.937500pt;}
.y1ec{bottom:935.736582pt;}
.y15{bottom:935.738536pt;}
.y20d{bottom:938.135416pt;}
.y102{bottom:942.734375pt;}
.y75{bottom:945.598959pt;}
.y49{bottom:947.334636pt;}
.y2{bottom:947.850117pt;}
.ya9{bottom:950.204427pt;}
.y14{bottom:954.938406pt;}
.y1d8{bottom:954.939708pt;}
.y17f{bottom:955.171875pt;}
.y8f{bottom:956.533855pt;}
.y181{bottom:956.703124pt;}
.y182{bottom:958.236979pt;}
.y20c{bottom:965.734375pt;}
.y101{bottom:970.333333pt;}
.y1eb{bottom:974.137625pt;}
.y48{bottom:974.932292pt;}
.y14c{bottom:975.869792pt;}
.y14d{bottom:977.403645pt;}
.ya8{bottom:977.802083pt;}
.y74{bottom:978.664063pt;}
.y150{bottom:978.936197pt;}
.y1d7{bottom:983.736582pt;}
.y31{bottom:983.738861pt;}
.y196{bottom:984.130208pt;}
.y8e{bottom:984.131511pt;}
.y20b{bottom:993.330729pt;}
.y100{bottom:997.929688pt;}
.y13{bottom:1003.120000pt;}
.ya7{bottom:1005.778840pt;}
.y73{bottom:1011.729167pt;}
.y30{bottom:1012.538666pt;}
.y47{bottom:1012.909505pt;}
.h1a{height:29.330729pt;}
.hd{height:30.666667pt;}
.h19{height:30.864584pt;}
.hf{height:31.620931pt;}
.h18{height:32.395833pt;}
.h11{height:32.398437pt;}
.ha{height:42.710938pt;}
.h6{height:44.437500pt;}
.h1e{height:45.632000pt;}
.h10{height:47.369790pt;}
.h15{height:47.730469pt;}
.h14{height:47.812499pt;}
.h13{height:49.263021pt;}
.h12{height:50.796875pt;}
.hb{height:52.106772pt;}
.h17{height:52.593751pt;}
.h4{height:53.292958pt;}
.h5{height:54.799998pt;}
.hc{height:56.843750pt;}
.h8{height:56.960000pt;}
.h9{height:57.375000pt;}
.h1d{height:69.195312pt;}
.he{height:71.726815pt;}
.h3{height:83.766477pt;}
.h7{height:94.933331pt;}
.h1c{height:105.989584pt;}
.h16{height:105.992188pt;}
.h1b{height:105.994792pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w16{width:37.000000pt;}
.w17{width:38.000000pt;}
.w18{width:42.000000pt;}
.w24{width:43.000000pt;}
.w25{width:46.000000pt;}
.w26{width:48.000000pt;}
.w23{width:54.000000pt;}
.w22{width:55.000000pt;}
.w21{width:56.000000pt;}
.w27{width:65.000000pt;}
.w7{width:86.000000pt;}
.w6{width:88.000000pt;}
.w1c{width:111.000000pt;}
.w1b{width:112.000000pt;}
.wc{width:116.000000pt;}
.w1d{width:122.000000pt;}
.we{width:123.000000pt;}
.wa{width:124.000000pt;}
.w1e{width:128.000000pt;}
.wb{width:137.000000pt;}
.w14{width:138.000000pt;}
.w13{width:139.000000pt;}
.w5{width:146.000000pt;}
.w1f{width:149.000000pt;}
.w15{width:162.000000pt;}
.w12{width:163.000000pt;}
.w20{width:171.000000pt;}
.w19{width:221.000000pt;}
.wd{width:247.000000pt;}
.w9{width:248.000000pt;}
.w10{width:253.000000pt;}
.wf{width:254.000000pt;}
.w1a{width:255.000000pt;}
.w11{width:256.000000pt;}
.w8{width:257.000000pt;}
.w4{width:258.000000pt;}
.w3{width:396.500000pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.w2{width:794.666667pt;}
.x0{left:0.000000pt;}
.x16{left:6.000000pt;}
.x11{left:7.000000pt;}
.x14{left:8.410156pt;}
.x2c{left:10.566406pt;}
.x3c{left:12.500000pt;}
.x34{left:14.000000pt;}
.x2a{left:16.792969pt;}
.x2e{left:17.757812pt;}
.x51{left:19.500000pt;}
.x49{left:20.828125pt;}
.x4b{left:23.000000pt;}
.x41{left:26.000000pt;}
.x53{left:28.000000pt;}
.x3a{left:39.132813pt;}
.x31{left:40.906250pt;}
.x19{left:43.000000pt;}
.x22{left:44.000000pt;}
.x27{left:45.000000pt;}
.x2f{left:46.000000pt;}
.x47{left:49.351563pt;}
.x1c{left:51.000000pt;}
.x3d{left:53.000000pt;}
.x3b{left:54.515625pt;}
.x48{left:57.453125pt;}
.x1b{left:59.000000pt;}
.x25{left:63.000000pt;}
.x26{left:64.000000pt;}
.x3e{left:65.000000pt;}
.x23{left:66.000000pt;}
.x24{left:67.000000pt;}
.x7{left:72.000000pt;}
.x18{left:73.000000pt;}
.xa{left:76.000000pt;}
.x9{left:77.000000pt;}
.x56{left:81.600000pt;}
.x55{left:93.863855pt;}
.xc{left:96.000000pt;}
.x10{left:99.000000pt;}
.x17{left:100.000000pt;}
.x8{left:120.000000pt;}
.x1a{left:125.656250pt;}
.x1{left:198.425189pt;}
.x42{left:206.000000pt;}
.x46{left:207.000000pt;}
.x28{left:208.000000pt;}
.x30{left:209.000000pt;}
.xf{left:217.451563pt;}
.x4a{left:275.000000pt;}
.xd{left:296.865627pt;}
.x32{left:298.000000pt;}
.x1d{left:320.000000pt;}
.x20{left:321.000000pt;}
.x54{left:328.420307pt;}
.x43{left:331.000000pt;}
.x29{left:333.000000pt;}
.x5a{left:345.443747pt;}
.x3{left:348.383578pt;}
.x12{left:357.000000pt;}
.x59{left:377.779694pt;}
.x4{left:381.414827pt;}
.x4c{left:386.000000pt;}
.xe{left:405.662507pt;}
.x5{left:423.758575pt;}
.x4d{left:430.000000pt;}
.x3f{left:433.000000pt;}
.x57{left:442.732814pt;}
.x1e{left:445.000000pt;}
.x2{left:453.102324pt;}
.x33{left:462.000000pt;}
.x44{left:471.000000pt;}
.x2b{left:473.000000pt;}
.x4e{left:474.000000pt;}
.x6{left:494.862676pt;}
.x35{left:500.000000pt;}
.x13{left:504.000000pt;}
.x4f{left:517.000000pt;}
.x36{left:539.000000pt;}
.x40{left:545.000000pt;}
.x50{left:564.000000pt;}
.x37{left:578.000000pt;}
.x1f{left:583.000000pt;}
.x15{left:593.000000pt;}
.x45{left:600.000000pt;}
.x2d{left:613.000000pt;}
.x38{left:617.000000pt;}
.x5b{left:623.623440pt;}
.x39{left:656.000000pt;}
.x52{left:660.000000pt;}
.x58{left:664.771880pt;}
.x21{left:762.800000pt;}
.xb{left:768.733333pt;}
}




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