
    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_08064c144923ca14adfa8c09.woff')format("woff");}.ff1{font-family:ff1;line-height:0.758000;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_2a0b6ee256f1124a81f07e79.woff')format("woff");}.ff2{font-family:ff2;line-height:0.907000;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_28ad98c0e6a0690f5e5da6e7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.946000;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_15a74103783d7da821614ec2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.074000;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_7105fde73a9de05a24d19b5f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.955000;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_2a0b6ee256f1124a81f07e79.woff')format("woff");}.ff6{font-family:ff6;line-height:0.907000;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_85f57b422d8775233abdb017.woff')format("woff");}.ff7{font-family:ff7;line-height:1.041000;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_f9d6b1a16f89fca23ed3ef3d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.082000;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_6dacec4437b02f7a50515bfd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.940000;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_a04aff2dfc5d200709c26e84.woff')format("woff");}.ffa{font-family:ffa;line-height:1.092000;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_e6c77233af2f383d6114d333.woff')format("woff");}.ffb{font-family:ffb;line-height:0.747000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(-0.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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.699400px;}
.v2{vertical-align:42.000000px;}
.ls12{letter-spacing:-2.838000px;}
.ls15{letter-spacing:-2.793000px;}
.ls18{letter-spacing:-1.740000px;}
.ls4{letter-spacing:-1.320000px;}
.ls16{letter-spacing:-0.741000px;}
.ls14{letter-spacing:-0.570000px;}
.ls9{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.342000px;}
.ls17{letter-spacing:-0.114000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.600000px;}
.lsc{letter-spacing:0.720000px;}
.lsd{letter-spacing:2.226000px;}
.ls5{letter-spacing:20.955600px;}
.ls11{letter-spacing:32.788200px;}
.ls10{letter-spacing:36.067200px;}
.lse{letter-spacing:36.537600px;}
.lsf{letter-spacing:58.232400px;}
.lsa{letter-spacing:79.214400px;}
.ls7{letter-spacing:110.005200px;}
.ls8{letter-spacing:110.137200px;}
.ls6{letter-spacing:110.203200px;}
.ls0{letter-spacing:111.985200px;}
.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;}
}
.wsa6{word-spacing:-43.500000px;}
.ws6{word-spacing:-36.960000px;}
.ws53{word-spacing:-18.678000px;}
.ws26{word-spacing:-18.216000px;}
.ws97{word-spacing:-17.358000px;}
.ws32{word-spacing:-16.320000px;}
.ws9f{word-spacing:-16.131000px;}
.wsa5{word-spacing:-16.017000px;}
.ws98{word-spacing:-15.972000px;}
.ws9d{word-spacing:-15.789000px;}
.ws9e{word-spacing:-15.561000px;}
.wsa1{word-spacing:-15.390000px;}
.ws9c{word-spacing:-14.649000px;}
.wsa0{word-spacing:-13.338000px;}
.wsa7{word-spacing:-12.336000px;}
.ws19{word-spacing:-7.194000px;}
.ws1a{word-spacing:-6.666000px;}
.ws23{word-spacing:-5.478000px;}
.wsc{word-spacing:-5.082000px;}
.ws13{word-spacing:-4.158000px;}
.ws6d{word-spacing:-4.092000px;}
.ws44{word-spacing:-3.960000px;}
.ws17{word-spacing:-3.894000px;}
.ws18{word-spacing:-3.696000px;}
.ws91{word-spacing:-3.564000px;}
.wsa{word-spacing:-3.036000px;}
.ws62{word-spacing:-2.706000px;}
.ws3d{word-spacing:-2.400000px;}
.ws64{word-spacing:-1.782000px;}
.ws96{word-spacing:-1.716000px;}
.ws36{word-spacing:-1.500000px;}
.ws24{word-spacing:-1.452000px;}
.wsa2{word-spacing:-0.969000px;}
.wsb{word-spacing:-0.726000px;}
.ws75{word-spacing:-0.660000px;}
.ws3c{word-spacing:-0.600000px;}
.ws57{word-spacing:-0.540000px;}
.ws6c{word-spacing:-0.528000px;}
.ws88{word-spacing:-0.300000px;}
.ws0{word-spacing:0.000000px;}
.ws5f{word-spacing:0.396000px;}
.ws1c{word-spacing:0.594000px;}
.ws1b{word-spacing:0.660000px;}
.ws2a{word-spacing:0.720000px;}
.wsa3{word-spacing:0.741000px;}
.ws67{word-spacing:1.188000px;}
.ws10{word-spacing:1.320000px;}
.ws87{word-spacing:1.620000px;}
.wsf{word-spacing:1.716000px;}
.ws83{word-spacing:1.740000px;}
.ws16{word-spacing:1.848000px;}
.ws74{word-spacing:1.914000px;}
.ws6a{word-spacing:2.046000px;}
.ws6b{word-spacing:2.244000px;}
.ws1e{word-spacing:2.640000px;}
.ws99{word-spacing:2.838000px;}
.ws55{word-spacing:2.880000px;}
.ws7e{word-spacing:3.360000px;}
.ws3{word-spacing:3.366000px;}
.ws46{word-spacing:3.480000px;}
.ws5{word-spacing:4.290000px;}
.ws15{word-spacing:4.752000px;}
.ws72{word-spacing:4.860000px;}
.ws8a{word-spacing:4.920000px;}
.ws79{word-spacing:5.220000px;}
.ws73{word-spacing:5.346000px;}
.ws8b{word-spacing:5.520000px;}
.ws47{word-spacing:5.760000px;}
.ws7b{word-spacing:5.880000px;}
.ws82{word-spacing:6.060000px;}
.ws1f{word-spacing:6.072000px;}
.ws34{word-spacing:6.360000px;}
.ws56{word-spacing:6.600000px;}
.ws2{word-spacing:6.864000px;}
.ws41{word-spacing:6.960000px;}
.ws33{word-spacing:6.996000px;}
.ws49{word-spacing:8.646000px;}
.ws63{word-spacing:9.108000px;}
.ws3a{word-spacing:9.720000px;}
.ws5b{word-spacing:9.768000px;}
.ws71{word-spacing:10.362000px;}
.ws81{word-spacing:10.860000px;}
.ws7f{word-spacing:11.040000px;}
.ws86{word-spacing:11.460000px;}
.ws8d{word-spacing:11.520000px;}
.ws14{word-spacing:11.550000px;}
.ws6f{word-spacing:11.580000px;}
.ws2e{word-spacing:12.408000px;}
.ws70{word-spacing:12.738000px;}
.ws3b{word-spacing:13.440000px;}
.ws2c{word-spacing:13.500000px;}
.ws68{word-spacing:13.560000px;}
.ws1d{word-spacing:13.662000px;}
.ws8e{word-spacing:13.992000px;}
.ws27{word-spacing:14.256000px;}
.ws12{word-spacing:14.322000px;}
.wsd{word-spacing:14.388000px;}
.ws2b{word-spacing:14.850000px;}
.ws69{word-spacing:14.916000px;}
.ws11{word-spacing:15.444000px;}
.ws7c{word-spacing:15.600000px;}
.ws9b{word-spacing:15.840000px;}
.ws93{word-spacing:16.698000px;}
.wse{word-spacing:16.962000px;}
.ws85{word-spacing:17.394000px;}
.ws77{word-spacing:17.640000px;}
.ws42{word-spacing:18.180000px;}
.ws7d{word-spacing:19.140000px;}
.ws92{word-spacing:19.440000px;}
.ws45{word-spacing:19.860000px;}
.ws35{word-spacing:20.220000px;}
.ws25{word-spacing:21.846000px;}
.ws65{word-spacing:22.140000px;}
.ws7{word-spacing:22.308000px;}
.ws8f{word-spacing:23.280000px;}
.ws89{word-spacing:23.880000px;}
.ws30{word-spacing:23.958000px;}
.ws8{word-spacing:24.090000px;}
.ws66{word-spacing:24.354000px;}
.ws1{word-spacing:25.344000px;}
.ws5d{word-spacing:25.620000px;}
.ws5a{word-spacing:26.532000px;}
.ws4e{word-spacing:26.862000px;}
.ws78{word-spacing:26.880000px;}
.ws90{word-spacing:26.928000px;}
.ws2f{word-spacing:26.994000px;}
.ws5e{word-spacing:28.182000px;}
.ws4c{word-spacing:28.380000px;}
.ws94{word-spacing:28.860000px;}
.ws4f{word-spacing:28.974000px;}
.ws43{word-spacing:28.980000px;}
.ws39{word-spacing:29.100000px;}
.ws9{word-spacing:29.370000px;}
.ws58{word-spacing:29.580000px;}
.ws51{word-spacing:29.700000px;}
.ws4{word-spacing:30.030000px;}
.ws22{word-spacing:31.482000px;}
.ws38{word-spacing:32.010000px;}
.ws2d{word-spacing:32.208000px;}
.ws61{word-spacing:32.940000px;}
.ws4b{word-spacing:33.066000px;}
.ws3e{word-spacing:33.420000px;}
.ws5c{word-spacing:34.122000px;}
.ws80{word-spacing:36.540000px;}
.ws95{word-spacing:37.422000px;}
.ws7a{word-spacing:38.460000px;}
.ws4d{word-spacing:40.788000px;}
.ws50{word-spacing:41.118000px;}
.ws40{word-spacing:42.600000px;}
.ws76{word-spacing:43.320000px;}
.ws21{word-spacing:48.906000px;}
.ws59{word-spacing:49.980000px;}
.ws48{word-spacing:52.140000px;}
.ws20{word-spacing:52.866000px;}
.ws4a{word-spacing:53.460000px;}
.ws29{word-spacing:56.580000px;}
.ws28{word-spacing:62.238000px;}
.ws3f{word-spacing:63.240000px;}
.wsa8{word-spacing:91.162200px;}
.ws9a{word-spacing:91.195200px;}
.wsa4{word-spacing:92.944200px;}
.ws84{word-spacing:99.379200px;}
.ws8c{word-spacing:99.511200px;}
.ws6e{word-spacing:99.577200px;}
.ws31{word-spacing:99.609600px;}
.ws52{word-spacing:101.359200px;}
.ws37{word-spacing:200.280000px;}
.ws54{word-spacing:1091.010600px;}
.ws60{word-spacing:1091.011200px;}
._7d{margin-left:-1223.534400px;}
._5f{margin-left:-1208.988000px;}
._88{margin-left:-1072.645200px;}
._3f{margin-left:-869.880000px;}
._7c{margin-left:-861.168000px;}
._8a{margin-left:-850.357200px;}
._8d{margin-left:-758.881200px;}
._5e{margin-left:-692.617200px;}
._61{margin-left:-659.485200px;}
._56{margin-left:-652.680600px;}
._3e{margin-left:-623.106000px;}
._63{margin-left:-602.184000px;}
._1e{margin-left:-569.448000px;}
._66{margin-left:-556.855200px;}
._21{margin-left:-532.224000px;}
._62{margin-left:-531.154800px;}
._79{margin-left:-503.302800px;}
._65{margin-left:-381.084000px;}
._5d{margin-left:-361.680000px;}
._39{margin-left:-357.456000px;}
._48{margin-left:-338.382000px;}
._17{margin-left:-315.275400px;}
._67{margin-left:-293.686800px;}
._53{margin-left:-291.858600px;}
._25{margin-left:-261.690000px;}
._46{margin-left:-244.272600px;}
._55{margin-left:-235.092000px;}
._36{margin-left:-228.030000px;}
._1f{margin-left:-223.878600px;}
._18{margin-left:-221.364000px;}
._4a{margin-left:-209.550000px;}
._23{margin-left:-202.950000px;}
._50{margin-left:-201.234000px;}
._37{margin-left:-197.340000px;}
._2f{margin-left:-189.228600px;}
._3c{margin-left:-183.744000px;}
._2d{margin-left:-175.362000px;}
._1d{margin-left:-162.426000px;}
._38{margin-left:-150.612000px;}
._30{margin-left:-137.273400px;}
._1a{margin-left:-131.274000px;}
._16{margin-left:-129.894600px;}
._49{margin-left:-127.446000px;}
._45{margin-left:-121.869000px;}
._22{margin-left:-116.424000px;}
._19{margin-left:-114.048000px;}
._44{margin-left:-109.098000px;}
._52{margin-left:-103.422000px;}
._28{margin-left:-97.086000px;}
._29{margin-left:-94.974000px;}
._3d{margin-left:-89.568600px;}
._8b{margin-left:-87.634800px;}
._2b{margin-left:-86.262000px;}
._4b{margin-left:-79.662000px;}
._7b{margin-left:-75.504000px;}
._2e{margin-left:-72.501000px;}
._4f{margin-left:-71.346000px;}
._2a{margin-left:-70.224000px;}
._43{margin-left:-68.640000px;}
._15{margin-left:-66.858000px;}
._2c{margin-left:-61.017000px;}
._31{margin-left:-58.179000px;}
._6b{margin-left:-56.303400px;}
._83{margin-left:-54.831600px;}
._84{margin-left:-53.760000px;}
._78{margin-left:-50.704800px;}
._42{margin-left:-49.302000px;}
._5{margin-left:-46.218600px;}
._5a{margin-left:-44.202000px;}
._4{margin-left:-41.297400px;}
._24{margin-left:-39.402000px;}
._60{margin-left:-35.659800px;}
._7f{margin-left:-32.878200px;}
._a{margin-left:-31.353600px;}
._59{margin-left:-29.673000px;}
._32{margin-left:-28.328400px;}
._13{margin-left:-23.628000px;}
._70{margin-left:-19.387200px;}
._12{margin-left:-18.047400px;}
._c{margin-left:-16.755600px;}
._87{margin-left:-15.751800px;}
._8{margin-left:-14.520000px;}
._8e{margin-left:-9.795000px;}
._7{margin-left:-7.920000px;}
._9{margin-left:-6.600000px;}
._7e{margin-left:-5.569200px;}
._1{margin-left:-4.320000px;}
._0{margin-left:-2.400000px;}
._2{margin-left:-1.114800px;}
._3{width:1.930800px;}
._34{width:3.250200px;}
._80{width:4.345800px;}
._6{width:5.404800px;}
._f{width:6.919800px;}
._6a{width:8.027400px;}
._e{width:9.048600px;}
._d{width:10.980000px;}
._35{width:12.339600px;}
._82{width:13.888800px;}
._4e{width:15.030000px;}
._3b{width:16.071000px;}
._41{width:18.294600px;}
._27{width:19.315800px;}
._4d{width:20.341200px;}
._8c{width:22.195800px;}
._1c{width:23.766600px;}
._75{width:26.812800px;}
._6e{width:27.891000px;}
._5b{width:30.333600px;}
._5c{width:31.677000px;}
._6f{width:33.376200px;}
._b{width:35.376000px;}
._10{width:36.517200px;}
._11{width:37.602600px;}
._6c{width:41.764800px;}
._6d{width:42.844800px;}
._81{width:43.974600px;}
._73{width:45.289200px;}
._74{width:46.465200px;}
._69{width:49.374000px;}
._76{width:54.013200px;}
._77{width:55.675200px;}
._85{width:58.830000px;}
._86{width:59.832000px;}
._68{width:72.612000px;}
._14{width:89.322000px;}
._95{width:132.297000px;}
._96{width:149.682000px;}
._91{width:150.715200px;}
._94{width:153.900000px;}
._92{width:155.610000px;}
._90{width:157.833000px;}
._93{width:159.207000px;}
._8f{width:169.803000px;}
._58{width:183.010800px;}
._71{width:395.136600px;}
._51{width:541.435200px;}
._47{width:664.252800px;}
._72{width:738.714600px;}
._54{width:765.933600px;}
._4c{width:911.185800px;}
._20{width:954.045000px;}
._3a{width:973.239000px;}
._1b{width:979.256400px;}
._89{width:1071.307200px;}
._57{width:1141.990200px;}
._26{width:1189.342200px;}
._33{width:1462.397400px;}
._7a{width:1547.016600px;}
._40{width:1766.627400px;}
._64{width:2131.783800px;}
.fc0{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fcd{color:rgb(30,30,48);}
.fc2{color:rgb(237,154,17);}
.fc5{color:rgb(57,53,54);}
.fc7{color:rgb(210,32,39);}
.fc3{color:transparent;}
.fc6{color:rgb(38,72,163);}
.fc4{color:rgb(84,174,229);}
.fc9{color:rgb(38,71,163);}
.fc8{color:rgb(209,240,245);}
.fcb{color:rgb(38,76,161);}
.fca{color:rgb(37,74,162);}
.fcc{color:rgb(43,66,146);}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.fs3{font-size:132.000000px;}
.fs8{font-size:150.000000px;}
.fsa{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:44.009850px;}
.y11{bottom:45.434700px;}
.y186{bottom:100.190850px;}
.y185{bottom:117.740850px;}
.y13b{bottom:133.862850px;}
.y184{bottom:135.290850px;}
.y18f{bottom:152.840850px;}
.y13a{bottom:159.362850px;}
.y183{bottom:170.390850px;}
.y1ca{bottom:178.407750px;}
.y139{bottom:184.862850px;}
.y182{bottom:187.940850px;}
.y1e9{bottom:194.274750px;}
.y1cb{bottom:195.957750px;}
.y181{bottom:205.490850px;}
.y138{bottom:210.362850px;}
.y1e8{bottom:212.274750px;}
.y1cc{bottom:213.507750px;}
.y7f{bottom:214.622700px;}
.y180{bottom:223.040850px;}
.y1e7{bottom:230.274750px;}
.y1cd{bottom:231.057750px;}
.y1c4{bottom:233.851500px;}
.y137{bottom:235.862850px;}
.y17f{bottom:240.590850px;}
.y7e{bottom:241.622700px;}
.y1e6{bottom:248.274750px;}
.y1ce{bottom:248.607750px;}
.y1c3{bottom:251.401500px;}
.y17e{bottom:258.140850px;}
.y136{bottom:261.362850px;}
.y1e5{bottom:266.274750px;}
.yef{bottom:267.919500px;}
.y7d{bottom:268.622700px;}
.y1c2{bottom:268.951500px;}
.y1c9{bottom:274.261500px;}
.y18e{bottom:275.690850px;}
.y98{bottom:282.848700px;}
.y1e4{bottom:284.274750px;}
.y1c1{bottom:286.501500px;}
.y135{bottom:286.862850px;}
.y17d{bottom:293.240850px;}
.yee{bottom:294.919500px;}
.y7c{bottom:295.622700px;}
.y1e3{bottom:302.274750px;}
.y1c0{bottom:304.051500px;}
.y97{bottom:309.848700px;}
.y17c{bottom:310.790850px;}
.y134{bottom:312.362850px;}
.y1e2{bottom:320.274750px;}
.y1bf{bottom:321.601500px;}
.yed{bottom:321.919500px;}
.y7b{bottom:322.622700px;}
.y1f{bottom:325.382700px;}
.y17b{bottom:328.340850px;}
.y96{bottom:336.848700px;}
.y133{bottom:337.862850px;}
.y1e1{bottom:338.274750px;}
.y197{bottom:339.151350px;}
.y1be{bottom:339.151500px;}
.y17a{bottom:345.890850px;}
.y9b{bottom:348.074700px;}
.yec{bottom:348.919500px;}
.y7a{bottom:349.622700px;}
.y124{bottom:351.848850px;}
.y1e{bottom:352.382700px;}
.y1e0{bottom:356.274750px;}
.y132{bottom:363.362850px;}
.y18d{bottom:363.440850px;}
.y154{bottom:371.323650px;}
.y1bd{bottom:374.251500px;}
.y1df{bottom:374.274750px;}
.y9a{bottom:375.074700px;}
.yeb{bottom:375.919500px;}
.y123{bottom:377.348850px;}
.y1d{bottom:379.382700px;}
.y179{bottom:380.990850px;}
.y131{bottom:388.862850px;}
.y1bc{bottom:391.801500px;}
.y153{bottom:396.823650px;}
.y178{bottom:398.540850px;}
.y99{bottom:402.074700px;}
.y122{bottom:402.848850px;}
.yea{bottom:402.919500px;}
.y79{bottom:403.622700px;}
.y1ea{bottom:405.436500px;}
.y1c{bottom:406.382700px;}
.y1bb{bottom:409.351500px;}
.y130{bottom:414.362850px;}
.y177{bottom:416.090850px;}
.y95{bottom:417.555000px;}
.y152{bottom:422.323500px;}
.y1ba{bottom:426.901500px;}
.ye9{bottom:429.919650px;}
.y78{bottom:430.622700px;}
.y176{bottom:433.640850px;}
.y12f{bottom:439.862850px;}
.y1b9{bottom:444.451500px;}
.y94{bottom:444.555000px;}
.y151{bottom:447.823500px;}
.y18c{bottom:451.190850px;}
.y31{bottom:453.266850px;}
.y121{bottom:453.848850px;}
.ya9{bottom:455.340750px;}
.ye8{bottom:456.919650px;}
.y77{bottom:457.622700px;}
.y1b8{bottom:462.001500px;}
.y12e{bottom:465.362850px;}
.y175{bottom:468.740850px;}
.y93{bottom:471.555000px;}
.y150{bottom:473.323500px;}
.y47{bottom:474.473700px;}
.ya8{bottom:476.340750px;}
.y120{bottom:479.348850px;}
.y196{bottom:479.551350px;}
.y1b7{bottom:479.551500px;}
.y76{bottom:484.622700px;}
.y174{bottom:486.290850px;}
.y12d{bottom:490.862850px;}
.y2d{bottom:493.334700px;}
.ya7{bottom:497.340750px;}
.y92{bottom:498.555000px;}
.y14f{bottom:498.823500px;}
.y62{bottom:498.848700px;}
.y46{bottom:501.473700px;}
.y173{bottom:503.840850px;}
.y11f{bottom:504.848850px;}
.ye7{bottom:510.919650px;}
.y75{bottom:511.622700px;}
.y1b6{bottom:514.651500px;}
.y12c{bottom:516.362850px;}
.y2c{bottom:520.334700px;}
.y172{bottom:521.390850px;}
.y14e{bottom:524.323500px;}
.y91{bottom:525.555000px;}
.y61{bottom:525.848700px;}
.y45{bottom:528.473700px;}
.y11e{bottom:530.348850px;}
.ya6{bottom:531.964950px;}
.y1b5{bottom:532.201500px;}
.y59{bottom:533.834550px;}
.ye6{bottom:537.919650px;}
.y74{bottom:538.622700px;}
.y18b{bottom:538.940850px;}
.y12b{bottom:541.862850px;}
.y2b{bottom:547.334700px;}
.y1b4{bottom:549.751500px;}
.y90{bottom:552.555000px;}
.y60{bottom:552.848700px;}
.ya5{bottom:552.964950px;}
.y11d{bottom:555.848850px;}
.y171{bottom:556.490850px;}
.y58{bottom:560.834550px;}
.ye5{bottom:564.919650px;}
.y73{bottom:565.622700px;}
.y1b3{bottom:567.301500px;}
.yc2{bottom:568.958850px;}
.y170{bottom:574.040850px;}
.y2a{bottom:574.334700px;}
.y14d{bottom:575.323500px;}
.y8f{bottom:579.555000px;}
.y5f{bottom:579.848700px;}
.y44{bottom:582.473700px;}
.y195{bottom:584.851350px;}
.y1b2{bottom:584.851500px;}
.ya4{bottom:585.797850px;}
.y57{bottom:587.834550px;}
.y16f{bottom:591.590850px;}
.ye4{bottom:591.919650px;}
.y72{bottom:592.622700px;}
.y12a{bottom:592.862850px;}
.yc1{bottom:595.958850px;}
.y14c{bottom:600.823500px;}
.ya3{bottom:606.797850px;}
.y5e{bottom:606.848700px;}
.y11c{bottom:606.848850px;}
.y18a{bottom:609.140850px;}
.y43{bottom:609.473700px;}
.y56{bottom:614.834550px;}
.y129{bottom:618.362850px;}
.ye3{bottom:618.919650px;}
.y101{bottom:618.944850px;}
.y71{bottom:619.622700px;}
.y1b1{bottom:619.951500px;}
.yc0{bottom:622.958850px;}
.y9{bottom:625.862850px;}
.y16e{bottom:626.690850px;}
.y29{bottom:628.334700px;}
.y11b{bottom:632.348850px;}
.y8e{bottom:633.555000px;}
.y5d{bottom:633.848700px;}
.y42{bottom:636.473700px;}
.y1b0{bottom:637.501500px;}
.ya2{bottom:641.269650px;}
.y128{bottom:643.862850px;}
.y16d{bottom:644.240850px;}
.ye2{bottom:645.919650px;}
.y100{bottom:645.944850px;}
.y1dd{bottom:646.456050px;}
.y70{bottom:646.622700px;}
.y1fc{bottom:649.898850px;}
.ybf{bottom:649.958850px;}
.y14b{bottom:651.823500px;}
.y8{bottom:652.862850px;}
.y1af{bottom:655.051500px;}
.y28{bottom:655.334700px;}
.y11a{bottom:657.848850px;}
.y8d{bottom:660.555000px;}
.y5c{bottom:660.848700px;}
.y16c{bottom:661.790850px;}
.ya1{bottom:662.269650px;}
.y1dc{bottom:664.456050px;}
.yb1{bottom:666.362850px;}
.y1fb{bottom:667.898850px;}
.y55{bottom:668.834550px;}
.y127{bottom:669.362850px;}
.y194{bottom:672.601350px;}
.y1ae{bottom:672.601500px;}
.ye1{bottom:672.919650px;}
.yff{bottom:672.944850px;}
.y6f{bottom:673.622700px;}
.ybe{bottom:676.958850px;}
.y14a{bottom:677.323500px;}
.y189{bottom:679.340850px;}
.y7{bottom:679.862850px;}
.y3f{bottom:682.319850px;}
.y27{bottom:682.334700px;}
.y1db{bottom:682.456050px;}
.ya0{bottom:683.269650px;}
.y119{bottom:683.348850px;}
.y1fa{bottom:685.898850px;}
.y8c{bottom:687.555000px;}
.y5b{bottom:687.848700px;}
.yb0{bottom:693.362850px;}
.y126{bottom:694.862850px;}
.y54{bottom:695.834550px;}
.y16b{bottom:696.890850px;}
.yfe{bottom:699.944850px;}
.y1da{bottom:700.456050px;}
.y6e{bottom:700.622700px;}
.y149{bottom:702.823500px;}
.y1f9{bottom:703.898850px;}
.ybd{bottom:703.958850px;}
.y6{bottom:706.862850px;}
.y1ad{bottom:707.701500px;}
.y118{bottom:708.848850px;}
.y3e{bottom:709.319850px;}
.y26{bottom:709.334700px;}
.y16a{bottom:714.440850px;}
.y8b{bottom:714.555000px;}
.y9f{bottom:717.002100px;}
.y1d9{bottom:718.456050px;}
.yaf{bottom:720.362850px;}
.y1f8{bottom:721.898850px;}
.y53{bottom:722.834550px;}
.y1ac{bottom:725.251500px;}
.ye0{bottom:726.919650px;}
.yfd{bottom:726.944850px;}
.y6d{bottom:727.622700px;}
.y148{bottom:728.323500px;}
.yd2{bottom:729.823500px;}
.ybc{bottom:730.958850px;}
.y169{bottom:731.990850px;}
.y5{bottom:733.862850px;}
.y117{bottom:734.348850px;}
.y3d{bottom:736.319850px;}
.y1d8{bottom:736.456050px;}
.y1f7{bottom:739.898850px;}
.y8a{bottom:741.555000px;}
.y1ab{bottom:742.801500px;}
.y25{bottom:747.458850px;}
.y168{bottom:749.540850px;}
.y52{bottom:749.834550px;}
.y147{bottom:753.823500px;}
.ydf{bottom:753.919650px;}
.yfc{bottom:753.944850px;}
.y1d7{bottom:754.456050px;}
.yd1{bottom:756.823500px;}
.y1f6{bottom:757.898850px;}
.ybb{bottom:757.958850px;}
.y9e{bottom:759.694650px;}
.y116{bottom:759.848850px;}
.y1aa{bottom:760.351500px;}
.y4{bottom:760.862850px;}
.y3c{bottom:763.319850px;}
.y167{bottom:767.090850px;}
.y65{bottom:767.591700px;}
.y89{bottom:768.555000px;}
.y1d6{bottom:772.456050px;}
.yae{bottom:774.362850px;}
.y24{bottom:774.458850px;}
.y1f5{bottom:775.898850px;}
.y51{bottom:776.834700px;}
.y1a9{bottom:777.901500px;}
.y146{bottom:779.323650px;}
.y9c{bottom:780.694650px;}
.yde{bottom:780.919500px;}
.yd0{bottom:783.823650px;}
.y166{bottom:784.640850px;}
.y125{bottom:785.348850px;}
.y3{bottom:787.862850px;}
.y1d5{bottom:790.456050px;}
.y1f4{bottom:793.898850px;}
.y64{bottom:794.591700px;}
.y193{bottom:795.451350px;}
.y1a8{bottom:795.451500px;}
.y88{bottom:795.555000px;}
.y6a{bottom:801.362850px;}
.y23{bottom:801.458850px;}
.y9d{bottom:801.694650px;}
.y165{bottom:802.190850px;}
.y50{bottom:803.834700px;}
.y145{bottom:804.823650px;}
.ydd{bottom:807.919500px;}
.yfb{bottom:807.944850px;}
.y1d4{bottom:808.456050px;}
.ycf{bottom:810.823650px;}
.y115{bottom:810.848850px;}
.y1f3{bottom:811.898850px;}
.yba{bottom:811.958850px;}
.y2{bottom:814.862850px;}
.y164{bottom:819.740850px;}
.y63{bottom:821.591700px;}
.y87{bottom:822.555000px;}
.y1d3{bottom:826.456050px;}
.y69{bottom:828.362850px;}
.y22{bottom:828.458850px;}
.y1f2{bottom:829.898850px;}
.y1a7{bottom:830.551500px;}
.ydc{bottom:834.919500px;}
.yfa{bottom:834.944850px;}
.y114{bottom:836.348850px;}
.y188{bottom:837.290850px;}
.yce{bottom:837.823650px;}
.yb9{bottom:838.958850px;}
.y41{bottom:841.862850px;}
.y1d2{bottom:844.456050px;}
.y1f1{bottom:847.898850px;}
.y1a6{bottom:848.101500px;}
.y86{bottom:849.555000px;}
.y163{bottom:854.840850px;}
.y17{bottom:855.362850px;}
.y21{bottom:855.458850px;}
.y144{bottom:855.823650px;}
.y4f{bottom:857.834700px;}
.yab{bottom:860.619600px;}
.y113{bottom:861.848850px;}
.ydb{bottom:861.919500px;}
.yf9{bottom:861.944850px;}
.y1d1{bottom:862.456050px;}
.ycd{bottom:864.823650px;}
.y1c6{bottom:865.651350px;}
.y1a5{bottom:865.651500px;}
.y1f0{bottom:865.898850px;}
.yb8{bottom:865.958850px;}
.y3b{bottom:868.862850px;}
.y162{bottom:872.390850px;}
.y85{bottom:876.555000px;}
.yb{bottom:877.334700px;}
.y1d0{bottom:880.456050px;}
.y143{bottom:881.323650px;}
.y16{bottom:882.362850px;}
.y20{bottom:882.458850px;}
.y1a4{bottom:883.201500px;}
.y1ef{bottom:883.898850px;}
.y4e{bottom:884.834700px;}
.yaa{bottom:886.119600px;}
.y112{bottom:887.348850px;}
.yf8{bottom:888.944850px;}
.y161{bottom:889.940850px;}
.yb7{bottom:892.958850px;}
.ya{bottom:895.334700px;}
.y3a{bottom:895.862850px;}
.y1a3{bottom:900.751500px;}
.y1ee{bottom:901.898850px;}
.y84{bottom:903.555000px;}
.y160{bottom:907.490850px;}
.y15{bottom:909.362850px;}
.y4d{bottom:911.834700px;}
.y111{bottom:912.848850px;}
.y108{bottom:915.074850px;}
.y1de{bottom:915.807900px;}
.yda{bottom:915.919500px;}
.yf7{bottom:915.944850px;}
.y1a2{bottom:918.301500px;}
.ycc{bottom:918.823650px;}
.y1ed{bottom:919.898850px;}
.yb6{bottom:919.958850px;}
.y39{bottom:922.862850px;}
.y15f{bottom:925.040850px;}
.y10{bottom:926.834550px;}
.y83{bottom:930.555000px;}
.y1b{bottom:933.122850px;}
.y192{bottom:935.851350px;}
.y1a1{bottom:935.851500px;}
.y14{bottom:936.362850px;}
.y1ec{bottom:937.898850px;}
.y110{bottom:938.348850px;}
.y107{bottom:942.074850px;}
.y15e{bottom:942.590850px;}
.yd9{bottom:942.919500px;}
.yf6{bottom:942.944850px;}
.ycb{bottom:945.823650px;}
.yb5{bottom:946.958850px;}
.y40{bottom:949.862850px;}
.y1c8{bottom:953.401500px;}
.y1eb{bottom:955.898850px;}
.y82{bottom:957.555000px;}
.y142{bottom:957.823650px;}
.y1a{bottom:960.122850px;}
.y15d{bottom:960.140850px;}
.y13{bottom:963.362850px;}
.y10f{bottom:963.848850px;}
.y4c{bottom:965.834700px;}
.yf{bottom:966.434550px;}
.y106{bottom:969.074850px;}
.yd8{bottom:969.919500px;}
.y1a0{bottom:970.951500px;}
.yca{bottom:972.823650px;}
.y38{bottom:976.862850px;}
.y15c{bottom:977.690850px;}
.y141{bottom:983.323650px;}
.y81{bottom:984.555000px;}
.y1fd{bottom:987.060600px;}
.y19{bottom:987.122850px;}
.y1c5{bottom:988.501350px;}
.y19f{bottom:988.501500px;}
.y10e{bottom:989.348850px;}
.y12{bottom:990.362850px;}
.y4b{bottom:992.834700px;}
.y187{bottom:995.240850px;}
.y105{bottom:996.074850px;}
.yd7{bottom:996.919500px;}
.yf5{bottom:996.944850px;}
.yc9{bottom:999.823650px;}
.yb4{bottom:1000.958850px;}
.y37{bottom:1003.862850px;}
.ye{bottom:1006.034550px;}
.y19e{bottom:1006.051500px;}
.y140{bottom:1008.823650px;}
.y15b{bottom:1012.790850px;}
.y10d{bottom:1014.848850px;}
.y68{bottom:1017.362850px;}
.y104{bottom:1023.074850px;}
.y19d{bottom:1023.601500px;}
.yf4{bottom:1023.944850px;}
.yc8{bottom:1026.823650px;}
.y15a{bottom:1030.340850px;}
.y36{bottom:1030.862850px;}
.y13f{bottom:1034.323650px;}
.y80{bottom:1038.555000px;}
.y10c{bottom:1040.348850px;}
.y191{bottom:1041.151500px;}
.y67{bottom:1044.362850px;}
.y18{bottom:1044.734550px;}
.yd{bottom:1045.634550px;}
.y159{bottom:1047.890850px;}
.y103{bottom:1050.074850px;}
.yb3{bottom:1050.734850px;}
.yd6{bottom:1050.919500px;}
.yf3{bottom:1050.944850px;}
.yc7{bottom:1053.823650px;}
.y5a{bottom:1057.862850px;}
.y1c7{bottom:1058.701500px;}
.y13e{bottom:1059.823650px;}
.y158{bottom:1065.440850px;}
.y10b{bottom:1065.848850px;}
.y4a{bottom:1068.458850px;}
.yad{bottom:1071.362850px;}
.y30{bottom:1072.994550px;}
.y19c{bottom:1076.251500px;}
.y35{bottom:1076.708850px;}
.y102{bottom:1077.074850px;}
.yd5{bottom:1077.919500px;}
.yf2{bottom:1077.944850px;}
.yc6{bottom:1080.823650px;}
.y157{bottom:1082.990850px;}
.yc{bottom:1085.234550px;}
.yb2{bottom:1091.234850px;}
.y19b{bottom:1093.801500px;}
.y49{bottom:1095.458850px;}
.y6c{bottom:1096.034700px;}
.yac{bottom:1098.362850px;}
.y156{bottom:1100.540850px;}
.y34{bottom:1103.708850px;}
.yd4{bottom:1104.919500px;}
.yc5{bottom:1107.823650px;}
.y13d{bottom:1110.823650px;}
.y19a{bottom:1111.351500px;}
.y2f{bottom:1113.494550px;}
.y10a{bottom:1114.195350px;}
.y66{bottom:1118.234850px;}
.y48{bottom:1122.458850px;}
.y199{bottom:1128.901500px;}
.y33{bottom:1130.708850px;}
.yf1{bottom:1131.944850px;}
.yc4{bottom:1134.823650px;}
.y13c{bottom:1136.323650px;}
.y6b{bottom:1136.534700px;}
.y198{bottom:1146.451500px;}
.y1cf{bottom:1147.345350px;}
.y155{bottom:1151.084700px;}
.y2e{bottom:1153.994550px;}
.y109{bottom:1154.695350px;}
.y32{bottom:1157.708850px;}
.yd3{bottom:1158.919500px;}
.yf0{bottom:1158.944850px;}
.yc3{bottom:1161.823650px;}
.y190{bottom:1164.001500px;}
.h6{height:38.208000px;}
.h12{height:42.000000px;}
.ha{height:44.820000px;}
.h9{height:45.468000px;}
.h10{height:47.994000px;}
.h2{height:48.708000px;}
.h3{height:49.302000px;}
.hf{height:49.875000px;}
.h4{height:50.520000px;}
.h7{height:55.572000px;}
.hd{height:60.624000px;}
.h8{height:65.676000px;}
.hb{height:75.780000px;}
.hc{height:87.468000px;}
.h5{height:109.164000px;}
.he{height:139.050000px;}
.h11{height:161.298000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x10{left:-718.370100px;}
.x11{left:-384.165300px;}
.x0{left:0.000000px;}
.x12{left:53.854800px;}
.xb{left:55.958700px;}
.x1{left:59.035800px;}
.x17{left:78.535200px;}
.x16{left:80.173800px;}
.x13{left:82.169250px;}
.x9{left:83.586600px;}
.x8{left:85.039350px;}
.x5{left:86.067000px;}
.x22{left:92.350350px;}
.x18{left:98.014650px;}
.x14{left:108.000000px;}
.xa{left:110.899650px;}
.x2{left:135.000000px;}
.xc{left:153.070800px;}
.x6{left:162.000000px;}
.xd{left:174.543300px;}
.x24{left:216.980700px;}
.x25{left:292.738650px;}
.x23{left:294.048450px;}
.x7{left:325.519800px;}
.x21{left:362.509800px;}
.x4{left:400.704300px;}
.x1d{left:457.933950px;}
.x26{left:459.000000px;}
.x1b{left:460.199550px;}
.x1a{left:461.752800px;}
.x19{left:464.716650px;}
.x1c{left:475.589400px;}
.x15{left:486.000000px;}
.xe{left:508.747950px;}
.x1e{left:602.851650px;}
.x1f{left:805.351650px;}
.x20{left:819.531000px;}
.xf{left:821.634750px;}
.x3{left:824.274750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.066133pt;}
.v2{vertical-align:37.333333pt;}
.ls12{letter-spacing:-2.522667pt;}
.ls15{letter-spacing:-2.482667pt;}
.ls18{letter-spacing:-1.546667pt;}
.ls4{letter-spacing:-1.173333pt;}
.ls16{letter-spacing:-0.658667pt;}
.ls14{letter-spacing:-0.506667pt;}
.ls9{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.304000pt;}
.ls17{letter-spacing:-0.101333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsc{letter-spacing:0.640000pt;}
.lsd{letter-spacing:1.978667pt;}
.ls5{letter-spacing:18.627200pt;}
.ls11{letter-spacing:29.145067pt;}
.ls10{letter-spacing:32.059733pt;}
.lse{letter-spacing:32.477867pt;}
.lsf{letter-spacing:51.762133pt;}
.lsa{letter-spacing:70.412800pt;}
.ls7{letter-spacing:97.782400pt;}
.ls8{letter-spacing:97.899733pt;}
.ls6{letter-spacing:97.958400pt;}
.ls0{letter-spacing:99.542400pt;}
.wsa6{word-spacing:-38.666667pt;}
.ws6{word-spacing:-32.853333pt;}
.ws53{word-spacing:-16.602667pt;}
.ws26{word-spacing:-16.192000pt;}
.ws97{word-spacing:-15.429333pt;}
.ws32{word-spacing:-14.506667pt;}
.ws9f{word-spacing:-14.338667pt;}
.wsa5{word-spacing:-14.237333pt;}
.ws98{word-spacing:-14.197333pt;}
.ws9d{word-spacing:-14.034667pt;}
.ws9e{word-spacing:-13.832000pt;}
.wsa1{word-spacing:-13.680000pt;}
.ws9c{word-spacing:-13.021333pt;}
.wsa0{word-spacing:-11.856000pt;}
.wsa7{word-spacing:-10.965333pt;}
.ws19{word-spacing:-6.394667pt;}
.ws1a{word-spacing:-5.925333pt;}
.ws23{word-spacing:-4.869333pt;}
.wsc{word-spacing:-4.517333pt;}
.ws13{word-spacing:-3.696000pt;}
.ws6d{word-spacing:-3.637333pt;}
.ws44{word-spacing:-3.520000pt;}
.ws17{word-spacing:-3.461333pt;}
.ws18{word-spacing:-3.285333pt;}
.ws91{word-spacing:-3.168000pt;}
.wsa{word-spacing:-2.698667pt;}
.ws62{word-spacing:-2.405333pt;}
.ws3d{word-spacing:-2.133333pt;}
.ws64{word-spacing:-1.584000pt;}
.ws96{word-spacing:-1.525333pt;}
.ws36{word-spacing:-1.333333pt;}
.ws24{word-spacing:-1.290667pt;}
.wsa2{word-spacing:-0.861333pt;}
.wsb{word-spacing:-0.645333pt;}
.ws75{word-spacing:-0.586667pt;}
.ws3c{word-spacing:-0.533333pt;}
.ws57{word-spacing:-0.480000pt;}
.ws6c{word-spacing:-0.469333pt;}
.ws88{word-spacing:-0.266667pt;}
.ws0{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.352000pt;}
.ws1c{word-spacing:0.528000pt;}
.ws1b{word-spacing:0.586667pt;}
.ws2a{word-spacing:0.640000pt;}
.wsa3{word-spacing:0.658667pt;}
.ws67{word-spacing:1.056000pt;}
.ws10{word-spacing:1.173333pt;}
.ws87{word-spacing:1.440000pt;}
.wsf{word-spacing:1.525333pt;}
.ws83{word-spacing:1.546667pt;}
.ws16{word-spacing:1.642667pt;}
.ws74{word-spacing:1.701333pt;}
.ws6a{word-spacing:1.818667pt;}
.ws6b{word-spacing:1.994667pt;}
.ws1e{word-spacing:2.346667pt;}
.ws99{word-spacing:2.522667pt;}
.ws55{word-spacing:2.560000pt;}
.ws7e{word-spacing:2.986667pt;}
.ws3{word-spacing:2.992000pt;}
.ws46{word-spacing:3.093333pt;}
.ws5{word-spacing:3.813333pt;}
.ws15{word-spacing:4.224000pt;}
.ws72{word-spacing:4.320000pt;}
.ws8a{word-spacing:4.373333pt;}
.ws79{word-spacing:4.640000pt;}
.ws73{word-spacing:4.752000pt;}
.ws8b{word-spacing:4.906667pt;}
.ws47{word-spacing:5.120000pt;}
.ws7b{word-spacing:5.226667pt;}
.ws82{word-spacing:5.386667pt;}
.ws1f{word-spacing:5.397333pt;}
.ws34{word-spacing:5.653333pt;}
.ws56{word-spacing:5.866667pt;}
.ws2{word-spacing:6.101333pt;}
.ws41{word-spacing:6.186667pt;}
.ws33{word-spacing:6.218667pt;}
.ws49{word-spacing:7.685333pt;}
.ws63{word-spacing:8.096000pt;}
.ws3a{word-spacing:8.640000pt;}
.ws5b{word-spacing:8.682667pt;}
.ws71{word-spacing:9.210667pt;}
.ws81{word-spacing:9.653333pt;}
.ws7f{word-spacing:9.813333pt;}
.ws86{word-spacing:10.186667pt;}
.ws8d{word-spacing:10.240000pt;}
.ws14{word-spacing:10.266667pt;}
.ws6f{word-spacing:10.293333pt;}
.ws2e{word-spacing:11.029333pt;}
.ws70{word-spacing:11.322667pt;}
.ws3b{word-spacing:11.946667pt;}
.ws2c{word-spacing:12.000000pt;}
.ws68{word-spacing:12.053333pt;}
.ws1d{word-spacing:12.144000pt;}
.ws8e{word-spacing:12.437333pt;}
.ws27{word-spacing:12.672000pt;}
.ws12{word-spacing:12.730667pt;}
.wsd{word-spacing:12.789333pt;}
.ws2b{word-spacing:13.200000pt;}
.ws69{word-spacing:13.258667pt;}
.ws11{word-spacing:13.728000pt;}
.ws7c{word-spacing:13.866667pt;}
.ws9b{word-spacing:14.080000pt;}
.ws93{word-spacing:14.842667pt;}
.wse{word-spacing:15.077333pt;}
.ws85{word-spacing:15.461333pt;}
.ws77{word-spacing:15.680000pt;}
.ws42{word-spacing:16.160000pt;}
.ws7d{word-spacing:17.013333pt;}
.ws92{word-spacing:17.280000pt;}
.ws45{word-spacing:17.653333pt;}
.ws35{word-spacing:17.973333pt;}
.ws25{word-spacing:19.418667pt;}
.ws65{word-spacing:19.680000pt;}
.ws7{word-spacing:19.829333pt;}
.ws8f{word-spacing:20.693333pt;}
.ws89{word-spacing:21.226667pt;}
.ws30{word-spacing:21.296000pt;}
.ws8{word-spacing:21.413333pt;}
.ws66{word-spacing:21.648000pt;}
.ws1{word-spacing:22.528000pt;}
.ws5d{word-spacing:22.773333pt;}
.ws5a{word-spacing:23.584000pt;}
.ws4e{word-spacing:23.877333pt;}
.ws78{word-spacing:23.893333pt;}
.ws90{word-spacing:23.936000pt;}
.ws2f{word-spacing:23.994667pt;}
.ws5e{word-spacing:25.050667pt;}
.ws4c{word-spacing:25.226667pt;}
.ws94{word-spacing:25.653333pt;}
.ws4f{word-spacing:25.754667pt;}
.ws43{word-spacing:25.760000pt;}
.ws39{word-spacing:25.866667pt;}
.ws9{word-spacing:26.106667pt;}
.ws58{word-spacing:26.293333pt;}
.ws51{word-spacing:26.400000pt;}
.ws4{word-spacing:26.693333pt;}
.ws22{word-spacing:27.984000pt;}
.ws38{word-spacing:28.453333pt;}
.ws2d{word-spacing:28.629333pt;}
.ws61{word-spacing:29.280000pt;}
.ws4b{word-spacing:29.392000pt;}
.ws3e{word-spacing:29.706667pt;}
.ws5c{word-spacing:30.330667pt;}
.ws80{word-spacing:32.480000pt;}
.ws95{word-spacing:33.264000pt;}
.ws7a{word-spacing:34.186667pt;}
.ws4d{word-spacing:36.256000pt;}
.ws50{word-spacing:36.549333pt;}
.ws40{word-spacing:37.866667pt;}
.ws76{word-spacing:38.506667pt;}
.ws21{word-spacing:43.472000pt;}
.ws59{word-spacing:44.426667pt;}
.ws48{word-spacing:46.346667pt;}
.ws20{word-spacing:46.992000pt;}
.ws4a{word-spacing:47.520000pt;}
.ws29{word-spacing:50.293333pt;}
.ws28{word-spacing:55.322667pt;}
.ws3f{word-spacing:56.213333pt;}
.wsa8{word-spacing:81.033067pt;}
.ws9a{word-spacing:81.062400pt;}
.wsa4{word-spacing:82.617067pt;}
.ws84{word-spacing:88.337067pt;}
.ws8c{word-spacing:88.454400pt;}
.ws6e{word-spacing:88.513067pt;}
.ws31{word-spacing:88.541867pt;}
.ws52{word-spacing:90.097067pt;}
.ws37{word-spacing:178.026667pt;}
.ws54{word-spacing:969.787200pt;}
.ws60{word-spacing:969.787733pt;}
._7d{margin-left:-1087.586133pt;}
._5f{margin-left:-1074.656000pt;}
._88{margin-left:-953.462400pt;}
._3f{margin-left:-773.226667pt;}
._7c{margin-left:-765.482667pt;}
._8a{margin-left:-755.873067pt;}
._8d{margin-left:-674.561067pt;}
._5e{margin-left:-615.659733pt;}
._61{margin-left:-586.209067pt;}
._56{margin-left:-580.160533pt;}
._3e{margin-left:-553.872000pt;}
._63{margin-left:-535.274667pt;}
._1e{margin-left:-506.176000pt;}
._66{margin-left:-494.982400pt;}
._21{margin-left:-473.088000pt;}
._62{margin-left:-472.137600pt;}
._79{margin-left:-447.380267pt;}
._65{margin-left:-338.741333pt;}
._5d{margin-left:-321.493333pt;}
._39{margin-left:-317.738667pt;}
._48{margin-left:-300.784000pt;}
._17{margin-left:-280.244800pt;}
._67{margin-left:-261.054933pt;}
._53{margin-left:-259.429867pt;}
._25{margin-left:-232.613333pt;}
._46{margin-left:-217.131200pt;}
._55{margin-left:-208.970667pt;}
._36{margin-left:-202.693333pt;}
._1f{margin-left:-199.003200pt;}
._18{margin-left:-196.768000pt;}
._4a{margin-left:-186.266667pt;}
._23{margin-left:-180.400000pt;}
._50{margin-left:-178.874667pt;}
._37{margin-left:-175.413333pt;}
._2f{margin-left:-168.203200pt;}
._3c{margin-left:-163.328000pt;}
._2d{margin-left:-155.877333pt;}
._1d{margin-left:-144.378667pt;}
._38{margin-left:-133.877333pt;}
._30{margin-left:-122.020800pt;}
._1a{margin-left:-116.688000pt;}
._16{margin-left:-115.461867pt;}
._49{margin-left:-113.285333pt;}
._45{margin-left:-108.328000pt;}
._22{margin-left:-103.488000pt;}
._19{margin-left:-101.376000pt;}
._44{margin-left:-96.976000pt;}
._52{margin-left:-91.930667pt;}
._28{margin-left:-86.298667pt;}
._29{margin-left:-84.421333pt;}
._3d{margin-left:-79.616533pt;}
._8b{margin-left:-77.897600pt;}
._2b{margin-left:-76.677333pt;}
._4b{margin-left:-70.810667pt;}
._7b{margin-left:-67.114667pt;}
._2e{margin-left:-64.445333pt;}
._4f{margin-left:-63.418667pt;}
._2a{margin-left:-62.421333pt;}
._43{margin-left:-61.013333pt;}
._15{margin-left:-59.429333pt;}
._2c{margin-left:-54.237333pt;}
._31{margin-left:-51.714667pt;}
._6b{margin-left:-50.047467pt;}
._83{margin-left:-48.739200pt;}
._84{margin-left:-47.786667pt;}
._78{margin-left:-45.070933pt;}
._42{margin-left:-43.824000pt;}
._5{margin-left:-41.083200pt;}
._5a{margin-left:-39.290667pt;}
._4{margin-left:-36.708800pt;}
._24{margin-left:-35.024000pt;}
._60{margin-left:-31.697600pt;}
._7f{margin-left:-29.225067pt;}
._a{margin-left:-27.869867pt;}
._59{margin-left:-26.376000pt;}
._32{margin-left:-25.180800pt;}
._13{margin-left:-21.002667pt;}
._70{margin-left:-17.233067pt;}
._12{margin-left:-16.042133pt;}
._c{margin-left:-14.893867pt;}
._87{margin-left:-14.001600pt;}
._8{margin-left:-12.906667pt;}
._8e{margin-left:-8.706667pt;}
._7{margin-left:-7.040000pt;}
._9{margin-left:-5.866667pt;}
._7e{margin-left:-4.950400pt;}
._1{margin-left:-3.840000pt;}
._0{margin-left:-2.133333pt;}
._2{margin-left:-0.990933pt;}
._3{width:1.716267pt;}
._34{width:2.889067pt;}
._80{width:3.862933pt;}
._6{width:4.804267pt;}
._f{width:6.150933pt;}
._6a{width:7.135467pt;}
._e{width:8.043200pt;}
._d{width:9.760000pt;}
._35{width:10.968533pt;}
._82{width:12.345600pt;}
._4e{width:13.360000pt;}
._3b{width:14.285333pt;}
._41{width:16.261867pt;}
._27{width:17.169600pt;}
._4d{width:18.081067pt;}
._8c{width:19.729600pt;}
._1c{width:21.125867pt;}
._75{width:23.833600pt;}
._6e{width:24.792000pt;}
._5b{width:26.963200pt;}
._5c{width:28.157333pt;}
._6f{width:29.667733pt;}
._b{width:31.445333pt;}
._10{width:32.459733pt;}
._11{width:33.424533pt;}
._6c{width:37.124267pt;}
._6d{width:38.084267pt;}
._81{width:39.088533pt;}
._73{width:40.257067pt;}
._74{width:41.302400pt;}
._69{width:43.888000pt;}
._76{width:48.011733pt;}
._77{width:49.489067pt;}
._85{width:52.293333pt;}
._86{width:53.184000pt;}
._68{width:64.544000pt;}
._14{width:79.397333pt;}
._95{width:117.597333pt;}
._96{width:133.050667pt;}
._91{width:133.969067pt;}
._94{width:136.800000pt;}
._92{width:138.320000pt;}
._90{width:140.296000pt;}
._93{width:141.517333pt;}
._8f{width:150.936000pt;}
._58{width:162.676267pt;}
._71{width:351.232533pt;}
._51{width:481.275733pt;}
._47{width:590.446933pt;}
._72{width:656.635200pt;}
._54{width:680.829867pt;}
._4c{width:809.942933pt;}
._20{width:848.040000pt;}
._3a{width:865.101333pt;}
._1b{width:870.450133pt;}
._89{width:952.273067pt;}
._57{width:1015.102400pt;}
._26{width:1057.193067pt;}
._33{width:1299.908800pt;}
._7a{width:1375.125867pt;}
._40{width:1570.335467pt;}
._64{width:1894.918933pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.fs3{font-size:117.333333pt;}
.fs8{font-size:133.333333pt;}
.fsa{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.119867pt;}
.y11{bottom:40.386400pt;}
.y186{bottom:89.058533pt;}
.y185{bottom:104.658533pt;}
.y13b{bottom:118.989200pt;}
.y184{bottom:120.258533pt;}
.y18f{bottom:135.858533pt;}
.y13a{bottom:141.655867pt;}
.y183{bottom:151.458533pt;}
.y1ca{bottom:158.584667pt;}
.y139{bottom:164.322533pt;}
.y182{bottom:167.058533pt;}
.y1e9{bottom:172.688667pt;}
.y1cb{bottom:174.184667pt;}
.y181{bottom:182.658533pt;}
.y138{bottom:186.989200pt;}
.y1e8{bottom:188.688667pt;}
.y1cc{bottom:189.784667pt;}
.y7f{bottom:190.775733pt;}
.y180{bottom:198.258533pt;}
.y1e7{bottom:204.688667pt;}
.y1cd{bottom:205.384667pt;}
.y1c4{bottom:207.868000pt;}
.y137{bottom:209.655867pt;}
.y17f{bottom:213.858533pt;}
.y7e{bottom:214.775733pt;}
.y1e6{bottom:220.688667pt;}
.y1ce{bottom:220.984667pt;}
.y1c3{bottom:223.468000pt;}
.y17e{bottom:229.458533pt;}
.y136{bottom:232.322533pt;}
.y1e5{bottom:236.688667pt;}
.yef{bottom:238.150667pt;}
.y7d{bottom:238.775733pt;}
.y1c2{bottom:239.068000pt;}
.y1c9{bottom:243.788000pt;}
.y18e{bottom:245.058533pt;}
.y98{bottom:251.421067pt;}
.y1e4{bottom:252.688667pt;}
.y1c1{bottom:254.668000pt;}
.y135{bottom:254.989200pt;}
.y17d{bottom:260.658533pt;}
.yee{bottom:262.150667pt;}
.y7c{bottom:262.775733pt;}
.y1e3{bottom:268.688667pt;}
.y1c0{bottom:270.268000pt;}
.y97{bottom:275.421067pt;}
.y17c{bottom:276.258533pt;}
.y134{bottom:277.655867pt;}
.y1e2{bottom:284.688667pt;}
.y1bf{bottom:285.868000pt;}
.yed{bottom:286.150667pt;}
.y7b{bottom:286.775733pt;}
.y1f{bottom:289.229067pt;}
.y17b{bottom:291.858533pt;}
.y96{bottom:299.421067pt;}
.y133{bottom:300.322533pt;}
.y1e1{bottom:300.688667pt;}
.y197{bottom:301.467867pt;}
.y1be{bottom:301.468000pt;}
.y17a{bottom:307.458533pt;}
.y9b{bottom:309.399733pt;}
.yec{bottom:310.150667pt;}
.y7a{bottom:310.775733pt;}
.y124{bottom:312.754533pt;}
.y1e{bottom:313.229067pt;}
.y1e0{bottom:316.688667pt;}
.y132{bottom:322.989200pt;}
.y18d{bottom:323.058533pt;}
.y154{bottom:330.065467pt;}
.y1bd{bottom:332.668000pt;}
.y1df{bottom:332.688667pt;}
.y9a{bottom:333.399733pt;}
.yeb{bottom:334.150667pt;}
.y123{bottom:335.421200pt;}
.y1d{bottom:337.229067pt;}
.y179{bottom:338.658533pt;}
.y131{bottom:345.655867pt;}
.y1bc{bottom:348.268000pt;}
.y153{bottom:352.732133pt;}
.y178{bottom:354.258533pt;}
.y99{bottom:357.399733pt;}
.y122{bottom:358.087867pt;}
.yea{bottom:358.150667pt;}
.y79{bottom:358.775733pt;}
.y1ea{bottom:360.388000pt;}
.y1c{bottom:361.229067pt;}
.y1bb{bottom:363.868000pt;}
.y130{bottom:368.322533pt;}
.y177{bottom:369.858533pt;}
.y95{bottom:371.160000pt;}
.y152{bottom:375.398667pt;}
.y1ba{bottom:379.468000pt;}
.ye9{bottom:382.150800pt;}
.y78{bottom:382.775733pt;}
.y176{bottom:385.458533pt;}
.y12f{bottom:390.989200pt;}
.y1b9{bottom:395.068000pt;}
.y94{bottom:395.160000pt;}
.y151{bottom:398.065333pt;}
.y18c{bottom:401.058533pt;}
.y31{bottom:402.903867pt;}
.y121{bottom:403.421200pt;}
.ya9{bottom:404.747333pt;}
.ye8{bottom:406.150800pt;}
.y77{bottom:406.775733pt;}
.y1b8{bottom:410.668000pt;}
.y12e{bottom:413.655867pt;}
.y175{bottom:416.658533pt;}
.y93{bottom:419.160000pt;}
.y150{bottom:420.732000pt;}
.y47{bottom:421.754400pt;}
.ya8{bottom:423.414000pt;}
.y120{bottom:426.087867pt;}
.y196{bottom:426.267867pt;}
.y1b7{bottom:426.268000pt;}
.y76{bottom:430.775733pt;}
.y174{bottom:432.258533pt;}
.y12d{bottom:436.322533pt;}
.y2d{bottom:438.519733pt;}
.ya7{bottom:442.080667pt;}
.y92{bottom:443.160000pt;}
.y14f{bottom:443.398667pt;}
.y62{bottom:443.421067pt;}
.y46{bottom:445.754400pt;}
.y173{bottom:447.858533pt;}
.y11f{bottom:448.754533pt;}
.ye7{bottom:454.150800pt;}
.y75{bottom:454.775733pt;}
.y1b6{bottom:457.468000pt;}
.y12c{bottom:458.989200pt;}
.y2c{bottom:462.519733pt;}
.y172{bottom:463.458533pt;}
.y14e{bottom:466.065333pt;}
.y91{bottom:467.160000pt;}
.y61{bottom:467.421067pt;}
.y45{bottom:469.754400pt;}
.y11e{bottom:471.421200pt;}
.ya6{bottom:472.857733pt;}
.y1b5{bottom:473.068000pt;}
.y59{bottom:474.519600pt;}
.ye6{bottom:478.150800pt;}
.y74{bottom:478.775733pt;}
.y18b{bottom:479.058533pt;}
.y12b{bottom:481.655867pt;}
.y2b{bottom:486.519733pt;}
.y1b4{bottom:488.668000pt;}
.y90{bottom:491.160000pt;}
.y60{bottom:491.421067pt;}
.ya5{bottom:491.524400pt;}
.y11d{bottom:494.087867pt;}
.y171{bottom:494.658533pt;}
.y58{bottom:498.519600pt;}
.ye5{bottom:502.150800pt;}
.y73{bottom:502.775733pt;}
.y1b3{bottom:504.268000pt;}
.yc2{bottom:505.741200pt;}
.y170{bottom:510.258533pt;}
.y2a{bottom:510.519733pt;}
.y14d{bottom:511.398667pt;}
.y8f{bottom:515.160000pt;}
.y5f{bottom:515.421067pt;}
.y44{bottom:517.754400pt;}
.y195{bottom:519.867867pt;}
.y1b2{bottom:519.868000pt;}
.ya4{bottom:520.709200pt;}
.y57{bottom:522.519600pt;}
.y16f{bottom:525.858533pt;}
.ye4{bottom:526.150800pt;}
.y72{bottom:526.775733pt;}
.y12a{bottom:526.989200pt;}
.yc1{bottom:529.741200pt;}
.y14c{bottom:534.065333pt;}
.ya3{bottom:539.375867pt;}
.y5e{bottom:539.421067pt;}
.y11c{bottom:539.421200pt;}
.y18a{bottom:541.458533pt;}
.y43{bottom:541.754400pt;}
.y56{bottom:546.519600pt;}
.y129{bottom:549.655867pt;}
.ye3{bottom:550.150800pt;}
.y101{bottom:550.173200pt;}
.y71{bottom:550.775733pt;}
.y1b1{bottom:551.068000pt;}
.yc0{bottom:553.741200pt;}
.y9{bottom:556.322533pt;}
.y16e{bottom:557.058533pt;}
.y29{bottom:558.519733pt;}
.y11b{bottom:562.087867pt;}
.y8e{bottom:563.160000pt;}
.y5d{bottom:563.421067pt;}
.y42{bottom:565.754400pt;}
.y1b0{bottom:566.668000pt;}
.ya2{bottom:570.017467pt;}
.y128{bottom:572.322533pt;}
.y16d{bottom:572.658533pt;}
.ye2{bottom:574.150800pt;}
.y100{bottom:574.173200pt;}
.y1dd{bottom:574.627600pt;}
.y70{bottom:574.775733pt;}
.y1fc{bottom:577.687867pt;}
.ybf{bottom:577.741200pt;}
.y14b{bottom:579.398667pt;}
.y8{bottom:580.322533pt;}
.y1af{bottom:582.268000pt;}
.y28{bottom:582.519733pt;}
.y11a{bottom:584.754533pt;}
.y8d{bottom:587.160000pt;}
.y5c{bottom:587.421067pt;}
.y16c{bottom:588.258533pt;}
.ya1{bottom:588.684133pt;}
.y1dc{bottom:590.627600pt;}
.yb1{bottom:592.322533pt;}
.y1fb{bottom:593.687867pt;}
.y55{bottom:594.519600pt;}
.y127{bottom:594.989200pt;}
.y194{bottom:597.867867pt;}
.y1ae{bottom:597.868000pt;}
.ye1{bottom:598.150800pt;}
.yff{bottom:598.173200pt;}
.y6f{bottom:598.775733pt;}
.ybe{bottom:601.741200pt;}
.y14a{bottom:602.065333pt;}
.y189{bottom:603.858533pt;}
.y7{bottom:604.322533pt;}
.y3f{bottom:606.506533pt;}
.y27{bottom:606.519733pt;}
.y1db{bottom:606.627600pt;}
.ya0{bottom:607.350800pt;}
.y119{bottom:607.421200pt;}
.y1fa{bottom:609.687867pt;}
.y8c{bottom:611.160000pt;}
.y5b{bottom:611.421067pt;}
.yb0{bottom:616.322533pt;}
.y126{bottom:617.655867pt;}
.y54{bottom:618.519600pt;}
.y16b{bottom:619.458533pt;}
.yfe{bottom:622.173200pt;}
.y1da{bottom:622.627600pt;}
.y6e{bottom:622.775733pt;}
.y149{bottom:624.732000pt;}
.y1f9{bottom:625.687867pt;}
.ybd{bottom:625.741200pt;}
.y6{bottom:628.322533pt;}
.y1ad{bottom:629.068000pt;}
.y118{bottom:630.087867pt;}
.y3e{bottom:630.506533pt;}
.y26{bottom:630.519733pt;}
.y16a{bottom:635.058533pt;}
.y8b{bottom:635.160000pt;}
.y9f{bottom:637.335200pt;}
.y1d9{bottom:638.627600pt;}
.yaf{bottom:640.322533pt;}
.y1f8{bottom:641.687867pt;}
.y53{bottom:642.519600pt;}
.y1ac{bottom:644.668000pt;}
.ye0{bottom:646.150800pt;}
.yfd{bottom:646.173200pt;}
.y6d{bottom:646.775733pt;}
.y148{bottom:647.398667pt;}
.yd2{bottom:648.732000pt;}
.ybc{bottom:649.741200pt;}
.y169{bottom:650.658533pt;}
.y5{bottom:652.322533pt;}
.y117{bottom:652.754533pt;}
.y3d{bottom:654.506533pt;}
.y1d8{bottom:654.627600pt;}
.y1f7{bottom:657.687867pt;}
.y8a{bottom:659.160000pt;}
.y1ab{bottom:660.268000pt;}
.y25{bottom:664.407867pt;}
.y168{bottom:666.258533pt;}
.y52{bottom:666.519600pt;}
.y147{bottom:670.065333pt;}
.ydf{bottom:670.150800pt;}
.yfc{bottom:670.173200pt;}
.y1d7{bottom:670.627600pt;}
.yd1{bottom:672.732000pt;}
.y1f6{bottom:673.687867pt;}
.ybb{bottom:673.741200pt;}
.y9e{bottom:675.284133pt;}
.y116{bottom:675.421200pt;}
.y1aa{bottom:675.868000pt;}
.y4{bottom:676.322533pt;}
.y3c{bottom:678.506533pt;}
.y167{bottom:681.858533pt;}
.y65{bottom:682.303733pt;}
.y89{bottom:683.160000pt;}
.y1d6{bottom:686.627600pt;}
.yae{bottom:688.322533pt;}
.y24{bottom:688.407867pt;}
.y1f5{bottom:689.687867pt;}
.y51{bottom:690.519733pt;}
.y1a9{bottom:691.468000pt;}
.y146{bottom:692.732133pt;}
.y9c{bottom:693.950800pt;}
.yde{bottom:694.150667pt;}
.yd0{bottom:696.732133pt;}
.y166{bottom:697.458533pt;}
.y125{bottom:698.087867pt;}
.y3{bottom:700.322533pt;}
.y1d5{bottom:702.627600pt;}
.y1f4{bottom:705.687867pt;}
.y64{bottom:706.303733pt;}
.y193{bottom:707.067867pt;}
.y1a8{bottom:707.068000pt;}
.y88{bottom:707.160000pt;}
.y6a{bottom:712.322533pt;}
.y23{bottom:712.407867pt;}
.y9d{bottom:712.617467pt;}
.y165{bottom:713.058533pt;}
.y50{bottom:714.519733pt;}
.y145{bottom:715.398800pt;}
.ydd{bottom:718.150667pt;}
.yfb{bottom:718.173200pt;}
.y1d4{bottom:718.627600pt;}
.ycf{bottom:720.732133pt;}
.y115{bottom:720.754533pt;}
.y1f3{bottom:721.687867pt;}
.yba{bottom:721.741200pt;}
.y2{bottom:724.322533pt;}
.y164{bottom:728.658533pt;}
.y63{bottom:730.303733pt;}
.y87{bottom:731.160000pt;}
.y1d3{bottom:734.627600pt;}
.y69{bottom:736.322533pt;}
.y22{bottom:736.407867pt;}
.y1f2{bottom:737.687867pt;}
.y1a7{bottom:738.268000pt;}
.ydc{bottom:742.150667pt;}
.yfa{bottom:742.173200pt;}
.y114{bottom:743.421200pt;}
.y188{bottom:744.258533pt;}
.yce{bottom:744.732133pt;}
.yb9{bottom:745.741200pt;}
.y41{bottom:748.322533pt;}
.y1d2{bottom:750.627600pt;}
.y1f1{bottom:753.687867pt;}
.y1a6{bottom:753.868000pt;}
.y86{bottom:755.160000pt;}
.y163{bottom:759.858533pt;}
.y17{bottom:760.322533pt;}
.y21{bottom:760.407867pt;}
.y144{bottom:760.732133pt;}
.y4f{bottom:762.519733pt;}
.yab{bottom:764.995200pt;}
.y113{bottom:766.087867pt;}
.ydb{bottom:766.150667pt;}
.yf9{bottom:766.173200pt;}
.y1d1{bottom:766.627600pt;}
.ycd{bottom:768.732133pt;}
.y1c6{bottom:769.467867pt;}
.y1a5{bottom:769.468000pt;}
.y1f0{bottom:769.687867pt;}
.yb8{bottom:769.741200pt;}
.y3b{bottom:772.322533pt;}
.y162{bottom:775.458533pt;}
.y85{bottom:779.160000pt;}
.yb{bottom:779.853067pt;}
.y1d0{bottom:782.627600pt;}
.y143{bottom:783.398800pt;}
.y16{bottom:784.322533pt;}
.y20{bottom:784.407867pt;}
.y1a4{bottom:785.068000pt;}
.y1ef{bottom:785.687867pt;}
.y4e{bottom:786.519733pt;}
.yaa{bottom:787.661867pt;}
.y112{bottom:788.754533pt;}
.yf8{bottom:790.173200pt;}
.y161{bottom:791.058533pt;}
.yb7{bottom:793.741200pt;}
.ya{bottom:795.853067pt;}
.y3a{bottom:796.322533pt;}
.y1a3{bottom:800.668000pt;}
.y1ee{bottom:801.687867pt;}
.y84{bottom:803.160000pt;}
.y160{bottom:806.658533pt;}
.y15{bottom:808.322533pt;}
.y4d{bottom:810.519733pt;}
.y111{bottom:811.421200pt;}
.y108{bottom:813.399867pt;}
.y1de{bottom:814.051467pt;}
.yda{bottom:814.150667pt;}
.yf7{bottom:814.173200pt;}
.y1a2{bottom:816.268000pt;}
.ycc{bottom:816.732133pt;}
.y1ed{bottom:817.687867pt;}
.yb6{bottom:817.741200pt;}
.y39{bottom:820.322533pt;}
.y15f{bottom:822.258533pt;}
.y10{bottom:823.852933pt;}
.y83{bottom:827.160000pt;}
.y1b{bottom:829.442533pt;}
.y192{bottom:831.867867pt;}
.y1a1{bottom:831.868000pt;}
.y14{bottom:832.322533pt;}
.y1ec{bottom:833.687867pt;}
.y110{bottom:834.087867pt;}
.y107{bottom:837.399867pt;}
.y15e{bottom:837.858533pt;}
.yd9{bottom:838.150667pt;}
.yf6{bottom:838.173200pt;}
.ycb{bottom:840.732133pt;}
.yb5{bottom:841.741200pt;}
.y40{bottom:844.322533pt;}
.y1c8{bottom:847.468000pt;}
.y1eb{bottom:849.687867pt;}
.y82{bottom:851.160000pt;}
.y142{bottom:851.398800pt;}
.y1a{bottom:853.442533pt;}
.y15d{bottom:853.458533pt;}
.y13{bottom:856.322533pt;}
.y10f{bottom:856.754533pt;}
.y4c{bottom:858.519733pt;}
.yf{bottom:859.052933pt;}
.y106{bottom:861.399867pt;}
.yd8{bottom:862.150667pt;}
.y1a0{bottom:863.068000pt;}
.yca{bottom:864.732133pt;}
.y38{bottom:868.322533pt;}
.y15c{bottom:869.058533pt;}
.y141{bottom:874.065467pt;}
.y81{bottom:875.160000pt;}
.y1fd{bottom:877.387200pt;}
.y19{bottom:877.442533pt;}
.y1c5{bottom:878.667867pt;}
.y19f{bottom:878.668000pt;}
.y10e{bottom:879.421200pt;}
.y12{bottom:880.322533pt;}
.y4b{bottom:882.519733pt;}
.y187{bottom:884.658533pt;}
.y105{bottom:885.399867pt;}
.yd7{bottom:886.150667pt;}
.yf5{bottom:886.173200pt;}
.yc9{bottom:888.732133pt;}
.yb4{bottom:889.741200pt;}
.y37{bottom:892.322533pt;}
.ye{bottom:894.252933pt;}
.y19e{bottom:894.268000pt;}
.y140{bottom:896.732133pt;}
.y15b{bottom:900.258533pt;}
.y10d{bottom:902.087867pt;}
.y68{bottom:904.322533pt;}
.y104{bottom:909.399867pt;}
.y19d{bottom:909.868000pt;}
.yf4{bottom:910.173200pt;}
.yc8{bottom:912.732133pt;}
.y15a{bottom:915.858533pt;}
.y36{bottom:916.322533pt;}
.y13f{bottom:919.398800pt;}
.y80{bottom:923.160000pt;}
.y10c{bottom:924.754533pt;}
.y191{bottom:925.468000pt;}
.y67{bottom:928.322533pt;}
.y18{bottom:928.652933pt;}
.yd{bottom:929.452933pt;}
.y159{bottom:931.458533pt;}
.y103{bottom:933.399867pt;}
.yb3{bottom:933.986533pt;}
.yd6{bottom:934.150667pt;}
.yf3{bottom:934.173200pt;}
.yc7{bottom:936.732133pt;}
.y5a{bottom:940.322533pt;}
.y1c7{bottom:941.068000pt;}
.y13e{bottom:942.065467pt;}
.y158{bottom:947.058533pt;}
.y10b{bottom:947.421200pt;}
.y4a{bottom:949.741200pt;}
.yad{bottom:952.322533pt;}
.y30{bottom:953.772933pt;}
.y19c{bottom:956.668000pt;}
.y35{bottom:957.074533pt;}
.y102{bottom:957.399867pt;}
.yd5{bottom:958.150667pt;}
.yf2{bottom:958.173200pt;}
.yc6{bottom:960.732133pt;}
.y157{bottom:962.658533pt;}
.yc{bottom:964.652933pt;}
.yb2{bottom:969.986533pt;}
.y19b{bottom:972.268000pt;}
.y49{bottom:973.741200pt;}
.y6c{bottom:974.253067pt;}
.yac{bottom:976.322533pt;}
.y156{bottom:978.258533pt;}
.y34{bottom:981.074533pt;}
.yd4{bottom:982.150667pt;}
.yc5{bottom:984.732133pt;}
.y13d{bottom:987.398800pt;}
.y19a{bottom:987.868000pt;}
.y2f{bottom:989.772933pt;}
.y10a{bottom:990.395867pt;}
.y66{bottom:993.986533pt;}
.y48{bottom:997.741200pt;}
.y199{bottom:1003.468000pt;}
.y33{bottom:1005.074533pt;}
.yf1{bottom:1006.173200pt;}
.yc4{bottom:1008.732133pt;}
.y13c{bottom:1010.065467pt;}
.y6b{bottom:1010.253067pt;}
.y198{bottom:1019.068000pt;}
.y1cf{bottom:1019.862533pt;}
.y155{bottom:1023.186400pt;}
.y2e{bottom:1025.772933pt;}
.y109{bottom:1026.395867pt;}
.y32{bottom:1029.074533pt;}
.yd3{bottom:1030.150667pt;}
.yf0{bottom:1030.173200pt;}
.yc3{bottom:1032.732133pt;}
.y190{bottom:1034.668000pt;}
.h6{height:33.962667pt;}
.h12{height:37.333333pt;}
.ha{height:39.840000pt;}
.h9{height:40.416000pt;}
.h10{height:42.661333pt;}
.h2{height:43.296000pt;}
.h3{height:43.824000pt;}
.hf{height:44.333333pt;}
.h4{height:44.906667pt;}
.h7{height:49.397333pt;}
.hd{height:53.888000pt;}
.h8{height:58.378667pt;}
.hb{height:67.360000pt;}
.hc{height:77.749333pt;}
.h5{height:97.034667pt;}
.he{height:123.600000pt;}
.h11{height:143.376000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x10{left:-638.551200pt;}
.x11{left:-341.480267pt;}
.x0{left:0.000000pt;}
.x12{left:47.870933pt;}
.xb{left:49.741067pt;}
.x1{left:52.476267pt;}
.x17{left:69.809067pt;}
.x16{left:71.265600pt;}
.x13{left:73.039333pt;}
.x9{left:74.299200pt;}
.x8{left:75.590533pt;}
.x5{left:76.504000pt;}
.x22{left:82.089200pt;}
.x18{left:87.124133pt;}
.x14{left:96.000000pt;}
.xa{left:98.577467pt;}
.x2{left:120.000000pt;}
.xc{left:136.062933pt;}
.x6{left:144.000000pt;}
.xd{left:155.149600pt;}
.x24{left:192.871733pt;}
.x25{left:260.212133pt;}
.x23{left:261.376400pt;}
.x7{left:289.350933pt;}
.x21{left:322.230933pt;}
.x4{left:356.181600pt;}
.x1d{left:407.052400pt;}
.x26{left:408.000000pt;}
.x1b{left:409.066267pt;}
.x1a{left:410.446933pt;}
.x19{left:413.081467pt;}
.x1c{left:422.746133pt;}
.x15{left:432.000000pt;}
.xe{left:452.220400pt;}
.x1e{left:535.868133pt;}
.x1f{left:715.868133pt;}
.x20{left:728.472000pt;}
.xf{left:730.342000pt;}
.x3{left:732.688667pt;}
}




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