
    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_9c18d6d9a96d6b6eb111b354.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2d81f40275270ddb88dd6918.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c97418d874311f0f9bbbac33.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_fadbd0e2cdbd51ac2e6a94e3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.957031;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_96c4342f1ef0a97e2168e33c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ba5e081df00a93e3f592859d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_56407f62e0d97df2b03d2132.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cae4f00fd9a6d1e728e63708.woff')format("woff");}.ffb{font-family:ffb;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_445307397a82364d4bc69bb2.woff')format("woff");}.ffd{font-family:ffd;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_e7b0393e71f14ed8ab5f6477.woff')format("woff");}.ffe{font-family:ffe;line-height:0.978027;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls6{letter-spacing:-1.896000px;}
.ls10{letter-spacing:-1.440000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls11{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.463800px;}
.ls7{letter-spacing:-0.457800px;}
.ls5{letter-spacing:-0.382800px;}
.ls19{letter-spacing:-0.305400px;}
.ls4{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.020160px;}
.ls24{letter-spacing:0.120000px;}
.ls8{letter-spacing:0.132480px;}
.ls1d{letter-spacing:0.152400px;}
.ls1e{letter-spacing:0.178560px;}
.ls21{letter-spacing:0.305280px;}
.lsb{letter-spacing:0.305400px;}
.ls1a{letter-spacing:0.457800px;}
.ls9{letter-spacing:0.457920px;}
.ls0{letter-spacing:0.604800px;}
.ls1{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.840000px;}
.ls14{letter-spacing:0.900000px;}
.ls2{letter-spacing:0.984960px;}
.ls20{letter-spacing:1.746000px;}
.ls15{letter-spacing:5.040000px;}
.ls22{letter-spacing:13.265280px;}
.lsc{letter-spacing:19.440000px;}
.ls23{letter-spacing:30.718560px;}
.ls17{letter-spacing:37.757280px;}
.ls1f{letter-spacing:42.209280px;}
.ls13{letter-spacing:59.357280px;}
.ls3{letter-spacing:62.369280px;}
.ls16{letter-spacing:65.117280px;}
.ls12{letter-spacing:66.557280px;}
.lsd{letter-spacing:67.997280px;}
.ls1c{letter-spacing:68.129280px;}
.lse{letter-spacing:72.449280px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc1{text-shadow:-0.015em 0 rgb(128,128,128),0 0.015em rgb(128,128,128),0.015em 0 rgb(128,128,128),0 -0.015em  rgb(128,128,128);}
.sc0{text-shadow:-0.015em 0 rgb(204,0,153),0 0.015em rgb(204,0,153),0.015em 0 rgb(204,0,153),0 -0.015em  rgb(204,0,153);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(128,128,128);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(204,0,153);text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.715200px;}
.wsd{word-spacing:-17.017800px;}
.ws7{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.712400px;}
.ws2{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.ws8{word-spacing:-15.948000px;}
.wse{word-spacing:-15.732000px;}
.ws11{word-spacing:-15.140160px;}
.ws9{word-spacing:-15.120000px;}
.ws6{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.506440px;}
.ws12{word-spacing:-13.680000px;}
.ws1{word-spacing:-11.983920px;}
.ws3{word-spacing:-10.739520px;}
.ws10{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._5{margin-left:-4.742880px;}
._4{margin-left:-2.987040px;}
._3{margin-left:-1.477440px;}
._0{width:1.169280px;}
._1{width:3.083520px;}
._f{width:4.415040px;}
._d{width:5.895840px;}
._a{width:6.955680px;}
._9{width:8.568000px;}
._b{width:9.708480px;}
._c{width:11.624160px;}
._e{width:12.856800px;}
._10{width:13.924320px;}
._15{width:15.293760px;}
._1f{width:17.223360px;}
._17{width:18.368640px;}
._16{width:19.494720px;}
._11{width:21.292320px;}
._12{width:22.939200px;}
._18{width:24.177600px;}
._1a{width:25.705440px;}
._19{width:27.024960px;}
._8{width:28.866720px;}
._6{width:30.381120px;}
._7{width:31.840800px;}
._1d{width:37.491840px;}
._1c{width:39.015360px;}
._1e{width:40.397760px;}
._13{width:42.744960px;}
._14{width:44.156160px;}
._23{width:45.773280px;}
._22{width:46.837440px;}
._21{width:47.917440px;}
._20{width:49.498560px;}
._1b{width:101.545920px;}
._25{width:147.591360px;}
._24{width:148.927680px;}
._26{width:150.139680px;}
._2{width:395.273280px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(202,60,155);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(204,0,153);}
.fs2{font-size:24.480000px;}
.fs8{font-size:36.000000px;}
.fs9{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fsb{font-size:60.480000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs1{font-size:83.520000px;}
.fs6{font-size:119.520000px;}
.fs0{font-size:191.520000px;}
.y19a{bottom:-33.120000px;}
.y199{bottom:-13.680000px;}
.y6{bottom:-4.320000px;}
.y149{bottom:-2.010000px;}
.y0{bottom:0.000000px;}
.y1d7{bottom:1.800000px;}
.y8{bottom:3.600000px;}
.y183{bottom:3.960000px;}
.y181{bottom:4.320000px;}
.y17f{bottom:4.680000px;}
.y168{bottom:5.400000px;}
.y1c6{bottom:5.760000px;}
.y21{bottom:6.120000px;}
.y14e{bottom:6.480000px;}
.y173{bottom:6.510000px;}
.y27{bottom:6.840000px;}
.y1ae{bottom:7.560000px;}
.y1d3{bottom:7.920000px;}
.y1e5{bottom:9.000000px;}
.y146{bottom:9.180000px;}
.y1e3{bottom:10.440000px;}
.y144{bottom:10.590000px;}
.y142{bottom:11.670000px;}
.y1e0{bottom:12.240000px;}
.y1b5{bottom:12.600000px;}
.y1d6{bottom:14.070000px;}
.y1b0{bottom:15.480000px;}
.y26{bottom:21.240000px;}
.y153{bottom:22.320000px;}
.y152{bottom:22.350000px;}
.y156{bottom:22.365000px;}
.y14c{bottom:22.680000px;}
.y15b{bottom:22.710000px;}
.y157{bottom:22.725000px;}
.y1c2{bottom:23.400000px;}
.y1c5{bottom:24.480000px;}
.y148{bottom:26.430000px;}
.y1c7{bottom:26.640000px;}
.y20{bottom:28.080000px;}
.y172{bottom:28.110000px;}
.y9{bottom:30.600000px;}
.y1df{bottom:31.320000px;}
.y14b{bottom:41.445000px;}
.y1c1{bottom:42.480000px;}
.y1cc{bottom:47.550000px;}
.y1f{bottom:50.040000px;}
.y7{bottom:57.240000px;}
.y1c0{bottom:61.245000px;}
.y1e{bottom:71.640000px;}
.y1ac{bottom:72.000000px;}
.y5{bottom:84.636000px;}
.y1d{bottom:93.630000px;}
.y1c{bottom:115.590000px;}
.y1b{bottom:137.190000px;}
.y88{bottom:141.876000px;}
.y30{bottom:147.276000px;}
.ye6{bottom:147.636000px;}
.y218{bottom:150.150000px;}
.ya2{bottom:152.310000px;}
.y1bf{bottom:154.470000px;}
.y16e{bottom:156.630000px;}
.yc2{bottom:157.350000px;}
.y5d{bottom:158.790000px;}
.y1a{bottom:159.150000px;}
.y1ea{bottom:161.670000px;}
.y10a{bottom:162.390000px;}
.y63{bottom:162.750000px;}
.y87{bottom:163.830000px;}
.y127{bottom:164.550000px;}
.y217{bottom:167.430000px;}
.y2f{bottom:168.870000px;}
.ye5{bottom:169.590000px;}
.y140{bottom:173.550000px;}
.ya1{bottom:173.910000px;}
.yc1{bottom:179.310000px;}
.y19{bottom:180.750000px;}
.y189{bottom:182.550000px;}
.y1e9{bottom:183.270000px;}
.y62{bottom:184.350000px;}
.y216{bottom:184.710000px;}
.y86{bottom:185.430000px;}
.y2e{bottom:190.830000px;}
.ye4{bottom:191.550000px;}
.y126{bottom:192.990000px;}
.y1c3{bottom:193.350000px;}
.ya0{bottom:195.870000px;}
.yc0{bottom:200.955000px;}
.y16d{bottom:202.035000px;}
.y5c{bottom:202.395000px;}
.y18{bottom:202.710000px;}
.y109{bottom:205.995000px;}
.y61{bottom:206.355000px;}
.y85{bottom:207.435000px;}
.y188{bottom:208.875000px;}
.y2d{bottom:212.835000px;}
.ye3{bottom:213.195000px;}
.y125{bottom:214.635000px;}
.y9f{bottom:217.875000px;}
.y215{bottom:219.315000px;}
.y1e8{bottom:220.755000px;}
.ybf{bottom:222.915000px;}
.y5b{bottom:224.355000px;}
.y17{bottom:224.700000px;}
.y108{bottom:227.955000px;}
.y60{bottom:228.315000px;}
.y84{bottom:229.035000px;}
.y13f{bottom:230.835000px;}
.y1be{bottom:231.915000px;}
.y2c{bottom:234.435000px;}
.ye2{bottom:235.155000px;}
.y214{bottom:236.235000px;}
.y124{bottom:236.595000px;}
.y9e{bottom:239.475000px;}
.ybe{bottom:244.875000px;}
.y16{bottom:246.300000px;}
.y5a{bottom:246.315000px;}
.y16c{bottom:247.035000px;}
.y187{bottom:249.915000px;}
.y83{bottom:250.995000px;}
.y1e7{bottom:251.715000px;}
.y1bd{bottom:253.515000px;}
.y2b{bottom:256.395000px;}
.y107{bottom:258.555000px;}
.y5f{bottom:258.915000px;}
.y13e{bottom:259.635000px;}
.y9d{bottom:261.435000px;}
.y240{bottom:262.515000px;}
.ye1{bottom:266.115000px;}
.ybd{bottom:266.475000px;}
.y123{bottom:267.555000px;}
.y59{bottom:267.915000px;}
.y16b{bottom:269.715000px;}
.y213{bottom:270.795000px;}
.y186{bottom:271.875000px;}
.y82{bottom:272.955000px;}
.y1e6{bottom:273.315000px;}
.y2a{bottom:277.995000px;}
.y1bc{bottom:279.435000px;}
.y23f{bottom:279.795000px;}
.y106{bottom:280.515000px;}
.y5e{bottom:280.875000px;}
.y9c{bottom:283.035000px;}
.y13d{bottom:288.075000px;}
.ybc{bottom:288.435000px;}
.ye0{bottom:289.155000px;}
.y58{bottom:289.875000px;}
.y185{bottom:292.755000px;}
.y81{bottom:294.555000px;}
.y23e{bottom:297.075000px;}
.y105{bottom:302.475000px;}
.y9b{bottom:304.995000px;}
.y212{bottom:305.355000px;}
.y1bb{bottom:310.395000px;}
.y122{bottom:311.115000px;}
.y57{bottom:311.475000px;}
.ydf{bottom:312.195000px;}
.y184{bottom:314.355000px;}
.y29{bottom:315.435000px;}
.y80{bottom:316.515000px;}
.y211{bottom:322.635000px;}
.y104{bottom:324.105000px;}
.y9a{bottom:326.985000px;}
.y16a{bottom:328.065000px;}
.y1ba{bottom:329.505000px;}
.y23d{bottom:331.665000px;}
.y121{bottom:333.105000px;}
.y56{bottom:333.465000px;}
.yde{bottom:334.905000px;}
.y182{bottom:335.625000px;}
.y7f{bottom:338.145000px;}
.y210{bottom:339.945000px;}
.y28{bottom:344.985000px;}
.y103{bottom:346.065000px;}
.y169{bottom:347.145000px;}
.y1b9{bottom:348.225000px;}
.y99{bottom:348.585000px;}
.y23c{bottom:348.945000px;}
.y120{bottom:354.705000px;}
.y55{bottom:355.425000px;}
.y180{bottom:356.505000px;}
.ydd{bottom:356.865000px;}
.y20f{bottom:357.225000px;}
.y1e4{bottom:357.585000px;}
.y7e{bottom:360.105000px;}
.y23b{bottom:366.225000px;}
.y25{bottom:366.945000px;}
.y98{bottom:370.545000px;}
.y20e{bottom:374.505000px;}
.y13c{bottom:374.865000px;}
.y1b8{bottom:375.585000px;}
.y102{bottom:376.665000px;}
.y54{bottom:377.025000px;}
.y17e{bottom:377.745000px;}
.ydc{bottom:378.465000px;}
.ybb{bottom:381.705000px;}
.y7d{bottom:382.065000px;}
.y1e2{bottom:382.785000px;}
.y23a{bottom:383.505000px;}
.y167{bottom:391.065000px;}
.y20d{bottom:391.785000px;}
.y97{bottom:392.145000px;}
.y1b7{bottom:396.825000px;}
.y11f{bottom:398.265000px;}
.y101{bottom:398.625000px;}
.y53{bottom:398.985000px;}
.y17d{bottom:399.345000px;}
.ydb{bottom:400.425000px;}
.y7c{bottom:403.665000px;}
.y13b{bottom:405.105000px;}
.y20c{bottom:409.065000px;}
.y166{bottom:412.665000px;}
.y24{bottom:413.385000px;}
.y96{bottom:414.105000px;}
.y1e1{bottom:415.905000px;}
.y239{bottom:417.705000px;}
.y1b6{bottom:418.065000px;}
.y17c{bottom:418.785000px;}
.y11e{bottom:420.225000px;}
.y52{bottom:420.585000px;}
.yda{bottom:422.385000px;}
.y7b{bottom:425.625000px;}
.y20b{bottom:425.985000px;}
.y100{bottom:429.585000px;}
.y165{bottom:432.465000px;}
.y238{bottom:434.985000px;}
.y95{bottom:436.065000px;}
.y17b{bottom:438.585000px;}
.y23{bottom:439.665000px;}
.y11d{bottom:442.185000px;}
.y51{bottom:442.545000px;}
.y20a{bottom:443.265000px;}
.yd9{bottom:443.985000px;}
.y7a{bottom:447.225000px;}
.y164{bottom:452.310000px;}
.y94{bottom:457.710000px;}
.y209{bottom:460.590000px;}
.y11c{bottom:463.830000px;}
.y50{bottom:464.550000px;}
.y22{bottom:465.990000px;}
.yff{bottom:467.070000px;}
.y79{bottom:469.230000px;}
.y237{bottom:469.590000px;}
.y163{bottom:471.750000px;}
.y13a{bottom:473.190000px;}
.y17a{bottom:474.630000px;}
.y1b4{bottom:476.070000px;}
.y208{bottom:477.870000px;}
.y11b{bottom:485.790000px;}
.y4f{bottom:486.150000px;}
.y236{bottom:486.870000px;}
.y93{bottom:488.670000px;}
.y1de{bottom:490.110000px;}
.yba{bottom:490.830000px;}
.y78{bottom:491.190000px;}
.y162{bottom:491.550000px;}
.y143{bottom:492.120000px;}
.y15{bottom:492.270000px;}
.y179{bottom:493.710000px;}
.y139{bottom:494.790000px;}
.y207{bottom:495.150000px;}
.yfe{bottom:496.230000px;}
.yd8{bottom:496.590000px;}
.y235{bottom:504.150000px;}
.y11a{bottom:507.390000px;}
.y4e{bottom:508.110000px;}
.y198{bottom:508.830000px;}
.y92{bottom:510.630000px;}
.y161{bottom:511.350000px;}
.y206{bottom:512.430000px;}
.y77{bottom:512.790000px;}
.yfd{bottom:515.670000px;}
.y1b3{bottom:516.390000px;}
.y138{bottom:516.750000px;}
.yd7{bottom:518.550000px;}
.y234{bottom:521.430000px;}
.y178{bottom:524.310000px;}
.y119{bottom:529.350000px;}
.y147{bottom:529.560000px;}
.y205{bottom:529.710000px;}
.y4d{bottom:530.070000px;}
.y160{bottom:531.150000px;}
.y91{bottom:532.230000px;}
.y76{bottom:534.750000px;}
.yfc{bottom:537.270000px;}
.y1b2{bottom:538.350000px;}
.y137{bottom:538.710000px;}
.y1dd{bottom:539.790000px;}
.y177{bottom:540.870000px;}
.y204{bottom:546.990000px;}
.yd6{bottom:549.510000px;}
.y141{bottom:549.720000px;}
.y15f{bottom:550.590000px;}
.y118{bottom:551.310000px;}
.y4c{bottom:551.670000px;}
.y90{bottom:554.190000px;}
.y233{bottom:555.990000px;}
.y75{bottom:556.350000px;}
.yfb{bottom:559.230000px;}
.y136{bottom:560.310000px;}
.y203{bottom:564.270000px;}
.y1dc{bottom:564.630000px;}
.y15e{bottom:570.390000px;}
.y232{bottom:573.270000px;}
.y4b{bottom:573.630000px;}
.y8f{bottom:575.820000px;}
.yb9{bottom:578.340000px;}
.yd5{bottom:580.140000px;}
.yfa{bottom:581.220000px;}
.y202{bottom:581.580000px;}
.y117{bottom:581.940000px;}
.y135{bottom:582.300000px;}
.y176{bottom:585.180000px;}
.y74{bottom:587.340000px;}
.y231{bottom:590.220000px;}
.y1b1{bottom:590.940000px;}
.y4a{bottom:595.260000px;}
.y1db{bottom:595.980000px;}
.y8e{bottom:597.780000px;}
.y145{bottom:598.320000px;}
.y201{bottom:598.860000px;}
.yb8{bottom:599.940000px;}
.yd4{bottom:602.100000px;}
.yf9{bottom:602.820000px;}
.y116{bottom:603.900000px;}
.y134{bottom:604.260000px;}
.y230{bottom:607.500000px;}
.y200{bottom:615.780000px;}
.y1ab{bottom:616.140000px;}
.y49{bottom:617.220000px;}
.y8d{bottom:619.740000px;}
.yb7{bottom:621.900000px;}
.yd3{bottom:623.700000px;}
.y1da{bottom:624.420000px;}
.y73{bottom:624.780000px;}
.y115{bottom:625.500000px;}
.y133{bottom:625.860000px;}
.y175{bottom:629.460000px;}
.y15d{bottom:629.820000px;}
.y1ff{bottom:633.060000px;}
.y48{bottom:639.180000px;}
.y8c{bottom:641.340000px;}
.y22f{bottom:642.060000px;}
.yb6{bottom:643.860000px;}
.yd2{bottom:645.660000px;}
.yf8{bottom:646.740000px;}
.y114{bottom:647.460000px;}
.y132{bottom:647.820000px;}
.y1fe{bottom:650.340000px;}
.y1d9{bottom:652.140000px;}
.y15c{bottom:653.580000px;}
.y72{bottom:655.740000px;}
.y1af{bottom:656.820000px;}
.y22e{bottom:659.340000px;}
.y47{bottom:660.780000px;}
.yb5{bottom:665.460000px;}
.y1fd{bottom:667.620000px;}
.yf7{bottom:668.340000px;}
.y8b{bottom:669.420000px;}
.y174{bottom:673.740000px;}
.y1d8{bottom:674.100000px;}
.yd1{bottom:676.620000px;}
.y71{bottom:677.340000px;}
.y131{bottom:678.420000px;}
.y15a{bottom:678.780000px;}
.y1ad{bottom:679.500000px;}
.y46{bottom:682.740000px;}
.y1fc{bottom:684.900000px;}
.yb4{bottom:687.420000px;}
.y8a{bottom:688.500000px;}
.y1d5{bottom:689.580000px;}
.yf6{bottom:690.300000px;}
.y22d{bottom:693.900000px;}
.y171{bottom:696.420000px;}
.yd0{bottom:698.220000px;}
.y70{bottom:699.300000px;}
.y113{bottom:700.020000px;}
.y1fb{bottom:702.210000px;}
.y45{bottom:704.370000px;}
.y89{bottom:707.610000px;}
.yb3{bottom:709.410000px;}
.y22c{bottom:711.210000px;}
.yf5{bottom:711.930000px;}
.y159{bottom:717.330000px;}
.y1fa{bottom:719.490000px;}
.ycf{bottom:720.210000px;}
.y6f{bottom:721.290000px;}
.y112{bottom:722.010000px;}
.y44{bottom:726.330000px;}
.y1aa{bottom:726.690000px;}
.y22b{bottom:728.490000px;}
.yf4{bottom:733.890000px;}
.y1f9{bottom:736.770000px;}
.y130{bottom:737.850000px;}
.yb2{bottom:740.010000px;}
.y170{bottom:740.730000px;}
.yce{bottom:742.170000px;}
.y6e{bottom:742.890000px;}
.y1d4{bottom:745.050000px;}
.y22a{bottom:745.770000px;}
.y43{bottom:748.290000px;}
.y1a9{bottom:749.370000px;}
.y12f{bottom:754.050000px;}
.yf3{bottom:755.850000px;}
.y229{bottom:763.050000px;}
.ycd{bottom:763.770000px;}
.y6d{bottom:764.850000px;}
.y1d1{bottom:767.010000px;}
.yb1{bottom:767.730000px;}
.y14{bottom:769.890000px;}
.y1f8{bottom:771.330000px;}
.y12e{bottom:776.010000px;}
.yf2{bottom:777.450000px;}
.y158{bottom:778.890000px;}
.y228{bottom:780.330000px;}
.yb0{bottom:782.850000px;}
.ycc{bottom:785.730000px;}
.y6c{bottom:786.450000px;}
.y1f7{bottom:788.610000px;}
.y1d2{bottom:788.970000px;}
.y42{bottom:791.850000px;}
.y1a8{bottom:793.290000px;}
.y16f{bottom:796.890000px;}
.y227{bottom:797.250000px;}
.y12d{bottom:797.610000px;}
.yf1{bottom:799.410000px;}
.y13{bottom:801.210000px;}
.yaf{bottom:804.450000px;}
.y1f6{bottom:806.970000px;}
.ycb{bottom:807.330000px;}
.y6b{bottom:808.410000px;}
.y1d0{bottom:810.930000px;}
.y41{bottom:813.450000px;}
.y226{bottom:814.530000px;}
.y155{bottom:817.410000px;}
.y197{bottom:817.770000px;}
.y12c{bottom:819.570000px;}
.y1a7{bottom:819.930000px;}
.yf0{bottom:821.010000px;}
.y1f5{bottom:824.250000px;}
.yae{bottom:826.410000px;}
.yca{bottom:829.335000px;}
.y6a{bottom:830.415000px;}
.y225{bottom:831.855000px;}
.y40{bottom:835.455000px;}
.y12{bottom:839.055000px;}
.y196{bottom:840.495000px;}
.y12b{bottom:841.575000px;}
.yef{bottom:843.015000px;}
.y1a6{bottom:845.175000px;}
.y1cf{bottom:845.535000px;}
.yad{bottom:848.415000px;}
.y224{bottom:849.135000px;}
.yc9{bottom:851.295000px;}
.y69{bottom:852.015000px;}
.y154{bottom:856.335000px;}
.y3f{bottom:857.415000px;}
.y1f4{bottom:860.295000px;}
.y11{bottom:863.175000px;}
.yee{bottom:864.975000px;}
.y223{bottom:866.415000px;}
.yac{bottom:870.015000px;}
.y1a5{bottom:870.375000px;}
.yc8{bottom:872.895000px;}
.y111{bottom:873.975000px;}
.y1ce{bottom:876.135000px;}
.y3e{bottom:879.015000px;}
.y68{bottom:882.975000px;}
.y222{bottom:883.695000px;}
.y12a{bottom:885.135000px;}
.y195{bottom:885.495000px;}
.yed{bottom:886.575000px;}
.y10{bottom:886.935000px;}
.yab{bottom:891.975000px;}
.y1a4{bottom:893.055000px;}
.yc7{bottom:894.855000px;}
.y110{bottom:895.575000px;}
.y1f3{bottom:896.295000px;}
.y1cd{bottom:898.095000px;}
.y3d{bottom:900.975000px;}
.y67{bottom:904.575000px;}
.y129{bottom:906.735000px;}
.y194{bottom:908.175000px;}
.yec{bottom:908.535000px;}
.yaa{bottom:913.575000px;}
.y1a3{bottom:915.735000px;}
.yc6{bottom:916.455000px;}
.y10f{bottom:917.535000px;}
.y221{bottom:918.255000px;}
.yf{bottom:919.335000px;}
.y3c{bottom:922.575000px;}
.y66{bottom:926.535000px;}
.y128{bottom:926.895000px;}
.yeb{bottom:930.135000px;}
.y193{bottom:930.855000px;}
.y1f2{bottom:931.935000px;}
.y151{bottom:933.735000px;}
.ya9{bottom:935.535000px;}
.y1a2{bottom:938.055000px;}
.yc5{bottom:938.415000px;}
.y10e{bottom:939.495000px;}
.y3b{bottom:944.535000px;}
.y1f1{bottom:949.215000px;}
.y220{bottom:952.845000px;}
.y192{bottom:953.205000px;}
.ye{bottom:953.925000px;}
.y65{bottom:957.525000px;}
.yea{bottom:958.965000px;}
.yc4{bottom:960.405000px;}
.y3a{bottom:966.525000px;}
.y10d{bottom:970.125000px;}
.y150{bottom:972.285000px;}
.y191{bottom:975.885000px;}
.y1a1{bottom:976.245000px;}
.y64{bottom:979.125000px;}
.yc3{bottom:982.005000px;}
.y1cb{bottom:982.365000px;}
.y1f0{bottom:985.245000px;}
.y21f{bottom:987.045000px;}
.y39{bottom:988.125000px;}
.yd{bottom:988.485000px;}
.y10c{bottom:992.085000px;}
.y1a0{bottom:993.885000px;}
.y14f{bottom:994.965000px;}
.ye9{bottom:996.405000px;}
.y190{bottom:998.565000px;}
.ya8{bottom:1001.085000px;}
.y1ef{bottom:1002.525000px;}
.y1ca{bottom:1004.325000px;}
.y38{bottom:1010.085000px;}
.y10b{bottom:1014.045000px;}
.y14d{bottom:1017.285000px;}
.y19f{bottom:1019.085000px;}
.y1ee{bottom:1019.805000px;}
.y18f{bottom:1020.885000px;}
.y21e{bottom:1021.605000px;}
.ya7{bottom:1023.045000px;}
.ye8{bottom:1024.845000px;}
.yc{bottom:1031.685000px;}
.y37{bottom:1032.045000px;}
.y1ed{bottom:1038.525000px;}
.y1c9{bottom:1038.885000px;}
.y14a{bottom:1039.965000px;}
.y18e{bottom:1043.565000px;}
.y19e{bottom:1044.285000px;}
.ya6{bottom:1044.645000px;}
.y36{bottom:1053.645000px;}
.y1ec{bottom:1055.805000px;}
.y21d{bottom:1056.165000px;}
.y19d{bottom:1064.085000px;}
.y18d{bottom:1066.245000px;}
.ya5{bottom:1066.605000px;}
.yb{bottom:1066.965000px;}
.y21c{bottom:1073.445000px;}
.ye7{bottom:1074.165000px;}
.y35{bottom:1075.605000px;}
.y19c{bottom:1083.930000px;}
.ya4{bottom:1088.250000px;}
.y18c{bottom:1088.970000px;}
.ya{bottom:1090.770000px;}
.y1eb{bottom:1091.490000px;}
.y34{bottom:1097.250000px;}
.y1c8{bottom:1097.610000px;}
.y19b{bottom:1105.890000px;}
.y21b{bottom:1108.050000px;}
.ya3{bottom:1110.210000px;}
.y18b{bottom:1111.290000px;}
.y4{bottom:1112.010000px;}
.y1c4{bottom:1113.810000px;}
.y33{bottom:1119.210000px;}
.y21a{bottom:1125.330000px;}
.y18a{bottom:1133.970000px;}
.y3{bottom:1135.050000px;}
.y32{bottom:1141.170000px;}
.y219{bottom:1142.610000px;}
.y2{bottom:1162.410000px;}
.y1{bottom:1189.410000px;}
.y31{bottom:1193.730000px;}
.h5{height:8.640000px;}
.h7{height:16.596000px;}
.h23{height:18.720000px;}
.h24{height:18.756000px;}
.h22{height:19.080000px;}
.h21{height:19.116000px;}
.h2b{height:20.160000px;}
.h2a{height:20.520000px;}
.h2c{height:20.556000px;}
.h25{height:20.880000px;}
.h2d{height:21.240000px;}
.hf{height:21.600000px;}
.h10{height:21.636000px;}
.h1e{height:21.960000px;}
.h26{height:21.996000px;}
.h2f{height:24.156000px;}
.h3e{height:24.480000px;}
.h1b{height:24.840000px;}
.h3d{height:25.920000px;}
.h14{height:26.683594px;}
.h19{height:27.000000px;}
.h31{height:28.080000px;}
.h36{height:28.116000px;}
.h3b{height:28.476000px;}
.h39{height:29.196000px;}
.h32{height:30.636000px;}
.h3a{height:31.587891px;}
.h16{height:36.641953px;}
.h20{height:37.800000px;}
.h1f{height:37.836000px;}
.h34{height:38.160000px;}
.h30{height:39.960000px;}
.h13{height:40.559062px;}
.h37{height:41.040000px;}
.hb{height:41.696016px;}
.h11{height:41.760000px;}
.h1c{height:42.120000px;}
.h29{height:43.560000px;}
.h28{height:43.596000px;}
.h3c{height:46.800000px;}
.h12{height:47.264766px;}
.h15{height:48.013594px;}
.hd{height:49.097812px;}
.h27{height:50.488594px;}
.h3f{height:53.067656px;}
.h8{height:53.367188px;}
.h17{height:53.473922px;}
.h6{height:54.426094px;}
.h1d{height:56.916000px;}
.h18{height:57.600000px;}
.he{height:58.121719px;}
.h3{height:61.742812px;}
.h35{height:63.036000px;}
.ha{height:63.175781px;}
.h38{height:64.001953px;}
.h4{height:65.884219px;}
.h1a{height:67.824844px;}
.h33{height:76.716000px;}
.h2e{height:87.516000px;}
.h9{height:88.589531px;}
.h2{height:141.582656px;}
.hc{height:261.795000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w45{width:29.556000px;}
.w40{width:40.320000px;}
.w3e{width:40.356000px;}
.wa{width:41.760000px;}
.w3d{width:45.360000px;}
.w17{width:46.440000px;}
.w3f{width:50.796000px;}
.w41{width:53.676000px;}
.w23{width:68.076000px;}
.w48{width:69.156000px;}
.w21{width:73.476000px;}
.w20{width:73.800000px;}
.w22{width:73.836000px;}
.wd{width:84.240000px;}
.wc{width:84.276000px;}
.w1c{width:84.996000px;}
.w1d{width:90.036000px;}
.w2c{width:93.996000px;}
.w1b{width:96.156000px;}
.w39{width:98.316000px;}
.w10{width:105.516000px;}
.w13{width:105.876000px;}
.we{width:105.912000px;}
.w43{width:111.636000px;}
.w3a{width:114.912000px;}
.w31{width:116.316000px;}
.w27{width:116.676000px;}
.w46{width:118.836000px;}
.w2d{width:126.792000px;}
.w1a{width:127.836000px;}
.w36{width:129.276000px;}
.w29{width:129.672000px;}
.w4e{width:129.996000px;}
.w37{width:130.392000px;}
.w38{width:130.716000px;}
.w7{width:132.120000px;}
.w2b{width:134.676000px;}
.w30{width:137.592000px;}
.w19{width:138.672000px;}
.w4d{width:141.192000px;}
.w14{width:148.032000px;}
.w3c{width:148.392000px;}
.w28{width:148.752000px;}
.w32{width:158.835000px;}
.w4a{width:169.635000px;}
.w24{width:169.995000px;}
.w44{width:175.395000px;}
.w49{width:186.555000px;}
.w6{width:190.080000px;}
.w9{width:209.880000px;}
.w8{width:211.680000px;}
.w35{width:213.225000px;}
.w11{width:243.825000px;}
.w4b{width:264.345000px;}
.w33{width:265.065000px;}
.w2e{width:265.425000px;}
.w16{width:266.865000px;}
.w1f{width:272.985000px;}
.w4f{width:283.425000px;}
.w4c{width:283.785000px;}
.w42{width:288.465000px;}
.wb{width:297.150000px;}
.w4{width:339.270000px;}
.w3{width:341.430000px;}
.w25{width:360.870000px;}
.w1e{width:364.470000px;}
.wf{width:381.780000px;}
.w26{width:396.180000px;}
.w2f{width:413.820000px;}
.w12{width:435.060000px;}
.w34{width:612.255000px;}
.w18{width:629.535000px;}
.w5{width:679.245000px;}
.w2a{width:684.645000px;}
.w47{width:699.765000px;}
.w15{width:701.565000px;}
.w3b{width:723.525000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x29{left:4.320000px;}
.x2c{left:5.400000px;}
.x20{left:7.560000px;}
.x5{left:8.640000px;}
.x2e{left:10.800000px;}
.x18{left:13.425000px;}
.x1c{left:23.250000px;}
.x3b{left:27.720000px;}
.x5b{left:31.356000px;}
.x1a{left:44.850000px;}
.x41{left:47.925000px;}
.x3d{left:48.990000px;}
.x16{left:51.915000px;}
.x40{left:57.630000px;}
.x3f{left:61.590000px;}
.x1d{left:64.116000px;}
.x4a{left:68.790000px;}
.x28{left:75.276000px;}
.x3a{left:80.685000px;}
.x25{left:95.796000px;}
.x2d{left:98.316000px;}
.x4{left:106.235987px;}
.x15{left:107.280000px;}
.x42{left:110.916000px;}
.x43{left:112.356000px;}
.x4b{left:117.036000px;}
.x13{left:119.195987px;}
.xf{left:120.995987px;}
.xb{left:126.755987px;}
.xa{left:129.995987px;}
.x10{left:132.911987px;}
.x58{left:137.592000px;}
.x14{left:140.111987px;}
.x12{left:141.191987px;}
.xe{left:143.709000px;}
.x39{left:153.435000px;}
.x11{left:159.914987px;}
.x9{left:163.154987px;}
.xd{left:175.034987px;}
.x1{left:178.994987px;}
.x59{left:180.435000px;}
.x4f{left:216.795000px;}
.x44{left:244.905000px;}
.x2f{left:246.705000px;}
.x50{left:259.665000px;}
.x38{left:276.945000px;}
.x17{left:278.640000px;}
.xc{left:289.544987px;}
.x7{left:303.270000px;}
.x51{left:306.465000px;}
.x4c{left:334.590000px;}
.x52{left:348.270000px;}
.x5a{left:368.430000px;}
.x49{left:372.390000px;}
.x30{left:375.270000px;}
.x45{left:381.030000px;}
.x3{left:390.389987px;}
.x3c{left:393.990000px;}
.x53{left:400.860000px;}
.x1e{left:404.460000px;}
.x2{left:422.819987px;}
.x54{left:442.620000px;}
.x8{left:446.579987px;}
.x6{left:447.660000px;}
.x4d{left:465.300000px;}
.x31{left:472.140000px;}
.x46{left:476.460000px;}
.x34{left:479.340000px;}
.x55{left:484.380000px;}
.x1f{left:489.810000px;}
.x19{left:496.440000px;}
.x1b{left:498.960000px;}
.x2a{left:510.690000px;}
.x26{left:531.570000px;}
.x5c{left:532.650000px;}
.x56{left:539.490000px;}
.x3e{left:543.450000px;}
.x35{left:553.890000px;}
.x32{left:569.010000px;}
.x21{left:574.815000px;}
.x24{left:596.055000px;}
.x4e{left:597.135000px;}
.x47{left:604.695000px;}
.x36{left:628.095000px;}
.x27{left:638.175000px;}
.x57{left:652.575000px;}
.x33{left:655.095000px;}
.x22{left:659.775000px;}
.x5d{left:674.565000px;}
.x48{left:700.125000px;}
.x37{left:702.645000px;}
.x23{left:744.765000px;}
.x2b{left:777.930000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls6{letter-spacing:-1.685333pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls11{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.412267pt;}
.ls7{letter-spacing:-0.406933pt;}
.ls5{letter-spacing:-0.340267pt;}
.ls19{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.017920pt;}
.ls24{letter-spacing:0.106667pt;}
.ls8{letter-spacing:0.117760pt;}
.ls1d{letter-spacing:0.135467pt;}
.ls1e{letter-spacing:0.158720pt;}
.ls21{letter-spacing:0.271360pt;}
.lsb{letter-spacing:0.271467pt;}
.ls1a{letter-spacing:0.406933pt;}
.ls9{letter-spacing:0.407040pt;}
.ls0{letter-spacing:0.537600pt;}
.ls1{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.746667pt;}
.ls14{letter-spacing:0.800000pt;}
.ls2{letter-spacing:0.875520pt;}
.ls20{letter-spacing:1.552000pt;}
.ls15{letter-spacing:4.480000pt;}
.ls22{letter-spacing:11.791360pt;}
.lsc{letter-spacing:17.280000pt;}
.ls23{letter-spacing:27.305387pt;}
.ls17{letter-spacing:33.562027pt;}
.ls1f{letter-spacing:37.519360pt;}
.ls13{letter-spacing:52.762027pt;}
.ls3{letter-spacing:55.439360pt;}
.ls16{letter-spacing:57.882027pt;}
.ls12{letter-spacing:59.162027pt;}
.lsd{letter-spacing:60.442027pt;}
.ls1c{letter-spacing:60.559360pt;}
.lse{letter-spacing:64.399360pt;}
.wsa{word-spacing:-58.880000pt;}
.ws0{word-spacing:-19.302400pt;}
.wsd{word-spacing:-15.126933pt;}
.ws7{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.855467pt;}
.ws2{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.ws8{word-spacing:-14.176000pt;}
.wse{word-spacing:-13.984000pt;}
.ws11{word-spacing:-13.457920pt;}
.ws9{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.894613pt;}
.ws12{word-spacing:-12.160000pt;}
.ws1{word-spacing:-10.652373pt;}
.ws3{word-spacing:-9.546240pt;}
.ws10{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._5{margin-left:-4.215893pt;}
._4{margin-left:-2.655147pt;}
._3{margin-left:-1.313280pt;}
._0{width:1.039360pt;}
._1{width:2.740907pt;}
._f{width:3.924480pt;}
._d{width:5.240747pt;}
._a{width:6.182827pt;}
._9{width:7.616000pt;}
._b{width:8.629760pt;}
._c{width:10.332587pt;}
._e{width:11.428267pt;}
._10{width:12.377173pt;}
._15{width:13.594453pt;}
._1f{width:15.309653pt;}
._17{width:16.327680pt;}
._16{width:17.328640pt;}
._11{width:18.926507pt;}
._12{width:20.390400pt;}
._18{width:21.491200pt;}
._1a{width:22.849280pt;}
._19{width:24.022187pt;}
._8{width:25.659307pt;}
._6{width:27.005440pt;}
._7{width:28.302933pt;}
._1d{width:33.326080pt;}
._1c{width:34.680320pt;}
._1e{width:35.909120pt;}
._13{width:37.995520pt;}
._14{width:39.249920pt;}
._23{width:40.687360pt;}
._22{width:41.633280pt;}
._21{width:42.593280pt;}
._20{width:43.998720pt;}
._1b{width:90.263040pt;}
._25{width:131.192320pt;}
._24{width:132.380160pt;}
._26{width:133.457493pt;}
._2{width:351.354027pt;}
.fs2{font-size:21.760000pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fsb{font-size:53.760000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs1{font-size:74.240000pt;}
.fs6{font-size:106.240000pt;}
.fs0{font-size:170.240000pt;}
.y19a{bottom:-29.440000pt;}
.y199{bottom:-12.160000pt;}
.y6{bottom:-3.840000pt;}
.y149{bottom:-1.786667pt;}
.y0{bottom:0.000000pt;}
.y1d7{bottom:1.600000pt;}
.y8{bottom:3.200000pt;}
.y183{bottom:3.520000pt;}
.y181{bottom:3.840000pt;}
.y17f{bottom:4.160000pt;}
.y168{bottom:4.800000pt;}
.y1c6{bottom:5.120000pt;}
.y21{bottom:5.440000pt;}
.y14e{bottom:5.760000pt;}
.y173{bottom:5.786667pt;}
.y27{bottom:6.080000pt;}
.y1ae{bottom:6.720000pt;}
.y1d3{bottom:7.040000pt;}
.y1e5{bottom:8.000000pt;}
.y146{bottom:8.160000pt;}
.y1e3{bottom:9.280000pt;}
.y144{bottom:9.413333pt;}
.y142{bottom:10.373333pt;}
.y1e0{bottom:10.880000pt;}
.y1b5{bottom:11.200000pt;}
.y1d6{bottom:12.506667pt;}
.y1b0{bottom:13.760000pt;}
.y26{bottom:18.880000pt;}
.y153{bottom:19.840000pt;}
.y152{bottom:19.866667pt;}
.y156{bottom:19.880000pt;}
.y14c{bottom:20.160000pt;}
.y15b{bottom:20.186667pt;}
.y157{bottom:20.200000pt;}
.y1c2{bottom:20.800000pt;}
.y1c5{bottom:21.760000pt;}
.y148{bottom:23.493333pt;}
.y1c7{bottom:23.680000pt;}
.y20{bottom:24.960000pt;}
.y172{bottom:24.986667pt;}
.y9{bottom:27.200000pt;}
.y1df{bottom:27.840000pt;}
.y14b{bottom:36.840000pt;}
.y1c1{bottom:37.760000pt;}
.y1cc{bottom:42.266667pt;}
.y1f{bottom:44.480000pt;}
.y7{bottom:50.880000pt;}
.y1c0{bottom:54.440000pt;}
.y1e{bottom:63.680000pt;}
.y1ac{bottom:64.000000pt;}
.y5{bottom:75.232000pt;}
.y1d{bottom:83.226667pt;}
.y1c{bottom:102.746667pt;}
.y1b{bottom:121.946667pt;}
.y88{bottom:126.112000pt;}
.y30{bottom:130.912000pt;}
.ye6{bottom:131.232000pt;}
.y218{bottom:133.466667pt;}
.ya2{bottom:135.386667pt;}
.y1bf{bottom:137.306667pt;}
.y16e{bottom:139.226667pt;}
.yc2{bottom:139.866667pt;}
.y5d{bottom:141.146667pt;}
.y1a{bottom:141.466667pt;}
.y1ea{bottom:143.706667pt;}
.y10a{bottom:144.346667pt;}
.y63{bottom:144.666667pt;}
.y87{bottom:145.626667pt;}
.y127{bottom:146.266667pt;}
.y217{bottom:148.826667pt;}
.y2f{bottom:150.106667pt;}
.ye5{bottom:150.746667pt;}
.y140{bottom:154.266667pt;}
.ya1{bottom:154.586667pt;}
.yc1{bottom:159.386667pt;}
.y19{bottom:160.666667pt;}
.y189{bottom:162.266667pt;}
.y1e9{bottom:162.906667pt;}
.y62{bottom:163.866667pt;}
.y216{bottom:164.186667pt;}
.y86{bottom:164.826667pt;}
.y2e{bottom:169.626667pt;}
.ye4{bottom:170.266667pt;}
.y126{bottom:171.546667pt;}
.y1c3{bottom:171.866667pt;}
.ya0{bottom:174.106667pt;}
.yc0{bottom:178.626667pt;}
.y16d{bottom:179.586667pt;}
.y5c{bottom:179.906667pt;}
.y18{bottom:180.186667pt;}
.y109{bottom:183.106667pt;}
.y61{bottom:183.426667pt;}
.y85{bottom:184.386667pt;}
.y188{bottom:185.666667pt;}
.y2d{bottom:189.186667pt;}
.ye3{bottom:189.506667pt;}
.y125{bottom:190.786667pt;}
.y9f{bottom:193.666667pt;}
.y215{bottom:194.946667pt;}
.y1e8{bottom:196.226667pt;}
.ybf{bottom:198.146667pt;}
.y5b{bottom:199.426667pt;}
.y17{bottom:199.733333pt;}
.y108{bottom:202.626667pt;}
.y60{bottom:202.946667pt;}
.y84{bottom:203.586667pt;}
.y13f{bottom:205.186667pt;}
.y1be{bottom:206.146667pt;}
.y2c{bottom:208.386667pt;}
.ye2{bottom:209.026667pt;}
.y214{bottom:209.986667pt;}
.y124{bottom:210.306667pt;}
.y9e{bottom:212.866667pt;}
.ybe{bottom:217.666667pt;}
.y16{bottom:218.933333pt;}
.y5a{bottom:218.946667pt;}
.y16c{bottom:219.586667pt;}
.y187{bottom:222.146667pt;}
.y83{bottom:223.106667pt;}
.y1e7{bottom:223.746667pt;}
.y1bd{bottom:225.346667pt;}
.y2b{bottom:227.906667pt;}
.y107{bottom:229.826667pt;}
.y5f{bottom:230.146667pt;}
.y13e{bottom:230.786667pt;}
.y9d{bottom:232.386667pt;}
.y240{bottom:233.346667pt;}
.ye1{bottom:236.546667pt;}
.ybd{bottom:236.866667pt;}
.y123{bottom:237.826667pt;}
.y59{bottom:238.146667pt;}
.y16b{bottom:239.746667pt;}
.y213{bottom:240.706667pt;}
.y186{bottom:241.666667pt;}
.y82{bottom:242.626667pt;}
.y1e6{bottom:242.946667pt;}
.y2a{bottom:247.106667pt;}
.y1bc{bottom:248.386667pt;}
.y23f{bottom:248.706667pt;}
.y106{bottom:249.346667pt;}
.y5e{bottom:249.666667pt;}
.y9c{bottom:251.586667pt;}
.y13d{bottom:256.066667pt;}
.ybc{bottom:256.386667pt;}
.ye0{bottom:257.026667pt;}
.y58{bottom:257.666667pt;}
.y185{bottom:260.226667pt;}
.y81{bottom:261.826667pt;}
.y23e{bottom:264.066667pt;}
.y105{bottom:268.866667pt;}
.y9b{bottom:271.106667pt;}
.y212{bottom:271.426667pt;}
.y1bb{bottom:275.906667pt;}
.y122{bottom:276.546667pt;}
.y57{bottom:276.866667pt;}
.ydf{bottom:277.506667pt;}
.y184{bottom:279.426667pt;}
.y29{bottom:280.386667pt;}
.y80{bottom:281.346667pt;}
.y211{bottom:286.786667pt;}
.y104{bottom:288.093333pt;}
.y9a{bottom:290.653333pt;}
.y16a{bottom:291.613333pt;}
.y1ba{bottom:292.893333pt;}
.y23d{bottom:294.813333pt;}
.y121{bottom:296.093333pt;}
.y56{bottom:296.413333pt;}
.yde{bottom:297.693333pt;}
.y182{bottom:298.333333pt;}
.y7f{bottom:300.573333pt;}
.y210{bottom:302.173333pt;}
.y28{bottom:306.653333pt;}
.y103{bottom:307.613333pt;}
.y169{bottom:308.573333pt;}
.y1b9{bottom:309.533333pt;}
.y99{bottom:309.853333pt;}
.y23c{bottom:310.173333pt;}
.y120{bottom:315.293333pt;}
.y55{bottom:315.933333pt;}
.y180{bottom:316.893333pt;}
.ydd{bottom:317.213333pt;}
.y20f{bottom:317.533333pt;}
.y1e4{bottom:317.853333pt;}
.y7e{bottom:320.093333pt;}
.y23b{bottom:325.533333pt;}
.y25{bottom:326.173333pt;}
.y98{bottom:329.373333pt;}
.y20e{bottom:332.893333pt;}
.y13c{bottom:333.213333pt;}
.y1b8{bottom:333.853333pt;}
.y102{bottom:334.813333pt;}
.y54{bottom:335.133333pt;}
.y17e{bottom:335.773333pt;}
.ydc{bottom:336.413333pt;}
.ybb{bottom:339.293333pt;}
.y7d{bottom:339.613333pt;}
.y1e2{bottom:340.253333pt;}
.y23a{bottom:340.893333pt;}
.y167{bottom:347.613333pt;}
.y20d{bottom:348.253333pt;}
.y97{bottom:348.573333pt;}
.y1b7{bottom:352.733333pt;}
.y11f{bottom:354.013333pt;}
.y101{bottom:354.333333pt;}
.y53{bottom:354.653333pt;}
.y17d{bottom:354.973333pt;}
.ydb{bottom:355.933333pt;}
.y7c{bottom:358.813333pt;}
.y13b{bottom:360.093333pt;}
.y20c{bottom:363.613333pt;}
.y166{bottom:366.813333pt;}
.y24{bottom:367.453333pt;}
.y96{bottom:368.093333pt;}
.y1e1{bottom:369.693333pt;}
.y239{bottom:371.293333pt;}
.y1b6{bottom:371.613333pt;}
.y17c{bottom:372.253333pt;}
.y11e{bottom:373.533333pt;}
.y52{bottom:373.853333pt;}
.yda{bottom:375.453333pt;}
.y7b{bottom:378.333333pt;}
.y20b{bottom:378.653333pt;}
.y100{bottom:381.853333pt;}
.y165{bottom:384.413333pt;}
.y238{bottom:386.653333pt;}
.y95{bottom:387.613333pt;}
.y17b{bottom:389.853333pt;}
.y23{bottom:390.813333pt;}
.y11d{bottom:393.053333pt;}
.y51{bottom:393.373333pt;}
.y20a{bottom:394.013333pt;}
.yd9{bottom:394.653333pt;}
.y7a{bottom:397.533333pt;}
.y164{bottom:402.053333pt;}
.y94{bottom:406.853333pt;}
.y209{bottom:409.413333pt;}
.y11c{bottom:412.293333pt;}
.y50{bottom:412.933333pt;}
.y22{bottom:414.213333pt;}
.yff{bottom:415.173333pt;}
.y79{bottom:417.093333pt;}
.y237{bottom:417.413333pt;}
.y163{bottom:419.333333pt;}
.y13a{bottom:420.613333pt;}
.y17a{bottom:421.893333pt;}
.y1b4{bottom:423.173333pt;}
.y208{bottom:424.773333pt;}
.y11b{bottom:431.813333pt;}
.y4f{bottom:432.133333pt;}
.y236{bottom:432.773333pt;}
.y93{bottom:434.373333pt;}
.y1de{bottom:435.653333pt;}
.yba{bottom:436.293333pt;}
.y78{bottom:436.613333pt;}
.y162{bottom:436.933333pt;}
.y143{bottom:437.440000pt;}
.y15{bottom:437.573333pt;}
.y179{bottom:438.853333pt;}
.y139{bottom:439.813333pt;}
.y207{bottom:440.133333pt;}
.yfe{bottom:441.093333pt;}
.yd8{bottom:441.413333pt;}
.y235{bottom:448.133333pt;}
.y11a{bottom:451.013333pt;}
.y4e{bottom:451.653333pt;}
.y198{bottom:452.293333pt;}
.y92{bottom:453.893333pt;}
.y161{bottom:454.533333pt;}
.y206{bottom:455.493333pt;}
.y77{bottom:455.813333pt;}
.yfd{bottom:458.373333pt;}
.y1b3{bottom:459.013333pt;}
.y138{bottom:459.333333pt;}
.yd7{bottom:460.933333pt;}
.y234{bottom:463.493333pt;}
.y178{bottom:466.053333pt;}
.y119{bottom:470.533333pt;}
.y147{bottom:470.720000pt;}
.y205{bottom:470.853333pt;}
.y4d{bottom:471.173333pt;}
.y160{bottom:472.133333pt;}
.y91{bottom:473.093333pt;}
.y76{bottom:475.333333pt;}
.yfc{bottom:477.573333pt;}
.y1b2{bottom:478.533333pt;}
.y137{bottom:478.853333pt;}
.y1dd{bottom:479.813333pt;}
.y177{bottom:480.773333pt;}
.y204{bottom:486.213333pt;}
.yd6{bottom:488.453333pt;}
.y141{bottom:488.640000pt;}
.y15f{bottom:489.413333pt;}
.y118{bottom:490.053333pt;}
.y4c{bottom:490.373333pt;}
.y90{bottom:492.613333pt;}
.y233{bottom:494.213333pt;}
.y75{bottom:494.533333pt;}
.yfb{bottom:497.093333pt;}
.y136{bottom:498.053333pt;}
.y203{bottom:501.573333pt;}
.y1dc{bottom:501.893333pt;}
.y15e{bottom:507.013333pt;}
.y232{bottom:509.573333pt;}
.y4b{bottom:509.893333pt;}
.y8f{bottom:511.840000pt;}
.yb9{bottom:514.080000pt;}
.yd5{bottom:515.680000pt;}
.yfa{bottom:516.640000pt;}
.y202{bottom:516.960000pt;}
.y117{bottom:517.280000pt;}
.y135{bottom:517.600000pt;}
.y176{bottom:520.160000pt;}
.y74{bottom:522.080000pt;}
.y231{bottom:524.640000pt;}
.y1b1{bottom:525.280000pt;}
.y4a{bottom:529.120000pt;}
.y1db{bottom:529.760000pt;}
.y8e{bottom:531.360000pt;}
.y145{bottom:531.840000pt;}
.y201{bottom:532.320000pt;}
.yb8{bottom:533.280000pt;}
.yd4{bottom:535.200000pt;}
.yf9{bottom:535.840000pt;}
.y116{bottom:536.800000pt;}
.y134{bottom:537.120000pt;}
.y230{bottom:540.000000pt;}
.y200{bottom:547.360000pt;}
.y1ab{bottom:547.680000pt;}
.y49{bottom:548.640000pt;}
.y8d{bottom:550.880000pt;}
.yb7{bottom:552.800000pt;}
.yd3{bottom:554.400000pt;}
.y1da{bottom:555.040000pt;}
.y73{bottom:555.360000pt;}
.y115{bottom:556.000000pt;}
.y133{bottom:556.320000pt;}
.y175{bottom:559.520000pt;}
.y15d{bottom:559.840000pt;}
.y1ff{bottom:562.720000pt;}
.y48{bottom:568.160000pt;}
.y8c{bottom:570.080000pt;}
.y22f{bottom:570.720000pt;}
.yb6{bottom:572.320000pt;}
.yd2{bottom:573.920000pt;}
.yf8{bottom:574.880000pt;}
.y114{bottom:575.520000pt;}
.y132{bottom:575.840000pt;}
.y1fe{bottom:578.080000pt;}
.y1d9{bottom:579.680000pt;}
.y15c{bottom:580.960000pt;}
.y72{bottom:582.880000pt;}
.y1af{bottom:583.840000pt;}
.y22e{bottom:586.080000pt;}
.y47{bottom:587.360000pt;}
.yb5{bottom:591.520000pt;}
.y1fd{bottom:593.440000pt;}
.yf7{bottom:594.080000pt;}
.y8b{bottom:595.040000pt;}
.y174{bottom:598.880000pt;}
.y1d8{bottom:599.200000pt;}
.yd1{bottom:601.440000pt;}
.y71{bottom:602.080000pt;}
.y131{bottom:603.040000pt;}
.y15a{bottom:603.360000pt;}
.y1ad{bottom:604.000000pt;}
.y46{bottom:606.880000pt;}
.y1fc{bottom:608.800000pt;}
.yb4{bottom:611.040000pt;}
.y8a{bottom:612.000000pt;}
.y1d5{bottom:612.960000pt;}
.yf6{bottom:613.600000pt;}
.y22d{bottom:616.800000pt;}
.y171{bottom:619.040000pt;}
.yd0{bottom:620.640000pt;}
.y70{bottom:621.600000pt;}
.y113{bottom:622.240000pt;}
.y1fb{bottom:624.186667pt;}
.y45{bottom:626.106667pt;}
.y89{bottom:628.986667pt;}
.yb3{bottom:630.586667pt;}
.y22c{bottom:632.186667pt;}
.yf5{bottom:632.826667pt;}
.y159{bottom:637.626667pt;}
.y1fa{bottom:639.546667pt;}
.ycf{bottom:640.186667pt;}
.y6f{bottom:641.146667pt;}
.y112{bottom:641.786667pt;}
.y44{bottom:645.626667pt;}
.y1aa{bottom:645.946667pt;}
.y22b{bottom:647.546667pt;}
.yf4{bottom:652.346667pt;}
.y1f9{bottom:654.906667pt;}
.y130{bottom:655.866667pt;}
.yb2{bottom:657.786667pt;}
.y170{bottom:658.426667pt;}
.yce{bottom:659.706667pt;}
.y6e{bottom:660.346667pt;}
.y1d4{bottom:662.266667pt;}
.y22a{bottom:662.906667pt;}
.y43{bottom:665.146667pt;}
.y1a9{bottom:666.106667pt;}
.y12f{bottom:670.266667pt;}
.yf3{bottom:671.866667pt;}
.y229{bottom:678.266667pt;}
.ycd{bottom:678.906667pt;}
.y6d{bottom:679.866667pt;}
.y1d1{bottom:681.786667pt;}
.yb1{bottom:682.426667pt;}
.y14{bottom:684.346667pt;}
.y1f8{bottom:685.626667pt;}
.y12e{bottom:689.786667pt;}
.yf2{bottom:691.066667pt;}
.y158{bottom:692.346667pt;}
.y228{bottom:693.626667pt;}
.yb0{bottom:695.866667pt;}
.ycc{bottom:698.426667pt;}
.y6c{bottom:699.066667pt;}
.y1f7{bottom:700.986667pt;}
.y1d2{bottom:701.306667pt;}
.y42{bottom:703.866667pt;}
.y1a8{bottom:705.146667pt;}
.y16f{bottom:708.346667pt;}
.y227{bottom:708.666667pt;}
.y12d{bottom:708.986667pt;}
.yf1{bottom:710.586667pt;}
.y13{bottom:712.186667pt;}
.yaf{bottom:715.066667pt;}
.y1f6{bottom:717.306667pt;}
.ycb{bottom:717.626667pt;}
.y6b{bottom:718.586667pt;}
.y1d0{bottom:720.826667pt;}
.y41{bottom:723.066667pt;}
.y226{bottom:724.026667pt;}
.y155{bottom:726.586667pt;}
.y197{bottom:726.906667pt;}
.y12c{bottom:728.506667pt;}
.y1a7{bottom:728.826667pt;}
.yf0{bottom:729.786667pt;}
.y1f5{bottom:732.666667pt;}
.yae{bottom:734.586667pt;}
.yca{bottom:737.186667pt;}
.y6a{bottom:738.146667pt;}
.y225{bottom:739.426667pt;}
.y40{bottom:742.626667pt;}
.y12{bottom:745.826667pt;}
.y196{bottom:747.106667pt;}
.y12b{bottom:748.066667pt;}
.yef{bottom:749.346667pt;}
.y1a6{bottom:751.266667pt;}
.y1cf{bottom:751.586667pt;}
.yad{bottom:754.146667pt;}
.y224{bottom:754.786667pt;}
.yc9{bottom:756.706667pt;}
.y69{bottom:757.346667pt;}
.y154{bottom:761.186667pt;}
.y3f{bottom:762.146667pt;}
.y1f4{bottom:764.706667pt;}
.y11{bottom:767.266667pt;}
.yee{bottom:768.866667pt;}
.y223{bottom:770.146667pt;}
.yac{bottom:773.346667pt;}
.y1a5{bottom:773.666667pt;}
.yc8{bottom:775.906667pt;}
.y111{bottom:776.866667pt;}
.y1ce{bottom:778.786667pt;}
.y3e{bottom:781.346667pt;}
.y68{bottom:784.866667pt;}
.y222{bottom:785.506667pt;}
.y12a{bottom:786.786667pt;}
.y195{bottom:787.106667pt;}
.yed{bottom:788.066667pt;}
.y10{bottom:788.386667pt;}
.yab{bottom:792.866667pt;}
.y1a4{bottom:793.826667pt;}
.yc7{bottom:795.426667pt;}
.y110{bottom:796.066667pt;}
.y1f3{bottom:796.706667pt;}
.y1cd{bottom:798.306667pt;}
.y3d{bottom:800.866667pt;}
.y67{bottom:804.066667pt;}
.y129{bottom:805.986667pt;}
.y194{bottom:807.266667pt;}
.yec{bottom:807.586667pt;}
.yaa{bottom:812.066667pt;}
.y1a3{bottom:813.986667pt;}
.yc6{bottom:814.626667pt;}
.y10f{bottom:815.586667pt;}
.y221{bottom:816.226667pt;}
.yf{bottom:817.186667pt;}
.y3c{bottom:820.066667pt;}
.y66{bottom:823.586667pt;}
.y128{bottom:823.906667pt;}
.yeb{bottom:826.786667pt;}
.y193{bottom:827.426667pt;}
.y1f2{bottom:828.386667pt;}
.y151{bottom:829.986667pt;}
.ya9{bottom:831.586667pt;}
.y1a2{bottom:833.826667pt;}
.yc5{bottom:834.146667pt;}
.y10e{bottom:835.106667pt;}
.y3b{bottom:839.586667pt;}
.y1f1{bottom:843.746667pt;}
.y220{bottom:846.973333pt;}
.y192{bottom:847.293333pt;}
.ye{bottom:847.933333pt;}
.y65{bottom:851.133333pt;}
.yea{bottom:852.413333pt;}
.yc4{bottom:853.693333pt;}
.y3a{bottom:859.133333pt;}
.y10d{bottom:862.333333pt;}
.y150{bottom:864.253333pt;}
.y191{bottom:867.453333pt;}
.y1a1{bottom:867.773333pt;}
.y64{bottom:870.333333pt;}
.yc3{bottom:872.893333pt;}
.y1cb{bottom:873.213333pt;}
.y1f0{bottom:875.773333pt;}
.y21f{bottom:877.373333pt;}
.y39{bottom:878.333333pt;}
.yd{bottom:878.653333pt;}
.y10c{bottom:881.853333pt;}
.y1a0{bottom:883.453333pt;}
.y14f{bottom:884.413333pt;}
.ye9{bottom:885.693333pt;}
.y190{bottom:887.613333pt;}
.ya8{bottom:889.853333pt;}
.y1ef{bottom:891.133333pt;}
.y1ca{bottom:892.733333pt;}
.y38{bottom:897.853333pt;}
.y10b{bottom:901.373333pt;}
.y14d{bottom:904.253333pt;}
.y19f{bottom:905.853333pt;}
.y1ee{bottom:906.493333pt;}
.y18f{bottom:907.453333pt;}
.y21e{bottom:908.093333pt;}
.ya7{bottom:909.373333pt;}
.ye8{bottom:910.973333pt;}
.yc{bottom:917.053333pt;}
.y37{bottom:917.373333pt;}
.y1ed{bottom:923.133333pt;}
.y1c9{bottom:923.453333pt;}
.y14a{bottom:924.413333pt;}
.y18e{bottom:927.613333pt;}
.y19e{bottom:928.253333pt;}
.ya6{bottom:928.573333pt;}
.y36{bottom:936.573333pt;}
.y1ec{bottom:938.493333pt;}
.y21d{bottom:938.813333pt;}
.y19d{bottom:945.853333pt;}
.y18d{bottom:947.773333pt;}
.ya5{bottom:948.093333pt;}
.yb{bottom:948.413333pt;}
.y21c{bottom:954.173333pt;}
.ye7{bottom:954.813333pt;}
.y35{bottom:956.093333pt;}
.y19c{bottom:963.493333pt;}
.ya4{bottom:967.333333pt;}
.y18c{bottom:967.973333pt;}
.ya{bottom:969.573333pt;}
.y1eb{bottom:970.213333pt;}
.y34{bottom:975.333333pt;}
.y1c8{bottom:975.653333pt;}
.y19b{bottom:983.013333pt;}
.y21b{bottom:984.933333pt;}
.ya3{bottom:986.853333pt;}
.y18b{bottom:987.813333pt;}
.y4{bottom:988.453333pt;}
.y1c4{bottom:990.053333pt;}
.y33{bottom:994.853333pt;}
.y21a{bottom:1000.293333pt;}
.y18a{bottom:1007.973333pt;}
.y3{bottom:1008.933333pt;}
.y32{bottom:1014.373333pt;}
.y219{bottom:1015.653333pt;}
.y2{bottom:1033.253333pt;}
.y1{bottom:1057.253333pt;}
.y31{bottom:1061.093333pt;}
.h5{height:7.680000pt;}
.h7{height:14.752000pt;}
.h23{height:16.640000pt;}
.h24{height:16.672000pt;}
.h22{height:16.960000pt;}
.h21{height:16.992000pt;}
.h2b{height:17.920000pt;}
.h2a{height:18.240000pt;}
.h2c{height:18.272000pt;}
.h25{height:18.560000pt;}
.h2d{height:18.880000pt;}
.hf{height:19.200000pt;}
.h10{height:19.232000pt;}
.h1e{height:19.520000pt;}
.h26{height:19.552000pt;}
.h2f{height:21.472000pt;}
.h3e{height:21.760000pt;}
.h1b{height:22.080000pt;}
.h3d{height:23.040000pt;}
.h14{height:23.718750pt;}
.h19{height:24.000000pt;}
.h31{height:24.960000pt;}
.h36{height:24.992000pt;}
.h3b{height:25.312000pt;}
.h39{height:25.952000pt;}
.h32{height:27.232000pt;}
.h3a{height:28.078125pt;}
.h16{height:32.570625pt;}
.h20{height:33.600000pt;}
.h1f{height:33.632000pt;}
.h34{height:33.920000pt;}
.h30{height:35.520000pt;}
.h13{height:36.052500pt;}
.h37{height:36.480000pt;}
.hb{height:37.063125pt;}
.h11{height:37.120000pt;}
.h1c{height:37.440000pt;}
.h29{height:38.720000pt;}
.h28{height:38.752000pt;}
.h3c{height:41.600000pt;}
.h12{height:42.013125pt;}
.h15{height:42.678750pt;}
.hd{height:43.642500pt;}
.h27{height:44.878750pt;}
.h3f{height:47.171250pt;}
.h8{height:47.437500pt;}
.h17{height:47.532375pt;}
.h6{height:48.378750pt;}
.h1d{height:50.592000pt;}
.h18{height:51.200000pt;}
.he{height:51.663750pt;}
.h3{height:54.882500pt;}
.h35{height:56.032000pt;}
.ha{height:56.156250pt;}
.h38{height:56.890625pt;}
.h4{height:58.563750pt;}
.h1a{height:60.288750pt;}
.h33{height:68.192000pt;}
.h2e{height:77.792000pt;}
.h9{height:78.746250pt;}
.h2{height:125.851250pt;}
.hc{height:232.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w45{width:26.272000pt;}
.w40{width:35.840000pt;}
.w3e{width:35.872000pt;}
.wa{width:37.120000pt;}
.w3d{width:40.320000pt;}
.w17{width:41.280000pt;}
.w3f{width:45.152000pt;}
.w41{width:47.712000pt;}
.w23{width:60.512000pt;}
.w48{width:61.472000pt;}
.w21{width:65.312000pt;}
.w20{width:65.600000pt;}
.w22{width:65.632000pt;}
.wd{width:74.880000pt;}
.wc{width:74.912000pt;}
.w1c{width:75.552000pt;}
.w1d{width:80.032000pt;}
.w2c{width:83.552000pt;}
.w1b{width:85.472000pt;}
.w39{width:87.392000pt;}
.w10{width:93.792000pt;}
.w13{width:94.112000pt;}
.we{width:94.144000pt;}
.w43{width:99.232000pt;}
.w3a{width:102.144000pt;}
.w31{width:103.392000pt;}
.w27{width:103.712000pt;}
.w46{width:105.632000pt;}
.w2d{width:112.704000pt;}
.w1a{width:113.632000pt;}
.w36{width:114.912000pt;}
.w29{width:115.264000pt;}
.w4e{width:115.552000pt;}
.w37{width:115.904000pt;}
.w38{width:116.192000pt;}
.w7{width:117.440000pt;}
.w2b{width:119.712000pt;}
.w30{width:122.304000pt;}
.w19{width:123.264000pt;}
.w4d{width:125.504000pt;}
.w14{width:131.584000pt;}
.w3c{width:131.904000pt;}
.w28{width:132.224000pt;}
.w32{width:141.186667pt;}
.w4a{width:150.786667pt;}
.w24{width:151.106667pt;}
.w44{width:155.906667pt;}
.w49{width:165.826667pt;}
.w6{width:168.960000pt;}
.w9{width:186.560000pt;}
.w8{width:188.160000pt;}
.w35{width:189.533333pt;}
.w11{width:216.733333pt;}
.w4b{width:234.973333pt;}
.w33{width:235.613333pt;}
.w2e{width:235.933333pt;}
.w16{width:237.213333pt;}
.w1f{width:242.653333pt;}
.w4f{width:251.933333pt;}
.w4c{width:252.253333pt;}
.w42{width:256.413333pt;}
.wb{width:264.133333pt;}
.w4{width:301.573333pt;}
.w3{width:303.493333pt;}
.w25{width:320.773333pt;}
.w1e{width:323.973333pt;}
.wf{width:339.360000pt;}
.w26{width:352.160000pt;}
.w2f{width:367.840000pt;}
.w12{width:386.720000pt;}
.w34{width:544.226667pt;}
.w18{width:559.586667pt;}
.w5{width:603.773333pt;}
.w2a{width:608.573333pt;}
.w47{width:622.013333pt;}
.w15{width:623.613333pt;}
.w3b{width:643.133333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x29{left:3.840000pt;}
.x2c{left:4.800000pt;}
.x20{left:6.720000pt;}
.x5{left:7.680000pt;}
.x2e{left:9.600000pt;}
.x18{left:11.933333pt;}
.x1c{left:20.666667pt;}
.x3b{left:24.640000pt;}
.x5b{left:27.872000pt;}
.x1a{left:39.866667pt;}
.x41{left:42.600000pt;}
.x3d{left:43.546667pt;}
.x16{left:46.146667pt;}
.x40{left:51.226667pt;}
.x3f{left:54.746667pt;}
.x1d{left:56.992000pt;}
.x4a{left:61.146667pt;}
.x28{left:66.912000pt;}
.x3a{left:71.720000pt;}
.x25{left:85.152000pt;}
.x2d{left:87.392000pt;}
.x4{left:94.431988pt;}
.x15{left:95.360000pt;}
.x42{left:98.592000pt;}
.x43{left:99.872000pt;}
.x4b{left:104.032000pt;}
.x13{left:105.951988pt;}
.xf{left:107.551988pt;}
.xb{left:112.671988pt;}
.xa{left:115.551988pt;}
.x10{left:118.143988pt;}
.x58{left:122.304000pt;}
.x14{left:124.543988pt;}
.x12{left:125.503988pt;}
.xe{left:127.741333pt;}
.x39{left:136.386667pt;}
.x11{left:142.146655pt;}
.x9{left:145.026655pt;}
.xd{left:155.586655pt;}
.x1{left:159.106655pt;}
.x59{left:160.386667pt;}
.x4f{left:192.706667pt;}
.x44{left:217.693333pt;}
.x2f{left:219.293333pt;}
.x50{left:230.813333pt;}
.x38{left:246.173333pt;}
.x17{left:247.680000pt;}
.xc{left:257.373322pt;}
.x7{left:269.573333pt;}
.x51{left:272.413333pt;}
.x4c{left:297.413333pt;}
.x52{left:309.573333pt;}
.x5a{left:327.493333pt;}
.x49{left:331.013333pt;}
.x30{left:333.573333pt;}
.x45{left:338.693333pt;}
.x3{left:347.013322pt;}
.x3c{left:350.213333pt;}
.x53{left:356.320000pt;}
.x1e{left:359.520000pt;}
.x2{left:375.839988pt;}
.x54{left:393.440000pt;}
.x8{left:396.959988pt;}
.x6{left:397.920000pt;}
.x4d{left:413.600000pt;}
.x31{left:419.680000pt;}
.x46{left:423.520000pt;}
.x34{left:426.080000pt;}
.x55{left:430.560000pt;}
.x1f{left:435.386667pt;}
.x19{left:441.280000pt;}
.x1b{left:443.520000pt;}
.x2a{left:453.946667pt;}
.x26{left:472.506667pt;}
.x5c{left:473.466667pt;}
.x56{left:479.546667pt;}
.x3e{left:483.066667pt;}
.x35{left:492.346667pt;}
.x32{left:505.786667pt;}
.x21{left:510.946667pt;}
.x24{left:529.826667pt;}
.x4e{left:530.786667pt;}
.x47{left:537.506667pt;}
.x36{left:558.306667pt;}
.x27{left:567.266667pt;}
.x57{left:580.066667pt;}
.x33{left:582.306667pt;}
.x22{left:586.466667pt;}
.x5d{left:599.613333pt;}
.x48{left:622.333333pt;}
.x37{left:624.573333pt;}
.x23{left:662.013333pt;}
.x2b{left:691.493333pt;}
}




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