
    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_eab619cb58dab7081208c67d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_dded9579c2304a3f83441314.woff')format("woff");}.ff2{font-family:ff2;line-height:0.874023;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_4dedd6c0579a6b90a083e112.woff')format("woff");}.ff3{font-family:ff3;line-height:0.871094;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_2f8f3c16eff528954662e048.woff')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_ff607bb7542319435eb59943.woff')format("woff");}.ff5{font-family:ff5;line-height:1.002930;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_e6e9ee55acf77e9fd65fae47.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d516eeebfd64758dfc16c6c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_d1c6deea50cedf699d17ae75.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_94aeba7ee4a2be56ee5b53ff.woff')format("woff");}.ff9{font-family:ff9;line-height:0.713867;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_3209f64a85c9fbbd1a977ebc.woff')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_93126e4846982587de6f0415.woff')format("woff");}.ffb{font-family:ffb;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_8141921719a2bb5bb0b5a869.woff')format("woff");}.ffc{font-family:ffc;line-height:0.677734;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_87caae0c621045c613cdd4e7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a7adbf23cb2677c1235a2bef.woff')format("woff");}.ffe{font-family:ffe;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0dd232f908bb31a43689b4e0.woff')format("woff");}.fff{font-family:fff;line-height:0.929199;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:ff10;src:url('chunks/assets/font_c0d902570edf1a5fc6452893.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_7e40d0473b44d20d8dd28ba4.woff')format("woff");}.ff11{font-family:ff11;line-height:0.746094;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;}
