
    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_e9e56c5cc1e6a489de894612.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900391;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_743f3e34888b9e175234964e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_327cbebf191e71069e9daf42.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.908691;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_548ec72a68a77b22931e00ac.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d1fc77f6490058e131ae3546.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.707031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:16.476540px;}
.ls6{letter-spacing:16.476562px;}
.ls3{letter-spacing:16.476585px;}
.ls1{letter-spacing:18.000034px;}
.ls4{letter-spacing:20.976540px;}
.ls8{letter-spacing:20.976585px;}
.lsa{letter-spacing:25.451818px;}
.ls5{letter-spacing:43.476405px;}
.ls7{letter-spacing:196.476585px;}
.lsb{letter-spacing:227.976585px;}
.ls9{letter-spacing:317.976540px;}
.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:-41.999999px;}
.ws51{word-spacing:-40.605468px;}
.ws4d{word-spacing:-37.221680px;}
.ws37{word-spacing:-36.000000px;}
.ws5b{word-spacing:-33.000001px;}
.wsf{word-spacing:-28.437288px;}
.wse{word-spacing:-27.171663px;}
.ws11{word-spacing:-25.273203px;}
.ws13{word-spacing:-24.991965px;}
.ws69{word-spacing:-22.605502px;}
.ws4e{word-spacing:-22.605492px;}
.ws12{word-spacing:-22.605491px;}
.ws3f{word-spacing:-22.605483px;}
.ws1b{word-spacing:-22.605480px;}
.ws4c{word-spacing:-22.605473px;}
.ws10{word-spacing:-22.605471px;}
.ws31{word-spacing:-22.605470px;}
.wsd{word-spacing:-22.605468px;}
.ws2c{word-spacing:-22.605466px;}
.ws38{word-spacing:-22.605460px;}
.ws26{word-spacing:-22.605458px;}
.ws40{word-spacing:-22.605446px;}
.ws50{word-spacing:-22.605435px;}
.ws5{word-spacing:-21.048268px;}
.ws3{word-spacing:-21.048224px;}
.wsb{word-spacing:-21.045606px;}
.ws1{word-spacing:-21.045602px;}
.ws4{word-spacing:-21.045564px;}
.ws15{word-spacing:-21.043054px;}
.ws8{word-spacing:-21.037807px;}
.ws7{word-spacing:-21.037785px;}
.ws16{word-spacing:-21.037716px;}
.ws6{word-spacing:-21.035151px;}
.wsac{word-spacing:-20.756987px;}
.wsb6{word-spacing:-20.754207px;}
.wsa1{word-spacing:-20.754204px;}
.wsad{word-spacing:-20.754200px;}
.ws9d{word-spacing:-20.754189px;}
.wsb0{word-spacing:-20.749009px;}
.wsa7{word-spacing:-20.746425px;}
.ws72{word-spacing:-20.745257px;}
.wsbb{word-spacing:-20.745215px;}
.ws6e{word-spacing:-20.745148px;}
.wsa3{word-spacing:-20.745141px;}
.ws78{word-spacing:-20.745125px;}
.ws8a{word-spacing:-20.745121px;}
.ws6d{word-spacing:-20.745119px;}
.ws7d{word-spacing:-20.745096px;}
.ws9f{word-spacing:-20.745035px;}
.ws0{word-spacing:-19.516291px;}
.ws46{word-spacing:-18.105503px;}
.ws29{word-spacing:-18.105492px;}
.ws1e{word-spacing:-18.105480px;}
.ws3a{word-spacing:-18.105471px;}
.ws1d{word-spacing:-18.105468px;}
.ws20{word-spacing:-18.105458px;}
.ws2d{word-spacing:-18.105446px;}
.ws36{word-spacing:-18.105435px;}
.ws5e{word-spacing:-18.105333px;}
.ws66{word-spacing:-18.000036px;}
.ws28{word-spacing:-18.000023px;}
.ws6b{word-spacing:-18.000022px;}
.ws64{word-spacing:-18.000013px;}
.ws17{word-spacing:-18.000011px;}
.ws1f{word-spacing:-18.000003px;}
.ws22{word-spacing:-18.000001px;}
.wsc{word-spacing:-17.999999px;}
.ws57{word-spacing:-17.999978px;}
.wsa{word-spacing:-16.954104px;}
.ws65{word-spacing:-16.545574px;}
.ws5c{word-spacing:-16.545529px;}
.ws9c{word-spacing:-16.537791px;}
.ws9e{word-spacing:-16.537766px;}
.ws63{word-spacing:-16.535233px;}
.ws90{word-spacing:-16.535174px;}
.ws5f{word-spacing:-16.535169px;}
.wsba{word-spacing:-16.535166px;}
.ws7c{word-spacing:-16.535160px;}
.ws58{word-spacing:-16.535159px;}
.ws71{word-spacing:-16.535157px;}
.wsaf{word-spacing:-16.535155px;}
.ws94{word-spacing:-16.535153px;}
.wsae{word-spacing:-16.535073px;}
.wsb7{word-spacing:-16.532537px;}
.ws74{word-spacing:-16.532523px;}
.ws62{word-spacing:-16.532521px;}
.wsbd{word-spacing:-16.532447px;}
.ws70{word-spacing:-16.529961px;}
.ws59{word-spacing:-16.527331px;}
.ws67{word-spacing:-16.527322px;}
.ws95{word-spacing:-16.527289px;}
.wsb8{word-spacing:-16.523438px;}
.wsa2{word-spacing:-16.523416px;}
.wsc0{word-spacing:-16.262047px;}
.wsb5{word-spacing:-16.256903px;}
.ws8b{word-spacing:-16.256804px;}
.ws7f{word-spacing:-16.245125px;}
.ws6f{word-spacing:-16.245119px;}
.ws79{word-spacing:-16.245117px;}
.ws34{word-spacing:-13.605502px;}
.ws27{word-spacing:-13.605492px;}
.ws33{word-spacing:-13.605491px;}
.ws45{word-spacing:-13.605481px;}
.ws1c{word-spacing:-13.605480px;}
.ws25{word-spacing:-13.605469px;}
.ws35{word-spacing:-13.605458px;}
.ws9{word-spacing:-13.500004px;}
.ws5d{word-spacing:-12.045574px;}
.ws61{word-spacing:-12.042985px;}
.ws9a{word-spacing:-12.042910px;}
.ws93{word-spacing:-12.035304px;}
.ws98{word-spacing:-12.035208px;}
.ws60{word-spacing:-12.034992px;}
.wsbc{word-spacing:-12.032572px;}
.wsa4{word-spacing:-12.029961px;}
.ws7b{word-spacing:-12.024803px;}
.ws92{word-spacing:-11.759461px;}
.ws9b{word-spacing:-11.756897px;}
.ws96{word-spacing:-11.756871px;}
.ws7a{word-spacing:-11.756836px;}
.ws97{word-spacing:-11.745120px;}
.ws91{word-spacing:-11.745118px;}
.ws77{word-spacing:-11.745116px;}
.ws49{word-spacing:-9.105503px;}
.ws43{word-spacing:-9.105491px;}
.ws47{word-spacing:-9.105481px;}
.ws2f{word-spacing:-9.105480px;}
.ws21{word-spacing:-9.105469px;}
.ws48{word-spacing:-9.105458px;}
.ws30{word-spacing:-9.105446px;}
.ws56{word-spacing:-9.105435px;}
.wsa8{word-spacing:-7.537916px;}
.ws99{word-spacing:-7.535191px;}
.ws7e{word-spacing:-7.524803px;}
.ws75{word-spacing:-7.269882px;}
.ws86{word-spacing:-7.269875px;}
.wsa0{word-spacing:-7.269862px;}
.ws87{word-spacing:-7.261957px;}
.ws85{word-spacing:-7.245118px;}
.wsb1{word-spacing:-7.245117px;}
.wsb3{word-spacing:-7.245096px;}
.ws4a{word-spacing:-4.605491px;}
.ws19{word-spacing:-4.605480px;}
.ws2b{word-spacing:-4.605469px;}
.ws2a{word-spacing:-4.605458px;}
.ws6a{word-spacing:-4.605446px;}
.ws5a{word-spacing:-3.035262px;}
.wsb2{word-spacing:-3.035153px;}
.ws76{word-spacing:-3.032610px;}
.ws73{word-spacing:-2.745118px;}
.ws8f{word-spacing:-2.745116px;}
.wsab{word-spacing:-2.745103px;}
.ws3c{word-spacing:-0.105491px;}
.ws4b{word-spacing:-0.105480px;}
.ws1a{word-spacing:-0.105468px;}
.ws3e{word-spacing:-0.105457px;}
.ws41{word-spacing:-0.105446px;}
.ws18{word-spacing:-0.072000px;}
.ws14{word-spacing:0.000000px;}
.ws23{word-spacing:4.394508px;}
.ws32{word-spacing:4.394509px;}
.ws42{word-spacing:4.394520px;}
.ws3d{word-spacing:4.394531px;}
.ws4f{word-spacing:4.394553px;}
.ws81{word-spacing:5.964744px;}
.wsc2{word-spacing:5.975197px;}
.wsb9{word-spacing:6.243077px;}
.wsc1{word-spacing:6.243162px;}
.ws80{word-spacing:6.243165px;}
.ws84{word-spacing:6.254859px;}
.ws2e{word-spacing:8.894498px;}
.ws55{word-spacing:8.894532px;}
.ws52{word-spacing:8.894553px;}
.ws83{word-spacing:10.464908px;}
.ws82{word-spacing:10.754881px;}
.ws53{word-spacing:13.394520px;}
.ws6c{word-spacing:17.894532px;}
.ws24{word-spacing:17.894543px;}
.ws54{word-spacing:18.000000px;}
.ws89{word-spacing:19.464783px;}
.ws88{word-spacing:19.732718px;}
.ws44{word-spacing:22.394531px;}
.ws3b{word-spacing:35.894531px;}
.ws68{word-spacing:48.584250px;}
.wsaa{word-spacing:55.753513px;}
.ws39{word-spacing:58.394498px;}
.wsa9{word-spacing:64.454340px;}
.wsbe{word-spacing:96.243160px;}
.wsbf{word-spacing:100.464770px;}
.wsb4{word-spacing:100.743161px;}
.ws8e{word-spacing:159.254740px;}
.ws8d{word-spacing:163.464927px;}
.ws8c{word-spacing:163.754883px;}
.wsc4{word-spacing:186.254859px;}
.wsc3{word-spacing:194.964831px;}
.wsa6{word-spacing:280.754904px;}
.wsa5{word-spacing:284.967476px;}
._14{margin-left:-7.980315px;}
._2{margin-left:-6.400913px;}
._5{margin-left:-5.027343px;}
._1{margin-left:-3.328110px;}
._0{margin-left:-1.500075px;}
._a{width:1.340066px;}
._3{width:2.488580px;}
._7{width:3.660376px;}
._9{width:5.136941px;}
._b{width:7.351873px;}
._6{width:8.617408px;}
._4{width:11.711158px;}
._1f{width:15.468963px;}
._20{width:16.800202px;}
._8{width:18.000000px;}
._22{width:20.249355px;}
._28{width:21.373254px;}
._d{width:22.500002px;}
._1e{width:25.472679px;}
._f{width:27.000002px;}
._21{width:29.411648px;}
._e{width:31.500000px;}
._1d{width:34.446586px;}
._10{width:35.999999px;}
._27{width:38.875004px;}
._c{width:40.500000px;}
._23{width:42.997470px;}
._17{width:44.999999px;}
._2a{width:47.791619px;}
._11{width:49.500000px;}
._13{width:54.000002px;}
._25{width:56.182971px;}
._1b{width:58.499999px;}
._24{width:59.587481px;}
._12{width:63.000002px;}
._19{width:67.500000px;}
._16{width:72.000013px;}
._1c{width:81.445300px;}
._18{width:84.023438px;}
._1a{width:90.000000px;}
._15{width:103.499999px;}
._29{width:142.328173px;}
._26{width:322.352916px;}
.fc5{color:rgb(17,84,204);}
.fc4{color:rgb(11,83,148);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs4{font-size:66.000002px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:78.000003px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.ya1{bottom:22.117668px;}
.y9c{bottom:22.117676px;}
.ya6{bottom:22.117677px;}
.ya8{bottom:22.117678px;}
.ya9{bottom:53.165038px;}
.ya5{bottom:53.165040px;}
.ya0{bottom:53.165043px;}
.y83{bottom:54.670899px;}
.y65{bottom:54.671267px;}
.y44{bottom:54.671632px;}
.yb{bottom:54.671724px;}
.y22{bottom:54.671815px;}
.y16b{bottom:54.672364px;}
.y1bc{bottom:54.673828px;}
.y64{bottom:71.293948px;}
.y21{bottom:71.294308px;}
.y9f{bottom:84.212403px;}
.y13d{bottom:111.577148px;}
.y120{bottom:114.503903px;}
.ya4{bottom:115.259766px;}
.y179{bottom:116.781733px;}
.y244{bottom:118.567378px;}
.y213{bottom:121.221673px;}
.yd3{bottom:129.503903px;}
.y19e{bottom:131.326168px;}
.y82{bottom:134.185553px;}
.y243{bottom:137.542963px;}
.y100{bottom:137.900393px;}
.y192{bottom:137.973637px;}
.y1e2{bottom:140.150393px;}
.y212{bottom:140.197258px;}
.y15c{bottom:140.900393px;}
.y13c{bottom:142.625977px;}
.y11f{bottom:145.551263px;}
.ye8{bottom:146.386237px;}
.y9{bottom:151.827206px;}
.ybd{bottom:155.895998px;}
.y242{bottom:156.515623px;}
.y211{bottom:159.169918px;}
.y1f0{bottom:160.549808px;}
.yd2{bottom:160.551263px;}
.y81{bottom:165.232913px;}
.yff{bottom:168.947752px;}
.y9e{bottom:170.002444px;}
.y1e1{bottom:171.196283px;}
.y15b{bottom:171.947752px;}
.y63{bottom:173.598637px;}
.y13b{bottom:173.671867px;}
.y11e{bottom:176.598637px;}
.ye7{bottom:177.433598px;}
.y210{bottom:178.142578px;}
.y241{bottom:178.335943px;}
.y1bb{bottom:185.601563px;}
.ybc{bottom:186.943358px;}
.yd1{bottom:191.598637px;}
.y80{bottom:196.280273px;}
.y20f{bottom:197.115238px;}
.yfe{bottom:199.995113px;}
.y240{bottom:200.156248px;}
.y1ae{bottom:201.726563px;}
.y1e0{bottom:202.242188px;}
.y15a{bottom:202.995113px;}
.y16a{bottom:203.739262px;}
.y62{bottom:204.645998px;}
.y13a{bottom:204.720698px;}
.y11d{bottom:207.645998px;}
.ye6{bottom:208.480957px;}
.y20e{bottom:216.087883px;}
.ybb{bottom:217.990717px;}
.y23f{bottom:219.128908px;}
.y1ef{bottom:222.644528px;}
.yd0{bottom:222.645998px;}
.y7f{bottom:227.327633px;}
.yfd{bottom:231.042487px;}
.y9d{bottom:232.097172px;}
.y1ad{bottom:232.775392px;}
.y1df{bottom:233.291017px;}
.y159{bottom:234.042487px;}
.y169{bottom:234.788092px;}
.y20d{bottom:235.063483px;}
.y61{bottom:235.693358px;}
.y139{bottom:235.766602px;}
.y23e{bottom:238.102019px;}
.y11c{bottom:238.693358px;}
.y42{bottom:238.949707px;}
.ye5{bottom:239.528317px;}
.yba{bottom:249.038092px;}
.ycf{bottom:253.693358px;}
.y20c{bottom:254.036128px;}
.y23d{bottom:257.575198px;}
.y7e{bottom:258.374992px;}
.yfc{bottom:262.089847px;}
.y191{bottom:262.163092px;}
.y1ac{bottom:263.821283px;}
.y1de{bottom:264.339847px;}
.y158{bottom:265.089847px;}
.y168{bottom:265.833983px;}
.y60{bottom:266.740717px;}
.y138{bottom:266.815433px;}
.y11b{bottom:269.740717px;}
.ye4{bottom:270.575677px;}
.y20b{bottom:273.008788px;}
.y23c{bottom:276.548309px;}
.y41{bottom:277.752322px;}
.y9b{bottom:280.019532px;}
.yb9{bottom:280.085452px;}
.y1ee{bottom:284.739262px;}
.yce{bottom:284.740717px;}
.y8{bottom:287.492981px;}
.y7d{bottom:289.422368px;}
.y20a{bottom:291.984373px;}
.yfb{bottom:293.137207px;}
.y190{bottom:293.210453px;}
.y1ab{bottom:294.870113px;}
.y1dd{bottom:295.385738px;}
.y23b{bottom:296.024413px;}
.y157{bottom:296.137207px;}
.y167{bottom:296.882812px;}
.y5f{bottom:297.788092px;}
.y137{bottom:297.861323px;}
.y11a{bottom:300.788092px;}
.y40{bottom:301.555298px;}
.ye3{bottom:301.623052px;}
.y209{bottom:310.957033px;}
.y23a{bottom:314.997073px;}
.ycd{bottom:315.788092px;}
.y7c{bottom:320.469727px;}
.yfa{bottom:324.184567px;}
.y18f{bottom:324.257812px;}
.y3f{bottom:325.358273px;}
.y1aa{bottom:325.916017px;}
.y1dc{bottom:326.431642px;}
.y156{bottom:327.184567px;}
.y166{bottom:327.928717px;}
.y5e{bottom:328.835452px;}
.y136{bottom:328.910152px;}
.y208{bottom:329.929693px;}
.y119{bottom:331.835452px;}
.ye2{bottom:332.670413px;}
.y7{bottom:332.714906px;}
.y1c4{bottom:340.016602px;}
.yb8{bottom:342.180172px;}
.y1ed{bottom:346.833983px;}
.ycc{bottom:346.835452px;}
.y207{bottom:348.902338px;}
.y3e{bottom:349.161248px;}
.y7b{bottom:351.517088px;}
.y239{bottom:352.945318px;}
.yf9{bottom:355.231927px;}
.y1db{bottom:357.480473px;}
.y155{bottom:358.231927px;}
.y165{bottom:358.977533px;}
.y19d{bottom:359.715817px;}
.y5d{bottom:359.882812px;}
.y135{bottom:359.956058px;}
.y118{bottom:362.882812px;}
.ye1{bottom:363.717773px;}
.y206{bottom:367.878389px;}
.y178{bottom:369.921383px;}
.y1c3{bottom:371.062492px;}
.y238{bottom:371.917963px;}
.y3d{bottom:372.964238px;}
.yb7{bottom:373.227533px;}
.y9a{bottom:373.231927px;}
.ycb{bottom:377.882812px;}
.y7a{bottom:382.564447px;}
.yf8{bottom:386.279302px;}
.y1a9{bottom:386.824213px;}
.y205{bottom:387.351568px;}
.y1da{bottom:388.529302px;}
.y154{bottom:389.279302px;}
.y164{bottom:390.023438px;}
.y19c{bottom:390.761722px;}
.y237{bottom:390.890623px;}
.y5c{bottom:390.930172px;}
.y134{bottom:391.004887px;}
.y117{bottom:393.930172px;}
.ye0{bottom:394.765133px;}
.y3c{bottom:396.767212px;}
.y177{bottom:400.968742px;}
.y99{bottom:404.279302px;}
.y204{bottom:406.324213px;}
.yb6{bottom:408.925777px;}
.y1ec{bottom:408.928717px;}
.yca{bottom:408.930172px;}
.y236{bottom:409.863283px;}
.y79{bottom:413.611823px;}
.y1a8{bottom:415.284673px;}
.y18e{bottom:416.354002px;}
.yf7{bottom:417.326662px;}
.y153{bottom:420.326662px;}
.y3b{bottom:420.570187px;}
.y19b{bottom:421.810552px;}
.y5b{bottom:421.977533px;}
.y133{bottom:422.050778px;}
.y1c2{bottom:422.484373px;}
.y116{bottom:424.977533px;}
.y203{bottom:425.296873px;}
.y1ba{bottom:425.516602px;}
.ydf{bottom:425.812492px;}
.y235{bottom:428.835943px;}
.y176{bottom:432.016117px;}
.y1d9{bottom:434.882814px;}
.y98{bottom:435.326662px;}
.y163{bottom:436.072267px;}
.yc9{bottom:439.977533px;}
.y1c1{bottom:441.457033px;}
.y202{bottom:444.269533px;}
.y3a{bottom:444.373163px;}
.y78{bottom:444.659183px;}
.y18d{bottom:447.401363px;}
.y234{bottom:447.811528px;}
.yf6{bottom:448.374023px;}
.y152{bottom:451.374023px;}
.y19a{bottom:452.856443px;}
.y132{bottom:453.099607px;}
.y115{bottom:456.024907px;}
.y1b9{bottom:456.562492px;}
.yde{bottom:456.859867px;}
.y5a{bottom:462.024907px;}
.y175{bottom:463.063477px;}
.y201{bottom:463.242644px;}
.y97{bottom:466.374023px;}
.y233{bottom:466.784173px;}
.y6{bottom:468.380681px;}
.y1eb{bottom:471.023438px;}
.yc8{bottom:471.024907px;}
.y77{bottom:475.706543px;}
.y18c{bottom:478.448738px;}
.yf5{bottom:479.421382px;}
.y39{bottom:480.071782px;}
.y162{bottom:482.121098px;}
.y151{bottom:482.421382px;}
.y200{bottom:482.715823px;}
.y131{bottom:484.145512px;}
.y232{bottom:485.757299px;}
.y114{bottom:487.072268px;}
.y1b8{bottom:487.611322px;}
.ydd{bottom:487.907228px;}
.yb5{bottom:491.718742px;}
.y59{bottom:493.072268px;}
.y174{bottom:494.110838px;}
.y96{bottom:497.421382px;}
.y1ff{bottom:501.688934px;}
.yc7{bottom:502.072268px;}
.y1d8{bottom:502.227533px;}
.y5{bottom:504.602561px;}
.y76{bottom:506.753902px;}
.y231{bottom:508.078123px;}
.y18b{bottom:509.496098px;}
.yf4{bottom:510.468742px;}
.y161{bottom:513.166988px;}
.y150{bottom:513.468742px;}
.y199{bottom:513.764653px;}
.y130{bottom:515.194342px;}
.y113{bottom:518.119627px;}
.y1b7{bottom:518.660152px;}
.y38{bottom:518.874757px;}
.ydc{bottom:518.954588px;}
.y1fe{bottom:521.165038px;}
.yb4{bottom:522.766118px;}
.y58{bottom:524.119627px;}
.y173{bottom:525.158198px;}
.y95{bottom:528.468742px;}
.y230{bottom:529.895503px;}
.y1ea{bottom:533.118158px;}
.yc6{bottom:533.119627px;}
.y1d7{bottom:533.273438px;}
.y75{bottom:537.801263px;}
.y1fd{bottom:540.137698px;}
.y18a{bottom:540.543458px;}
.y4{bottom:540.824471px;}
.yf3{bottom:541.516118px;}
.y37{bottom:542.677733px;}
.y160{bottom:544.215818px;}
.y14f{bottom:544.516118px;}
.y12f{bottom:546.240233px;}
.y112{bottom:549.166988px;}
.y1b6{bottom:549.706058px;}
.ydb{bottom:550.001948px;}
.y22f{bottom:551.715823px;}
.yb3{bottom:553.813477px;}
.y57{bottom:555.166988px;}
.y172{bottom:556.205573px;}
.y1fc{bottom:559.110358px;}
.y94{bottom:559.516118px;}
.yc5{bottom:564.166988px;}
.y1d6{bottom:564.322268px;}
.y36{bottom:566.480707px;}
.y74{bottom:568.848637px;}
.y189{bottom:571.590818px;}
.yf2{bottom:572.563477px;}
.y22e{bottom:573.533654px;}
.y15f{bottom:575.261723px;}
.y14e{bottom:575.563477px;}
.y12e{bottom:577.289063px;}
.y1fb{bottom:578.085943px;}
.y111{bottom:580.214363px;}
.yda{bottom:581.049323px;}
.yb2{bottom:584.860838px;}
.y56{bottom:586.214363px;}
.y171{bottom:587.252933px;}
.y20{bottom:590.030827px;}
.y35{bottom:590.283698px;}
.y93{bottom:590.563477px;}
.y22d{bottom:593.009758px;}
.y1e9{bottom:595.212893px;}
.yc4{bottom:595.214363px;}
.y1d5{bottom:595.371098px;}
.y1fa{bottom:597.058588px;}
.y73{bottom:599.895998px;}
.y188{bottom:602.638178px;}
.yf1{bottom:603.610838px;}
.y15e{bottom:606.310552px;}
.y14d{bottom:606.610838px;}
.y12d{bottom:608.334967px;}
.y110{bottom:611.261723px;}
.y1b5{bottom:611.800777px;}
.y22c{bottom:611.982418px;}
.yd9{bottom:612.096683px;}
.y34{bottom:614.086673px;}
.y1f{bottom:615.229057px;}
.yb1{bottom:615.908198px;}
.y55{bottom:617.261723px;}
.y170{bottom:618.300293px;}
.y92{bottom:621.610838px;}
.yc3{bottom:626.261723px;}
.y1d4{bottom:626.416988px;}
.y72{bottom:630.943357px;}
.y22b{bottom:630.955078px;}
.y187{bottom:633.685552px;}
.yf0{bottom:634.658198px;}
.y1f9{bottom:637.054687px;}
.y14c{bottom:637.658198px;}
.y33{bottom:637.889648px;}
.y12c{bottom:639.383783px;}
.y1e{bottom:640.427302px;}
.y10f{bottom:642.309082px;}
.y1b4{bottom:642.849608px;}
.yd8{bottom:643.144043px;}
.yb0{bottom:646.955573px;}
.y54{bottom:648.309082px;}
.y22a{bottom:649.928189px;}
.y15d{bottom:652.356442px;}
.y91{bottom:652.658198px;}
.y1a7{bottom:656.049323px;}
.y1e8{bottom:657.307613px;}
.yc2{bottom:657.309082px;}
.y1d3{bottom:657.462893px;}
.y32{bottom:661.692622px;}
.y186{bottom:664.732912px;}
.y1d{bottom:665.625548px;}
.yef{bottom:665.705573px;}
.y14b{bottom:668.705573px;}
.y229{bottom:669.404293px;}
.y16f{bottom:669.720703px;}
.y12b{bottom:670.429688px;}
.y10e{bottom:673.356442px;}
.y1b3{bottom:673.895512px;}
.yd7{bottom:674.191402px;}
.y71{bottom:676.990718px;}
.y1c0{bottom:677.021482px;}
.yaf{bottom:678.002933px;}
.y53{bottom:679.356442px;}
.y90{bottom:683.705573px;}
.y31{bottom:685.495612px;}
.y1a6{bottom:687.096683px;}
.y3{bottom:687.905051px;}
.yc1{bottom:688.356442px;}
.y228{bottom:688.377404px;}
.y1d2{bottom:688.511723px;}
.y1c{bottom:690.823792px;}
.y185{bottom:695.780273px;}
.yee{bottom:696.752933px;}
.y14a{bottom:699.752933px;}
.y12a{bottom:701.478517px;}
.y1f8{bottom:704.100592px;}
.y10d{bottom:704.403802px;}
.y1b2{bottom:704.941402px;}
.yd6{bottom:705.238763px;}
.y227{bottom:707.850583px;}
.y1bf{bottom:708.070312px;}
.yae{bottom:709.050293px;}
.y30{bottom:709.298588px;}
.y52{bottom:710.403802px;}
.y8f{bottom:714.752933px;}
.y1b{bottom:716.022038px;}
.y1a5{bottom:718.144043px;}
.y1e7{bottom:719.402348px;}
.yc0{bottom:719.403802px;}
.y1d1{bottom:719.560552px;}
.y226{bottom:726.823243px;}
.y184{bottom:726.827633px;}
.yed{bottom:727.800293px;}
.y149{bottom:730.800293px;}
.y129{bottom:732.524408px;}
.y198{bottom:733.154303px;}
.y1f7{bottom:735.149408px;}
.y10c{bottom:735.451178px;}
.yd5{bottom:736.286137px;}
.y1be{bottom:739.116217px;}
.y1a{bottom:741.220282px;}
.y51{bottom:741.451178px;}
.y2f{bottom:744.996458px;}
.y225{bottom:745.798828px;}
.y1a4{bottom:749.191402px;}
.ybf{bottom:750.451178px;}
.y1d0{bottom:750.673822px;}
.y70{bottom:754.498537px;}
.y1b1{bottom:756.363283px;}
.y183{bottom:757.874992px;}
.yec{bottom:758.847652px;}
.y8e{bottom:760.800293px;}
.y2{bottom:761.445326px;}
.y148{bottom:761.847652px;}
.y128{bottom:763.573238px;}
.y197{bottom:764.200192px;}
.y224{bottom:764.771939px;}
.y1f6{bottom:766.195312px;}
.y19{bottom:766.418513px;}
.y10b{bottom:766.498537px;}
.yad{bottom:771.145013px;}
.y50{bottom:772.498537px;}
.y1a3{bottom:779.050783px;}
.y1e6{bottom:781.497068px;}
.ybe{bottom:781.498537px;}
.y1cf{bottom:781.719727px;}
.yd4{bottom:782.333498px;}
.y2e{bottom:783.799808px;}
.y223{bottom:784.245118px;}
.y6f{bottom:785.545898px;}
.y182{bottom:788.922367px;}
.yeb{bottom:789.895013px;}
.y18{bottom:791.616757px;}
.y147{bottom:792.895013px;}
.y127{bottom:794.619142px;}
.y196{bottom:795.249022px;}
.y1f5{bottom:797.244142px;}
.y10a{bottom:797.545898px;}
.y1bd{bottom:801.210938px;}
.yac{bottom:802.192387px;}
.y222{bottom:803.218229px;}
.y4f{bottom:803.545898px;}
.y1a2{bottom:807.512698px;}
.y2d{bottom:807.602782px;}
.y8d{bottom:812.545898px;}
.y1ce{bottom:812.765618px;}
.y6e{bottom:816.593258px;}
.y17{bottom:816.815002px;}
.y181{bottom:819.969727px;}
.yea{bottom:820.942387px;}
.y221{bottom:822.691408px;}
.y146{bottom:823.942387px;}
.y126{bottom:825.667973px;}
.y195{bottom:826.294928px;}
.y1f4{bottom:828.290033px;}
.y109{bottom:828.593258px;}
.y2c{bottom:831.405758px;}
.y4e{bottom:834.593258px;}
.yab{bottom:840.820314px;}
.y220{bottom:841.664519px;}
.y16{bottom:842.013248px;}
.y1e5{bottom:843.591803px;}
.y8c{bottom:843.593258px;}
.y6d{bottom:847.640618px;}
.y180{bottom:851.017088px;}
.y2b{bottom:855.208747px;}
.ye9{bottom:856.640617px;}
.y125{bottom:856.713863px;}
.y194{bottom:857.343742px;}
.y1f3{bottom:859.338863px;}
.y108{bottom:859.640618px;}
.y21f{bottom:861.138149px;}
.y1cd{bottom:861.814448px;}
.y4d{bottom:865.640617px;}
.y15{bottom:867.211493px;}
.y145{bottom:869.989748px;}
.yaa{bottom:871.867677px;}
.y8b{bottom:874.640617px;}
.y6c{bottom:878.687993px;}
.y2a{bottom:879.011723px;}
.y21e{bottom:880.611328px;}
.y17f{bottom:882.064448px;}
.y124{bottom:887.762692px;}
.y1f2{bottom:890.384767px;}
.y107{bottom:890.687993px;}
.y14{bottom:892.409723px;}
.y1cc{bottom:892.863277px;}
.y4c{bottom:896.687993px;}
.y21d{bottom:899.587364px;}
.y144{bottom:901.037108px;}
.y29{bottom:902.814697px;}
.y1e4{bottom:905.686523px;}
.y8a{bottom:905.687993px;}
.y193{bottom:906.178708px;}
.y17e{bottom:913.111823px;}
.y13{bottom:917.607967px;}
.y6b{bottom:918.735352px;}
.y123{bottom:918.808598px;}
.y21c{bottom:919.060543px;}
.ya7{bottom:919.790034px;}
.y106{bottom:921.735352px;}
.y1cb{bottom:923.909182px;}
.y28{bottom:926.617673px;}
.y4b{bottom:927.735352px;}
.y1f1{bottom:931.781242px;}
.y143{bottom:932.084467px;}
.y89{bottom:936.735352px;}
.y21b{bottom:938.030729px;}
.y12{bottom:942.806213px;}
.y17d{bottom:944.159182px;}
.y6a{bottom:949.782713px;}
.y122{bottom:949.857427px;}
.y27{bottom:950.420647px;}
.y105{bottom:952.782713px;}
.y16e{bottom:952.784183px;}
.y1ca{bottom:954.955073px;}
.y21a{bottom:957.506833px;}
.y4a{bottom:958.782713px;}
.y142{bottom:963.131842px;}
.y1e3{bottom:967.781242px;}
.y88{bottom:967.782713px;}
.y11{bottom:968.004457px;}
.y26{bottom:974.223637px;}
.y219{bottom:976.479493px;}
.y17c{bottom:979.855958px;}
.y69{bottom:980.830073px;}
.y104{bottom:983.830073px;}
.y1c9{bottom:986.003902px;}
.y49{bottom:989.830073px;}
.y10{bottom:993.202698px;}
.y141{bottom:994.179202px;}
.y1b0{bottom:994.180658px;}
.y218{bottom:995.452153px;}
.y121{bottom:995.903320px;}
.ya3{bottom:998.759764px;}
.y87{bottom:998.830079px;}
.y25{bottom:1005.578613px;}
.y68{bottom:1011.877442px;}
.y217{bottom:1014.425262px;}
.y103{bottom:1014.877442px;}
.y16d{bottom:1014.878905px;}
.y1c8{bottom:1017.052734px;}
.yf{bottom:1018.400940px;}
.y48{bottom:1020.877442px;}
.y140{bottom:1025.226562px;}
.y17b{bottom:1029.875976px;}
.y86{bottom:1029.877442px;}
.y1a1{bottom:1032.465821px;}
.y216{bottom:1038.401367px;}
.y24{bottom:1041.575501px;}
.y67{bottom:1042.924804px;}
.ye{bottom:1043.599182px;}
.y102{bottom:1045.924804px;}
.y1c7{bottom:1048.098633px;}
.y47{bottom:1051.924804px;}
.y13f{bottom:1056.273925px;}
.y1af{bottom:1056.275391px;}
.y215{bottom:1057.374024px;}
.ya2{bottom:1060.854492px;}
.y85{bottom:1060.924804px;}
.y1a0{bottom:1063.511718px;}
.y246{bottom:1067.499024px;}
.yd{bottom:1068.797424px;}
.y66{bottom:1073.972168px;}
.y214{bottom:1076.346678px;}
.y101{bottom:1076.972168px;}
.y16c{bottom:1076.973633px;}
.y46{bottom:1082.972168px;}
.y23{bottom:1083.996642px;}
.y1{bottom:1084.725004px;}
.y245{bottom:1086.471679px;}
.y13e{bottom:1087.321288px;}
.y17a{bottom:1091.970704px;}
.y84{bottom:1091.972168px;}
.y19f{bottom:1094.560546px;}
.y1c6{bottom:1105.447266px;}
.yc{bottom:1120.218566px;}
.y45{bottom:1123.019530px;}
.y1c5{bottom:1124.419921px;}
.ya{bottom:1139.824035px;}
.y43{bottom:1139.824218px;}
.h12{height:45.826173px;}
.hd{height:46.797363px;}
.h4{height:48.410156px;}
.h5{height:49.289063px;}
.ha{height:49.992188px;}
.h9{height:50.308594px;}
.h13{height:50.343750px;}
.h1{height:53.396486px;}
.h2{height:57.503904px;}
.h8{height:59.167970px;}
.h6{height:64.546875px;}
.hf{height:77.844726px;}
.h11{height:105.899415px;}
.h7{height:105.899775px;}
.hc{height:105.900150px;}
.he{height:108.892090px;}
.hb{height:123.175782px;}
.h3{height:123.175965px;}
.h10{height:139.939454px;}
.h0{height:1263.000000px;}
.w2{width:317.250000px;}
.w3{width:317.250090px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x17{left:6.750000px;}
.x16{left:73.836915px;}
.x13{left:84.559571px;}
.x1a{left:87.328125px;}
.x15{left:92.223633px;}
.x19{left:101.333496px;}
.x18{left:107.841797px;}
.x7{left:127.559052px;}
.x12{left:128.684052px;}
.xd{left:140.576391px;}
.x9{left:154.559052px;}
.x4{left:163.352875px;}
.x5{left:165.781903px;}
.x2d{left:170.309052px;}
.x20{left:177.846565px;}
.xa{left:181.559052px;}
.x29{left:182.594265px;}
.x23{left:184.042992px;}
.x2b{left:185.882627px;}
.x11{left:194.193836px;}
.x1b{left:198.118152px;}
.x26{left:201.787002px;}
.xb{left:208.559052px;}
.x1d{left:235.559052px;}
.x27{left:249.892742px;}
.x28{left:254.922687px;}
.x21{left:255.933669px;}
.x22{left:265.022943px;}
.x2{left:268.894447px;}
.x6{left:319.038169px;}
.xe{left:323.998294px;}
.x1f{left:397.559052px;}
.x25{left:400.276917px;}
.x3{left:401.556548px;}
.x2c{left:408.665750px;}
.x2a{left:413.021300px;}
.x24{left:416.080872px;}
.x1c{left:425.451661px;}
.x14{left:447.059055px;}
.x8{left:497.522795px;}
.xf{left:533.860835px;}
.x1{left:592.184052px;}
.x10{left:689.383287px;}
.x1e{left:721.850123px;}
.xc{left:730.094258px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:14.645813pt;}
.ls6{letter-spacing:14.645833pt;}
.ls3{letter-spacing:14.645853pt;}
.ls1{letter-spacing:16.000030pt;}
.ls4{letter-spacing:18.645813pt;}
.ls8{letter-spacing:18.645853pt;}
.lsa{letter-spacing:22.623839pt;}
.ls5{letter-spacing:38.645693pt;}
.ls7{letter-spacing:174.645853pt;}
.lsb{letter-spacing:202.645853pt;}
.ls9{letter-spacing:282.645813pt;}
.ws2{word-spacing:-37.333332pt;}
.ws51{word-spacing:-36.093750pt;}
.ws4d{word-spacing:-33.085938pt;}
.ws37{word-spacing:-32.000000pt;}
.ws5b{word-spacing:-29.333334pt;}
.wsf{word-spacing:-25.277590pt;}
.wse{word-spacing:-24.152590pt;}
.ws11{word-spacing:-22.465070pt;}
.ws13{word-spacing:-22.215080pt;}
.ws69{word-spacing:-20.093780pt;}
.ws4e{word-spacing:-20.093771pt;}
.ws12{word-spacing:-20.093770pt;}
.ws3f{word-spacing:-20.093763pt;}
.ws1b{word-spacing:-20.093760pt;}
.ws4c{word-spacing:-20.093754pt;}
.ws10{word-spacing:-20.093752pt;}
.ws31{word-spacing:-20.093751pt;}
.wsd{word-spacing:-20.093750pt;}
.ws2c{word-spacing:-20.093748pt;}
.ws38{word-spacing:-20.093743pt;}
.ws26{word-spacing:-20.093740pt;}
.ws40{word-spacing:-20.093730pt;}
.ws50{word-spacing:-20.093720pt;}
.ws5{word-spacing:-18.709572pt;}
.ws3{word-spacing:-18.709532pt;}
.wsb{word-spacing:-18.707205pt;}
.ws1{word-spacing:-18.707202pt;}
.ws4{word-spacing:-18.707168pt;}
.ws15{word-spacing:-18.704937pt;}
.ws8{word-spacing:-18.700273pt;}
.ws7{word-spacing:-18.700254pt;}
.ws16{word-spacing:-18.700192pt;}
.ws6{word-spacing:-18.697912pt;}
.wsac{word-spacing:-18.450655pt;}
.wsb6{word-spacing:-18.448184pt;}
.wsa1{word-spacing:-18.448181pt;}
.wsad{word-spacing:-18.448178pt;}
.ws9d{word-spacing:-18.448168pt;}
.wsb0{word-spacing:-18.443564pt;}
.wsa7{word-spacing:-18.441266pt;}
.ws72{word-spacing:-18.440228pt;}
.wsbb{word-spacing:-18.440191pt;}
.ws6e{word-spacing:-18.440131pt;}
.wsa3{word-spacing:-18.440125pt;}
.ws78{word-spacing:-18.440111pt;}
.ws8a{word-spacing:-18.440107pt;}
.ws6d{word-spacing:-18.440106pt;}
.ws7d{word-spacing:-18.440085pt;}
.ws9f{word-spacing:-18.440031pt;}
.ws0{word-spacing:-17.347814pt;}
.ws46{word-spacing:-16.093780pt;}
.ws29{word-spacing:-16.093770pt;}
.ws1e{word-spacing:-16.093760pt;}
.ws3a{word-spacing:-16.093752pt;}
.ws1d{word-spacing:-16.093750pt;}
.ws20{word-spacing:-16.093740pt;}
.ws2d{word-spacing:-16.093730pt;}
.ws36{word-spacing:-16.093720pt;}
.ws5e{word-spacing:-16.093630pt;}
.ws66{word-spacing:-16.000032pt;}
.ws28{word-spacing:-16.000021pt;}
.ws6b{word-spacing:-16.000020pt;}
.ws64{word-spacing:-16.000012pt;}
.ws17{word-spacing:-16.000010pt;}
.ws1f{word-spacing:-16.000002pt;}
.ws22{word-spacing:-16.000001pt;}
.wsc{word-spacing:-16.000000pt;}
.ws57{word-spacing:-15.999980pt;}
.wsa{word-spacing:-15.070315pt;}
.ws65{word-spacing:-14.707177pt;}
.ws5c{word-spacing:-14.707137pt;}
.ws9c{word-spacing:-14.700259pt;}
.ws9e{word-spacing:-14.700236pt;}
.ws63{word-spacing:-14.697985pt;}
.ws90{word-spacing:-14.697933pt;}
.ws5f{word-spacing:-14.697928pt;}
.wsba{word-spacing:-14.697926pt;}
.ws7c{word-spacing:-14.697920pt;}
.ws58{word-spacing:-14.697919pt;}
.ws71{word-spacing:-14.697918pt;}
.wsaf{word-spacing:-14.697916pt;}
.ws94{word-spacing:-14.697914pt;}
.wsae{word-spacing:-14.697842pt;}
.wsb7{word-spacing:-14.695589pt;}
.ws74{word-spacing:-14.695576pt;}
.ws62{word-spacing:-14.695575pt;}
.wsbd{word-spacing:-14.695509pt;}
.ws70{word-spacing:-14.693298pt;}
.ws59{word-spacing:-14.690961pt;}
.ws67{word-spacing:-14.690953pt;}
.ws95{word-spacing:-14.690924pt;}
.wsb8{word-spacing:-14.687500pt;}
.wsa2{word-spacing:-14.687481pt;}
.wsc0{word-spacing:-14.455153pt;}
.wsb5{word-spacing:-14.450581pt;}
.ws8b{word-spacing:-14.450493pt;}
.ws7f{word-spacing:-14.440111pt;}
.ws6f{word-spacing:-14.440106pt;}
.ws79{word-spacing:-14.440104pt;}
.ws34{word-spacing:-12.093780pt;}
.ws27{word-spacing:-12.093771pt;}
.ws33{word-spacing:-12.093770pt;}
.ws45{word-spacing:-12.093761pt;}
.ws1c{word-spacing:-12.093760pt;}
.ws25{word-spacing:-12.093750pt;}
.ws35{word-spacing:-12.093741pt;}
.ws9{word-spacing:-12.000003pt;}
.ws5d{word-spacing:-10.707177pt;}
.ws61{word-spacing:-10.704875pt;}
.ws9a{word-spacing:-10.704809pt;}
.ws93{word-spacing:-10.698048pt;}
.ws98{word-spacing:-10.697962pt;}
.ws60{word-spacing:-10.697771pt;}
.wsbc{word-spacing:-10.695620pt;}
.wsa4{word-spacing:-10.693298pt;}
.ws7b{word-spacing:-10.688714pt;}
.ws92{word-spacing:-10.452854pt;}
.ws9b{word-spacing:-10.450575pt;}
.ws96{word-spacing:-10.450552pt;}
.ws7a{word-spacing:-10.450521pt;}
.ws97{word-spacing:-10.440107pt;}
.ws91{word-spacing:-10.440105pt;}
.ws77{word-spacing:-10.440103pt;}
.ws49{word-spacing:-8.093781pt;}
.ws43{word-spacing:-8.093770pt;}
.ws47{word-spacing:-8.093761pt;}
.ws2f{word-spacing:-8.093760pt;}
.ws21{word-spacing:-8.093750pt;}
.ws48{word-spacing:-8.093740pt;}
.ws30{word-spacing:-8.093730pt;}
.ws56{word-spacing:-8.093720pt;}
.wsa8{word-spacing:-6.700370pt;}
.ws99{word-spacing:-6.697948pt;}
.ws7e{word-spacing:-6.688714pt;}
.ws75{word-spacing:-6.462117pt;}
.ws86{word-spacing:-6.462111pt;}
.wsa0{word-spacing:-6.462099pt;}
.ws87{word-spacing:-6.455073pt;}
.ws85{word-spacing:-6.440105pt;}
.wsb1{word-spacing:-6.440104pt;}
.wsb3{word-spacing:-6.440085pt;}
.ws4a{word-spacing:-4.093770pt;}
.ws19{word-spacing:-4.093760pt;}
.ws2b{word-spacing:-4.093750pt;}
.ws2a{word-spacing:-4.093740pt;}
.ws6a{word-spacing:-4.093730pt;}
.ws5a{word-spacing:-2.698011pt;}
.wsb2{word-spacing:-2.697914pt;}
.ws76{word-spacing:-2.695654pt;}
.ws73{word-spacing:-2.440105pt;}
.ws8f{word-spacing:-2.440103pt;}
.wsab{word-spacing:-2.440092pt;}
.ws3c{word-spacing:-0.093770pt;}
.ws4b{word-spacing:-0.093760pt;}
.ws1a{word-spacing:-0.093750pt;}
.ws3e{word-spacing:-0.093740pt;}
.ws41{word-spacing:-0.093730pt;}
.ws18{word-spacing:-0.064000pt;}
.ws14{word-spacing:0.000000pt;}
.ws23{word-spacing:3.906229pt;}
.ws32{word-spacing:3.906230pt;}
.ws42{word-spacing:3.906240pt;}
.ws3d{word-spacing:3.906250pt;}
.ws4f{word-spacing:3.906270pt;}
.ws81{word-spacing:5.301994pt;}
.wsc2{word-spacing:5.311287pt;}
.wsb9{word-spacing:5.549402pt;}
.wsc1{word-spacing:5.549478pt;}
.ws80{word-spacing:5.549480pt;}
.ws84{word-spacing:5.559875pt;}
.ws2e{word-spacing:7.906220pt;}
.ws55{word-spacing:7.906250pt;}
.ws52{word-spacing:7.906270pt;}
.ws83{word-spacing:9.302141pt;}
.ws82{word-spacing:9.559895pt;}
.ws53{word-spacing:11.906240pt;}
.ws6c{word-spacing:15.906250pt;}
.ws24{word-spacing:15.906260pt;}
.ws54{word-spacing:16.000000pt;}
.ws89{word-spacing:17.302029pt;}
.ws88{word-spacing:17.540193pt;}
.ws44{word-spacing:19.906250pt;}
.ws3b{word-spacing:31.906250pt;}
.ws68{word-spacing:43.186000pt;}
.wsaa{word-spacing:49.558679pt;}
.ws39{word-spacing:51.906220pt;}
.wsa9{word-spacing:57.292747pt;}
.wsbe{word-spacing:85.549475pt;}
.wsbf{word-spacing:89.302018pt;}
.wsb4{word-spacing:89.549476pt;}
.ws8e{word-spacing:141.559769pt;}
.ws8d{word-spacing:145.302158pt;}
.ws8c{word-spacing:145.559896pt;}
.wsc4{word-spacing:165.559875pt;}
.wsc3{word-spacing:173.302072pt;}
.wsa6{word-spacing:249.559915pt;}
.wsa5{word-spacing:253.304423pt;}
._14{margin-left:-7.093613pt;}
._2{margin-left:-5.689700pt;}
._5{margin-left:-4.468750pt;}
._1{margin-left:-2.958320pt;}
._0{margin-left:-1.333400pt;}
._a{width:1.191170pt;}
._3{width:2.212071pt;}
._7{width:3.253668pt;}
._9{width:4.566170pt;}
._b{width:6.534998pt;}
._6{width:7.659918pt;}
._4{width:10.409918pt;}
._1f{width:13.750189pt;}
._20{width:14.933513pt;}
._8{width:16.000000pt;}
._22{width:17.999426pt;}
._28{width:18.998448pt;}
._d{width:20.000002pt;}
._1e{width:22.642381pt;}
._f{width:24.000002pt;}
._21{width:26.143687pt;}
._e{width:28.000000pt;}
._1d{width:30.619188pt;}
._10{width:32.000000pt;}
._27{width:34.555559pt;}
._c{width:36.000000pt;}
._23{width:38.219974pt;}
._17{width:40.000000pt;}
._2a{width:42.481439pt;}
._11{width:44.000000pt;}
._13{width:48.000002pt;}
._25{width:49.940418pt;}
._1b{width:52.000000pt;}
._24{width:52.966650pt;}
._12{width:56.000001pt;}
._19{width:60.000000pt;}
._16{width:64.000012pt;}
._1c{width:72.395822pt;}
._18{width:74.687500pt;}
._1a{width:80.000000pt;}
._15{width:92.000000pt;}
._29{width:126.513931pt;}
._26{width:286.535925pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:58.666668pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:69.333336pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.ya1{bottom:19.660149pt;}
.y9c{bottom:19.660156pt;}
.ya6{bottom:19.660157pt;}
.ya8{bottom:19.660159pt;}
.ya9{bottom:47.257812pt;}
.ya5{bottom:47.257813pt;}
.ya0{bottom:47.257816pt;}
.y83{bottom:48.596355pt;}
.y65{bottom:48.596681pt;}
.y44{bottom:48.597007pt;}
.yb{bottom:48.597088pt;}
.y22{bottom:48.597169pt;}
.y16b{bottom:48.597657pt;}
.y1bc{bottom:48.598959pt;}
.y64{bottom:63.372399pt;}
.y21{bottom:63.372719pt;}
.y9f{bottom:74.855469pt;}
.y13d{bottom:99.179687pt;}
.y120{bottom:101.781247pt;}
.ya4{bottom:102.453125pt;}
.y179{bottom:103.805985pt;}
.y244{bottom:105.393225pt;}
.y213{bottom:107.752599pt;}
.yd3{bottom:115.114580pt;}
.y19e{bottom:116.734372pt;}
.y82{bottom:119.276047pt;}
.y243{bottom:122.260412pt;}
.y100{bottom:122.578127pt;}
.y192{bottom:122.643233pt;}
.y1e2{bottom:124.578127pt;}
.y212{bottom:124.619785pt;}
.y15c{bottom:125.244793pt;}
.y13c{bottom:126.778647pt;}
.y11f{bottom:129.378900pt;}
.ye8{bottom:130.121100pt;}
.y9{bottom:134.957516pt;}
.ybd{bottom:138.574220pt;}
.y242{bottom:139.124999pt;}
.y211{bottom:141.484372pt;}
.y1f0{bottom:142.710940pt;}
.yd2{bottom:142.712233pt;}
.y81{bottom:146.873700pt;}
.yff{bottom:150.175780pt;}
.y9e{bottom:151.113284pt;}
.y1e1{bottom:152.174473pt;}
.y15b{bottom:152.842447pt;}
.y63{bottom:154.309900pt;}
.y13b{bottom:154.374993pt;}
.y11e{bottom:156.976567pt;}
.ye7{bottom:157.718753pt;}
.y210{bottom:158.348959pt;}
.y241{bottom:158.520839pt;}
.y1bb{bottom:164.979167pt;}
.ybc{bottom:166.171873pt;}
.yd1{bottom:170.309900pt;}
.y80{bottom:174.471353pt;}
.y20f{bottom:175.213545pt;}
.yfe{bottom:177.773433pt;}
.y240{bottom:177.916665pt;}
.y1ae{bottom:179.312500pt;}
.y1e0{bottom:179.770833pt;}
.y15a{bottom:180.440100pt;}
.y16a{bottom:181.101567pt;}
.y62{bottom:181.907553pt;}
.y13a{bottom:181.973953pt;}
.y11d{bottom:184.574220pt;}
.ye6{bottom:185.316407pt;}
.y20e{bottom:192.078119pt;}
.ybb{bottom:193.769527pt;}
.y23f{bottom:194.781252pt;}
.y1ef{bottom:197.906247pt;}
.yd0{bottom:197.907553pt;}
.y7f{bottom:202.069007pt;}
.yfd{bottom:205.371100pt;}
.y9d{bottom:206.308597pt;}
.y1ad{bottom:206.911460pt;}
.y1df{bottom:207.369793pt;}
.y159{bottom:208.037767pt;}
.y169{bottom:208.700527pt;}
.y20d{bottom:208.945319pt;}
.y61{bottom:209.505207pt;}
.y139{bottom:209.570313pt;}
.y23e{bottom:211.646239pt;}
.y11c{bottom:212.171873pt;}
.y42{bottom:212.399740pt;}
.ye5{bottom:212.914060pt;}
.yba{bottom:221.367193pt;}
.ycf{bottom:225.505207pt;}
.y20c{bottom:225.809892pt;}
.y23d{bottom:228.955732pt;}
.y7e{bottom:229.666660pt;}
.yfc{bottom:232.968753pt;}
.y191{bottom:233.033860pt;}
.y1ac{bottom:234.507807pt;}
.y1de{bottom:234.968753pt;}
.y158{bottom:235.635420pt;}
.y168{bottom:236.296873pt;}
.y60{bottom:237.102860pt;}
.y138{bottom:237.169273pt;}
.y11b{bottom:239.769527pt;}
.ye4{bottom:240.511713pt;}
.y20b{bottom:242.674479pt;}
.y23c{bottom:245.820719pt;}
.y41{bottom:246.890953pt;}
.y9b{bottom:248.906251pt;}
.yb9{bottom:248.964847pt;}
.y1ee{bottom:253.101567pt;}
.yce{bottom:253.102860pt;}
.y8{bottom:255.549316pt;}
.y7d{bottom:257.264327pt;}
.y20a{bottom:259.541665pt;}
.yfb{bottom:260.566407pt;}
.y190{bottom:260.631513pt;}
.y1ab{bottom:262.106767pt;}
.y1dd{bottom:262.565100pt;}
.y23b{bottom:263.132812pt;}
.y157{bottom:263.233073pt;}
.y167{bottom:263.895833pt;}
.y5f{bottom:264.700527pt;}
.y137{bottom:264.765620pt;}
.y11a{bottom:267.367193pt;}
.y40{bottom:268.049153pt;}
.ye3{bottom:268.109380pt;}
.y209{bottom:276.406252pt;}
.y23a{bottom:279.997399pt;}
.ycd{bottom:280.700527pt;}
.y7c{bottom:284.861980pt;}
.yfa{bottom:288.164060pt;}
.y18f{bottom:288.229166pt;}
.y3f{bottom:289.207353pt;}
.y1aa{bottom:289.703127pt;}
.y1dc{bottom:290.161460pt;}
.y156{bottom:290.830727pt;}
.y166{bottom:291.492193pt;}
.y5e{bottom:292.298180pt;}
.y136{bottom:292.364580pt;}
.y208{bottom:293.270839pt;}
.y119{bottom:294.964847pt;}
.ye2{bottom:295.707033pt;}
.y7{bottom:295.746583pt;}
.y1c4{bottom:302.236980pt;}
.yb8{bottom:304.160153pt;}
.y1ed{bottom:308.296873pt;}
.ycc{bottom:308.298180pt;}
.y207{bottom:310.135412pt;}
.y3e{bottom:310.365553pt;}
.y7b{bottom:312.459633pt;}
.y239{bottom:313.729172pt;}
.yf9{bottom:315.761713pt;}
.y1db{bottom:317.760420pt;}
.y155{bottom:318.428380pt;}
.y165{bottom:319.091140pt;}
.y19d{bottom:319.747393pt;}
.y5d{bottom:319.895833pt;}
.y135{bottom:319.960940pt;}
.y118{bottom:322.562500pt;}
.ye1{bottom:323.304687pt;}
.y206{bottom:327.003012pt;}
.y178{bottom:328.819007pt;}
.y1c3{bottom:329.833327pt;}
.y238{bottom:330.593745pt;}
.y3d{bottom:331.523767pt;}
.yb7{bottom:331.757807pt;}
.y9a{bottom:331.761713pt;}
.ycb{bottom:335.895833pt;}
.y7a{bottom:340.057287pt;}
.yf8{bottom:343.359380pt;}
.y1a9{bottom:343.843745pt;}
.y205{bottom:344.312505pt;}
.y1da{bottom:345.359380pt;}
.y154{bottom:346.026047pt;}
.y164{bottom:346.687500pt;}
.y19c{bottom:347.343753pt;}
.y237{bottom:347.458332pt;}
.y5c{bottom:347.493487pt;}
.y134{bottom:347.559900pt;}
.y117{bottom:350.160153pt;}
.ye0{bottom:350.902340pt;}
.y3c{bottom:352.681967pt;}
.y177{bottom:356.416660pt;}
.y99{bottom:359.359380pt;}
.y204{bottom:361.177079pt;}
.yb6{bottom:363.489580pt;}
.y1ec{bottom:363.492193pt;}
.yca{bottom:363.493487pt;}
.y236{bottom:364.322919pt;}
.y79{bottom:367.654953pt;}
.y1a8{bottom:369.141932pt;}
.y18e{bottom:370.092447pt;}
.yf7{bottom:370.957033pt;}
.y153{bottom:373.623700pt;}
.y3b{bottom:373.840167pt;}
.y19b{bottom:374.942713pt;}
.y5b{bottom:375.091140pt;}
.y133{bottom:375.156247pt;}
.y1c2{bottom:375.541665pt;}
.y116{bottom:377.757807pt;}
.y203{bottom:378.041665pt;}
.y1ba{bottom:378.236980pt;}
.ydf{bottom:378.499993pt;}
.y235{bottom:381.187505pt;}
.y176{bottom:384.014327pt;}
.y1d9{bottom:386.562501pt;}
.y98{bottom:386.957033pt;}
.y163{bottom:387.619793pt;}
.yc9{bottom:391.091140pt;}
.y1c1{bottom:392.406252pt;}
.y202{bottom:394.906252pt;}
.y3a{bottom:394.998367pt;}
.y78{bottom:395.252607pt;}
.y18d{bottom:397.690100pt;}
.y234{bottom:398.054692pt;}
.yf6{bottom:398.554687pt;}
.y152{bottom:401.221353pt;}
.y19a{bottom:402.539060pt;}
.y132{bottom:402.755207pt;}
.y115{bottom:405.355473pt;}
.y1b9{bottom:405.833327pt;}
.yde{bottom:406.097660pt;}
.y5a{bottom:410.688807pt;}
.y175{bottom:411.611980pt;}
.y201{bottom:411.771239pt;}
.y97{bottom:414.554687pt;}
.y233{bottom:414.919265pt;}
.y6{bottom:416.338383pt;}
.y1eb{bottom:418.687500pt;}
.yc8{bottom:418.688807pt;}
.y77{bottom:422.850260pt;}
.y18c{bottom:425.287767pt;}
.yf5{bottom:426.152340pt;}
.y39{bottom:426.730473pt;}
.y162{bottom:428.552087pt;}
.y151{bottom:428.819007pt;}
.y200{bottom:429.080732pt;}
.y131{bottom:430.351567pt;}
.y232{bottom:431.784266pt;}
.y114{bottom:432.953127pt;}
.y1b8{bottom:433.432287pt;}
.ydd{bottom:433.695313pt;}
.yb5{bottom:437.083327pt;}
.y59{bottom:438.286460pt;}
.y174{bottom:439.209633pt;}
.y96{bottom:442.152340pt;}
.y1ff{bottom:445.945719pt;}
.yc7{bottom:446.286460pt;}
.y1d8{bottom:446.424473pt;}
.y5{bottom:448.535609pt;}
.y76{bottom:450.447913pt;}
.y231{bottom:451.624999pt;}
.y18b{bottom:452.885420pt;}
.yf4{bottom:453.749993pt;}
.y161{bottom:456.148433pt;}
.y150{bottom:456.416660pt;}
.y199{bottom:456.679692pt;}
.y130{bottom:457.950527pt;}
.y113{bottom:460.550780pt;}
.y1b7{bottom:461.031247pt;}
.y38{bottom:461.222007pt;}
.ydc{bottom:461.292967pt;}
.y1fe{bottom:463.257812pt;}
.yb4{bottom:464.680993pt;}
.y58{bottom:465.884113pt;}
.y173{bottom:466.807287pt;}
.y95{bottom:469.749993pt;}
.y230{bottom:471.018225pt;}
.y1ea{bottom:473.882807pt;}
.yc6{bottom:473.884113pt;}
.y1d7{bottom:474.020833pt;}
.y75{bottom:478.045567pt;}
.y1fd{bottom:480.122399pt;}
.y18a{bottom:480.483073pt;}
.y4{bottom:480.732863pt;}
.yf3{bottom:481.347660pt;}
.y37{bottom:482.380207pt;}
.y160{bottom:483.747393pt;}
.y14f{bottom:484.014327pt;}
.y12f{bottom:485.546873pt;}
.y112{bottom:488.148433pt;}
.y1b6{bottom:488.627607pt;}
.ydb{bottom:488.890620pt;}
.y22f{bottom:490.414065pt;}
.yb3{bottom:492.278647pt;}
.y57{bottom:493.481767pt;}
.y172{bottom:494.404953pt;}
.y1fc{bottom:496.986985pt;}
.y94{bottom:497.347660pt;}
.yc5{bottom:501.481767pt;}
.y1d6{bottom:501.619793pt;}
.y36{bottom:503.538407pt;}
.y74{bottom:505.643233pt;}
.y189{bottom:508.080727pt;}
.yf2{bottom:508.945313pt;}
.y22e{bottom:509.807692pt;}
.y15f{bottom:511.343753pt;}
.y14e{bottom:511.611980pt;}
.y12e{bottom:513.145833pt;}
.y1fb{bottom:513.854172pt;}
.y111{bottom:515.746100pt;}
.yda{bottom:516.488287pt;}
.yb2{bottom:519.876300pt;}
.y56{bottom:521.079433pt;}
.y171{bottom:522.002607pt;}
.y20{bottom:524.471847pt;}
.y35{bottom:524.696620pt;}
.y93{bottom:524.945313pt;}
.y22d{bottom:527.119785pt;}
.y1e9{bottom:529.078127pt;}
.yc4{bottom:529.079433pt;}
.y1d5{bottom:529.218753pt;}
.y1fa{bottom:530.718745pt;}
.y73{bottom:533.240887pt;}
.y188{bottom:535.678380pt;}
.yf1{bottom:536.542967pt;}
.y15e{bottom:538.942713pt;}
.y14d{bottom:539.209633pt;}
.y12d{bottom:540.742193pt;}
.y110{bottom:543.343753pt;}
.y1b5{bottom:543.822913pt;}
.y22c{bottom:543.984372pt;}
.yd9{bottom:544.085940pt;}
.y34{bottom:545.854820pt;}
.y1f{bottom:546.870273pt;}
.yb1{bottom:547.473953pt;}
.y55{bottom:548.677087pt;}
.y170{bottom:549.600260pt;}
.y92{bottom:552.542967pt;}
.yc3{bottom:556.677087pt;}
.y1d4{bottom:556.815100pt;}
.y72{bottom:560.838540pt;}
.y22b{bottom:560.848959pt;}
.y187{bottom:563.276047pt;}
.yf0{bottom:564.140620pt;}
.y1f9{bottom:566.270833pt;}
.y14c{bottom:566.807287pt;}
.y33{bottom:567.013020pt;}
.y12c{bottom:568.341140pt;}
.y1e{bottom:569.268713pt;}
.y10f{bottom:570.941407pt;}
.y1b4{bottom:571.421873pt;}
.yd8{bottom:571.683593pt;}
.yb0{bottom:575.071620pt;}
.y54{bottom:576.274740pt;}
.y22a{bottom:577.713946pt;}
.y15d{bottom:579.872393pt;}
.y91{bottom:580.140620pt;}
.y1a7{bottom:583.154953pt;}
.y1e8{bottom:584.273433pt;}
.yc2{bottom:584.274740pt;}
.y1d3{bottom:584.411460pt;}
.y32{bottom:588.171220pt;}
.y186{bottom:590.873700pt;}
.y1d{bottom:591.667153pt;}
.yef{bottom:591.738287pt;}
.y14b{bottom:594.404953pt;}
.y229{bottom:595.026039pt;}
.y16f{bottom:595.307292pt;}
.y12b{bottom:595.937500pt;}
.y10e{bottom:598.539060pt;}
.y1b3{bottom:599.018233pt;}
.yd7{bottom:599.281247pt;}
.y71{bottom:601.769527pt;}
.y1c0{bottom:601.796873pt;}
.yaf{bottom:602.669273pt;}
.y53{bottom:603.872393pt;}
.y90{bottom:607.738287pt;}
.y31{bottom:609.329433pt;}
.y1a6{bottom:610.752607pt;}
.y3{bottom:611.471156pt;}
.yc1{bottom:611.872393pt;}
.y228{bottom:611.891026pt;}
.y1d2{bottom:612.010420pt;}
.y1c{bottom:614.065593pt;}
.y185{bottom:618.471353pt;}
.yee{bottom:619.335940pt;}
.y14a{bottom:622.002607pt;}
.y12a{bottom:623.536460pt;}
.y1f8{bottom:625.867193pt;}
.y10d{bottom:626.136713pt;}
.y1b2{bottom:626.614580pt;}
.yd6{bottom:626.878900pt;}
.y227{bottom:629.200519pt;}
.y1bf{bottom:629.395833pt;}
.yae{bottom:630.266927pt;}
.y30{bottom:630.487633pt;}
.y52{bottom:631.470047pt;}
.y8f{bottom:635.335940pt;}
.y1b{bottom:636.464033pt;}
.y1a5{bottom:638.350260pt;}
.y1e7{bottom:639.468753pt;}
.yc0{bottom:639.470047pt;}
.y1d1{bottom:639.609380pt;}
.y226{bottom:646.065105pt;}
.y184{bottom:646.069007pt;}
.yed{bottom:646.933593pt;}
.y149{bottom:649.600260pt;}
.y129{bottom:651.132807pt;}
.y198{bottom:651.692713pt;}
.y1f7{bottom:653.466140pt;}
.y10c{bottom:653.734380pt;}
.yd5{bottom:654.476567pt;}
.y1be{bottom:656.992193pt;}
.y1a{bottom:658.862473pt;}
.y51{bottom:659.067713pt;}
.y2f{bottom:662.219073pt;}
.y225{bottom:662.932292pt;}
.y1a4{bottom:665.947913pt;}
.ybf{bottom:667.067713pt;}
.y1d0{bottom:667.265620pt;}
.y70{bottom:670.665367pt;}
.y1b1{bottom:672.322919pt;}
.y183{bottom:673.666660pt;}
.yec{bottom:674.531247pt;}
.y8e{bottom:676.266927pt;}
.y2{bottom:676.840289pt;}
.y148{bottom:677.197913pt;}
.y128{bottom:678.731767pt;}
.y197{bottom:679.289060pt;}
.y224{bottom:679.797279pt;}
.y1f6{bottom:681.062500pt;}
.y19{bottom:681.260900pt;}
.y10b{bottom:681.332033pt;}
.yad{bottom:685.462233pt;}
.y50{bottom:686.665367pt;}
.y1a3{bottom:692.489585pt;}
.y1e6{bottom:694.664060pt;}
.ybe{bottom:694.665367pt;}
.y1cf{bottom:694.861980pt;}
.yd4{bottom:695.407553pt;}
.y2e{bottom:696.710940pt;}
.y223{bottom:697.106772pt;}
.y6f{bottom:698.263020pt;}
.y182{bottom:701.264327pt;}
.yeb{bottom:702.128900pt;}
.y18{bottom:703.659340pt;}
.y147{bottom:704.795567pt;}
.y127{bottom:706.328127pt;}
.y196{bottom:706.888020pt;}
.y1f5{bottom:708.661460pt;}
.y10a{bottom:708.929687pt;}
.y1bd{bottom:712.187500pt;}
.yac{bottom:713.059900pt;}
.y222{bottom:713.971759pt;}
.y4f{bottom:714.263020pt;}
.y1a2{bottom:717.789065pt;}
.y2d{bottom:717.869140pt;}
.y8d{bottom:722.263020pt;}
.y1ce{bottom:722.458327pt;}
.y6e{bottom:725.860673pt;}
.y17{bottom:726.057780pt;}
.y181{bottom:728.861980pt;}
.yea{bottom:729.726567pt;}
.y221{bottom:731.281252pt;}
.y146{bottom:732.393233pt;}
.y126{bottom:733.927087pt;}
.y195{bottom:734.484380pt;}
.y1f4{bottom:736.257807pt;}
.y109{bottom:736.527340pt;}
.y2c{bottom:739.027340pt;}
.y4e{bottom:741.860673pt;}
.yab{bottom:747.395835pt;}
.y220{bottom:748.146239pt;}
.y16{bottom:748.456220pt;}
.y1e5{bottom:749.859380pt;}
.y8c{bottom:749.860673pt;}
.y6d{bottom:753.458327pt;}
.y180{bottom:756.459633pt;}
.y2b{bottom:760.185553pt;}
.ye9{bottom:761.458327pt;}
.y125{bottom:761.523433pt;}
.y194{bottom:762.083327pt;}
.y1f3{bottom:763.856767pt;}
.y108{bottom:764.124993pt;}
.y21f{bottom:765.456132pt;}
.y1cd{bottom:766.057287pt;}
.y4d{bottom:769.458327pt;}
.y15{bottom:770.854660pt;}
.y145{bottom:773.324220pt;}
.yaa{bottom:774.993491pt;}
.y8b{bottom:777.458327pt;}
.y6c{bottom:781.055993pt;}
.y2a{bottom:781.343753pt;}
.y21e{bottom:782.765625pt;}
.y17f{bottom:784.057287pt;}
.y124{bottom:789.122393pt;}
.y1f2{bottom:791.453127pt;}
.y107{bottom:791.722660pt;}
.y14{bottom:793.253087pt;}
.y1cc{bottom:793.656247pt;}
.y4c{bottom:797.055993pt;}
.y21d{bottom:799.633212pt;}
.y144{bottom:800.921873pt;}
.y29{bottom:802.501953pt;}
.y1e4{bottom:805.054687pt;}
.y8a{bottom:805.055993pt;}
.y193{bottom:805.492185pt;}
.y17e{bottom:811.654953pt;}
.y13{bottom:815.651527pt;}
.y6b{bottom:816.653647pt;}
.y123{bottom:816.718753pt;}
.y21c{bottom:816.942705pt;}
.ya7{bottom:817.591141pt;}
.y106{bottom:819.320313pt;}
.y1cb{bottom:821.252607pt;}
.y28{bottom:823.660153pt;}
.y4b{bottom:824.653647pt;}
.y1f1{bottom:828.249993pt;}
.y143{bottom:828.519527pt;}
.y89{bottom:832.653647pt;}
.y21b{bottom:833.805092pt;}
.y12{bottom:838.049967pt;}
.y17d{bottom:839.252607pt;}
.y6a{bottom:844.251300pt;}
.y122{bottom:844.317713pt;}
.y27{bottom:844.818353pt;}
.y105{bottom:846.917967pt;}
.y16e{bottom:846.919273pt;}
.y1ca{bottom:848.848953pt;}
.y21a{bottom:851.117185pt;}
.y4a{bottom:852.251300pt;}
.y142{bottom:856.117193pt;}
.y1e3{bottom:860.249993pt;}
.y88{bottom:860.251300pt;}
.y11{bottom:860.448407pt;}
.y26{bottom:865.976567pt;}
.y219{bottom:867.981772pt;}
.y17c{bottom:870.983073pt;}
.y69{bottom:871.848953pt;}
.y104{bottom:874.515620pt;}
.y1c9{bottom:876.447913pt;}
.y49{bottom:879.848953pt;}
.y10{bottom:882.846843pt;}
.y141{bottom:883.714847pt;}
.y1b0{bottom:883.716140pt;}
.y218{bottom:884.846359pt;}
.y121{bottom:885.247396pt;}
.ya3{bottom:887.786457pt;}
.y87{bottom:887.848959pt;}
.y25{bottom:893.847656pt;}
.y68{bottom:899.446615pt;}
.y217{bottom:901.711344pt;}
.y103{bottom:902.113281pt;}
.y16d{bottom:902.114583pt;}
.y1c8{bottom:904.046875pt;}
.yf{bottom:905.245280pt;}
.y48{bottom:907.446615pt;}
.y140{bottom:911.312500pt;}
.y17b{bottom:915.445312pt;}
.y86{bottom:915.446615pt;}
.y1a1{bottom:917.747396pt;}
.y216{bottom:923.023437pt;}
.y24{bottom:925.844889pt;}
.y67{bottom:927.044271pt;}
.ye{bottom:927.643717pt;}
.y102{bottom:929.710937pt;}
.y1c7{bottom:931.643229pt;}
.y47{bottom:935.044271pt;}
.y13f{bottom:938.910156pt;}
.y1af{bottom:938.911459pt;}
.y215{bottom:939.888021pt;}
.ya2{bottom:942.981771pt;}
.y85{bottom:943.044271pt;}
.y1a0{bottom:945.343749pt;}
.y246{bottom:948.888021pt;}
.yd{bottom:950.042155pt;}
.y66{bottom:954.641927pt;}
.y214{bottom:956.752603pt;}
.y101{bottom:957.308593pt;}
.y16c{bottom:957.309896pt;}
.y46{bottom:962.641927pt;}
.y23{bottom:963.552571pt;}
.y1{bottom:964.200004pt;}
.y245{bottom:965.752604pt;}
.y13e{bottom:966.507811pt;}
.y17a{bottom:970.640625pt;}
.y84{bottom:970.641927pt;}
.y19f{bottom:972.942708pt;}
.y1c6{bottom:982.619792pt;}
.yc{bottom:995.749836pt;}
.y45{bottom:998.239583pt;}
.y1c5{bottom:999.484375pt;}
.ya{bottom:1013.176920pt;}
.y43{bottom:1013.177083pt;}
.h12{height:40.734376pt;}
.hd{height:41.597656pt;}
.h4{height:43.031250pt;}
.h5{height:43.812500pt;}
.ha{height:44.437500pt;}
.h9{height:44.718750pt;}
.h13{height:44.750000pt;}
.h1{height:47.463543pt;}
.h2{height:51.114582pt;}
.h8{height:52.593751pt;}
.h6{height:57.375000pt;}
.hf{height:69.195312pt;}
.h11{height:94.132813pt;}
.h7{height:94.133133pt;}
.hc{height:94.133467pt;}
.he{height:96.792969pt;}
.hb{height:109.489584pt;}
.h3{height:109.489747pt;}
.h10{height:124.390625pt;}
.h0{height:1122.666667pt;}
.w2{width:282.000000pt;}
.w3{width:282.000080pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x17{left:6.000000pt;}
.x16{left:65.632813pt;}
.x13{left:75.164063pt;}
.x1a{left:77.625000pt;}
.x15{left:81.976563pt;}
.x19{left:90.074219pt;}
.x18{left:95.859375pt;}
.x7{left:113.385824pt;}
.x12{left:114.385824pt;}
.xd{left:124.956792pt;}
.x9{left:137.385824pt;}
.x4{left:145.202556pt;}
.x5{left:147.361692pt;}
.x2d{left:151.385824pt;}
.x20{left:158.085836pt;}
.xa{left:161.385824pt;}
.x29{left:162.306013pt;}
.x23{left:163.593771pt;}
.x2b{left:165.229002pt;}
.x11{left:172.616743pt;}
.x1b{left:176.105024pt;}
.x26{left:179.366224pt;}
.xb{left:185.385824pt;}
.x1d{left:209.385824pt;}
.x27{left:222.126882pt;}
.x28{left:226.597944pt;}
.x21{left:227.496595pt;}
.x22{left:235.575949pt;}
.x2{left:239.017286pt;}
.x6{left:283.589484pt;}
.xe{left:287.998484pt;}
.x1f{left:353.385824pt;}
.x25{left:355.801704pt;}
.x3{left:356.939154pt;}
.x2c{left:363.258444pt;}
.x2a{left:367.130044pt;}
.x24{left:369.849664pt;}
.x1c{left:378.179254pt;}
.x14{left:397.385827pt;}
.x8{left:442.242484pt;}
.xf{left:474.542964pt;}
.x1{left:526.385824pt;}
.x10{left:612.785144pt;}
.x1e{left:641.644554pt;}
.xc{left:648.972674pt;}
}




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