
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_27208b56143e12b701208c75.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_15f32175be80ea0c717d0a27.woff')format("woff");}.ff3{font-family:ff3;line-height:1.089844;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_63b9f86d1334eb45da6d5446.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_f5c6319829774aa5b76600ce.woff')format("woff");}.ff5{font-family:ff5;line-height:1.089844;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_1d5624bf1e44d7ff80ca50c4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_51d7697c73b3f292a1678398.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ff3c6760ab7ff34876d35dad.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_dce8fecf971d0f0f9cbd444f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_1dc02e7cd56d7eac2c38f1a0.woff')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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);}
.m2{transform:matrix(0.373625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.373625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.373625,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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls24{letter-spacing:-1.848000px;}
.ls3c{letter-spacing:-1.704000px;}
.ls33{letter-spacing:-1.686000px;}
.ls21{letter-spacing:-1.626000px;}
.ls3a{letter-spacing:-1.344000px;}
.ls23{letter-spacing:-1.332000px;}
.ls30{letter-spacing:-1.302000px;}
.ls34{letter-spacing:-1.278000px;}
.lsb{letter-spacing:-1.266000px;}
.lsd{letter-spacing:-0.455400px;}
.ls39{letter-spacing:-0.452400px;}
.ls3b{letter-spacing:-0.427200px;}
.ls22{letter-spacing:-0.243600px;}
.ls38{letter-spacing:-0.240600px;}
.ls1d{letter-spacing:-0.186600px;}
.ls13{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.135000px;}
.ls1e{letter-spacing:-0.125400px;}
.ls16{letter-spacing:-0.121200px;}
.lsc{letter-spacing:-0.097800px;}
.ls28{letter-spacing:-0.092400px;}
.ls8{letter-spacing:-0.090000px;}
.ls10{letter-spacing:-0.084600px;}
.lsf{letter-spacing:-0.084000px;}
.ls12{letter-spacing:-0.067200px;}
.ls20{letter-spacing:-0.063600px;}
.ls35{letter-spacing:-0.044640px;}
.ls11{letter-spacing:-0.011400px;}
.ls36{letter-spacing:-0.011160px;}
.ls25{letter-spacing:-0.008280px;}
.lse{letter-spacing:-0.003000px;}
.ls29{letter-spacing:-0.002526px;}
.ls5{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.045360px;}
.ls1f{letter-spacing:0.048960px;}
.ls2b{letter-spacing:0.056880px;}
.ls18{letter-spacing:0.064800px;}
.ls17{letter-spacing:0.074160px;}
.lsa{letter-spacing:0.083400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls15{letter-spacing:0.113400px;}
.ls14{letter-spacing:0.116400px;}
.ls26{letter-spacing:0.118200px;}
.ls2c{letter-spacing:0.119400px;}
.ls2a{letter-spacing:0.138600px;}
.ls6{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.173400px;}
.ls3{letter-spacing:0.174600px;}
.ls37{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls32{letter-spacing:6.300000px;}
.ls31{letter-spacing:6.540000px;}
.ls4{letter-spacing:10.893600px;}
.ls27{letter-spacing:12.360000px;}
.ls2d{letter-spacing:12.780000px;}
.ls2f{letter-spacing:13.020000px;}
.ls2e{letter-spacing:13.260000px;}
.ls1a{letter-spacing:32.246640px;}
.ls3e{letter-spacing:47.726640px;}
.ls19{letter-spacing:63.566640px;}
.ls3d{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws3{word-spacing:-14.577000px;}
.wsf{word-spacing:-14.493600px;}
.ws7{word-spacing:-14.490600px;}
.ws5{word-spacing:-14.395800px;}
.ws14{word-spacing:-14.372400px;}
.ws6{word-spacing:-14.038200px;}
.ws26{word-spacing:-13.425600px;}
.ws11{word-spacing:-13.399800px;}
.ws25{word-spacing:-13.365000px;}
.ws21{word-spacing:-13.345800px;}
.ws1e{word-spacing:-13.344600px;}
.wsc{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.339800px;}
.ws27{word-spacing:-13.283280px;}
.ws16{word-spacing:-13.275360px;}
.ws8{word-spacing:-13.226400px;}
.ws20{word-spacing:-13.223874px;}
.ws1d{word-spacing:-13.218120px;}
.ws24{word-spacing:-13.215240px;}
.ws9{word-spacing:-13.215000px;}
.ws23{word-spacing:-13.181760px;}
.ws17{word-spacing:-13.162800px;}
.wsa{word-spacing:-13.159200px;}
.ws1f{word-spacing:-13.134000px;}
.ws15{word-spacing:-13.101000px;}
.wsb{word-spacing:-13.072800px;}
.ws12{word-spacing:-13.039800px;}
.ws28{word-spacing:-12.985800px;}
.ws1a{word-spacing:-12.982800px;}
.ws2b{word-spacing:-12.799200px;}
.ws29{word-spacing:-12.774000px;}
.ws19{word-spacing:-11.960400px;}
.ws22{word-spacing:-11.924400px;}
.ws1b{word-spacing:-11.894400px;}
.ws2a{word-spacing:-11.882400px;}
.ws0{word-spacing:-11.736000px;}
.ws18{word-spacing:-11.600400px;}
.ws2c{word-spacing:-11.522400px;}
.ws1c{word-spacing:-11.378400px;}
.ws1{word-spacing:-9.810000px;}
.ws2{word-spacing:-9.765000px;}
.ws4{word-spacing:-9.266400px;}
.ws13{word-spacing:-0.060120px;}
.ws10{word-spacing:0.000000px;}
.wse{word-spacing:4.304880px;}
._d{margin-left:-5.211948px;}
._e{margin-left:-4.174835px;}
._10{margin-left:-3.165085px;}
._0{margin-left:-2.112000px;}
._1{margin-left:-1.062000px;}
._2{width:1.090188px;}
._b{width:2.981880px;}
._c{width:4.090440px;}
._14{width:5.651400px;}
._15{width:6.667317px;}
._7{width:7.755600px;}
._3{width:9.198600px;}
._4{width:10.200257px;}
._6{width:11.242200px;}
._5{width:15.030000px;}
._a{width:16.063825px;}
._11{width:17.656674px;}
._12{width:19.192729px;}
._13{width:20.440800px;}
._9{width:21.950999px;}
._8{width:23.086200px;}
._1e{width:24.228360px;}
._23{width:25.971840px;}
._3a{width:27.054000px;}
._f{width:28.554722px;}
._46{width:30.242638px;}
._34{width:31.563000px;}
._2a{width:33.066000px;}
._22{width:34.929720px;}
._3f{width:36.132120px;}
._1c{width:38.837520px;}
._2c{width:40.228080px;}
._40{width:41.603040px;}
._27{width:42.625080px;}
._2e{width:43.767360px;}
._2d{width:45.270360px;}
._1a{width:47.013840px;}
._3e{width:48.757320px;}
._19{width:50.079960px;}
._24{width:51.582960px;}
._58{width:52.598880px;}
._25{width:54.228240px;}
._26{width:55.430640px;}
._45{width:56.692932px;}
._3d{width:57.715200px;}
._35{width:59.278320px;}
._43{width:60.600960px;}
._2f{width:66.292200px;}
._42{width:68.436720px;}
._3b{width:69.618960px;}
._20{width:71.182080px;}
._54{width:72.282252px;}
._52{width:73.887480px;}
._44{width:76.352172px;}
._1f{width:77.735160px;}
._4d{width:80.380440px;}
._4e{width:81.385680px;}
._53{width:82.544760px;}
._32{width:83.976480px;}
._59{width:85.326480px;}
._49{width:86.853240px;}
._38{width:88.396560px;}
._33{width:90.099720px;}
._1b{width:92.043720px;}
._3c{width:93.787200px;}
._37{width:105.187680px;}
._56{width:110.657400px;}
._21{width:117.890400px;}
._2b{width:121.863240px;}
._39{width:124.027560px;}
._16{width:125.585845px;}
._17{width:128.471400px;}
._18{width:129.542760px;}
._5a{width:130.580640px;}
._47{width:132.264000px;}
._29{width:133.406280px;}
._28{width:134.548560px;}
._4b{width:137.795040px;}
._4a{width:143.265960px;}
._57{width:146.726029px;}
._50{width:149.517720px;}
._5b{width:151.882308px;}
._55{width:153.764640px;}
._48{width:160.520400px;}
._30{width:164.127600px;}
._4c{width:169.538400px;}
._36{width:172.784880px;}
._41{width:188.355960px;}
._1d{width:191.602440px;}
._4f{width:201.018960px;}
._31{width:202.934772px;}
._51{width:232.844760px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:7.830000px;}
.y1d0{bottom:7.860000px;}
.ya6{bottom:7.920000px;}
.ybf{bottom:7.950000px;}
.ye0{bottom:12.330000px;}
.yd8{bottom:12.420000px;}
.y135{bottom:25.380000px;}
.yd5{bottom:25.470000px;}
.yd0{bottom:29.880000px;}
.yd7{bottom:29.970000px;}
.ydb{bottom:34.470000px;}
.y1d2{bottom:35.190000px;}
.y1ce{bottom:35.220000px;}
.y1d9{bottom:35.280000px;}
.y1b1{bottom:38.610000px;}
.y134{bottom:43.020000px;}
.y175{bottom:43.050000px;}
.y17a{bottom:43.110000px;}
.yd4{bottom:47.520000px;}
.y129{bottom:47.610000px;}
.yda{bottom:52.020000px;}
.y1a1{bottom:52.110000px;}
.y1b0{bottom:56.160000px;}
.yd2{bottom:57.330000px;}
.y133{bottom:60.570000px;}
.y17f{bottom:60.660000px;}
.y177{bottom:60.690000px;}
.y126{bottom:65.070000px;}
.y13f{bottom:65.160000px;}
.y174{bottom:65.190000px;}
.y131{bottom:69.570000px;}
.y178{bottom:69.660000px;}
.y2{bottom:73.380000px;}
.y1ac{bottom:74.070000px;}
.y2b{bottom:74.190000px;}
.yd1{bottom:74.880000px;}
.y144{bottom:78.210000px;}
.y176{bottom:78.240000px;}
.y125{bottom:82.710000px;}
.y173{bottom:82.740000px;}
.y130{bottom:87.210000px;}
.y1b4{bottom:87.240000px;}
.y1ab{bottom:91.710000px;}
.y172{bottom:95.790000px;}
.y17e{bottom:95.850000px;}
.y124{bottom:100.260000px;}
.y12e{bottom:100.290000px;}
.y162{bottom:100.350000px;}
.y181{bottom:100.380000px;}
.y1{bottom:101.640000px;}
.y1a9{bottom:104.760000px;}
.y12f{bottom:104.790000px;}
.y13e{bottom:104.850000px;}
.y1aa{bottom:109.260000px;}
.y20a{bottom:112.170000px;}
.y143{bottom:113.310000px;}
.y1af{bottom:113.400000px;}
.y5b{bottom:115.680000px;}
.y127{bottom:115.860000px;}
.y87{bottom:116.580000px;}
.y139{bottom:117.810000px;}
.y132{bottom:117.840000px;}
.y161{bottom:117.900000px;}
.y171{bottom:117.930000px;}
.y1b9{bottom:121.530000px;}
.y12d{bottom:122.340000px;}
.y123{bottom:122.400000px;}
.y1b3{bottom:122.430000px;}
.y231{bottom:122.700000px;}
.y1a2{bottom:123.600000px;}
.yce{bottom:124.320000px;}
.y14b{bottom:126.390000px;}
.y1f3{bottom:126.480000px;}
.y18d{bottom:126.750000px;}
.y1a8{bottom:126.810000px;}
.y209{bottom:129.720000px;}
.ycb{bottom:130.620000px;}
.y1ae{bottom:131.040000px;}
.y29{bottom:131.880000px;}
.y5a{bottom:133.230000px;}
.y86{bottom:134.130000px;}
.y138{bottom:135.450000px;}
.y170{bottom:135.480000px;}
.y179{bottom:135.540000px;}
.y167{bottom:138.000000px;}
.y1b8{bottom:139.170000px;}
.y122{bottom:139.950000px;}
.y12c{bottom:139.980000px;}
.y160{bottom:140.040000px;}
.y230{bottom:140.250000px;}
.y14a{bottom:143.940000px;}
.y1f2{bottom:144.120000px;}
.y18c{bottom:144.300000px;}
.y1a7{bottom:144.450000px;}
.y208{bottom:147.270000px;}
.yca{bottom:148.260000px;}
.y17c{bottom:148.590000px;}
.y28{bottom:149.520000px;}
.y1ca{bottom:150.510000px;}
.y59{bottom:150.780000px;}
.y85{bottom:151.680000px;}
.y137{bottom:153.000000px;}
.y1a4{bottom:153.030000px;}
.y17d{bottom:153.090000px;}
.y16f{bottom:153.120000px;}
.y1b7{bottom:156.720000px;}
.y121{bottom:157.500000px;}
.y12b{bottom:157.530000px;}
.y13d{bottom:157.590000px;}
.yef{bottom:158.970000px;}
.y149{bottom:161.580000px;}
.y1f1{bottom:161.670000px;}
.y1a6{bottom:162.000000px;}
.y1b6{bottom:162.090000px;}
.y207{bottom:164.910000px;}
.yc9{bottom:165.810000px;}
.y22f{bottom:166.890000px;}
.y27{bottom:167.070000px;}
.y58{bottom:168.420000px;}
.y84{bottom:169.320000px;}
.y142{bottom:170.640000px;}
.y1b5{bottom:171.660000px;}
.y15f{bottom:175.140000px;}
.yee{bottom:176.610000px;}
.yaa{bottom:178.590000px;}
.y148{bottom:179.130000px;}
.y1f0{bottom:179.220000px;}
.y120{bottom:179.640000px;}
.y18b{bottom:179.850000px;}
.y22e{bottom:184.440000px;}
.y26{bottom:184.620000px;}
.y57{bottom:185.970000px;}
.y1c9{bottom:186.060000px;}
.y141{bottom:188.220000px;}
.y166{bottom:192.690000px;}
.y15e{bottom:192.780000px;}
.y1ef{bottom:196.860000px;}
.y11f{bottom:197.190000px;}
.y13c{bottom:197.280000px;}
.y18a{bottom:197.490000px;}
.yc8{bottom:198.840000px;}
.yfc{bottom:200.460000px;}
.y25{bottom:202.260000px;}
.y83{bottom:204.870000px;}
.ya9{bottom:205.950000px;}
.y13b{bottom:210.330000px;}
.y22d{bottom:211.080000px;}
.yed{bottom:212.160000px;}
.y147{bottom:214.680000px;}
.y165{bottom:214.740000px;}
.y11e{bottom:214.830000px;}
.y206{bottom:218.100000px;}
.y10d{bottom:218.430000px;}
.y24{bottom:219.810000px;}
.y56{bottom:221.610000px;}
.y82{bottom:222.510000px;}
.y15a{bottom:223.470000px;}
.y1a0{bottom:225.750000px;}
.yc7{bottom:226.110000px;}
.y22c{bottom:228.630000px;}
.yec{bottom:229.710000px;}
.y146{bottom:232.320000px;}
.y11d{bottom:232.380000px;}
.y1ee{bottom:232.410000px;}
.y15d{bottom:232.470000px;}
.y189{bottom:233.040000px;}
.ya7{bottom:233.310000px;}
.y205{bottom:235.650000px;}
.y10c{bottom:236.070000px;}
.y55{bottom:239.160000px;}
.y81{bottom:240.060000px;}
.y153{bottom:240.510000px;}
.y159{bottom:245.520000px;}
.yeb{bottom:247.350000px;}
.y145{bottom:249.870000px;}
.y164{bottom:249.930000px;}
.y15c{bottom:250.020000px;}
.y1ed{bottom:250.050000px;}
.y188{bottom:250.680000px;}
.yc6{bottom:253.470000px;}
.y10b{bottom:253.620000px;}
.y11c{bottom:254.430000px;}
.y16d{bottom:254.520000px;}
.y22b{bottom:255.180000px;}
.y23{bottom:255.450000px;}
.y54{bottom:256.710000px;}
.y1c8{bottom:257.250000px;}
.y80{bottom:257.610000px;}
.y152{bottom:258.060000px;}
.ya5{bottom:260.580000px;}
.y158{bottom:263.100000px;}
.yea{bottom:264.900000px;}
.y16b{bottom:267.570000px;}
.y15b{bottom:267.600000px;}
.y204{bottom:271.200000px;}
.y10a{bottom:271.290000px;}
.y16c{bottom:272.070000px;}
.y11b{bottom:272.100000px;}
.y22a{bottom:272.820000px;}
.y22{bottom:273.000000px;}
.y53{bottom:274.350000px;}
.y7f{bottom:275.250000px;}
.y151{bottom:275.610000px;}
.yc5{bottom:280.830000px;}
.y140{bottom:282.900000px;}
.y1ec{bottom:285.150000px;}
.y157{bottom:285.240000px;}
.y187{bottom:286.230000px;}
.y203{bottom:288.840000px;}
.y16a{bottom:289.620000px;}
.y11a{bottom:289.650000px;}
.y52{bottom:291.900000px;}
.y1c7{bottom:292.800000px;}
.y150{bottom:293.250000px;}
.y109{bottom:293.340000px;}
.y229{bottom:299.370000px;}
.y21{bottom:299.910000px;}
.ye9{bottom:300.540000px;}
.y156{bottom:302.790000px;}
.y186{bottom:303.780000px;}
.y202{bottom:306.390000px;}
.y169{bottom:307.260000px;}
.y115{bottom:307.290000px;}
.ya4{bottom:309.360000px;}
.y7e{bottom:310.800000px;}
.y108{bottom:315.390000px;}
.y228{bottom:317.010000px;}
.ye8{bottom:318.090000px;}
.y185{bottom:321.420000px;}
.y201{bottom:323.940000px;}
.y168{bottom:324.810000px;}
.y114{bottom:324.840000px;}
.y51{bottom:327.540000px;}
.y7d{bottom:328.440000px;}
.yc4{bottom:329.520000px;}
.ya3{bottom:335.910000px;}
.y107{bottom:337.530000px;}
.y1eb{bottom:338.340000px;}
.y184{bottom:338.970000px;}
.y113{bottom:342.390000px;}
.y227{bottom:343.560000px;}
.y50{bottom:345.090000px;}
.y7c{bottom:345.990000px;}
.y20{bottom:348.150000px;}
.ye7{bottom:353.640000px;}
.y1ea{bottom:355.980000px;}
.yc3{bottom:356.070000px;}
.y183{bottom:356.610000px;}
.y106{bottom:359.580000px;}
.y112{bottom:360.030000px;}
.y226{bottom:361.110000px;}
.y4f{bottom:362.640000px;}
.y7b{bottom:363.540000px;}
.y1c6{bottom:363.990000px;}
.y119{bottom:364.530000px;}
.y1f{bottom:366.060000px;}
.ye6{bottom:371.280000px;}
.ya2{bottom:371.460000px;}
.y1e9{bottom:373.530000px;}
.y182{bottom:374.160000px;}
.y200{bottom:377.130000px;}
.y111{bottom:377.580000px;}
.y4e{bottom:380.280000px;}
.y7a{bottom:381.180000px;}
.y1c5{bottom:381.540000px;}
.y105{bottom:381.630000px;}
.y118{bottom:382.080000px;}
.y19f{bottom:385.230000px;}
.y225{bottom:387.750000px;}
.y1b2{bottom:388.380000px;}
.ye5{bottom:388.830000px;}
.ya1{bottom:389.100000px;}
.y1e8{bottom:391.080000px;}
.yc2{bottom:391.710000px;}
.y1ff{bottom:394.770000px;}
.y4d{bottom:397.830000px;}
.y14f{bottom:399.180000px;}
.y110{bottom:399.630000px;}
.y1e{bottom:403.140000px;}
.y104{bottom:403.770000px;}
.y224{bottom:405.300000px;}
.ye4{bottom:406.470000px;}
.y180{bottom:407.100000px;}
.y1e7{bottom:408.720000px;}
.yc1{bottom:409.260000px;}
.y1fe{bottom:412.320000px;}
.ya0{bottom:415.650000px;}
.y79{bottom:416.730000px;}
.y117{bottom:417.270000px;}
.y1d{bottom:420.690000px;}
.y10f{bottom:421.770000px;}
.y223{bottom:422.940000px;}
.ye3{bottom:424.020000px;}
.y103{bottom:425.820000px;}
.y4c{bottom:433.470000px;}
.y78{bottom:434.370000px;}
.y116{bottom:434.820000px;}
.y1c{bottom:438.240000px;}
.y10e{bottom:439.320000px;}
.ye2{bottom:441.570000px;}
.yc0{bottom:442.200000px;}
.y1e6{bottom:443.550000px;}
.y1fd{bottom:447.870000px;}
.y102{bottom:447.960000px;}
.y222{bottom:449.490000px;}
.y4b{bottom:451.020000px;}
.y19e{bottom:451.470000px;}
.y9f{bottom:451.560000px;}
.y77{bottom:451.920000px;}
.y1e5{bottom:455.700000px;}
.y1b{bottom:455.880000px;}
.y100{bottom:456.960000px;}
.y1fc{bottom:465.510000px;}
.y221{bottom:467.040000px;}
.y4a{bottom:468.570000px;}
.y76{bottom:469.470000px;}
.ybe{bottom:469.560000px;}
.y101{bottom:470.010000px;}
.y1a{bottom:473.460000px;}
.yff{bottom:474.510000px;}
.ye1{bottom:474.630000px;}
.y163{bottom:482.370000px;}
.y1e3{bottom:483.090000px;}
.y220{bottom:484.710000px;}
.y49{bottom:486.240000px;}
.y75{bottom:487.140000px;}
.y1c4{bottom:487.500000px;}
.y13a{bottom:490.560000px;}
.y19{bottom:491.100000px;}
.yfe{bottom:492.060000px;}
.ybd{bottom:496.950000px;}
.y9e{bottom:499.830000px;}
.y48{bottom:503.790000px;}
.y74{bottom:504.690000px;}
.y1c3{bottom:505.140000px;}
.y18{bottom:508.650000px;}
.yfd{bottom:509.700000px;}
.y1fb{bottom:510.000000px;}
.y1e4{bottom:510.450000px;}
.y21f{bottom:511.260000px;}
.y23f{bottom:513.330000px;}
.y9d{bottom:517.470000px;}
.y19d{bottom:522.330000px;}
.y14e{bottom:522.690000px;}
.ydf{bottom:524.040000px;}
.ybc{bottom:524.310000px;}
.y17{bottom:526.200000px;}
.y21e{bottom:528.900000px;}
.y47{bottom:530.700000px;}
.y23e{bottom:530.880000px;}
.y9c{bottom:535.020000px;}
.y1e1{bottom:537.810000px;}
.y19c{bottom:539.880000px;}
.y73{bottom:540.330000px;}
.y16{bottom:543.840000px;}
.y1ad{bottom:547.800000px;}
.ybb{bottom:551.580000px;}
.y9b{bottom:552.660000px;}
.y21d{bottom:555.450000px;}
.y23d{bottom:557.430000px;}
.y72{bottom:557.880000px;}
.y1fa{bottom:558.330000px;}
.y15{bottom:561.390000px;}
.y1e2{bottom:565.080000px;}
.y9a{bottom:570.210000px;}
.y21c{bottom:573.000000px;}
.y23c{bottom:575.070000px;}
.y71{bottom:575.430000px;}
.y1f9{bottom:575.880000px;}
.y46{bottom:578.940000px;}
.y14{bottom:579.030000px;}
.y17b{bottom:579.660000px;}
.y99{bottom:587.760000px;}
.y1df{bottom:592.440000px;}
.y70{bottom:593.070000px;}
.y1f8{bottom:593.430000px;}
.yde{bottom:595.500000px;}
.y13{bottom:596.580000px;}
.y45{bottom:597.390000px;}
.y21b{bottom:599.640000px;}
.y23b{bottom:601.620000px;}
.yba{bottom:606.300000px;}
.y6f{bottom:610.620000px;}
.y1c2{bottom:611.070000px;}
.y12{bottom:614.130000px;}
.y44{bottom:614.940000px;}
.y23a{bottom:619.260000px;}
.y1e0{bottom:619.800000px;}
.y98{bottom:623.400000px;}
.y21a{bottom:626.190000px;}
.y6e{bottom:628.260000px;}
.y1c1{bottom:628.620000px;}
.y11{bottom:631.770000px;}
.y43{bottom:633.390000px;}
.yb9{bottom:633.660000px;}
.y239{bottom:636.810000px;}
.y97{bottom:640.950000px;}
.y219{bottom:643.830000px;}
.y19b{bottom:645.810000px;}
.y14d{bottom:646.260000px;}
.y1dd{bottom:647.160000px;}
.y10{bottom:649.320000px;}
.y42{bottom:650.940000px;}
.y96{bottom:658.590000px;}
.y19a{bottom:663.360000px;}
.y6d{bottom:663.810000px;}
.yf{bottom:666.960000px;}
.ydd{bottom:667.050000px;}
.y41{bottom:669.390000px;}
.y218{bottom:670.380000px;}
.y1de{bottom:674.430000px;}
.y95{bottom:676.140000px;}
.y199{bottom:681.000000px;}
.y6c{bottom:681.360000px;}
.y1f7{bottom:681.810000px;}
.yb8{bottom:682.350000px;}
.ye{bottom:684.510000px;}
.y40{bottom:686.940000px;}
.y217{bottom:687.930000px;}
.y6b{bottom:699.000000px;}
.y1c0{bottom:699.360000px;}
.y1db{bottom:701.790000px;}
.yd{bottom:702.060000px;}
.y3f{bottom:704.580000px;}
.y238{bottom:707.550000px;}
.yb7{bottom:708.900000px;}
.y94{bottom:711.690000px;}
.y216{bottom:714.570000px;}
.y6a{bottom:716.550000px;}
.y1bf{bottom:717.000000px;}
.yc{bottom:719.700000px;}
.y3e{bottom:722.130000px;}
.y237{bottom:725.190000px;}
.y1dc{bottom:729.150000px;}
.y93{bottom:729.330000px;}
.yfb{bottom:729.600000px;}
.y215{bottom:732.120000px;}
.y69{bottom:734.190000px;}
.y1be{bottom:734.550000px;}
.yb{bottom:737.250000px;}
.y1a5{bottom:737.970000px;}
.ydc{bottom:738.510000px;}
.y3d{bottom:739.680000px;}
.y136{bottom:742.470000px;}
.y236{bottom:742.740000px;}
.yb6{bottom:744.450000px;}
.y92{bottom:746.880000px;}
.y155{bottom:751.740000px;}
.y1bd{bottom:752.190000px;}
.ya{bottom:754.890000px;}
.y1d8{bottom:756.420000px;}
.y214{bottom:758.670000px;}
.yb5{bottom:762.090000px;}
.y91{bottom:764.520000px;}
.y198{bottom:769.290000px;}
.y68{bottom:769.740000px;}
.y3c{bottom:776.130000px;}
.y213{bottom:776.310000px;}
.yb4{bottom:779.640000px;}
.y9{bottom:781.800000px;}
.y1da{bottom:783.780000px;}
.y197{bottom:786.930000px;}
.y67{bottom:787.290000px;}
.y1bc{bottom:787.740000px;}
.yfa{bottom:795.930000px;}
.yb3{bottom:797.280000px;}
.y90{bottom:800.070000px;}
.y212{bottom:802.860000px;}
.y196{bottom:804.480000px;}
.y66{bottom:804.930000px;}
.y1bb{bottom:805.290000px;}
.yd9{bottom:810.060000px;}
.y1d6{bottom:811.140000px;}
.y3b{bottom:811.770000px;}
.y235{bottom:813.480000px;}
.y8f{bottom:817.620000px;}
.y211{bottom:820.500000px;}
.y14c{bottom:822.480000px;}
.y1ba{bottom:822.930000px;}
.y3a{bottom:829.320000px;}
.y8{bottom:830.040000px;}
.yb2{bottom:830.220000px;}
.y234{bottom:831.030000px;}
.yf9{bottom:831.480000px;}
.y8e{bottom:835.260000px;}
.y1d7{bottom:838.500000px;}
.y195{bottom:840.030000px;}
.y65{bottom:840.480000px;}
.y39{bottom:846.870000px;}
.y210{bottom:847.050000px;}
.yf8{bottom:849.030000px;}
.y8d{bottom:852.810000px;}
.yb1{bottom:857.580000px;}
.y194{bottom:857.670000px;}
.y64{bottom:858.030000px;}
.y20f{bottom:864.600000px;}
.y1d4{bottom:865.770000px;}
.y7{bottom:865.860000px;}
.yf7{bottom:866.670000px;}
.y38{bottom:873.780000px;}
.y193{bottom:875.220000px;}
.y63{bottom:875.670000px;}
.yd6{bottom:881.520000px;}
.yf6{bottom:884.220000px;}
.yb0{bottom:884.850000px;}
.y8c{bottom:888.450000px;}
.y20e{bottom:891.510000px;}
.y192{bottom:892.860000px;}
.y1d5{bottom:893.130000px;}
.y62{bottom:893.220000px;}
.y6{bottom:901.860000px;}
.y8b{bottom:906.000000px;}
.y191{bottom:910.410000px;}
.y37{bottom:910.860000px;}
.yaf{bottom:912.210000px;}
.y12a{bottom:915.000000px;}
.y233{bottom:919.410000px;}
.y1a3{bottom:919.500000px;}
.yf5{bottom:919.860000px;}
.y1d1{bottom:920.490000px;}
.y8a{bottom:923.550000px;}
.y190{bottom:927.960000px;}
.y36{bottom:928.410000px;}
.y1f6{bottom:928.860000px;}
.ycd{bottom:930.930000px;}
.yf4{bottom:937.410000px;}
.y5{bottom:937.860000px;}
.yae{bottom:939.570000px;}
.y20d{bottom:939.840000px;}
.y35{bottom:945.960000px;}
.y61{bottom:946.410000px;}
.y1d3{bottom:947.850000px;}
.y89{bottom:950.190000px;}
.yf3{bottom:954.960000px;}
.yd3{bottom:958.290000px;}
.y34{bottom:963.600000px;}
.y60{bottom:963.960000px;}
.y20c{bottom:966.750000px;}
.yad{bottom:966.930000px;}
.yf2{bottom:972.600000px;}
.y4{bottom:973.950000px;}
.y1cd{bottom:975.120000px;}
.y18f{bottom:981.150000px;}
.y5f{bottom:981.600000px;}
.y16e{bottom:981.960000px;}
.y88{bottom:986.100000px;}
.yf1{bottom:990.150000px;}
.yac{bottom:994.200000px;}
.y18e{bottom:998.790000px;}
.y33{bottom:999.150000px;}
.y1cf{bottom:1002.480000px;}
.y20b{bottom:1004.100000px;}
.yf0{bottom:1007.790000px;}
.y3{bottom:1012.230000px;}
.y32{bottom:1016.820000px;}
.ycf{bottom:1025.370000px;}
.y1cc{bottom:1029.870000px;}
.y31{bottom:1034.370000px;}
.y1f5{bottom:1034.820000px;}
.yab{bottom:1042.920000px;}
.y5e{bottom:1051.920000px;}
.y1f4{bottom:1052.370000px;}
.y5d{bottom:1069.560000px;}
.y30{bottom:1069.920000px;}
.y154{bottom:1073.970000px;}
.y1cb{bottom:1078.560000px;}
.y5c{bottom:1087.110000px;}
.y2f{bottom:1087.560000px;}
.y128{bottom:1091.970000px;}
.ycc{bottom:1096.110000px;}
.y2e{bottom:1105.110000px;}
.y232{bottom:1113.750000px;}
.y2d{bottom:1122.750000px;}
.y2c{bottom:1140.300000px;}
.y2a{bottom:1194.300000px;}
.he{height:26.550000px;}
.h2b{height:26.580000px;}
.hd{height:26.640000px;}
.hf{height:26.670000px;}
.h2{height:30.022383px;}
.h3{height:39.221191px;}
.h2e{height:41.731348px;}
.h16{height:44.190000px;}
.h11{height:48.600000px;}
.h14{height:48.690000px;}
.h6{height:50.902383px;}
.h7{height:52.399512px;}
.h2c{height:53.910000px;}
.h2a{height:53.940000px;}
.h2d{height:54.000000px;}
.h8{height:55.779258px;}
.h5{height:57.419824px;}
.hc{height:59.973223px;}
.h9{height:61.793886px;}
.h19{height:61.830000px;}
.hb{height:62.585859px;}
.h13{height:66.270000px;}
.ha{height:68.582109px;}
.h15{height:70.740000px;}
.h4{height:73.108301px;}
.h18{height:83.790000px;}
.h12{height:93.630000px;}
.h25{height:101.430000px;}
.h10{height:143.040000px;}
.h28{height:158.700000px;}
.h24{height:158.760000px;}
.h1b{height:171.720000px;}
.h26{height:171.750000px;}
.h21{height:171.840000px;}
.h1a{height:176.250000px;}
.h27{height:180.720000px;}
.h23{height:189.360000px;}
.h1d{height:206.940000px;}
.h22{height:211.500000px;}
.h29{height:216.000000px;}
.h1c{height:251.100000px;}
.h1f{height:268.650000px;}
.h1e{height:321.510000px;}
.h20{height:343.560000px;}
.h17{height:528.420000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:16.560000px;}
.w18{width:38.610000px;}
.w12{width:49.230000px;}
.w10{width:51.300000px;}
.w27{width:52.020000px;}
.w3{width:66.060000px;}
.w28{width:66.240000px;}
.w13{width:67.590000px;}
.w8{width:68.040000px;}
.wb{width:69.030000px;}
.wd{width:69.120000px;}
.w5{width:69.150000px;}
.w29{width:69.750000px;}
.w2a{width:79.500000px;}
.w17{width:82.440000px;}
.w7{width:87.150000px;}
.w4{width:88.470000px;}
.wa{width:88.500000px;}
.w14{width:93.150000px;}
.w15{width:99.660000px;}
.w22{width:100.560000px;}
.w1e{width:102.720000px;}
.w1a{width:104.070000px;}
.w23{width:129.780000px;}
.w1f{width:139.500000px;}
.w1b{width:140.310000px;}
.w9{width:159.030000px;}
.w16{width:165.690000px;}
.w19{width:167.790000px;}
.w6{width:177.570000px;}
.wc{width:200.340000px;}
.we{width:207.210000px;}
.w1d{width:217.980000px;}
.w2b{width:220.500000px;}
.w26{width:227.820000px;}
.w21{width:230.580000px;}
.w24{width:252.750000px;}
.w25{width:270.450000px;}
.w20{width:280.650000px;}
.w1c{width:291.090000px;}
.wf{width:428.430000px;}
.w2c{width:719.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.710000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x2b{left:79.560000px;}
.x32{left:86.760000px;}
.x26{left:90.000000px;}
.x4{left:95.039987px;}
.x2c{left:101.340000px;}
.x1c{left:108.180000px;}
.x27{left:109.530000px;}
.x38{left:111.239987px;}
.x5{left:121.229987px;}
.x28{left:141.390000px;}
.x2d{left:162.090000px;}
.x23{left:170.040000px;}
.x20{left:172.200000px;}
.x1d{left:173.550000px;}
.x2e{left:184.140000px;}
.x2f{left:199.800000px;}
.x29{left:205.110000px;}
.x2{left:211.079987px;}
.x30{left:221.670000px;}
.x2a{left:224.730000px;}
.x31{left:262.710000px;}
.x10{left:266.880000px;}
.x14{left:276.690000px;}
.xa{left:279.480000px;}
.xd{left:287.580000px;}
.x24{left:300.540000px;}
.x21{left:312.420000px;}
.x1e{left:314.580000px;}
.x6{left:334.020000px;}
.x18{left:345.000000px;}
.x33{left:368.130000px;}
.x37{left:396.029987px;}
.x8{left:400.890000px;}
.x34{left:435.180000px;}
.x19{left:438.960000px;}
.xe{left:447.330000px;}
.xb{left:457.860000px;}
.x11{left:468.030000px;}
.x9{left:490.080000px;}
.x35{left:505.650000px;}
.xf{left:536.640000px;}
.x1a{left:539.430000px;}
.xc{left:545.730000px;}
.x25{left:554.010000px;}
.x12{left:557.250000px;}
.x36{left:585.960000px;}
.x22{left:593.880000px;}
.x1f{left:606.480000px;}
.x1b{left:622.680000px;}
.x15{left:705.930000px;}
.x16{left:757.950000px;}
.x17{left:775.230000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls24{letter-spacing:-1.642667pt;}
.ls3c{letter-spacing:-1.514667pt;}
.ls33{letter-spacing:-1.498667pt;}
.ls21{letter-spacing:-1.445333pt;}
.ls3a{letter-spacing:-1.194667pt;}
.ls23{letter-spacing:-1.184000pt;}
.ls30{letter-spacing:-1.157333pt;}
.ls34{letter-spacing:-1.136000pt;}
.lsb{letter-spacing:-1.125333pt;}
.lsd{letter-spacing:-0.404800pt;}
.ls39{letter-spacing:-0.402133pt;}
.ls3b{letter-spacing:-0.379733pt;}
.ls22{letter-spacing:-0.216533pt;}
.ls38{letter-spacing:-0.213867pt;}
.ls1d{letter-spacing:-0.165867pt;}
.ls13{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.120000pt;}
.ls1e{letter-spacing:-0.111467pt;}
.ls16{letter-spacing:-0.107733pt;}
.lsc{letter-spacing:-0.086933pt;}
.ls28{letter-spacing:-0.082133pt;}
.ls8{letter-spacing:-0.080000pt;}
.ls10{letter-spacing:-0.075200pt;}
.lsf{letter-spacing:-0.074667pt;}
.ls12{letter-spacing:-0.059733pt;}
.ls20{letter-spacing:-0.056533pt;}
.ls35{letter-spacing:-0.039680pt;}
.ls11{letter-spacing:-0.010133pt;}
.ls36{letter-spacing:-0.009920pt;}
.ls25{letter-spacing:-0.007360pt;}
.lse{letter-spacing:-0.002667pt;}
.ls29{letter-spacing:-0.002245pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.040320pt;}
.ls1f{letter-spacing:0.043520pt;}
.ls2b{letter-spacing:0.050560pt;}
.ls18{letter-spacing:0.057600pt;}
.ls17{letter-spacing:0.065920pt;}
.lsa{letter-spacing:0.074133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls15{letter-spacing:0.100800pt;}
.ls14{letter-spacing:0.103467pt;}
.ls26{letter-spacing:0.105067pt;}
.ls2c{letter-spacing:0.106133pt;}
.ls2a{letter-spacing:0.123200pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.154133pt;}
.ls3{letter-spacing:0.155200pt;}
.ls37{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls32{letter-spacing:5.600000pt;}
.ls31{letter-spacing:5.813333pt;}
.ls4{letter-spacing:9.683200pt;}
.ls27{letter-spacing:10.986667pt;}
.ls2d{letter-spacing:11.360000pt;}
.ls2f{letter-spacing:11.573333pt;}
.ls2e{letter-spacing:11.786667pt;}
.ls1a{letter-spacing:28.663680pt;}
.ls3e{letter-spacing:42.423680pt;}
.ls19{letter-spacing:56.503680pt;}
.ls3d{letter-spacing:71.863680pt;}
.ws3{word-spacing:-12.957333pt;}
.wsf{word-spacing:-12.883200pt;}
.ws7{word-spacing:-12.880533pt;}
.ws5{word-spacing:-12.796267pt;}
.ws14{word-spacing:-12.775467pt;}
.ws6{word-spacing:-12.478400pt;}
.ws26{word-spacing:-11.933867pt;}
.ws11{word-spacing:-11.910933pt;}
.ws25{word-spacing:-11.880000pt;}
.ws21{word-spacing:-11.862933pt;}
.ws1e{word-spacing:-11.861867pt;}
.wsc{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.857600pt;}
.ws27{word-spacing:-11.807360pt;}
.ws16{word-spacing:-11.800320pt;}
.ws8{word-spacing:-11.756800pt;}
.ws20{word-spacing:-11.754555pt;}
.ws1d{word-spacing:-11.749440pt;}
.ws24{word-spacing:-11.746880pt;}
.ws9{word-spacing:-11.746667pt;}
.ws23{word-spacing:-11.717120pt;}
.ws17{word-spacing:-11.700267pt;}
.wsa{word-spacing:-11.697067pt;}
.ws1f{word-spacing:-11.674667pt;}
.ws15{word-spacing:-11.645333pt;}
.wsb{word-spacing:-11.620267pt;}
.ws12{word-spacing:-11.590933pt;}
.ws28{word-spacing:-11.542933pt;}
.ws1a{word-spacing:-11.540267pt;}
.ws2b{word-spacing:-11.377067pt;}
.ws29{word-spacing:-11.354667pt;}
.ws19{word-spacing:-10.631467pt;}
.ws22{word-spacing:-10.599467pt;}
.ws1b{word-spacing:-10.572800pt;}
.ws2a{word-spacing:-10.562133pt;}
.ws0{word-spacing:-10.432000pt;}
.ws18{word-spacing:-10.311467pt;}
.ws2c{word-spacing:-10.242133pt;}
.ws1c{word-spacing:-10.114133pt;}
.ws1{word-spacing:-8.720000pt;}
.ws2{word-spacing:-8.680000pt;}
.ws4{word-spacing:-8.236800pt;}
.ws13{word-spacing:-0.053440pt;}
.ws10{word-spacing:0.000000pt;}
.wse{word-spacing:3.826560pt;}
._d{margin-left:-4.632843pt;}
._e{margin-left:-3.710964pt;}
._10{margin-left:-2.813409pt;}
._0{margin-left:-1.877333pt;}
._1{margin-left:-0.944000pt;}
._2{width:0.969056pt;}
._b{width:2.650560pt;}
._c{width:3.635947pt;}
._14{width:5.023467pt;}
._15{width:5.926504pt;}
._7{width:6.893867pt;}
._3{width:8.176534pt;}
._4{width:9.066895pt;}
._6{width:9.993066pt;}
._5{width:13.360000pt;}
._a{width:14.278956pt;}
._11{width:15.694821pt;}
._12{width:17.060204pt;}
._13{width:18.169600pt;}
._9{width:19.511999pt;}
._8{width:20.521067pt;}
._1e{width:21.536320pt;}
._23{width:23.086080pt;}
._3a{width:24.048000pt;}
._f{width:25.381975pt;}
._46{width:26.882345pt;}
._34{width:28.056000pt;}
._2a{width:29.392000pt;}
._22{width:31.048640pt;}
._3f{width:32.117440pt;}
._1c{width:34.522240pt;}
._2c{width:35.758293pt;}
._40{width:36.980480pt;}
._27{width:37.888960pt;}
._2e{width:38.904320pt;}
._2d{width:40.240320pt;}
._1a{width:41.790080pt;}
._3e{width:43.339840pt;}
._19{width:44.515520pt;}
._24{width:45.851520pt;}
._58{width:46.754560pt;}
._25{width:48.202880pt;}
._26{width:49.271680pt;}
._45{width:50.393717pt;}
._3d{width:51.302400pt;}
._35{width:52.691840pt;}
._43{width:53.867520pt;}
._2f{width:58.926400pt;}
._42{width:60.832640pt;}
._3b{width:61.883520pt;}
._20{width:63.272960pt;}
._54{width:64.250891pt;}
._52{width:65.677760pt;}
._44{width:67.868597pt;}
._1f{width:69.097920pt;}
._4d{width:71.449280pt;}
._4e{width:72.342827pt;}
._53{width:73.373120pt;}
._32{width:74.645760pt;}
._59{width:75.845760pt;}
._49{width:77.202880pt;}
._38{width:78.574720pt;}
._33{width:80.088640pt;}
._1b{width:81.816640pt;}
._3c{width:83.366400pt;}
._37{width:93.500160pt;}
._56{width:98.362133pt;}
._21{width:104.791467pt;}
._2b{width:108.322880pt;}
._39{width:110.246720pt;}
._16{width:111.631862pt;}
._17{width:114.196800pt;}
._18{width:115.149120pt;}
._5a{width:116.071680pt;}
._47{width:117.568000pt;}
._29{width:118.583360pt;}
._28{width:119.598720pt;}
._4b{width:122.484480pt;}
._4a{width:127.347520pt;}
._57{width:130.423137pt;}
._50{width:132.904640pt;}
._5b{width:135.006496pt;}
._55{width:136.679680pt;}
._48{width:142.684800pt;}
._30{width:145.891200pt;}
._4c{width:150.700800pt;}
._36{width:153.586560pt;}
._41{width:167.427520pt;}
._1d{width:170.313280pt;}
._4f{width:178.683520pt;}
._31{width:180.386464pt;}
._51{width:206.973120pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:6.960000pt;}
.y1d0{bottom:6.986667pt;}
.ya6{bottom:7.040000pt;}
.ybf{bottom:7.066667pt;}
.ye0{bottom:10.960000pt;}
.yd8{bottom:11.040000pt;}
.y135{bottom:22.560000pt;}
.yd5{bottom:22.640000pt;}
.yd0{bottom:26.560000pt;}
.yd7{bottom:26.640000pt;}
.ydb{bottom:30.640000pt;}
.y1d2{bottom:31.280000pt;}
.y1ce{bottom:31.306667pt;}
.y1d9{bottom:31.360000pt;}
.y1b1{bottom:34.320000pt;}
.y134{bottom:38.240000pt;}
.y175{bottom:38.266667pt;}
.y17a{bottom:38.320000pt;}
.yd4{bottom:42.240000pt;}
.y129{bottom:42.320000pt;}
.yda{bottom:46.240000pt;}
.y1a1{bottom:46.320000pt;}
.y1b0{bottom:49.920000pt;}
.yd2{bottom:50.960000pt;}
.y133{bottom:53.840000pt;}
.y17f{bottom:53.920000pt;}
.y177{bottom:53.946667pt;}
.y126{bottom:57.840000pt;}
.y13f{bottom:57.920000pt;}
.y174{bottom:57.946667pt;}
.y131{bottom:61.840000pt;}
.y178{bottom:61.920000pt;}
.y2{bottom:65.226667pt;}
.y1ac{bottom:65.840000pt;}
.y2b{bottom:65.946667pt;}
.yd1{bottom:66.560000pt;}
.y144{bottom:69.520000pt;}
.y176{bottom:69.546667pt;}
.y125{bottom:73.520000pt;}
.y173{bottom:73.546667pt;}
.y130{bottom:77.520000pt;}
.y1b4{bottom:77.546667pt;}
.y1ab{bottom:81.520000pt;}
.y172{bottom:85.146667pt;}
.y17e{bottom:85.200000pt;}
.y124{bottom:89.120000pt;}
.y12e{bottom:89.146667pt;}
.y162{bottom:89.200000pt;}
.y181{bottom:89.226667pt;}
.y1{bottom:90.346667pt;}
.y1a9{bottom:93.120000pt;}
.y12f{bottom:93.146667pt;}
.y13e{bottom:93.200000pt;}
.y1aa{bottom:97.120000pt;}
.y20a{bottom:99.706667pt;}
.y143{bottom:100.720000pt;}
.y1af{bottom:100.800000pt;}
.y5b{bottom:102.826667pt;}
.y127{bottom:102.986667pt;}
.y87{bottom:103.626667pt;}
.y139{bottom:104.720000pt;}
.y132{bottom:104.746667pt;}
.y161{bottom:104.800000pt;}
.y171{bottom:104.826667pt;}
.y1b9{bottom:108.026667pt;}
.y12d{bottom:108.746667pt;}
.y123{bottom:108.800000pt;}
.y1b3{bottom:108.826667pt;}
.y231{bottom:109.066667pt;}
.y1a2{bottom:109.866667pt;}
.yce{bottom:110.506667pt;}
.y14b{bottom:112.346667pt;}
.y1f3{bottom:112.426667pt;}
.y18d{bottom:112.666667pt;}
.y1a8{bottom:112.720000pt;}
.y209{bottom:115.306667pt;}
.ycb{bottom:116.106667pt;}
.y1ae{bottom:116.480000pt;}
.y29{bottom:117.226667pt;}
.y5a{bottom:118.426667pt;}
.y86{bottom:119.226667pt;}
.y138{bottom:120.400000pt;}
.y170{bottom:120.426667pt;}
.y179{bottom:120.480000pt;}
.y167{bottom:122.666667pt;}
.y1b8{bottom:123.706667pt;}
.y122{bottom:124.400000pt;}
.y12c{bottom:124.426667pt;}
.y160{bottom:124.480000pt;}
.y230{bottom:124.666667pt;}
.y14a{bottom:127.946667pt;}
.y1f2{bottom:128.106667pt;}
.y18c{bottom:128.266667pt;}
.y1a7{bottom:128.400000pt;}
.y208{bottom:130.906667pt;}
.yca{bottom:131.786667pt;}
.y17c{bottom:132.080000pt;}
.y28{bottom:132.906667pt;}
.y1ca{bottom:133.786667pt;}
.y59{bottom:134.026667pt;}
.y85{bottom:134.826667pt;}
.y137{bottom:136.000000pt;}
.y1a4{bottom:136.026667pt;}
.y17d{bottom:136.080000pt;}
.y16f{bottom:136.106667pt;}
.y1b7{bottom:139.306667pt;}
.y121{bottom:140.000000pt;}
.y12b{bottom:140.026667pt;}
.y13d{bottom:140.080000pt;}
.yef{bottom:141.306667pt;}
.y149{bottom:143.626667pt;}
.y1f1{bottom:143.706667pt;}
.y1a6{bottom:144.000000pt;}
.y1b6{bottom:144.080000pt;}
.y207{bottom:146.586667pt;}
.yc9{bottom:147.386667pt;}
.y22f{bottom:148.346667pt;}
.y27{bottom:148.506667pt;}
.y58{bottom:149.706667pt;}
.y84{bottom:150.506667pt;}
.y142{bottom:151.680000pt;}
.y1b5{bottom:152.586667pt;}
.y15f{bottom:155.680000pt;}
.yee{bottom:156.986667pt;}
.yaa{bottom:158.746667pt;}
.y148{bottom:159.226667pt;}
.y1f0{bottom:159.306667pt;}
.y120{bottom:159.680000pt;}
.y18b{bottom:159.866667pt;}
.y22e{bottom:163.946667pt;}
.y26{bottom:164.106667pt;}
.y57{bottom:165.306667pt;}
.y1c9{bottom:165.386667pt;}
.y141{bottom:167.306667pt;}
.y166{bottom:171.280000pt;}
.y15e{bottom:171.360000pt;}
.y1ef{bottom:174.986667pt;}
.y11f{bottom:175.280000pt;}
.y13c{bottom:175.360000pt;}
.y18a{bottom:175.546667pt;}
.yc8{bottom:176.746667pt;}
.yfc{bottom:178.186667pt;}
.y25{bottom:179.786667pt;}
.y83{bottom:182.106667pt;}
.ya9{bottom:183.066667pt;}
.y13b{bottom:186.960000pt;}
.y22d{bottom:187.626667pt;}
.yed{bottom:188.586667pt;}
.y147{bottom:190.826667pt;}
.y165{bottom:190.880000pt;}
.y11e{bottom:190.960000pt;}
.y206{bottom:193.866667pt;}
.y10d{bottom:194.160000pt;}
.y24{bottom:195.386667pt;}
.y56{bottom:196.986667pt;}
.y82{bottom:197.786667pt;}
.y15a{bottom:198.640000pt;}
.y1a0{bottom:200.666667pt;}
.yc7{bottom:200.986667pt;}
.y22c{bottom:203.226667pt;}
.yec{bottom:204.186667pt;}
.y146{bottom:206.506667pt;}
.y11d{bottom:206.560000pt;}
.y1ee{bottom:206.586667pt;}
.y15d{bottom:206.640000pt;}
.y189{bottom:207.146667pt;}
.ya7{bottom:207.386667pt;}
.y205{bottom:209.466667pt;}
.y10c{bottom:209.840000pt;}
.y55{bottom:212.586667pt;}
.y81{bottom:213.386667pt;}
.y153{bottom:213.786667pt;}
.y159{bottom:218.240000pt;}
.yeb{bottom:219.866667pt;}
.y145{bottom:222.106667pt;}
.y164{bottom:222.160000pt;}
.y15c{bottom:222.240000pt;}
.y1ed{bottom:222.266667pt;}
.y188{bottom:222.826667pt;}
.yc6{bottom:225.306667pt;}
.y10b{bottom:225.440000pt;}
.y11c{bottom:226.160000pt;}
.y16d{bottom:226.240000pt;}
.y22b{bottom:226.826667pt;}
.y23{bottom:227.066667pt;}
.y54{bottom:228.186667pt;}
.y1c8{bottom:228.666667pt;}
.y80{bottom:228.986667pt;}
.y152{bottom:229.386667pt;}
.ya5{bottom:231.626667pt;}
.y158{bottom:233.866667pt;}
.yea{bottom:235.466667pt;}
.y16b{bottom:237.840000pt;}
.y15b{bottom:237.866667pt;}
.y204{bottom:241.066667pt;}
.y10a{bottom:241.146667pt;}
.y16c{bottom:241.840000pt;}
.y11b{bottom:241.866667pt;}
.y22a{bottom:242.506667pt;}
.y22{bottom:242.666667pt;}
.y53{bottom:243.866667pt;}
.y7f{bottom:244.666667pt;}
.y151{bottom:244.986667pt;}
.yc5{bottom:249.626667pt;}
.y140{bottom:251.466667pt;}
.y1ec{bottom:253.466667pt;}
.y157{bottom:253.546667pt;}
.y187{bottom:254.426667pt;}
.y203{bottom:256.746667pt;}
.y16a{bottom:257.440000pt;}
.y11a{bottom:257.466667pt;}
.y52{bottom:259.466667pt;}
.y1c7{bottom:260.266667pt;}
.y150{bottom:260.666667pt;}
.y109{bottom:260.746667pt;}
.y229{bottom:266.106667pt;}
.y21{bottom:266.586667pt;}
.ye9{bottom:267.146667pt;}
.y156{bottom:269.146667pt;}
.y186{bottom:270.026667pt;}
.y202{bottom:272.346667pt;}
.y169{bottom:273.120000pt;}
.y115{bottom:273.146667pt;}
.ya4{bottom:274.986667pt;}
.y7e{bottom:276.266667pt;}
.y108{bottom:280.346667pt;}
.y228{bottom:281.786667pt;}
.ye8{bottom:282.746667pt;}
.y185{bottom:285.706667pt;}
.y201{bottom:287.946667pt;}
.y168{bottom:288.720000pt;}
.y114{bottom:288.746667pt;}
.y51{bottom:291.146667pt;}
.y7d{bottom:291.946667pt;}
.yc4{bottom:292.906667pt;}
.ya3{bottom:298.586667pt;}
.y107{bottom:300.026667pt;}
.y1eb{bottom:300.746667pt;}
.y184{bottom:301.306667pt;}
.y113{bottom:304.346667pt;}
.y227{bottom:305.386667pt;}
.y50{bottom:306.746667pt;}
.y7c{bottom:307.546667pt;}
.y20{bottom:309.466667pt;}
.ye7{bottom:314.346667pt;}
.y1ea{bottom:316.426667pt;}
.yc3{bottom:316.506667pt;}
.y183{bottom:316.986667pt;}
.y106{bottom:319.626667pt;}
.y112{bottom:320.026667pt;}
.y226{bottom:320.986667pt;}
.y4f{bottom:322.346667pt;}
.y7b{bottom:323.146667pt;}
.y1c6{bottom:323.546667pt;}
.y119{bottom:324.026667pt;}
.y1f{bottom:325.386667pt;}
.ye6{bottom:330.026667pt;}
.ya2{bottom:330.186667pt;}
.y1e9{bottom:332.026667pt;}
.y182{bottom:332.586667pt;}
.y200{bottom:335.226667pt;}
.y111{bottom:335.626667pt;}
.y4e{bottom:338.026667pt;}
.y7a{bottom:338.826667pt;}
.y1c5{bottom:339.146667pt;}
.y105{bottom:339.226667pt;}
.y118{bottom:339.626667pt;}
.y19f{bottom:342.426667pt;}
.y225{bottom:344.666667pt;}
.y1b2{bottom:345.226667pt;}
.ye5{bottom:345.626667pt;}
.ya1{bottom:345.866667pt;}
.y1e8{bottom:347.626667pt;}
.yc2{bottom:348.186667pt;}
.y1ff{bottom:350.906667pt;}
.y4d{bottom:353.626667pt;}
.y14f{bottom:354.826667pt;}
.y110{bottom:355.226667pt;}
.y1e{bottom:358.346667pt;}
.y104{bottom:358.906667pt;}
.y224{bottom:360.266667pt;}
.ye4{bottom:361.306667pt;}
.y180{bottom:361.866667pt;}
.y1e7{bottom:363.306667pt;}
.yc1{bottom:363.786667pt;}
.y1fe{bottom:366.506667pt;}
.ya0{bottom:369.466667pt;}
.y79{bottom:370.426667pt;}
.y117{bottom:370.906667pt;}
.y1d{bottom:373.946667pt;}
.y10f{bottom:374.906667pt;}
.y223{bottom:375.946667pt;}
.ye3{bottom:376.906667pt;}
.y103{bottom:378.506667pt;}
.y4c{bottom:385.306667pt;}
.y78{bottom:386.106667pt;}
.y116{bottom:386.506667pt;}
.y1c{bottom:389.546667pt;}
.y10e{bottom:390.506667pt;}
.ye2{bottom:392.506667pt;}
.yc0{bottom:393.066667pt;}
.y1e6{bottom:394.266667pt;}
.y1fd{bottom:398.106667pt;}
.y102{bottom:398.186667pt;}
.y222{bottom:399.546667pt;}
.y4b{bottom:400.906667pt;}
.y19e{bottom:401.306667pt;}
.y9f{bottom:401.386667pt;}
.y77{bottom:401.706667pt;}
.y1e5{bottom:405.066667pt;}
.y1b{bottom:405.226667pt;}
.y100{bottom:406.186667pt;}
.y1fc{bottom:413.786667pt;}
.y221{bottom:415.146667pt;}
.y4a{bottom:416.506667pt;}
.y76{bottom:417.306667pt;}
.ybe{bottom:417.386667pt;}
.y101{bottom:417.786667pt;}
.y1a{bottom:420.853333pt;}
.yff{bottom:421.786667pt;}
.ye1{bottom:421.893333pt;}
.y163{bottom:428.773333pt;}
.y1e3{bottom:429.413333pt;}
.y220{bottom:430.853333pt;}
.y49{bottom:432.213333pt;}
.y75{bottom:433.013333pt;}
.y1c4{bottom:433.333333pt;}
.y13a{bottom:436.053333pt;}
.y19{bottom:436.533333pt;}
.yfe{bottom:437.386667pt;}
.ybd{bottom:441.733333pt;}
.y9e{bottom:444.293333pt;}
.y48{bottom:447.813333pt;}
.y74{bottom:448.613333pt;}
.y1c3{bottom:449.013333pt;}
.y18{bottom:452.133333pt;}
.yfd{bottom:453.066667pt;}
.y1fb{bottom:453.333333pt;}
.y1e4{bottom:453.733333pt;}
.y21f{bottom:454.453333pt;}
.y23f{bottom:456.293333pt;}
.y9d{bottom:459.973333pt;}
.y19d{bottom:464.293333pt;}
.y14e{bottom:464.613333pt;}
.ydf{bottom:465.813333pt;}
.ybc{bottom:466.053333pt;}
.y17{bottom:467.733333pt;}
.y21e{bottom:470.133333pt;}
.y47{bottom:471.733333pt;}
.y23e{bottom:471.893333pt;}
.y9c{bottom:475.573333pt;}
.y1e1{bottom:478.053333pt;}
.y19c{bottom:479.893333pt;}
.y73{bottom:480.293333pt;}
.y16{bottom:483.413333pt;}
.y1ad{bottom:486.933333pt;}
.ybb{bottom:490.293333pt;}
.y9b{bottom:491.253333pt;}
.y21d{bottom:493.733333pt;}
.y23d{bottom:495.493333pt;}
.y72{bottom:495.893333pt;}
.y1fa{bottom:496.293333pt;}
.y15{bottom:499.013333pt;}
.y1e2{bottom:502.293333pt;}
.y9a{bottom:506.853333pt;}
.y21c{bottom:509.333333pt;}
.y23c{bottom:511.173333pt;}
.y71{bottom:511.493333pt;}
.y1f9{bottom:511.893333pt;}
.y46{bottom:514.613333pt;}
.y14{bottom:514.693333pt;}
.y17b{bottom:515.253333pt;}
.y99{bottom:522.453333pt;}
.y1df{bottom:526.613333pt;}
.y70{bottom:527.173333pt;}
.y1f8{bottom:527.493333pt;}
.yde{bottom:529.333333pt;}
.y13{bottom:530.293333pt;}
.y45{bottom:531.013333pt;}
.y21b{bottom:533.013333pt;}
.y23b{bottom:534.773333pt;}
.yba{bottom:538.933333pt;}
.y6f{bottom:542.773333pt;}
.y1c2{bottom:543.173333pt;}
.y12{bottom:545.893333pt;}
.y44{bottom:546.613333pt;}
.y23a{bottom:550.453333pt;}
.y1e0{bottom:550.933333pt;}
.y98{bottom:554.133333pt;}
.y21a{bottom:556.613333pt;}
.y6e{bottom:558.453333pt;}
.y1c1{bottom:558.773333pt;}
.y11{bottom:561.573333pt;}
.y43{bottom:563.013333pt;}
.yb9{bottom:563.253333pt;}
.y239{bottom:566.053333pt;}
.y97{bottom:569.733333pt;}
.y219{bottom:572.293333pt;}
.y19b{bottom:574.053333pt;}
.y14d{bottom:574.453333pt;}
.y1dd{bottom:575.253333pt;}
.y10{bottom:577.173333pt;}
.y42{bottom:578.613333pt;}
.y96{bottom:585.413333pt;}
.y19a{bottom:589.653333pt;}
.y6d{bottom:590.053333pt;}
.yf{bottom:592.853333pt;}
.ydd{bottom:592.933333pt;}
.y41{bottom:595.013333pt;}
.y218{bottom:595.893333pt;}
.y1de{bottom:599.493333pt;}
.y95{bottom:601.013333pt;}
.y199{bottom:605.333333pt;}
.y6c{bottom:605.653333pt;}
.y1f7{bottom:606.053333pt;}
.yb8{bottom:606.533333pt;}
.ye{bottom:608.453333pt;}
.y40{bottom:610.613333pt;}
.y217{bottom:611.493333pt;}
.y6b{bottom:621.333333pt;}
.y1c0{bottom:621.653333pt;}
.y1db{bottom:623.813333pt;}
.yd{bottom:624.053333pt;}
.y3f{bottom:626.293333pt;}
.y238{bottom:628.933333pt;}
.yb7{bottom:630.133333pt;}
.y94{bottom:632.613333pt;}
.y216{bottom:635.173333pt;}
.y6a{bottom:636.933333pt;}
.y1bf{bottom:637.333333pt;}
.yc{bottom:639.733333pt;}
.y3e{bottom:641.893333pt;}
.y237{bottom:644.613333pt;}
.y1dc{bottom:648.133333pt;}
.y93{bottom:648.293333pt;}
.yfb{bottom:648.533333pt;}
.y215{bottom:650.773333pt;}
.y69{bottom:652.613333pt;}
.y1be{bottom:652.933333pt;}
.yb{bottom:655.333333pt;}
.y1a5{bottom:655.973333pt;}
.ydc{bottom:656.453333pt;}
.y3d{bottom:657.493333pt;}
.y136{bottom:659.973333pt;}
.y236{bottom:660.213333pt;}
.yb6{bottom:661.733333pt;}
.y92{bottom:663.893333pt;}
.y155{bottom:668.213333pt;}
.y1bd{bottom:668.613333pt;}
.ya{bottom:671.013333pt;}
.y1d8{bottom:672.373333pt;}
.y214{bottom:674.373333pt;}
.yb5{bottom:677.413333pt;}
.y91{bottom:679.573333pt;}
.y198{bottom:683.813333pt;}
.y68{bottom:684.213333pt;}
.y3c{bottom:689.893333pt;}
.y213{bottom:690.053333pt;}
.yb4{bottom:693.013333pt;}
.y9{bottom:694.933333pt;}
.y1da{bottom:696.693333pt;}
.y197{bottom:699.493333pt;}
.y67{bottom:699.813333pt;}
.y1bc{bottom:700.213333pt;}
.yfa{bottom:707.493333pt;}
.yb3{bottom:708.693333pt;}
.y90{bottom:711.173333pt;}
.y212{bottom:713.653333pt;}
.y196{bottom:715.093333pt;}
.y66{bottom:715.493333pt;}
.y1bb{bottom:715.813333pt;}
.yd9{bottom:720.053333pt;}
.y1d6{bottom:721.013333pt;}
.y3b{bottom:721.573333pt;}
.y235{bottom:723.093333pt;}
.y8f{bottom:726.773333pt;}
.y211{bottom:729.333333pt;}
.y14c{bottom:731.093333pt;}
.y1ba{bottom:731.493333pt;}
.y3a{bottom:737.173333pt;}
.y8{bottom:737.813333pt;}
.yb2{bottom:737.973333pt;}
.y234{bottom:738.693333pt;}
.yf9{bottom:739.093333pt;}
.y8e{bottom:742.453333pt;}
.y1d7{bottom:745.333333pt;}
.y195{bottom:746.693333pt;}
.y65{bottom:747.093333pt;}
.y39{bottom:752.773333pt;}
.y210{bottom:752.933333pt;}
.yf8{bottom:754.693333pt;}
.y8d{bottom:758.053333pt;}
.yb1{bottom:762.293333pt;}
.y194{bottom:762.373333pt;}
.y64{bottom:762.693333pt;}
.y20f{bottom:768.533333pt;}
.y1d4{bottom:769.573333pt;}
.y7{bottom:769.653333pt;}
.yf7{bottom:770.373333pt;}
.y38{bottom:776.693333pt;}
.y193{bottom:777.973333pt;}
.y63{bottom:778.373333pt;}
.yd6{bottom:783.573333pt;}
.yf6{bottom:785.973333pt;}
.yb0{bottom:786.533333pt;}
.y8c{bottom:789.733333pt;}
.y20e{bottom:792.453333pt;}
.y192{bottom:793.653333pt;}
.y1d5{bottom:793.893333pt;}
.y62{bottom:793.973333pt;}
.y6{bottom:801.653333pt;}
.y8b{bottom:805.333333pt;}
.y191{bottom:809.253333pt;}
.y37{bottom:809.653333pt;}
.yaf{bottom:810.853333pt;}
.y12a{bottom:813.333333pt;}
.y233{bottom:817.253333pt;}
.y1a3{bottom:817.333333pt;}
.yf5{bottom:817.653333pt;}
.y1d1{bottom:818.213333pt;}
.y8a{bottom:820.933333pt;}
.y190{bottom:824.853333pt;}
.y36{bottom:825.253333pt;}
.y1f6{bottom:825.653333pt;}
.ycd{bottom:827.493333pt;}
.yf4{bottom:833.253333pt;}
.y5{bottom:833.653333pt;}
.yae{bottom:835.173333pt;}
.y20d{bottom:835.413333pt;}
.y35{bottom:840.853333pt;}
.y61{bottom:841.253333pt;}
.y1d3{bottom:842.533333pt;}
.y89{bottom:844.613333pt;}
.yf3{bottom:848.853333pt;}
.yd3{bottom:851.813333pt;}
.y34{bottom:856.533333pt;}
.y60{bottom:856.853333pt;}
.y20c{bottom:859.333333pt;}
.yad{bottom:859.493333pt;}
.yf2{bottom:864.533333pt;}
.y4{bottom:865.733333pt;}
.y1cd{bottom:866.773333pt;}
.y18f{bottom:872.133333pt;}
.y5f{bottom:872.533333pt;}
.y16e{bottom:872.853333pt;}
.y88{bottom:876.533333pt;}
.yf1{bottom:880.133333pt;}
.yac{bottom:883.733333pt;}
.y18e{bottom:887.813333pt;}
.y33{bottom:888.133333pt;}
.y1cf{bottom:891.093333pt;}
.y20b{bottom:892.533333pt;}
.yf0{bottom:895.813333pt;}
.y3{bottom:899.760000pt;}
.y32{bottom:903.840000pt;}
.ycf{bottom:911.440000pt;}
.y1cc{bottom:915.440000pt;}
.y31{bottom:919.440000pt;}
.y1f5{bottom:919.840000pt;}
.yab{bottom:927.040000pt;}
.y5e{bottom:935.040000pt;}
.y1f4{bottom:935.440000pt;}
.y5d{bottom:950.720000pt;}
.y30{bottom:951.040000pt;}
.y154{bottom:954.640000pt;}
.y1cb{bottom:958.720000pt;}
.y5c{bottom:966.320000pt;}
.y2f{bottom:966.720000pt;}
.y128{bottom:970.640000pt;}
.ycc{bottom:974.320000pt;}
.y2e{bottom:982.320000pt;}
.y232{bottom:990.000000pt;}
.y2d{bottom:998.000000pt;}
.y2c{bottom:1013.600000pt;}
.y2a{bottom:1061.600000pt;}
.he{height:23.600000pt;}
.h2b{height:23.626667pt;}
.hd{height:23.680000pt;}
.hf{height:23.706667pt;}
.h2{height:26.686562pt;}
.h3{height:34.863281pt;}
.h2e{height:37.094531pt;}
.h16{height:39.280000pt;}
.h11{height:43.200000pt;}
.h14{height:43.280000pt;}
.h6{height:45.246562pt;}
.h7{height:46.577344pt;}
.h2c{height:47.920000pt;}
.h2a{height:47.946667pt;}
.h2d{height:48.000000pt;}
.h8{height:49.581562pt;}
.h5{height:51.039844pt;}
.hc{height:53.309531pt;}
.h9{height:54.927899pt;}
.h19{height:54.960000pt;}
.hb{height:55.631875pt;}
.h13{height:58.906667pt;}
.ha{height:60.961875pt;}
.h15{height:62.880000pt;}
.h4{height:64.985156pt;}
.h18{height:74.480000pt;}
.h12{height:83.226667pt;}
.h25{height:90.160000pt;}
.h10{height:127.146667pt;}
.h28{height:141.066667pt;}
.h24{height:141.120000pt;}
.h1b{height:152.640000pt;}
.h26{height:152.666667pt;}
.h21{height:152.746667pt;}
.h1a{height:156.666667pt;}
.h27{height:160.640000pt;}
.h23{height:168.320000pt;}
.h1d{height:183.946667pt;}
.h22{height:188.000000pt;}
.h29{height:192.000000pt;}
.h1c{height:223.200000pt;}
.h1f{height:238.800000pt;}
.h1e{height:285.786667pt;}
.h20{height:305.386667pt;}
.h17{height:469.706667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:14.720000pt;}
.w18{width:34.320000pt;}
.w12{width:43.760000pt;}
.w10{width:45.600000pt;}
.w27{width:46.240000pt;}
.w3{width:58.720000pt;}
.w28{width:58.880000pt;}
.w13{width:60.080000pt;}
.w8{width:60.480000pt;}
.wb{width:61.360000pt;}
.wd{width:61.440000pt;}
.w5{width:61.466667pt;}
.w29{width:62.000000pt;}
.w2a{width:70.666667pt;}
.w17{width:73.280000pt;}
.w7{width:77.466667pt;}
.w4{width:78.640000pt;}
.wa{width:78.666667pt;}
.w14{width:82.800000pt;}
.w15{width:88.586667pt;}
.w22{width:89.386667pt;}
.w1e{width:91.306667pt;}
.w1a{width:92.506667pt;}
.w23{width:115.360000pt;}
.w1f{width:124.000000pt;}
.w1b{width:124.720000pt;}
.w9{width:141.360000pt;}
.w16{width:147.280000pt;}
.w19{width:149.146667pt;}
.w6{width:157.840000pt;}
.wc{width:178.080000pt;}
.we{width:184.186667pt;}
.w1d{width:193.760000pt;}
.w2b{width:196.000000pt;}
.w26{width:202.506667pt;}
.w21{width:204.960000pt;}
.w24{width:224.666667pt;}
.w25{width:240.400000pt;}
.w20{width:249.466667pt;}
.w1c{width:258.746667pt;}
.wf{width:380.826667pt;}
.w2c{width:639.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.520000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x2b{left:70.720000pt;}
.x32{left:77.120000pt;}
.x26{left:80.000000pt;}
.x4{left:84.479988pt;}
.x2c{left:90.080000pt;}
.x1c{left:96.160000pt;}
.x27{left:97.360000pt;}
.x38{left:98.879988pt;}
.x5{left:107.759988pt;}
.x28{left:125.680000pt;}
.x2d{left:144.080000pt;}
.x23{left:151.146667pt;}
.x20{left:153.066667pt;}
.x1d{left:154.266667pt;}
.x2e{left:163.680000pt;}
.x2f{left:177.600000pt;}
.x29{left:182.320000pt;}
.x2{left:187.626655pt;}
.x30{left:197.040000pt;}
.x2a{left:199.760000pt;}
.x31{left:233.520000pt;}
.x10{left:237.226667pt;}
.x14{left:245.946667pt;}
.xa{left:248.426667pt;}
.xd{left:255.626667pt;}
.x24{left:267.146667pt;}
.x21{left:277.706667pt;}
.x1e{left:279.626667pt;}
.x6{left:296.906667pt;}
.x18{left:306.666667pt;}
.x33{left:327.226667pt;}
.x37{left:352.026655pt;}
.x8{left:356.346667pt;}
.x34{left:386.826667pt;}
.x19{left:390.186667pt;}
.xe{left:397.626667pt;}
.xb{left:406.986667pt;}
.x11{left:416.026667pt;}
.x9{left:435.626667pt;}
.x35{left:449.466667pt;}
.xf{left:477.013333pt;}
.x1a{left:479.493333pt;}
.xc{left:485.093333pt;}
.x25{left:492.453333pt;}
.x12{left:495.333333pt;}
.x36{left:520.853333pt;}
.x22{left:527.893333pt;}
.x1f{left:539.093333pt;}
.x1b{left:553.493333pt;}
.x15{left:627.493333pt;}
.x16{left:673.733333pt;}
.x17{left:689.093333pt;}
.x3{left:711.413322pt;}
}




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