.ff12{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ef4ea02fd11060b993c8980d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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:ff14;src:url('chunks/assets/font_dc72c2f88644142904c7a60d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.169922px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.683592px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.900145px;}
.ls7{letter-spacing:17.994736px;}
.ls2{letter-spacing:19.688622px;}
.ls6{letter-spacing:28.828123px;}
.lsc{letter-spacing:34.493408px;}
.lsa{letter-spacing:37.804937px;}
.ls9{letter-spacing:43.815422px;}
.ls4{letter-spacing:54.883118px;}
.ls8{letter-spacing:61.903108px;}
.ls5{letter-spacing:66.315422px;}
.lsd{letter-spacing:197.663086px;}
.ls1{letter-spacing:592.964849px;}
.ls0{letter-spacing:1146.464849px;}
.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;}
}
.ws7{word-spacing:-31.500000px;}
.ws0{word-spacing:-18.990234px;}
.ws6{word-spacing:-16.669921px;}
.ws4{word-spacing:-16.277344px;}
.ws2{word-spacing:-14.975158px;}
.ws3{word-spacing:-14.920899px;}
.ws8{word-spacing:-8.985095px;}
.wsa{word-spacing:-8.952539px;}
.ws9{word-spacing:-8.138672px;}
.ws5{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
._32{margin-left:-105.243173px;}
._31{margin-left:-90.719209px;}
._2a{margin-left:-22.857416px;}
._b{margin-left:-18.336914px;}
._39{margin-left:-8.492125px;}
._11{margin-left:-6.664474px;}
._d{margin-left:-5.313198px;}
._14{margin-left:-3.809969px;}
._1{margin-left:-2.166537px;}
._0{margin-left:-1.072317px;}
._6{width:1.167938px;}
._23{width:2.350739px;}
._3{width:3.616833px;}
._2{width:5.125495px;}
._4{width:8.352169px;}
._5{width:9.471707px;}
._a{width:13.453767px;}
._9{width:17.921717px;}
._16{width:18.959241px;}
._10{width:21.700415px;}
._f{width:23.038261px;}
._c{width:26.057013px;}
._8{width:27.550598px;}
._7{width:31.404871px;}
._2c{width:32.432231px;}
._12{width:35.913735px;}
._26{width:40.355304px;}
._2d{width:43.766601px;}
._1a{width:44.975053px;}
._19{width:48.595986px;}
._13{width:49.798827px;}
._1f{width:53.907755px;}
._15{width:55.089845px;}
._1e{width:58.408922px;}
._2b{width:62.676703px;}
._e{width:66.266601px;}
._25{width:76.263989px;}
._24{width:80.268902px;}
._18{width:85.332588px;}
._17{width:89.917691px;}
._1c{width:93.803963px;}
._1d{width:98.903180px;}
._29{width:103.345498px;}
._1b{width:120.695816px;}
._28{width:122.156567px;}
._27{width:125.083048px;}
._3a{width:126.733494px;}
._30{width:130.385738px;}
._22{width:134.932923px;}
._21{width:138.710194px;}
._37{width:147.506761px;}
._33{width:148.992647px;}
._20{width:166.407755px;}
._2f{width:198.579009px;}
._2e{width:202.210685px;}
._36{width:220.185248px;}
._38{width:248.051474px;}
._34{width:251.752118px;}
._35{width:269.852160px;}
.fc4{color:transparent;}
.fc3{color:rgb(35,82,124);}
.fc1{color:rgb(255,0,0);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsa{font-size:39.600001px;}
.fs8{font-size:39.744003px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.999999px;}
.fs6{font-size:63.000000px;}
.fs3{font-size:66.000002px;}
.fs4{font-size:66.240005px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.fs0{font-size:96.000003px;}
.y0{bottom:0.000000px;}
.y19b{bottom:4.123535px;}
.y11e{bottom:4.124258px;}
.yd9{bottom:4.124990px;}
.yfa{bottom:4.124992px;}
.ydf{bottom:4.124996px;}
.ycd{bottom:4.124998px;}
.y5f{bottom:4.125000px;}
.yef{bottom:4.125002px;}
.yd4{bottom:4.125007px;}
.y10f{bottom:4.125008px;}
.y120{bottom:4.125732px;}
.y125{bottom:4.521240px;}
.y25d{bottom:11.998532px;}
.y1b9{bottom:11.998535px;}
.y1bb{bottom:11.999992px;}
.y1dc{bottom:11.999998px;}
.y255{bottom:12.000001px;}
.y21b{bottom:12.000002px;}
.y20e{bottom:12.000007px;}
.y1b7{bottom:12.001462px;}
.y234{bottom:12.001468px;}
.y186{bottom:12.014265px;}
.y8c{bottom:12.014723px;}
.y82{bottom:12.014726px;}
.y8b{bottom:12.014769px;}
.y86{bottom:12.014988px;}
.y76{bottom:12.014999px;}
.y7a{bottom:12.015002px;}
.y7c{bottom:12.015089px;}
.y93{bottom:12.015363px;}
.y174{bottom:12.284177px;}
.y178{bottom:12.284185px;}
.y18c{bottom:12.299178px;}
.y189{bottom:12.299184px;}
.y8f{bottom:12.299544px;}
.y7f{bottom:12.299910px;}
.y17f{bottom:12.300639px;}
.y184{bottom:12.300644px;}
.y257{bottom:15.020507px;}
.y243{bottom:15.020510px;}
.y201{bottom:15.020513px;}
.y22a{bottom:15.021968px;}
.y249{bottom:15.021971px;}
.y23e{bottom:15.021973px;}
.y1ed{bottom:16.498538px;}
.y1e5{bottom:16.499992px;}
.y1d5{bottom:16.499993px;}
.y1c4{bottom:16.500000px;}
.y1c2{bottom:16.501457px;}
.y245{bottom:17.279707px;}
.y206{bottom:17.329102px;}
.y11d{bottom:24.265868px;}
.yde{bottom:24.266591px;}
.yf3{bottom:24.266593px;}
.ye7{bottom:24.266596px;}
.yee{bottom:24.266597px;}
.yd8{bottom:24.266600px;}
.yc3{bottom:24.266602px;}
.y10e{bottom:24.266603px;}
.ycc{bottom:24.266608px;}
.y1d8{bottom:30.020512px;}
.y231{bottom:30.020515px;}
.y250{bottom:30.021973px;}
.y20a{bottom:30.021974px;}
.y218{bottom:30.021976px;}
.y1ea{bottom:30.021980px;}
.y266{bottom:30.021983px;}
.y20d{bottom:32.140132px;}
.y254{bottom:32.140136px;}
.y1b6{bottom:32.141602px;}
.y233{bottom:32.141608px;}
.y79{bottom:32.229842px;}
.y85{bottom:32.229843px;}
.y92{bottom:32.230203px;}
.y173{bottom:32.708492px;}
.y177{bottom:32.725691px;}
.y188{bottom:32.798934px;}
.y183{bottom:32.799659px;}
.y17e{bottom:32.800404px;}
.y81{bottom:33.064162px;}
.y200{bottom:35.991218px;}
.y1c1{bottom:36.641597px;}
.y1e4{bottom:36.641602px;}
.y1d4{bottom:36.641603px;}
.y1db{bottom:36.641608px;}
.y25c{bottom:37.421304px;}
.y21a{bottom:37.422774px;}
.y242{bottom:38.184080px;}
.y213{bottom:38.184083px;}
.y23d{bottom:38.184088px;}
.y248{bottom:38.185541px;}
.y229{bottom:38.185553px;}
.y205{bottom:38.301269px;}
.yd7{bottom:44.408195px;}
.yd3{bottom:44.408197px;}
.y10d{bottom:44.408198px;}
.ydd{bottom:44.408201px;}
.ycb{bottom:44.408203px;}
.ye6{bottom:44.408206px;}
.yed{bottom:44.408207px;}
.y1ec{bottom:46.421308px;}
.y253{bottom:52.283203px;}
.y84{bottom:52.444777px;}
.y172{bottom:53.150733px;}
.y230{bottom:53.182615px;}
.y217{bottom:53.184076px;}
.y1e9{bottom:53.184080px;}
.y1d7{bottom:53.184082px;}
.y265{bottom:53.184083px;}
.y209{bottom:53.184089px;}
.y182{bottom:53.298689px;}
.y17d{bottom:53.300154px;}
.y1e3{bottom:56.783197px;}
.y1ff{bottom:56.963378px;}
.y20c{bottom:57.562909px;}
.y1c0{bottom:61.283192px;}
.y1d3{bottom:61.283198px;}
.y1da{bottom:61.283204px;}
.y23c{bottom:61.346188px;}
.y212{bottom:61.346198px;}
.y241{bottom:61.347650px;}
.y228{bottom:61.347653px;}
.y247{bottom:61.347656px;}
.y204{bottom:61.463380px;}
.yf9{bottom:64.549792px;}
.ydc{bottom:64.549796px;}
.yca{bottom:64.549798px;}
.ye5{bottom:64.549801px;}
.yec{bottom:64.549802px;}
.yd6{bottom:64.549805px;}
.yd2{bottom:64.549807px;}
.y10c{bottom:64.549808px;}
.y25b{bottom:65.964842px;}
.y171{bottom:73.649763px;}
.y22f{bottom:76.346185px;}
.y208{bottom:76.346192px;}
.y1e8{bottom:76.346195px;}
.y264{bottom:76.346198px;}
.y216{bottom:76.347661px;}
.y252{bottom:77.704512px;}
.y1fe{bottom:80.126948px;}
.y1e2{bottom:81.424807px;}
.y1d2{bottom:81.424808px;}
.y203{bottom:82.435547px;}
.y211{bottom:84.508301px;}
.y240{bottom:84.509765px;}
.y23b{bottom:84.509773px;}
.y227{bottom:84.511223px;}
.ye4{bottom:84.691396px;}
.yd1{bottom:84.691402px;}
.y10b{bottom:84.691403px;}
.ydb{bottom:84.691406px;}
.yc9{bottom:84.691408px;}
.yeb{bottom:84.691412px;}
.y1bf{bottom:85.926257px;}
.y25a{bottom:91.387617px;}
.y1e7{bottom:99.509765px;}
.y263{bottom:99.509768px;}
.y22e{bottom:99.509770px;}
.y215{bottom:99.511231px;}
.y1fd{bottom:101.097653px;}
.y1e1{bottom:101.566402px;}
.y1d1{bottom:101.566403px;}
.yf8{bottom:104.832997px;}
.yc8{bottom:104.833003px;}
.ye3{bottom:104.833006px;}
.yea{bottom:104.833007px;}
.yd0{bottom:104.833009px;}
.y10a{bottom:104.833013px;}
.y23a{bottom:107.671873px;}
.y210{bottom:107.671874px;}
.y226{bottom:107.673338px;}
.y1be{bottom:110.566397px;}
.y24b{bottom:111.915526px;}
.y195{bottom:112.290518px;}
.y28f{bottom:114.622558px;}
.y100{bottom:120.127440px;}
.y1fc{bottom:121.239263px;}
.y1e0{bottom:121.708012px;}
.y22d{bottom:122.671870px;}
.y262{bottom:122.673338px;}
.ye2{bottom:124.974601px;}
.yf7{bottom:124.974607px;}
.y109{bottom:124.974608px;}
.yc7{bottom:124.974610px;}
.y1bc{bottom:125.479986px;}
.y14b{bottom:125.664543px;}
.y1d0{bottom:126.208013px;}
.y1ee{bottom:127.772460px;}
.y9a{bottom:128.567138px;}
.y239{bottom:130.835443px;}
.y225{bottom:130.835453px;}
.yc0{bottom:131.965576px;}
.y194{bottom:132.432121px;}
.y1bd{bottom:135.208008px;}
.y24a{bottom:136.268550px;}
.y28e{bottom:137.786131px;}
.y1df{bottom:141.849607px;}
.y1fb{bottom:142.211423px;}
.yf6{bottom:145.116202px;}
.yc6{bottom:145.116211px;}
.y108{bottom:145.116218px;}
.y22c{bottom:145.833985px;}
.y261{bottom:145.835453px;}
.y24e{bottom:148.536618px;}
.y14a{bottom:148.828118px;}
.y1cf{bottom:150.849608px;}
.y99{bottom:151.729973px;}
.y224{bottom:153.999023px;}
.y238{bottom:153.999028px;}
.ybf{bottom:155.128403px;}
.y193{bottom:158.616204px;}
.y28d{bottom:160.948238px;}
.y1fa{bottom:163.182128px;}
.yf5{bottom:165.257812px;}
.y107{bottom:165.257813px;}
.y1de{bottom:166.491217px;}
.y24d{bottom:166.847164px;}
.y260{bottom:168.999023px;}
.y1ce{bottom:170.991203px;}
.y98{bottom:174.892823px;}
.y237{bottom:177.161128px;}
.y223{bottom:177.161138px;}
.ybe{bottom:178.291261px;}
.y28c{bottom:184.110345px;}
.y106{bottom:185.399408px;}
.y1f9{bottom:186.345698px;}
.y149{bottom:186.990234px;}
.y1cd{bottom:191.132813px;}
.y24c{bottom:191.200191px;}
.y97{bottom:198.055658px;}
.y236{bottom:200.323243px;}
.y222{bottom:200.324708px;}
.ybd{bottom:201.480086px;}
.y3a{bottom:202.244573px;}
.y105{bottom:205.541018px;}
.y192{bottom:206.876959px;}
.y28b{bottom:207.272459px;}
.y1f8{bottom:207.316403px;}
.y5d{bottom:207.388178px;}
.y148{bottom:210.153812px;}
.y1cc{bottom:215.774414px;}
.y96{bottom:221.218508px;}
.y221{bottom:223.488278px;}
.ybc{bottom:224.727148px;}
.y39{bottom:225.407228px;}
.y104{bottom:225.682613px;}
.y1f7{bottom:228.287108px;}
.y191{bottom:230.040533px;}
.y28a{bottom:230.436034px;}
.y1ba{bottom:233.046392px;}
.y147{bottom:233.315918px;}
.y1cb{bottom:235.916015px;}
.y23f{bottom:238.836918px;}
.yfe{bottom:240.977057px;}
.y95{bottom:243.577874px;}
.y1c3{bottom:244.187994px;}
.y5c{bottom:245.550653px;}
.y103{bottom:245.824223px;}
.y220{bottom:246.650393px;}
.ybb{bottom:247.974219px;}
.y38{bottom:248.570258px;}
.y1f6{bottom:249.259283px;}
.y289{bottom:253.599608px;}
.y190{bottom:255.152350px;}
.y1ca{bottom:260.557616px;}
.y246{bottom:261.999027px;}
.y94{bottom:265.397099px;}
.y102{bottom:265.965818px;}
.y21f{bottom:269.812493px;}
.yba{bottom:271.195308px;}
.y146{bottom:271.479488px;}
.y37{bottom:271.732913px;}
.y1f5{bottom:272.422853px;}
.y91{bottom:281.998536px;}
.y5b{bottom:283.713863px;}
.y1c9{bottom:285.199219px;}
.y101{bottom:286.107428px;}
.y1b5{bottom:290.204596px;}
.y21e{bottom:292.976078px;}
.y1f4{bottom:293.393558px;}
.yb9{bottom:294.358148px;}
.y288{bottom:294.763190px;}
.y244{bottom:297.663578px;}
.y90{bottom:302.814697px;}
.y1c8{bottom:305.340820px;}
.y145{bottom:309.641603px;}
.y36{bottom:309.895928px;}
.y1b8{bottom:310.347663px;}
.y1f3{bottom:314.364263px;}
.y21d{bottom:316.139648px;}
.yb8{bottom:317.520991px;}
.y287{bottom:317.923833px;}
.y18f{bottom:318.682613px;}
.y5a{bottom:321.876708px;}
.y8e{bottom:322.744995px;}
.y8d{bottom:323.029540px;}
.y1c7{bottom:329.982422px;}
.y1f2{bottom:335.336423px;}
.y18e{bottom:335.824221px;}
.y18d{bottom:336.108401px;}
.yb7{bottom:340.683833px;}
.y286{bottom:341.087408px;}
.y59{bottom:345.039548px;}
.y144{bottom:347.805169px;}
.y35{bottom:348.058588px;}
.y235{bottom:348.363281px;}
.y1c6{bottom:350.124023px;}
.y1f1{bottom:356.308598px;}
.yfd{bottom:361.826666px;}
.y58{bottom:368.202025px;}
.y1b4{bottom:369.509768px;}
.y143{bottom:370.967284px;}
.y34{bottom:371.221613px;}
.y18b{bottom:374.074221px;}
.y18a{bottom:374.358401px;}
.y1f0{bottom:377.279303px;}
.yb6{bottom:379.496344px;}
.y285{bottom:382.249514px;}
.y1b3{bottom:389.949811px;}
.y57{bottom:391.365233px;}
.y142{bottom:394.130850px;}
.y8a{bottom:396.678589px;}
.y89{bottom:397.279540px;}
.y1ef{bottom:401.920899px;}
.yff{bottom:402.109868px;}
.y22b{bottom:402.852539px;}
.y284{bottom:405.413089px;}
.y33{bottom:409.384269px;}
.y1b2{bottom:411.027834px;}
.y187{bottom:411.449700px;}
.y141{bottom:417.293699px;}
.yb5{bottom:419.115228px;}
.yf4{bottom:423.376471px;}
.y283{bottom:428.576663px;}
.y56{bottom:429.527708px;}
.y1b1{bottom:431.453624px;}
.y185{bottom:432.234369px;}
.y32{bottom:432.547297px;}
.y88{bottom:434.369384px;}
.y1e6{bottom:434.683593px;}
.y87{bottom:434.970701px;}
.y140{bottom:440.456539px;}
.yb4{bottom:442.278068px;}
.y1b0{bottom:451.877934px;}
.y31{bottom:455.709953px;}
.y13f{bottom:463.620113px;}
.y282{bottom:465.358893px;}
.yb3{bottom:465.440911px;}
.y55{bottom:468.340579px;}
.y181{bottom:469.322756px;}
.y83{bottom:472.060551px;}
.y1af{bottom:472.303717px;}
.y1eb{bottom:479.368652px;}
.y232{bottom:482.720215px;}
.y281{bottom:485.195806px;}
.y18{bottom:488.186273px;}
.yb2{bottom:488.603753px;}
.y13e{bottom:488.731195px;}
.y80{bottom:491.441166px;}
.y1ae{bottom:492.730230px;}
.y54{bottom:492.959468px;}
.y30{bottom:493.872982px;}
.y164{bottom:502.278803px;}
.yfc{bottom:503.942877px;}
.y280{bottom:505.029790px;}
.y180{bottom:510.606445px;}
.y7e{bottom:512.806644px;}
.y7d{bottom:513.091556px;}
.y53{bottom:514.741700px;}
.y2f{bottom:517.035638px;}
.y1ad{bottom:518.434570px;}
.y17{bottom:526.349123px;}
.yb1{bottom:527.416264px;}
.y13d{bottom:531.287458px;}
.y52{bottom:534.577882px;}
.y163{bottom:540.440918px;}
.y27f{bottom:541.245119px;}
.yf2{bottom:544.226080px;}
.y17c{bottom:547.696290px;}
.y78{bottom:550.181392px;}
.y51{bottom:554.413330px;}
.y13c{bottom:554.534528px;}
.y1dd{bottom:559.209961px;}
.y2e{bottom:562.531170px;}
.y162{bottom:563.604499px;}
.y27e{bottom:564.410159px;}
.y16{bottom:564.511958px;}
.yb0{bottom:567.035158px;}
.y7b{bottom:569.794918px;}
.y77{bottom:570.396235px;}
.y21c{bottom:573.703125px;}
.y50{bottom:574.249510px;}
.y13b{bottom:577.781599px;}
.y1ac{bottom:581.966303px;}
.yfb{bottom:584.509283px;}
.y161{bottom:586.766592px;}
.y27d{bottom:587.572268px;}
.y17b{bottom:588.981445px;}
.yaf{bottom:590.198002px;}
.y4f{bottom:594.084955px;}
.y13a{bottom:601.028668px;}
.y15{bottom:602.674803px;}
.y129{bottom:605.230958px;}
.ye9{bottom:605.775876px;}
.y75{bottom:607.486091px;}
.y2d{bottom:609.097228px;}
.y160{bottom:609.928708px;}
.yae{bottom:613.360838px;}
.y4e{bottom:613.921136px;}
.y1ab{bottom:620.128418px;}
.y139{bottom:624.275739px;}
.y27c{bottom:625.734374px;}
.y14{bottom:625.837643px;}
.y17a{bottom:626.071285px;}
.y2c{bottom:632.260253px;}
.y15f{bottom:633.092281px;}
.y4d{bottom:633.756586px;}
.yad{bottom:636.523683px;}
.y1aa{bottom:643.291993px;}
.y128{bottom:643.393793px;}
.yf1{bottom:644.875485px;}
.y138{bottom:647.522811px;}
.y74{bottom:648.716023px;}
.y27b{bottom:648.899414px;}
.y13{bottom:649.000486px;}
.y4c{bottom:654.169184px;}
.y15e{bottom:656.255126px;}
.yac{bottom:659.686523px;}
.y127{bottom:660.534671px;}
.y179{bottom:663.161126px;}
.y1a9{bottom:666.454099px;}
.y2b{bottom:670.422908px;}
.y137{bottom:670.744628px;}
.y27a{bottom:672.061523px;}
.y12{bottom:672.163328px;}
.y73{bottom:672.538328px;}
.y26a{bottom:677.907715px;}
.y15d{bottom:679.417971px;}
.y124{bottom:681.802733px;}
.y126{bottom:682.198973px;}
.yab{bottom:682.849366px;}
.ye8{bottom:686.342282px;}
.y1d9{bottom:689.059570px;}
.y1a8{bottom:689.617673px;}
.y4b{bottom:691.792243px;}
.y72{bottom:695.701178px;}
.y136{bottom:695.856442px;}
.y1d6{bottom:701.658692px;}
.y15c{bottom:702.581541px;}
.y123{bottom:703.464851px;}
.y269{bottom:703.542475px;}
.y176{bottom:704.325434px;}
.yaa{bottom:706.012208px;}
.yf0{bottom:706.483883px;}
.y279{bottom:710.223634px;}
.y11{bottom:710.326178px;}
.y1a7{bottom:712.781256px;}
.y4a{bottom:714.955087px;}
.y2a{bottom:715.918260px;}
.y71{bottom:718.864002px;}
.y122{bottom:724.732178px;}
.y175{bottom:725.036126px;}
.y25f{bottom:725.052240px;}
.y135{bottom:725.336425px;}
.y15b{bottom:725.743649px;}
.ye1{bottom:727.750492px;}
.y278{bottom:733.387208px;}
.y10{bottom:733.489017px;}
.y1a6{bottom:735.943358px;}
.y49{bottom:738.117923px;}
.y70{bottom:742.026841px;}
.ya9{bottom:744.175051px;}
.y121{bottom:745.998773px;}
.y15a{bottom:748.905758px;}
.yf{bottom:756.651844px;}
.y1a5{bottom:759.105469px;}
.y48{bottom:761.280768px;}
.y170{bottom:762.125976px;}
.y134{bottom:764.096193px;}
.y6f{bottom:765.189691px;}
.y11f{bottom:767.264651px;}
.ya8{bottom:767.337893px;}
.y29{bottom:769.817190px;}
.y277{bottom:771.549308px;}
.y159{bottom:774.019045px;}
.ye{bottom:779.814701px;}
.y1c5{bottom:779.859375px;}
.y1a4{bottom:782.269043px;}
.y47{bottom:784.443608px;}
.yda{bottom:788.175297px;}
.y6e{bottom:788.352532px;}
.y11c{bottom:788.532720px;}
.y214{bottom:790.331543px;}
.y276{bottom:794.712884px;}
.y133{bottom:799.347660px;}
.y28{bottom:802.033084px;}
.yd{bottom:802.977538px;}
.ya7{bottom:806.150389px;}
.y46{bottom:807.606451px;}
.yd5{bottom:808.316898px;}
.y11b{bottom:808.673588px;}
.y6d{bottom:811.515385px;}
.y158{bottom:816.549307px;}
.y1a3{bottom:816.660648px;}
.y275{bottom:817.874993px;}
.y16f{bottom:823.760740px;}
.yc{bottom:826.140382px;}
.y27{bottom:826.651793px;}
.y45{bottom:830.769293px;}
.y1a2{bottom:830.890133px;}
.y6c{bottom:834.678212px;}
.y157{bottom:839.712885px;}
.y219{bottom:844.016601px;}
.ya6{bottom:846.418939px;}
.y26{bottom:847.077209px;}
.yb{bottom:849.303218px;}
.y11a{bottom:852.086430px;}
.y1a1{bottom:852.158208px;}
.y274{bottom:856.038569px;}
.y6b{bottom:857.867038px;}
.y16e{bottom:860.850580px;}
.y156{bottom:862.875001px;}
.y25{bottom:867.502621px;}
.y267{bottom:868.368158px;}
.ye0{bottom:868.741703px;}
.y44{bottom:868.932123px;}
.ya{bottom:872.466063px;}
.y1a0{bottom:873.423338px;}
.y119{bottom:875.249257px;}
.y268{bottom:879.029291px;}
.y273{bottom:879.200678px;}
.y6a{bottom:881.114116px;}
.y155{bottom:886.037107px;}
.y298{bottom:886.058354px;}
.ya5{bottom:886.687498px;}
.y24{bottom:887.943948px;}
.yc5{bottom:890.008301px;}
.y43{bottom:892.094963px;}
.y19f{bottom:894.689948px;}
.y9{bottom:895.628903px;}
.y118{bottom:898.412114px;}
.y132{bottom:900.243166px;}
.y16d{bottom:902.080888px;}
.y69{bottom:904.361183px;}
.y23{bottom:908.443430px;}
.y154{bottom:909.200681px;}
.ycf{bottom:910.149901px;}
.ya4{bottom:911.956054px;}
.y20f{bottom:914.859375px;}
.y42{bottom:915.257806px;}
.y19e{bottom:915.958008px;}
.y272{bottom:917.364261px;}
.y8{bottom:918.791746px;}
.y259{bottom:919.067871px;}
.y117{bottom:921.574951px;}
.y207{bottom:923.021484px;}
.y131{bottom:923.406740px;}
.y297{bottom:923.680664px;}
.y68{bottom:927.608252px;}
.y153{bottom:932.363526px;}
.ya3{bottom:936.574958px;}
.y19d{bottom:937.223138px;}
.y41{bottom:938.420648px;}
.y271{bottom:940.526363px;}
.y22{bottom:941.655388px;}
.y7{bottom:941.954588px;}
.y116{bottom:944.737795px;}
.y130{bottom:946.568847px;}
.y296{bottom:946.842774px;}
.y16c{bottom:946.884133px;}
.y67{bottom:950.829338px;}
.y152{bottom:955.526366px;}
.y20b{bottom:956.564942px;}
.y19c{bottom:958.489748px;}
.ya2{bottom:959.737792px;}
.y270{bottom:963.688474px;}
.y21{bottom:964.818233px;}
.y6{bottom:967.066404px;}
.y115{bottom:967.900631px;}
.y12f{bottom:969.731687px;}
.y295{bottom:970.007813px;}
.y16b{bottom:970.131202px;}
.y40{bottom:976.583494px;}
.y151{bottom:978.689942px;}
.y19a{bottom:979.757808px;}
.ya1{bottom:982.900632px;}
.y20{bottom:985.259566px;}
.y26f{bottom:986.852048px;}
.y258{bottom:988.836914px;}
.y66{bottom:988.992188px;}
.y114{bottom:991.063476px;}
.y12e{bottom:992.894530px;}
.y16a{bottom:993.378282px;}
.y3f{bottom:999.746338px;}
.y150{bottom:1001.852051px;}
.y25e{bottom:1003.838379px;}
.ya0{bottom:1006.063475px;}
.y65{bottom:1006.133789px;}
.y1f{bottom:1006.353314px;}
.y294{bottom:1008.169927px;}
.yc4{bottom:1010.857910px;}
.y113{bottom:1014.226316px;}
.y12d{bottom:1016.057372px;}
.y169{bottom:1016.625352px;}
.y3e{bottom:1022.909178px;}
.y199{bottom:1023.168454px;}
.y26e{bottom:1025.014155px;}
.y1e{bottom:1026.852799px;}
.y14f{bottom:1026.963868px;}
.y64{bottom:1027.400390px;}
.y9f{bottom:1029.226318px;}
.yce{bottom:1030.999511px;}
.y5{bottom:1031.326172px;}
.y293{bottom:1031.332029px;}
.y112{bottom:1037.389159px;}
.y168{bottom:1039.872423px;}
.y251{bottom:1043.875488px;}
.y3d{bottom:1046.072021px;}
.y198{bottom:1046.332028px;}
.y1d{bottom:1047.352463px;}
.y202{bottom:1047.547851px;}
.y26d{bottom:1048.177733px;}
.y63{bottom:1048.666991px;}
.yc2{bottom:1052.266113px;}
.y4{bottom:1054.048827px;}
.y292{bottom:1054.494140px;}
.y12c{bottom:1056.169190px;}
.y111{bottom:1060.552001px;}
.y167{bottom:1063.119493px;}
.y1c{bottom:1067.852036px;}
.y9e{bottom:1068.038818px;}
.y3c{bottom:1069.234864px;}
.y197{bottom:1069.494135px;}
.y14e{bottom:1069.494873px;}
.y62{bottom:1069.933594px;}
.y26c{bottom:1071.339844px;}
.yc1{bottom:1072.407715px;}
.y24f{bottom:1076.799317px;}
.y291{bottom:1077.657715px;}
.y3{bottom:1079.683591px;}
.y166{bottom:1086.339844px;}
.y1b{bottom:1088.351609px;}
.y61{bottom:1091.200195px;}
.y14d{bottom:1092.657714px;}
.y9d{bottom:1092.657715px;}
.y26b{bottom:1094.503418px;}
.y12b{bottom:1098.700195px;}
.y110{bottom:1099.364501px;}
.y2{bottom:1105.318360px;}
.y3b{bottom:1108.047364px;}
.y1a{bottom:1108.851181px;}
.y165{bottom:1109.503418px;}
.y60{bottom:1112.466797px;}
.y256{bottom:1114.962891px;}
.y290{bottom:1115.819824px;}
.y9c{bottom:1115.820556px;}
.y196{bottom:1115.821289px;}
.y14c{bottom:1115.821291px;}
.y12a{bottom:1118.841797px;}
.y1{bottom:1131.703124px;}
.y5e{bottom:1133.733398px;}
.y19{bottom:1134.615235px;}
.y9b{bottom:1138.983398px;}
.h2c{height:20.140137px;}
.hb{height:20.141602px;}
.h20{height:20.142334px;}
.h21{height:20.537842px;}
.h46{height:29.689453px;}
.h2b{height:30.260743px;}
.h2e{height:35.890137px;}
.h28{height:35.964111px;}
.hd{height:35.964845px;}
.h2a{height:36.249024px;}
.h14{height:36.249390px;}
.h10{height:36.249756px;}
.h13{height:36.565796px;}
.hf{height:36.566161px;}
.h49{height:38.912109px;}
.h4d{height:38.913574px;}
.h1f{height:40.282470px;}
.h15{height:40.283204px;}
.ha{height:43.681640px;}
.h6{height:43.989259px;}
.h22{height:44.534180px;}
.h30{height:44.891601px;}
.hc{height:45.729493px;}
.h32{height:45.922853px;}
.h47{height:49.482421px;}
.h43{height:49.574708px;}
.h8{height:50.097656px;}
.h4a{height:53.913574px;}
.h4e{height:54.430633px;}
.h5{height:54.430665px;}
.h7{height:54.628598px;}
.h9{height:55.986326px;}
.h2d{height:56.033204px;}
.he{height:56.179688px;}
.h25{height:56.675537px;}
.h29{height:56.748780px;}
.h11{height:57.615234px;}
.h2{height:58.201170px;}
.h3e{height:59.245313px;}
.h3{height:59.378906px;}
.h23{height:59.460750px;}
.h1c{height:60.424805px;}
.h44{height:62.700001px;}
.h1{height:66.796877px;}
.h4{height:69.275388px;}
.h3d{height:69.717774px;}
.h12{height:76.995849px;}
.h33{height:77.075683px;}
.h27{height:77.248534px;}
.h26{height:77.250000px;}
.h37{height:78.716308px;}
.h18{height:80.566407px;}
.h1b{height:81.750000px;}
.h45{height:85.239258px;}
.h34{height:89.674805px;}
.h3a{height:89.857910px;}
.h24{height:97.599609px;}
.h19{height:100.708008px;}
.h39{height:106.327149px;}
.h42{height:108.401367px;}
.h48{height:109.999512px;}
.h1a{height:120.849609px;}
.h36{height:123.401367px;}
.h3c{height:123.402832px;}
.h4b{height:123.682617px;}
.h3b{height:131.563476px;}
.h17{height:140.991212px;}
.h16{height:161.132813px;}
.h2f{height:163.599609px;}
.h40{height:169.725586px;}
.h1d{height:181.274414px;}
.h4c{height:192.890625px;}
.h35{height:219.524414px;}
.h41{height:224.214845px;}
.h1e{height:302.124030px;}
.h3f{height:340.031250px;}
.h31{height:374.015625px;}
.h38{height:430.312500px;}
.h0{height:1263.000000px;}
.we{width:61.875000px;}
.wd{width:81.000000px;}
.w9{width:105.750000px;}
.w2{width:114.750000px;}
.w4{width:122.625000px;}
.wc{width:130.500000px;}
.w3{width:131.625000px;}
.w11{width:147.375000px;}
.w12{width:155.250000px;}
.w7{width:166.500000px;}
.w5{width:171.000000px;}
.w6{width:207.000000px;}
.w13{width:223.875000px;}
.w8{width:227.250000px;}
.wa{width:230.625000px;}
.w14{width:340.875000px;}
.w1{width:379.125000px;}
.wb{width:388.125000px;}
.wf{width:490.500000px;}
.w10{width:541.125000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.xf{left:6.750000px;}
.x11{left:8.668754px;}
.x34{left:11.505715px;}
.x3e{left:12.586916px;}
.x19{left:14.625000px;}
.x17{left:15.750000px;}
.x1c{left:16.875000px;}
.x28{left:19.038792px;}
.x32{left:22.948697px;}
.x30{left:24.911061px;}
.x3a{left:28.125000px;}
.x12{left:29.684929px;}
.x3c{left:32.625000px;}
.x13{left:33.863356px;}
.x3b{left:38.250000px;}
.x1d{left:40.233135px;}
.x27{left:48.014614px;}
.x1f{left:52.185994px;}
.x14{left:56.812500px;}
.x3d{left:59.625000px;}
.x1e{left:60.750000px;}
.x20{left:79.875000px;}
.x35{left:101.250000px;}
.x3f{left:105.750000px;}
.x1{left:108.000000px;}
.x7{left:109.125000px;}
.x2{left:114.795557px;}
.x37{left:119.250000px;}
.x16{left:128.250000px;}
.xa{left:135.000000px;}
.xd{left:139.500000px;}
.x8{left:162.000000px;}
.x2c{left:165.375000px;}
.x2b{left:167.625000px;}
.x3{left:172.061998px;}
.x25{left:186.750000px;}
.x9{left:189.000000px;}
.x31{left:191.250000px;}
.x2d{left:192.375000px;}
.xe{left:199.125000px;}
.xb{left:216.000000px;}
.x24{left:228.375000px;}
.xc{left:243.000000px;}
.x21{left:247.500000px;}
.x33{left:254.250000px;}
.x18{left:261.000000px;}
.x38{left:265.500000px;}
.x6{left:282.375000px;}
.x4{left:284.484494px;}
.x2f{left:290.250000px;}
.x15{left:297.711034px;}
.x2e{left:309.375000px;}
.x2a{left:350.562521px;}
.x1a{left:384.750000px;}
.x5{left:446.456700px;}
.x22{left:475.875000px;}
.x39{left:490.500000px;}
.x1b{left:556.875000px;}
.x26{left:576.000000px;}
.x10{left:579.375000px;}
.x23{left:582.750000px;}
.x36{left:643.500000px;}
.x29{left:789.750000px;}
@media print{
.v2{vertical-align:-21.484375pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.718748pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.800129pt;}
.ls7{letter-spacing:15.995321pt;}
.ls2{letter-spacing:17.500998pt;}
.ls6{letter-spacing:25.624998pt;}
.lsc{letter-spacing:30.660807pt;}
.lsa{letter-spacing:33.604389pt;}
.ls9{letter-spacing:38.947041pt;}
.ls4{letter-spacing:48.784993pt;}
.ls8{letter-spacing:55.024985pt;}
.ls5{letter-spacing:58.947041pt;}
.lsd{letter-spacing:175.700521pt;}
.ls1{letter-spacing:527.079866pt;}
.ls0{letter-spacing:1019.079866pt;}
.ws7{word-spacing:-28.000000pt;}
.ws0{word-spacing:-16.880208pt;}
.ws6{word-spacing:-14.817708pt;}
.ws4{word-spacing:-14.468750pt;}
.ws2{word-spacing:-13.311251pt;}
.ws3{word-spacing:-13.263021pt;}
.ws8{word-spacing:-7.986751pt;}
.wsa{word-spacing:-7.957813pt;}
.ws9{word-spacing:-7.234375pt;}
.ws5{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
._32{margin-left:-93.549487pt;}
._31{margin-left:-80.639297pt;}
._2a{margin-left:-20.317703pt;}
._b{margin-left:-16.299479pt;}
._39{margin-left:-7.548555pt;}
._11{margin-left:-5.923977pt;}
._d{margin-left:-4.722843pt;}
._14{margin-left:-3.386639pt;}
._1{margin-left:-1.925810pt;}
._0{margin-left:-0.953170pt;}
._6{width:1.038167pt;}
._23{width:2.089546pt;}
._3{width:3.214963pt;}
._2{width:4.555995pt;}
._4{width:7.424150pt;}
._5{width:8.419295pt;}
._a{width:11.958904pt;}
._9{width:15.930415pt;}
._16{width:16.852659pt;}
._10{width:19.289258pt;}
._f{width:20.478454pt;}
._c{width:23.161789pt;}
._8{width:24.489421pt;}
._7{width:27.915441pt;}
._2c{width:28.828650pt;}
._12{width:31.923320pt;}
._26{width:35.871381pt;}
._2d{width:38.903645pt;}
._1a{width:39.977825pt;}
._19{width:43.196432pt;}
._13{width:44.265624pt;}
._1f{width:47.918004pt;}
._15{width:48.968751pt;}
._1e{width:51.919042pt;}
._2b{width:55.712625pt;}
._e{width:58.903645pt;}
._25{width:67.790213pt;}
._24{width:71.350135pt;}
._18{width:75.851189pt;}
._17{width:79.926836pt;}
._1c{width:83.381300pt;}
._1d{width:87.913938pt;}
._29{width:91.862665pt;}
._1b{width:107.285170pt;}
._28{width:108.583615pt;}
._27{width:111.184932pt;}
._3a{width:112.651995pt;}
._30{width:115.898433pt;}
._22{width:119.940376pt;}
._21{width:123.297950pt;}
._37{width:131.117121pt;}
._33{width:132.437908pt;}
._20{width:147.918004pt;}
._2f{width:176.514675pt;}
._2e{width:179.742831pt;}
._36{width:195.720220pt;}
._38{width:220.490199pt;}
._34{width:223.779661pt;}
._35{width:239.868587pt;}
.fs9{font-size:32.000000pt;}
.fsa{font-size:35.200001pt;}
.fs8{font-size:35.328003pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.333332pt;}
.fs6{font-size:56.000000pt;}
.fs3{font-size:58.666668pt;}
.fs4{font-size:58.880005pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.fs0{font-size:85.333336pt;}
.y0{bottom:0.000000pt;}
.y19b{bottom:3.665364pt;}
.y11e{bottom:3.666007pt;}
.yd9{bottom:3.666658pt;}
.yfa{bottom:3.666659pt;}
.ydf{bottom:3.666663pt;}
.ycd{bottom:3.666664pt;}
.y5f{bottom:3.666666pt;}
.yef{bottom:3.666669pt;}
.yd4{bottom:3.666673pt;}
.y10f{bottom:3.666674pt;}
.y120{bottom:3.667317pt;}
.y125{bottom:4.018880pt;}
.y25d{bottom:10.665362pt;}
.y1b9{bottom:10.665365pt;}
.y1bb{bottom:10.666659pt;}
.y1dc{bottom:10.666664pt;}
.y255{bottom:10.666667pt;}
.y21b{bottom:10.666668pt;}
.y20e{bottom:10.666672pt;}
.y1b7{bottom:10.667966pt;}
.y234{bottom:10.667971pt;}
.y186{bottom:10.679347pt;}
.y8c{bottom:10.679754pt;}
.y82{bottom:10.679756pt;}
.y8b{bottom:10.679795pt;}
.y86{bottom:10.679990pt;}
.y76{bottom:10.679999pt;}
.y7a{bottom:10.680002pt;}
.y7c{bottom:10.680079pt;}
.y93{bottom:10.680323pt;}
.y174{bottom:10.919268pt;}
.y178{bottom:10.919275pt;}
.y18c{bottom:10.932603pt;}
.y189{bottom:10.932608pt;}
.y8f{bottom:10.932928pt;}
.y7f{bottom:10.933254pt;}
.y17f{bottom:10.933902pt;}
.y184{bottom:10.933906pt;}
.y257{bottom:13.351562pt;}
.y243{bottom:13.351564pt;}
.y201{bottom:13.351567pt;}
.y22a{bottom:13.352861pt;}
.y249{bottom:13.352863pt;}
.y23e{bottom:13.352864pt;}
.y1ed{bottom:14.665367pt;}
.y1e5{bottom:14.666659pt;}
.y1d5{bottom:14.666660pt;}
.y1c4{bottom:14.666667pt;}
.y1c2{bottom:14.667962pt;}
.y245{bottom:15.359740pt;}
.y206{bottom:15.403646pt;}
.y11d{bottom:21.569660pt;}
.yde{bottom:21.570303pt;}
.yf3{bottom:21.570305pt;}
.ye7{bottom:21.570307pt;}
.yee{bottom:21.570309pt;}
.yd8{bottom:21.570311pt;}
.yc3{bottom:21.570313pt;}
.y10e{bottom:21.570314pt;}
.ycc{bottom:21.570318pt;}
.y1d8{bottom:26.684899pt;}
.y231{bottom:26.684902pt;}
.y250{bottom:26.686198pt;}
.y20a{bottom:26.686199pt;}
.y218{bottom:26.686200pt;}
.y1ea{bottom:26.686204pt;}
.y266{bottom:26.686207pt;}
.y20d{bottom:28.569006pt;}
.y254{bottom:28.569010pt;}
.y1b6{bottom:28.570313pt;}
.y233{bottom:28.570318pt;}
.y79{bottom:28.648748pt;}
.y85{bottom:28.648750pt;}
.y92{bottom:28.649070pt;}
.y173{bottom:29.074215pt;}
.y177{bottom:29.089503pt;}
.y188{bottom:29.154608pt;}
.y183{bottom:29.155252pt;}
.y17e{bottom:29.155915pt;}
.y81{bottom:29.390366pt;}
.y200{bottom:31.992194pt;}
.y1c1{bottom:32.570308pt;}
.y1e4{bottom:32.570312pt;}
.y1d4{bottom:32.570314pt;}
.y1db{bottom:32.570318pt;}
.y25c{bottom:33.263381pt;}
.y21a{bottom:33.264688pt;}
.y242{bottom:33.941404pt;}
.y213{bottom:33.941407pt;}
.y23d{bottom:33.941411pt;}
.y248{bottom:33.942703pt;}
.y229{bottom:33.942714pt;}
.y205{bottom:34.045573pt;}
.yd7{bottom:39.473951pt;}
.yd3{bottom:39.473952pt;}
.y10d{bottom:39.473954pt;}
.ydd{bottom:39.473956pt;}
.ycb{bottom:39.473958pt;}
.ye6{bottom:39.473960pt;}
.yed{bottom:39.473962pt;}
.y1ec{bottom:41.263385pt;}
.y253{bottom:46.473958pt;}
.y84{bottom:46.617579pt;}
.y172{bottom:47.245096pt;}
.y230{bottom:47.273435pt;}
.y217{bottom:47.274734pt;}
.y1e9{bottom:47.274738pt;}
.y1d7{bottom:47.274739pt;}
.y265{bottom:47.274741pt;}
.y209{bottom:47.274746pt;}
.y182{bottom:47.376612pt;}
.y17d{bottom:47.377915pt;}
.y1e3{bottom:50.473952pt;}
.y1ff{bottom:50.634114pt;}
.y20c{bottom:51.167030pt;}
.y1c0{bottom:54.473948pt;}
.y1d3{bottom:54.473954pt;}
.y1da{bottom:54.473959pt;}
.y23c{bottom:54.529944pt;}
.y212{bottom:54.529954pt;}
.y241{bottom:54.531244pt;}
.y228{bottom:54.531247pt;}
.y247{bottom:54.531250pt;}
.y204{bottom:54.634115pt;}
.yf9{bottom:57.377593pt;}
.ydc{bottom:57.377597pt;}
.yca{bottom:57.377598pt;}
.ye5{bottom:57.377600pt;}
.yec{bottom:57.377602pt;}
.yd6{bottom:57.377604pt;}
.yd2{bottom:57.377606pt;}
.y10c{bottom:57.377607pt;}
.y25b{bottom:58.635415pt;}
.y171{bottom:65.466456pt;}
.y22f{bottom:67.863275pt;}
.y208{bottom:67.863282pt;}
.y1e8{bottom:67.863284pt;}
.y264{bottom:67.863287pt;}
.y216{bottom:67.864587pt;}
.y252{bottom:69.070677pt;}
.y1fe{bottom:71.223954pt;}
.y1e2{bottom:72.377606pt;}
.y1d2{bottom:72.377607pt;}
.y203{bottom:73.276042pt;}
.y211{bottom:75.118490pt;}
.y240{bottom:75.119791pt;}
.y23b{bottom:75.119798pt;}
.y227{bottom:75.121087pt;}
.ye4{bottom:75.281241pt;}
.yd1{bottom:75.281246pt;}
.y10b{bottom:75.281247pt;}
.ydb{bottom:75.281250pt;}
.yc9{bottom:75.281251pt;}
.yeb{bottom:75.281255pt;}
.y1bf{bottom:76.378895pt;}
.y25a{bottom:81.233437pt;}
.y1e7{bottom:88.453124pt;}
.y263{bottom:88.453127pt;}
.y22e{bottom:88.453128pt;}
.y215{bottom:88.454427pt;}
.y1fd{bottom:89.864580pt;}
.y1e1{bottom:90.281246pt;}
.y1d1{bottom:90.281247pt;}
.yf8{bottom:93.184886pt;}
.yc8{bottom:93.184891pt;}
.ye3{bottom:93.184894pt;}
.yea{bottom:93.184895pt;}
.yd0{bottom:93.184897pt;}
.y10a{bottom:93.184901pt;}
.y23a{bottom:95.708331pt;}
.y210{bottom:95.708332pt;}
.y226{bottom:95.709634pt;}
.y1be{bottom:98.281242pt;}
.y24b{bottom:99.480467pt;}
.y195{bottom:99.813794pt;}
.y28f{bottom:101.886718pt;}
.y100{bottom:106.779947pt;}
.y1fc{bottom:107.768234pt;}
.y1e0{bottom:108.184899pt;}
.y22d{bottom:109.041662pt;}
.y262{bottom:109.042967pt;}
.ye2{bottom:111.088534pt;}
.yf7{bottom:111.088539pt;}
.y109{bottom:111.088541pt;}
.yc7{bottom:111.088542pt;}
.y1bc{bottom:111.537765pt;}
.y14b{bottom:111.701816pt;}
.y1d0{bottom:112.184900pt;}
.y1ee{bottom:113.575520pt;}
.y9a{bottom:114.281901pt;}
.y239{bottom:116.298171pt;}
.y225{bottom:116.298180pt;}
.yc0{bottom:117.302734pt;}
.y194{bottom:117.717441pt;}
.y1bd{bottom:120.184896pt;}
.y24a{bottom:121.127600pt;}
.y28e{bottom:122.476561pt;}
.y1df{bottom:126.088539pt;}
.y1fb{bottom:126.410154pt;}
.yf6{bottom:128.992179pt;}
.yc6{bottom:128.992187pt;}
.y108{bottom:128.992194pt;}
.y22c{bottom:129.630208pt;}
.y261{bottom:129.631514pt;}
.y24e{bottom:132.032549pt;}
.y14a{bottom:132.291660pt;}
.y1cf{bottom:134.088540pt;}
.y99{bottom:134.871087pt;}
.y224{bottom:136.888020pt;}
.y238{bottom:136.888024pt;}
.ybf{bottom:137.891914pt;}
.y193{bottom:140.992181pt;}
.y28d{bottom:143.065101pt;}
.y1fa{bottom:145.050781pt;}
.yf5{bottom:146.895833pt;}
.y107{bottom:146.895834pt;}
.y1de{bottom:147.992192pt;}
.y24d{bottom:148.308590pt;}
.y260{bottom:150.221354pt;}
.y1ce{bottom:151.992180pt;}
.y98{bottom:155.460287pt;}
.y237{bottom:157.476558pt;}
.y223{bottom:157.476567pt;}
.ybe{bottom:158.481121pt;}
.y28c{bottom:163.653640pt;}
.y106{bottom:164.799474pt;}
.y1f9{bottom:165.640620pt;}
.y149{bottom:166.213541pt;}
.y1cd{bottom:169.895834pt;}
.y24c{bottom:169.955725pt;}
.y97{bottom:176.049474pt;}
.y236{bottom:178.065104pt;}
.y222{bottom:178.066407pt;}
.ybd{bottom:179.093410pt;}
.y3a{bottom:179.772954pt;}
.y105{bottom:182.703127pt;}
.y192{bottom:183.890630pt;}
.y28b{bottom:184.242186pt;}
.y1f8{bottom:184.281247pt;}
.y5d{bottom:184.345047pt;}
.y148{bottom:186.803388pt;}
.y1cc{bottom:191.799479pt;}
.y96{bottom:196.638674pt;}
.y221{bottom:198.656247pt;}
.ybc{bottom:199.757465pt;}
.y39{bottom:200.361980pt;}
.y104{bottom:200.606767pt;}
.y1f7{bottom:202.921874pt;}
.y191{bottom:204.480474pt;}
.y28a{bottom:204.832030pt;}
.y1ba{bottom:207.152348pt;}
.y147{bottom:207.391927pt;}
.y1cb{bottom:209.703124pt;}
.y23f{bottom:212.299483pt;}
.yfe{bottom:214.201828pt;}
.y95{bottom:216.513665pt;}
.y1c3{bottom:217.055995pt;}
.y5c{bottom:218.267247pt;}
.y103{bottom:218.510421pt;}
.y220{bottom:219.244794pt;}
.ybb{bottom:220.421528pt;}
.y38{bottom:220.951340pt;}
.y1f6{bottom:221.563807pt;}
.y289{bottom:225.421874pt;}
.y190{bottom:226.802089pt;}
.y1ca{bottom:231.606770pt;}
.y246{bottom:232.888024pt;}
.y94{bottom:235.908532pt;}
.y102{bottom:236.414061pt;}
.y21f{bottom:239.833327pt;}
.yba{bottom:241.062496pt;}
.y146{bottom:241.315100pt;}
.y37{bottom:241.540367pt;}
.y1f5{bottom:242.153647pt;}
.y91{bottom:250.665365pt;}
.y5b{bottom:252.190100pt;}
.y1c9{bottom:253.510417pt;}
.y101{bottom:254.317714pt;}
.y1b5{bottom:257.959641pt;}
.y21e{bottom:260.423180pt;}
.y1f4{bottom:260.794274pt;}
.yb9{bottom:261.651687pt;}
.y288{bottom:262.011725pt;}
.y244{bottom:264.589847pt;}
.y90{bottom:269.168620pt;}
.y1c8{bottom:271.414062pt;}
.y145{bottom:275.236980pt;}
.y36{bottom:275.463047pt;}
.y1b8{bottom:275.864589pt;}
.y1f3{bottom:279.434900pt;}
.y21d{bottom:281.013020pt;}
.yb8{bottom:282.240881pt;}
.y287{bottom:282.598963pt;}
.y18f{bottom:283.273434pt;}
.y5a{bottom:286.112629pt;}
.y8e{bottom:286.884440pt;}
.y8d{bottom:287.137369pt;}
.y1c7{bottom:293.317709pt;}
.y1f2{bottom:298.076820pt;}
.y18e{bottom:298.510419pt;}
.y18d{bottom:298.763023pt;}
.yb7{bottom:302.830074pt;}
.y286{bottom:303.188807pt;}
.y59{bottom:306.701820pt;}
.y144{bottom:309.160150pt;}
.y35{bottom:309.385412pt;}
.y235{bottom:309.656249pt;}
.y1c6{bottom:311.221354pt;}
.y1f1{bottom:316.718754pt;}
.yfd{bottom:321.623703pt;}
.y58{bottom:327.290689pt;}
.y1b4{bottom:328.453127pt;}
.y143{bottom:329.748697pt;}
.y34{bottom:329.974767pt;}
.y18b{bottom:332.510419pt;}
.y18a{bottom:332.763023pt;}
.y1f0{bottom:335.359380pt;}
.yb6{bottom:337.330083pt;}
.y285{bottom:339.777346pt;}
.y1b3{bottom:346.622054pt;}
.y57{bottom:347.880207pt;}
.y142{bottom:350.338533pt;}
.y8a{bottom:352.603191pt;}
.y89{bottom:353.137369pt;}
.y1ef{bottom:357.263021pt;}
.yff{bottom:357.430994pt;}
.y22b{bottom:358.091145pt;}
.y284{bottom:360.367190pt;}
.y33{bottom:363.897128pt;}
.y1b2{bottom:365.358074pt;}
.y187{bottom:365.733067pt;}
.y141{bottom:370.927732pt;}
.yb5{bottom:372.546869pt;}
.yf4{bottom:376.334641pt;}
.y283{bottom:380.957034pt;}
.y56{bottom:381.802407pt;}
.y1b1{bottom:383.514332pt;}
.y185{bottom:384.208328pt;}
.y32{bottom:384.486487pt;}
.y88{bottom:386.106119pt;}
.y1e6{bottom:386.385416pt;}
.y87{bottom:386.640623pt;}
.y140{bottom:391.516923pt;}
.yb4{bottom:393.136060pt;}
.y1b0{bottom:401.669274pt;}
.y31{bottom:405.075514pt;}
.y13f{bottom:412.106767pt;}
.y282{bottom:413.652350pt;}
.yb3{bottom:413.725254pt;}
.y55{bottom:416.302737pt;}
.y181{bottom:417.175783pt;}
.y83{bottom:419.609379pt;}
.y1af{bottom:419.825526pt;}
.y1eb{bottom:426.105468pt;}
.y232{bottom:429.084636pt;}
.y281{bottom:431.285161pt;}
.y18{bottom:433.943354pt;}
.yb2{bottom:434.314447pt;}
.y13e{bottom:434.427728pt;}
.y80{bottom:436.836592pt;}
.y1ae{bottom:437.982426pt;}
.y54{bottom:438.186194pt;}
.y30{bottom:438.998207pt;}
.y164{bottom:446.470047pt;}
.yfc{bottom:447.949224pt;}
.y280{bottom:448.915369pt;}
.y180{bottom:453.872396pt;}
.y7e{bottom:455.828128pt;}
.y7d{bottom:456.081383pt;}
.y53{bottom:457.548178pt;}
.y2f{bottom:459.587234pt;}
.y1ad{bottom:460.830729pt;}
.y17{bottom:467.865887pt;}
.yb1{bottom:468.814457pt;}
.y13d{bottom:472.255518pt;}
.y52{bottom:475.180340pt;}
.y163{bottom:480.391927pt;}
.y27f{bottom:481.106772pt;}
.yf2{bottom:483.756516pt;}
.y17c{bottom:486.841147pt;}
.y78{bottom:489.050127pt;}
.y51{bottom:492.811849pt;}
.y13c{bottom:492.919580pt;}
.y1dd{bottom:497.075521pt;}
.y2e{bottom:500.027706pt;}
.y162{bottom:500.981777pt;}
.y27e{bottom:501.697919pt;}
.y16{bottom:501.788407pt;}
.yb0{bottom:504.031251pt;}
.y7b{bottom:506.484372pt;}
.y77{bottom:507.018876pt;}
.y21c{bottom:509.958333pt;}
.y50{bottom:510.444009pt;}
.y13b{bottom:513.583643pt;}
.y1ac{bottom:517.303380pt;}
.yfb{bottom:519.563807pt;}
.y161{bottom:521.570304pt;}
.y27d{bottom:522.286460pt;}
.y17b{bottom:523.539063pt;}
.yaf{bottom:524.620446pt;}
.y4f{bottom:528.075515pt;}
.y13a{bottom:534.247705pt;}
.y15{bottom:535.710936pt;}
.y129{bottom:537.983074pt;}
.ye9{bottom:538.467445pt;}
.y75{bottom:539.987636pt;}
.y2d{bottom:541.419759pt;}
.y160{bottom:542.158851pt;}
.yae{bottom:545.209634pt;}
.y4e{bottom:545.707676pt;}
.y1ab{bottom:551.225260pt;}
.y139{bottom:554.911768pt;}
.y27c{bottom:556.208333pt;}
.y14{bottom:556.300127pt;}
.y17a{bottom:556.507809pt;}
.y2c{bottom:562.009114pt;}
.y15f{bottom:562.748694pt;}
.y4d{bottom:563.339187pt;}
.yad{bottom:565.798829pt;}
.y1aa{bottom:571.815104pt;}
.y128{bottom:571.905594pt;}
.yf1{bottom:573.222653pt;}
.y138{bottom:575.575832pt;}
.y74{bottom:576.636465pt;}
.y27b{bottom:576.799480pt;}
.y13{bottom:576.889321pt;}
.y4c{bottom:581.483719pt;}
.y15e{bottom:583.337890pt;}
.yac{bottom:586.388020pt;}
.y127{bottom:587.141930pt;}
.y179{bottom:589.476556pt;}
.y1a9{bottom:592.403643pt;}
.y2b{bottom:595.931474pt;}
.y137{bottom:596.217447pt;}
.y27a{bottom:597.388021pt;}
.y12{bottom:597.478514pt;}
.y73{bottom:597.811847pt;}
.y26a{bottom:602.584636pt;}
.y15d{bottom:603.927085pt;}
.y124{bottom:606.046874pt;}
.y126{bottom:606.399087pt;}
.yab{bottom:606.977214pt;}
.ye8{bottom:610.082028pt;}
.y1d9{bottom:612.497396pt;}
.y1a8{bottom:612.993487pt;}
.y4b{bottom:614.926438pt;}
.y72{bottom:618.401047pt;}
.y136{bottom:618.539059pt;}
.y1d6{bottom:623.696615pt;}
.y15c{bottom:624.516925pt;}
.y123{bottom:625.302090pt;}
.y269{bottom:625.371089pt;}
.y176{bottom:626.067052pt;}
.yaa{bottom:627.566407pt;}
.yf0{bottom:627.985674pt;}
.y279{bottom:631.309897pt;}
.y11{bottom:631.401047pt;}
.y1a7{bottom:633.583338pt;}
.y4a{bottom:635.515633pt;}
.y2a{bottom:636.371786pt;}
.y71{bottom:638.990224pt;}
.y122{bottom:644.206381pt;}
.y175{bottom:644.476556pt;}
.y25f{bottom:644.490880pt;}
.y135{bottom:644.743488pt;}
.y15b{bottom:645.105466pt;}
.ye1{bottom:646.889327pt;}
.y278{bottom:651.899741pt;}
.y10{bottom:651.990237pt;}
.y1a6{bottom:654.171873pt;}
.y49{bottom:656.104821pt;}
.y70{bottom:659.579414pt;}
.ya9{bottom:661.488934pt;}
.y121{bottom:663.110021pt;}
.y15a{bottom:665.694007pt;}
.yf{bottom:672.579417pt;}
.y1a5{bottom:674.760416pt;}
.y48{bottom:676.694016pt;}
.y170{bottom:677.445312pt;}
.y134{bottom:679.196616pt;}
.y6f{bottom:680.168614pt;}
.y11f{bottom:682.013023pt;}
.ya8{bottom:682.078127pt;}
.y29{bottom:684.281946pt;}
.y277{bottom:685.821607pt;}
.y159{bottom:688.016928pt;}
.ye{bottom:693.168623pt;}
.y1c5{bottom:693.208333pt;}
.y1a4{bottom:695.350260pt;}
.y47{bottom:697.283207pt;}
.yda{bottom:700.600264pt;}
.y6e{bottom:700.757806pt;}
.y11c{bottom:700.917973pt;}
.y214{bottom:702.516927pt;}
.y276{bottom:706.411453pt;}
.y133{bottom:710.531253pt;}
.y28{bottom:712.918297pt;}
.yd{bottom:713.757811pt;}
.ya7{bottom:716.578123pt;}
.y46{bottom:717.872401pt;}
.yd5{bottom:718.503909pt;}
.y11b{bottom:718.820967pt;}
.y6d{bottom:721.347009pt;}
.y158{bottom:725.821606pt;}
.y1a3{bottom:725.920576pt;}
.y275{bottom:726.999994pt;}
.y16f{bottom:732.231769pt;}
.yc{bottom:734.347006pt;}
.y27{bottom:734.801594pt;}
.y45{bottom:738.461594pt;}
.y1a2{bottom:738.569007pt;}
.y6c{bottom:741.936189pt;}
.y157{bottom:746.411453pt;}
.y219{bottom:750.236979pt;}
.ya6{bottom:752.372390pt;}
.y26{bottom:752.957519pt;}
.yb{bottom:754.936194pt;}
.y11a{bottom:757.410160pt;}
.y1a1{bottom:757.473963pt;}
.y274{bottom:760.923173pt;}
.y6b{bottom:762.548478pt;}
.y16e{bottom:765.200516pt;}
.y156{bottom:767.000000pt;}
.y25{bottom:771.113441pt;}
.y267{bottom:771.882807pt;}
.ye0{bottom:772.214847pt;}
.y44{bottom:772.384109pt;}
.ya{bottom:775.525389pt;}
.y1a0{bottom:776.376301pt;}
.y119{bottom:777.999340pt;}
.y268{bottom:781.359369pt;}
.y273{bottom:781.511714pt;}
.y6a{bottom:783.212548pt;}
.y155{bottom:787.588539pt;}
.y298{bottom:787.607425pt;}
.ya5{bottom:788.166665pt;}
.y24{bottom:789.283509pt;}
.yc5{bottom:791.118489pt;}
.y43{bottom:792.973300pt;}
.y19f{bottom:795.279954pt;}
.y9{bottom:796.114580pt;}
.y118{bottom:798.588546pt;}
.y132{bottom:800.216147pt;}
.y16d{bottom:801.849678pt;}
.y69{bottom:803.876607pt;}
.y23{bottom:807.505271pt;}
.y154{bottom:808.178383pt;}
.ycf{bottom:809.022135pt;}
.ya4{bottom:810.627603pt;}
.y20f{bottom:813.208333pt;}
.y42{bottom:813.562494pt;}
.y19e{bottom:814.184896pt;}
.y272{bottom:815.434898pt;}
.y8{bottom:816.703774pt;}
.y259{bottom:816.949219pt;}
.y117{bottom:819.177734pt;}
.y207{bottom:820.463541pt;}
.y131{bottom:820.805991pt;}
.y297{bottom:821.049479pt;}
.y68{bottom:824.540669pt;}
.y153{bottom:828.767579pt;}
.ya3{bottom:832.511074pt;}
.y19d{bottom:833.087234pt;}
.y41{bottom:834.151687pt;}
.y271{bottom:836.023433pt;}
.y22{bottom:837.027012pt;}
.y7{bottom:837.292967pt;}
.y116{bottom:839.766929pt;}
.y130{bottom:841.394530pt;}
.y296{bottom:841.638021pt;}
.y16c{bottom:841.674784pt;}
.y67{bottom:845.181634pt;}
.y152{bottom:849.356769pt;}
.y20b{bottom:850.279948pt;}
.y19c{bottom:851.990887pt;}
.ya2{bottom:853.100260pt;}
.y270{bottom:856.611976pt;}
.y21{bottom:857.616207pt;}
.y6{bottom:859.614582pt;}
.y115{bottom:860.356117pt;}
.y12f{bottom:861.983721pt;}
.y295{bottom:862.229167pt;}
.y16b{bottom:862.338846pt;}
.y40{bottom:868.074217pt;}
.y151{bottom:869.946616pt;}
.y19a{bottom:870.895830pt;}
.ya1{bottom:873.689451pt;}
.y20{bottom:875.786281pt;}
.y26f{bottom:877.201820pt;}
.y258{bottom:878.966145pt;}
.y66{bottom:879.104167pt;}
.y114{bottom:880.945312pt;}
.y12e{bottom:882.572915pt;}
.y16a{bottom:883.002917pt;}
.y3f{bottom:888.663412pt;}
.y150{bottom:890.535156pt;}
.y25e{bottom:892.300781pt;}
.ya0{bottom:894.278645pt;}
.y65{bottom:894.341146pt;}
.y1f{bottom:894.536279pt;}
.y294{bottom:896.151047pt;}
.yc4{bottom:898.540364pt;}
.y113{bottom:901.534503pt;}
.y12d{bottom:903.162108pt;}
.y169{bottom:903.666979pt;}
.y3e{bottom:909.252603pt;}
.y199{bottom:909.483070pt;}
.y26e{bottom:911.123693pt;}
.y1e{bottom:912.758043pt;}
.y14f{bottom:912.856771pt;}
.y64{bottom:913.244791pt;}
.y9f{bottom:914.867838pt;}
.yce{bottom:916.444010pt;}
.y5{bottom:916.734375pt;}
.y293{bottom:916.739581pt;}
.y112{bottom:922.123697pt;}
.y168{bottom:924.331042pt;}
.y251{bottom:927.889323pt;}
.y3d{bottom:929.841797pt;}
.y198{bottom:930.072914pt;}
.y1d{bottom:930.979967pt;}
.y202{bottom:931.153645pt;}
.y26d{bottom:931.713540pt;}
.y63{bottom:932.148437pt;}
.yc2{bottom:935.347656pt;}
.y4{bottom:936.932291pt;}
.y292{bottom:937.328124pt;}
.y12c{bottom:938.817058pt;}
.y111{bottom:942.712890pt;}
.y167{bottom:944.995104pt;}
.y1c{bottom:949.201810pt;}
.y9e{bottom:949.367838pt;}
.y3c{bottom:950.430990pt;}
.y197{bottom:950.661453pt;}
.y14e{bottom:950.662109pt;}
.y62{bottom:951.052083pt;}
.y26c{bottom:952.302083pt;}
.yc1{bottom:953.251302pt;}
.y24f{bottom:957.154948pt;}
.y291{bottom:957.917969pt;}
.y3{bottom:959.718748pt;}
.y166{bottom:965.635416pt;}
.y1b{bottom:967.423652pt;}
.y61{bottom:969.955729pt;}
.y14d{bottom:971.251301pt;}
.y9d{bottom:971.251302pt;}
.y26b{bottom:972.891927pt;}
.y12b{bottom:976.622395pt;}
.y110{bottom:977.212890pt;}
.y2{bottom:982.505209pt;}
.y3b{bottom:984.930990pt;}
.y1a{bottom:985.645494pt;}
.y165{bottom:986.225260pt;}
.y60{bottom:988.859375pt;}
.y256{bottom:991.078125pt;}
.y290{bottom:991.839843pt;}
.y9c{bottom:991.840494pt;}
.y196{bottom:991.841146pt;}
.y14c{bottom:991.841148pt;}
.y12a{bottom:994.526042pt;}
.y1{bottom:1005.958333pt;}
.y5e{bottom:1007.763021pt;}
.y19{bottom:1008.546875pt;}
.y9b{bottom:1012.429687pt;}
.h2c{height:17.902344pt;}
.hb{height:17.903646pt;}
.h20{height:17.904297pt;}
.h21{height:18.255859pt;}
.h46{height:26.390625pt;}
.h2b{height:26.898438pt;}
.h2e{height:31.902344pt;}
.h28{height:31.968099pt;}
.hd{height:31.968751pt;}
.h2a{height:32.221355pt;}
.h14{height:32.221680pt;}
.h10{height:32.222005pt;}
.h13{height:32.502929pt;}
.hf{height:32.503255pt;}
.h49{height:34.588541pt;}
.h4d{height:34.589844pt;}
.h1f{height:35.806640pt;}
.h15{height:35.807292pt;}
.ha{height:38.828124pt;}
.h6{height:39.101563pt;}
.h22{height:39.585938pt;}
.h30{height:39.903645pt;}
.hc{height:40.648438pt;}
.h32{height:40.820313pt;}
.h47{height:43.984374pt;}
.h43{height:44.066407pt;}
.h8{height:44.531250pt;}
.h4a{height:47.923177pt;}
.h4e{height:48.382785pt;}
.h5{height:48.382814pt;}
.h7{height:48.558754pt;}
.h9{height:49.765623pt;}
.h2d{height:49.807292pt;}
.he{height:49.937500pt;}
.h25{height:50.378255pt;}
.h29{height:50.443360pt;}
.h11{height:51.213541pt;}
.h2{height:51.734373pt;}
.h3e{height:52.662501pt;}
.h3{height:52.781250pt;}
.h23{height:52.854000pt;}
.h1c{height:53.710937pt;}
.h44{height:55.733335pt;}
.h1{height:59.375002pt;}
.h4{height:61.578123pt;}
.h3d{height:61.971355pt;}
.h12{height:68.440755pt;}
.h33{height:68.511719pt;}
.h27{height:68.665364pt;}
.h26{height:68.666667pt;}
.h37{height:69.970052pt;}
.h18{height:71.614584pt;}
.h1b{height:72.666667pt;}
.h45{height:75.768229pt;}
.h34{height:79.710937pt;}
.h3a{height:79.873697pt;}
.h24{height:86.755208pt;}
.h19{height:89.518229pt;}
.h39{height:94.513021pt;}
.h42{height:96.356771pt;}
.h48{height:97.777344pt;}
.h1a{height:107.421875pt;}
.h36{height:109.690104pt;}
.h3c{height:109.691407pt;}
.h4b{height:109.940104pt;}
.h3b{height:116.945312pt;}
.h17{height:125.325521pt;}
.h16{height:143.229167pt;}
.h2f{height:145.421875pt;}
.h40{height:150.867188pt;}
.h1d{height:161.132812pt;}
.h4c{height:171.458333pt;}
.h35{height:195.132812pt;}
.h41{height:199.302084pt;}
.h1e{height:268.554693pt;}
.h3f{height:302.250000pt;}
.h31{height:332.458333pt;}
.h38{height:382.500000pt;}
.h0{height:1122.666667pt;}
.we{width:55.000000pt;}
.wd{width:72.000000pt;}
.w9{width:94.000000pt;}
.w2{width:102.000000pt;}
.w4{width:109.000000pt;}
.wc{width:116.000000pt;}
.w3{width:117.000000pt;}
.w11{width:131.000000pt;}
.w12{width:138.000000pt;}
.w7{width:148.000000pt;}
.w5{width:152.000000pt;}
.w6{width:184.000000pt;}
.w13{width:199.000000pt;}
.w8{width:202.000000pt;}
.wa{width:205.000000pt;}
.w14{width:303.000000pt;}
.w1{width:337.000000pt;}
.wb{width:345.000000pt;}
.wf{width:436.000000pt;}
.w10{width:481.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.xf{left:6.000000pt;}
.x11{left:7.705559pt;}
.x34{left:10.227303pt;}
.x3e{left:11.188370pt;}
.x19{left:13.000000pt;}
.x17{left:14.000000pt;}
.x1c{left:15.000000pt;}
.x28{left:16.923370pt;}
.x32{left:20.398842pt;}
.x30{left:22.143166pt;}
.x3a{left:25.000000pt;}
.x12{left:26.386604pt;}
.x3c{left:29.000000pt;}
.x13{left:30.100761pt;}
.x3b{left:34.000000pt;}
.x1d{left:35.762787pt;}
.x27{left:42.679657pt;}
.x1f{left:46.387550pt;}
.x14{left:50.500000pt;}
.x3d{left:53.000000pt;}
.x1e{left:54.000000pt;}
.x20{left:71.000000pt;}
.x35{left:90.000000pt;}
.x3f{left:94.000000pt;}
.x1{left:96.000000pt;}
.x7{left:97.000000pt;}
.x2{left:102.040495pt;}
.x37{left:106.000000pt;}
.x16{left:114.000000pt;}
.xa{left:120.000000pt;}
.xd{left:124.000000pt;}
.x8{left:144.000000pt;}
.x2c{left:147.000000pt;}
.x2b{left:149.000000pt;}
.x3{left:152.943998pt;}
.x25{left:166.000000pt;}
.x9{left:168.000000pt;}
.x31{left:170.000000pt;}
.x2d{left:171.000000pt;}
.xe{left:177.000000pt;}
.xb{left:192.000000pt;}
.x24{left:203.000000pt;}
.xc{left:216.000000pt;}
.x21{left:220.000000pt;}
.x33{left:226.000000pt;}
.x18{left:232.000000pt;}
.x38{left:236.000000pt;}
.x6{left:251.000000pt;}
.x4{left:252.875105pt;}
.x2f{left:258.000000pt;}
.x15{left:264.632030pt;}
.x2e{left:275.000000pt;}
.x2a{left:311.611130pt;}
.x1a{left:342.000000pt;}
.x5{left:396.850400pt;}
.x22{left:423.000000pt;}
.x39{left:436.000000pt;}
.x1b{left:495.000000pt;}
.x26{left:512.000000pt;}
.x10{left:515.000000pt;}
.x23{left:518.000000pt;}
.x36{left:572.000000pt;}
.x29{left:702.000000pt;}
}




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