
    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_403fcafea32dbd271afdd20b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bbc8126f96276c60db3e6d1e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_ad4eef650069597f3ddec872.woff2')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_ff445e293ec6fa233a880d6f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6109c728aaa2659af160491e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_456bfb93a7f3b68fecf61780.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.766602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.462000px;}
.ls16{letter-spacing:-0.372000px;}
.ls17{letter-spacing:-0.150000px;}
.ls1{letter-spacing:-0.132000px;}
.ls14{letter-spacing:-0.114000px;}
.ls9{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.060000px;}
.ls19{letter-spacing:0.084000px;}
.ls5{letter-spacing:0.132000px;}
.lsd{letter-spacing:0.204000px;}
.ls10{letter-spacing:0.276000px;}
.lsc{letter-spacing:0.312000px;}
.ls8{letter-spacing:0.336000px;}
.ls18{letter-spacing:0.378000px;}
.ls13{letter-spacing:0.390000px;}
.lse{letter-spacing:0.618000px;}
.ls11{letter-spacing:0.624000px;}
.ls3{letter-spacing:0.636000px;}
.ls12{letter-spacing:0.684000px;}
.ls15{letter-spacing:0.804000px;}
.ls6{letter-spacing:1.350000px;}
.lsb{letter-spacing:28.152000px;}
.ls4{letter-spacing:49.152000px;}
.lsf{letter-spacing:50.832000px;}
.lsa{letter-spacing:849.534000px;}
.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;}
}
.ws4{word-spacing:-16.272000px;}
.ws5{word-spacing:-16.224000px;}
.ws8{word-spacing:-15.306000px;}
.wsc{word-spacing:-15.294000px;}
.ws3{word-spacing:-14.916000px;}
.wsa{word-spacing:-14.802000px;}
.ws1{word-spacing:-14.784000px;}
.wsb{word-spacing:-14.766000px;}
.ws9{word-spacing:-14.544000px;}
.ws2{word-spacing:-14.454000px;}
.ws7{word-spacing:-12.882000px;}
.ws6{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
._5{margin-left:-12.738000px;}
._b{margin-left:-11.682000px;}
._8{margin-left:-10.458000px;}
._7{margin-left:-8.772000px;}
._9{margin-left:-7.338000px;}
._6{margin-left:-6.102000px;}
._a{margin-left:-3.414000px;}
._0{margin-left:-1.680000px;}
._1{width:1.008000px;}
._2{width:2.340000px;}
._d{width:3.450000px;}
._f{width:4.608000px;}
._12{width:6.066000px;}
._1a{width:8.244000px;}
._19{width:9.402000px;}
._1b{width:10.992000px;}
._e{width:12.870000px;}
._c{width:18.150000px;}
._13{width:20.160000px;}
._14{width:21.288000px;}
._17{width:22.338000px;}
._18{width:24.048000px;}
._11{width:27.882000px;}
._10{width:29.238000px;}
._15{width:40.194000px;}
._16{width:41.250000px;}
._4{width:109.620000px;}
._3{width:201.234000px;}
._1d{width:848.178000px;}
._1e{width:849.534000px;}
._1c{width:851.682000px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(46,117,181);}
.fc3{color:transparent;}
.fc6{color:rgb(30,77,120);}
.fc1{color:rgb(31,78,121);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs9{font-size:39.000000px;}
.fsa{font-size:48.000000px;}
.fs7{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.fs1{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.y2c7{bottom:0.015000px;}
.y17{bottom:4.500000px;}
.y10c{bottom:4.860000px;}
.y65{bottom:4.875000px;}
.y6b{bottom:4.890000px;}
.y9d{bottom:4.905000px;}
.ybc{bottom:4.920000px;}
.ya6{bottom:5.625000px;}
.y63{bottom:6.000000px;}
.yf2{bottom:7.110000px;}
.ybe{bottom:7.125000px;}
.y110{bottom:7.155000px;}
.y7a{bottom:7.170000px;}
.y92{bottom:7.485000px;}
.y6f{bottom:7.500000px;}
.yf8{bottom:7.545000px;}
.y81{bottom:8.250000px;}
.yea{bottom:8.625000px;}
.y2bc{bottom:9.750000px;}
.y24f{bottom:10.515000px;}
.y10{bottom:12.375000px;}
.y122{bottom:13.500000px;}
.y69{bottom:14.235000px;}
.y8e{bottom:14.250000px;}
.y13a{bottom:14.265000px;}
.ya9{bottom:14.280000px;}
.y1b8{bottom:14.295000px;}
.yed{bottom:14.625000px;}
.y173{bottom:14.632500px;}
.y197{bottom:14.655000px;}
.y2c6{bottom:14.670000px;}
.y227{bottom:16.500000px;}
.y189{bottom:28.125000px;}
.y130{bottom:28.155000px;}
.y13{bottom:28.500000px;}
.y24e{bottom:29.295000px;}
.yaf{bottom:30.360000px;}
.ye0{bottom:30.375000px;}
.yc7{bottom:30.405000px;}
.y79{bottom:30.420000px;}
.yf1{bottom:30.735000px;}
.y15d{bottom:30.742500px;}
.y9b{bottom:30.750000px;}
.y128{bottom:30.757500px;}
.y19f{bottom:30.765000px;}
.y6e{bottom:30.780000px;}
.y86{bottom:30.795000px;}
.y22f{bottom:31.110000px;}
.y14e{bottom:31.125000px;}
.y1eb{bottom:31.132500px;}
.y80{bottom:31.905000px;}
.yba{bottom:32.250000px;}
.ye9{bottom:32.625000px;}
.y9f{bottom:33.000000px;}
.y2e2{bottom:33.030000px;}
.y1ad{bottom:34.125000px;}
.y160{bottom:34.155000px;}
.y1dc{bottom:36.375000px;}
.y121{bottom:36.405000px;}
.y26a{bottom:36.750000px;}
.y68{bottom:38.235000px;}
.y285{bottom:38.242500px;}
.ydd{bottom:38.280000px;}
.y1b7{bottom:38.295000px;}
.y1f9{bottom:38.617500px;}
.y8d{bottom:38.625000px;}
.y213{bottom:38.632500px;}
.y136{bottom:38.655000px;}
.y172{bottom:38.662500px;}
.y166{bottom:38.670000px;}
.y1c4{bottom:40.125000px;}
.y226{bottom:40.530000px;}
.y16f{bottom:44.625000px;}
.y190{bottom:44.655000px;}
.yb6{bottom:45.030000px;}
.y12{bottom:45.787500px;}
.y138{bottom:47.670000px;}
.y2b7{bottom:53.617500px;}
.y9a{bottom:53.625000px;}
.y1ed{bottom:53.655000px;}
.y275{bottom:53.670000px;}
.yff{bottom:53.985000px;}
.yd7{bottom:54.000000px;}
.y91{bottom:54.030000px;}
.y127{bottom:54.037500px;}
.y78{bottom:54.045000px;}
.y19b{bottom:54.375000px;}
.y1ea{bottom:54.382500px;}
.y6d{bottom:54.405000px;}
.y205{bottom:54.412500px;}
.y85{bottom:54.420000px;}
.y7f{bottom:55.530000px;}
.ye8{bottom:56.625000px;}
.yb9{bottom:57.000000px;}
.y14{bottom:57.037500px;}
.y120{bottom:59.655000px;}
.y269{bottom:60.030000px;}
.y1db{bottom:60.045000px;}
.y37{bottom:60.412500px;}
.y67{bottom:62.610000px;}
.y256{bottom:62.625000px;}
.y13d{bottom:62.655000px;}
.y1f8{bottom:62.662500px;}
.y1b6{bottom:62.670000px;}
.y168{bottom:63.000000px;}
.y258{bottom:63.030000px;}
.y11{bottom:63.037500px;}
.y2a9{bottom:66.045000px;}
.y175{bottom:68.655000px;}
.y20b{bottom:68.670000px;}
.yb5{bottom:69.030000px;}
.y16e{bottom:69.045000px;}
.y15a{bottom:76.875000px;}
.yc6{bottom:76.905000px;}
.y2b6{bottom:76.912500px;}
.y146{bottom:76.920000px;}
.y99{bottom:77.250000px;}
.yae{bottom:77.280000px;}
.y126{bottom:77.287500px;}
.y77{bottom:77.295000px;}
.yfb{bottom:77.625000px;}
.y10f{bottom:77.655000px;}
.y204{bottom:77.662500px;}
.ya2{bottom:77.670000px;}
.y1fd{bottom:78.000000px;}
.y84{bottom:78.045000px;}
.y295{bottom:78.375000px;}
.y7e{bottom:78.405000px;}
.y36{bottom:80.662500px;}
.ye7{bottom:81.030000px;}
.y11f{bottom:82.905000px;}
.y1da{bottom:83.295000px;}
.y1b5{bottom:86.670000px;}
.y268{bottom:89.280000px;}
.y2a8{bottom:89.295000px;}
.y18f{bottom:93.030000px;}
.y16d{bottom:93.045000px;}
.yb4{bottom:99.780000px;}
.y17d{bottom:100.125000px;}
.y12a{bottom:100.155000px;}
.y125{bottom:100.162500px;}
.y159{bottom:100.170000px;}
.y98{bottom:100.500000px;}
.yad{bottom:100.530000px;}
.y76{bottom:100.545000px;}
.y19e{bottom:100.875000px;}
.y10e{bottom:100.905000px;}
.y1e9{bottom:100.912500px;}
.y26d{bottom:100.920000px;}
.y14d{bottom:101.280000px;}
.y7d{bottom:102.030000px;}
.y2e9{bottom:102.780000px;}
.ye6{bottom:104.655000px;}
.y11e{bottom:105.780000px;}
.y1d9{bottom:106.545000px;}
.y208{bottom:111.412500px;}
.y267{bottom:112.530000px;}
.y2a7{bottom:112.545000px;}
.y286{bottom:113.287500px;}
.y25d{bottom:115.162500px;}
.y2ad{bottom:115.537500px;}
.y1fa{bottom:115.912500px;}
.y2d7{bottom:117.045000px;}
.y2c5{bottom:117.420000px;}
.y1e0{bottom:118.912500px;}
.y2dd{bottom:122.287500px;}
.yd4{bottom:123.405000px;}
.y2b5{bottom:123.412500px;}
.y97{bottom:123.420000px;}
.yb3{bottom:123.780000px;}
.y1a7{bottom:123.795000px;}
.yac{bottom:124.155000px;}
.y1e8{bottom:124.162500px;}
.y75{bottom:124.170000px;}
.y14c{bottom:124.530000px;}
.y15c{bottom:124.912500px;}
.y241{bottom:126.412500px;}
.y1f6{bottom:126.787500px;}
.ye5{bottom:127.530000px;}
.y124{bottom:128.662500px;}
.y11d{bottom:129.405000px;}
.y27c{bottom:129.787500px;}
.y1d8{bottom:129.795000px;}
.y284{bottom:130.537500px;}
.y251{bottom:131.662500px;}
.y276{bottom:132.037500px;}
.y1f2{bottom:132.412500px;}
.y1f7{bottom:133.162500px;}
.y162{bottom:135.412500px;}
.y2a6{bottom:135.420000px;}
.y266{bottom:135.780000px;}
.y171{bottom:136.162500px;}
.y5d{bottom:136.912500px;}
.y2ce{bottom:146.295000px;}
.y158{bottom:146.655000px;}
.y2b4{bottom:146.662500px;}
.y1c1{bottom:146.670000px;}
.yd3{bottom:146.700000px;}
.y17c{bottom:147.030000px;}
.y1e7{bottom:147.037500px;}
.y96{bottom:147.045000px;}
.y74{bottom:147.075000px;}
.y1fb{bottom:147.405000px;}
.y24a{bottom:147.420000px;}
.yf7{bottom:147.450000px;}
.y14b{bottom:147.780000px;}
.y2c8{bottom:150.045000px;}
.y2d1{bottom:150.405000px;}
.ye4{bottom:151.155000px;}
.y11c{bottom:152.700000px;}
.y132{bottom:153.405000px;}
.y1d7{bottom:153.420000px;}
.yb2{bottom:154.185000px;}
.y26f{bottom:154.905000px;}
.y139{bottom:155.655000px;}
.y25a{bottom:155.662500px;}
.y2dc{bottom:156.045000px;}
.y281{bottom:157.537500px;}
.y193{bottom:157.950000px;}
.y5c{bottom:158.280000px;}
.y2a5{bottom:159.045000px;}
.y265{bottom:165.030000px;}
.y212{bottom:166.530000px;}
.y2c4{bottom:167.280000px;}
.y157{bottom:169.905000px;}
.y2b3{bottom:169.912500px;}
.y1a6{bottom:169.920000px;}
.yd2{bottom:169.950000px;}
.y95{bottom:170.280000px;}
.y1e6{bottom:170.287500px;}
.y202{bottom:170.295000px;}
.y73{bottom:170.700000px;}
.y14a{bottom:171.030000px;}
.y249{bottom:171.045000px;}
.y2d3{bottom:172.530000px;}
.y2d0{bottom:172.905000px;}
.ye3{bottom:174.030000px;}
.y11b{bottom:175.950000px;}
.y1d6{bottom:176.325000px;}
.yb1{bottom:178.560000px;}
.y1b3{bottom:181.950000px;}
.y2a4{bottom:182.325000px;}
.y25c{bottom:187.575000px;}
.y228{bottom:187.920000px;}
.y264{bottom:188.310000px;}
.y170{bottom:191.325000px;}
.y5b{bottom:192.075000px;}
.y184{bottom:193.155000px;}
.y156{bottom:193.170000px;}
.yd1{bottom:193.200000px;}
.y2b2{bottom:193.207500px;}
.y1a5{bottom:193.545000px;}
.y1e5{bottom:193.582500px;}
.y288{bottom:193.905000px;}
.y72{bottom:193.950000px;}
.y149{bottom:194.685000px;}
.y15b{bottom:195.825000px;}
.y240{bottom:197.325000px;}
.y11a{bottom:198.825000px;}
.ydb{bottom:199.200000px;}
.y1d5{bottom:199.950000px;}
.y2a3{bottom:205.200000px;}
.y283{bottom:209.700000px;}
.y263{bottom:211.935000px;}
.y5a{bottom:213.825000px;}
.yd0{bottom:216.075000px;}
.y274{bottom:216.090000px;}
.y247{bottom:216.405000px;}
.y183{bottom:216.450000px;}
.y2b1{bottom:216.457500px;}
.y2ca{bottom:216.780000px;}
.y1a4{bottom:216.795000px;}
.y1e4{bottom:217.207500px;}
.y137{bottom:217.575000px;}
.y152{bottom:218.700000px;}
.y203{bottom:219.450000px;}
.y230{bottom:220.200000px;}
.y2cf{bottom:220.575000px;}
.y292{bottom:220.935000px;}
.y133{bottom:221.325000px;}
.y211{bottom:221.700000px;}
.y119{bottom:222.450000px;}
.y1d4{bottom:223.575000px;}
.y35{bottom:226.950000px;}
.y2db{bottom:227.700000px;}
.y2a2{bottom:228.825000px;}
.y262{bottom:235.185000px;}
.yda{bottom:235.200000px;}
.y59{bottom:235.575000px;}
.y1ca{bottom:236.325000px;}
.y2c1{bottom:236.715000px;}
.y2b0{bottom:239.317500px;}
.ycf{bottom:239.325000px;}
.y155{bottom:239.700000px;}
.y273{bottom:239.715000px;}
.y201{bottom:240.075000px;}
.y1e3{bottom:240.082500px;}
.y282{bottom:241.950000px;}
.y1ff{bottom:242.325000px;}
.y187{bottom:242.700000px;}
.y2cd{bottom:243.450000px;}
.y25b{bottom:244.200000px;}
.y1f3{bottom:245.332500px;}
.y118{bottom:245.700000px;}
.y16c{bottom:246.450000px;}
.y2a1{bottom:252.075000px;}
.y88{bottom:252.825000px;}
.yd9{bottom:253.200000px;}
.y34{bottom:256.200000px;}
.y261{bottom:258.060000px;}
.y2d8{bottom:260.745000px;}
.y2af{bottom:262.567500px;}
.y182{bottom:262.575000px;}
.yce{bottom:262.950000px;}
.y272{bottom:262.965000px;}
.y1e2{bottom:263.317500px;}
.y23f{bottom:263.325000px;}
.y186{bottom:265.200000px;}
.y220{bottom:267.450000px;}
.y16a{bottom:267.457500px;}
.y117{bottom:268.575000px;}
.y1d3{bottom:270.075000px;}
.y135{bottom:272.700000px;}
.y58{bottom:273.825000px;}
.y2a0{bottom:275.325000px;}
.y1f5{bottom:275.700000px;}
.y87{bottom:276.450000px;}
.y2e6{bottom:276.480000px;}
.y210{bottom:276.825000px;}
.y28e{bottom:281.325000px;}
.y33{bottom:285.450000px;}
.y2ae{bottom:285.832500px;}
.y2c9{bottom:286.185000px;}
.y154{bottom:286.200000px;}
.ycd{bottom:286.230000px;}
.y271{bottom:286.245000px;}
.y1e1{bottom:286.582500px;}
.y21f{bottom:290.325000px;}
.y116{bottom:292.230000px;}
.y1d2{bottom:293.325000px;}
.y83{bottom:294.450000px;}
.y57{bottom:297.075000px;}
.y29f{bottom:298.200000px;}
.y259{bottom:299.325000px;}
.yd8{bottom:300.825000px;}
.y2c3{bottom:301.200000px;}
.y280{bottom:303.870000px;}
.y1c3{bottom:305.370000px;}
.y2da{bottom:307.245000px;}
.y153{bottom:309.075000px;}
.y270{bottom:309.120000px;}
.y200{bottom:309.450000px;}
.ycc{bottom:309.480000px;}
.y23e{bottom:309.825000px;}
.y1ab{bottom:311.370000px;}
.y28d{bottom:312.120000px;}
.y32{bottom:314.730000px;}
.y115{bottom:315.480000px;}
.y1d1{bottom:316.980000px;}
.y1b0{bottom:318.105000px;}
.y56{bottom:320.370000px;}
.y29e{bottom:321.855000px;}
.yd6{bottom:323.370000px;}
.y134{bottom:329.370000px;}
.y2be{bottom:330.870000px;}
.y246{bottom:332.325000px;}
.y1f4{bottom:332.370000px;}
.ycb{bottom:332.730000px;}
.y23d{bottom:333.075000px;}
.y28c{bottom:334.995000px;}
.y1aa{bottom:336.120000px;}
.y185{bottom:336.495000px;}
.y21e{bottom:337.995000px;}
.y114{bottom:338.730000px;}
.y55{bottom:343.620000px;}
.y31{bottom:343.995000px;}
.y29d{bottom:345.120000px;}
.y20d{bottom:346.612500px;}
.y1c7{bottom:354.855000px;}
.y27d{bottom:355.237500px;}
.y245{bottom:355.575000px;}
.y20f{bottom:355.995000px;}
.yca{bottom:356.355000px;}
.y23c{bottom:356.370000px;}
.y16b{bottom:357.495000px;}
.y2c2{bottom:357.870000px;}
.y1a9{bottom:358.995000px;}
.y181{bottom:359.370000px;}
.y21d{bottom:360.495000px;}
.y113{bottom:361.980000px;}
.y29c{bottom:367.980000px;}
.y30{bottom:373.245000px;}
.y199{bottom:375.870000px;}
.y54{bottom:377.745000px;}
.y257{bottom:378.495000px;}
.y244{bottom:378.855000px;}
.y23b{bottom:379.620000px;}
.y2e3{bottom:380.745000px;}
.y27f{bottom:383.370000px;}
.yfd{bottom:384.855000px;}
.y123{bottom:385.995000px;}
.y224{bottom:387.495000px;}
.y2d9{bottom:387.870000px;}
.y82{bottom:389.370000px;}
.y131{bottom:391.245000px;}
.y18c{bottom:392.385000px;}
.yd5{bottom:394.245000px;}
.y22d{bottom:397.620000px;}
.y243{bottom:401.730000px;}
.y2f{bottom:402.495000px;}
.y23a{bottom:402.870000px;}
.y2e1{bottom:403.620000px;}
.y2ec{bottom:408.120000px;}
.y112{bottom:408.870000px;}
.y198{bottom:411.120000px;}
.y53{bottom:411.495000px;}
.y7c{bottom:411.870000px;}
.y20e{bottom:412.620000px;}
.y12e{bottom:413.745000px;}
.y207{bottom:414.480000px;}
.y1cf{bottom:415.995000px;}
.yc9{bottom:417.120000px;}
.y2ac{bottom:418.245000px;}
.y169{bottom:419.370000px;}
.y2c0{bottom:419.745000px;}
.yfc{bottom:420.870000px;}
.y1df{bottom:422.370000px;}
.y2e5{bottom:424.620000px;}
.y2eb{bottom:425.370000px;}
.y239{bottom:426.120000px;}
.y18b{bottom:427.620000px;}
.y196{bottom:428.370000px;}
.y28b{bottom:428.745000px;}
.y1a8{bottom:430.245000px;}
.y22c{bottom:431.400000px;}
.y2e{bottom:431.775000px;}
.y52{bottom:433.275000px;}
.y2bb{bottom:438.525000px;}
.yfa{bottom:438.900000px;}
.y27e{bottom:440.025000px;}
.y1f1{bottom:440.760000px;}
.y2ab{bottom:440.775000px;}
.y15f{bottom:444.885000px;}
.y1de{bottom:444.900000px;}
.y223{bottom:447.900000px;}
.y24c{bottom:449.025000px;}
.y238{bottom:449.370000px;}
.y1ce{bottom:449.775000px;}
.y167{bottom:450.150000px;}
.y28a{bottom:451.650000px;}
.y2bf{bottom:452.025000px;}
.y1a3{bottom:452.775000px;}
.y1c2{bottom:453.525000px;}
.y51{bottom:455.025000px;}
.yc0{bottom:457.650000px;}
.y255{bottom:458.025000px;}
.y2d{bottom:461.025000px;}
.y1c6{bottom:466.275000px;}
.y12f{bottom:468.135000px;}
.y237{bottom:472.650000px;}
.y20c{bottom:474.525000px;}
.y1bb{bottom:474.900000px;}
.y1c0{bottom:476.025000px;}
.y2cc{bottom:476.400000px;}
.ya4{bottom:477.150000px;}
.y50{bottom:479.400000px;}
.y24b{bottom:480.150000px;}
.y26e{bottom:480.900000px;}
.y2ea{bottom:482.025000px;}
.y195{bottom:483.525000px;}
.y2aa{bottom:488.775000px;}
.y2c{bottom:490.275000px;}
.y1dd{bottom:492.525000px;}
.ybf{bottom:493.275000px;}
.y236{bottom:496.275000px;}
.y163{bottom:496.282500px;}
.y27a{bottom:497.400000px;}
.y2cb{bottom:499.275000px;}
.ya3{bottom:500.775000px;}
.y27b{bottom:501.525000px;}
.y22b{bottom:503.025000px;}
.y26c{bottom:503.775000px;}
.y252{bottom:504.157500px;}
.y2d6{bottom:504.900000px;}
.yef{bottom:506.775000px;}
.y1ba{bottom:508.650000px;}
.ybd{bottom:511.275000px;}
.y2d4{bottom:512.790000px;}
.y2bd{bottom:513.900000px;}
.y1d0{bottom:515.400000px;}
.ya1{bottom:518.775000px;}
.y235{bottom:519.150000px;}
.y2b{bottom:519.525000px;}
.y1cd{bottom:521.400000px;}
.y279{bottom:524.400000px;}
.y1af{bottom:525.150000px;}
.y1b9{bottom:525.900000px;}
.y4f{bottom:526.275000px;}
.y165{bottom:529.650000px;}
.y7b{bottom:530.775000px;}
.yf9{bottom:533.400000px;}
.y22a{bottom:533.775000px;}
.y2ba{bottom:536.775000px;}
.y254{bottom:537.150000px;}
.y194{bottom:540.150000px;}
.yee{bottom:542.400000px;}
.y2e8{bottom:543.900000px;}
.y151{bottom:544.650000px;}
.y4e{bottom:548.025000px;}
.y2a{bottom:548.775000px;}
.y209{bottom:550.282500px;}
.y299{bottom:551.400000px;}
.y1cc{bottom:552.525000px;}
.y71{bottom:553.650000px;}
.yf6{bottom:555.900000px;}
.y1b4{bottom:557.025000px;}
.ybb{bottom:558.900000px;}
.yec{bottom:560.445000px;}
.y234{bottom:565.650000px;}
.y150{bottom:567.570000px;}
.y1fe{bottom:568.695000px;}
.y4d{bottom:569.820000px;}
.y21c{bottom:570.570000px;}
.y29{bottom:578.070000px;}
.yb8{bottom:581.820000px;}
.y298{bottom:585.195000px;}
.y164{bottom:586.320000px;}
.y107{bottom:588.570000px;}
.y233{bottom:588.900000px;}
.y229{bottom:590.445000px;}
.y1fc{bottom:591.195000px;}
.yeb{bottom:591.945000px;}
.y21b{bottom:593.070000px;}
.y253{bottom:593.820000px;}
.y2e7{bottom:599.070000px;}
.y291{bottom:601.695000px;}
.y192{bottom:602.070000px;}
.y297{bottom:602.445000px;}
.y28{bottom:607.320000px;}
.y4c{bottom:608.070000px;}
.y232{bottom:612.180000px;}
.ya0{bottom:613.320000px;}
.ye2{bottom:614.445000px;}
.y14f{bottom:615.195000px;}
.y20a{bottom:616.320000px;}
.y26b{bottom:621.570000px;}
.y106{bottom:624.570000px;}
.y4b{bottom:631.320000px;}
.y191{bottom:632.820000px;}
.y296{bottom:634.695000px;}
.y231{bottom:635.445000px;}
.y9e{bottom:636.195000px;}
.y27{bottom:636.570000px;}
.y148{bottom:637.695000px;}
.y180{bottom:638.820000px;}
.y2e0{bottom:639.195000px;}
.y2d5{bottom:639.945000px;}
.y105{bottom:642.570000px;}
.y260{bottom:644.070000px;}
.y250{bottom:645.945000px;}
.y161{bottom:648.195000px;}
.y225{bottom:652.320000px;}
.y4a{bottom:654.945000px;}
.yb7{bottom:655.695000px;}
.y1cb{bottom:657.195000px;}
.y17f{bottom:661.695000px;}
.y18e{bottom:663.945000px;}
.y26{bottom:665.820000px;}
.y24d{bottom:668.430000px;}
.y15e{bottom:670.695000px;}
.y104{bottom:673.695000px;}
.y49{bottom:678.195000px;}
.y289{bottom:685.695000px;}
.y9c{bottom:686.070000px;}
.y17e{bottom:686.820000px;}
.y21a{bottom:687.945000px;}
.y248{bottom:690.975000px;}
.y25{bottom:695.100000px;}
.y103{bottom:696.225000px;}
.y294{bottom:696.600000px;}
.y206{bottom:701.100000px;}
.y48{bottom:701.850000px;}
.y287{bottom:708.225000px;}
.y94{bottom:708.600000px;}
.y1a2{bottom:709.350000px;}
.y17b{bottom:709.725000px;}
.y219{bottom:710.475000px;}
.y242{bottom:713.475000px;}
.y2e4{bottom:717.600000px;}
.y1c9{bottom:719.100000px;}
.yf{bottom:719.850000px;}
.y1b2{bottom:723.600000px;}
.y24{bottom:724.350000px;}
.y2d2{bottom:724.725000px;}
.y47{bottom:725.475000px;}
.y1a1{bottom:732.225000px;}
.y1bf{bottom:732.600000px;}
.ye{bottom:740.475000px;}
.yf5{bottom:743.475000px;}
.y102{bottom:743.850000px;}
.y46{bottom:748.725000px;}
.y23{bottom:753.600000px;}
.y1be{bottom:755.475000px;}
.yd{bottom:762.600000px;}
.y70{bottom:764.475000px;}
.yf4{bottom:765.975000px;}
.y101{bottom:766.350000px;}
.y18d{bottom:774.975000px;}
.y1c8{bottom:775.725000px;}
.y293{bottom:777.225000px;}
.y1b1{bottom:780.225000px;}
.y22{bottom:782.850000px;}
.y6c{bottom:786.975000px;}
.yc{bottom:787.350000px;}
.y111{bottom:787.725000px;}
.yc8{bottom:790.350000px;}
.y1a0{bottom:803.100000px;}
.y45{bottom:804.600000px;}
.ye1{bottom:805.350000px;}
.y10d{bottom:810.600000px;}
.y21{bottom:812.100000px;}
.yc5{bottom:813.225000px;}
.y19d{bottom:825.630000px;}
.y44{bottom:826.380000px;}
.yb{bottom:827.505000px;}
.ydf{bottom:828.255000px;}
.y18a{bottom:836.505000px;}
.y1c5{bottom:837.630000px;}
.y290{bottom:839.130000px;}
.y20{bottom:841.380000px;}
.y43{bottom:848.130000px;}
.y147{bottom:849.255000px;}
.y1bd{bottom:849.630000px;}
.y218{bottom:850.755000px;}
.y222{bottom:851.880000px;}
.y6a{bottom:858.255000px;}
.y142{bottom:858.630000px;}
.y188{bottom:859.380000px;}
.y1ae{bottom:859.755000px;}
.y100{bottom:860.505000px;}
.y28f{bottom:862.005000px;}
.y42{bottom:869.895000px;}
.y1f{bottom:870.630000px;}
.y145{bottom:872.130000px;}
.y1bc{bottom:872.505000px;}
.yb0{bottom:873.630000px;}
.y1f0{bottom:874.380000px;}
.y221{bottom:874.755000px;}
.ya{bottom:878.880000px;}
.y66{bottom:881.145000px;}
.y1ac{bottom:882.630000px;}
.yf3{bottom:883.380000px;}
.yfe{bottom:883.395000px;}
.y141{bottom:892.380000px;}
.y22e{bottom:895.020000px;}
.y93{bottom:895.755000px;}
.y29b{bottom:896.130000px;}
.yab{bottom:896.145000px;}
.y17a{bottom:896.505000px;}
.y1ef{bottom:897.270000px;}
.y12d{bottom:898.380000px;}
.yde{bottom:899.130000px;}
.y1e{bottom:899.880000px;}
.y41{bottom:903.630000px;}
.yf0{bottom:906.270000px;}
.y140{bottom:908.880000px;}
.y13f{bottom:909.645000px;}
.y90{bottom:918.270000px;}
.y25f{bottom:919.005000px;}
.y29a{bottom:919.020000px;}
.y179{bottom:919.395000px;}
.y12c{bottom:920.895000px;}
.ydc{bottom:922.020000px;}
.y40{bottom:925.380000px;}
.y10b{bottom:928.395000px;}
.y1d{bottom:929.130000px;}
.y9{bottom:936.630000px;}
.y178{bottom:941.505000px;}
.y25e{bottom:941.895000px;}
.y19c{bottom:943.395000px;}
.y217{bottom:945.675000px;}
.y3f{bottom:947.175000px;}
.y10a{bottom:950.925000px;}
.y177{bottom:958.050000px;}
.y176{bottom:958.800000px;}
.y64{bottom:960.300000px;}
.y1c{bottom:962.175000px;}
.y13e{bottom:964.800000px;}
.y19a{bottom:965.925000px;}
.y2df{bottom:966.675000px;}
.y216{bottom:968.175000px;}
.y8{bottom:970.425000px;}
.yc4{bottom:977.175000px;}
.y3e{bottom:980.925000px;}
.y109{bottom:982.050000px;}
.y62{bottom:982.800000px;}
.y1b{bottom:985.425000px;}
.y8f{bottom:989.175000px;}
.y2de{bottom:989.550000px;}
.y2b9{bottom:991.800000px;}
.y12b{bottom:992.175000px;}
.yc3{bottom:1000.050000px;}
.y3d{bottom:1002.675000px;}
.y7{bottom:1004.175000px;}
.y108{bottom:1004.550000px;}
.y8c{bottom:1012.050000px;}
.y144{bottom:1013.175000px;}
.y174{bottom:1013.925000px;}
.y2b8{bottom:1014.300000px;}
.y129{bottom:1015.050000px;}
.y13c{bottom:1019.925000px;}
.y215{bottom:1023.300000px;}
.y3c{bottom:1024.425000px;}
.y1a{bottom:1032.300000px;}
.y143{bottom:1035.675000px;}
.yaa{bottom:1037.175000px;}
.y6{bottom:1037.925000px;}
.y278{bottom:1038.300000px;}
.y1ee{bottom:1038.675000px;}
.y61{bottom:1042.425000px;}
.y214{bottom:1046.175000px;}
.y19{bottom:1048.800000px;}
.yc2{bottom:1055.175000px;}
.y3b{bottom:1058.175000px;}
.ya8{bottom:1060.050000px;}
.y277{bottom:1060.800000px;}
.y1ec{bottom:1061.550000px;}
.y60{bottom:1064.175000px;}
.y8b{bottom:1067.175000px;}
.y18{bottom:1069.425000px;}
.y5{bottom:1071.675000px;}
.yc1{bottom:1077.705000px;}
.y3a{bottom:1079.955000px;}
.y5f{bottom:1085.955000px;}
.y8a{bottom:1089.705000px;}
.y16{bottom:1090.455000px;}
.ya7{bottom:1090.830000px;}
.y13b{bottom:1099.080000px;}
.y39{bottom:1101.705000px;}
.y4{bottom:1105.455000px;}
.y5e{bottom:1107.705000px;}
.ya5{bottom:1113.705000px;}
.y38{bottom:1126.080000px;}
.y15{bottom:1132.080000px;}
.y89{bottom:1137.705000px;}
.y3{bottom:1139.205000px;}
.y2{bottom:1174.080000px;}
.y1{bottom:1194.330000px;}
.hd{height:19.875000px;}
.ha{height:20.250000px;}
.hc{height:20.287500px;}
.h23{height:21.735000px;}
.h11{height:21.750000px;}
.h32{height:21.772500px;}
.h19{height:21.787500px;}
.h13{height:22.125000px;}
.h25{height:22.162500px;}
.h54{height:24.000000px;}
.h4c{height:24.360000px;}
.h4e{height:24.375000px;}
.h3b{height:30.000000px;}
.h20{height:30.037500px;}
.h33{height:30.375000px;}
.h58{height:30.412500px;}
.h2c{height:30.750000px;}
.h73{height:35.806641px;}
.h75{height:38.790527px;}
.h1f{height:40.500000px;}
.h67{height:40.537500px;}
.hf{height:40.875000px;}
.h26{height:46.875000px;}
.h6a{height:46.912500px;}
.h7e{height:47.235000px;}
.h84{height:47.250000px;}
.h78{height:47.742188px;}
.h57{height:48.037500px;}
.h1d{height:49.125000px;}
.h90{height:49.162500px;}
.h3c{height:53.109375px;}
.h1a{height:54.375000px;}
.h2a{height:54.397500px;}
.h3d{height:54.412500px;}
.h6d{height:56.287500px;}
.h5{height:57.937500px;}
.h8{height:59.677734px;}
.h7{height:62.578125px;}
.h1{height:65.645508px;}
.hb{height:67.579102px;}
.he{height:68.835938px;}
.h29{height:70.125000px;}
.h1b{height:70.147500px;}
.h43{height:70.162500px;}
.h51{height:70.500000px;}
.h38{height:70.522500px;}
.h15{height:70.537500px;}
.h4{height:71.613281px;}
.h24{height:73.125000px;}
.h14{height:73.722656px;}
.h6{height:77.287500px;}
.h76{height:78.375000px;}
.h12{height:78.397500px;}
.h3e{height:78.412500px;}
.h46{height:78.750000px;}
.h77{height:78.787500px;}
.h10{height:83.548828px;}
.h48{height:84.412500px;}
.h5e{height:92.662500px;}
.h80{height:93.000000px;}
.h30{height:93.022500px;}
.h31{height:93.412500px;}
.h2f{height:93.750000px;}
.h1e{height:93.787500px;}
.h68{height:94.125000px;}
.h18{height:94.162500px;}
.h9{height:95.484375px;}
.h3{height:96.562500px;}
.h59{height:102.412500px;}
.h47{height:108.787500px;}
.h36{height:116.287500px;}
.h2d{height:116.662500px;}
.h52{height:117.000000px;}
.h4a{height:117.022500px;}
.h34{height:117.037500px;}
.h6e{height:117.397500px;}
.h63{height:117.412500px;}
.h17{height:118.162500px;}
.h8d{height:132.787500px;}
.h88{height:133.162500px;}
.h37{height:139.162500px;}
.h8f{height:139.537500px;}
.h21{height:140.272500px;}
.h40{height:140.287500px;}
.h5f{height:140.647500px;}
.h7f{height:162.795000px;}
.h27{height:163.200000px;}
.h62{height:163.530000px;}
.h2{height:167.097656px;}
.h4b{height:186.045000px;}
.h1c{height:186.405000px;}
.h8e{height:186.450000px;}
.h2e{height:186.825000px;}
.h71{height:187.200000px;}
.h2b{height:190.155000px;}
.h22{height:194.700000px;}
.h49{height:196.155000px;}
.h69{height:209.325000px;}
.h7d{height:210.030000px;}
.h16{height:210.075000px;}
.h41{height:210.810000px;}
.h8a{height:232.200000px;}
.h82{height:236.700000px;}
.h3a{height:237.075000px;}
.h3f{height:245.325000px;}
.h53{height:255.825000px;}
.h61{height:261.075000px;}
.h55{height:271.575000px;}
.h79{height:274.200000px;}
.h4d{height:278.700000px;}
.h6b{height:279.450000px;}
.h81{height:292.200000px;}
.h92{height:292.230000px;}
.h5a{height:293.700000px;}
.h4f{height:294.825000px;}
.h85{height:301.950000px;}
.h89{height:302.325000px;}
.h5d{height:302.700000px;}
.h42{height:325.200000px;}
.h7a{height:325.245000px;}
.h64{height:325.620000px;}
.h5c{height:333.105000px;}
.h56{height:333.855000px;}
.h87{height:346.620000px;}
.h5b{height:370.620000px;}
.h7c{height:370.995000px;}
.h28{height:372.480000px;}
.h35{height:378.105000px;}
.h83{height:384.120000px;}
.h6c{height:403.245000px;}
.h50{height:408.150000px;}
.h91{height:413.745000px;}
.h70{height:417.870000px;}
.h8b{height:429.480000px;}
.h65{height:430.245000px;}
.h86{height:454.275000px;}
.h60{height:456.525000px;}
.h44{height:460.635000px;}
.h39{height:483.900000px;}
.h72{height:485.775000px;}
.h45{height:512.025000px;}
.h7b{height:513.150000px;}
.h74{height:513.525000px;}
.h8c{height:528.570000px;}
.h66{height:566.025000px;}
.h6f{height:651.570000px;}
.h0{height:1263.000000px;}
.w7{width:106.575000px;}
.w9{width:106.950000px;}
.w4{width:205.995000px;}
.w3{width:381.525000px;}
.w5{width:468.945000px;}
.wf{width:499.695000px;}
.wb{width:501.570000px;}
.w8{width:501.945000px;}
.w10{width:502.695000px;}
.wc{width:505.695000px;}
.wa{width:506.070000px;}
.wd{width:506.445000px;}
.w11{width:506.820000px;}
.w6{width:667.800000px;}
.we{width:686.550000px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:8.250000px;}
.x7{left:27.750000px;}
.xf{left:35.287500px;}
.x10{left:62.287500px;}
.x8{left:70.905000px;}
.x11{left:73.537500px;}
.x13{left:89.287500px;}
.x12{left:94.912500px;}
.x1{left:108.037487px;}
.x14{left:116.332500px;}
.x17{left:117.787500px;}
.x9{left:125.280000px;}
.xd{left:135.074987px;}
.xe{left:162.074987px;}
.x2{left:202.949987px;}
.xa{left:204.074987px;}
.x18{left:225.120000px;}
.x6{left:255.870000px;}
.x3{left:309.149987px;}
.xc{left:315.525000px;}
.x1c{left:333.907500px;}
.x16{left:347.407500px;}
.x1f{left:356.782500px;}
.x5{left:405.569987px;}
.x4{left:446.444987px;}
.x1a{left:565.762500px;}
.x20{left:596.137500px;}
.x23{left:598.387500px;}
.x22{left:626.512500px;}
.x21{left:634.012500px;}
.x19{left:635.512500px;}
.x15{left:643.807500px;}
.x1b{left:653.557500px;}
.x1e{left:657.682500px;}
.x1d{left:661.057500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.410667pt;}
.ls16{letter-spacing:-0.330667pt;}
.ls17{letter-spacing:-0.133333pt;}
.ls1{letter-spacing:-0.117333pt;}
.ls14{letter-spacing:-0.101333pt;}
.ls9{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.053333pt;}
.ls19{letter-spacing:0.074667pt;}
.ls5{letter-spacing:0.117333pt;}
.lsd{letter-spacing:0.181333pt;}
.ls10{letter-spacing:0.245333pt;}
.lsc{letter-spacing:0.277333pt;}
.ls8{letter-spacing:0.298667pt;}
.ls18{letter-spacing:0.336000pt;}
.ls13{letter-spacing:0.346667pt;}
.lse{letter-spacing:0.549333pt;}
.ls11{letter-spacing:0.554667pt;}
.ls3{letter-spacing:0.565333pt;}
.ls12{letter-spacing:0.608000pt;}
.ls15{letter-spacing:0.714667pt;}
.ls6{letter-spacing:1.200000pt;}
.lsb{letter-spacing:25.024000pt;}
.ls4{letter-spacing:43.690667pt;}
.lsf{letter-spacing:45.184000pt;}
.lsa{letter-spacing:755.141333pt;}
.ws4{word-spacing:-14.464000pt;}
.ws5{word-spacing:-14.421333pt;}
.ws8{word-spacing:-13.605333pt;}
.wsc{word-spacing:-13.594667pt;}
.ws3{word-spacing:-13.258667pt;}
.wsa{word-spacing:-13.157333pt;}
.ws1{word-spacing:-13.141333pt;}
.wsb{word-spacing:-13.125333pt;}
.ws9{word-spacing:-12.928000pt;}
.ws2{word-spacing:-12.848000pt;}
.ws7{word-spacing:-11.450667pt;}
.ws6{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
._5{margin-left:-11.322667pt;}
._b{margin-left:-10.384000pt;}
._8{margin-left:-9.296000pt;}
._7{margin-left:-7.797333pt;}
._9{margin-left:-6.522667pt;}
._6{margin-left:-5.424000pt;}
._a{margin-left:-3.034667pt;}
._0{margin-left:-1.493333pt;}
._1{width:0.896000pt;}
._2{width:2.080000pt;}
._d{width:3.066667pt;}
._f{width:4.096000pt;}
._12{width:5.392000pt;}
._1a{width:7.328000pt;}
._19{width:8.357333pt;}
._1b{width:9.770667pt;}
._e{width:11.440000pt;}
._c{width:16.133333pt;}
._13{width:17.920000pt;}
._14{width:18.922667pt;}
._17{width:19.856000pt;}
._18{width:21.376000pt;}
._11{width:24.784000pt;}
._10{width:25.989333pt;}
._15{width:35.728000pt;}
._16{width:36.666667pt;}
._4{width:97.440000pt;}
._3{width:178.874667pt;}
._1d{width:753.936000pt;}
._1e{width:755.141333pt;}
._1c{width:757.050667pt;}
.fs8{font-size:32.000000pt;}
.fs9{font-size:34.666667pt;}
.fsa{font-size:42.666667pt;}
.fs7{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.fs1{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.y2c7{bottom:0.013333pt;}
.y17{bottom:4.000000pt;}
.y10c{bottom:4.320000pt;}
.y65{bottom:4.333333pt;}
.y6b{bottom:4.346667pt;}
.y9d{bottom:4.360000pt;}
.ybc{bottom:4.373333pt;}
.ya6{bottom:5.000000pt;}
.y63{bottom:5.333333pt;}
.yf2{bottom:6.320000pt;}
.ybe{bottom:6.333333pt;}
.y110{bottom:6.360000pt;}
.y7a{bottom:6.373333pt;}
.y92{bottom:6.653333pt;}
.y6f{bottom:6.666667pt;}
.yf8{bottom:6.706667pt;}
.y81{bottom:7.333333pt;}
.yea{bottom:7.666667pt;}
.y2bc{bottom:8.666667pt;}
.y24f{bottom:9.346667pt;}
.y10{bottom:11.000000pt;}
.y122{bottom:12.000000pt;}
.y69{bottom:12.653333pt;}
.y8e{bottom:12.666667pt;}
.y13a{bottom:12.680000pt;}
.ya9{bottom:12.693333pt;}
.y1b8{bottom:12.706667pt;}
.yed{bottom:13.000000pt;}
.y173{bottom:13.006667pt;}
.y197{bottom:13.026667pt;}
.y2c6{bottom:13.040000pt;}
.y227{bottom:14.666667pt;}
.y189{bottom:25.000000pt;}
.y130{bottom:25.026667pt;}
.y13{bottom:25.333333pt;}
.y24e{bottom:26.040000pt;}
.yaf{bottom:26.986667pt;}
.ye0{bottom:27.000000pt;}
.yc7{bottom:27.026667pt;}
.y79{bottom:27.040000pt;}
.yf1{bottom:27.320000pt;}
.y15d{bottom:27.326667pt;}
.y9b{bottom:27.333333pt;}
.y128{bottom:27.340000pt;}
.y19f{bottom:27.346667pt;}
.y6e{bottom:27.360000pt;}
.y86{bottom:27.373333pt;}
.y22f{bottom:27.653333pt;}
.y14e{bottom:27.666667pt;}
.y1eb{bottom:27.673333pt;}
.y80{bottom:28.360000pt;}
.yba{bottom:28.666667pt;}
.ye9{bottom:29.000000pt;}
.y9f{bottom:29.333333pt;}
.y2e2{bottom:29.360000pt;}
.y1ad{bottom:30.333333pt;}
.y160{bottom:30.360000pt;}
.y1dc{bottom:32.333333pt;}
.y121{bottom:32.360000pt;}
.y26a{bottom:32.666667pt;}
.y68{bottom:33.986667pt;}
.y285{bottom:33.993333pt;}
.ydd{bottom:34.026667pt;}
.y1b7{bottom:34.040000pt;}
.y1f9{bottom:34.326667pt;}
.y8d{bottom:34.333333pt;}
.y213{bottom:34.340000pt;}
.y136{bottom:34.360000pt;}
.y172{bottom:34.366667pt;}
.y166{bottom:34.373333pt;}
.y1c4{bottom:35.666667pt;}
.y226{bottom:36.026667pt;}
.y16f{bottom:39.666667pt;}
.y190{bottom:39.693333pt;}
.yb6{bottom:40.026667pt;}
.y12{bottom:40.700000pt;}
.y138{bottom:42.373333pt;}
.y2b7{bottom:47.660000pt;}
.y9a{bottom:47.666667pt;}
.y1ed{bottom:47.693333pt;}
.y275{bottom:47.706667pt;}
.yff{bottom:47.986667pt;}
.yd7{bottom:48.000000pt;}
.y91{bottom:48.026667pt;}
.y127{bottom:48.033333pt;}
.y78{bottom:48.040000pt;}
.y19b{bottom:48.333333pt;}
.y1ea{bottom:48.340000pt;}
.y6d{bottom:48.360000pt;}
.y205{bottom:48.366667pt;}
.y85{bottom:48.373333pt;}
.y7f{bottom:49.360000pt;}
.ye8{bottom:50.333333pt;}
.yb9{bottom:50.666667pt;}
.y14{bottom:50.700000pt;}
.y120{bottom:53.026667pt;}
.y269{bottom:53.360000pt;}
.y1db{bottom:53.373333pt;}
.y37{bottom:53.700000pt;}
.y67{bottom:55.653333pt;}
.y256{bottom:55.666667pt;}
.y13d{bottom:55.693333pt;}
.y1f8{bottom:55.700000pt;}
.y1b6{bottom:55.706667pt;}
.y168{bottom:56.000000pt;}
.y258{bottom:56.026667pt;}
.y11{bottom:56.033333pt;}
.y2a9{bottom:58.706667pt;}
.y175{bottom:61.026667pt;}
.y20b{bottom:61.040000pt;}
.yb5{bottom:61.360000pt;}
.y16e{bottom:61.373333pt;}
.y15a{bottom:68.333333pt;}
.yc6{bottom:68.360000pt;}
.y2b6{bottom:68.366667pt;}
.y146{bottom:68.373333pt;}
.y99{bottom:68.666667pt;}
.yae{bottom:68.693333pt;}
.y126{bottom:68.700000pt;}
.y77{bottom:68.706667pt;}
.yfb{bottom:69.000000pt;}
.y10f{bottom:69.026667pt;}
.y204{bottom:69.033333pt;}
.ya2{bottom:69.040000pt;}
.y1fd{bottom:69.333333pt;}
.y84{bottom:69.373333pt;}
.y295{bottom:69.666667pt;}
.y7e{bottom:69.693333pt;}
.y36{bottom:71.700000pt;}
.ye7{bottom:72.026667pt;}
.y11f{bottom:73.693333pt;}
.y1da{bottom:74.040000pt;}
.y1b5{bottom:77.040000pt;}
.y268{bottom:79.360000pt;}
.y2a8{bottom:79.373333pt;}
.y18f{bottom:82.693333pt;}
.y16d{bottom:82.706667pt;}
.yb4{bottom:88.693333pt;}
.y17d{bottom:89.000000pt;}
.y12a{bottom:89.026667pt;}
.y125{bottom:89.033333pt;}
.y159{bottom:89.040000pt;}
.y98{bottom:89.333333pt;}
.yad{bottom:89.360000pt;}
.y76{bottom:89.373333pt;}
.y19e{bottom:89.666667pt;}
.y10e{bottom:89.693333pt;}
.y1e9{bottom:89.700000pt;}
.y26d{bottom:89.706667pt;}
.y14d{bottom:90.026667pt;}
.y7d{bottom:90.693333pt;}
.y2e9{bottom:91.360000pt;}
.ye6{bottom:93.026667pt;}
.y11e{bottom:94.026667pt;}
.y1d9{bottom:94.706667pt;}
.y208{bottom:99.033333pt;}
.y267{bottom:100.026667pt;}
.y2a7{bottom:100.040000pt;}
.y286{bottom:100.700000pt;}
.y25d{bottom:102.366667pt;}
.y2ad{bottom:102.700000pt;}
.y1fa{bottom:103.033333pt;}
.y2d7{bottom:104.040000pt;}
.y2c5{bottom:104.373333pt;}
.y1e0{bottom:105.700000pt;}
.y2dd{bottom:108.700000pt;}
.yd4{bottom:109.693333pt;}
.y2b5{bottom:109.700000pt;}
.y97{bottom:109.706667pt;}
.yb3{bottom:110.026667pt;}
.y1a7{bottom:110.040000pt;}
.yac{bottom:110.360000pt;}
.y1e8{bottom:110.366667pt;}
.y75{bottom:110.373333pt;}
.y14c{bottom:110.693333pt;}
.y15c{bottom:111.033333pt;}
.y241{bottom:112.366667pt;}
.y1f6{bottom:112.700000pt;}
.ye5{bottom:113.360000pt;}
.y124{bottom:114.366667pt;}
.y11d{bottom:115.026667pt;}
.y27c{bottom:115.366667pt;}
.y1d8{bottom:115.373333pt;}
.y284{bottom:116.033333pt;}
.y251{bottom:117.033333pt;}
.y276{bottom:117.366667pt;}
.y1f2{bottom:117.700000pt;}
.y1f7{bottom:118.366667pt;}
.y162{bottom:120.366667pt;}
.y2a6{bottom:120.373333pt;}
.y266{bottom:120.693333pt;}
.y171{bottom:121.033333pt;}
.y5d{bottom:121.700000pt;}
.y2ce{bottom:130.040000pt;}
.y158{bottom:130.360000pt;}
.y2b4{bottom:130.366667pt;}
.y1c1{bottom:130.373333pt;}
.yd3{bottom:130.400000pt;}
.y17c{bottom:130.693333pt;}
.y1e7{bottom:130.700000pt;}
.y96{bottom:130.706667pt;}
.y74{bottom:130.733333pt;}
.y1fb{bottom:131.026667pt;}
.y24a{bottom:131.040000pt;}
.yf7{bottom:131.066667pt;}
.y14b{bottom:131.360000pt;}
.y2c8{bottom:133.373333pt;}
.y2d1{bottom:133.693333pt;}
.ye4{bottom:134.360000pt;}
.y11c{bottom:135.733333pt;}
.y132{bottom:136.360000pt;}
.y1d7{bottom:136.373333pt;}
.yb2{bottom:137.053333pt;}
.y26f{bottom:137.693333pt;}
.y139{bottom:138.360000pt;}
.y25a{bottom:138.366667pt;}
.y2dc{bottom:138.706667pt;}
.y281{bottom:140.033333pt;}
.y193{bottom:140.400000pt;}
.y5c{bottom:140.693333pt;}
.y2a5{bottom:141.373333pt;}
.y265{bottom:146.693333pt;}
.y212{bottom:148.026667pt;}
.y2c4{bottom:148.693333pt;}
.y157{bottom:151.026667pt;}
.y2b3{bottom:151.033333pt;}
.y1a6{bottom:151.040000pt;}
.yd2{bottom:151.066667pt;}
.y95{bottom:151.360000pt;}
.y1e6{bottom:151.366667pt;}
.y202{bottom:151.373333pt;}
.y73{bottom:151.733333pt;}
.y14a{bottom:152.026667pt;}
.y249{bottom:152.040000pt;}
.y2d3{bottom:153.360000pt;}
.y2d0{bottom:153.693333pt;}
.ye3{bottom:154.693333pt;}
.y11b{bottom:156.400000pt;}
.y1d6{bottom:156.733333pt;}
.yb1{bottom:158.720000pt;}
.y1b3{bottom:161.733333pt;}
.y2a4{bottom:162.066667pt;}
.y25c{bottom:166.733333pt;}
.y228{bottom:167.040000pt;}
.y264{bottom:167.386667pt;}
.y170{bottom:170.066667pt;}
.y5b{bottom:170.733333pt;}
.y184{bottom:171.693333pt;}
.y156{bottom:171.706667pt;}
.yd1{bottom:171.733333pt;}
.y2b2{bottom:171.740000pt;}
.y1a5{bottom:172.040000pt;}
.y1e5{bottom:172.073333pt;}
.y288{bottom:172.360000pt;}
.y72{bottom:172.400000pt;}
.y149{bottom:173.053333pt;}
.y15b{bottom:174.066667pt;}
.y240{bottom:175.400000pt;}
.y11a{bottom:176.733333pt;}
.ydb{bottom:177.066667pt;}
.y1d5{bottom:177.733333pt;}
.y2a3{bottom:182.400000pt;}
.y283{bottom:186.400000pt;}
.y263{bottom:188.386667pt;}
.y5a{bottom:190.066667pt;}
.yd0{bottom:192.066667pt;}
.y274{bottom:192.080000pt;}
.y247{bottom:192.360000pt;}
.y183{bottom:192.400000pt;}
.y2b1{bottom:192.406667pt;}
.y2ca{bottom:192.693333pt;}
.y1a4{bottom:192.706667pt;}
.y1e4{bottom:193.073333pt;}
.y137{bottom:193.400000pt;}
.y152{bottom:194.400000pt;}
.y203{bottom:195.066667pt;}
.y230{bottom:195.733333pt;}
.y2cf{bottom:196.066667pt;}
.y292{bottom:196.386667pt;}
.y133{bottom:196.733333pt;}
.y211{bottom:197.066667pt;}
.y119{bottom:197.733333pt;}
.y1d4{bottom:198.733333pt;}
.y35{bottom:201.733333pt;}
.y2db{bottom:202.400000pt;}
.y2a2{bottom:203.400000pt;}
.y262{bottom:209.053333pt;}
.yda{bottom:209.066667pt;}
.y59{bottom:209.400000pt;}
.y1ca{bottom:210.066667pt;}
.y2c1{bottom:210.413333pt;}
.y2b0{bottom:212.726667pt;}
.ycf{bottom:212.733333pt;}
.y155{bottom:213.066667pt;}
.y273{bottom:213.080000pt;}
.y201{bottom:213.400000pt;}
.y1e3{bottom:213.406667pt;}
.y282{bottom:215.066667pt;}
.y1ff{bottom:215.400000pt;}
.y187{bottom:215.733333pt;}
.y2cd{bottom:216.400000pt;}
.y25b{bottom:217.066667pt;}
.y1f3{bottom:218.073333pt;}
.y118{bottom:218.400000pt;}
.y16c{bottom:219.066667pt;}
.y2a1{bottom:224.066667pt;}
.y88{bottom:224.733333pt;}
.yd9{bottom:225.066667pt;}
.y34{bottom:227.733333pt;}
.y261{bottom:229.386667pt;}
.y2d8{bottom:231.773333pt;}
.y2af{bottom:233.393333pt;}
.y182{bottom:233.400000pt;}
.yce{bottom:233.733333pt;}
.y272{bottom:233.746667pt;}
.y1e2{bottom:234.060000pt;}
.y23f{bottom:234.066667pt;}
.y186{bottom:235.733333pt;}
.y220{bottom:237.733333pt;}
.y16a{bottom:237.740000pt;}
.y117{bottom:238.733333pt;}
.y1d3{bottom:240.066667pt;}
.y135{bottom:242.400000pt;}
.y58{bottom:243.400000pt;}
.y2a0{bottom:244.733333pt;}
.y1f5{bottom:245.066667pt;}
.y87{bottom:245.733333pt;}
.y2e6{bottom:245.760000pt;}
.y210{bottom:246.066667pt;}
.y28e{bottom:250.066667pt;}
.y33{bottom:253.733333pt;}
.y2ae{bottom:254.073333pt;}
.y2c9{bottom:254.386667pt;}
.y154{bottom:254.400000pt;}
.ycd{bottom:254.426667pt;}
.y271{bottom:254.440000pt;}
.y1e1{bottom:254.740000pt;}
.y21f{bottom:258.066667pt;}
.y116{bottom:259.760000pt;}
.y1d2{bottom:260.733333pt;}
.y83{bottom:261.733333pt;}
.y57{bottom:264.066667pt;}
.y29f{bottom:265.066667pt;}
.y259{bottom:266.066667pt;}
.yd8{bottom:267.400000pt;}
.y2c3{bottom:267.733333pt;}
.y280{bottom:270.106667pt;}
.y1c3{bottom:271.440000pt;}
.y2da{bottom:273.106667pt;}
.y153{bottom:274.733333pt;}
.y270{bottom:274.773333pt;}
.y200{bottom:275.066667pt;}
.ycc{bottom:275.093333pt;}
.y23e{bottom:275.400000pt;}
.y1ab{bottom:276.773333pt;}
.y28d{bottom:277.440000pt;}
.y32{bottom:279.760000pt;}
.y115{bottom:280.426667pt;}
.y1d1{bottom:281.760000pt;}
.y1b0{bottom:282.760000pt;}
.y56{bottom:284.773333pt;}
.y29e{bottom:286.093333pt;}
.yd6{bottom:287.440000pt;}
.y134{bottom:292.773333pt;}
.y2be{bottom:294.106667pt;}
.y246{bottom:295.400000pt;}
.y1f4{bottom:295.440000pt;}
.ycb{bottom:295.760000pt;}
.y23d{bottom:296.066667pt;}
.y28c{bottom:297.773333pt;}
.y1aa{bottom:298.773333pt;}
.y185{bottom:299.106667pt;}
.y21e{bottom:300.440000pt;}
.y114{bottom:301.093333pt;}
.y55{bottom:305.440000pt;}
.y31{bottom:305.773333pt;}
.y29d{bottom:306.773333pt;}
.y20d{bottom:308.100000pt;}
.y1c7{bottom:315.426667pt;}
.y27d{bottom:315.766667pt;}
.y245{bottom:316.066667pt;}
.y20f{bottom:316.440000pt;}
.yca{bottom:316.760000pt;}
.y23c{bottom:316.773333pt;}
.y16b{bottom:317.773333pt;}
.y2c2{bottom:318.106667pt;}
.y1a9{bottom:319.106667pt;}
.y181{bottom:319.440000pt;}
.y21d{bottom:320.440000pt;}
.y113{bottom:321.760000pt;}
.y29c{bottom:327.093333pt;}
.y30{bottom:331.773333pt;}
.y199{bottom:334.106667pt;}
.y54{bottom:335.773333pt;}
.y257{bottom:336.440000pt;}
.y244{bottom:336.760000pt;}
.y23b{bottom:337.440000pt;}
.y2e3{bottom:338.440000pt;}
.y27f{bottom:340.773333pt;}
.yfd{bottom:342.093333pt;}
.y123{bottom:343.106667pt;}
.y224{bottom:344.440000pt;}
.y2d9{bottom:344.773333pt;}
.y82{bottom:346.106667pt;}
.y131{bottom:347.773333pt;}
.y18c{bottom:348.786667pt;}
.yd5{bottom:350.440000pt;}
.y22d{bottom:353.440000pt;}
.y243{bottom:357.093333pt;}
.y2f{bottom:357.773333pt;}
.y23a{bottom:358.106667pt;}
.y2e1{bottom:358.773333pt;}
.y2ec{bottom:362.773333pt;}
.y112{bottom:363.440000pt;}
.y198{bottom:365.440000pt;}
.y53{bottom:365.773333pt;}
.y7c{bottom:366.106667pt;}
.y20e{bottom:366.773333pt;}
.y12e{bottom:367.773333pt;}
.y207{bottom:368.426667pt;}
.y1cf{bottom:369.773333pt;}
.yc9{bottom:370.773333pt;}
.y2ac{bottom:371.773333pt;}
.y169{bottom:372.773333pt;}
.y2c0{bottom:373.106667pt;}
.yfc{bottom:374.106667pt;}
.y1df{bottom:375.440000pt;}
.y2e5{bottom:377.440000pt;}
.y2eb{bottom:378.106667pt;}
.y239{bottom:378.773333pt;}
.y18b{bottom:380.106667pt;}
.y196{bottom:380.773333pt;}
.y28b{bottom:381.106667pt;}
.y1a8{bottom:382.440000pt;}
.y22c{bottom:383.466667pt;}
.y2e{bottom:383.800000pt;}
.y52{bottom:385.133333pt;}
.y2bb{bottom:389.800000pt;}
.yfa{bottom:390.133333pt;}
.y27e{bottom:391.133333pt;}
.y1f1{bottom:391.786667pt;}
.y2ab{bottom:391.800000pt;}
.y15f{bottom:395.453333pt;}
.y1de{bottom:395.466667pt;}
.y223{bottom:398.133333pt;}
.y24c{bottom:399.133333pt;}
.y238{bottom:399.440000pt;}
.y1ce{bottom:399.800000pt;}
.y167{bottom:400.133333pt;}
.y28a{bottom:401.466667pt;}
.y2bf{bottom:401.800000pt;}
.y1a3{bottom:402.466667pt;}
.y1c2{bottom:403.133333pt;}
.y51{bottom:404.466667pt;}
.yc0{bottom:406.800000pt;}
.y255{bottom:407.133333pt;}
.y2d{bottom:409.800000pt;}
.y1c6{bottom:414.466667pt;}
.y12f{bottom:416.120000pt;}
.y237{bottom:420.133333pt;}
.y20c{bottom:421.800000pt;}
.y1bb{bottom:422.133333pt;}
.y1c0{bottom:423.133333pt;}
.y2cc{bottom:423.466667pt;}
.ya4{bottom:424.133333pt;}
.y50{bottom:426.133333pt;}
.y24b{bottom:426.800000pt;}
.y26e{bottom:427.466667pt;}
.y2ea{bottom:428.466667pt;}
.y195{bottom:429.800000pt;}
.y2aa{bottom:434.466667pt;}
.y2c{bottom:435.800000pt;}
.y1dd{bottom:437.800000pt;}
.ybf{bottom:438.466667pt;}
.y236{bottom:441.133333pt;}
.y163{bottom:441.140000pt;}
.y27a{bottom:442.133333pt;}
.y2cb{bottom:443.800000pt;}
.ya3{bottom:445.133333pt;}
.y27b{bottom:445.800000pt;}
.y22b{bottom:447.133333pt;}
.y26c{bottom:447.800000pt;}
.y252{bottom:448.140000pt;}
.y2d6{bottom:448.800000pt;}
.yef{bottom:450.466667pt;}
.y1ba{bottom:452.133333pt;}
.ybd{bottom:454.466667pt;}
.y2d4{bottom:455.813333pt;}
.y2bd{bottom:456.800000pt;}
.y1d0{bottom:458.133333pt;}
.ya1{bottom:461.133333pt;}
.y235{bottom:461.466667pt;}
.y2b{bottom:461.800000pt;}
.y1cd{bottom:463.466667pt;}
.y279{bottom:466.133333pt;}
.y1af{bottom:466.800000pt;}
.y1b9{bottom:467.466667pt;}
.y4f{bottom:467.800000pt;}
.y165{bottom:470.800000pt;}
.y7b{bottom:471.800000pt;}
.yf9{bottom:474.133333pt;}
.y22a{bottom:474.466667pt;}
.y2ba{bottom:477.133333pt;}
.y254{bottom:477.466667pt;}
.y194{bottom:480.133333pt;}
.yee{bottom:482.133333pt;}
.y2e8{bottom:483.466667pt;}
.y151{bottom:484.133333pt;}
.y4e{bottom:487.133333pt;}
.y2a{bottom:487.800000pt;}
.y209{bottom:489.140000pt;}
.y299{bottom:490.133333pt;}
.y1cc{bottom:491.133333pt;}
.y71{bottom:492.133333pt;}
.yf6{bottom:494.133333pt;}
.y1b4{bottom:495.133333pt;}
.ybb{bottom:496.800000pt;}
.yec{bottom:498.173333pt;}
.y234{bottom:502.800000pt;}
.y150{bottom:504.506667pt;}
.y1fe{bottom:505.506667pt;}
.y4d{bottom:506.506667pt;}
.y21c{bottom:507.173333pt;}
.y29{bottom:513.840000pt;}
.yb8{bottom:517.173333pt;}
.y298{bottom:520.173333pt;}
.y164{bottom:521.173333pt;}
.y107{bottom:523.173333pt;}
.y233{bottom:523.466667pt;}
.y229{bottom:524.840000pt;}
.y1fc{bottom:525.506667pt;}
.yeb{bottom:526.173333pt;}
.y21b{bottom:527.173333pt;}
.y253{bottom:527.840000pt;}
.y2e7{bottom:532.506667pt;}
.y291{bottom:534.840000pt;}
.y192{bottom:535.173333pt;}
.y297{bottom:535.506667pt;}
.y28{bottom:539.840000pt;}
.y4c{bottom:540.506667pt;}
.y232{bottom:544.160000pt;}
.ya0{bottom:545.173333pt;}
.ye2{bottom:546.173333pt;}
.y14f{bottom:546.840000pt;}
.y20a{bottom:547.840000pt;}
.y26b{bottom:552.506667pt;}
.y106{bottom:555.173333pt;}
.y4b{bottom:561.173333pt;}
.y191{bottom:562.506667pt;}
.y296{bottom:564.173333pt;}
.y231{bottom:564.840000pt;}
.y9e{bottom:565.506667pt;}
.y27{bottom:565.840000pt;}
.y148{bottom:566.840000pt;}
.y180{bottom:567.840000pt;}
.y2e0{bottom:568.173333pt;}
.y2d5{bottom:568.840000pt;}
.y105{bottom:571.173333pt;}
.y260{bottom:572.506667pt;}
.y250{bottom:574.173333pt;}
.y161{bottom:576.173333pt;}
.y225{bottom:579.840000pt;}
.y4a{bottom:582.173333pt;}
.yb7{bottom:582.840000pt;}
.y1cb{bottom:584.173333pt;}
.y17f{bottom:588.173333pt;}
.y18e{bottom:590.173333pt;}
.y26{bottom:591.840000pt;}
.y24d{bottom:594.160000pt;}
.y15e{bottom:596.173333pt;}
.y104{bottom:598.840000pt;}
.y49{bottom:602.840000pt;}
.y289{bottom:609.506667pt;}
.y9c{bottom:609.840000pt;}
.y17e{bottom:610.506667pt;}
.y21a{bottom:611.506667pt;}
.y248{bottom:614.200000pt;}
.y25{bottom:617.866667pt;}
.y103{bottom:618.866667pt;}
.y294{bottom:619.200000pt;}
.y206{bottom:623.200000pt;}
.y48{bottom:623.866667pt;}
.y287{bottom:629.533333pt;}
.y94{bottom:629.866667pt;}
.y1a2{bottom:630.533333pt;}
.y17b{bottom:630.866667pt;}
.y219{bottom:631.533333pt;}
.y242{bottom:634.200000pt;}
.y2e4{bottom:637.866667pt;}
.y1c9{bottom:639.200000pt;}
.yf{bottom:639.866667pt;}
.y1b2{bottom:643.200000pt;}
.y24{bottom:643.866667pt;}
.y2d2{bottom:644.200000pt;}
.y47{bottom:644.866667pt;}
.y1a1{bottom:650.866667pt;}
.y1bf{bottom:651.200000pt;}
.ye{bottom:658.200000pt;}
.yf5{bottom:660.866667pt;}
.y102{bottom:661.200000pt;}
.y46{bottom:665.533333pt;}
.y23{bottom:669.866667pt;}
.y1be{bottom:671.533333pt;}
.yd{bottom:677.866667pt;}
.y70{bottom:679.533333pt;}
.yf4{bottom:680.866667pt;}
.y101{bottom:681.200000pt;}
.y18d{bottom:688.866667pt;}
.y1c8{bottom:689.533333pt;}
.y293{bottom:690.866667pt;}
.y1b1{bottom:693.533333pt;}
.y22{bottom:695.866667pt;}
.y6c{bottom:699.533333pt;}
.yc{bottom:699.866667pt;}
.y111{bottom:700.200000pt;}
.yc8{bottom:702.533333pt;}
.y1a0{bottom:713.866667pt;}
.y45{bottom:715.200000pt;}
.ye1{bottom:715.866667pt;}
.y10d{bottom:720.533333pt;}
.y21{bottom:721.866667pt;}
.yc5{bottom:722.866667pt;}
.y19d{bottom:733.893333pt;}
.y44{bottom:734.560000pt;}
.yb{bottom:735.560000pt;}
.ydf{bottom:736.226667pt;}
.y18a{bottom:743.560000pt;}
.y1c5{bottom:744.560000pt;}
.y290{bottom:745.893333pt;}
.y20{bottom:747.893333pt;}
.y43{bottom:753.893333pt;}
.y147{bottom:754.893333pt;}
.y1bd{bottom:755.226667pt;}
.y218{bottom:756.226667pt;}
.y222{bottom:757.226667pt;}
.y6a{bottom:762.893333pt;}
.y142{bottom:763.226667pt;}
.y188{bottom:763.893333pt;}
.y1ae{bottom:764.226667pt;}
.y100{bottom:764.893333pt;}
.y28f{bottom:766.226667pt;}
.y42{bottom:773.240000pt;}
.y1f{bottom:773.893333pt;}
.y145{bottom:775.226667pt;}
.y1bc{bottom:775.560000pt;}
.yb0{bottom:776.560000pt;}
.y1f0{bottom:777.226667pt;}
.y221{bottom:777.560000pt;}
.ya{bottom:781.226667pt;}
.y66{bottom:783.240000pt;}
.y1ac{bottom:784.560000pt;}
.yf3{bottom:785.226667pt;}
.yfe{bottom:785.240000pt;}
.y141{bottom:793.226667pt;}
.y22e{bottom:795.573333pt;}
.y93{bottom:796.226667pt;}
.y29b{bottom:796.560000pt;}
.yab{bottom:796.573333pt;}
.y17a{bottom:796.893333pt;}
.y1ef{bottom:797.573333pt;}
.y12d{bottom:798.560000pt;}
.yde{bottom:799.226667pt;}
.y1e{bottom:799.893333pt;}
.y41{bottom:803.226667pt;}
.yf0{bottom:805.573333pt;}
.y140{bottom:807.893333pt;}
.y13f{bottom:808.573333pt;}
.y90{bottom:816.240000pt;}
.y25f{bottom:816.893333pt;}
.y29a{bottom:816.906667pt;}
.y179{bottom:817.240000pt;}
.y12c{bottom:818.573333pt;}
.ydc{bottom:819.573333pt;}
.y40{bottom:822.560000pt;}
.y10b{bottom:825.240000pt;}
.y1d{bottom:825.893333pt;}
.y9{bottom:832.560000pt;}
.y178{bottom:836.893333pt;}
.y25e{bottom:837.240000pt;}
.y19c{bottom:838.573333pt;}
.y217{bottom:840.600000pt;}
.y3f{bottom:841.933333pt;}
.y10a{bottom:845.266667pt;}
.y177{bottom:851.600000pt;}
.y176{bottom:852.266667pt;}
.y64{bottom:853.600000pt;}
.y1c{bottom:855.266667pt;}
.y13e{bottom:857.600000pt;}
.y19a{bottom:858.600000pt;}
.y2df{bottom:859.266667pt;}
.y216{bottom:860.600000pt;}
.y8{bottom:862.600000pt;}
.yc4{bottom:868.600000pt;}
.y3e{bottom:871.933333pt;}
.y109{bottom:872.933333pt;}
.y62{bottom:873.600000pt;}
.y1b{bottom:875.933333pt;}
.y8f{bottom:879.266667pt;}
.y2de{bottom:879.600000pt;}
.y2b9{bottom:881.600000pt;}
.y12b{bottom:881.933333pt;}
.yc3{bottom:888.933333pt;}
.y3d{bottom:891.266667pt;}
.y7{bottom:892.600000pt;}
.y108{bottom:892.933333pt;}
.y8c{bottom:899.600000pt;}
.y144{bottom:900.600000pt;}
.y174{bottom:901.266667pt;}
.y2b8{bottom:901.600000pt;}
.y129{bottom:902.266667pt;}
.y13c{bottom:906.600000pt;}
.y215{bottom:909.600000pt;}
.y3c{bottom:910.600000pt;}
.y1a{bottom:917.600000pt;}
.y143{bottom:920.600000pt;}
.yaa{bottom:921.933333pt;}
.y6{bottom:922.600000pt;}
.y278{bottom:922.933333pt;}
.y1ee{bottom:923.266667pt;}
.y61{bottom:926.600000pt;}
.y214{bottom:929.933333pt;}
.y19{bottom:932.266667pt;}
.yc2{bottom:937.933333pt;}
.y3b{bottom:940.600000pt;}
.ya8{bottom:942.266667pt;}
.y277{bottom:942.933333pt;}
.y1ec{bottom:943.600000pt;}
.y60{bottom:945.933333pt;}
.y8b{bottom:948.600000pt;}
.y18{bottom:950.600000pt;}
.y5{bottom:952.600000pt;}
.yc1{bottom:957.960000pt;}
.y3a{bottom:959.960000pt;}
.y5f{bottom:965.293333pt;}
.y8a{bottom:968.626667pt;}
.y16{bottom:969.293333pt;}
.ya7{bottom:969.626667pt;}
.y13b{bottom:976.960000pt;}
.y39{bottom:979.293333pt;}
.y4{bottom:982.626667pt;}
.y5e{bottom:984.626667pt;}
.ya5{bottom:989.960000pt;}
.y38{bottom:1000.960000pt;}
.y15{bottom:1006.293333pt;}
.y89{bottom:1011.293333pt;}
.y3{bottom:1012.626667pt;}
.y2{bottom:1043.626667pt;}
.y1{bottom:1061.626667pt;}
.hd{height:17.666667pt;}
.ha{height:18.000000pt;}
.hc{height:18.033333pt;}
.h23{height:19.320000pt;}
.h11{height:19.333333pt;}
.h32{height:19.353333pt;}
.h19{height:19.366667pt;}
.h13{height:19.666667pt;}
.h25{height:19.700000pt;}
.h54{height:21.333333pt;}
.h4c{height:21.653333pt;}
.h4e{height:21.666667pt;}
.h3b{height:26.666667pt;}
.h20{height:26.700000pt;}
.h33{height:27.000000pt;}
.h58{height:27.033333pt;}
.h2c{height:27.333333pt;}
.h73{height:31.828125pt;}
.h75{height:34.480469pt;}
.h1f{height:36.000000pt;}
.h67{height:36.033333pt;}
.hf{height:36.333333pt;}
.h26{height:41.666667pt;}
.h6a{height:41.700000pt;}
.h7e{height:41.986667pt;}
.h84{height:42.000000pt;}
.h78{height:42.437500pt;}
.h57{height:42.700000pt;}
.h1d{height:43.666667pt;}
.h90{height:43.700000pt;}
.h3c{height:47.208333pt;}
.h1a{height:48.333333pt;}
.h2a{height:48.353333pt;}
.h3d{height:48.366667pt;}
.h6d{height:50.033333pt;}
.h5{height:51.500000pt;}
.h8{height:53.046875pt;}
.h7{height:55.625000pt;}
.h1{height:58.351562pt;}
.hb{height:60.070312pt;}
.he{height:61.187500pt;}
.h29{height:62.333333pt;}
.h1b{height:62.353333pt;}
.h43{height:62.366667pt;}
.h51{height:62.666667pt;}
.h38{height:62.686667pt;}
.h15{height:62.700000pt;}
.h4{height:63.656250pt;}
.h24{height:65.000000pt;}
.h14{height:65.531250pt;}
.h6{height:68.700000pt;}
.h76{height:69.666667pt;}
.h12{height:69.686667pt;}
.h3e{height:69.700000pt;}
.h46{height:70.000000pt;}
.h77{height:70.033333pt;}
.h10{height:74.265625pt;}
.h48{height:75.033333pt;}
.h5e{height:82.366667pt;}
.h80{height:82.666667pt;}
.h30{height:82.686667pt;}
.h31{height:83.033333pt;}
.h2f{height:83.333333pt;}
.h1e{height:83.366667pt;}
.h68{height:83.666667pt;}
.h18{height:83.700000pt;}
.h9{height:84.875000pt;}
.h3{height:85.833333pt;}
.h59{height:91.033333pt;}
.h47{height:96.700000pt;}
.h36{height:103.366667pt;}
.h2d{height:103.700000pt;}
.h52{height:104.000000pt;}
.h4a{height:104.020000pt;}
.h34{height:104.033333pt;}
.h6e{height:104.353333pt;}
.h63{height:104.366667pt;}
.h17{height:105.033333pt;}
.h8d{height:118.033333pt;}
.h88{height:118.366667pt;}
.h37{height:123.700000pt;}
.h8f{height:124.033333pt;}
.h21{height:124.686667pt;}
.h40{height:124.700000pt;}
.h5f{height:125.020000pt;}
.h7f{height:144.706667pt;}
.h27{height:145.066667pt;}
.h62{height:145.360000pt;}
.h2{height:148.531250pt;}
.h4b{height:165.373333pt;}
.h1c{height:165.693333pt;}
.h8e{height:165.733333pt;}
.h2e{height:166.066667pt;}
.h71{height:166.400000pt;}
.h2b{height:169.026667pt;}
.h22{height:173.066667pt;}
.h49{height:174.360000pt;}
.h69{height:186.066667pt;}
.h7d{height:186.693333pt;}
.h16{height:186.733333pt;}
.h41{height:187.386667pt;}
.h8a{height:206.400000pt;}
.h82{height:210.400000pt;}
.h3a{height:210.733333pt;}
.h3f{height:218.066667pt;}
.h53{height:227.400000pt;}
.h61{height:232.066667pt;}
.h55{height:241.400000pt;}
.h79{height:243.733333pt;}
.h4d{height:247.733333pt;}
.h6b{height:248.400000pt;}
.h81{height:259.733333pt;}
.h92{height:259.760000pt;}
.h5a{height:261.066667pt;}
.h4f{height:262.066667pt;}
.h85{height:268.400000pt;}
.h89{height:268.733333pt;}
.h5d{height:269.066667pt;}
.h42{height:289.066667pt;}
.h7a{height:289.106667pt;}
.h64{height:289.440000pt;}
.h5c{height:296.093333pt;}
.h56{height:296.760000pt;}
.h87{height:308.106667pt;}
.h5b{height:329.440000pt;}
.h7c{height:329.773333pt;}
.h28{height:331.093333pt;}
.h35{height:336.093333pt;}
.h83{height:341.440000pt;}
.h6c{height:358.440000pt;}
.h50{height:362.800000pt;}
.h91{height:367.773333pt;}
.h70{height:371.440000pt;}
.h8b{height:381.760000pt;}
.h65{height:382.440000pt;}
.h86{height:403.800000pt;}
.h60{height:405.800000pt;}
.h44{height:409.453333pt;}
.h39{height:430.133333pt;}
.h72{height:431.800000pt;}
.h45{height:455.133333pt;}
.h7b{height:456.133333pt;}
.h74{height:456.466667pt;}
.h8c{height:469.840000pt;}
.h66{height:503.133333pt;}
.h6f{height:579.173333pt;}
.h0{height:1122.666667pt;}
.w7{width:94.733333pt;}
.w9{width:95.066667pt;}
.w4{width:183.106667pt;}
.w3{width:339.133333pt;}
.w5{width:416.840000pt;}
.wf{width:444.173333pt;}
.wb{width:445.840000pt;}
.w8{width:446.173333pt;}
.w10{width:446.840000pt;}
.wc{width:449.506667pt;}
.wa{width:449.840000pt;}
.wd{width:450.173333pt;}
.w11{width:450.506667pt;}
.w6{width:593.600000pt;}
.we{width:610.266667pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.333333pt;}
.x7{left:24.666667pt;}
.xf{left:31.366667pt;}
.x10{left:55.366667pt;}
.x8{left:63.026667pt;}
.x11{left:65.366667pt;}
.x13{left:79.366667pt;}
.x12{left:84.366667pt;}
.x1{left:96.033322pt;}
.x14{left:103.406667pt;}
.x17{left:104.700000pt;}
.x9{left:111.360000pt;}
.xd{left:120.066655pt;}
.xe{left:144.066655pt;}
.x2{left:180.399988pt;}
.xa{left:181.399988pt;}
.x18{left:200.106667pt;}
.x6{left:227.440000pt;}
.x3{left:274.799988pt;}
.xc{left:280.466667pt;}
.x1c{left:296.806667pt;}
.x16{left:308.806667pt;}
.x1f{left:317.140000pt;}
.x5{left:360.506655pt;}
.x4{left:396.839988pt;}
.x1a{left:502.900000pt;}
.x20{left:529.900000pt;}
.x23{left:531.900000pt;}
.x22{left:556.900000pt;}
.x21{left:563.566667pt;}
.x19{left:564.900000pt;}
.x15{left:572.273333pt;}
.x1b{left:580.940000pt;}
.x1e{left:584.606667pt;}
.x1d{left:587.606667pt;}
}




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