
    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_0c4fcf242aa194e42d4f3ddd.woff')format("woff");}.ff1{font-family:ff1;line-height:1.107422;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_5326d94bb259cb4905df6750.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4faa23387ce46b1b8495b69c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_519b7dc97bd7eb375a0ce018.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_2f05b7dfd8813408389d6b34.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_fcbbc3c0ca8ba9f0b435bca7.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_a500dd2dd7e26478a3f4efed.woff')format("woff");}.ff7{font-family:ff7;line-height:0.774902;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_48ab50c4dd58894e306596ff.woff')format("woff");}.ff9{font-family:ff9;line-height:1.104492;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_1c22e83a94bbd089bdce853c.woff')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_03aae5de4f5740a8697468c2.woff')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:23.760000px;}
.v2{vertical-align:77.040000px;}
.lsd{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.262200px;}
.ls14{letter-spacing:-0.181200px;}
.lsb{letter-spacing:-0.152400px;}
.ls5{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.106800px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.053280px;}
.ls1a{letter-spacing:0.070560px;}
.ls17{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.108000px;}
.ls10{letter-spacing:0.152640px;}
.ls19{letter-spacing:0.179280px;}
.ls2{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.262080px;}
.lsa{letter-spacing:0.262200px;}
.ls13{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.305280px;}
.ls7{letter-spacing:0.305400px;}
.ls15{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.406080px;}
.lsf{letter-spacing:27.125280px;}
.ls11{letter-spacing:59.321280px;}
.ls1b{letter-spacing:60.065280px;}
.ls1c{letter-spacing:215.585280px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-66.240000px;}
.wsc{word-spacing:-18.720120px;}
.ws5{word-spacing:-18.676920px;}
.ws1{word-spacing:-18.414720px;}
.ws0{word-spacing:-18.305520px;}
.ws6{word-spacing:-18.262320px;}
.ws2{word-spacing:-18.152520px;}
.ws7{word-spacing:-18.000120px;}
.ws8{word-spacing:-17.956920px;}
.ws9{word-spacing:-17.586720px;}
.wsb{word-spacing:-16.613280px;}
.wsa{word-spacing:-16.506480px;}
.ws14{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.046800px;}
.ws3{word-spacing:-15.012000px;}
.ws10{word-spacing:-14.993280px;}
.ws12{word-spacing:-14.940000px;}
.wse{word-spacing:-13.410720px;}
.wsf{word-spacing:-13.229520px;}
.ws4{word-spacing:0.000000px;}
._e{margin-left:-4.968000px;}
._a{margin-left:-3.179520px;}
._0{margin-left:-1.324800px;}
._1{width:1.354080px;}
._8{width:2.914560px;}
._7{width:4.570560px;}
._5{width:5.961600px;}
._6{width:7.468080px;}
._12{width:8.478720px;}
._9{width:9.737280px;}
._d{width:11.117280px;}
._2{width:12.585600px;}
._3{width:14.442720px;}
._4{width:15.500160px;}
._15{width:16.820160px;}
._28{width:18.306960px;}
._16{width:19.431360px;}
._2b{width:20.484720px;}
._11{width:22.124160px;}
._17{width:23.713920px;}
._22{width:24.888960px;}
._c{width:25.966080px;}
._b{width:27.434640px;}
._27{width:28.566480px;}
._2d{width:30.477600px;}
._2f{width:32.060880px;}
._2c{width:33.137280px;}
._29{width:34.172880px;}
._13{width:35.637120px;}
._14{width:36.829440px;}
._3b{width:38.200080px;}
._34{width:40.179120px;}
._32{width:42.629280px;}
._35{width:43.944000px;}
._3d{width:47.470080px;}
._2a{width:49.023600px;}
._2e{width:50.340480px;}
._36{width:51.451200px;}
._18{width:53.127360px;}
._1f{width:54.756000px;}
._1e{width:55.836000px;}
._1c{width:57.804480px;}
._f{width:59.549760px;}
._10{width:60.814800px;}
._21{width:62.051280px;}
._1a{width:63.504000px;}
._40{width:70.346880px;}
._31{width:72.867840px;}
._30{width:73.982880px;}
._3e{width:79.752960px;}
._39{width:88.803360px;}
._25{width:91.253520px;}
._33{width:94.181760px;}
._37{width:95.317200px;}
._38{width:99.759840px;}
._3a{width:111.509760px;}
._1d{width:113.724000px;}
._26{width:143.129280px;}
._20{width:144.558000px;}
._23{width:167.527680px;}
._3c{width:170.106000px;}
._19{width:174.379680px;}
._3f{width:215.743680px;}
._24{width:229.558560px;}
._1b{width:854.416800px;}
.fc5{color:transparent;}
.fc3{color:rgb(78,167,46);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs3{font-size:41.760000px;}
.fs8{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs7{font-size:92.880000px;}
.y181{bottom:-42.480000px;}
.y180{bottom:-11.520000px;}
.y0{bottom:0.000000px;}
.y167{bottom:2.805000px;}
.y165{bottom:4.170000px;}
.y1ad{bottom:8.280000px;}
.y1b6{bottom:8.460000px;}
.y1f6{bottom:8.505000px;}
.y170{bottom:10.695000px;}
.y169{bottom:10.770000px;}
.y16d{bottom:10.800000px;}
.y164{bottom:19.650000px;}
.y17f{bottom:23.040000px;}
.y105{bottom:26.814000px;}
.yef{bottom:26.820000px;}
.yf1{bottom:26.850000px;}
.y103{bottom:27.000000px;}
.yff{bottom:27.045000px;}
.y1ac{bottom:30.780000px;}
.y1f5{bottom:30.825000px;}
.y1c5{bottom:30.954000px;}
.y1dd{bottom:30.960000px;}
.y1e6{bottom:31.005000px;}
.y17e{bottom:38.700000px;}
.y16b{bottom:40.470000px;}
.yee{bottom:52.740000px;}
.y1ab{bottom:53.100000px;}
.y1c4{bottom:53.274000px;}
.y1b5{bottom:53.280000px;}
.y1e5{bottom:53.325000px;}
.y17d{bottom:54.180000px;}
.y4{bottom:56.520000px;}
.y1a7{bottom:56.556000px;}
.y16e{bottom:59.220000px;}
.y154{bottom:65.085000px;}
.y17c{bottom:69.705000px;}
.y159{bottom:73.905000px;}
.y3{bottom:75.456000px;}
.y1d1{bottom:75.594000px;}
.y1c7{bottom:75.600000px;}
.y1ea{bottom:75.645000px;}
.y1c3{bottom:75.774000px;}
.y1b4{bottom:75.780000px;}
.y1e4{bottom:75.825000px;}
.y17b{bottom:85.185000px;}
.y2{bottom:94.536000px;}
.y1df{bottom:97.965000px;}
.y1c2{bottom:98.094000px;}
.y1b3{bottom:98.100000px;}
.y1db{bottom:98.130000px;}
.y1d7{bottom:98.145000px;}
.y17a{bottom:100.845000px;}
.y2a{bottom:113.256000px;}
.y54{bottom:115.416000px;}
.y24a{bottom:116.316000px;}
.y179{bottom:116.325000px;}
.y1eb{bottom:117.036000px;}
.y152{bottom:117.576000px;}
.y1cb{bottom:117.756000px;}
.y29{bottom:118.476000px;}
.y28a{bottom:119.916000px;}
.y1da{bottom:120.450000px;}
.y1b7{bottom:120.456000px;}
.y1ca{bottom:120.465000px;}
.y1b2{bottom:120.600000px;}
.y1c1{bottom:120.639000px;}
.y1e3{bottom:120.645000px;}
.yde{bottom:121.176000px;}
.y104{bottom:124.776000px;}
.yba{bottom:127.296000px;}
.y128{bottom:129.456000px;}
.y28{bottom:130.716000px;}
.y178{bottom:131.805000px;}
.y53{bottom:134.316000px;}
.y249{bottom:135.396000px;}
.y151{bottom:136.656000px;}
.y289{bottom:138.996000px;}
.y80{bottom:139.176000px;}
.ydd{bottom:140.436000px;}
.y268{bottom:140.796000px;}
.y1b1{bottom:142.920000px;}
.y1d9{bottom:142.950000px;}
.y1c0{bottom:142.959000px;}
.y1c9{bottom:142.965000px;}
.y2a7{bottom:146.016000px;}
.yb9{bottom:146.376000px;}
.y177{bottom:147.285000px;}
.y222{bottom:153.030000px;}
.y52{bottom:153.390000px;}
.y248{bottom:154.290000px;}
.y27{bottom:155.190000px;}
.y150{bottom:155.550000px;}
.y288{bottom:158.070000px;}
.y7f{bottom:158.250000px;}
.ydc{bottom:159.330000px;}
.ya3{bottom:159.870000px;}
.y1f4{bottom:162.570000px;}
.y176{bottom:162.945000px;}
.y127{bottom:164.550000px;}
.y1a5{bottom:164.910000px;}
.y2a6{bottom:165.270000px;}
.y1d6{bottom:165.285000px;}
.yb8{bottom:165.450000px;}
.y1bf{bottom:165.459000px;}
.y1b0{bottom:165.465000px;}
.yf2{bottom:166.350000px;}
.y51{bottom:172.290000px;}
.y247{bottom:173.370000px;}
.y26{bottom:174.090000px;}
.y267{bottom:174.630000px;}
.y7e{bottom:177.330000px;}
.ydb{bottom:178.410000px;}
.y175{bottom:178.425000px;}
.ya2{bottom:179.130000px;}
.y1a4{bottom:183.990000px;}
.y2a5{bottom:184.170000px;}
.yb7{bottom:184.350000px;}
.y1e8{bottom:185.070000px;}
.y221{bottom:186.870000px;}
.y1f3{bottom:187.770000px;}
.y1d0{bottom:187.779000px;}
.y1af{bottom:187.785000px;}
.y1be{bottom:187.959000px;}
.y1e2{bottom:187.965000px;}
.y14f{bottom:189.930000px;}
.y50{bottom:191.370000px;}
.y287{bottom:191.730000px;}
.y246{bottom:192.270000px;}
.y25{bottom:193.170000px;}
.y174{bottom:193.905000px;}
.y7d{bottom:196.230000px;}
.yda{bottom:197.310000px;}
.y10c{bottom:197.865000px;}
.y126{bottom:198.570000px;}
.y1a3{bottom:203.070000px;}
.yb6{bottom:203.250000px;}
.y220{bottom:206.130000px;}
.y102{bottom:208.110000px;}
.y266{bottom:208.650000px;}
.y173{bottom:209.385000px;}
.y1d5{bottom:210.105000px;}
.y4f{bottom:210.270000px;}
.y1bd{bottom:210.279000px;}
.y1e9{bottom:210.285000px;}
.y286{bottom:210.990000px;}
.y245{bottom:211.350000px;}
.y24{bottom:212.070000px;}
.ya1{bottom:212.790000px;}
.yd9{bottom:216.210000px;}
.y21f{bottom:225.030000px;}
.y172{bottom:225.045000px;}
.y14e{bottom:226.290000px;}
.y285{bottom:229.890000px;}
.y7c{bottom:230.070000px;}
.y244{bottom:230.250000px;}
.y23{bottom:230.970000px;}
.ya0{bottom:232.050000px;}
.y1f2{bottom:232.590000px;}
.y1cf{bottom:232.599000px;}
.y1d4{bottom:232.605000px;}
.y1bc{bottom:232.779000px;}
.y125{bottom:233.670000px;}
.yd8{bottom:235.290000px;}
.y1a2{bottom:236.730000px;}
.yb5{bottom:237.090000px;}
.y10b{bottom:238.725000px;}
.yf8{bottom:238.905000px;}
.y2a4{bottom:240.150000px;}
.y265{bottom:242.670000px;}
.y4e{bottom:244.110000px;}
.y284{bottom:248.970000px;}
.y7b{bottom:249.150000px;}
.y101{bottom:249.690000px;}
.y22{bottom:250.050000px;}
.yd7{bottom:254.190000px;}
.y1f1{bottom:255.090000px;}
.y1bb{bottom:255.099000px;}
.y1d3{bottom:255.105000px;}
.y14d{bottom:255.270000px;}
.y1a1{bottom:255.990000px;}
.yb4{bottom:256.350000px;}
.y2a3{bottom:259.050000px;}
.y264{bottom:261.750000px;}
.y21e{bottom:263.010000px;}
.y243{bottom:264.090000px;}
.y9f{bottom:265.890000px;}
.y124{bottom:268.770000px;}
.y21{bottom:268.950000px;}
.y171{bottom:270.390000px;}
.y2b9{bottom:271.650000px;}
.yd6{bottom:273.270000px;}
.y1a0{bottom:274.890000px;}
.yb3{bottom:275.250000px;}
.y14c{bottom:275.970000px;}
.y16c{bottom:276.840000px;}
.y1f0{bottom:277.455000px;}
.y1ba{bottom:277.599000px;}
.y2a2{bottom:277.950000px;}
.y4d{bottom:279.210000px;}
.y10a{bottom:279.585000px;}
.yf7{bottom:279.765000px;}
.y263{bottom:280.830000px;}
.y21d{bottom:281.910000px;}
.y283{bottom:282.630000px;}
.y7a{bottom:282.990000px;}
.y242{bottom:283.170000px;}
.y9e{bottom:284.970000px;}
.y123{bottom:287.850000px;}
.y20{bottom:288.030000px;}
.y100{bottom:291.270000px;}
.yd5{bottom:292.170000px;}
.y19f{bottom:293.970000px;}
.yb2{bottom:294.150000px;}
.y163{bottom:295.560000px;}
.y14b{bottom:296.670000px;}
.y262{bottom:299.730000px;}
.y1ce{bottom:299.919000px;}
.y1ef{bottom:299.955000px;}
.y1b9{bottom:300.099000px;}
.y21c{bottom:300.990000px;}
.y282{bottom:301.890000px;}
.y241{bottom:302.250000px;}
.y2b8{bottom:305.670000px;}
.y122{bottom:306.750000px;}
.y1f{bottom:306.930000px;}
.yd4{bottom:311.250000px;}
.y19e{bottom:312.870000px;}
.yb1{bottom:313.230000px;}
.y79{bottom:317.010000px;}
.y14a{bottom:317.370000px;}
.y4c{bottom:317.730000px;}
.y2a1{bottom:317.910000px;}
.y9d{bottom:318.810000px;}
.y21b{bottom:319.890000px;}
.y109{bottom:320.445000px;}
.yf6{bottom:320.625000px;}
.y281{bottom:320.790000px;}
.y240{bottom:321.150000px;}
.y1b8{bottom:322.449000px;}
.y1ee{bottom:322.455000px;}
.y1e{bottom:325.830000px;}
.yb0{bottom:332.130000px;}
.yfe{bottom:332.850000px;}
.y261{bottom:334.830000px;}
.y2a0{bottom:337.035000px;}
.y149{bottom:338.115000px;}
.y2b7{bottom:339.735000px;}
.y23f{bottom:340.095000px;}
.y121{bottom:341.895000px;}
.y1d8{bottom:342.795000px;}
.y1cd{bottom:344.769000px;}
.y1ed{bottom:344.775000px;}
.y1d{bottom:344.955000px;}
.y19d{bottom:346.755000px;}
.y78{bottom:351.075000px;}
.y9c{bottom:352.875000px;}
.y4b{bottom:353.415000px;}
.y21a{bottom:353.775000px;}
.y280{bottom:354.675000px;}
.y29f{bottom:356.115000px;}
.y148{bottom:358.815000px;}
.y23e{bottom:359.175000px;}
.y108{bottom:361.305000px;}
.yf5{bottom:361.485000px;}
.y19c{bottom:365.835000px;}
.yaf{bottom:366.015000px;}
.y1cc{bottom:367.269000px;}
.y9b{bottom:371.955000px;}
.y260{bottom:372.675000px;}
.y2b6{bottom:373.575000px;}
.yfd{bottom:374.655000px;}
.y120{bottom:376.815000px;}
.y23d{bottom:378.075000px;}
.y1c{bottom:379.155000px;}
.y147{bottom:379.515000px;}
.yd3{bottom:380.235000px;}
.y77{bottom:384.915000px;}
.yae{bottom:385.095000px;}
.y219{bottom:387.795000px;}
.y27f{bottom:388.695000px;}
.y4a{bottom:389.055000px;}
.y1e0{bottom:389.589000px;}
.y29e{bottom:389.775000px;}
.y16f{bottom:389.880000px;}
.y23c{bottom:397.155000px;}
.y19b{bottom:399.675000px;}
.y146{bottom:400.215000px;}
.yf4{bottom:402.345000px;}
.y76{bottom:404.175000px;}
.y9a{bottom:405.795000px;}
.y25f{bottom:406.695000px;}
.y218{bottom:406.875000px;}
.y2b5{bottom:407.595000px;}
.y27e{bottom:407.775000px;}
.y29d{bottom:409.035000px;}
.y11f{bottom:410.835000px;}
.y1b{bottom:414.435000px;}
.yfc{bottom:416.235000px;}
.yd2{bottom:418.575000px;}
.y19a{bottom:418.755000px;}
.y145{bottom:420.915000px;}
.y75{bottom:423.075000px;}
.y49{bottom:424.335000px;}
.y99{bottom:424.875000px;}
.y217{bottom:425.955000px;}
.y29c{bottom:427.935000px;}
.y11e{bottom:429.915000px;}
.y23b{bottom:430.815000px;}
.y162{bottom:432.255000px;}
.y1e7{bottom:432.465000px;}
.y199{bottom:437.835000px;}
.y144{bottom:441.615000px;}
.y74{bottom:442.155000px;}
.y2b4{bottom:442.875000px;}
.yf3{bottom:443.235000px;}
.y48{bottom:443.415000px;}
.y98{bottom:443.955000px;}
.y216{bottom:444.855000px;}
.y29b{bottom:447.015000px;}
.y161{bottom:447.915000px;}
.y1a{bottom:448.455000px;}
.y23a{bottom:450.075000px;}
.yd1{bottom:453.855000px;}
.y198{bottom:456.735000px;}
.y1ae{bottom:457.665000px;}
.yfb{bottom:457.815000px;}
.y27d{bottom:460.695000px;}
.y73{bottom:461.055000px;}
.y143{bottom:462.315000px;}
.y47{bottom:462.495000px;}
.y11d{bottom:463.755000px;}
.y239{bottom:468.975000px;}
.y197{bottom:475.815000px;}
.y97{bottom:477.615000px;}
.y27c{bottom:479.775000px;}
.y29a{bottom:480.675000px;}
.y46{bottom:481.395000px;}
.y19{bottom:482.295000px;}
.y215{bottom:482.835000px;}
.y11c{bottom:483.015000px;}
.yd0{bottom:487.875000px;}
.y238{bottom:488.055000px;}
.y196{bottom:494.715000px;}
.y72{bottom:494.895000px;}
.y96{bottom:496.875000px;}
.y27b{bottom:498.675000px;}
.yfa{bottom:499.395000px;}
.y1c8{bottom:499.785000px;}
.y299{bottom:499.935000px;}
.y214{bottom:501.735000px;}
.y11b{bottom:501.915000px;}
.y142{bottom:503.715000px;}
.y237{bottom:506.955000px;}
.y16a{bottom:512.280000px;}
.y195{bottom:513.615000px;}
.y71{bottom:513.975000px;}
.y2b3{bottom:514.695000px;}
.y45{bottom:515.235000px;}
.y95{bottom:515.775000px;}
.y18{bottom:516.315000px;}
.y27a{bottom:517.575000px;}
.y298{bottom:518.835000px;}
.y11a{bottom:520.815000px;}
.ycf{bottom:521.715000px;}
.y1de{bottom:522.285000px;}
.y1d2{bottom:523.005000px;}
.y141{bottom:524.415000px;}
.y236{bottom:525.855000px;}
.y194{bottom:532.695000px;}
.y70{bottom:533.055000px;}
.y2b2{bottom:533.955000px;}
.y17{bottom:535.575000px;}
.y297{bottom:537.915000px;}
.y213{bottom:539.715000px;}
.yce{bottom:540.975000px;}
.yf9{bottom:541.155000px;}
.y235{bottom:544.935000px;}
.y140{bottom:545.115000px;}
.y44{bottom:549.255000px;}
.y94{bottom:549.615000px;}
.y279{bottom:551.415000px;}
.y6f{bottom:551.955000px;}
.y2b1{bottom:552.855000px;}
.y25e{bottom:554.655000px;}
.y119{bottom:555.195000px;}
.y212{bottom:558.615000px;}
.ycd{bottom:559.875000px;}
.y15f{bottom:561.675000px;}
.y234{bottom:563.835000px;}
.y160{bottom:565.455000px;}
.y13f{bottom:565.815000px;}
.y193{bottom:566.535000px;}
.y93{bottom:568.695000px;}
.y16{bottom:569.235000px;}
.y278{bottom:570.675000px;}
.y6e{bottom:570.855000px;}
.y296{bottom:571.575000px;}
.y2b0{bottom:571.755000px;}
.y25d{bottom:573.735000px;}
.y15e{bottom:577.155000px;}
.y211{bottom:577.695000px;}
.ycc{bottom:578.955000px;}
.yf0{bottom:582.735000px;}
.y233{bottom:582.915000px;}
.y43{bottom:583.095000px;}
.y192{bottom:585.615000px;}
.y13e{bottom:586.515000px;}
.y92{bottom:587.775000px;}
.y277{bottom:589.575000px;}
.y6d{bottom:589.935000px;}
.y1e1{bottom:590.145000px;}
.y118{bottom:590.835000px;}
.y25c{bottom:592.635000px;}
.y210{bottom:596.595000px;}
.y1f7{bottom:600.585000px;}
.y232{bottom:601.815000px;}
.y42{bottom:602.355000px;}
.y15{bottom:603.255000px;}
.y191{bottom:604.545000px;}
.y2af{bottom:605.625000px;}
.y13d{bottom:607.245000px;}
.y6c{bottom:608.865000px;}
.y295{bottom:609.765000px;}
.ycb{bottom:612.645000px;}
.y20f{bottom:615.705000px;}
.y117{bottom:617.145000px;}
.y231{bottom:620.745000px;}
.y91{bottom:621.465000px;}
.y14{bottom:622.365000px;}
.y276{bottom:623.445000px;}
.y190{bottom:623.625000px;}
.yed{bottom:624.345000px;}
.y2ae{bottom:624.705000px;}
.y25b{bottom:626.505000px;}
.y6b{bottom:627.945000px;}
.yca{bottom:631.905000px;}
.y20e{bottom:634.605000px;}
.y41{bottom:636.225000px;}
.y168{bottom:638.460000px;}
.y230{bottom:639.825000px;}
.y90{bottom:640.725000px;}
.y275{bottom:642.525000px;}
.y294{bottom:643.605000px;}
.y25a{bottom:645.585000px;}
.y6a{bottom:646.845000px;}
.y13c{bottom:648.645000px;}
.yc9{bottom:650.805000px;}
.y20d{bottom:653.505000px;}
.y13{bottom:656.205000px;}
.y18f{bottom:657.465000px;}
.y158{bottom:657.720000px;}
.y2ad{bottom:658.545000px;}
.y22f{bottom:658.725000px;}
.y153{bottom:659.880000px;}
.y1aa{bottom:660.390000px;}
.y274{bottom:661.605000px;}
.y293{bottom:662.685000px;}
.y116{bottom:663.225000px;}
.y259{bottom:664.665000px;}
.y69{bottom:665.745000px;}
.y15d{bottom:669.345000px;}
.yc8{bottom:669.705000px;}
.y40{bottom:670.065000px;}
.y8f{bottom:674.565000px;}
.y18e{bottom:676.545000px;}
.y22e{bottom:677.805000px;}
.y157{bottom:678.525000px;}
.y13b{bottom:679.425000px;}
.y1c6{bottom:680.010000px;}
.yad{bottom:680.685000px;}
.y258{bottom:683.565000px;}
.y68{bottom:684.825000px;}
.y15c{bottom:685.185000px;}
.y20c{bottom:687.345000px;}
.yc7{bottom:688.785000px;}
.y3f{bottom:689.325000px;}
.y12{bottom:690.225000px;}
.y8e{bottom:693.645000px;}
.y156{bottom:694.005000px;}
.y273{bottom:695.265000px;}
.y18d{bottom:695.445000px;}
.y292{bottom:696.525000px;}
.y22d{bottom:696.705000px;}
.yac{bottom:699.765000px;}
.y15b{bottom:700.665000px;}
.y1ec{bottom:702.330000px;}
.y257{bottom:702.645000px;}
.y67{bottom:703.725000px;}
.y107{bottom:704.805000px;}
.y20b{bottom:706.605000px;}
.yc6{bottom:707.685000px;}
.y3e{bottom:708.225000px;}
.y11{bottom:709.305000px;}
.y155{bottom:709.485000px;}
.yec{bottom:710.025000px;}
.y18c{bottom:714.525000px;}
.y291{bottom:715.605000px;}
.y15a{bottom:716.145000px;}
.y13a{bottom:718.665000px;}
.yab{bottom:718.845000px;}
.y66{bottom:722.805000px;}
.y20a{bottom:725.505000px;}
.y3d{bottom:727.305000px;}
.y8d{bottom:727.485000px;}
.y22c{bottom:730.545000px;}
.y18b{bottom:733.425000px;}
.y256{bottom:737.565000px;}
.yaa{bottom:737.745000px;}
.yc5{bottom:741.525000px;}
.yeb{bottom:742.245000px;}
.yf{bottom:743.145000px;}
.y209{bottom:744.405000px;}
.y3c{bottom:746.205000px;}
.y115{bottom:746.385000px;}
.y8c{bottom:746.565000px;}
.y1a9{bottom:746.610000px;}
.y1dc{bottom:747.150000px;}
.y290{bottom:749.445000px;}
.y2ac{bottom:749.625000px;}
.y10{bottom:749.985000px;}
.y65{bottom:756.465000px;}
.ya9{bottom:756.645000px;}
.y139{bottom:757.725000px;}
.yc4{bottom:760.605000px;}
.y208{bottom:763.485000px;}
.y22b{bottom:764.565000px;}
.y3b{bottom:765.105000px;}
.y8b{bottom:765.465000px;}
.y18a{bottom:767.265000px;}
.y28f{bottom:768.705000px;}
.yea{bottom:774.645000px;}
.y255{bottom:775.545000px;}
.y64{bottom:775.725000px;}
.y166{bottom:776.700000px;}
.ye{bottom:777.525000px;}
.y1a8{bottom:778.830000px;}
.yc3{bottom:779.685000px;}
.y207{bottom:782.385000px;}
.y22a{bottom:783.645000px;}
.y3a{bottom:784.185000px;}
.y138{bottom:785.805000px;}
.y272{bottom:786.345000px;}
.y114{bottom:788.145000px;}
.ye9{bottom:793.905000px;}
.y63{bottom:794.625000px;}
.yc2{bottom:798.585000px;}
.y8a{bottom:799.305000px;}
.y206{bottom:801.465000px;}
.y189{bottom:802.365000px;}
.y229{bottom:802.545000px;}
.y39{bottom:803.085000px;}
.y271{bottom:805.425000px;}
.y137{bottom:808.125000px;}
.y254{bottom:809.565000px;}
.ye8{bottom:812.805000px;}
.yd{bottom:813.345000px;}
.y62{bottom:813.705000px;}
.y228{bottom:821.625000px;}
.y38{bottom:822.165000px;}
.y1a6{bottom:824.220000px;}
.y253{bottom:828.645000px;}
.y113{bottom:829.725000px;}
.y136{bottom:830.625000px;}
.ye7{bottom:831.705000px;}
.yc1{bottom:832.425000px;}
.y61{bottom:832.605000px;}
.y89{bottom:833.325000px;}
.yc{bottom:834.045000px;}
.y205{bottom:835.125000px;}
.y270{bottom:839.085000px;}
.y188{bottom:840.345000px;}
.y227{bottom:840.525000px;}
.y37{bottom:841.065000px;}
.y252{bottom:847.545000px;}
.ye6{bottom:850.785000px;}
.ya8{bottom:851.505000px;}
.y135{bottom:853.125000px;}
.y204{bottom:854.385000px;}
.y2ab{bottom:855.285000px;}
.y26f{bottom:858.345000px;}
.y28e{bottom:859.605000px;}
.y36{bottom:859.965000px;}
.y60{bottom:866.445000px;}
.y251{bottom:866.625000px;}
.y88{bottom:867.345000px;}
.ye5{bottom:869.685000px;}
.yb{bottom:870.405000px;}
.ya7{bottom:870.630000px;}
.y112{bottom:871.350000px;}
.y203{bottom:873.330000px;}
.y187{bottom:874.410000px;}
.y2aa{bottom:874.590000px;}
.y134{bottom:876.390000px;}
.y35{bottom:879.090000px;}
.y5f{bottom:885.570000px;}
.y87{bottom:886.470000px;}
.yc0{bottom:889.530000px;}
.y26e{bottom:892.230000px;}
.y202{bottom:892.410000px;}
.y28d{bottom:893.310000px;}
.y226{bottom:893.490000px;}
.ya{bottom:894.570000px;}
.y34{bottom:897.990000px;}
.ye4{bottom:904.110000px;}
.ya6{bottom:904.470000px;}
.y5e{bottom:904.650000px;}
.y186{bottom:908.430000px;}
.ybf{bottom:908.610000px;}
.y133{bottom:910.050000px;}
.y201{bottom:911.310000px;}
.y225{bottom:912.570000px;}
.y111{bottom:912.930000px;}
.y9{bottom:918.870000px;}
.y250{bottom:919.410000px;}
.y86{bottom:920.310000px;}
.y5d{bottom:923.550000px;}
.y2a9{bottom:927.330000px;}
.ybe{bottom:927.510000px;}
.y132{bottom:929.310000px;}
.y200{bottom:930.210000px;}
.y224{bottom:931.470000px;}
.y33{bottom:932.370000px;}
.y24f{bottom:938.490000px;}
.ye3{bottom:939.210000px;}
.y185{bottom:942.270000px;}
.y5c{bottom:942.450000px;}
.y8{bottom:942.990000px;}
.ybd{bottom:946.410000px;}
.y131{bottom:948.210000px;}
.y1ff{bottom:949.290000px;}
.y85{bottom:954.330000px;}
.y110{bottom:954.690000px;}
.y24e{bottom:957.570000px;}
.y5b{bottom:961.530000px;}
.y26d{bottom:964.050000px;}
.y223{bottom:965.310000px;}
.ybc{bottom:965.490000px;}
.y130{bottom:967.290000px;}
.y32{bottom:968.010000px;}
.y1fe{bottom:968.190000px;}
.ye2{bottom:973.230000px;}
.y24d{bottom:976.470000px;}
.y5a{bottom:980.430000px;}
.y7{bottom:982.050000px;}
.y26c{bottom:983.310000px;}
.y28c{bottom:984.390000px;}
.y12f{bottom:986.190000px;}
.y1fd{bottom:987.270000px;}
.y84{bottom:988.170000px;}
.y24c{bottom:995.550000px;}
.y10f{bottom:996.270000px;}
.ybb{bottom:999.330000px;}
.y59{bottom:999.510000px;}
.y26b{bottom:1002.210000px;}
.y31{bottom:1003.290000px;}
.y12e{bottom:1005.090000px;}
.ye1{bottom:1007.250000px;}
.y184{bottom:1014.270000px;}
.y24b{bottom:1014.450000px;}
.y28b{bottom:1018.230000px;}
.y58{bottom:1018.410000px;}
.y1fc{bottom:1020.930000px;}
.y6{bottom:1021.290000px;}
.y83{bottom:1022.190000px;}
.y30{bottom:1022.370000px;}
.y12d{bottom:1024.170000px;}
.y183{bottom:1033.350000px;}
.y26a{bottom:1036.050000px;}
.ya5{bottom:1037.310000px;}
.y10e{bottom:1037.850000px;}
.ye0{bottom:1041.090000px;}
.y57{bottom:1052.250000px;}
.y182{bottom:1052.430000px;}
.y1fb{bottom:1054.950000px;}
.y269{bottom:1055.130000px;}
.y5{bottom:1055.850000px;}
.y2f{bottom:1056.210000px;}
.ya4{bottom:1056.390000px;}
.y12c{bottom:1058.010000px;}
.y2a8{bottom:1071.150000px;}
.y56{bottom:1071.330000px;}
.y1fa{bottom:1074.210000px;}
.ydf{bottom:1075.110000px;}
.y82{bottom:1075.290000px;}
.y12b{bottom:1077.090000px;}
.y10d{bottom:1079.430000px;}
.y2e{bottom:1090.230000px;}
.y55{bottom:1090.410000px;}
.y1f9{bottom:1107.870000px;}
.y81{bottom:1109.130000px;}
.y2d{bottom:1109.310000px;}
.y12a{bottom:1110.930000px;}
.y106{bottom:1121.190000px;}
.y2c{bottom:1128.210000px;}
.y1f8{bottom:1143.180000px;}
.y129{bottom:1146.060000px;}
.y2b{bottom:1147.320000px;}
.y1{bottom:1194.120000px;}
.h17{height:15.660000px;}
.h16{height:34.020000px;}
.h6{height:38.158594px;}
.he{height:40.860000px;}
.hc{height:40.896000px;}
.h10{height:41.040000px;}
.hf{height:41.076000px;}
.h5{height:43.554375px;}
.h33{height:44.820000px;}
.h2a{height:45.000000px;}
.h12{height:50.312812px;}
.h26{height:53.573906px;}
.h11{height:56.320312px;}
.h7{height:58.651172px;}
.h1d{height:59.221406px;}
.h8{height:59.415469px;}
.h21{height:60.226875px;}
.ha{height:62.327813px;}
.hb{height:66.780000px;}
.h20{height:67.140000px;}
.h30{height:67.320000px;}
.h2{height:69.086250px;}
.h9{height:70.567031px;}
.h4{height:75.093750px;}
.h3{height:87.859687px;}
.h1a{height:88.920000px;}
.h31{height:89.820000px;}
.h13{height:93.780000px;}
.h14{height:95.940000px;}
.h1b{height:100.980000px;}
.h19{height:101.160000px;}
.h24{height:112.140000px;}
.h18{height:118.980000px;}
.h15{height:133.360312px;}
.h2e{height:156.960000px;}
.h25{height:179.490000px;}
.h22{height:201.810000px;}
.h2d{height:201.990000px;}
.h2b{height:224.130000px;}
.h29{height:224.310000px;}
.h1c{height:237.630000px;}
.h2f{height:246.675000px;}
.h28{height:269.130000px;}
.h23{height:336.495000px;}
.h32{height:358.815000px;}
.h27{height:381.315000px;}
.h2c{height:403.635000px;}
.hd{height:457.275000px;}
.h1e{height:892.980000px;}
.h1f{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:15.840000px;}
.wc{width:16.020000px;}
.w11{width:50.796000px;}
.w13{width:77.400000px;}
.w15{width:84.960000px;}
.w14{width:85.176000px;}
.w5{width:104.256000px;}
.w18{width:106.200000px;}
.w17{width:106.416000px;}
.w16{width:127.620000px;}
.w12{width:137.340000px;}
.w6{width:138.276000px;}
.w4{width:212.430000px;}
.w8{width:221.580000px;}
.wd{width:267.375000px;}
.w9{width:275.760000px;}
.w19{width:276.510000px;}
.w7{width:316.695000px;}
.wa{width:569.340000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w10{width:1262.879981px;}
.we{width:1262.880000px;}
.wf{width:1263.000000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x1d{left:10.830000px;}
.x3b{left:12.060000px;}
.x29{left:13.104000px;}
.x42{left:14.580000px;}
.x40{left:16.200000px;}
.x37{left:18.180000px;}
.x1a{left:20.340000px;}
.x3a{left:22.860000px;}
.x35{left:25.380000px;}
.x3e{left:26.850000px;}
.x2b{left:28.332000px;}
.x2f{left:32.070000px;}
.x19{left:34.200000px;}
.x43{left:37.800000px;}
.x25{left:40.710000px;}
.x18{left:52.050000px;}
.x38{left:57.285000px;}
.x30{left:61.950000px;}
.x31{left:67.530000px;}
.x1{left:84.959987px;}
.x11{left:89.855987px;}
.x8{left:91.295987px;}
.x28{left:95.040000px;}
.x2a{left:96.300000px;}
.x2d{left:97.380000px;}
.x2c{left:99.900000px;}
.x2{left:114.695987px;}
.x5{left:118.655987px;}
.x27{left:119.730000px;}
.x6{left:126.575987px;}
.x33{left:135.756000px;}
.x9{left:137.375987px;}
.x1b{left:141.695987px;}
.x26{left:144.000000px;}
.x46{left:149.615987px;}
.x23{left:150.869987px;}
.x1e{left:153.209987px;}
.x22{left:156.449987px;}
.x1c{left:168.689987px;}
.x24{left:180.569987px;}
.x1f{left:204.329987px;}
.x14{left:219.090000px;}
.xd{left:252.929987px;}
.x45{left:256.169987px;}
.x7{left:258.509987px;}
.x34{left:273.090000px;}
.xe{left:311.114987px;}
.x44{left:315.794987px;}
.x10{left:330.734987px;}
.x36{left:350.490000px;}
.xa{left:358.634987px;}
.x12{left:382.754987px;}
.x32{left:389.774987px;}
.x13{left:409.034987px;}
.x16{left:431.535000px;}
.x20{left:434.520000px;}
.x39{left:435.675000px;}
.x2e{left:438.375000px;}
.x4{left:446.474987px;}
.xf{left:461.234987px;}
.x48{left:470.264987px;}
.x21{left:496.724987px;}
.x47{left:519.044987px;}
.x3c{left:520.635000px;}
.xb{left:528.404973px;}
.xc{left:534.164987px;}
.x17{left:535.785000px;}
.x3{left:570.164987px;}
.x3d{left:648.255000px;}
.x3f{left:754.665000px;}
.x41{left:860.865000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:68.480000pt;}
.lsd{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.233067pt;}
.ls14{letter-spacing:-0.161067pt;}
.lsb{letter-spacing:-0.135467pt;}
.ls5{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls1a{letter-spacing:0.062720pt;}
.ls17{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.096000pt;}
.ls10{letter-spacing:0.135680pt;}
.ls19{letter-spacing:0.159360pt;}
.ls2{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.232960pt;}
.lsa{letter-spacing:0.233067pt;}
.ls13{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.271360pt;}
.ls7{letter-spacing:0.271467pt;}
.ls15{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.360960pt;}
.lsf{letter-spacing:24.111360pt;}
.ls11{letter-spacing:52.730027pt;}
.ls1b{letter-spacing:53.391360pt;}
.ls1c{letter-spacing:191.631360pt;}
.wsd{word-spacing:-58.880000pt;}
.wsc{word-spacing:-16.640107pt;}
.ws5{word-spacing:-16.601707pt;}
.ws1{word-spacing:-16.368640pt;}
.ws0{word-spacing:-16.271573pt;}
.ws6{word-spacing:-16.233173pt;}
.ws2{word-spacing:-16.135573pt;}
.ws7{word-spacing:-16.000107pt;}
.ws8{word-spacing:-15.961707pt;}
.ws9{word-spacing:-15.632640pt;}
.wsb{word-spacing:-14.767360pt;}
.wsa{word-spacing:-14.672427pt;}
.ws14{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.344000pt;}
.ws10{word-spacing:-13.327360pt;}
.ws12{word-spacing:-13.280000pt;}
.wse{word-spacing:-11.920640pt;}
.wsf{word-spacing:-11.759573pt;}
.ws4{word-spacing:0.000000pt;}
._e{margin-left:-4.416000pt;}
._a{margin-left:-2.826240pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.203627pt;}
._8{width:2.590720pt;}
._7{width:4.062720pt;}
._5{width:5.299200pt;}
._6{width:6.638293pt;}
._12{width:7.536640pt;}
._9{width:8.655360pt;}
._d{width:9.882027pt;}
._2{width:11.187200pt;}
._3{width:12.837973pt;}
._4{width:13.777920pt;}
._15{width:14.951253pt;}
._28{width:16.272853pt;}
._16{width:17.272320pt;}
._2b{width:18.208640pt;}
._11{width:19.665920pt;}
._17{width:21.079040pt;}
._22{width:22.123520pt;}
._c{width:23.080960pt;}
._b{width:24.386347pt;}
._27{width:25.392427pt;}
._2d{width:27.091200pt;}
._2f{width:28.498560pt;}
._2c{width:29.455360pt;}
._29{width:30.375893pt;}
._13{width:31.677440pt;}
._14{width:32.737280pt;}
._3b{width:33.955627pt;}
._34{width:35.714773pt;}
._32{width:37.892693pt;}
._35{width:39.061333pt;}
._3d{width:42.195627pt;}
._2a{width:43.576533pt;}
._2e{width:44.747093pt;}
._36{width:45.734400pt;}
._18{width:47.224320pt;}
._1f{width:48.672000pt;}
._1e{width:49.632000pt;}
._1c{width:51.381760pt;}
._f{width:52.933120pt;}
._10{width:54.057600pt;}
._21{width:55.156693pt;}
._1a{width:56.448000pt;}
._40{width:62.530560pt;}
._31{width:64.771413pt;}
._30{width:65.762560pt;}
._3e{width:70.891520pt;}
._39{width:78.936320pt;}
._25{width:81.114240pt;}
._33{width:83.717120pt;}
._37{width:84.726400pt;}
._38{width:88.675413pt;}
._3a{width:99.119787pt;}
._1d{width:101.088000pt;}
._26{width:127.226027pt;}
._20{width:128.496000pt;}
._23{width:148.913493pt;}
._3c{width:151.205333pt;}
._19{width:155.004160pt;}
._3f{width:191.772160pt;}
._24{width:204.052053pt;}
._1b{width:759.481600pt;}
.fs4{font-size:34.560000pt;}
.fs3{font-size:37.120000pt;}
.fs8{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs7{font-size:82.560000pt;}
.y181{bottom:-37.760000pt;}
.y180{bottom:-10.240000pt;}
.y0{bottom:0.000000pt;}
.y167{bottom:2.493333pt;}
.y165{bottom:3.706667pt;}
.y1ad{bottom:7.360000pt;}
.y1b6{bottom:7.520000pt;}
.y1f6{bottom:7.560000pt;}
.y170{bottom:9.506667pt;}
.y169{bottom:9.573333pt;}
.y16d{bottom:9.600000pt;}
.y164{bottom:17.466667pt;}
.y17f{bottom:20.480000pt;}
.y105{bottom:23.834667pt;}
.yef{bottom:23.840000pt;}
.yf1{bottom:23.866667pt;}
.y103{bottom:24.000000pt;}
.yff{bottom:24.040000pt;}
.y1ac{bottom:27.360000pt;}
.y1f5{bottom:27.400000pt;}
.y1c5{bottom:27.514667pt;}
.y1dd{bottom:27.520000pt;}
.y1e6{bottom:27.560000pt;}
.y17e{bottom:34.400000pt;}
.y16b{bottom:35.973333pt;}
.yee{bottom:46.880000pt;}
.y1ab{bottom:47.200000pt;}
.y1c4{bottom:47.354667pt;}
.y1b5{bottom:47.360000pt;}
.y1e5{bottom:47.400000pt;}
.y17d{bottom:48.160000pt;}
.y4{bottom:50.240000pt;}
.y1a7{bottom:50.272000pt;}
.y16e{bottom:52.640000pt;}
.y154{bottom:57.853333pt;}
.y17c{bottom:61.960000pt;}
.y159{bottom:65.693333pt;}
.y3{bottom:67.072000pt;}
.y1d1{bottom:67.194667pt;}
.y1c7{bottom:67.200000pt;}
.y1ea{bottom:67.240000pt;}
.y1c3{bottom:67.354667pt;}
.y1b4{bottom:67.360000pt;}
.y1e4{bottom:67.400000pt;}
.y17b{bottom:75.720000pt;}
.y2{bottom:84.032000pt;}
.y1df{bottom:87.080000pt;}
.y1c2{bottom:87.194667pt;}
.y1b3{bottom:87.200000pt;}
.y1db{bottom:87.226667pt;}
.y1d7{bottom:87.240000pt;}
.y17a{bottom:89.640000pt;}
.y2a{bottom:100.672000pt;}
.y54{bottom:102.592000pt;}
.y24a{bottom:103.392000pt;}
.y179{bottom:103.400000pt;}
.y1eb{bottom:104.032000pt;}
.y152{bottom:104.512000pt;}
.y1cb{bottom:104.672000pt;}
.y29{bottom:105.312000pt;}
.y28a{bottom:106.592000pt;}
.y1da{bottom:107.066667pt;}
.y1b7{bottom:107.072000pt;}
.y1ca{bottom:107.080000pt;}
.y1b2{bottom:107.200000pt;}
.y1c1{bottom:107.234667pt;}
.y1e3{bottom:107.240000pt;}
.yde{bottom:107.712000pt;}
.y104{bottom:110.912000pt;}
.yba{bottom:113.152000pt;}
.y128{bottom:115.072000pt;}
.y28{bottom:116.192000pt;}
.y178{bottom:117.160000pt;}
.y53{bottom:119.392000pt;}
.y249{bottom:120.352000pt;}
.y151{bottom:121.472000pt;}
.y289{bottom:123.552000pt;}
.y80{bottom:123.712000pt;}
.ydd{bottom:124.832000pt;}
.y268{bottom:125.152000pt;}
.y1b1{bottom:127.040000pt;}
.y1d9{bottom:127.066667pt;}
.y1c0{bottom:127.074667pt;}
.y1c9{bottom:127.080000pt;}
.y2a7{bottom:129.792000pt;}
.yb9{bottom:130.112000pt;}
.y177{bottom:130.920000pt;}
.y222{bottom:136.026667pt;}
.y52{bottom:136.346667pt;}
.y248{bottom:137.146667pt;}
.y27{bottom:137.946667pt;}
.y150{bottom:138.266667pt;}
.y288{bottom:140.506667pt;}
.y7f{bottom:140.666667pt;}
.ydc{bottom:141.626667pt;}
.ya3{bottom:142.106667pt;}
.y1f4{bottom:144.506667pt;}
.y176{bottom:144.840000pt;}
.y127{bottom:146.266667pt;}
.y1a5{bottom:146.586667pt;}
.y2a6{bottom:146.906667pt;}
.y1d6{bottom:146.920000pt;}
.yb8{bottom:147.066667pt;}
.y1bf{bottom:147.074667pt;}
.y1b0{bottom:147.080000pt;}
.yf2{bottom:147.866667pt;}
.y51{bottom:153.146667pt;}
.y247{bottom:154.106667pt;}
.y26{bottom:154.746667pt;}
.y267{bottom:155.226667pt;}
.y7e{bottom:157.626667pt;}
.ydb{bottom:158.586667pt;}
.y175{bottom:158.600000pt;}
.ya2{bottom:159.226667pt;}
.y1a4{bottom:163.546667pt;}
.y2a5{bottom:163.706667pt;}
.yb7{bottom:163.866667pt;}
.y1e8{bottom:164.506667pt;}
.y221{bottom:166.106667pt;}
.y1f3{bottom:166.906667pt;}
.y1d0{bottom:166.914667pt;}
.y1af{bottom:166.920000pt;}
.y1be{bottom:167.074667pt;}
.y1e2{bottom:167.080000pt;}
.y14f{bottom:168.826667pt;}
.y50{bottom:170.106667pt;}
.y287{bottom:170.426667pt;}
.y246{bottom:170.906667pt;}
.y25{bottom:171.706667pt;}
.y174{bottom:172.360000pt;}
.y7d{bottom:174.426667pt;}
.yda{bottom:175.386667pt;}
.y10c{bottom:175.880000pt;}
.y126{bottom:176.506667pt;}
.y1a3{bottom:180.506667pt;}
.yb6{bottom:180.666667pt;}
.y220{bottom:183.226667pt;}
.y102{bottom:184.986667pt;}
.y266{bottom:185.466667pt;}
.y173{bottom:186.120000pt;}
.y1d5{bottom:186.760000pt;}
.y4f{bottom:186.906667pt;}
.y1bd{bottom:186.914667pt;}
.y1e9{bottom:186.920000pt;}
.y286{bottom:187.546667pt;}
.y245{bottom:187.866667pt;}
.y24{bottom:188.506667pt;}
.ya1{bottom:189.146667pt;}
.yd9{bottom:192.186667pt;}
.y21f{bottom:200.026667pt;}
.y172{bottom:200.040000pt;}
.y14e{bottom:201.146667pt;}
.y285{bottom:204.346667pt;}
.y7c{bottom:204.506667pt;}
.y244{bottom:204.666667pt;}
.y23{bottom:205.306667pt;}
.ya0{bottom:206.266667pt;}
.y1f2{bottom:206.746667pt;}
.y1cf{bottom:206.754667pt;}
.y1d4{bottom:206.760000pt;}
.y1bc{bottom:206.914667pt;}
.y125{bottom:207.706667pt;}
.yd8{bottom:209.146667pt;}
.y1a2{bottom:210.426667pt;}
.yb5{bottom:210.746667pt;}
.y10b{bottom:212.200000pt;}
.yf8{bottom:212.360000pt;}
.y2a4{bottom:213.466667pt;}
.y265{bottom:215.706667pt;}
.y4e{bottom:216.986667pt;}
.y284{bottom:221.306667pt;}
.y7b{bottom:221.466667pt;}
.y101{bottom:221.946667pt;}
.y22{bottom:222.266667pt;}
.yd7{bottom:225.946667pt;}
.y1f1{bottom:226.746667pt;}
.y1bb{bottom:226.754667pt;}
.y1d3{bottom:226.760000pt;}
.y14d{bottom:226.906667pt;}
.y1a1{bottom:227.546667pt;}
.yb4{bottom:227.866667pt;}
.y2a3{bottom:230.266667pt;}
.y264{bottom:232.666667pt;}
.y21e{bottom:233.786667pt;}
.y243{bottom:234.746667pt;}
.y9f{bottom:236.346667pt;}
.y124{bottom:238.906667pt;}
.y21{bottom:239.066667pt;}
.y171{bottom:240.346667pt;}
.y2b9{bottom:241.466667pt;}
.yd6{bottom:242.906667pt;}
.y1a0{bottom:244.346667pt;}
.yb3{bottom:244.666667pt;}
.y14c{bottom:245.306667pt;}
.y16c{bottom:246.080000pt;}
.y1f0{bottom:246.626667pt;}
.y1ba{bottom:246.754667pt;}
.y2a2{bottom:247.066667pt;}
.y4d{bottom:248.186667pt;}
.y10a{bottom:248.520000pt;}
.yf7{bottom:248.680000pt;}
.y263{bottom:249.626667pt;}
.y21d{bottom:250.586667pt;}
.y283{bottom:251.226667pt;}
.y7a{bottom:251.546667pt;}
.y242{bottom:251.706667pt;}
.y9e{bottom:253.306667pt;}
.y123{bottom:255.866667pt;}
.y20{bottom:256.026667pt;}
.y100{bottom:258.906667pt;}
.yd5{bottom:259.706667pt;}
.y19f{bottom:261.306667pt;}
.yb2{bottom:261.466667pt;}
.y163{bottom:262.720000pt;}
.y14b{bottom:263.706667pt;}
.y262{bottom:266.426667pt;}
.y1ce{bottom:266.594667pt;}
.y1ef{bottom:266.626667pt;}
.y1b9{bottom:266.754667pt;}
.y21c{bottom:267.546667pt;}
.y282{bottom:268.346667pt;}
.y241{bottom:268.666667pt;}
.y2b8{bottom:271.706667pt;}
.y122{bottom:272.666667pt;}
.y1f{bottom:272.826667pt;}
.yd4{bottom:276.666667pt;}
.y19e{bottom:278.106667pt;}
.yb1{bottom:278.426667pt;}
.y79{bottom:281.786667pt;}
.y14a{bottom:282.106667pt;}
.y4c{bottom:282.426667pt;}
.y2a1{bottom:282.586667pt;}
.y9d{bottom:283.386667pt;}
.y21b{bottom:284.346667pt;}
.y109{bottom:284.840000pt;}
.yf6{bottom:285.000000pt;}
.y281{bottom:285.146667pt;}
.y240{bottom:285.466667pt;}
.y1b8{bottom:286.621333pt;}
.y1ee{bottom:286.626667pt;}
.y1e{bottom:289.626667pt;}
.yb0{bottom:295.226667pt;}
.yfe{bottom:295.866667pt;}
.y261{bottom:297.626667pt;}
.y2a0{bottom:299.586667pt;}
.y149{bottom:300.546667pt;}
.y2b7{bottom:301.986667pt;}
.y23f{bottom:302.306667pt;}
.y121{bottom:303.906667pt;}
.y1d8{bottom:304.706667pt;}
.y1cd{bottom:306.461333pt;}
.y1ed{bottom:306.466667pt;}
.y1d{bottom:306.626667pt;}
.y19d{bottom:308.226667pt;}
.y78{bottom:312.066667pt;}
.y9c{bottom:313.666667pt;}
.y4b{bottom:314.146667pt;}
.y21a{bottom:314.466667pt;}
.y280{bottom:315.266667pt;}
.y29f{bottom:316.546667pt;}
.y148{bottom:318.946667pt;}
.y23e{bottom:319.266667pt;}
.y108{bottom:321.160000pt;}
.yf5{bottom:321.320000pt;}
.y19c{bottom:325.186667pt;}
.yaf{bottom:325.346667pt;}
.y1cc{bottom:326.461333pt;}
.y9b{bottom:330.626667pt;}
.y260{bottom:331.266667pt;}
.y2b6{bottom:332.066667pt;}
.yfd{bottom:333.026667pt;}
.y120{bottom:334.946667pt;}
.y23d{bottom:336.066667pt;}
.y1c{bottom:337.026667pt;}
.y147{bottom:337.346667pt;}
.yd3{bottom:337.986667pt;}
.y77{bottom:342.146667pt;}
.yae{bottom:342.306667pt;}
.y219{bottom:344.706667pt;}
.y27f{bottom:345.506667pt;}
.y4a{bottom:345.826667pt;}
.y1e0{bottom:346.301333pt;}
.y29e{bottom:346.466667pt;}
.y16f{bottom:346.560000pt;}
.y23c{bottom:353.026667pt;}
.y19b{bottom:355.266667pt;}
.y146{bottom:355.746667pt;}
.yf4{bottom:357.640000pt;}
.y76{bottom:359.266667pt;}
.y9a{bottom:360.706667pt;}
.y25f{bottom:361.506667pt;}
.y218{bottom:361.666667pt;}
.y2b5{bottom:362.306667pt;}
.y27e{bottom:362.466667pt;}
.y29d{bottom:363.586667pt;}
.y11f{bottom:365.186667pt;}
.y1b{bottom:368.386667pt;}
.yfc{bottom:369.986667pt;}
.yd2{bottom:372.066667pt;}
.y19a{bottom:372.226667pt;}
.y145{bottom:374.146667pt;}
.y75{bottom:376.066667pt;}
.y49{bottom:377.186667pt;}
.y99{bottom:377.666667pt;}
.y217{bottom:378.626667pt;}
.y29c{bottom:380.386667pt;}
.y11e{bottom:382.146667pt;}
.y23b{bottom:382.946667pt;}
.y162{bottom:384.226667pt;}
.y1e7{bottom:384.413333pt;}
.y199{bottom:389.186667pt;}
.y144{bottom:392.546667pt;}
.y74{bottom:393.026667pt;}
.y2b4{bottom:393.666667pt;}
.yf3{bottom:393.986667pt;}
.y48{bottom:394.146667pt;}
.y98{bottom:394.626667pt;}
.y216{bottom:395.426667pt;}
.y29b{bottom:397.346667pt;}
.y161{bottom:398.146667pt;}
.y1a{bottom:398.626667pt;}
.y23a{bottom:400.066667pt;}
.yd1{bottom:403.426667pt;}
.y198{bottom:405.986667pt;}
.y1ae{bottom:406.813333pt;}
.yfb{bottom:406.946667pt;}
.y27d{bottom:409.506667pt;}
.y73{bottom:409.826667pt;}
.y143{bottom:410.946667pt;}
.y47{bottom:411.106667pt;}
.y11d{bottom:412.226667pt;}
.y239{bottom:416.866667pt;}
.y197{bottom:422.946667pt;}
.y97{bottom:424.546667pt;}
.y27c{bottom:426.466667pt;}
.y29a{bottom:427.266667pt;}
.y46{bottom:427.906667pt;}
.y19{bottom:428.706667pt;}
.y215{bottom:429.186667pt;}
.y11c{bottom:429.346667pt;}
.yd0{bottom:433.666667pt;}
.y238{bottom:433.826667pt;}
.y196{bottom:439.746667pt;}
.y72{bottom:439.906667pt;}
.y96{bottom:441.666667pt;}
.y27b{bottom:443.266667pt;}
.yfa{bottom:443.906667pt;}
.y1c8{bottom:444.253333pt;}
.y299{bottom:444.386667pt;}
.y214{bottom:445.986667pt;}
.y11b{bottom:446.146667pt;}
.y142{bottom:447.746667pt;}
.y237{bottom:450.626667pt;}
.y16a{bottom:455.360000pt;}
.y195{bottom:456.546667pt;}
.y71{bottom:456.866667pt;}
.y2b3{bottom:457.506667pt;}
.y45{bottom:457.986667pt;}
.y95{bottom:458.466667pt;}
.y18{bottom:458.946667pt;}
.y27a{bottom:460.066667pt;}
.y298{bottom:461.186667pt;}
.y11a{bottom:462.946667pt;}
.ycf{bottom:463.746667pt;}
.y1de{bottom:464.253333pt;}
.y1d2{bottom:464.893333pt;}
.y141{bottom:466.146667pt;}
.y236{bottom:467.426667pt;}
.y194{bottom:473.506667pt;}
.y70{bottom:473.826667pt;}
.y2b2{bottom:474.626667pt;}
.y17{bottom:476.066667pt;}
.y297{bottom:478.146667pt;}
.y213{bottom:479.746667pt;}
.yce{bottom:480.866667pt;}
.yf9{bottom:481.026667pt;}
.y235{bottom:484.386667pt;}
.y140{bottom:484.546667pt;}
.y44{bottom:488.226667pt;}
.y94{bottom:488.546667pt;}
.y279{bottom:490.146667pt;}
.y6f{bottom:490.626667pt;}
.y2b1{bottom:491.426667pt;}
.y25e{bottom:493.026667pt;}
.y119{bottom:493.506667pt;}
.y212{bottom:496.546667pt;}
.ycd{bottom:497.666667pt;}
.y15f{bottom:499.266667pt;}
.y234{bottom:501.186667pt;}
.y160{bottom:502.626667pt;}
.y13f{bottom:502.946667pt;}
.y193{bottom:503.586667pt;}
.y93{bottom:505.506667pt;}
.y16{bottom:505.986667pt;}
.y278{bottom:507.266667pt;}
.y6e{bottom:507.426667pt;}
.y296{bottom:508.066667pt;}
.y2b0{bottom:508.226667pt;}
.y25d{bottom:509.986667pt;}
.y15e{bottom:513.026667pt;}
.y211{bottom:513.506667pt;}
.ycc{bottom:514.626667pt;}
.yf0{bottom:517.986667pt;}
.y233{bottom:518.146667pt;}
.y43{bottom:518.306667pt;}
.y192{bottom:520.546667pt;}
.y13e{bottom:521.346667pt;}
.y92{bottom:522.466667pt;}
.y277{bottom:524.066667pt;}
.y6d{bottom:524.386667pt;}
.y1e1{bottom:524.573333pt;}
.y118{bottom:525.186667pt;}
.y25c{bottom:526.786667pt;}
.y210{bottom:530.306667pt;}
.y1f7{bottom:533.853333pt;}
.y232{bottom:534.946667pt;}
.y42{bottom:535.426667pt;}
.y15{bottom:536.226667pt;}
.y191{bottom:537.373333pt;}
.y2af{bottom:538.333333pt;}
.y13d{bottom:539.773333pt;}
.y6c{bottom:541.213333pt;}
.y295{bottom:542.013333pt;}
.ycb{bottom:544.573333pt;}
.y20f{bottom:547.293333pt;}
.y117{bottom:548.573333pt;}
.y231{bottom:551.773333pt;}
.y91{bottom:552.413333pt;}
.y14{bottom:553.213333pt;}
.y276{bottom:554.173333pt;}
.y190{bottom:554.333333pt;}
.yed{bottom:554.973333pt;}
.y2ae{bottom:555.293333pt;}
.y25b{bottom:556.893333pt;}
.y6b{bottom:558.173333pt;}
.yca{bottom:561.693333pt;}
.y20e{bottom:564.093333pt;}
.y41{bottom:565.533333pt;}
.y168{bottom:567.520000pt;}
.y230{bottom:568.733333pt;}
.y90{bottom:569.533333pt;}
.y275{bottom:571.133333pt;}
.y294{bottom:572.093333pt;}
.y25a{bottom:573.853333pt;}
.y6a{bottom:574.973333pt;}
.y13c{bottom:576.573333pt;}
.yc9{bottom:578.493333pt;}
.y20d{bottom:580.893333pt;}
.y13{bottom:583.293333pt;}
.y18f{bottom:584.413333pt;}
.y158{bottom:584.640000pt;}
.y2ad{bottom:585.373333pt;}
.y22f{bottom:585.533333pt;}
.y153{bottom:586.560000pt;}
.y1aa{bottom:587.013333pt;}
.y274{bottom:588.093333pt;}
.y293{bottom:589.053333pt;}
.y116{bottom:589.533333pt;}
.y259{bottom:590.813333pt;}
.y69{bottom:591.773333pt;}
.y15d{bottom:594.973333pt;}
.yc8{bottom:595.293333pt;}
.y40{bottom:595.613333pt;}
.y8f{bottom:599.613333pt;}
.y18e{bottom:601.373333pt;}
.y22e{bottom:602.493333pt;}
.y157{bottom:603.133333pt;}
.y13b{bottom:603.933333pt;}
.y1c6{bottom:604.453333pt;}
.yad{bottom:605.053333pt;}
.y258{bottom:607.613333pt;}
.y68{bottom:608.733333pt;}
.y15c{bottom:609.053333pt;}
.y20c{bottom:610.973333pt;}
.yc7{bottom:612.253333pt;}
.y3f{bottom:612.733333pt;}
.y12{bottom:613.533333pt;}
.y8e{bottom:616.573333pt;}
.y156{bottom:616.893333pt;}
.y273{bottom:618.013333pt;}
.y18d{bottom:618.173333pt;}
.y292{bottom:619.133333pt;}
.y22d{bottom:619.293333pt;}
.yac{bottom:622.013333pt;}
.y15b{bottom:622.813333pt;}
.y1ec{bottom:624.293333pt;}
.y257{bottom:624.573333pt;}
.y67{bottom:625.533333pt;}
.y107{bottom:626.493333pt;}
.y20b{bottom:628.093333pt;}
.yc6{bottom:629.053333pt;}
.y3e{bottom:629.533333pt;}
.y11{bottom:630.493333pt;}
.y155{bottom:630.653333pt;}
.yec{bottom:631.133333pt;}
.y18c{bottom:635.133333pt;}
.y291{bottom:636.093333pt;}
.y15a{bottom:636.573333pt;}
.y13a{bottom:638.813333pt;}
.yab{bottom:638.973333pt;}
.y66{bottom:642.493333pt;}
.y20a{bottom:644.893333pt;}
.y3d{bottom:646.493333pt;}
.y8d{bottom:646.653333pt;}
.y22c{bottom:649.373333pt;}
.y18b{bottom:651.933333pt;}
.y256{bottom:655.613333pt;}
.yaa{bottom:655.773333pt;}
.yc5{bottom:659.133333pt;}
.yeb{bottom:659.773333pt;}
.yf{bottom:660.573333pt;}
.y209{bottom:661.693333pt;}
.y3c{bottom:663.293333pt;}
.y115{bottom:663.453333pt;}
.y8c{bottom:663.613333pt;}
.y1a9{bottom:663.653333pt;}
.y1dc{bottom:664.133333pt;}
.y290{bottom:666.173333pt;}
.y2ac{bottom:666.333333pt;}
.y10{bottom:666.653333pt;}
.y65{bottom:672.413333pt;}
.ya9{bottom:672.573333pt;}
.y139{bottom:673.533333pt;}
.yc4{bottom:676.093333pt;}
.y208{bottom:678.653333pt;}
.y22b{bottom:679.613333pt;}
.y3b{bottom:680.093333pt;}
.y8b{bottom:680.413333pt;}
.y18a{bottom:682.013333pt;}
.y28f{bottom:683.293333pt;}
.yea{bottom:688.573333pt;}
.y255{bottom:689.373333pt;}
.y64{bottom:689.533333pt;}
.y166{bottom:690.400000pt;}
.ye{bottom:691.133333pt;}
.y1a8{bottom:692.293333pt;}
.yc3{bottom:693.053333pt;}
.y207{bottom:695.453333pt;}
.y22a{bottom:696.573333pt;}
.y3a{bottom:697.053333pt;}
.y138{bottom:698.493333pt;}
.y272{bottom:698.973333pt;}
.y114{bottom:700.573333pt;}
.ye9{bottom:705.693333pt;}
.y63{bottom:706.333333pt;}
.yc2{bottom:709.853333pt;}
.y8a{bottom:710.493333pt;}
.y206{bottom:712.413333pt;}
.y189{bottom:713.213333pt;}
.y229{bottom:713.373333pt;}
.y39{bottom:713.853333pt;}
.y271{bottom:715.933333pt;}
.y137{bottom:718.333333pt;}
.y254{bottom:719.613333pt;}
.ye8{bottom:722.493333pt;}
.yd{bottom:722.973333pt;}
.y62{bottom:723.293333pt;}
.y228{bottom:730.333333pt;}
.y38{bottom:730.813333pt;}
.y1a6{bottom:732.640000pt;}
.y253{bottom:736.573333pt;}
.y113{bottom:737.533333pt;}
.y136{bottom:738.333333pt;}
.ye7{bottom:739.293333pt;}
.yc1{bottom:739.933333pt;}
.y61{bottom:740.093333pt;}
.y89{bottom:740.733333pt;}
.yc{bottom:741.373333pt;}
.y205{bottom:742.333333pt;}
.y270{bottom:745.853333pt;}
.y188{bottom:746.973333pt;}
.y227{bottom:747.133333pt;}
.y37{bottom:747.613333pt;}
.y252{bottom:753.373333pt;}
.ye6{bottom:756.253333pt;}
.ya8{bottom:756.893333pt;}
.y135{bottom:758.333333pt;}
.y204{bottom:759.453333pt;}
.y2ab{bottom:760.253333pt;}
.y26f{bottom:762.973333pt;}
.y28e{bottom:764.093333pt;}
.y36{bottom:764.413333pt;}
.y60{bottom:770.173333pt;}
.y251{bottom:770.333333pt;}
.y88{bottom:770.973333pt;}
.ye5{bottom:773.053333pt;}
.yb{bottom:773.693333pt;}
.ya7{bottom:773.893333pt;}
.y112{bottom:774.533333pt;}
.y203{bottom:776.293333pt;}
.y187{bottom:777.253333pt;}
.y2aa{bottom:777.413333pt;}
.y134{bottom:779.013333pt;}
.y35{bottom:781.413333pt;}
.y5f{bottom:787.173333pt;}
.y87{bottom:787.973333pt;}
.yc0{bottom:790.693333pt;}
.y26e{bottom:793.093333pt;}
.y202{bottom:793.253333pt;}
.y28d{bottom:794.053333pt;}
.y226{bottom:794.213333pt;}
.ya{bottom:795.173333pt;}
.y34{bottom:798.213333pt;}
.ye4{bottom:803.653333pt;}
.ya6{bottom:803.973333pt;}
.y5e{bottom:804.133333pt;}
.y186{bottom:807.493333pt;}
.ybf{bottom:807.653333pt;}
.y133{bottom:808.933333pt;}
.y201{bottom:810.053333pt;}
.y225{bottom:811.173333pt;}
.y111{bottom:811.493333pt;}
.y9{bottom:816.773333pt;}
.y250{bottom:817.253333pt;}
.y86{bottom:818.053333pt;}
.y5d{bottom:820.933333pt;}
.y2a9{bottom:824.293333pt;}
.ybe{bottom:824.453333pt;}
.y132{bottom:826.053333pt;}
.y200{bottom:826.853333pt;}
.y224{bottom:827.973333pt;}
.y33{bottom:828.773333pt;}
.y24f{bottom:834.213333pt;}
.ye3{bottom:834.853333pt;}
.y185{bottom:837.573333pt;}
.y5c{bottom:837.733333pt;}
.y8{bottom:838.213333pt;}
.ybd{bottom:841.253333pt;}
.y131{bottom:842.853333pt;}
.y1ff{bottom:843.813333pt;}
.y85{bottom:848.293333pt;}
.y110{bottom:848.613333pt;}
.y24e{bottom:851.173333pt;}
.y5b{bottom:854.693333pt;}
.y26d{bottom:856.933333pt;}
.y223{bottom:858.053333pt;}
.ybc{bottom:858.213333pt;}
.y130{bottom:859.813333pt;}
.y32{bottom:860.453333pt;}
.y1fe{bottom:860.613333pt;}
.ye2{bottom:865.093333pt;}
.y24d{bottom:867.973333pt;}
.y5a{bottom:871.493333pt;}
.y7{bottom:872.933333pt;}
.y26c{bottom:874.053333pt;}
.y28c{bottom:875.013333pt;}
.y12f{bottom:876.613333pt;}
.y1fd{bottom:877.573333pt;}
.y84{bottom:878.373333pt;}
.y24c{bottom:884.933333pt;}
.y10f{bottom:885.573333pt;}
.ybb{bottom:888.293333pt;}
.y59{bottom:888.453333pt;}
.y26b{bottom:890.853333pt;}
.y31{bottom:891.813333pt;}
.y12e{bottom:893.413333pt;}
.ye1{bottom:895.333333pt;}
.y184{bottom:901.573333pt;}
.y24b{bottom:901.733333pt;}
.y28b{bottom:905.093333pt;}
.y58{bottom:905.253333pt;}
.y1fc{bottom:907.493333pt;}
.y6{bottom:907.813333pt;}
.y83{bottom:908.613333pt;}
.y30{bottom:908.773333pt;}
.y12d{bottom:910.373333pt;}
.y183{bottom:918.533333pt;}
.y26a{bottom:920.933333pt;}
.ya5{bottom:922.053333pt;}
.y10e{bottom:922.533333pt;}
.ye0{bottom:925.413333pt;}
.y57{bottom:935.333333pt;}
.y182{bottom:935.493333pt;}
.y1fb{bottom:937.733333pt;}
.y269{bottom:937.893333pt;}
.y5{bottom:938.533333pt;}
.y2f{bottom:938.853333pt;}
.ya4{bottom:939.013333pt;}
.y12c{bottom:940.453333pt;}
.y2a8{bottom:952.133333pt;}
.y56{bottom:952.293333pt;}
.y1fa{bottom:954.853333pt;}
.ydf{bottom:955.653333pt;}
.y82{bottom:955.813333pt;}
.y12b{bottom:957.413333pt;}
.y10d{bottom:959.493333pt;}
.y2e{bottom:969.093333pt;}
.y55{bottom:969.253333pt;}
.y1f9{bottom:984.773333pt;}
.y81{bottom:985.893333pt;}
.y2d{bottom:986.053333pt;}
.y12a{bottom:987.493333pt;}
.y106{bottom:996.613333pt;}
.y2c{bottom:1002.853333pt;}
.y1f8{bottom:1016.160000pt;}
.y129{bottom:1018.720000pt;}
.y2b{bottom:1019.840000pt;}
.y1{bottom:1061.440000pt;}
.h17{height:13.920000pt;}
.h16{height:30.240000pt;}
.h6{height:33.918750pt;}
.he{height:36.320000pt;}
.hc{height:36.352000pt;}
.h10{height:36.480000pt;}
.hf{height:36.512000pt;}
.h5{height:38.715000pt;}
.h33{height:39.840000pt;}
.h2a{height:40.000000pt;}
.h12{height:44.722500pt;}
.h26{height:47.621250pt;}
.h11{height:50.062500pt;}
.h7{height:52.134375pt;}
.h1d{height:52.641250pt;}
.h8{height:52.813750pt;}
.h21{height:53.535000pt;}
.ha{height:55.402500pt;}
.hb{height:59.360000pt;}
.h20{height:59.680000pt;}
.h30{height:59.840000pt;}
.h2{height:61.410000pt;}
.h9{height:62.726250pt;}
.h4{height:66.750000pt;}
.h3{height:78.097500pt;}
.h1a{height:79.040000pt;}
.h31{height:79.840000pt;}
.h13{height:83.360000pt;}
.h14{height:85.280000pt;}
.h1b{height:89.760000pt;}
.h19{height:89.920000pt;}
.h24{height:99.680000pt;}
.h18{height:105.760000pt;}
.h15{height:118.542500pt;}
.h2e{height:139.520000pt;}
.h25{height:159.546667pt;}
.h22{height:179.386667pt;}
.h2d{height:179.546667pt;}
.h2b{height:199.226667pt;}
.h29{height:199.386667pt;}
.h1c{height:211.226667pt;}
.h2f{height:219.266667pt;}
.h28{height:239.226667pt;}
.h23{height:299.106667pt;}
.h32{height:318.946667pt;}
.h27{height:338.946667pt;}
.h2c{height:358.786667pt;}
.hd{height:406.466667pt;}
.h1e{height:793.760000pt;}
.h1f{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:14.080000pt;}
.wc{width:14.240000pt;}
.w11{width:45.152000pt;}
.w13{width:68.800000pt;}
.w15{width:75.520000pt;}
.w14{width:75.712000pt;}
.w5{width:92.672000pt;}
.w18{width:94.400000pt;}
.w17{width:94.592000pt;}
.w16{width:113.440000pt;}
.w12{width:122.080000pt;}
.w6{width:122.912000pt;}
.w4{width:188.826667pt;}
.w8{width:196.960000pt;}
.wd{width:237.666667pt;}
.w9{width:245.120000pt;}
.w19{width:245.786667pt;}
.w7{width:281.506667pt;}
.wa{width:506.080000pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w10{width:1122.559983pt;}
.we{width:1122.560000pt;}
.wf{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x1d{left:9.626667pt;}
.x3b{left:10.720000pt;}
.x29{left:11.648000pt;}
.x42{left:12.960000pt;}
.x40{left:14.400000pt;}
.x37{left:16.160000pt;}
.x1a{left:18.080000pt;}
.x3a{left:20.320000pt;}
.x35{left:22.560000pt;}
.x3e{left:23.866667pt;}
.x2b{left:25.184000pt;}
.x2f{left:28.506667pt;}
.x19{left:30.400000pt;}
.x43{left:33.600000pt;}
.x25{left:36.186667pt;}
.x18{left:46.266667pt;}
.x38{left:50.920000pt;}
.x30{left:55.066667pt;}
.x31{left:60.026667pt;}
.x1{left:75.519988pt;}
.x11{left:79.871988pt;}
.x8{left:81.151988pt;}
.x28{left:84.480000pt;}
.x2a{left:85.600000pt;}
.x2d{left:86.560000pt;}
.x2c{left:88.800000pt;}
.x2{left:101.951988pt;}
.x5{left:105.471988pt;}
.x27{left:106.426667pt;}
.x6{left:112.511988pt;}
.x33{left:120.672000pt;}
.x9{left:122.111988pt;}
.x1b{left:125.951988pt;}
.x26{left:128.000000pt;}
.x46{left:132.991988pt;}
.x23{left:134.106655pt;}
.x1e{left:136.186655pt;}
.x22{left:139.066655pt;}
.x1c{left:149.946655pt;}
.x24{left:160.506655pt;}
.x1f{left:181.626655pt;}
.x14{left:194.746667pt;}
.xd{left:224.826655pt;}
.x45{left:227.706655pt;}
.x7{left:229.786655pt;}
.x34{left:242.746667pt;}
.xe{left:276.546655pt;}
.x44{left:280.706655pt;}
.x10{left:293.986655pt;}
.x36{left:311.546667pt;}
.xa{left:318.786655pt;}
.x12{left:340.226655pt;}
.x32{left:346.466655pt;}
.x13{left:363.586655pt;}
.x16{left:383.586667pt;}
.x20{left:386.240000pt;}
.x39{left:387.266667pt;}
.x2e{left:389.666667pt;}
.x4{left:396.866655pt;}
.xf{left:409.986655pt;}
.x48{left:418.013322pt;}
.x21{left:441.533322pt;}
.x47{left:461.373322pt;}
.x3c{left:462.786667pt;}
.xb{left:469.693310pt;}
.xc{left:474.813322pt;}
.x17{left:476.253333pt;}
.x3{left:506.813322pt;}
.x3d{left:576.226667pt;}
.x3f{left:670.813333pt;}
.x41{left:765.213333pt;}
}




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