
    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_acc055d8294959193d7f8b6d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.940918;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_4d1fb66910e8eb29985e6d78.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_b0d5be483aa08a00d2e49585.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_cea669c4a7c3663ed8bf1c1e.woff')format("woff");}.ff4{font-family:ff4;line-height:1.130371;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_1d36b48aceda91b68b281e56.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;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_04196a1a30f674ca8d2af319.woff')format("woff");}.ff6{font-family:ff6;line-height:1.130371;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_90e63cf582981ba13127bb72.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_5112ca09d5ead26c4e012288.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;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;}
.v1{vertical-align:53.280000px;}
.ls15{letter-spacing:-0.936000px;}
.ls23{letter-spacing:-0.720000px;}
.ls1d{letter-spacing:-0.590400px;}
.ls8{letter-spacing:-0.463800px;}
.ls2c{letter-spacing:-0.267600px;}
.ls2e{letter-spacing:-0.263400px;}
.ls13{letter-spacing:-0.253200px;}
.ls12{letter-spacing:-0.229800px;}
.ls29{letter-spacing:-0.227400px;}
.ls24{letter-spacing:-0.216000px;}
.ls25{letter-spacing:-0.193200px;}
.lse{letter-spacing:-0.172200px;}
.ls17{letter-spacing:-0.164400px;}
.lsf{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.132600px;}
.ls1f{letter-spacing:-0.078000px;}
.ls18{letter-spacing:-0.048960px;}
.ls9{letter-spacing:-0.025920px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.020160px;}
.ls1{letter-spacing:0.022320px;}
.ls6{letter-spacing:0.086400px;}
.ls5{letter-spacing:0.087600px;}
.ls16{letter-spacing:0.089400px;}
.ls28{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.132480px;}
.ls22{letter-spacing:0.132600px;}
.lsd{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.238320px;}
.lsa{letter-spacing:0.238800px;}
.ls2b{letter-spacing:0.244800px;}
.ls2a{letter-spacing:0.247800px;}
.ls7{letter-spacing:0.256200px;}
.ls26{letter-spacing:0.313800px;}
.ls4{letter-spacing:0.316800px;}
.ls3{letter-spacing:0.351360px;}
.ls2d{letter-spacing:0.361200px;}
.ls14{letter-spacing:0.391680px;}
.lsc{letter-spacing:20.448000px;}
.ls1e{letter-spacing:39.161280px;}
.ls27{letter-spacing:49.961280px;}
.ls21{letter-spacing:51.240000px;}
.ls1b{letter-spacing:59.321280px;}
.ls20{letter-spacing:86.717280px;}
.lsb{letter-spacing:111.168000px;}
.ls1a{letter-spacing:121.349280px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,52,27),0 0.015em rgb(0,52,27),0.015em 0 rgb(0,52,27),0 -0.015em  rgb(0,52,27);}
.sc4{text-shadow:-0.015em 0 rgb(0,104,56),0 0.015em rgb(0,104,56),0.015em 0 rgb(0,104,56),0 -0.015em  rgb(0,104,56);}
.sc3{text-shadow:-0.015em 0 rgb(186,104,39),0 0.015em rgb(186,104,39),0.015em 0 rgb(186,104,39),0 -0.015em  rgb(186,104,39);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(171,98,46),0 0.015em rgb(171,98,46),0.015em 0 rgb(171,98,46),0 -0.015em  rgb(171,98,46);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,52,27);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,104,56);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(186,104,39);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(171,98,46);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-66.240000px;}
.ws1f{word-spacing:-27.535440px;}
.ws1e{word-spacing:-27.174240px;}
.ws7{word-spacing:-19.038240px;}
.ws8{word-spacing:-18.866040px;}
.wsd{word-spacing:-18.808440px;}
.wsc{word-spacing:-16.488000px;}
.wse{word-spacing:-16.272000px;}
.ws9{word-spacing:-16.128000px;}
.ws1a{word-spacing:-15.284040px;}
.ws3{word-spacing:-15.226440px;}
.ws6{word-spacing:-15.209040px;}
.ws15{word-spacing:-15.102840px;}
.ws10{word-spacing:-15.059640px;}
.ws2{word-spacing:-15.056640px;}
.ws16{word-spacing:-14.990400px;}
.wsa{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.944320px;}
.ws14{word-spacing:-14.892240px;}
.wsb{word-spacing:-14.837640px;}
.ws11{word-spacing:-14.805840px;}
.ws19{word-spacing:-14.777040px;}
.ws1c{word-spacing:-14.742840px;}
.wsf{word-spacing:-14.717040px;}
.ws1d{word-spacing:-14.702640px;}
.ws4{word-spacing:-14.506440px;}
.ws12{word-spacing:-14.379840px;}
.ws20{word-spacing:-13.505760px;}
.ws1{word-spacing:-10.902240px;}
.ws21{word-spacing:-10.638840px;}
.ws17{word-spacing:-9.437760px;}
.ws1b{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:92.553600px;}
._9{margin-left:-17.549040px;}
._f{margin-left:-15.534120px;}
._c{margin-left:-14.315040px;}
._d{margin-left:-12.711840px;}
._6{margin-left:-10.246320px;}
._e{margin-left:-8.172000px;}
._b{margin-left:-6.756000px;}
._10{margin-left:-4.884000px;}
._8{margin-left:-3.638880px;}
._7{margin-left:-2.585520px;}
._0{margin-left:-1.074240px;}
._2{width:1.198080px;}
._5{width:2.475360px;}
._3{width:3.513600px;}
._4{width:4.714560px;}
._15{width:5.945280px;}
._16{width:7.153920px;}
._14{width:8.176320px;}
._13{width:9.604800px;}
._19{width:11.407680px;}
._18{width:12.562320px;}
._17{width:13.887360px;}
._1a{width:16.130880px;}
._1b{width:17.262720px;}
._1d{width:18.440640px;}
._1e{width:20.269440px;}
._11{width:21.859200px;}
._12{width:23.014080px;}
._1c{width:24.157440px;}
._22{width:25.237440px;}
._a{width:28.632000px;}
._23{width:30.329280px;}
._1f{width:31.544640px;}
._20{width:69.831360px;}
._21{width:70.878960px;}
._1{width:849.185760px;}
.fcc{color:rgb(0,148,68);}
.fcb{color:rgb(0,52,27);}
.fc9{color:rgb(186,104,39);}
.fca{color:rgb(255,0,0);}
.fc6{color:rgb(171,98,46);}
.fc3{color:transparent;}
.fc2{color:rgb(12,92,53);}
.fc8{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(242,242,242);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(16,138,66);}
.fc0{color:rgb(0,104,56);}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsa{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.fs4{font-size:131.760000px;}
.fs2{font-size:149.760000px;}
.yd{bottom:-60.840000px;}
.yc{bottom:-31.680000px;}
.y10{bottom:-25.380000px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.240000px;}
.yf{bottom:4.140000px;}
.y1ec{bottom:4.860000px;}
.y1f0{bottom:6.840000px;}
.y15{bottom:8.820000px;}
.ydd{bottom:9.000000px;}
.y17e{bottom:9.030000px;}
.ye0{bottom:9.045000px;}
.y1ee{bottom:9.720000px;}
.y1f2{bottom:9.900000px;}
.y18{bottom:10.260000px;}
.y29{bottom:10.290000px;}
.y2c{bottom:10.440000px;}
.y32{bottom:10.485000px;}
.y1b{bottom:15.120000px;}
.y1f{bottom:15.300000px;}
.y22{bottom:15.345000px;}
.y1f1{bottom:15.480000px;}
.y6c{bottom:16.380000px;}
.y6e{bottom:16.560000px;}
.y71{bottom:16.605000px;}
.y1a{bottom:17.640000px;}
.y38{bottom:18.180000px;}
.y1ef{bottom:18.720000px;}
.y17c{bottom:19.080000px;}
.y8{bottom:20.340000px;}
.y1f4{bottom:21.780000px;}
.y1f3{bottom:22.320000px;}
.y1f5{bottom:22.500000px;}
.y14{bottom:23.580000px;}
.y1d{bottom:25.200000px;}
.y15b{bottom:29.160000px;}
.y34{bottom:30.600000px;}
.y11{bottom:32.400000px;}
.y37{bottom:32.760000px;}
.y1e{bottom:35.460000px;}
.y3{bottom:38.340000px;}
.yfe{bottom:39.780000px;}
.y35{bottom:40.140000px;}
.y36{bottom:47.520000px;}
.ya{bottom:48.960000px;}
.y111{bottom:49.935000px;}
.y7{bottom:51.300000px;}
.y12{bottom:52.920000px;}
.y1eb{bottom:55.620000px;}
.y13{bottom:55.980000px;}
.y2{bottom:58.500000px;}
.y113{bottom:60.090000px;}
.y110{bottom:61.635000px;}
.yfd{bottom:62.820000px;}
.y117{bottom:63.000000px;}
.y103{bottom:63.030000px;}
.y112{bottom:78.270000px;}
.y100{bottom:86.040000px;}
.y102{bottom:86.070000px;}
.yfc{bottom:86.085000px;}
.y12c{bottom:111.240000px;}
.y1e1{bottom:122.940000px;}
.y1df{bottom:125.856000px;}
.y165{bottom:127.080000px;}
.y10d{bottom:127.335000px;}
.y10f{bottom:131.550000px;}
.y1d7{bottom:132.480000px;}
.y5b{bottom:133.740000px;}
.y12b{bottom:134.460000px;}
.y1c2{bottom:135.900000px;}
.y101{bottom:136.980000px;}
.y191{bottom:139.860000px;}
.y10e{bottom:149.730000px;}
.y164{bottom:152.460000px;}
.y170{bottom:153.000000px;}
.y12a{bottom:157.680000px;}
.y1de{bottom:158.070000px;}
.y1e4{bottom:158.400000px;}
.y190{bottom:163.080000px;}
.y1e2{bottom:163.980000px;}
.y1d6{bottom:164.520000px;}
.y5a{bottom:165.960000px;}
.y1e5{bottom:168.480000px;}
.y14f{bottom:168.840000px;}
.y1e3{bottom:169.740000px;}
.yd5{bottom:183.420000px;}
.y16f{bottom:183.960000px;}
.y129{bottom:189.720000px;}
.y1dd{bottom:190.290000px;}
.y18f{bottom:196.050000px;}
.y1d5{bottom:196.770000px;}
.y59{bottom:198.210000px;}
.y10c{bottom:198.825000px;}
.y14e{bottom:201.090000px;}
.y163{bottom:202.530000px;}
.yd4{bottom:206.490000px;}
.y16e{bottom:208.830000px;}
.y1cb{bottom:209.370000px;}
.y128{bottom:212.970000px;}
.y1e8{bottom:221.970000px;}
.y1dc{bottom:222.330000px;}
.y14d{bottom:224.310000px;}
.y58{bottom:227.370000px;}
.y1c7{bottom:228.090000px;}
.y1d4{bottom:228.990000px;}
.y18e{bottom:229.170000px;}
.yd3{bottom:229.710000px;}
.y1c3{bottom:233.490000px;}
.y1c9{bottom:233.850000px;}
.y1ca{bottom:237.090000px;}
.y127{bottom:245.910000px;}
.y57{bottom:247.350000px;}
.y1cc{bottom:248.250000px;}
.yff{bottom:248.430000px;}
.y1e7{bottom:249.510000px;}
.y1db{bottom:250.050000px;}
.y1e6{bottom:251.850000px;}
.y162{bottom:252.570000px;}
.yd2{bottom:252.930000px;}
.y1b7{bottom:256.170000px;}
.y14c{bottom:256.350000px;}
.y1d3{bottom:261.210000px;}
.y18d{bottom:261.390000px;}
.y109{bottom:264.390000px;}
.y1c5{bottom:266.970000px;}
.y56{bottom:267.510000px;}
.y126{bottom:269.130000px;}
.y1c6{bottom:269.850000px;}
.y10b{bottom:274.530000px;}
.y108{bottom:276.090000px;}
.y14b{bottom:279.570000px;}
.y1c8{bottom:283.350000px;}
.y18c{bottom:284.610000px;}
.yd1{bottom:285.870000px;}
.y1b6{bottom:290.010000px;}
.y125{bottom:292.350000px;}
.y10a{bottom:292.710000px;}
.y1d2{bottom:293.250000px;}
.y161{bottom:302.610000px;}
.y18b{bottom:307.650000px;}
.y1c4{bottom:308.010000px;}
.y14a{bottom:311.790000px;}
.y55{bottom:311.970000px;}
.yd0{bottom:318.990000px;}
.y124{bottom:325.290000px;}
.y1d1{bottom:325.470000px;}
.y18a{bottom:330.870000px;}
.y1cd{bottom:337.350000px;}
.y105{bottom:341.790000px;}
.y149{bottom:343.830000px;}
.y1b5{bottom:345.450000px;}
.y107{bottom:345.990000px;}
.y1ce{bottom:346.350000px;}
.y123{bottom:348.510000px;}
.y1cf{bottom:350.850000px;}
.ycf{bottom:351.930000px;}
.y160{bottom:352.650000px;}
.y1d0{bottom:353.010000px;}
.y189{bottom:354.090000px;}
.yfb{bottom:359.850000px;}
.y54{bottom:360.390000px;}
.y106{bottom:364.170000px;}
.y148{bottom:367.050000px;}
.y1b4{bottom:367.230000px;}
.y122{bottom:371.730000px;}
.yce{bottom:375.150000px;}
.y33{bottom:375.330000px;}
.y188{bottom:377.130000px;}
.y1b3{bottom:389.010000px;}
.y53{bottom:389.910000px;}
.y147{bottom:390.270000px;}
.y15f{bottom:397.650000px;}
.y187{bottom:400.350000px;}
.y121{bottom:404.670000px;}
.y93{bottom:405.030000px;}
.ycd{bottom:408.270000px;}
.yf0{bottom:412.230000px;}
.y146{bottom:413.310000px;}
.y52{bottom:416.370000px;}
.y1b2{bottom:422.670000px;}
.y186{bottom:423.570000px;}
.y15e{bottom:426.990000px;}
.y120{bottom:427.890000px;}
.y31{bottom:428.250000px;}
.ycc{bottom:431.355000px;}
.yef{bottom:435.495000px;}
.y145{bottom:436.575000px;}
.y92{bottom:437.295000px;}
.y1b1{bottom:439.095000px;}
.y51{bottom:442.875000px;}
.y11f{bottom:451.155000px;}
.y15d{bottom:452.415000px;}
.yee{bottom:458.715000px;}
.y185{bottom:459.255000px;}
.y91{bottom:460.335000px;}
.y30{bottom:461.235000px;}
.ycb{bottom:464.475000px;}
.y1b0{bottom:468.975000px;}
.y50{bottom:469.335000px;}
.yfa{bottom:471.315000px;}
.y144{bottom:472.395000px;}
.y11e{bottom:474.195000px;}
.yed{bottom:481.755000px;}
.y90{bottom:483.555000px;}
.yca{bottom:487.515000px;}
.y6{bottom:489.495000px;}
.y2f{bottom:494.175000px;}
.y4f{bottom:495.795000px;}
.y184{bottom:495.975000px;}
.y1af{bottom:498.855000px;}
.y15c{bottom:502.455000px;}
.yec{bottom:504.975000px;}
.y11d{bottom:506.415000px;}
.y8f{bottom:506.775000px;}
.y143{bottom:508.935000px;}
.y183{bottom:519.195000px;}
.yc9{bottom:520.635000px;}
.y4e{bottom:522.435000px;}
.yf9{bottom:528.375000px;}
.y1ae{bottom:528.735000px;}
.y11c{bottom:529.635000px;}
.y142{bottom:532.155000px;}
.y2e{bottom:535.935000px;}
.y8e{bottom:538.995000px;}
.yeb{bottom:540.795000px;}
.y182{bottom:542.235000px;}
.yc8{bottom:543.855000px;}
.y4d{bottom:549.615000px;}
.y15a{bottom:552.495000px;}
.yf8{bottom:557.715000px;}
.y1ad{bottom:558.615000px;}
.y8d{bottom:562.035000px;}
.y141{bottom:564.375000px;}
.y11b{bottom:565.455000px;}
.yc7{bottom:566.895000px;}
.yea{bottom:579.315000px;}
.yf7{bottom:580.935000px;}
.y9{bottom:581.475000px;}
.y4c{bottom:584.175000px;}
.y8c{bottom:585.255000px;}
.y2d{bottom:585.435000px;}
.y140{bottom:587.595000px;}
.y1ac{bottom:588.495000px;}
.y181{bottom:588.675000px;}
.yc6{bottom:590.115000px;}
.y2b{bottom:601.815000px;}
.y159{bottom:602.535000px;}
.y16d{bottom:602.715000px;}
.yf6{bottom:603.975000px;}
.y8b{bottom:608.475000px;}
.y180{bottom:611.715000px;}
.yc5{bottom:613.335000px;}
.y1ab{bottom:618.555000px;}
.y4b{bottom:618.915000px;}
.y13f{bottom:619.635000px;}
.yb5{bottom:623.415000px;}
.yf5{bottom:627.195000px;}
.y16c{bottom:627.375000px;}
.y8a{bottom:631.515000px;}
.y2a{bottom:634.755000px;}
.yc4{bottom:636.375000px;}
.y17f{bottom:637.275000px;}
.ye9{bottom:642.135000px;}
.y13e{bottom:642.855000px;}
.y11a{bottom:643.575000px;}
.yb4{bottom:645.195000px;}
.y158{bottom:647.535000px;}
.y1aa{bottom:648.435000px;}
.y4a{bottom:652.395000px;}
.y89{bottom:654.735000px;}
.yc3{bottom:659.595000px;}
.yf4{bottom:663.015000px;}
.ye8{bottom:665.175000px;}
.y119{bottom:666.615000px;}
.yb3{bottom:666.795000px;}
.y17d{bottom:667.155000px;}
.y28{bottom:667.695000px;}
.y77{bottom:670.605000px;}
.y13d{bottom:675.105000px;}
.y157{bottom:676.905000px;}
.y49{bottom:677.085000px;}
.y1a0{bottom:677.445000px;}
.y88{bottom:677.985000px;}
.y1a9{bottom:678.345000px;}
.ya3{bottom:680.865000px;}
.yc2{bottom:682.845000px;}
.yb2{bottom:688.605000px;}
.ye7{bottom:690.585000px;}
.y118{bottom:692.025000px;}
.y76{bottom:695.985000px;}
.y17b{bottom:697.065000px;}
.y13c{bottom:698.145000px;}
.yf3{bottom:699.585000px;}
.ye{bottom:700.125000px;}
.y87{bottom:701.025000px;}
.y48{bottom:702.105000px;}
.ya2{bottom:703.905000px;}
.yc1{bottom:706.065000px;}
.y1a8{bottom:708.225000px;}
.y27{bottom:709.305000px;}
.y19f{bottom:709.665000px;}
.yb1{bottom:710.385000px;}
.ye6{bottom:720.645000px;}
.y13b{bottom:721.365000px;}
.yf2{bottom:722.805000px;}
.y86{bottom:724.245000px;}
.y47{bottom:728.565000px;}
.yc0{bottom:729.105000px;}
.y1da{bottom:731.310000px;}
.ya1{bottom:737.025000px;}
.y156{bottom:737.205000px;}
.y75{bottom:737.925000px;}
.y1a7{bottom:738.105000px;}
.y104{bottom:738.540000px;}
.y19e{bottom:741.705000px;}
.yb0{bottom:744.045000px;}
.y17a{bottom:747.105000px;}
.ye5{bottom:750.525000px;}
.ybf{bottom:752.325000px;}
.y13a{bottom:753.585000px;}
.y46{bottom:755.025000px;}
.y85{bottom:756.465000px;}
.y1c0{bottom:758.625000px;}
.y26{bottom:758.805000px;}
.ya0{bottom:760.245000px;}
.yaf{bottom:765.825000px;}
.y1a6{bottom:767.985000px;}
.y1d9{bottom:770.910000px;}
.y19d{bottom:773.925000px;}
.y25{bottom:775.365000px;}
.ybe{bottom:775.545000px;}
.y139{bottom:776.625000px;}
.y179{bottom:776.985000px;}
.y84{bottom:779.505000px;}
.y74{bottom:779.865000px;}
.ye4{bottom:780.405000px;}
.y45{bottom:781.125000px;}
.y1bf{bottom:781.665000px;}
.yae{bottom:787.605000px;}
.y9f{bottom:793.185000px;}
.y19c{bottom:797.145000px;}
.y1a5{bottom:797.865000px;}
.y68{bottom:798.405000px;}
.y155{bottom:799.845000px;}
.y83{bottom:802.725000px;}
.y1be{bottom:804.885000px;}
.y44{bottom:805.785000px;}
.y178{bottom:806.865000px;}
.y138{bottom:808.845000px;}
.ye3{bottom:810.285000px;}
.ybd{bottom:811.185000px;}
.y24{bottom:812.985000px;}
.y9e{bottom:816.405000px;}
.y19b{bottom:820.185000px;}
.yad{bottom:821.265000px;}
.y73{bottom:821.625000px;}
.y116{bottom:822.165000px;}
.y1d8{bottom:824.220000px;}
.y82{bottom:825.945000px;}
.y1a4{bottom:827.745000px;}
.y67{bottom:830.625000px;}
.y43{bottom:830.805000px;}
.y154{bottom:832.065000px;}
.y177{bottom:836.745000px;}
.y1bd{bottom:837.105000px;}
.ye2{bottom:840.165000px;}
.y137{bottom:841.065000px;}
.ybc{bottom:847.905000px;}
.y81{bottom:848.985000px;}
.y9d{bottom:849.525000px;}
.y19a{bottom:852.405000px;}
.yac{bottom:855.105000px;}
.y23{bottom:855.465000px;}
.y42{bottom:856.905000px;}
.y1a3{bottom:857.625000px;}
.y1bc{bottom:860.145000px;}
.y66{bottom:862.845000px;}
.y72{bottom:863.565000px;}
.y136{bottom:864.105000px;}
.ye1{bottom:870.045000px;}
.ybb{bottom:871.125000px;}
.y80{bottom:872.205000px;}
.y9c{bottom:872.565000px;}
.yab{bottom:876.705000px;}
.y41{bottom:881.385000px;}
.y176{bottom:881.745000px;}
.y199{bottom:885.525000px;}
.y153{bottom:887.325000px;}
.y1a2{bottom:887.505000px;}
.y1bb{bottom:892.365000px;}
.y21{bottom:893.085000px;}
.yba{bottom:894.165000px;}
.y65{bottom:894.885000px;}
.y135{bottom:896.325000px;}
.ydf{bottom:899.925000px;}
.y7f{bottom:904.425000px;}
.y70{bottom:905.505000px;}
.y9b{bottom:905.685000px;}
.y40{bottom:906.630000px;}
.yaa{bottom:910.590000px;}
.y175{bottom:911.130000px;}
.y1ba{bottom:915.630000px;}
.yb9{bottom:917.430000px;}
.y198{bottom:918.510000px;}
.y134{bottom:919.590000px;}
.y64{bottom:927.150000px;}
.y7e{bottom:927.510000px;}
.y9a{bottom:928.770000px;}
.yde{bottom:929.850000px;}
.ya9{bottom:932.370000px;}
.y3f{bottom:932.550000px;}
.y115{bottom:933.630000px;}
.y174{bottom:934.350000px;}
.y20{bottom:935.790000px;}
.y1b9{bottom:938.670000px;}
.yb8{bottom:940.650000px;}
.y6f{bottom:947.490000px;}
.y7d{bottom:950.730000px;}
.y133{bottom:951.630000px;}
.ya8{bottom:953.970000px;}
.y3e{bottom:957.210000px;}
.y173{bottom:957.390000px;}
.y63{bottom:959.370000px;}
.ydc{bottom:959.730000px;}
.y99{bottom:961.890000px;}
.yb7{bottom:963.690000px;}
.y7c{bottom:973.950000px;}
.y132{bottom:974.850000px;}
.y1c{bottom:978.270000px;}
.y172{bottom:980.610000px;}
.y3d{bottom:982.230000px;}
.y197{bottom:984.570000px;}
.y1a1{bottom:985.110000px;}
.ya7{bottom:987.810000px;}
.y62{bottom:988.530000px;}
.y6d{bottom:989.430000px;}
.y98{bottom:994.110000px;}
.y7b{bottom:996.990000px;}
.y16b{bottom:997.710000px;}
.yb6{bottom:1000.770000px;}
.ydb{bottom:1004.730000px;}
.y131{bottom:1007.070000px;}
.y1b8{bottom:1008.150000px;}
.y61{bottom:1008.690000px;}
.y3c{bottom:1009.590000px;}
.y171{bottom:1016.430000px;}
.y97{bottom:1017.150000px;}
.y196{bottom:1017.690000px;}
.y7a{bottom:1020.210000px;}
.ya6{bottom:1021.470000px;}
.y60{bottom:1028.670000px;}
.y16a{bottom:1029.930000px;}
.y130{bottom:1030.110000px;}
.y6b{bottom:1031.370000px;}
.yda{bottom:1034.070000px;}
.y96{bottom:1040.370000px;}
.y19{bottom:1040.910000px;}
.ya5{bottom:1043.250000px;}
.y79{bottom:1043.430000px;}
.y3b{bottom:1044.150000px;}
.y114{bottom:1045.050000px;}
.y5f{bottom:1048.830000px;}
.y195{bottom:1050.630000px;}
.y169{bottom:1052.970000px;}
.y12f{bottom:1053.330000px;}
.yd9{bottom:1057.290000px;}
.y152{bottom:1062.330000px;}
.y95{bottom:1063.590000px;}
.ya4{bottom:1065.030000px;}
.y78{bottom:1066.650000px;}
.y5e{bottom:1068.990000px;}
.y1ea{bottom:1073.310000px;}
.y168{bottom:1076.190000px;}
.y3a{bottom:1078.890000px;}
.yd8{bottom:1080.330000px;}
.y1c1{bottom:1082.490000px;}
.y17{bottom:1083.390000px;}
.y194{bottom:1083.750000px;}
.y12e{bottom:1085.550000px;}
.y94{bottom:1086.810000px;}
.y5d{bottom:1089.150000px;}
.y6a{bottom:1089.690000px;}
.y151{bottom:1094.550000px;}
.y167{bottom:1099.410000px;}
.yd7{bottom:1103.550000px;}
.y193{bottom:1106.970000px;}
.y1e9{bottom:1107.150000px;}
.y5{bottom:1108.590000px;}
.y150{bottom:1117.590000px;}
.y16{bottom:1124.970000px;}
.y39{bottom:1127.490000px;}
.y69{bottom:1127.850000px;}
.y1ed{bottom:1128.210000px;}
.y4{bottom:1131.810000px;}
.y1e0{bottom:1133.430000px;}
.y5c{bottom:1133.610000px;}
.y166{bottom:1136.490000px;}
.yd6{bottom:1139.370000px;}
.y192{bottom:1139.910000px;}
.y12d{bottom:1140.810000px;}
.yf1{bottom:1143.690000px;}
.y1{bottom:1194.120000px;}
.h36{height:14.580000px;}
.h31{height:16.200000px;}
.h34{height:18.180000px;}
.h35{height:21.420000px;}
.h25{height:28.980000px;}
.h2e{height:29.016000px;}
.h23{height:29.160000px;}
.h24{height:29.196000px;}
.h9{height:30.240000px;}
.he{height:32.040000px;}
.h14{height:32.076000px;}
.h15{height:32.220000px;}
.h16{height:32.256000px;}
.h32{height:33.156000px;}
.h12{height:36.900000px;}
.h1d{height:41.040000px;}
.h22{height:41.185547px;}
.h1e{height:41.220000px;}
.h1f{height:41.256000px;}
.h29{height:41.535703px;}
.hf{height:41.580000px;}
.h13{height:41.760000px;}
.h11{height:41.796000px;}
.hc{height:47.980898px;}
.h2c{height:49.320000px;}
.h2d{height:49.356000px;}
.hb{height:49.394180px;}
.h2{height:50.520937px;}
.h1c{height:50.585625px;}
.h17{height:52.200000px;}
.h33{height:61.189805px;}
.h10{height:61.740000px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h21{height:68.554688px;}
.ha{height:70.380000px;}
.h6{height:71.613281px;}
.h18{height:73.620000px;}
.h5{height:77.400000px;}
.h20{height:80.208984px;}
.h1a{height:86.255508px;}
.h2b{height:87.480000px;}
.h19{height:91.177734px;}
.h7{height:93.636000px;}
.h27{height:110.700000px;}
.h26{height:110.736000px;}
.h1b{height:114.486328px;}
.h2a{height:119.164219px;}
.hd{height:125.455078px;}
.h8{height:148.955625px;}
.h28{height:390.060000px;}
.h2f{height:892.980000px;}
.h30{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1e{width:52.020000px;}
.w1f{width:63.180000px;}
.w17{width:73.440000px;}
.we{width:76.140000px;}
.w29{width:99.000000px;}
.w2b{width:99.036000px;}
.w2a{width:99.180000px;}
.w28{width:99.216000px;}
.w22{width:105.156000px;}
.w26{width:115.020000px;}
.w20{width:126.756000px;}
.wf{width:126.936000px;}
.w18{width:146.736000px;}
.w27{width:151.950000px;}
.wa{width:168.510000px;}
.w9{width:168.690000px;}
.wb{width:169.050000px;}
.wc{width:171.390000px;}
.w7{width:171.930000px;}
.w13{width:190.290000px;}
.w1b{width:200.910000px;}
.w16{width:208.155000px;}
.w3{width:210.135000px;}
.w1c{width:236.370000px;}
.w1d{width:236.775000px;}
.w10{width:237.270000px;}
.w11{width:237.855000px;}
.w5{width:252.975000px;}
.w21{width:328.755000px;}
.w6{width:352.800000px;}
.w19{width:435.345000px;}
.w15{width:466.815000px;}
.w4{width:485.205000px;}
.w14{width:487.725000px;}
.w8{width:507.705000px;}
.wd{width:508.245000px;}
.w12{width:524.805000px;}
.w1a{width:647.565000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w25{width:1262.879981px;}
.w23{width:1262.880000px;}
.w24{width:1263.000000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x6{left:10.800000px;}
.x13{left:12.060000px;}
.x35{left:15.660000px;}
.x3e{left:17.820000px;}
.x1b{left:23.580000px;}
.x31{left:25.425000px;}
.x1a{left:27.720000px;}
.x66{left:29.370000px;}
.x36{left:32.574000px;}
.x3f{left:35.280000px;}
.x37{left:36.720000px;}
.x4b{left:37.980000px;}
.x38{left:39.240000px;}
.x1d{left:41.940000px;}
.x15{left:47.160000px;}
.x40{left:48.420000px;}
.x24{left:50.394000px;}
.x17{left:51.660000px;}
.x49{left:57.420000px;}
.x41{left:60.660000px;}
.xb{left:68.505000px;}
.x4d{left:71.640000px;}
.x46{left:73.074000px;}
.x28{left:77.394000px;}
.x1e{left:80.280000px;}
.x4e{left:82.074000px;}
.x29{left:83.334000px;}
.x19{left:86.265000px;}
.x27{left:89.994000px;}
.x4c{left:91.665000px;}
.x4a{left:92.925000px;}
.x2a{left:95.214000px;}
.x32{left:99.945000px;}
.x48{left:101.025000px;}
.x1f{left:105.345000px;}
.x4{left:106.415987px;}
.x2e{left:108.756000px;}
.x3d{left:115.883987px;}
.x1c{left:118.650000px;}
.x42{left:122.796000px;}
.x39{left:124.739987px;}
.x3c{left:126.359987px;}
.xa{left:128.310000px;}
.x2b{left:133.415987px;}
.x21{left:148.895987px;}
.x2c{left:160.409987px;}
.x2f{left:166.719000px;}
.x3a{left:180.389987px;}
.x14{left:183.270000px;}
.x3b{left:187.229987px;}
.x34{left:192.270000px;}
.x26{left:204.510000px;}
.x67{left:207.210000px;}
.x4f{left:223.770000px;}
.x3{left:271.514987px;}
.x10{left:279.075000px;}
.x25{left:298.335000px;}
.x43{left:302.619000px;}
.x16{left:310.935000px;}
.xd{left:339.120000px;}
.xe{left:342.180000px;}
.x50{left:351.435000px;}
.x45{left:366.194987px;}
.x20{left:368.894987px;}
.x22{left:386.174987px;}
.x23{left:390.314987px;}
.x8{left:402.555000px;}
.x7{left:404.175000px;}
.x5{left:409.755000px;}
.x68{left:417.135000px;}
.x65{left:425.415000px;}
.x5d{left:446.504987px;}
.x11{left:448.485000px;}
.x9{left:516.960000px;}
.x69{left:523.905000px;}
.x47{left:547.665000px;}
.x18{left:548.925000px;}
.x30{left:576.285000px;}
.xc{left:610.889987px;}
.x12{left:617.730000px;}
.x5f{left:631.544981px;}
.x51{left:680.910000px;}
.x1{left:683.969987px;}
.x59{left:719.069987px;}
.x5b{left:725.549987px;}
.x5c{left:728.969987px;}
.x5a{left:732.389987px;}
.x53{left:750.389987px;}
.x33{left:752.189987px;}
.x58{left:757.049987px;}
.x56{left:759.389987px;}
.x55{left:760.469987px;}
.x54{left:762.629987px;}
.x64{left:768.389987px;}
.x2d{left:769.829987px;}
.x57{left:772.919987px;}
.x52{left:775.439987px;}
.x2{left:778.319987px;}
.x44{left:782.279987px;}
.x61{left:804.239987px;}
.x62{left:810.719987px;}
.x63{left:819.719987px;}
.x5e{left:1139.759981px;}
.x60{left:1173.059981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:47.360000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls1d{letter-spacing:-0.524800pt;}
.ls8{letter-spacing:-0.412267pt;}
.ls2c{letter-spacing:-0.237867pt;}
.ls2e{letter-spacing:-0.234133pt;}
.ls13{letter-spacing:-0.225067pt;}
.ls12{letter-spacing:-0.204267pt;}
.ls29{letter-spacing:-0.202133pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls25{letter-spacing:-0.171733pt;}
.lse{letter-spacing:-0.153067pt;}
.ls17{letter-spacing:-0.146133pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.117867pt;}
.ls1f{letter-spacing:-0.069333pt;}
.ls18{letter-spacing:-0.043520pt;}
.ls9{letter-spacing:-0.023040pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.017920pt;}
.ls1{letter-spacing:0.019840pt;}
.ls6{letter-spacing:0.076800pt;}
.ls5{letter-spacing:0.077867pt;}
.ls16{letter-spacing:0.079467pt;}
.ls28{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.117760pt;}
.ls22{letter-spacing:0.117867pt;}
.lsd{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.211840pt;}
.lsa{letter-spacing:0.212267pt;}
.ls2b{letter-spacing:0.217600pt;}
.ls2a{letter-spacing:0.220267pt;}
.ls7{letter-spacing:0.227733pt;}
.ls26{letter-spacing:0.278933pt;}
.ls4{letter-spacing:0.281600pt;}
.ls3{letter-spacing:0.312320pt;}
.ls2d{letter-spacing:0.321067pt;}
.ls14{letter-spacing:0.348160pt;}
.lsc{letter-spacing:18.176000pt;}
.ls1e{letter-spacing:34.810027pt;}
.ls27{letter-spacing:44.410027pt;}
.ls21{letter-spacing:45.546667pt;}
.ls1b{letter-spacing:52.730027pt;}
.ls20{letter-spacing:77.082027pt;}
.lsb{letter-spacing:98.816000pt;}
.ls1a{letter-spacing:107.866027pt;}
.ws13{word-spacing:-58.880000pt;}
.ws1f{word-spacing:-24.475947pt;}
.ws1e{word-spacing:-24.154880pt;}
.ws7{word-spacing:-16.922880pt;}
.ws8{word-spacing:-16.769813pt;}
.wsd{word-spacing:-16.718613pt;}
.wsc{word-spacing:-14.656000pt;}
.wse{word-spacing:-14.464000pt;}
.ws9{word-spacing:-14.336000pt;}
.ws1a{word-spacing:-13.585813pt;}
.ws3{word-spacing:-13.534613pt;}
.ws6{word-spacing:-13.519147pt;}
.ws15{word-spacing:-13.424747pt;}
.ws10{word-spacing:-13.386347pt;}
.ws2{word-spacing:-13.383680pt;}
.ws16{word-spacing:-13.324800pt;}
.wsa{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.283840pt;}
.ws14{word-spacing:-13.237547pt;}
.wsb{word-spacing:-13.189013pt;}
.ws11{word-spacing:-13.160747pt;}
.ws19{word-spacing:-13.135147pt;}
.ws1c{word-spacing:-13.104747pt;}
.wsf{word-spacing:-13.081813pt;}
.ws1d{word-spacing:-13.069013pt;}
.ws4{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.782080pt;}
.ws20{word-spacing:-12.005120pt;}
.ws1{word-spacing:-9.690880pt;}
.ws21{word-spacing:-9.456747pt;}
.ws17{word-spacing:-8.389120pt;}
.ws1b{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:82.269867pt;}
._9{margin-left:-15.599147pt;}
._f{margin-left:-13.808107pt;}
._c{margin-left:-12.724480pt;}
._d{margin-left:-11.299413pt;}
._6{margin-left:-9.107840pt;}
._e{margin-left:-7.264000pt;}
._b{margin-left:-6.005333pt;}
._10{margin-left:-4.341333pt;}
._8{margin-left:-3.234560pt;}
._7{margin-left:-2.298240pt;}
._0{margin-left:-0.954880pt;}
._2{width:1.064960pt;}
._5{width:2.200320pt;}
._3{width:3.123200pt;}
._4{width:4.190720pt;}
._15{width:5.284693pt;}
._16{width:6.359040pt;}
._14{width:7.267840pt;}
._13{width:8.537600pt;}
._19{width:10.140160pt;}
._18{width:11.166507pt;}
._17{width:12.344320pt;}
._1a{width:14.338560pt;}
._1b{width:15.344640pt;}
._1d{width:16.391680pt;}
._1e{width:18.017280pt;}
._11{width:19.430400pt;}
._12{width:20.456960pt;}
._1c{width:21.473280pt;}
._22{width:22.433280pt;}
._a{width:25.450667pt;}
._23{width:26.959360pt;}
._1f{width:28.039680pt;}
._20{width:62.072320pt;}
._21{width:63.003520pt;}
._1{width:754.831787pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsa{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.fs4{font-size:117.120000pt;}
.fs2{font-size:133.120000pt;}
.yd{bottom:-54.080000pt;}
.yc{bottom:-28.160000pt;}
.y10{bottom:-22.560000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.880000pt;}
.yf{bottom:3.680000pt;}
.y1ec{bottom:4.320000pt;}
.y1f0{bottom:6.080000pt;}
.y15{bottom:7.840000pt;}
.ydd{bottom:8.000000pt;}
.y17e{bottom:8.026667pt;}
.ye0{bottom:8.040000pt;}
.y1ee{bottom:8.640000pt;}
.y1f2{bottom:8.800000pt;}
.y18{bottom:9.120000pt;}
.y29{bottom:9.146667pt;}
.y2c{bottom:9.280000pt;}
.y32{bottom:9.320000pt;}
.y1b{bottom:13.440000pt;}
.y1f{bottom:13.600000pt;}
.y22{bottom:13.640000pt;}
.y1f1{bottom:13.760000pt;}
.y6c{bottom:14.560000pt;}
.y6e{bottom:14.720000pt;}
.y71{bottom:14.760000pt;}
.y1a{bottom:15.680000pt;}
.y38{bottom:16.160000pt;}
.y1ef{bottom:16.640000pt;}
.y17c{bottom:16.960000pt;}
.y8{bottom:18.080000pt;}
.y1f4{bottom:19.360000pt;}
.y1f3{bottom:19.840000pt;}
.y1f5{bottom:20.000000pt;}
.y14{bottom:20.960000pt;}
.y1d{bottom:22.400000pt;}
.y15b{bottom:25.920000pt;}
.y34{bottom:27.200000pt;}
.y11{bottom:28.800000pt;}
.y37{bottom:29.120000pt;}
.y1e{bottom:31.520000pt;}
.y3{bottom:34.080000pt;}
.yfe{bottom:35.360000pt;}
.y35{bottom:35.680000pt;}
.y36{bottom:42.240000pt;}
.ya{bottom:43.520000pt;}
.y111{bottom:44.386667pt;}
.y7{bottom:45.600000pt;}
.y12{bottom:47.040000pt;}
.y1eb{bottom:49.440000pt;}
.y13{bottom:49.760000pt;}
.y2{bottom:52.000000pt;}
.y113{bottom:53.413333pt;}
.y110{bottom:54.786667pt;}
.yfd{bottom:55.840000pt;}
.y117{bottom:56.000000pt;}
.y103{bottom:56.026667pt;}
.y112{bottom:69.573333pt;}
.y100{bottom:76.480000pt;}
.y102{bottom:76.506667pt;}
.yfc{bottom:76.520000pt;}
.y12c{bottom:98.880000pt;}
.y1e1{bottom:109.280000pt;}
.y1df{bottom:111.872000pt;}
.y165{bottom:112.960000pt;}
.y10d{bottom:113.186667pt;}
.y10f{bottom:116.933333pt;}
.y1d7{bottom:117.760000pt;}
.y5b{bottom:118.880000pt;}
.y12b{bottom:119.520000pt;}
.y1c2{bottom:120.800000pt;}
.y101{bottom:121.760000pt;}
.y191{bottom:124.320000pt;}
.y10e{bottom:133.093333pt;}
.y164{bottom:135.520000pt;}
.y170{bottom:136.000000pt;}
.y12a{bottom:140.160000pt;}
.y1de{bottom:140.506667pt;}
.y1e4{bottom:140.800000pt;}
.y190{bottom:144.960000pt;}
.y1e2{bottom:145.760000pt;}
.y1d6{bottom:146.240000pt;}
.y5a{bottom:147.520000pt;}
.y1e5{bottom:149.760000pt;}
.y14f{bottom:150.080000pt;}
.y1e3{bottom:150.880000pt;}
.yd5{bottom:163.040000pt;}
.y16f{bottom:163.520000pt;}
.y129{bottom:168.640000pt;}
.y1dd{bottom:169.146667pt;}
.y18f{bottom:174.266667pt;}
.y1d5{bottom:174.906667pt;}
.y59{bottom:176.186667pt;}
.y10c{bottom:176.733333pt;}
.y14e{bottom:178.746667pt;}
.y163{bottom:180.026667pt;}
.yd4{bottom:183.546667pt;}
.y16e{bottom:185.626667pt;}
.y1cb{bottom:186.106667pt;}
.y128{bottom:189.306667pt;}
.y1e8{bottom:197.306667pt;}
.y1dc{bottom:197.626667pt;}
.y14d{bottom:199.386667pt;}
.y58{bottom:202.106667pt;}
.y1c7{bottom:202.746667pt;}
.y1d4{bottom:203.546667pt;}
.y18e{bottom:203.706667pt;}
.yd3{bottom:204.186667pt;}
.y1c3{bottom:207.546667pt;}
.y1c9{bottom:207.866667pt;}
.y1ca{bottom:210.746667pt;}
.y127{bottom:218.586667pt;}
.y57{bottom:219.866667pt;}
.y1cc{bottom:220.666667pt;}
.yff{bottom:220.826667pt;}
.y1e7{bottom:221.786667pt;}
.y1db{bottom:222.266667pt;}
.y1e6{bottom:223.866667pt;}
.y162{bottom:224.506667pt;}
.yd2{bottom:224.826667pt;}
.y1b7{bottom:227.706667pt;}
.y14c{bottom:227.866667pt;}
.y1d3{bottom:232.186667pt;}
.y18d{bottom:232.346667pt;}
.y109{bottom:235.013333pt;}
.y1c5{bottom:237.306667pt;}
.y56{bottom:237.786667pt;}
.y126{bottom:239.226667pt;}
.y1c6{bottom:239.866667pt;}
.y10b{bottom:244.026667pt;}
.y108{bottom:245.413333pt;}
.y14b{bottom:248.506667pt;}
.y1c8{bottom:251.866667pt;}
.y18c{bottom:252.986667pt;}
.yd1{bottom:254.106667pt;}
.y1b6{bottom:257.786667pt;}
.y125{bottom:259.866667pt;}
.y10a{bottom:260.186667pt;}
.y1d2{bottom:260.666667pt;}
.y161{bottom:268.986667pt;}
.y18b{bottom:273.466667pt;}
.y1c4{bottom:273.786667pt;}
.y14a{bottom:277.146667pt;}
.y55{bottom:277.306667pt;}
.yd0{bottom:283.546667pt;}
.y124{bottom:289.146667pt;}
.y1d1{bottom:289.306667pt;}
.y18a{bottom:294.106667pt;}
.y1cd{bottom:299.866667pt;}
.y105{bottom:303.813333pt;}
.y149{bottom:305.626667pt;}
.y1b5{bottom:307.066667pt;}
.y107{bottom:307.546667pt;}
.y1ce{bottom:307.866667pt;}
.y123{bottom:309.786667pt;}
.y1cf{bottom:311.866667pt;}
.ycf{bottom:312.826667pt;}
.y160{bottom:313.466667pt;}
.y1d0{bottom:313.786667pt;}
.y189{bottom:314.746667pt;}
.yfb{bottom:319.866667pt;}
.y54{bottom:320.346667pt;}
.y106{bottom:323.706667pt;}
.y148{bottom:326.266667pt;}
.y1b4{bottom:326.426667pt;}
.y122{bottom:330.426667pt;}
.yce{bottom:333.466667pt;}
.y33{bottom:333.626667pt;}
.y188{bottom:335.226667pt;}
.y1b3{bottom:345.786667pt;}
.y53{bottom:346.586667pt;}
.y147{bottom:346.906667pt;}
.y15f{bottom:353.466667pt;}
.y187{bottom:355.866667pt;}
.y121{bottom:359.706667pt;}
.y93{bottom:360.026667pt;}
.ycd{bottom:362.906667pt;}
.yf0{bottom:366.426667pt;}
.y146{bottom:367.386667pt;}
.y52{bottom:370.106667pt;}
.y1b2{bottom:375.706667pt;}
.y186{bottom:376.506667pt;}
.y15e{bottom:379.546667pt;}
.y120{bottom:380.346667pt;}
.y31{bottom:380.666667pt;}
.ycc{bottom:383.426667pt;}
.yef{bottom:387.106667pt;}
.y145{bottom:388.066667pt;}
.y92{bottom:388.706667pt;}
.y1b1{bottom:390.306667pt;}
.y51{bottom:393.666667pt;}
.y11f{bottom:401.026667pt;}
.y15d{bottom:402.146667pt;}
.yee{bottom:407.746667pt;}
.y185{bottom:408.226667pt;}
.y91{bottom:409.186667pt;}
.y30{bottom:409.986667pt;}
.ycb{bottom:412.866667pt;}
.y1b0{bottom:416.866667pt;}
.y50{bottom:417.186667pt;}
.yfa{bottom:418.946667pt;}
.y144{bottom:419.906667pt;}
.y11e{bottom:421.506667pt;}
.yed{bottom:428.226667pt;}
.y90{bottom:429.826667pt;}
.yca{bottom:433.346667pt;}
.y6{bottom:435.106667pt;}
.y2f{bottom:439.266667pt;}
.y4f{bottom:440.706667pt;}
.y184{bottom:440.866667pt;}
.y1af{bottom:443.426667pt;}
.y15c{bottom:446.626667pt;}
.yec{bottom:448.866667pt;}
.y11d{bottom:450.146667pt;}
.y8f{bottom:450.466667pt;}
.y143{bottom:452.386667pt;}
.y183{bottom:461.506667pt;}
.yc9{bottom:462.786667pt;}
.y4e{bottom:464.386667pt;}
.yf9{bottom:469.666667pt;}
.y1ae{bottom:469.986667pt;}
.y11c{bottom:470.786667pt;}
.y142{bottom:473.026667pt;}
.y2e{bottom:476.386667pt;}
.y8e{bottom:479.106667pt;}
.yeb{bottom:480.706667pt;}
.y182{bottom:481.986667pt;}
.yc8{bottom:483.426667pt;}
.y4d{bottom:488.546667pt;}
.y15a{bottom:491.106667pt;}
.yf8{bottom:495.746667pt;}
.y1ad{bottom:496.546667pt;}
.y8d{bottom:499.586667pt;}
.y141{bottom:501.666667pt;}
.y11b{bottom:502.626667pt;}
.yc7{bottom:503.906667pt;}
.yea{bottom:514.946667pt;}
.yf7{bottom:516.386667pt;}
.y9{bottom:516.866667pt;}
.y4c{bottom:519.266667pt;}
.y8c{bottom:520.226667pt;}
.y2d{bottom:520.386667pt;}
.y140{bottom:522.306667pt;}
.y1ac{bottom:523.106667pt;}
.y181{bottom:523.266667pt;}
.yc6{bottom:524.546667pt;}
.y2b{bottom:534.946667pt;}
.y159{bottom:535.586667pt;}
.y16d{bottom:535.746667pt;}
.yf6{bottom:536.866667pt;}
.y8b{bottom:540.866667pt;}
.y180{bottom:543.746667pt;}
.yc5{bottom:545.186667pt;}
.y1ab{bottom:549.826667pt;}
.y4b{bottom:550.146667pt;}
.y13f{bottom:550.786667pt;}
.yb5{bottom:554.146667pt;}
.yf5{bottom:557.506667pt;}
.y16c{bottom:557.666667pt;}
.y8a{bottom:561.346667pt;}
.y2a{bottom:564.226667pt;}
.yc4{bottom:565.666667pt;}
.y17f{bottom:566.466667pt;}
.ye9{bottom:570.786667pt;}
.y13e{bottom:571.426667pt;}
.y11a{bottom:572.066667pt;}
.yb4{bottom:573.506667pt;}
.y158{bottom:575.586667pt;}
.y1aa{bottom:576.386667pt;}
.y4a{bottom:579.906667pt;}
.y89{bottom:581.986667pt;}
.yc3{bottom:586.306667pt;}
.yf4{bottom:589.346667pt;}
.ye8{bottom:591.266667pt;}
.y119{bottom:592.546667pt;}
.yb3{bottom:592.706667pt;}
.y17d{bottom:593.026667pt;}
.y28{bottom:593.506667pt;}
.y77{bottom:596.093333pt;}
.y13d{bottom:600.093333pt;}
.y157{bottom:601.693333pt;}
.y49{bottom:601.853333pt;}
.y1a0{bottom:602.173333pt;}
.y88{bottom:602.653333pt;}
.y1a9{bottom:602.973333pt;}
.ya3{bottom:605.213333pt;}
.yc2{bottom:606.973333pt;}
.yb2{bottom:612.093333pt;}
.ye7{bottom:613.853333pt;}
.y118{bottom:615.133333pt;}
.y76{bottom:618.653333pt;}
.y17b{bottom:619.613333pt;}
.y13c{bottom:620.573333pt;}
.yf3{bottom:621.853333pt;}
.ye{bottom:622.333333pt;}
.y87{bottom:623.133333pt;}
.y48{bottom:624.093333pt;}
.ya2{bottom:625.693333pt;}
.yc1{bottom:627.613333pt;}
.y1a8{bottom:629.533333pt;}
.y27{bottom:630.493333pt;}
.y19f{bottom:630.813333pt;}
.yb1{bottom:631.453333pt;}
.ye6{bottom:640.573333pt;}
.y13b{bottom:641.213333pt;}
.yf2{bottom:642.493333pt;}
.y86{bottom:643.773333pt;}
.y47{bottom:647.613333pt;}
.yc0{bottom:648.093333pt;}
.y1da{bottom:650.053333pt;}
.ya1{bottom:655.133333pt;}
.y156{bottom:655.293333pt;}
.y75{bottom:655.933333pt;}
.y1a7{bottom:656.093333pt;}
.y104{bottom:656.480000pt;}
.y19e{bottom:659.293333pt;}
.yb0{bottom:661.373333pt;}
.y17a{bottom:664.093333pt;}
.ye5{bottom:667.133333pt;}
.ybf{bottom:668.733333pt;}
.y13a{bottom:669.853333pt;}
.y46{bottom:671.133333pt;}
.y85{bottom:672.413333pt;}
.y1c0{bottom:674.333333pt;}
.y26{bottom:674.493333pt;}
.ya0{bottom:675.773333pt;}
.yaf{bottom:680.733333pt;}
.y1a6{bottom:682.653333pt;}
.y1d9{bottom:685.253333pt;}
.y19d{bottom:687.933333pt;}
.y25{bottom:689.213333pt;}
.ybe{bottom:689.373333pt;}
.y139{bottom:690.333333pt;}
.y179{bottom:690.653333pt;}
.y84{bottom:692.893333pt;}
.y74{bottom:693.213333pt;}
.ye4{bottom:693.693333pt;}
.y45{bottom:694.333333pt;}
.y1bf{bottom:694.813333pt;}
.yae{bottom:700.093333pt;}
.y9f{bottom:705.053333pt;}
.y19c{bottom:708.573333pt;}
.y1a5{bottom:709.213333pt;}
.y68{bottom:709.693333pt;}
.y155{bottom:710.973333pt;}
.y83{bottom:713.533333pt;}
.y1be{bottom:715.453333pt;}
.y44{bottom:716.253333pt;}
.y178{bottom:717.213333pt;}
.y138{bottom:718.973333pt;}
.ye3{bottom:720.253333pt;}
.ybd{bottom:721.053333pt;}
.y24{bottom:722.653333pt;}
.y9e{bottom:725.693333pt;}
.y19b{bottom:729.053333pt;}
.yad{bottom:730.013333pt;}
.y73{bottom:730.333333pt;}
.y116{bottom:730.813333pt;}
.y1d8{bottom:732.640000pt;}
.y82{bottom:734.173333pt;}
.y1a4{bottom:735.773333pt;}
.y67{bottom:738.333333pt;}
.y43{bottom:738.493333pt;}
.y154{bottom:739.613333pt;}
.y177{bottom:743.773333pt;}
.y1bd{bottom:744.093333pt;}
.ye2{bottom:746.813333pt;}
.y137{bottom:747.613333pt;}
.ybc{bottom:753.693333pt;}
.y81{bottom:754.653333pt;}
.y9d{bottom:755.133333pt;}
.y19a{bottom:757.693333pt;}
.yac{bottom:760.093333pt;}
.y23{bottom:760.413333pt;}
.y42{bottom:761.693333pt;}
.y1a3{bottom:762.333333pt;}
.y1bc{bottom:764.573333pt;}
.y66{bottom:766.973333pt;}
.y72{bottom:767.613333pt;}
.y136{bottom:768.093333pt;}
.ye1{bottom:773.373333pt;}
.ybb{bottom:774.333333pt;}
.y80{bottom:775.293333pt;}
.y9c{bottom:775.613333pt;}
.yab{bottom:779.293333pt;}
.y41{bottom:783.453333pt;}
.y176{bottom:783.773333pt;}
.y199{bottom:787.133333pt;}
.y153{bottom:788.733333pt;}
.y1a2{bottom:788.893333pt;}
.y1bb{bottom:793.213333pt;}
.y21{bottom:793.853333pt;}
.yba{bottom:794.813333pt;}
.y65{bottom:795.453333pt;}
.y135{bottom:796.733333pt;}
.ydf{bottom:799.933333pt;}
.y7f{bottom:803.933333pt;}
.y70{bottom:804.893333pt;}
.y9b{bottom:805.053333pt;}
.y40{bottom:805.893333pt;}
.yaa{bottom:809.413333pt;}
.y175{bottom:809.893333pt;}
.y1ba{bottom:813.893333pt;}
.yb9{bottom:815.493333pt;}
.y198{bottom:816.453333pt;}
.y134{bottom:817.413333pt;}
.y64{bottom:824.133333pt;}
.y7e{bottom:824.453333pt;}
.y9a{bottom:825.573333pt;}
.yde{bottom:826.533333pt;}
.ya9{bottom:828.773333pt;}
.y3f{bottom:828.933333pt;}
.y115{bottom:829.893333pt;}
.y174{bottom:830.533333pt;}
.y20{bottom:831.813333pt;}
.y1b9{bottom:834.373333pt;}
.yb8{bottom:836.133333pt;}
.y6f{bottom:842.213333pt;}
.y7d{bottom:845.093333pt;}
.y133{bottom:845.893333pt;}
.ya8{bottom:847.973333pt;}
.y3e{bottom:850.853333pt;}
.y173{bottom:851.013333pt;}
.y63{bottom:852.773333pt;}
.ydc{bottom:853.093333pt;}
.y99{bottom:855.013333pt;}
.yb7{bottom:856.613333pt;}
.y7c{bottom:865.733333pt;}
.y132{bottom:866.533333pt;}
.y1c{bottom:869.573333pt;}
.y172{bottom:871.653333pt;}
.y3d{bottom:873.093333pt;}
.y197{bottom:875.173333pt;}
.y1a1{bottom:875.653333pt;}
.ya7{bottom:878.053333pt;}
.y62{bottom:878.693333pt;}
.y6d{bottom:879.493333pt;}
.y98{bottom:883.653333pt;}
.y7b{bottom:886.213333pt;}
.y16b{bottom:886.853333pt;}
.yb6{bottom:889.573333pt;}
.ydb{bottom:893.093333pt;}
.y131{bottom:895.173333pt;}
.y1b8{bottom:896.133333pt;}
.y61{bottom:896.613333pt;}
.y3c{bottom:897.413333pt;}
.y171{bottom:903.493333pt;}
.y97{bottom:904.133333pt;}
.y196{bottom:904.613333pt;}
.y7a{bottom:906.853333pt;}
.ya6{bottom:907.973333pt;}
.y60{bottom:914.373333pt;}
.y16a{bottom:915.493333pt;}
.y130{bottom:915.653333pt;}
.y6b{bottom:916.773333pt;}
.yda{bottom:919.173333pt;}
.y96{bottom:924.773333pt;}
.y19{bottom:925.253333pt;}
.ya5{bottom:927.333333pt;}
.y79{bottom:927.493333pt;}
.y3b{bottom:928.133333pt;}
.y114{bottom:928.933333pt;}
.y5f{bottom:932.293333pt;}
.y195{bottom:933.893333pt;}
.y169{bottom:935.973333pt;}
.y12f{bottom:936.293333pt;}
.yd9{bottom:939.813333pt;}
.y152{bottom:944.293333pt;}
.y95{bottom:945.413333pt;}
.ya4{bottom:946.693333pt;}
.y78{bottom:948.133333pt;}
.y5e{bottom:950.213333pt;}
.y1ea{bottom:954.053333pt;}
.y168{bottom:956.613333pt;}
.y3a{bottom:959.013333pt;}
.yd8{bottom:960.293333pt;}
.y1c1{bottom:962.213333pt;}
.y17{bottom:963.013333pt;}
.y194{bottom:963.333333pt;}
.y12e{bottom:964.933333pt;}
.y94{bottom:966.053333pt;}
.y5d{bottom:968.133333pt;}
.y6a{bottom:968.613333pt;}
.y151{bottom:972.933333pt;}
.y167{bottom:977.253333pt;}
.yd7{bottom:980.933333pt;}
.y193{bottom:983.973333pt;}
.y1e9{bottom:984.133333pt;}
.y5{bottom:985.413333pt;}
.y150{bottom:993.413333pt;}
.y16{bottom:999.973333pt;}
.y39{bottom:1002.213333pt;}
.y69{bottom:1002.533333pt;}
.y1ed{bottom:1002.853333pt;}
.y4{bottom:1006.053333pt;}
.y1e0{bottom:1007.493333pt;}
.y5c{bottom:1007.653333pt;}
.y166{bottom:1010.213333pt;}
.yd6{bottom:1012.773333pt;}
.y192{bottom:1013.253333pt;}
.y12d{bottom:1014.053333pt;}
.yf1{bottom:1016.613333pt;}
.y1{bottom:1061.440000pt;}
.h36{height:12.960000pt;}
.h31{height:14.400000pt;}
.h34{height:16.160000pt;}
.h35{height:19.040000pt;}
.h25{height:25.760000pt;}
.h2e{height:25.792000pt;}
.h23{height:25.920000pt;}
.h24{height:25.952000pt;}
.h9{height:26.880000pt;}
.he{height:28.480000pt;}
.h14{height:28.512000pt;}
.h15{height:28.640000pt;}
.h16{height:28.672000pt;}
.h32{height:29.472000pt;}
.h12{height:32.800000pt;}
.h1d{height:36.480000pt;}
.h22{height:36.609375pt;}
.h1e{height:36.640000pt;}
.h1f{height:36.672000pt;}
.h29{height:36.920625pt;}
.hf{height:36.960000pt;}
.h13{height:37.120000pt;}
.h11{height:37.152000pt;}
.hc{height:42.649687pt;}
.h2c{height:43.840000pt;}
.h2d{height:43.872000pt;}
.hb{height:43.905937pt;}
.h2{height:44.907500pt;}
.h1c{height:44.965000pt;}
.h17{height:46.400000pt;}
.h33{height:54.390938pt;}
.h10{height:54.880000pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h21{height:60.937500pt;}
.ha{height:62.560000pt;}
.h6{height:63.656250pt;}
.h18{height:65.440000pt;}
.h5{height:68.800000pt;}
.h20{height:71.296875pt;}
.h1a{height:76.671562pt;}
.h2b{height:77.760000pt;}
.h19{height:81.046875pt;}
.h7{height:83.232000pt;}
.h27{height:98.400000pt;}
.h26{height:98.432000pt;}
.h1b{height:101.765625pt;}
.h2a{height:105.923750pt;}
.hd{height:111.515625pt;}
.h8{height:132.405000pt;}
.h28{height:346.720000pt;}
.h2f{height:793.760000pt;}
.h30{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1e{width:46.240000pt;}
.w1f{width:56.160000pt;}
.w17{width:65.280000pt;}
.we{width:67.680000pt;}
.w29{width:88.000000pt;}
.w2b{width:88.032000pt;}
.w2a{width:88.160000pt;}
.w28{width:88.192000pt;}
.w22{width:93.472000pt;}
.w26{width:102.240000pt;}
.w20{width:112.672000pt;}
.wf{width:112.832000pt;}
.w18{width:130.432000pt;}
.w27{width:135.066667pt;}
.wa{width:149.786667pt;}
.w9{width:149.946667pt;}
.wb{width:150.266667pt;}
.wc{width:152.346667pt;}
.w7{width:152.826667pt;}
.w13{width:169.146667pt;}
.w1b{width:178.586667pt;}
.w16{width:185.026667pt;}
.w3{width:186.786667pt;}
.w1c{width:210.106667pt;}
.w1d{width:210.466667pt;}
.w10{width:210.906667pt;}
.w11{width:211.426667pt;}
.w5{width:224.866667pt;}
.w21{width:292.226667pt;}
.w6{width:313.600000pt;}
.w19{width:386.973333pt;}
.w15{width:414.946667pt;}
.w4{width:431.293333pt;}
.w14{width:433.533333pt;}
.w8{width:451.293333pt;}
.wd{width:451.773333pt;}
.w12{width:466.493333pt;}
.w1a{width:575.613333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w25{width:1122.559983pt;}
.w23{width:1122.560000pt;}
.w24{width:1122.666667pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x6{left:9.600000pt;}
.x13{left:10.720000pt;}
.x35{left:13.920000pt;}
.x3e{left:15.840000pt;}
.x1b{left:20.960000pt;}
.x31{left:22.600000pt;}
.x1a{left:24.640000pt;}
.x66{left:26.106667pt;}
.x36{left:28.954667pt;}
.x3f{left:31.360000pt;}
.x37{left:32.640000pt;}
.x4b{left:33.760000pt;}
.x38{left:34.880000pt;}
.x1d{left:37.280000pt;}
.x15{left:41.920000pt;}
.x40{left:43.040000pt;}
.x24{left:44.794667pt;}
.x17{left:45.920000pt;}
.x49{left:51.040000pt;}
.x41{left:53.920000pt;}
.xb{left:60.893333pt;}
.x4d{left:63.680000pt;}
.x46{left:64.954667pt;}
.x28{left:68.794667pt;}
.x1e{left:71.360000pt;}
.x4e{left:72.954667pt;}
.x29{left:74.074667pt;}
.x19{left:76.680000pt;}
.x27{left:79.994667pt;}
.x4c{left:81.480000pt;}
.x4a{left:82.600000pt;}
.x2a{left:84.634667pt;}
.x32{left:88.840000pt;}
.x48{left:89.800000pt;}
.x1f{left:93.640000pt;}
.x4{left:94.591988pt;}
.x2e{left:96.672000pt;}
.x3d{left:103.007988pt;}
.x1c{left:105.466667pt;}
.x42{left:109.152000pt;}
.x39{left:110.879988pt;}
.x3c{left:112.319988pt;}
.xa{left:114.053333pt;}
.x2b{left:118.591988pt;}
.x21{left:132.351988pt;}
.x2c{left:142.586655pt;}
.x2f{left:148.194667pt;}
.x3a{left:160.346655pt;}
.x14{left:162.906667pt;}
.x3b{left:166.426655pt;}
.x34{left:170.906667pt;}
.x26{left:181.786667pt;}
.x67{left:184.186667pt;}
.x4f{left:198.906667pt;}
.x3{left:241.346655pt;}
.x10{left:248.066667pt;}
.x25{left:265.186667pt;}
.x43{left:268.994667pt;}
.x16{left:276.386667pt;}
.xd{left:301.440000pt;}
.xe{left:304.160000pt;}
.x50{left:312.386667pt;}
.x45{left:325.506655pt;}
.x20{left:327.906655pt;}
.x22{left:343.266655pt;}
.x23{left:346.946655pt;}
.x8{left:357.826667pt;}
.x7{left:359.266667pt;}
.x5{left:364.226667pt;}
.x68{left:370.786667pt;}
.x65{left:378.146667pt;}
.x5d{left:396.893322pt;}
.x11{left:398.653333pt;}
.x9{left:459.520000pt;}
.x69{left:465.693333pt;}
.x47{left:486.813333pt;}
.x18{left:487.933333pt;}
.x30{left:512.253333pt;}
.xc{left:543.013322pt;}
.x12{left:549.093333pt;}
.x5f{left:561.373317pt;}
.x51{left:605.253333pt;}
.x1{left:607.973322pt;}
.x59{left:639.173322pt;}
.x5b{left:644.933322pt;}
.x5c{left:647.973322pt;}
.x5a{left:651.013322pt;}
.x53{left:667.013322pt;}
.x33{left:668.613322pt;}
.x58{left:672.933322pt;}
.x56{left:675.013322pt;}
.x55{left:675.973322pt;}
.x54{left:677.893322pt;}
.x64{left:683.013322pt;}
.x2d{left:684.293322pt;}
.x57{left:687.039988pt;}
.x52{left:689.279988pt;}
.x2{left:691.839988pt;}
.x44{left:695.359988pt;}
.x61{left:714.879988pt;}
.x62{left:720.639988pt;}
.x63{left:728.639988pt;}
.x5e{left:1013.119983pt;}
.x60{left:1042.719983pt;}
}




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