
    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_d1cbf81d4761e5f72ef2218f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_2be10febc137190b050c8f91.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.937012;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_dd2965149bf83ebdfd48e97f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_07f025797d5d7f5f8e677763.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_62007f838fbb8562ca67c4b7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_26215925354e40403dd657d0.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eebd7a68edb5a705a4f4fa5c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_50fe77f73db985ebabc140bf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.823730;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_5c11a93ea89a9451aeadc395.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.823730;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_08c394f88f8eba6b1fe20894.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918945;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_18b189b6a04971d93f05e735.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284180;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_38e84283d6adff679bbd5620.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.093262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_cab6bbd4ca08005b9a6f7ff9.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_7e2aad53be471bd447395e5b.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_eec64375c2eb3bb5df706beb.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.284180;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:ff12;src:url('chunks/assets/font_311dcff77d0269346325edc7.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_af29914d1abd8ea3b1e35e48.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.923340;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_5c80e4643a8c2da52be0934b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.851562;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;}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m2{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.000000px;}
.v3{vertical-align:-1.005966px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:24.120000px;}
.lse{letter-spacing:-0.413400px;}
.ls18{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.220200px;}
.ls1a{letter-spacing:-0.206400px;}
.ls8{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.171600px;}
.ls10{letter-spacing:-0.153600px;}
.ls16{letter-spacing:-0.139800px;}
.ls6{letter-spacing:-0.064200px;}
.ls7{letter-spacing:-0.054720px;}
.lsa{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.017280px;}
.ls1b{letter-spacing:-0.013320px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000003px;}
.lsf{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.090000px;}
.ls5{letter-spacing:0.120000px;}
.ls9{letter-spacing:0.139800px;}
.ls19{letter-spacing:0.140040px;}
.lsd{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.450000px;}
.ls15{letter-spacing:8.370000px;}
.ls14{letter-spacing:23.606640px;}
.ls2{letter-spacing:55.980000px;}
.ls3{letter-spacing:56.340000px;}
.lsc{letter-spacing:1385.852640px;}
.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;}
}
.ws2{word-spacing:-60.120000px;}
.ws1{word-spacing:-31.463160px;}
.wsf{word-spacing:-15.210000px;}
.ws9{word-spacing:-15.183600px;}
.ws6{word-spacing:-15.169800px;}
.ws5{word-spacing:-15.030000px;}
.ws7{word-spacing:-14.976720px;}
.ws13{word-spacing:-14.890200px;}
.wsa{word-spacing:-14.876400px;}
.ws4{word-spacing:-14.850000px;}
.ws15{word-spacing:-14.823600px;}
.ws16{word-spacing:-14.809800px;}
.ws12{word-spacing:-14.616600px;}
.ws3{word-spacing:-13.652640px;}
.ws8{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.797280px;}
.wsc{word-spacing:-12.780003px;}
.wsb{word-spacing:-12.780000px;}
.wse{word-spacing:-12.608400px;}
.ws10{word-spacing:-11.455192px;}
.ws14{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
.ws11{word-spacing:1619.396357px;}
._a{margin-left:-4.115520px;}
._9{margin-left:-3.066120px;}
._0{margin-left:-1.126320px;}
._2{width:1.141560px;}
._7{width:2.227320px;}
._6{width:3.488040px;}
._8{width:4.502520px;}
._4{width:5.771520px;}
._3{width:6.793560px;}
._5{width:8.517000px;}
._e{width:9.587280px;}
._c{width:11.182320px;}
._f{width:12.533760px;}
._b{width:13.916400px;}
._1e{width:15.273120px;}
._12{width:16.412760px;}
._10{width:17.615160px;}
._11{width:18.697320px;}
._13{width:20.080080px;}
._21{width:21.265920px;}
._1f{width:22.991760px;}
._d{width:24.168240px;}
._24{width:25.258680px;}
._25{width:27.234360px;}
._16{width:28.933920px;}
._15{width:30.518640px;}
._19{width:31.541040px;}
._17{width:33.074640px;}
._18{width:34.199280px;}
._27{width:35.290440px;}
._1d{width:36.346320px;}
._26{width:38.116080px;}
._14{width:39.157920px;}
._2b{width:41.482800px;}
._1b{width:44.218800px;}
._28{width:45.507600px;}
._22{width:46.621440px;}
._2d{width:48.276360px;}
._1c{width:50.966640px;}
._20{width:52.244640px;}
._1a{width:61.650720px;}
._2a{width:79.335720px;}
._29{width:80.567640px;}
._2c{width:90.420480px;}
._23{width:1038.393612px;}
._1{width:1620.452640px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,111,192);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:38.821132px;}
.fsf{font-size:38.880000px;}
.fsd{font-size:41.205728px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.120000px;}
.fsa{font-size:47.880000px;}
.fsc{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:60.120000px;}
.fs1{font-size:63.000000px;}
.fs10{font-size:63.371411px;}
.fs8{font-size:65.880000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:2.880000px;}
.yeb{bottom:3.060000px;}
.y26{bottom:3.150000px;}
.y39{bottom:3.330000px;}
.y5a{bottom:6.570000px;}
.yd3{bottom:10.170000px;}
.yee{bottom:10.260000px;}
.y60{bottom:10.530000px;}
.y61{bottom:11.340000px;}
.y101{bottom:12.960000px;}
.y24{bottom:13.860000px;}
.y5c{bottom:16.740000px;}
.y12c{bottom:16.753330px;}
.yd1{bottom:17.550000px;}
.yea{bottom:17.730000px;}
.ye5{bottom:17.820000px;}
.ydf{bottom:17.850000px;}
.y25{bottom:20.340000px;}
.y38{bottom:20.610000px;}
.yd2{bottom:24.840000px;}
.y100{bottom:27.630000px;}
.y5b{bottom:30.510000px;}
.yd4{bottom:32.220000px;}
.ye9{bottom:32.400000px;}
.y109{bottom:32.430000px;}
.ye4{bottom:32.490000px;}
.yde{bottom:32.520000px;}
.y37{bottom:37.980000px;}
.yff{bottom:42.300000px;}
.ye8{bottom:47.070000px;}
.y108{bottom:47.100000px;}
.ye3{bottom:47.160000px;}
.ydd{bottom:47.190000px;}
.y12f{bottom:50.963024px;}
.y131{bottom:52.892649px;}
.y36{bottom:55.260000px;}
.yfe{bottom:56.970000px;}
.y3c{bottom:58.680000px;}
.ye7{bottom:61.740000px;}
.yf6{bottom:61.770000px;}
.ye2{bottom:61.830000px;}
.ydc{bottom:61.860000px;}
.y5{bottom:66.525004px;}
.y35{bottom:72.810000px;}
.y12b{bottom:73.069693px;}
.y3b{bottom:75.960000px;}
.yec{bottom:76.410000px;}
.yf5{bottom:76.440000px;}
.ye1{bottom:76.500000px;}
.ydb{bottom:76.530000px;}
.yf4{bottom:91.110000px;}
.y34{bottom:91.800000px;}
.y3a{bottom:93.240000px;}
.y129{bottom:94.097806px;}
.y4{bottom:97.125005px;}
.yfc{bottom:101.430000px;}
.yf3{bottom:105.780000px;}
.y128{bottom:106.043649px;}
.y33{bottom:110.250000px;}
.yfb{bottom:116.100000px;}
.yfa{bottom:116.370000px;}
.y32{bottom:127.530000px;}
.y10d{bottom:136.350000px;}
.y105{bottom:136.380000px;}
.y22{bottom:139.264499px;}
.y130{bottom:139.812089px;}
.y10c{bottom:150.930000px;}
.y104{bottom:150.960000px;}
.y10b{bottom:151.200000px;}
.y103{bottom:151.230000px;}
.y127{bottom:167.721923px;}
.y19{bottom:196.933500px;}
.y12a{bottom:205.199862px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y12d{bottom:242.712095px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yf1{bottom:269.040000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y28{bottom:278.220000px;}
.y12e{bottom:280.355790px;}
.yd9{bottom:283.710000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yd8{bottom:298.380000px;}
.yf0{bottom:298.650000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yd7{bottom:313.050000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y1c3{bottom:323.760000px;}
.y1dc{bottom:326.370000px;}
.yd5{bottom:326.460000px;}
.y125{bottom:326.730000px;}
.y90{bottom:327.180000px;}
.y5e{bottom:327.720000px;}
.yd6{bottom:327.990000px;}
.ybb{bottom:331.410000px;}
.y234{bottom:334.650000px;}
.y16d{bottom:339.150000px;}
.y10a{bottom:339.330000px;}
.y59{bottom:341.490000px;}
.y1db{bottom:343.650000px;}
.y124{bottom:344.010000px;}
.y8f{bottom:344.370000px;}
.y223{bottom:345.630000px;}
.y10{bottom:348.133500px;}
.yba{bottom:348.690000px;}
.y18a{bottom:349.410000px;}
.y1c2{bottom:349.950000px;}
.y1a5{bottom:351.930000px;}
.y16c{bottom:356.430000px;}
.y1da{bottom:360.930000px;}
.y123{bottom:361.200000px;}
.y8e{bottom:361.650000px;}
.y222{bottom:362.910000px;}
.y14e{bottom:365.880000px;}
.y189{bottom:366.690000px;}
.y1a4{bottom:369.120000px;}
.y16b{bottom:373.620000px;}
.yb9{bottom:374.700000px;}
.y1f4{bottom:374.880000px;}
.y1c1{bottom:376.410000px;}
.y1d9{bottom:378.120000px;}
.y122{bottom:378.480000px;}
.y8d{bottom:378.930000px;}
.y221{bottom:380.190000px;}
.y14d{bottom:383.160000px;}
.y188{bottom:383.880000px;}
.y58{bottom:385.860000px;}
.y1a3{bottom:386.400000px;}
.yf{bottom:386.785499px;}
.y16a{bottom:390.900000px;}
.y1f3{bottom:392.160000px;}
.y1c0{bottom:393.690000px;}
.y121{bottom:395.760000px;}
.y220{bottom:397.380000px;}
.y10f{bottom:398.730000px;}
.y20a{bottom:399.900000px;}
.yb8{bottom:401.160000px;}
.y57{bottom:402.510000px;}
.y1a2{bottom:403.680000px;}
.y1d8{bottom:404.400000px;}
.y8c{bottom:405.120000px;}
.ye{bottom:408.044999px;}
.y169{bottom:408.180000px;}
.y56{bottom:409.260000px;}
.y14c{bottom:409.350000px;}
.y1bf{bottom:410.880000px;}
.y120{bottom:412.950000px;}
.y23b{bottom:414.660000px;}
.ye6{bottom:415.200000px;}
.y209{bottom:417.180000px;}
.y187{bottom:418.350000px;}
.y21f{bottom:419.160000px;}
.y1a1{bottom:420.870000px;}
.y1d7{bottom:421.680000px;}
.y8b{bottom:422.400000px;}
.y55{bottom:423.210000px;}
.y168{bottom:425.370000px;}
.y14b{bottom:426.630000px;}
.yb7{bottom:427.350000px;}
.y1be{bottom:428.160000px;}
.y233{bottom:429.870000px;}
.y1f2{bottom:431.130000px;}
.y208{bottom:434.370000px;}
.y186{bottom:435.630000px;}
.y21e{bottom:436.350000px;}
.y1a0{bottom:438.150000px;}
.y1d6{bottom:438.870000px;}
.y11f{bottom:439.230000px;}
.y8a{bottom:439.680000px;}
.y167{bottom:442.650000px;}
.y10e{bottom:443.460000px;}
.y14a{bottom:443.910000px;}
.y1bd{bottom:445.350000px;}
.y54{bottom:445.440000px;}
.y232{bottom:447.150000px;}
.y1f1{bottom:448.410000px;}
.y185{bottom:452.910000px;}
.yb6{bottom:453.630000px;}
.y19f{bottom:455.340000px;}
.y1d5{bottom:456.150000px;}
.y11e{bottom:456.510000px;}
.y89{bottom:456.870000px;}
.y149{bottom:461.100000px;}
.y1bc{bottom:462.630000px;}
.y53{bottom:462.810000px;}
.y231{bottom:464.340000px;}
.y166{bottom:468.840000px;}
.y184{bottom:470.100000px;}
.yb5{bottom:470.910000px;}
.y19e{bottom:472.620000px;}
.y207{bottom:473.340000px;}
.y11d{bottom:473.700000px;}
.y88{bottom:474.150000px;}
.y148{bottom:478.380000px;}
.y1bb{bottom:479.910000px;}
.y52{bottom:480.000000px;}
.y1d4{bottom:482.340000px;}
.yd{bottom:484.864502px;}
.y165{bottom:486.120000px;}
.y183{bottom:487.380000px;}
.yb4{bottom:488.100000px;}
.ye0{bottom:489.180000px;}
.y19d{bottom:489.900000px;}
.y206{bottom:490.620000px;}
.y11c{bottom:490.980000px;}
.y87{bottom:491.340000px;}
.y23a{bottom:492.600000px;}
.y147{bottom:495.660000px;}
.y1ba{bottom:497.100000px;}
.y51{bottom:497.280000px;}
.y1d3{bottom:499.620000px;}
.y102{bottom:502.860000px;}
.yc{bottom:502.864502px;}
.y164{bottom:503.400000px;}
.y182{bottom:504.660000px;}
.yb3{bottom:505.380000px;}
.y11b{bottom:508.260000px;}
.y86{bottom:508.620000px;}
.y21d{bottom:509.880000px;}
.y205{bottom:512.400000px;}
.y1b9{bottom:514.380000px;}
.y19c{bottom:516.090000px;}
.y1d2{bottom:516.900000px;}
.y163{bottom:520.590000px;}
.yb{bottom:520.864502px;}
.y146{bottom:521.850000px;}
.yb2{bottom:522.660000px;}
.y50{bottom:523.560000px;}
.y85{bottom:525.900000px;}
.y1f0{bottom:526.350000px;}
.y21c{bottom:527.160000px;}
.y204{bottom:529.590000px;}
.y1b8{bottom:531.660000px;}
.y19b{bottom:533.370000px;}
.y1d1{bottom:534.090000px;}
.y11a{bottom:534.270000px;}
.y162{bottom:537.870000px;}
.ya{bottom:538.864499px;}
.y145{bottom:539.130000px;}
.yb1{bottom:539.850000px;}
.y4f{bottom:540.750000px;}
.y230{bottom:542.370000px;}
.y84{bottom:543.090000px;}
.y1ef{bottom:543.630000px;}
.y21b{bottom:544.350000px;}
.y203{bottom:546.870000px;}
.y239{bottom:548.850000px;}
.y19a{bottom:550.650000px;}
.y1d0{bottom:551.370000px;}
.y161{bottom:555.150000px;}
.y144{bottom:556.410000px;}
.y9{bottom:556.864499px;}
.yb0{bottom:557.130000px;}
.y1b7{bottom:557.850000px;}
.y4e{bottom:558.030000px;}
.y22f{bottom:559.650000px;}
.y83{bottom:560.370000px;}
.y119{bottom:560.550000px;}
.y1ee{bottom:560.910000px;}
.y21a{bottom:561.630000px;}
.y107{bottom:562.260000px;}
.y181{bottom:565.410000px;}
.y238{bottom:566.130000px;}
.y199{bottom:567.840000px;}
.y1cf{bottom:568.650000px;}
.y160{bottom:572.340000px;}
.y143{bottom:573.600000px;}
.y1b6{bottom:575.130000px;}
.y4d{bottom:575.310000px;}
.y22e{bottom:576.840000px;}
.y82{bottom:577.650000px;}
.yda{bottom:577.920000px;}
.y180{bottom:582.600000px;}
.yaf{bottom:583.410000px;}
.y198{bottom:585.120000px;}
.y1ce{bottom:585.840000px;}
.y118{bottom:586.830000px;}
.y15f{bottom:589.620000px;}
.y1b5{bottom:592.410000px;}
.y4c{bottom:592.500000px;}
.y81{bottom:594.870000px;}
.y22d{bottom:598.650000px;}
.y142{bottom:599.910000px;}
.yae{bottom:600.630000px;}
.y197{bottom:602.430000px;}
.y1cd{bottom:603.150000px;}
.y15e{bottom:606.930000px;}
.y1b4{bottom:609.630000px;}
.y4b{bottom:609.810000px;}
.y126{bottom:609.840000px;}
.y80{bottom:612.150000px;}
.y22c{bottom:615.930000px;}
.y141{bottom:617.190000px;}
.yad{bottom:617.910000px;}
.y196{bottom:619.620000px;}
.y1cc{bottom:620.430000px;}
.y106{bottom:621.690000px;}
.y237{bottom:622.410000px;}
.y1b3{bottom:626.910000px;}
.y4a{bottom:627.090000px;}
.y7f{bottom:629.430000px;}
.y15d{bottom:633.120000px;}
.y140{bottom:634.380000px;}
.yac{bottom:635.190000px;}
.y202{bottom:637.620000px;}
.y1ed{bottom:638.880000px;}
.y236{bottom:639.690000px;}
.y17f{bottom:643.380000px;}
.y1b2{bottom:644.190000px;}
.y49{bottom:644.280000px;}
.y8{bottom:645.510000px;}
.y195{bottom:645.900000px;}
.y7e{bottom:646.620000px;}
.y15c{bottom:650.400000px;}
.y13f{bottom:651.660000px;}
.yab{bottom:652.380000px;}
.y22b{bottom:654.900000px;}
.y1ec{bottom:656.160000px;}
.y219{bottom:656.880000px;}
.y201{bottom:659.400000px;}
.y17e{bottom:660.660000px;}
.y48{bottom:661.560000px;}
.y194{bottom:663.180000px;}
.y7d{bottom:663.900000px;}
.yf9{bottom:666.420000px;}
.yd0{bottom:666.690000px;}
.y7{bottom:666.771000px;}
.y15b{bottom:667.680000px;}
.y13e{bottom:668.940000px;}
.yaa{bottom:669.660000px;}
.y1b1{bottom:670.380000px;}
.y22a{bottom:672.180000px;}
.y1eb{bottom:673.440000px;}
.y218{bottom:674.160000px;}
.y200{bottom:676.680000px;}
.y17d{bottom:677.940000px;}
.y47{bottom:678.840000px;}
.y193{bottom:680.370000px;}
.y7c{bottom:681.180000px;}
.y15a{bottom:684.870000px;}
.y1b0{bottom:687.660000px;}
.y229{bottom:689.370000px;}
.y1ea{bottom:690.630000px;}
.y217{bottom:691.440000px;}
.y1ff{bottom:693.870000px;}
.y13d{bottom:695.130000px;}
.ya9{bottom:695.940000px;}
.y46{bottom:696.030000px;}
.y192{bottom:697.650000px;}
.y7b{bottom:698.370000px;}
.y159{bottom:702.150000px;}
.y1af{bottom:704.940000px;}
.y1fe{bottom:711.150000px;}
.y13c{bottom:712.410000px;}
.ya8{bottom:713.130000px;}
.y45{bottom:713.310000px;}
.y191{bottom:714.930000px;}
.y7a{bottom:715.650000px;}
.y158{bottom:719.430000px;}
.y17c{bottom:721.410000px;}
.y1ae{bottom:722.130000px;}
.ycf{bottom:723.750000px;}
.yfd{bottom:725.820000px;}
.y6{bottom:726.298500px;}
.y228{bottom:728.430000px;}
.y13b{bottom:729.690000px;}
.ya7{bottom:730.410000px;}
.y44{bottom:730.500000px;}
.y1cb{bottom:732.930000px;}
.y157{bottom:736.620000px;}
.y17b{bottom:738.690000px;}
.y1ad{bottom:739.410000px;}
.y190{bottom:741.120000px;}
.y79{bottom:741.930000px;}
.y227{bottom:745.620000px;}
.y13a{bottom:746.880000px;}
.ya6{bottom:747.690000px;}
.y43{bottom:747.780000px;}
.yce{bottom:750.120000px;}
.y3{bottom:752.599495px;}
.y17a{bottom:755.880000px;}
.y1ac{bottom:756.690000px;}
.y18f{bottom:758.400000px;}
.y78{bottom:759.120000px;}
.y156{bottom:762.900000px;}
.y139{bottom:764.160000px;}
.ya5{bottom:764.880000px;}
.y42{bottom:765.060000px;}
.ycd{bottom:767.400000px;}
.y216{bottom:769.380000px;}
.y179{bottom:773.160000px;}
.y1ab{bottom:773.880000px;}
.y18e{bottom:775.680000px;}
.y77{bottom:776.400000px;}
.y155{bottom:780.180000px;}
.y138{bottom:781.350000px;}
.ya4{bottom:782.160000px;}
.y41{bottom:782.250000px;}
.ycc{bottom:784.680000px;}
.y1e9{bottom:785.850000px;}
.y215{bottom:786.660000px;}
.y178{bottom:790.350000px;}
.y1aa{bottom:791.160000px;}
.y18d{bottom:792.870000px;}
.y76{bottom:793.680000px;}
.yef{bottom:795.030000px;}
.y154{bottom:797.370000px;}
.ya3{bottom:799.350000px;}
.y40{bottom:799.530000px;}
.ycb{bottom:801.870000px;}
.y1e8{bottom:803.130000px;}
.y214{bottom:803.850000px;}
.y1fd{bottom:806.370000px;}
.y137{bottom:807.630000px;}
.y1a9{bottom:808.350000px;}
.y75{bottom:810.870000px;}
.y153{bottom:814.650000px;}
.ya2{bottom:816.630000px;}
.y3f{bottom:816.810000px;}
.y18c{bottom:818.970000px;}
.yca{bottom:819.150000px;}
.y1e7{bottom:820.410000px;}
.y213{bottom:821.130000px;}
.y1fc{bottom:823.650000px;}
.y136{bottom:824.910000px;}
.y1a8{bottom:825.630000px;}
.y1ca{bottom:828.150000px;}
.y152{bottom:831.840000px;}
.y3e{bottom:833.820000px;}
.ya1{bottom:833.910000px;}
.yc9{bottom:836.340000px;}
.y74{bottom:837.150000px;}
.y226{bottom:840.840000px;}
.y1e6{bottom:842.100000px;}
.y1a7{bottom:842.910000px;}
.y18b{bottom:845.340000px;}
.y135{bottom:850.920000px;}
.y3d{bottom:851.100000px;}
.yc8{bottom:853.620000px;}
.y73{bottom:854.340000px;}
.y151{bottom:857.940000px;}
.y225{bottom:858.120000px;}
.y1e5{bottom:859.380000px;}
.ya0{bottom:860.100000px;}
.y1c9{bottom:862.620000px;}
.y31{bottom:865.770000px;}
.y177{bottom:868.380000px;}
.yf8{bottom:869.100000px;}
.yc7{bottom:870.900000px;}
.y72{bottom:871.620000px;}
.y1e4{bottom:876.660000px;}
.y9f{bottom:877.380000px;}
.y2{bottom:879.369000px;}
.y1c8{bottom:879.900000px;}
.y150{bottom:884.400000px;}
.y176{bottom:885.660000px;}
.y1a6{bottom:886.380000px;}
.yc6{bottom:888.090000px;}
.y71{bottom:888.900000px;}
.y9e{bottom:894.660000px;}
.y1c7{bottom:897.090000px;}
.y1e3{bottom:898.350000px;}
.y212{bottom:899.160000px;}
.y175{bottom:902.850000px;}
.y134{bottom:903.660000px;}
.yc5{bottom:905.370000px;}
.y70{bottom:906.090000px;}
.y9d{bottom:911.850000px;}
.y1c6{bottom:914.370000px;}
.y1e2{bottom:915.630000px;}
.y211{bottom:916.350000px;}
.y1fb{bottom:918.870000px;}
.y133{bottom:920.850000px;}
.yc4{bottom:922.650000px;}
.y6f{bottom:923.370000px;}
.yf7{bottom:928.500000px;}
.y174{bottom:928.950000px;}
.y117{bottom:930.840000px;}
.y1c5{bottom:931.650000px;}
.y1e1{bottom:932.910000px;}
.y210{bottom:933.630000px;}
.y1fa{bottom:936.150000px;}
.y9c{bottom:938.130000px;}
.yc3{bottom:939.840000px;}
.y6e{bottom:940.650000px;}
.y116{bottom:948.120000px;}
.y1c4{bottom:948.840000px;}
.y1e0{bottom:950.100000px;}
.y20f{bottom:950.910000px;}
.y1f9{bottom:953.340000px;}
.y9b{bottom:955.410000px;}
.y6d{bottom:957.840000px;}
.y115{bottom:965.400000px;}
.yc2{bottom:966.120000px;}
.y1{bottom:966.726000px;}
.y20e{bottom:968.100000px;}
.y1f8{bottom:970.620000px;}
.y1df{bottom:971.700000px;}
.y9a{bottom:972.600000px;}
.y6c{bottom:975.120000px;}
.y173{bottom:981.600000px;}
.yc1{bottom:983.400000px;}
.yf2{bottom:987.900000px;}
.y99{bottom:989.880000px;}
.y114{bottom:991.590000px;}
.y6b{bottom:992.400000px;}
.y1de{bottom:997.980000px;}
.y172{bottom:998.880000px;}
.yc0{bottom:1000.590000px;}
.y98{bottom:1007.160000px;}
.y113{bottom:1008.870000px;}
.y6a{bottom:1009.590000px;}
.y30{bottom:1011.300000px;}
.y171{bottom:1016.160000px;}
.ybf{bottom:1017.870000px;}
.y97{bottom:1024.350000px;}
.y112{bottom:1026.150000px;}
.y69{bottom:1026.870000px;}
.y235{bottom:1028.850000px;}
.y224{bottom:1031.370000px;}
.y170{bottom:1033.350000px;}
.y2f{bottom:1035.690000px;}
.y96{bottom:1041.660000px;}
.y68{bottom:1044.180000px;}
.y20d{bottom:1046.160000px;}
.y2d{bottom:1047.960000px;}
.y1f7{bottom:1048.680000px;}
.y16f{bottom:1050.660000px;}
.y111{bottom:1052.190000px;}
.y2e{bottom:1053.990000px;}
.y95{bottom:1058.940000px;}
.y67{bottom:1061.370000px;}
.y20c{bottom:1063.440000px;}
.y1f6{bottom:1065.870000px;}
.y2c{bottom:1066.860000px;}
.y16e{bottom:1067.940000px;}
.y94{bottom:1076.130000px;}
.y110{bottom:1078.470000px;}
.y66{bottom:1078.650000px;}
.y20b{bottom:1080.630000px;}
.y1f5{bottom:1083.150000px;}
.y132{bottom:1085.130000px;}
.y2b{bottom:1085.670000px;}
.y14f{bottom:1087.650000px;}
.y1dd{bottom:1093.410000px;}
.y65{bottom:1095.930000px;}
.y93{bottom:1102.410000px;}
.y2a{bottom:1103.940000px;}
.ybe{bottom:1104.930000px;}
.yed{bottom:1105.920000px;}
.y64{bottom:1113.120000px;}
.y92{bottom:1119.690000px;}
.ybd{bottom:1122.120000px;}
.y29{bottom:1129.500000px;}
.y91{bottom:1136.880000px;}
.y63{bottom:1139.220000px;}
.ybc{bottom:1139.400000px;}
.y27{bottom:1154.790000px;}
.y62{bottom:1157.310000px;}
.y23{bottom:1172.880000px;}
.y5f{bottom:1175.400000px;}
.h3b{height:27.788955px;}
.h3a{height:29.998897px;}
.h1c{height:31.860000px;}
.h7{height:32.130000px;}
.h9{height:34.380000px;}
.h14{height:41.317910px;}
.h1a{height:41.400000px;}
.h12{height:42.449062px;}
.hb{height:43.769004px;}
.h32{height:43.915500px;}
.h33{height:43.920000px;}
.h20{height:44.005500px;}
.h1e{height:44.010000px;}
.h6{height:45.900000px;}
.h1b{height:46.968223px;}
.h18{height:46.991602px;}
.h3{height:48.195000px;}
.h22{height:50.171484px;}
.h3d{height:51.241727px;}
.h1f{height:51.519375px;}
.h1d{height:52.751777px;}
.h19{height:54.421875px;}
.h2{height:55.080000px;}
.h2d{height:58.585500px;}
.h2c{height:58.590000px;}
.h34{height:58.612500px;}
.h36{height:58.680000px;}
.h38{height:58.975137px;}
.hf{height:59.004492px;}
.h3c{height:59.038594px;}
.hd{height:60.589687px;}
.h37{height:62.585859px;}
.ha{height:64.064355px;}
.h17{height:64.657617px;}
.h13{height:66.394687px;}
.h10{height:66.569062px;}
.he{height:67.701973px;}
.h2f{height:68.485500px;}
.h30{height:68.490000px;}
.hc{height:70.664062px;}
.h26{height:73.260000px;}
.h5{height:78.030000px;}
.h27{height:87.927000px;}
.h28{height:87.930000px;}
.h25{height:88.020000px;}
.h24{height:88.042500px;}
.h2a{height:117.300000px;}
.h2b{height:117.304500px;}
.h4{height:119.055004px;}
.h2e{height:127.890000px;}
.h15{height:141.475500px;}
.h16{height:141.480000px;}
.h35{height:162.720000px;}
.h31{height:162.735000px;}
.h39{height:308.608566px;}
.h29{height:310.170000px;}
.h23{height:339.495000px;}
.h21{height:339.510000px;}
.h11{height:1262.774911px;}
.h8{height:1262.790000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wd{width:34.290000px;}
.wc{width:72.630000px;}
.w4{width:73.350000px;}
.w13{width:81.985500px;}
.we{width:81.990000px;}
.w11{width:89.220000px;}
.w12{width:89.223000px;}
.w9{width:115.020000px;}
.wf{width:137.272500px;}
.w8{width:200.550000px;}
.w10{width:205.380000px;}
.w7{width:341.850000px;}
.wa{width:437.730000px;}
.w5{width:479.040000px;}
.wb{width:479.400000px;}
.w14{width:547.101301px;}
.w2{width:637.794021px;}
.w6{width:892.878750px;}
.w3{width:892.890000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.100000px;}
.x1b{left:11.880000px;}
.x18{left:14.490000px;}
.x27{left:16.261614px;}
.x1a{left:27.090000px;}
.x24{left:35.991286px;}
.x1f{left:43.920000px;}
.x1d{left:52.650000px;}
.x2a{left:57.303049px;}
.x29{left:64.013395px;}
.x8{left:72.450000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:170.130000px;}
.x22{left:172.890000px;}
.x15{left:176.160000px;}
.x12{left:178.950000px;}
.x2c{left:191.460000px;}
.xa{left:194.250000px;}
.x4{left:203.484001px;}
.xd{left:205.140000px;}
.x7{left:243.480000px;}
.x28{left:246.618047px;}
.x11{left:254.460000px;}
.x23{left:258.858584px;}
.xb{left:266.520000px;}
.x26{left:272.843698px;}
.x16{left:285.150000px;}
.x1c{left:288.660000px;}
.x9{left:306.210000px;}
.x19{left:308.370000px;}
.xe{left:373.170000px;}
.x14{left:386.160000px;}
.x2b{left:405.032385px;}
.x1e{left:426.660000px;}
.xc{left:446.460000px;}
.x3{left:454.959000px;}
.x25{left:491.862097px;}
.xf{left:500.358750px;}
.x10{left:519.720000px;}
.x13{left:521.520000px;}
.x20{left:632.850000px;}
.x17{left:649.530000px;}
.x2d{left:662.670000px;}
.x2e{left:674.370000px;}
.x21{left:720.090000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v3{vertical-align:-0.894192pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.440000pt;}
.lse{letter-spacing:-0.367467pt;}
.ls18{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.195733pt;}
.ls1a{letter-spacing:-0.183467pt;}
.ls8{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.152533pt;}
.ls10{letter-spacing:-0.136533pt;}
.ls16{letter-spacing:-0.124267pt;}
.ls6{letter-spacing:-0.057067pt;}
.ls7{letter-spacing:-0.048640pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.015360pt;}
.ls1b{letter-spacing:-0.011840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000003pt;}
.lsf{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.080000pt;}
.ls5{letter-spacing:0.106667pt;}
.ls9{letter-spacing:0.124267pt;}
.ls19{letter-spacing:0.124480pt;}
.lsd{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.400000pt;}
.ls15{letter-spacing:7.440000pt;}
.ls14{letter-spacing:20.983680pt;}
.ls2{letter-spacing:49.760000pt;}
.ls3{letter-spacing:50.080000pt;}
.lsc{letter-spacing:1231.869013pt;}
.ws2{word-spacing:-53.440000pt;}
.ws1{word-spacing:-27.967253pt;}
.wsf{word-spacing:-13.520000pt;}
.ws9{word-spacing:-13.496533pt;}
.ws6{word-spacing:-13.484267pt;}
.ws5{word-spacing:-13.360000pt;}
.ws7{word-spacing:-13.312640pt;}
.ws13{word-spacing:-13.235733pt;}
.wsa{word-spacing:-13.223467pt;}
.ws4{word-spacing:-13.200000pt;}
.ws15{word-spacing:-13.176533pt;}
.ws16{word-spacing:-13.164267pt;}
.ws12{word-spacing:-12.992533pt;}
.ws3{word-spacing:-12.135680pt;}
.ws8{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.375360pt;}
.wsc{word-spacing:-11.360003pt;}
.wsb{word-spacing:-11.360000pt;}
.wse{word-spacing:-11.207467pt;}
.ws10{word-spacing:-10.182393pt;}
.ws14{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
.ws11{word-spacing:1439.463429pt;}
._a{margin-left:-3.658240pt;}
._9{margin-left:-2.725440pt;}
._0{margin-left:-1.001173pt;}
._2{width:1.014720pt;}
._7{width:1.979840pt;}
._6{width:3.100480pt;}
._8{width:4.002240pt;}
._4{width:5.130240pt;}
._3{width:6.038720pt;}
._5{width:7.570667pt;}
._e{width:8.522027pt;}
._c{width:9.939840pt;}
._f{width:11.141120pt;}
._b{width:12.370133pt;}
._1e{width:13.576107pt;}
._12{width:14.589120pt;}
._10{width:15.657920pt;}
._11{width:16.619840pt;}
._13{width:17.848960pt;}
._21{width:18.903040pt;}
._1f{width:20.437120pt;}
._d{width:21.482880pt;}
._24{width:22.452160pt;}
._25{width:24.208320pt;}
._16{width:25.719040pt;}
._15{width:27.127680pt;}
._19{width:28.036480pt;}
._17{width:29.399680pt;}
._18{width:30.399360pt;}
._27{width:31.369280pt;}
._1d{width:32.307840pt;}
._26{width:33.880960pt;}
._14{width:34.807040pt;}
._2b{width:36.873600pt;}
._1b{width:39.305600pt;}
._28{width:40.451200pt;}
._22{width:41.441280pt;}
._2d{width:42.912320pt;}
._1c{width:45.303680pt;}
._20{width:46.439680pt;}
._1a{width:54.800640pt;}
._2a{width:70.520640pt;}
._29{width:71.615680pt;}
._2c{width:80.373760pt;}
._23{width:923.016544pt;}
._1{width:1440.402347pt;}
.fse{font-size:34.507673pt;}
.fsf{font-size:34.560000pt;}
.fsd{font-size:36.627314pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.440000pt;}
.fsa{font-size:42.560000pt;}
.fsc{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:53.440000pt;}
.fs1{font-size:56.000000pt;}
.fs10{font-size:56.330143pt;}
.fs8{font-size:58.560000pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:2.560000pt;}
.yeb{bottom:2.720000pt;}
.y26{bottom:2.800000pt;}
.y39{bottom:2.960000pt;}
.y5a{bottom:5.840000pt;}
.yd3{bottom:9.040000pt;}
.yee{bottom:9.120000pt;}
.y60{bottom:9.360000pt;}
.y61{bottom:10.080000pt;}
.y101{bottom:11.520000pt;}
.y24{bottom:12.320000pt;}
.y5c{bottom:14.880000pt;}
.y12c{bottom:14.891849pt;}
.yd1{bottom:15.600000pt;}
.yea{bottom:15.760000pt;}
.ye5{bottom:15.840000pt;}
.ydf{bottom:15.866667pt;}
.y25{bottom:18.080000pt;}
.y38{bottom:18.320000pt;}
.yd2{bottom:22.080000pt;}
.y100{bottom:24.560000pt;}
.y5b{bottom:27.120000pt;}
.yd4{bottom:28.640000pt;}
.ye9{bottom:28.800000pt;}
.y109{bottom:28.826667pt;}
.ye4{bottom:28.880000pt;}
.yde{bottom:28.906667pt;}
.y37{bottom:33.760000pt;}
.yff{bottom:37.600000pt;}
.ye8{bottom:41.840000pt;}
.y108{bottom:41.866667pt;}
.ye3{bottom:41.920000pt;}
.ydd{bottom:41.946667pt;}
.y12f{bottom:45.300466pt;}
.y131{bottom:47.015688pt;}
.y36{bottom:49.120000pt;}
.yfe{bottom:50.640000pt;}
.y3c{bottom:52.160000pt;}
.ye7{bottom:54.880000pt;}
.yf6{bottom:54.906667pt;}
.ye2{bottom:54.960000pt;}
.ydc{bottom:54.986667pt;}
.y5{bottom:59.133337pt;}
.y35{bottom:64.720000pt;}
.y12b{bottom:64.950838pt;}
.y3b{bottom:67.520000pt;}
.yec{bottom:67.920000pt;}
.yf5{bottom:67.946667pt;}
.ye1{bottom:68.000000pt;}
.ydb{bottom:68.026667pt;}
.yf4{bottom:80.986667pt;}
.y34{bottom:81.600000pt;}
.y3a{bottom:82.880000pt;}
.y129{bottom:83.642494pt;}
.y4{bottom:86.333337pt;}
.yfc{bottom:90.160000pt;}
.yf3{bottom:94.026667pt;}
.y128{bottom:94.261021pt;}
.y33{bottom:98.000000pt;}
.yfb{bottom:103.200000pt;}
.yfa{bottom:103.440000pt;}
.y32{bottom:113.360000pt;}
.y10d{bottom:121.200000pt;}
.y105{bottom:121.226667pt;}
.y22{bottom:123.790666pt;}
.y130{bottom:124.277413pt;}
.y10c{bottom:134.160000pt;}
.y104{bottom:134.186667pt;}
.y10b{bottom:134.400000pt;}
.y103{bottom:134.426667pt;}
.y127{bottom:149.086153pt;}
.y19{bottom:175.052000pt;}
.y12a{bottom:182.399877pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y12d{bottom:215.744085pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yf1{bottom:239.146667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y28{bottom:247.306667pt;}
.y12e{bottom:249.205147pt;}
.yd9{bottom:252.186667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yd8{bottom:265.226667pt;}
.yf0{bottom:265.466667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yd7{bottom:278.266667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y1c3{bottom:287.786667pt;}
.y1dc{bottom:290.106667pt;}
.yd5{bottom:290.186667pt;}
.y125{bottom:290.426667pt;}
.y90{bottom:290.826667pt;}
.y5e{bottom:291.306667pt;}
.yd6{bottom:291.546667pt;}
.ybb{bottom:294.586667pt;}
.y234{bottom:297.466667pt;}
.y16d{bottom:301.466667pt;}
.y10a{bottom:301.626667pt;}
.y59{bottom:303.546667pt;}
.y1db{bottom:305.466667pt;}
.y124{bottom:305.786667pt;}
.y8f{bottom:306.106667pt;}
.y223{bottom:307.226667pt;}
.y10{bottom:309.452000pt;}
.yba{bottom:309.946667pt;}
.y18a{bottom:310.586667pt;}
.y1c2{bottom:311.066667pt;}
.y1a5{bottom:312.826667pt;}
.y16c{bottom:316.826667pt;}
.y1da{bottom:320.826667pt;}
.y123{bottom:321.066667pt;}
.y8e{bottom:321.466667pt;}
.y222{bottom:322.586667pt;}
.y14e{bottom:325.226667pt;}
.y189{bottom:325.946667pt;}
.y1a4{bottom:328.106667pt;}
.y16b{bottom:332.106667pt;}
.yb9{bottom:333.066667pt;}
.y1f4{bottom:333.226667pt;}
.y1c1{bottom:334.586667pt;}
.y1d9{bottom:336.106667pt;}
.y122{bottom:336.426667pt;}
.y8d{bottom:336.826667pt;}
.y221{bottom:337.946667pt;}
.y14d{bottom:340.586667pt;}
.y188{bottom:341.226667pt;}
.y58{bottom:342.986667pt;}
.y1a3{bottom:343.466667pt;}
.yf{bottom:343.809333pt;}
.y16a{bottom:347.466667pt;}
.y1f3{bottom:348.586667pt;}
.y1c0{bottom:349.946667pt;}
.y121{bottom:351.786667pt;}
.y220{bottom:353.226667pt;}
.y10f{bottom:354.426667pt;}
.y20a{bottom:355.466667pt;}
.yb8{bottom:356.586667pt;}
.y57{bottom:357.786667pt;}
.y1a2{bottom:358.826667pt;}
.y1d8{bottom:359.466667pt;}
.y8c{bottom:360.106667pt;}
.ye{bottom:362.706666pt;}
.y169{bottom:362.826667pt;}
.y56{bottom:363.786667pt;}
.y14c{bottom:363.866667pt;}
.y1bf{bottom:365.226667pt;}
.y120{bottom:367.066667pt;}
.y23b{bottom:368.586667pt;}
.ye6{bottom:369.066667pt;}
.y209{bottom:370.826667pt;}
.y187{bottom:371.866667pt;}
.y21f{bottom:372.586667pt;}
.y1a1{bottom:374.106667pt;}
.y1d7{bottom:374.826667pt;}
.y8b{bottom:375.466667pt;}
.y55{bottom:376.186667pt;}
.y168{bottom:378.106667pt;}
.y14b{bottom:379.226667pt;}
.yb7{bottom:379.866667pt;}
.y1be{bottom:380.586667pt;}
.y233{bottom:382.106667pt;}
.y1f2{bottom:383.226667pt;}
.y208{bottom:386.106667pt;}
.y186{bottom:387.226667pt;}
.y21e{bottom:387.866667pt;}
.y1a0{bottom:389.466667pt;}
.y1d6{bottom:390.106667pt;}
.y11f{bottom:390.426667pt;}
.y8a{bottom:390.826667pt;}
.y167{bottom:393.466667pt;}
.y10e{bottom:394.186667pt;}
.y14a{bottom:394.586667pt;}
.y1bd{bottom:395.866667pt;}
.y54{bottom:395.946667pt;}
.y232{bottom:397.466667pt;}
.y1f1{bottom:398.586667pt;}
.y185{bottom:402.586667pt;}
.yb6{bottom:403.226667pt;}
.y19f{bottom:404.746667pt;}
.y1d5{bottom:405.466667pt;}
.y11e{bottom:405.786667pt;}
.y89{bottom:406.106667pt;}
.y149{bottom:409.866667pt;}
.y1bc{bottom:411.226667pt;}
.y53{bottom:411.386667pt;}
.y231{bottom:412.746667pt;}
.y166{bottom:416.746667pt;}
.y184{bottom:417.866667pt;}
.yb5{bottom:418.586667pt;}
.y19e{bottom:420.106667pt;}
.y207{bottom:420.746667pt;}
.y11d{bottom:421.066667pt;}
.y88{bottom:421.466667pt;}
.y148{bottom:425.226667pt;}
.y1bb{bottom:426.586667pt;}
.y52{bottom:426.666667pt;}
.y1d4{bottom:428.746667pt;}
.yd{bottom:430.990669pt;}
.y165{bottom:432.106667pt;}
.y183{bottom:433.226667pt;}
.yb4{bottom:433.866667pt;}
.ye0{bottom:434.826667pt;}
.y19d{bottom:435.466667pt;}
.y206{bottom:436.106667pt;}
.y11c{bottom:436.426667pt;}
.y87{bottom:436.746667pt;}
.y23a{bottom:437.866667pt;}
.y147{bottom:440.586667pt;}
.y1ba{bottom:441.866667pt;}
.y51{bottom:442.026667pt;}
.y1d3{bottom:444.106667pt;}
.y102{bottom:446.986667pt;}
.yc{bottom:446.990669pt;}
.y164{bottom:447.466667pt;}
.y182{bottom:448.586667pt;}
.yb3{bottom:449.226667pt;}
.y11b{bottom:451.786667pt;}
.y86{bottom:452.106667pt;}
.y21d{bottom:453.226667pt;}
.y205{bottom:455.466667pt;}
.y1b9{bottom:457.226667pt;}
.y19c{bottom:458.746667pt;}
.y1d2{bottom:459.466667pt;}
.y163{bottom:462.746667pt;}
.yb{bottom:462.990669pt;}
.y146{bottom:463.866667pt;}
.yb2{bottom:464.586667pt;}
.y50{bottom:465.386667pt;}
.y85{bottom:467.466667pt;}
.y1f0{bottom:467.866667pt;}
.y21c{bottom:468.586667pt;}
.y204{bottom:470.746667pt;}
.y1b8{bottom:472.586667pt;}
.y19b{bottom:474.106667pt;}
.y1d1{bottom:474.746667pt;}
.y11a{bottom:474.906667pt;}
.y162{bottom:478.106667pt;}
.ya{bottom:478.990666pt;}
.y145{bottom:479.226667pt;}
.yb1{bottom:479.866667pt;}
.y4f{bottom:480.666667pt;}
.y230{bottom:482.106667pt;}
.y84{bottom:482.746667pt;}
.y1ef{bottom:483.226667pt;}
.y21b{bottom:483.866667pt;}
.y203{bottom:486.106667pt;}
.y239{bottom:487.866667pt;}
.y19a{bottom:489.466667pt;}
.y1d0{bottom:490.106667pt;}
.y161{bottom:493.466667pt;}
.y144{bottom:494.586667pt;}
.y9{bottom:494.990666pt;}
.yb0{bottom:495.226667pt;}
.y1b7{bottom:495.866667pt;}
.y4e{bottom:496.026667pt;}
.y22f{bottom:497.466667pt;}
.y83{bottom:498.106667pt;}
.y119{bottom:498.266667pt;}
.y1ee{bottom:498.586667pt;}
.y21a{bottom:499.226667pt;}
.y107{bottom:499.786667pt;}
.y181{bottom:502.586667pt;}
.y238{bottom:503.226667pt;}
.y199{bottom:504.746667pt;}
.y1cf{bottom:505.466667pt;}
.y160{bottom:508.746667pt;}
.y143{bottom:509.866667pt;}
.y1b6{bottom:511.226667pt;}
.y4d{bottom:511.386667pt;}
.y22e{bottom:512.746667pt;}
.y82{bottom:513.466667pt;}
.yda{bottom:513.706667pt;}
.y180{bottom:517.866667pt;}
.yaf{bottom:518.586667pt;}
.y198{bottom:520.106667pt;}
.y1ce{bottom:520.746667pt;}
.y118{bottom:521.626667pt;}
.y15f{bottom:524.106667pt;}
.y1b5{bottom:526.586667pt;}
.y4c{bottom:526.666667pt;}
.y81{bottom:528.773333pt;}
.y22d{bottom:532.133333pt;}
.y142{bottom:533.253333pt;}
.yae{bottom:533.893333pt;}
.y197{bottom:535.493333pt;}
.y1cd{bottom:536.133333pt;}
.y15e{bottom:539.493333pt;}
.y1b4{bottom:541.893333pt;}
.y4b{bottom:542.053333pt;}
.y126{bottom:542.080000pt;}
.y80{bottom:544.133333pt;}
.y22c{bottom:547.493333pt;}
.y141{bottom:548.613333pt;}
.yad{bottom:549.253333pt;}
.y196{bottom:550.773333pt;}
.y1cc{bottom:551.493333pt;}
.y106{bottom:552.613333pt;}
.y237{bottom:553.253333pt;}
.y1b3{bottom:557.253333pt;}
.y4a{bottom:557.413333pt;}
.y7f{bottom:559.493333pt;}
.y15d{bottom:562.773333pt;}
.y140{bottom:563.893333pt;}
.yac{bottom:564.613333pt;}
.y202{bottom:566.773333pt;}
.y1ed{bottom:567.893333pt;}
.y236{bottom:568.613333pt;}
.y17f{bottom:571.893333pt;}
.y1b2{bottom:572.613333pt;}
.y49{bottom:572.693333pt;}
.y8{bottom:573.786667pt;}
.y195{bottom:574.133333pt;}
.y7e{bottom:574.773333pt;}
.y15c{bottom:578.133333pt;}
.y13f{bottom:579.253333pt;}
.yab{bottom:579.893333pt;}
.y22b{bottom:582.133333pt;}
.y1ec{bottom:583.253333pt;}
.y219{bottom:583.893333pt;}
.y201{bottom:586.133333pt;}
.y17e{bottom:587.253333pt;}
.y48{bottom:588.053333pt;}
.y194{bottom:589.493333pt;}
.y7d{bottom:590.133333pt;}
.yf9{bottom:592.373333pt;}
.yd0{bottom:592.613333pt;}
.y7{bottom:592.685334pt;}
.y15b{bottom:593.493333pt;}
.y13e{bottom:594.613333pt;}
.yaa{bottom:595.253333pt;}
.y1b1{bottom:595.893333pt;}
.y22a{bottom:597.493333pt;}
.y1eb{bottom:598.613333pt;}
.y218{bottom:599.253333pt;}
.y200{bottom:601.493333pt;}
.y17d{bottom:602.613333pt;}
.y47{bottom:603.413333pt;}
.y193{bottom:604.773333pt;}
.y7c{bottom:605.493333pt;}
.y15a{bottom:608.773333pt;}
.y1b0{bottom:611.253333pt;}
.y229{bottom:612.773333pt;}
.y1ea{bottom:613.893333pt;}
.y217{bottom:614.613333pt;}
.y1ff{bottom:616.773333pt;}
.y13d{bottom:617.893333pt;}
.ya9{bottom:618.613333pt;}
.y46{bottom:618.693333pt;}
.y192{bottom:620.133333pt;}
.y7b{bottom:620.773333pt;}
.y159{bottom:624.133333pt;}
.y1af{bottom:626.613333pt;}
.y1fe{bottom:632.133333pt;}
.y13c{bottom:633.253333pt;}
.ya8{bottom:633.893333pt;}
.y45{bottom:634.053333pt;}
.y191{bottom:635.493333pt;}
.y7a{bottom:636.133333pt;}
.y158{bottom:639.493333pt;}
.y17c{bottom:641.253333pt;}
.y1ae{bottom:641.893333pt;}
.ycf{bottom:643.333333pt;}
.yfd{bottom:645.173333pt;}
.y6{bottom:645.598667pt;}
.y228{bottom:647.493333pt;}
.y13b{bottom:648.613333pt;}
.ya7{bottom:649.253333pt;}
.y44{bottom:649.333333pt;}
.y1cb{bottom:651.493333pt;}
.y157{bottom:654.773333pt;}
.y17b{bottom:656.613333pt;}
.y1ad{bottom:657.253333pt;}
.y190{bottom:658.773333pt;}
.y79{bottom:659.493333pt;}
.y227{bottom:662.773333pt;}
.y13a{bottom:663.893333pt;}
.ya6{bottom:664.613333pt;}
.y43{bottom:664.693333pt;}
.yce{bottom:666.773333pt;}
.y3{bottom:668.977329pt;}
.y17a{bottom:671.893333pt;}
.y1ac{bottom:672.613333pt;}
.y18f{bottom:674.133333pt;}
.y78{bottom:674.773333pt;}
.y156{bottom:678.133333pt;}
.y139{bottom:679.253333pt;}
.ya5{bottom:679.893333pt;}
.y42{bottom:680.053333pt;}
.ycd{bottom:682.133333pt;}
.y216{bottom:683.893333pt;}
.y179{bottom:687.253333pt;}
.y1ab{bottom:687.893333pt;}
.y18e{bottom:689.493333pt;}
.y77{bottom:690.133333pt;}
.y155{bottom:693.493333pt;}
.y138{bottom:694.533333pt;}
.ya4{bottom:695.253333pt;}
.y41{bottom:695.333333pt;}
.ycc{bottom:697.493333pt;}
.y1e9{bottom:698.533333pt;}
.y215{bottom:699.253333pt;}
.y178{bottom:702.533333pt;}
.y1aa{bottom:703.253333pt;}
.y18d{bottom:704.773333pt;}
.y76{bottom:705.493333pt;}
.yef{bottom:706.693333pt;}
.y154{bottom:708.773333pt;}
.ya3{bottom:710.533333pt;}
.y40{bottom:710.693333pt;}
.ycb{bottom:712.773333pt;}
.y1e8{bottom:713.893333pt;}
.y214{bottom:714.533333pt;}
.y1fd{bottom:716.773333pt;}
.y137{bottom:717.893333pt;}
.y1a9{bottom:718.533333pt;}
.y75{bottom:720.773333pt;}
.y153{bottom:724.133333pt;}
.ya2{bottom:725.893333pt;}
.y3f{bottom:726.053333pt;}
.y18c{bottom:727.973333pt;}
.yca{bottom:728.133333pt;}
.y1e7{bottom:729.253333pt;}
.y213{bottom:729.893333pt;}
.y1fc{bottom:732.133333pt;}
.y136{bottom:733.253333pt;}
.y1a8{bottom:733.893333pt;}
.y1ca{bottom:736.133333pt;}
.y152{bottom:739.413333pt;}
.y3e{bottom:741.173333pt;}
.ya1{bottom:741.253333pt;}
.yc9{bottom:743.413333pt;}
.y74{bottom:744.133333pt;}
.y226{bottom:747.413333pt;}
.y1e6{bottom:748.533333pt;}
.y1a7{bottom:749.253333pt;}
.y18b{bottom:751.413333pt;}
.y135{bottom:756.373333pt;}
.y3d{bottom:756.533333pt;}
.yc8{bottom:758.773333pt;}
.y73{bottom:759.413333pt;}
.y151{bottom:762.613333pt;}
.y225{bottom:762.773333pt;}
.y1e5{bottom:763.893333pt;}
.ya0{bottom:764.533333pt;}
.y1c9{bottom:766.773333pt;}
.y31{bottom:769.573333pt;}
.y177{bottom:771.893333pt;}
.yf8{bottom:772.533333pt;}
.yc7{bottom:774.133333pt;}
.y72{bottom:774.773333pt;}
.y1e4{bottom:779.253333pt;}
.y9f{bottom:779.893333pt;}
.y2{bottom:781.661334pt;}
.y1c8{bottom:782.133333pt;}
.y150{bottom:786.133333pt;}
.y176{bottom:787.253333pt;}
.y1a6{bottom:787.893333pt;}
.yc6{bottom:789.413333pt;}
.y71{bottom:790.133333pt;}
.y9e{bottom:795.253333pt;}
.y1c7{bottom:797.413333pt;}
.y1e3{bottom:798.533333pt;}
.y212{bottom:799.253333pt;}
.y175{bottom:802.533333pt;}
.y134{bottom:803.253333pt;}
.yc5{bottom:804.773333pt;}
.y70{bottom:805.413333pt;}
.y9d{bottom:810.533333pt;}
.y1c6{bottom:812.773333pt;}
.y1e2{bottom:813.893333pt;}
.y211{bottom:814.533333pt;}
.y1fb{bottom:816.773333pt;}
.y133{bottom:818.533333pt;}
.yc4{bottom:820.133333pt;}
.y6f{bottom:820.773333pt;}
.yf7{bottom:825.333333pt;}
.y174{bottom:825.733333pt;}
.y117{bottom:827.413333pt;}
.y1c5{bottom:828.133333pt;}
.y1e1{bottom:829.253333pt;}
.y210{bottom:829.893333pt;}
.y1fa{bottom:832.133333pt;}
.y9c{bottom:833.893333pt;}
.yc3{bottom:835.413333pt;}
.y6e{bottom:836.133333pt;}
.y116{bottom:842.773333pt;}
.y1c4{bottom:843.413333pt;}
.y1e0{bottom:844.533333pt;}
.y20f{bottom:845.253333pt;}
.y1f9{bottom:847.413333pt;}
.y9b{bottom:849.253333pt;}
.y6d{bottom:851.413333pt;}
.y115{bottom:858.133333pt;}
.yc2{bottom:858.773333pt;}
.y1{bottom:859.312000pt;}
.y20e{bottom:860.533333pt;}
.y1f8{bottom:862.773333pt;}
.y1df{bottom:863.733333pt;}
.y9a{bottom:864.533333pt;}
.y6c{bottom:866.773333pt;}
.y173{bottom:872.533333pt;}
.yc1{bottom:874.133333pt;}
.yf2{bottom:878.133333pt;}
.y99{bottom:879.893333pt;}
.y114{bottom:881.413333pt;}
.y6b{bottom:882.133333pt;}
.y1de{bottom:887.093333pt;}
.y172{bottom:887.893333pt;}
.yc0{bottom:889.413333pt;}
.y98{bottom:895.253333pt;}
.y113{bottom:896.773333pt;}
.y6a{bottom:897.413333pt;}
.y30{bottom:898.933333pt;}
.y171{bottom:903.253333pt;}
.ybf{bottom:904.773333pt;}
.y97{bottom:910.533333pt;}
.y112{bottom:912.133333pt;}
.y69{bottom:912.773333pt;}
.y235{bottom:914.533333pt;}
.y224{bottom:916.773333pt;}
.y170{bottom:918.533333pt;}
.y2f{bottom:920.613333pt;}
.y96{bottom:925.920000pt;}
.y68{bottom:928.160000pt;}
.y20d{bottom:929.920000pt;}
.y2d{bottom:931.520000pt;}
.y1f7{bottom:932.160000pt;}
.y16f{bottom:933.920000pt;}
.y111{bottom:935.280000pt;}
.y2e{bottom:936.880000pt;}
.y95{bottom:941.280000pt;}
.y67{bottom:943.440000pt;}
.y20c{bottom:945.280000pt;}
.y1f6{bottom:947.440000pt;}
.y2c{bottom:948.320000pt;}
.y16e{bottom:949.280000pt;}
.y94{bottom:956.560000pt;}
.y110{bottom:958.640000pt;}
.y66{bottom:958.800000pt;}
.y20b{bottom:960.560000pt;}
.y1f5{bottom:962.800000pt;}
.y132{bottom:964.560000pt;}
.y2b{bottom:965.040000pt;}
.y14f{bottom:966.800000pt;}
.y1dd{bottom:971.920000pt;}
.y65{bottom:974.160000pt;}
.y93{bottom:979.920000pt;}
.y2a{bottom:981.280000pt;}
.ybe{bottom:982.160000pt;}
.yed{bottom:983.040000pt;}
.y64{bottom:989.440000pt;}
.y92{bottom:995.280000pt;}
.ybd{bottom:997.440000pt;}
.y29{bottom:1004.000000pt;}
.y91{bottom:1010.560000pt;}
.y63{bottom:1012.640000pt;}
.ybc{bottom:1012.800000pt;}
.y27{bottom:1026.480000pt;}
.y62{bottom:1028.720000pt;}
.y23{bottom:1042.560000pt;}
.y5f{bottom:1044.800000pt;}
.h3b{height:24.701293pt;}
.h3a{height:26.665686pt;}
.h1c{height:28.320000pt;}
.h7{height:28.560000pt;}
.h9{height:30.560000pt;}
.h14{height:36.727031pt;}
.h1a{height:36.800000pt;}
.h12{height:37.732500pt;}
.hb{height:38.905781pt;}
.h32{height:39.036000pt;}
.h33{height:39.040000pt;}
.h20{height:39.116000pt;}
.h1e{height:39.120000pt;}
.h6{height:40.800000pt;}
.h1b{height:41.749531pt;}
.h18{height:41.770312pt;}
.h3{height:42.840000pt;}
.h22{height:44.596875pt;}
.h3d{height:45.548201pt;}
.h1f{height:45.795000pt;}
.h1d{height:46.890469pt;}
.h19{height:48.375000pt;}
.h2{height:48.960000pt;}
.h2d{height:52.076000pt;}
.h2c{height:52.080000pt;}
.h34{height:52.100000pt;}
.h36{height:52.160000pt;}
.h38{height:52.422344pt;}
.hf{height:52.448437pt;}
.h3c{height:52.478750pt;}
.hd{height:53.857500pt;}
.h37{height:55.631875pt;}
.ha{height:56.946094pt;}
.h17{height:57.473437pt;}
.h13{height:59.017500pt;}
.h10{height:59.172500pt;}
.he{height:60.179531pt;}
.h2f{height:60.876000pt;}
.h30{height:60.880000pt;}
.hc{height:62.812500pt;}
.h26{height:65.120000pt;}
.h5{height:69.360000pt;}
.h27{height:78.157333pt;}
.h28{height:78.160000pt;}
.h25{height:78.240000pt;}
.h24{height:78.260000pt;}
.h2a{height:104.266667pt;}
.h2b{height:104.270667pt;}
.h4{height:105.826671pt;}
.h2e{height:113.680000pt;}
.h15{height:125.756000pt;}
.h16{height:125.760000pt;}
.h35{height:144.640000pt;}
.h31{height:144.653333pt;}
.h39{height:274.318726pt;}
.h29{height:275.706667pt;}
.h23{height:301.773333pt;}
.h21{height:301.786667pt;}
.h11{height:1122.466588pt;}
.h8{height:1122.480000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wd{width:30.480000pt;}
.wc{width:64.560000pt;}
.w4{width:65.200000pt;}
.w13{width:72.876000pt;}
.we{width:72.880000pt;}
.w11{width:79.306667pt;}
.w12{width:79.309333pt;}
.w9{width:102.240000pt;}
.wf{width:122.020000pt;}
.w8{width:178.266667pt;}
.w10{width:182.560000pt;}
.w7{width:303.866667pt;}
.wa{width:389.093333pt;}
.w5{width:425.813333pt;}
.wb{width:426.133333pt;}
.w14{width:486.312268pt;}
.w2{width:566.928019pt;}
.w6{width:793.670000pt;}
.w3{width:793.680000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.200000pt;}
.x1b{left:10.560000pt;}
.x18{left:12.880000pt;}
.x27{left:14.454768pt;}
.x1a{left:24.080000pt;}
.x24{left:31.992254pt;}
.x1f{left:39.040000pt;}
.x1d{left:46.800000pt;}
.x2a{left:50.936043pt;}
.x29{left:56.900796pt;}
.x8{left:64.400000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:151.226667pt;}
.x22{left:153.680000pt;}
.x15{left:156.586667pt;}
.x12{left:159.066667pt;}
.x2c{left:170.186667pt;}
.xa{left:172.666667pt;}
.x4{left:180.874667pt;}
.xd{left:182.346667pt;}
.x7{left:216.426667pt;}
.x28{left:219.216041pt;}
.x11{left:226.186667pt;}
.x23{left:230.096519pt;}
.xb{left:236.906667pt;}
.x26{left:242.527732pt;}
.x16{left:253.466667pt;}
.x1c{left:256.586667pt;}
.x9{left:272.186667pt;}
.x19{left:274.106667pt;}
.xe{left:331.706667pt;}
.x14{left:343.253333pt;}
.x2b{left:360.028787pt;}
.x1e{left:379.253333pt;}
.xc{left:396.853333pt;}
.x3{left:404.408000pt;}
.x25{left:437.210753pt;}
.xf{left:444.763333pt;}
.x10{left:461.973333pt;}
.x13{left:463.573333pt;}
.x20{left:562.533333pt;}
.x17{left:577.360000pt;}
.x2d{left:589.040000pt;}
.x2e{left:599.440000pt;}
.x21{left:640.080000pt;}
}




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