
    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_d75573384ac4f67559052506.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_83fd8109c396e642f02e6ba1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_6193fc93719873dbca485474.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_b77f185534bd4c23dd11eb9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d0905c07d24549825cadf55a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.886719;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_2326c2ea83459665efa5d33e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_cffcea175ee71307d4e41076.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.886719;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_9e96f85b307beaf7e3d6c691.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.944824;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_0b7887921d13ad130f711989.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;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_23ec33b74c0b7014d6d2133c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.708008;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_ff7dd22c3526041223fedf81.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_2e5fc3d75455f2c85cfc9f3f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.739746;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_f7417d1d53c9abf6e2fe38a4.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.040039;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.854004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.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);}
.m3{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:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-15.660000px;}
.lse{letter-spacing:-9.720000px;}
.ls8{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.349800px;}
.lsd{letter-spacing:-0.226200px;}
.lsb{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.089400px;}
.ls17{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.119520px;}
.ls3{letter-spacing:0.144720px;}
.ls0{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.298800px;}
.ls16{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.355200px;}
.ls4{letter-spacing:0.360000px;}
.ls14{letter-spacing:18.666720px;}
.ls2{letter-spacing:48.420000px;}
.ls13{letter-spacing:2709.365760px;}
.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;}
}
.ws13{word-spacing:-18.000000px;}
.wsf{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.ws14{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws11{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.886720px;}
.ws18{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.284000px;}
.ws15{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws4{word-spacing:-11.695200px;}
.ws0{word-spacing:-11.340000px;}
.ws6{word-spacing:-10.990200px;}
.ws5{word-spacing:-10.980000px;}
.wsb{word-spacing:-10.440000px;}
.wsc{word-spacing:-10.350600px;}
.wsd{word-spacing:-10.213800px;}
.wsa{word-spacing:-9.000000px;}
.ws3{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
._3d{margin-left:-2840.976000px;}
._37{margin-left:-2825.856000px;}
._2f{margin-left:-2810.736000px;}
._1a{margin-left:-2795.616000px;}
._30{margin-left:-2779.198800px;}
._1b{margin-left:-2763.716160px;}
._6{margin-left:-60.300000px;}
._49{margin-left:-11.753280px;}
._4c{margin-left:-7.230960px;}
._46{margin-left:-6.145920px;}
._47{margin-left:-4.802880px;}
._a{margin-left:-3.585600px;}
._9{margin-left:-2.509920px;}
._0{margin-left:-1.347840px;}
._1{width:1.200720px;}
._10{width:2.242560px;}
._2{width:3.332640px;}
._e{width:4.412160px;}
._16{width:5.423040px;}
._8{width:6.508320px;}
._f{width:7.589520px;}
._15{width:8.614320px;}
._14{width:9.643680px;}
._13{width:10.836000px;}
._11{width:11.877840px;}
._1c{width:13.864320px;}
._12{width:15.984000px;}
._22{width:17.190480px;}
._18{width:18.195840px;}
._17{width:19.332000px;}
._3c{width:20.350560px;}
._23{width:21.405120px;}
._20{width:23.121600px;}
._2c{width:24.865680px;}
._d{width:25.930320px;}
._26{width:27.071280px;}
._29{width:28.445760px;}
._c{width:29.874480px;}
._b{width:31.015440px;}
._24{width:32.683200px;}
._1d{width:34.122960px;}
._43{width:35.213280px;}
._2d{width:36.324000px;}
._2b{width:37.523760px;}
._35{width:38.903760px;}
._2a{width:40.696560px;}
._42{width:41.747520px;}
._3b{width:42.967440px;}
._27{width:44.037600px;}
._28{width:45.417600px;}
._1f{width:46.846320px;}
._3a{width:48.220800px;}
._3e{width:50.133120px;}
._21{width:51.214320px;}
._39{width:52.583280px;}
._38{width:53.604720px;}
._3f{width:54.788880px;}
._41{width:55.815840px;}
._2e{width:57.065280px;}
._40{width:58.086720px;}
._25{width:59.162400px;}
._48{width:61.607040px;}
._1e{width:62.987040px;}
._4{width:65.496000px;}
._34{width:70.283280px;}
._33{width:71.467440px;}
._3{width:72.497280px;}
._32{width:76.313520px;}
._31{width:77.329440px;}
._45{width:80.790000px;}
._4d{width:108.643680px;}
._44{width:111.506640px;}
._50{width:114.440400px;}
._4f{width:119.408400px;}
._4b{width:147.353760px;}
._4a{width:148.503600px;}
._5{width:199.620000px;}
._19{width:285.870000px;}
._7{width:755.976000px;}
._4e{width:824.090400px;}
._36{width:2513.580000px;}
.fc8{color:transparent;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(70,120,134);}
.fc7{color:rgb(0,0,255);}
.fc1{color:rgb(26,123,123);}
.fc6{color:rgb(255,255,255);}
.fc3{color:rgb(102,102,102);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fs11{font-size:6.000000px;}
.fs10{font-size:23.760000px;}
.fsc{font-size:30.240000px;}
.fsb{font-size:33.120000px;}
.fsf{font-size:36.000000px;}
.fse{font-size:37.946952px;}
.fs6{font-size:41.760000px;}
.fs4{font-size:45.360000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.y4c{bottom:-246.630000px;}
.y4b{bottom:-212.970000px;}
.y4a{bottom:-179.310000px;}
.y8c{bottom:-169.605000px;}
.y49{bottom:-145.470000px;}
.y8b{bottom:-135.765000px;}
.y48{bottom:-111.780000px;}
.y8a{bottom:-102.105000px;}
.y47{bottom:-77.940000px;}
.y89{bottom:-68.445000px;}
.y46{bottom:-44.280000px;}
.y88{bottom:-34.560000px;}
.y8e{bottom:-17.922750px;}
.y45{bottom:-10.440000px;}
.y7a{bottom:-8.640000px;}
.y87{bottom:-0.900000px;}
.y0{bottom:0.000000px;}
.y1ef{bottom:1.837500px;}
.y152{bottom:2.520000px;}
.y17b{bottom:2.550000px;}
.y5{bottom:3.780000px;}
.y16f{bottom:4.320000px;}
.y143{bottom:4.500000px;}
.y149{bottom:4.680000px;}
.y7c{bottom:5.550000px;}
.y179{bottom:6.480000px;}
.y71{bottom:7.380000px;}
.y44{bottom:7.740000px;}
.y171{bottom:8.460000px;}
.y16d{bottom:9.360000px;}
.y154{bottom:9.405000px;}
.y150{bottom:9.540000px;}
.y8{bottom:12.420000px;}
.y147{bottom:12.600000px;}
.y165{bottom:16.200000px;}
.y151{bottom:16.380000px;}
.y79{bottom:16.410000px;}
.y16b{bottom:16.425000px;}
.y148{bottom:20.520000px;}
.y43{bottom:21.600000px;}
.y9{bottom:21.780000px;}
.y70{bottom:23.040000px;}
.y6{bottom:23.220000px;}
.y162{bottom:23.250000px;}
.y16c{bottom:23.265000px;}
.y7{bottom:24.480000px;}
.y78{bottom:29.550000px;}
.y86{bottom:30.060000px;}
.y160{bottom:30.090000px;}
.y16a{bottom:30.105000px;}
.y15b{bottom:30.240000px;}
.yb{bottom:35.100000px;}
.y42{bottom:35.460000px;}
.y166{bottom:36.900000px;}
.y157{bottom:37.080000px;}
.y161{bottom:37.110000px;}
.y6f{bottom:38.520000px;}
.y77{bottom:42.510000px;}
.y85{bottom:43.200000px;}
.y156{bottom:43.920000px;}
.y15f{bottom:43.950000px;}
.y92{bottom:47.520000px;}
.y41{bottom:49.500000px;}
.y6e{bottom:50.760000px;}
.y15c{bottom:50.940000px;}
.y76{bottom:55.470000px;}
.y84{bottom:56.160000px;}
.y4{bottom:57.420000px;}
.y164{bottom:57.600000px;}
.y155{bottom:57.780000px;}
.y15e{bottom:57.810000px;}
.y40{bottom:62.460000px;}
.y8d{bottom:63.780000px;}
.y177{bottom:64.620000px;}
.y91{bottom:66.420000px;}
.y6d{bottom:68.580000px;}
.y75{bottom:68.610000px;}
.y83{bottom:69.300000px;}
.y176{bottom:71.460000px;}
.y15a{bottom:71.640000px;}
.y74{bottom:81.570000px;}
.y82{bottom:82.260000px;}
.y159{bottom:85.320000px;}
.y6c{bottom:86.400000px;}
.y81{bottom:95.220000px;}
.y73{bottom:98.670000px;}
.y175{bottom:99.000000px;}
.y1ee{bottom:100.260000px;}
.y139{bottom:101.340000px;}
.y1cc{bottom:102.420000px;}
.yc4{bottom:103.320000px;}
.yde{bottom:104.220000px;}
.y6b{bottom:104.400000px;}
.y80{bottom:108.360000px;}
.y174{bottom:112.860000px;}
.y17f{bottom:113.040000px;}
.y3e{bottom:113.940000px;}
.y1ad{bottom:116.100000px;}
.y11d{bottom:118.980000px;}
.y1ed{bottom:120.060000px;}
.y138{bottom:121.140000px;}
.y7f{bottom:121.320000px;}
.y6a{bottom:122.220000px;}
.y13c{bottom:122.760000px;}
.yc3{bottom:123.120000px;}
.ydd{bottom:124.020000px;}
.y140{bottom:124.200000px;}
.y17e{bottom:125.100000px;}
.yee{bottom:126.000000px;}
.y173{bottom:126.720000px;}
.y7e{bottom:133.560000px;}
.y3d{bottom:133.740000px;}
.y1ac{bottom:135.900000px;}
.y13f{bottom:136.260000px;}
.y17d{bottom:137.160000px;}
.y13b{bottom:137.700000px;}
.y11c{bottom:138.780000px;}
.y69{bottom:140.040000px;}
.y137{bottom:140.940000px;}
.y1cb{bottom:142.020000px;}
.yc2{bottom:142.920000px;}
.ydc{bottom:144.000000px;}
.yed{bottom:144.540000px;}
.y13e{bottom:148.860000px;}
.y17c{bottom:149.220000px;}
.y13a{bottom:153.180000px;}
.y3c{bottom:153.540000px;}
.y1ab{bottom:155.880000px;}
.y68{bottom:157.860000px;}
.y11b{bottom:158.580000px;}
.y1ec{bottom:159.840000px;}
.y136{bottom:160.740000px;}
.y17a{bottom:161.100000px;}
.yc1{bottom:162.750000px;}
.y1ca{bottom:163.110000px;}
.ydb{bottom:163.830000px;}
.y13d{bottom:164.370000px;}
.y3b{bottom:173.550000px;}
.y178{bottom:174.990000px;}
.y67{bottom:175.680000px;}
.y1aa{bottom:175.710000px;}
.y11a{bottom:178.590000px;}
.y1eb{bottom:179.670000px;}
.y135{bottom:180.750000px;}
.yc0{bottom:182.730000px;}
.yda{bottom:183.630000px;}
.y66{bottom:189.225000px;}
.y3a{bottom:194.610000px;}
.y1a9{bottom:195.510000px;}
.y172{bottom:196.590000px;}
.y65{bottom:197.865000px;}
.y119{bottom:198.390000px;}
.y1ea{bottom:199.470000px;}
.y134{bottom:200.550000px;}
.ybf{bottom:202.530000px;}
.yd9{bottom:203.430000px;}
.y1c9{bottom:203.790000px;}
.y39{bottom:211.890000px;}
.y1a8{bottom:215.310000px;}
.y4d{bottom:215.850000px;}
.y64{bottom:215.865000px;}
.y118{bottom:218.190000px;}
.y1e9{bottom:219.270000px;}
.y38{bottom:220.350000px;}
.ybe{bottom:222.330000px;}
.yd8{bottom:223.230000px;}
.y1c8{bottom:223.590000px;}
.y63{bottom:233.685000px;}
.y1a7{bottom:235.110000px;}
.y117{bottom:237.990000px;}
.y1e8{bottom:239.250000px;}
.y133{bottom:240.150000px;}
.y37{bottom:240.510000px;}
.ybd{bottom:242.130000px;}
.y1c7{bottom:243.390000px;}
.yd7{bottom:244.470000px;}
.y62{bottom:251.505000px;}
.y36{bottom:253.470000px;}
.y1a6{bottom:255.090000px;}
.y116{bottom:257.790000px;}
.y1e7{bottom:259.050000px;}
.y132{bottom:259.950000px;}
.ybc{bottom:261.930000px;}
.y1c6{bottom:263.190000px;}
.yd6{bottom:265.350000px;}
.y61{bottom:269.325000px;}
.y35{bottom:273.090000px;}
.y1a5{bottom:274.890000px;}
.y115{bottom:277.770000px;}
.y1e6{bottom:278.850000px;}
.y131{bottom:279.930000px;}
.yd5{bottom:280.830000px;}
.ybb{bottom:281.910000px;}
.y1c5{bottom:284.250000px;}
.y60{bottom:287.145000px;}
.y1a4{bottom:294.690000px;}
.y114{bottom:297.570000px;}
.y1e5{bottom:298.650000px;}
.y34{bottom:299.730000px;}
.yd4{bottom:300.630000px;}
.yba{bottom:301.710000px;}
.y5f{bottom:302.625000px;}
.y1a3{bottom:314.490000px;}
.y5e{bottom:315.045000px;}
.y113{bottom:317.370000px;}
.y1e4{bottom:318.450000px;}
.y130{bottom:319.530000px;}
.yd3{bottom:320.430000px;}
.yb9{bottom:321.510000px;}
.y33{bottom:323.490000px;}
.y1c4{bottom:324.930000px;}
.y5d{bottom:332.865000px;}
.y1a2{bottom:334.290000px;}
.y170{bottom:334.470000px;}
.y112{bottom:337.170000px;}
.y1e3{bottom:338.430000px;}
.y12f{bottom:339.330000px;}
.yb8{bottom:341.310000px;}
.yd2{bottom:341.670000px;}
.y1c3{bottom:344.730000px;}
.y32{bottom:347.250000px;}
.y5c{bottom:350.685000px;}
.y1a1{bottom:354.270000px;}
.y111{bottom:356.970000px;}
.y1e2{bottom:358.230000px;}
.y12e{bottom:359.130000px;}
.y16e{bottom:360.210000px;}
.yb7{bottom:361.110000px;}
.yd1{bottom:362.550000px;}
.y1c2{bottom:364.530000px;}
.y5b{bottom:368.505000px;}
.y31{bottom:371.190000px;}
.y1a0{bottom:374.070000px;}
.y110{bottom:376.950000px;}
.y169{bottom:377.670000px;}
.yd0{bottom:378.030000px;}
.y12d{bottom:379.110000px;}
.yb6{bottom:381.090000px;}
.y1c1{bottom:384.330000px;}
.y5a{bottom:386.325000px;}
.y19f{bottom:393.915000px;}
.y30{bottom:394.995000px;}
.y10f{bottom:396.795000px;}
.ycf{bottom:397.875000px;}
.y12c{bottom:400.215000px;}
.yb5{bottom:400.935000px;}
.y59{bottom:404.145000px;}
.y1c0{bottom:405.615000px;}
.y19e{bottom:413.715000px;}
.y10e{bottom:416.595000px;}
.yce{bottom:417.675000px;}
.y2f{bottom:418.755000px;}
.y168{bottom:419.115000px;}
.yb4{bottom:420.735000px;}
.y58{bottom:422.175000px;}
.y12b{bottom:423.975000px;}
.y19d{bottom:433.515000px;}
.y10d{bottom:436.395000px;}
.ycd{bottom:437.655000px;}
.y57{bottom:439.995000px;}
.yb3{bottom:440.535000px;}
.y2e{bottom:442.515000px;}
.y12a{bottom:444.855000px;}
.y1bf{bottom:446.115000px;}
.y7d{bottom:450.615000px;}
.y56{bottom:453.495000px;}
.y10c{bottom:456.195000px;}
.ycc{bottom:457.455000px;}
.yb2{bottom:460.335000px;}
.y55{bottom:462.135000px;}
.y2d{bottom:463.215000px;}
.y1be{bottom:467.175000px;}
.y19c{bottom:473.295000px;}
.y10b{bottom:476.175000px;}
.ycb{bottom:477.255000px;}
.y54{bottom:479.955000px;}
.yb1{bottom:480.315000px;}
.y2c{bottom:483.015000px;}
.y167{bottom:488.055000px;}
.y19b{bottom:493.095000px;}
.y10a{bottom:495.975000px;}
.y2b{bottom:496.875000px;}
.yca{bottom:497.055000px;}
.y53{bottom:497.775000px;}
.yb0{bottom:500.115000px;}
.y2a{bottom:505.335000px;}
.y1bd{bottom:507.675000px;}
.y19a{bottom:512.895000px;}
.y52{bottom:515.775000px;}
.yc9{bottom:516.855000px;}
.yaf{bottom:519.915000px;}
.y1bc{bottom:527.475000px;}
.y29{bottom:528.555000px;}
.y199{bottom:532.695000px;}
.y51{bottom:533.595000px;}
.y109{bottom:535.575000px;}
.yc8{bottom:536.655000px;}
.yae{bottom:539.715000px;}
.y163{bottom:543.315000px;}
.y1bb{bottom:547.455000px;}
.y50{bottom:551.415000px;}
.y28{bottom:551.955000px;}
.y198{bottom:552.675000px;}
.y108{bottom:555.375000px;}
.yc7{bottom:556.635000px;}
.yad{bottom:559.515000px;}
.y1ba{bottom:567.255000px;}
.y4f{bottom:569.235000px;}
.y197{bottom:572.475000px;}
.y27{bottom:575.175000px;}
.y107{bottom:575.355000px;}
.y1e1{bottom:576.435000px;}
.yc6{bottom:577.695000px;}
.yac{bottom:579.495000px;}
.y4e{bottom:587.055000px;}
.y196{bottom:592.275000px;}
.y106{bottom:595.155000px;}
.y1e0{bottom:596.235000px;}
.yc5{bottom:598.395000px;}
.yab{bottom:599.295000px;}
.y1b9{bottom:608.115000px;}
.y195{bottom:612.075000px;}
.y15d{bottom:612.255000px;}
.y105{bottom:614.955000px;}
.y1df{bottom:616.035000px;}
.y72{bottom:617.295000px;}
.yaa{bottom:619.095000px;}
.y26{bottom:630.465000px;}
.y194{bottom:631.905000px;}
.y104{bottom:634.785000px;}
.y1de{bottom:635.865000px;}
.ya9{bottom:638.925000px;}
.yec{bottom:642.885000px;}
.y25{bottom:645.945000px;}
.y193{bottom:651.885000px;}
.y103{bottom:654.585000px;}
.y1dd{bottom:655.845000px;}
.ya8{bottom:658.725000px;}
.y24{bottom:661.425000px;}
.yeb{bottom:662.685000px;}
.y192{bottom:671.685000px;}
.y1b8{bottom:672.585000px;}
.y1dc{bottom:675.645000px;}
.y102{bottom:675.825000px;}
.y23{bottom:677.085000px;}
.ya7{bottom:678.705000px;}
.y158{bottom:681.225000px;}
.yea{bottom:682.665000px;}
.y191{bottom:691.485000px;}
.y22{bottom:692.565000px;}
.y1b7{bottom:693.645000px;}
.y1db{bottom:695.445000px;}
.ya6{bottom:698.505000px;}
.y101{bottom:699.585000px;}
.ye9{bottom:702.465000px;}
.y21{bottom:708.045000px;}
.y190{bottom:711.285000px;}
.y1da{bottom:715.245000px;}
.ya5{bottom:718.305000px;}
.y100{bottom:719.205000px;}
.ye8{bottom:722.265000px;}
.y20{bottom:723.525000px;}
.y18f{bottom:731.085000px;}
.yff{bottom:731.985000px;}
.y1f{bottom:734.145000px;}
.y1d9{bottom:735.045000px;}
.ya4{bottom:738.105000px;}
.ye7{bottom:742.065000px;}
.y3f{bottom:743.865000px;}
.y1e{bottom:749.085000px;}
.y18e{bottom:751.065000px;}
.yfe{bottom:751.785000px;}
.y1b6{bottom:753.945000px;}
.y1d8{bottom:755.025000px;}
.ya3{bottom:757.905000px;}
.y129{bottom:759.165000px;}
.ye6{bottom:761.865000px;}
.y1d{bottom:766.905000px;}
.y18d{bottom:769.065000px;}
.yfd{bottom:771.765000px;}
.y1b5{bottom:773.745000px;}
.y1d7{bottom:774.825000px;}
.ya2{bottom:777.885000px;}
.y1c{bottom:779.865000px;}
.ye5{bottom:781.845000px;}
.y128{bottom:783.105000px;}
.yfc{bottom:791.565000px;}
.y1b{bottom:792.825000px;}
.y1b4{bottom:793.725000px;}
.y1d6{bottom:794.625000px;}
.ya1{bottom:797.685000px;}
.ye4{bottom:801.645000px;}
.y127{bottom:803.985000px;}
.y1a{bottom:806.865000px;}
.y18c{bottom:809.565000px;}
.yfb{bottom:811.365000px;}
.y1b3{bottom:813.525000px;}
.y1d5{bottom:814.425000px;}
.ya0{bottom:817.485000px;}
.y126{bottom:819.465000px;}
.ye3{bottom:821.445000px;}
.y19{bottom:821.805000px;}
.y18b{bottom:829.365000px;}
.yfa{bottom:831.165000px;}
.y18{bottom:832.785000px;}
.y1b2{bottom:833.325000px;}
.y1d4{bottom:834.225000px;}
.y9f{bottom:837.285000px;}
.y125{bottom:839.265000px;}
.ye2{bottom:841.245000px;}
.y153{bottom:846.825000px;}
.y18a{bottom:849.165000px;}
.yf9{bottom:850.965000px;}
.y1b1{bottom:853.170000px;}
.y1d3{bottom:854.250000px;}
.y17{bottom:855.690000px;}
.y9e{bottom:857.130000px;}
.y124{bottom:859.110000px;}
.ye1{bottom:861.090000px;}
.y189{bottom:869.010000px;}
.yf8{bottom:870.990000px;}
.y1b0{bottom:872.970000px;}
.y1d2{bottom:874.050000px;}
.y14f{bottom:876.570000px;}
.y9d{bottom:877.110000px;}
.y123{bottom:879.090000px;}
.y16{bottom:879.450000px;}
.ye0{bottom:882.330000px;}
.y188{bottom:888.990000px;}
.y15{bottom:889.890000px;}
.yf7{bottom:892.050000px;}
.y1af{bottom:892.950000px;}
.y1d1{bottom:893.850000px;}
.y9c{bottom:896.910000px;}
.y122{bottom:898.890000px;}
.ydf{bottom:902.490000px;}
.y14{bottom:904.290000px;}
.y187{bottom:908.790000px;}
.y14e{bottom:911.670000px;}
.y1ae{bottom:912.750000px;}
.y1d0{bottom:913.650000px;}
.y9b{bottom:916.710000px;}
.y121{bottom:918.690000px;}
.y13{bottom:925.530000px;}
.y186{bottom:928.590000px;}
.y14d{bottom:930.750000px;}
.yf6{bottom:932.550000px;}
.y1cf{bottom:933.450000px;}
.y9a{bottom:936.510000px;}
.y120{bottom:938.490000px;}
.y12{bottom:944.790000px;}
.y185{bottom:948.390000px;}
.y14c{bottom:950.370000px;}
.yf5{bottom:952.350000px;}
.y1ce{bottom:953.430000px;}
.y99{bottom:956.310000px;}
.y11f{bottom:959.550000px;}
.y14b{bottom:964.230000px;}
.y184{bottom:968.190000px;}
.y1cd{bottom:971.430000px;}
.yf4{bottom:972.150000px;}
.y11{bottom:972.330000px;}
.y98{bottom:976.290000px;}
.y14a{bottom:978.090000px;}
.y11e{bottom:980.610000px;}
.y183{bottom:988.170000px;}
.y146{bottom:989.970000px;}
.yf3{bottom:992.130000px;}
.y97{bottom:996.090000px;}
.y10{bottom:1000.050000px;}
.y182{bottom:1007.970000px;}
.yf2{bottom:1011.930000px;}
.y96{bottom:1015.890000px;}
.y145{bottom:1021.830000px;}
.yf{bottom:1024.890000px;}
.y181{bottom:1027.770000px;}
.yf1{bottom:1031.730000px;}
.y95{bottom:1035.690000px;}
.y144{bottom:1037.670000px;}
.ye{bottom:1039.110000px;}
.y180{bottom:1048.830000px;}
.y7b{bottom:1049.580000px;}
.yf0{bottom:1051.530000px;}
.yd{bottom:1054.590000px;}
.y94{bottom:1055.490000px;}
.y142{bottom:1055.850000px;}
.yc{bottom:1070.070000px;}
.yef{bottom:1072.590000px;}
.y93{bottom:1075.290000px;}
.y141{bottom:1076.730000px;}
.y3{bottom:1087.560000px;}
.ya{bottom:1088.100000px;}
.y2{bottom:1101.240000px;}
.y90{bottom:1105.380000px;}
.y1{bottom:1117.080000px;}
.y8f{bottom:1122.660000px;}
.h9{height:4.021875px;}
.h1f{height:4.064063px;}
.h43{height:6.257812px;}
.h5{height:13.500000px;}
.h40{height:13.896000px;}
.h31{height:15.840000px;}
.h1d{height:16.590234px;}
.h3c{height:17.460000px;}
.h12{height:21.114844px;}
.h25{height:21.336328px;}
.h3f{height:21.600000px;}
.h27{height:22.320000px;}
.h30{height:25.136719px;}
.h1b{height:25.400391px;}
.h3d{height:25.740000px;}
.h1a{height:26.125587px;}
.h36{height:27.576000px;}
.h35{height:27.720000px;}
.h8{height:29.158594px;}
.h2a{height:29.464453px;}
.h2f{height:30.259687px;}
.h15{height:30.963516px;}
.h17{height:31.672266px;}
.h33{height:31.860000px;}
.h22{height:32.004492px;}
.h21{height:32.868281px;}
.h11{height:32.942109px;}
.h19{height:33.683203px;}
.h1e{height:34.036523px;}
.h7{height:34.200000px;}
.h29{height:34.419375px;}
.hd{height:35.120039px;}
.h3{height:35.694141px;}
.h1c{height:37.705078px;}
.h24{height:38.100586px;}
.hc{height:39.313477px;}
.h32{height:39.760312px;}
.h3b{height:41.436000px;}
.h6{height:41.726953px;}
.hf{height:42.164648px;}
.h41{height:43.506914px;}
.h18{height:45.992812px;}
.h34{height:47.998125px;}
.hb{height:48.224531px;}
.h2d{height:49.255313px;}
.h14{height:50.800781px;}
.h2e{height:52.171875px;}
.h10{height:52.918594px;}
.h2b{height:52.998047px;}
.h3a{height:55.260000px;}
.h16{height:55.291992px;}
.h2{height:59.436914px;}
.h42{height:60.855469px;}
.h4{height:65.884219px;}
.he{height:67.565039px;}
.h13{height:67.824844px;}
.ha{height:68.400000px;}
.h37{height:68.940000px;}
.h39{height:68.976000px;}
.h20{height:72.900000px;}
.h2c{height:75.093750px;}
.h38{height:96.660000px;}
.h26{height:106.776000px;}
.h3e{height:137.880000px;}
.h28{height:144.900000px;}
.h23{height:599.655000px;}
.h0{height:1190.700000px;}
.h1{height:1191.000000px;}
.w12{width:48.960000px;}
.w4{width:82.080000px;}
.wc{width:100.260000px;}
.w6{width:101.160000px;}
.w7{width:154.470000px;}
.w10{width:175.575000px;}
.w11{width:180.210000px;}
.wb{width:180.390000px;}
.w9{width:182.550000px;}
.we{width:202.350000px;}
.wf{width:296.670000px;}
.wd{width:372.165000px;}
.w8{width:532.725000px;}
.w5{width:639.870000px;}
.w14{width:652.470000px;}
.w13{width:701.430000px;}
.w3{width:721.950000px;}
.wa{width:743.040000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:4.252500px;}
.x8{left:8.100000px;}
.x15{left:10.800000px;}
.x39{left:12.420000px;}
.x36{left:14.250000px;}
.x32{left:15.480000px;}
.x30{left:18.360000px;}
.x2b{left:19.440000px;}
.x1a{left:21.255000px;}
.x37{left:24.510000px;}
.x35{left:27.750000px;}
.x33{left:30.810000px;}
.xf{left:33.659987px;}
.x2a{left:37.260000px;}
.x2d{left:41.610000px;}
.x31{left:46.440000px;}
.x2f{left:49.320000px;}
.xa{left:50.580000px;}
.x2e{left:52.380000px;}
.x34{left:56.190000px;}
.x38{left:57.990000px;}
.x6{left:73.974000px;}
.x9{left:79.416000px;}
.x18{left:80.460000px;}
.x5{left:87.654000px;}
.x14{left:93.456000px;}
.x17{left:94.536000px;}
.x4{left:108.036000px;}
.x3d{left:114.875987px;}
.x24{left:128.375987px;}
.x25{left:131.436000px;}
.x3c{left:135.035987px;}
.xb{left:143.675987px;}
.xc{left:145.295987px;}
.x20{left:152.669987px;}
.x10{left:165.269987px;}
.x23{left:168.869987px;}
.x7{left:190.110000px;}
.x26{left:231.690000px;}
.x1{left:239.969987px;}
.xe{left:283.934987px;}
.x16{left:303.555000px;}
.x19{left:314.895000px;}
.x3{left:354.494987px;}
.xd{left:390.314987px;}
.x2{left:401.654987px;}
.x28{left:404.715000px;}
.x11{left:460.004987px;}
.x1d{left:468.644987px;}
.x12{left:489.164987px;}
.x13{left:490.784987px;}
.x3a{left:497.624987px;}
.x3b{left:517.784987px;}
.x29{left:580.290000px;}
.x27{left:603.870000px;}
.x1b{left:620.253000px;}
.x2c{left:760.500000px;}
.x22{left:780.839987px;}
.x1f{left:799.199987px;}
.x21{left:801.359987px;}
.x1c{left:803.339987px;}
.x1e{left:805.139987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-13.920000pt;}
.lse{letter-spacing:-8.640000pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.310933pt;}
.lsd{letter-spacing:-0.201067pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.079467pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.106240pt;}
.ls3{letter-spacing:0.128640pt;}
.ls0{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.265600pt;}
.ls16{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.315733pt;}
.ls4{letter-spacing:0.320000pt;}
.ls14{letter-spacing:16.592640pt;}
.ls2{letter-spacing:43.040000pt;}
.ls13{letter-spacing:2408.325120pt;}
.ws13{word-spacing:-16.000000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.ws14{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws11{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.232640pt;}
.ws18{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.808000pt;}
.ws15{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws4{word-spacing:-10.395733pt;}
.ws0{word-spacing:-10.080000pt;}
.ws6{word-spacing:-9.769067pt;}
.ws5{word-spacing:-9.760000pt;}
.wsb{word-spacing:-9.280000pt;}
.wsc{word-spacing:-9.200533pt;}
.wsd{word-spacing:-9.078933pt;}
.wsa{word-spacing:-8.000000pt;}
.ws3{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
._3d{margin-left:-2525.312000pt;}
._37{margin-left:-2511.872000pt;}
._2f{margin-left:-2498.432000pt;}
._1a{margin-left:-2484.992000pt;}
._30{margin-left:-2470.398933pt;}
._1b{margin-left:-2456.636587pt;}
._6{margin-left:-53.600000pt;}
._49{margin-left:-10.447360pt;}
._4c{margin-left:-6.427520pt;}
._46{margin-left:-5.463040pt;}
._47{margin-left:-4.269227pt;}
._a{margin-left:-3.187200pt;}
._9{margin-left:-2.231040pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.067307pt;}
._10{width:1.993387pt;}
._2{width:2.962347pt;}
._e{width:3.921920pt;}
._16{width:4.820480pt;}
._8{width:5.785173pt;}
._f{width:6.746240pt;}
._15{width:7.657173pt;}
._14{width:8.572160pt;}
._13{width:9.632000pt;}
._11{width:10.558080pt;}
._1c{width:12.323840pt;}
._12{width:14.208000pt;}
._22{width:15.280427pt;}
._18{width:16.174080pt;}
._17{width:17.184000pt;}
._3c{width:18.089387pt;}
._23{width:19.026773pt;}
._20{width:20.552533pt;}
._2c{width:22.102827pt;}
._d{width:23.049173pt;}
._26{width:24.063360pt;}
._29{width:25.285120pt;}
._c{width:26.555093pt;}
._b{width:27.569280pt;}
._24{width:29.051733pt;}
._1d{width:30.331520pt;}
._43{width:31.300693pt;}
._2d{width:32.288000pt;}
._2b{width:33.354453pt;}
._35{width:34.581120pt;}
._2a{width:36.174720pt;}
._42{width:37.108907pt;}
._3b{width:38.193280pt;}
._27{width:39.144533pt;}
._28{width:40.371200pt;}
._1f{width:41.641173pt;}
._3a{width:42.862933pt;}
._3e{width:44.562773pt;}
._21{width:45.523840pt;}
._39{width:46.740693pt;}
._38{width:47.648640pt;}
._3f{width:48.701227pt;}
._41{width:49.614080pt;}
._2e{width:50.724693pt;}
._40{width:51.632640pt;}
._25{width:52.588800pt;}
._48{width:54.761813pt;}
._1e{width:55.988480pt;}
._4{width:58.218667pt;}
._34{width:62.474027pt;}
._33{width:63.526613pt;}
._3{width:64.442027pt;}
._32{width:67.834240pt;}
._31{width:68.737280pt;}
._45{width:71.813333pt;}
._4d{width:96.572160pt;}
._44{width:99.117013pt;}
._50{width:101.724800pt;}
._4f{width:106.140800pt;}
._4b{width:130.981120pt;}
._4a{width:132.003200pt;}
._5{width:177.440000pt;}
._19{width:254.106667pt;}
._7{width:671.978667pt;}
._4e{width:732.524800pt;}
._36{width:2234.293333pt;}
.fs8{font-size:5.120000pt;}
.fs11{font-size:5.333333pt;}
.fs10{font-size:21.120000pt;}
.fsc{font-size:26.880000pt;}
.fsb{font-size:29.440000pt;}
.fsf{font-size:32.000000pt;}
.fse{font-size:33.730624pt;}
.fs6{font-size:37.120000pt;}
.fs4{font-size:40.320000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.y4c{bottom:-219.226667pt;}
.y4b{bottom:-189.306667pt;}
.y4a{bottom:-159.386667pt;}
.y8c{bottom:-150.760000pt;}
.y49{bottom:-129.306667pt;}
.y8b{bottom:-120.680000pt;}
.y48{bottom:-99.360000pt;}
.y8a{bottom:-90.760000pt;}
.y47{bottom:-69.280000pt;}
.y89{bottom:-60.840000pt;}
.y46{bottom:-39.360000pt;}
.y88{bottom:-30.720000pt;}
.y8e{bottom:-15.931333pt;}
.y45{bottom:-9.280000pt;}
.y7a{bottom:-7.680000pt;}
.y87{bottom:-0.800000pt;}
.y0{bottom:0.000000pt;}
.y1ef{bottom:1.633333pt;}
.y152{bottom:2.240000pt;}
.y17b{bottom:2.266667pt;}
.y5{bottom:3.360000pt;}
.y16f{bottom:3.840000pt;}
.y143{bottom:4.000000pt;}
.y149{bottom:4.160000pt;}
.y7c{bottom:4.933333pt;}
.y179{bottom:5.760000pt;}
.y71{bottom:6.560000pt;}
.y44{bottom:6.880000pt;}
.y171{bottom:7.520000pt;}
.y16d{bottom:8.320000pt;}
.y154{bottom:8.360000pt;}
.y150{bottom:8.480000pt;}
.y8{bottom:11.040000pt;}
.y147{bottom:11.200000pt;}
.y165{bottom:14.400000pt;}
.y151{bottom:14.560000pt;}
.y79{bottom:14.586667pt;}
.y16b{bottom:14.600000pt;}
.y148{bottom:18.240000pt;}
.y43{bottom:19.200000pt;}
.y9{bottom:19.360000pt;}
.y70{bottom:20.480000pt;}
.y6{bottom:20.640000pt;}
.y162{bottom:20.666667pt;}
.y16c{bottom:20.680000pt;}
.y7{bottom:21.760000pt;}
.y78{bottom:26.266667pt;}
.y86{bottom:26.720000pt;}
.y160{bottom:26.746667pt;}
.y16a{bottom:26.760000pt;}
.y15b{bottom:26.880000pt;}
.yb{bottom:31.200000pt;}
.y42{bottom:31.520000pt;}
.y166{bottom:32.800000pt;}
.y157{bottom:32.960000pt;}
.y161{bottom:32.986667pt;}
.y6f{bottom:34.240000pt;}
.y77{bottom:37.786667pt;}
.y85{bottom:38.400000pt;}
.y156{bottom:39.040000pt;}
.y15f{bottom:39.066667pt;}
.y92{bottom:42.240000pt;}
.y41{bottom:44.000000pt;}
.y6e{bottom:45.120000pt;}
.y15c{bottom:45.280000pt;}
.y76{bottom:49.306667pt;}
.y84{bottom:49.920000pt;}
.y4{bottom:51.040000pt;}
.y164{bottom:51.200000pt;}
.y155{bottom:51.360000pt;}
.y15e{bottom:51.386667pt;}
.y40{bottom:55.520000pt;}
.y8d{bottom:56.693333pt;}
.y177{bottom:57.440000pt;}
.y91{bottom:59.040000pt;}
.y6d{bottom:60.960000pt;}
.y75{bottom:60.986667pt;}
.y83{bottom:61.600000pt;}
.y176{bottom:63.520000pt;}
.y15a{bottom:63.680000pt;}
.y74{bottom:72.506667pt;}
.y82{bottom:73.120000pt;}
.y159{bottom:75.840000pt;}
.y6c{bottom:76.800000pt;}
.y81{bottom:84.640000pt;}
.y73{bottom:87.706667pt;}
.y175{bottom:88.000000pt;}
.y1ee{bottom:89.120000pt;}
.y139{bottom:90.080000pt;}
.y1cc{bottom:91.040000pt;}
.yc4{bottom:91.840000pt;}
.yde{bottom:92.640000pt;}
.y6b{bottom:92.800000pt;}
.y80{bottom:96.320000pt;}
.y174{bottom:100.320000pt;}
.y17f{bottom:100.480000pt;}
.y3e{bottom:101.280000pt;}
.y1ad{bottom:103.200000pt;}
.y11d{bottom:105.760000pt;}
.y1ed{bottom:106.720000pt;}
.y138{bottom:107.680000pt;}
.y7f{bottom:107.840000pt;}
.y6a{bottom:108.640000pt;}
.y13c{bottom:109.120000pt;}
.yc3{bottom:109.440000pt;}
.ydd{bottom:110.240000pt;}
.y140{bottom:110.400000pt;}
.y17e{bottom:111.200000pt;}
.yee{bottom:112.000000pt;}
.y173{bottom:112.640000pt;}
.y7e{bottom:118.720000pt;}
.y3d{bottom:118.880000pt;}
.y1ac{bottom:120.800000pt;}
.y13f{bottom:121.120000pt;}
.y17d{bottom:121.920000pt;}
.y13b{bottom:122.400000pt;}
.y11c{bottom:123.360000pt;}
.y69{bottom:124.480000pt;}
.y137{bottom:125.280000pt;}
.y1cb{bottom:126.240000pt;}
.yc2{bottom:127.040000pt;}
.ydc{bottom:128.000000pt;}
.yed{bottom:128.480000pt;}
.y13e{bottom:132.320000pt;}
.y17c{bottom:132.640000pt;}
.y13a{bottom:136.160000pt;}
.y3c{bottom:136.480000pt;}
.y1ab{bottom:138.560000pt;}
.y68{bottom:140.320000pt;}
.y11b{bottom:140.960000pt;}
.y1ec{bottom:142.080000pt;}
.y136{bottom:142.880000pt;}
.y17a{bottom:143.200000pt;}
.yc1{bottom:144.666667pt;}
.y1ca{bottom:144.986667pt;}
.ydb{bottom:145.626667pt;}
.y13d{bottom:146.106667pt;}
.y3b{bottom:154.266667pt;}
.y178{bottom:155.546667pt;}
.y67{bottom:156.160000pt;}
.y1aa{bottom:156.186667pt;}
.y11a{bottom:158.746667pt;}
.y1eb{bottom:159.706667pt;}
.y135{bottom:160.666667pt;}
.yc0{bottom:162.426667pt;}
.yda{bottom:163.226667pt;}
.y66{bottom:168.200000pt;}
.y3a{bottom:172.986667pt;}
.y1a9{bottom:173.786667pt;}
.y172{bottom:174.746667pt;}
.y65{bottom:175.880000pt;}
.y119{bottom:176.346667pt;}
.y1ea{bottom:177.306667pt;}
.y134{bottom:178.266667pt;}
.ybf{bottom:180.026667pt;}
.yd9{bottom:180.826667pt;}
.y1c9{bottom:181.146667pt;}
.y39{bottom:188.346667pt;}
.y1a8{bottom:191.386667pt;}
.y4d{bottom:191.866667pt;}
.y64{bottom:191.880000pt;}
.y118{bottom:193.946667pt;}
.y1e9{bottom:194.906667pt;}
.y38{bottom:195.866667pt;}
.ybe{bottom:197.626667pt;}
.yd8{bottom:198.426667pt;}
.y1c8{bottom:198.746667pt;}
.y63{bottom:207.720000pt;}
.y1a7{bottom:208.986667pt;}
.y117{bottom:211.546667pt;}
.y1e8{bottom:212.666667pt;}
.y133{bottom:213.466667pt;}
.y37{bottom:213.786667pt;}
.ybd{bottom:215.226667pt;}
.y1c7{bottom:216.346667pt;}
.yd7{bottom:217.306667pt;}
.y62{bottom:223.560000pt;}
.y36{bottom:225.306667pt;}
.y1a6{bottom:226.746667pt;}
.y116{bottom:229.146667pt;}
.y1e7{bottom:230.266667pt;}
.y132{bottom:231.066667pt;}
.ybc{bottom:232.826667pt;}
.y1c6{bottom:233.946667pt;}
.yd6{bottom:235.866667pt;}
.y61{bottom:239.400000pt;}
.y35{bottom:242.746667pt;}
.y1a5{bottom:244.346667pt;}
.y115{bottom:246.906667pt;}
.y1e6{bottom:247.866667pt;}
.y131{bottom:248.826667pt;}
.yd5{bottom:249.626667pt;}
.ybb{bottom:250.586667pt;}
.y1c5{bottom:252.666667pt;}
.y60{bottom:255.240000pt;}
.y1a4{bottom:261.946667pt;}
.y114{bottom:264.506667pt;}
.y1e5{bottom:265.466667pt;}
.y34{bottom:266.426667pt;}
.yd4{bottom:267.226667pt;}
.yba{bottom:268.186667pt;}
.y5f{bottom:269.000000pt;}
.y1a3{bottom:279.546667pt;}
.y5e{bottom:280.040000pt;}
.y113{bottom:282.106667pt;}
.y1e4{bottom:283.066667pt;}
.y130{bottom:284.026667pt;}
.yd3{bottom:284.826667pt;}
.yb9{bottom:285.786667pt;}
.y33{bottom:287.546667pt;}
.y1c4{bottom:288.826667pt;}
.y5d{bottom:295.880000pt;}
.y1a2{bottom:297.146667pt;}
.y170{bottom:297.306667pt;}
.y112{bottom:299.706667pt;}
.y1e3{bottom:300.826667pt;}
.y12f{bottom:301.626667pt;}
.yb8{bottom:303.386667pt;}
.yd2{bottom:303.706667pt;}
.y1c3{bottom:306.426667pt;}
.y32{bottom:308.666667pt;}
.y5c{bottom:311.720000pt;}
.y1a1{bottom:314.906667pt;}
.y111{bottom:317.306667pt;}
.y1e2{bottom:318.426667pt;}
.y12e{bottom:319.226667pt;}
.y16e{bottom:320.186667pt;}
.yb7{bottom:320.986667pt;}
.yd1{bottom:322.266667pt;}
.y1c2{bottom:324.026667pt;}
.y5b{bottom:327.560000pt;}
.y31{bottom:329.946667pt;}
.y1a0{bottom:332.506667pt;}
.y110{bottom:335.066667pt;}
.y169{bottom:335.706667pt;}
.yd0{bottom:336.026667pt;}
.y12d{bottom:336.986667pt;}
.yb6{bottom:338.746667pt;}
.y1c1{bottom:341.626667pt;}
.y5a{bottom:343.400000pt;}
.y19f{bottom:350.146667pt;}
.y30{bottom:351.106667pt;}
.y10f{bottom:352.706667pt;}
.ycf{bottom:353.666667pt;}
.y12c{bottom:355.746667pt;}
.yb5{bottom:356.386667pt;}
.y59{bottom:359.240000pt;}
.y1c0{bottom:360.546667pt;}
.y19e{bottom:367.746667pt;}
.y10e{bottom:370.306667pt;}
.yce{bottom:371.266667pt;}
.y2f{bottom:372.226667pt;}
.y168{bottom:372.546667pt;}
.yb4{bottom:373.986667pt;}
.y58{bottom:375.266667pt;}
.y12b{bottom:376.866667pt;}
.y19d{bottom:385.346667pt;}
.y10d{bottom:387.906667pt;}
.ycd{bottom:389.026667pt;}
.y57{bottom:391.106667pt;}
.yb3{bottom:391.586667pt;}
.y2e{bottom:393.346667pt;}
.y12a{bottom:395.426667pt;}
.y1bf{bottom:396.546667pt;}
.y7d{bottom:400.546667pt;}
.y56{bottom:403.106667pt;}
.y10c{bottom:405.506667pt;}
.ycc{bottom:406.626667pt;}
.yb2{bottom:409.186667pt;}
.y55{bottom:410.786667pt;}
.y2d{bottom:411.746667pt;}
.y1be{bottom:415.266667pt;}
.y19c{bottom:420.706667pt;}
.y10b{bottom:423.266667pt;}
.ycb{bottom:424.226667pt;}
.y54{bottom:426.626667pt;}
.yb1{bottom:426.946667pt;}
.y2c{bottom:429.346667pt;}
.y167{bottom:433.826667pt;}
.y19b{bottom:438.306667pt;}
.y10a{bottom:440.866667pt;}
.y2b{bottom:441.666667pt;}
.yca{bottom:441.826667pt;}
.y53{bottom:442.466667pt;}
.yb0{bottom:444.546667pt;}
.y2a{bottom:449.186667pt;}
.y1bd{bottom:451.266667pt;}
.y19a{bottom:455.906667pt;}
.y52{bottom:458.466667pt;}
.yc9{bottom:459.426667pt;}
.yaf{bottom:462.146667pt;}
.y1bc{bottom:468.866667pt;}
.y29{bottom:469.826667pt;}
.y199{bottom:473.506667pt;}
.y51{bottom:474.306667pt;}
.y109{bottom:476.066667pt;}
.yc8{bottom:477.026667pt;}
.yae{bottom:479.746667pt;}
.y163{bottom:482.946667pt;}
.y1bb{bottom:486.626667pt;}
.y50{bottom:490.146667pt;}
.y28{bottom:490.626667pt;}
.y198{bottom:491.266667pt;}
.y108{bottom:493.666667pt;}
.yc7{bottom:494.786667pt;}
.yad{bottom:497.346667pt;}
.y1ba{bottom:504.226667pt;}
.y4f{bottom:505.986667pt;}
.y197{bottom:508.866667pt;}
.y27{bottom:511.266667pt;}
.y107{bottom:511.426667pt;}
.y1e1{bottom:512.386667pt;}
.yc6{bottom:513.506667pt;}
.yac{bottom:515.106667pt;}
.y4e{bottom:521.826667pt;}
.y196{bottom:526.466667pt;}
.y106{bottom:529.026667pt;}
.y1e0{bottom:529.986667pt;}
.yc5{bottom:531.906667pt;}
.yab{bottom:532.706667pt;}
.y1b9{bottom:540.546667pt;}
.y195{bottom:544.066667pt;}
.y15d{bottom:544.226667pt;}
.y105{bottom:546.626667pt;}
.y1df{bottom:547.586667pt;}
.y72{bottom:548.706667pt;}
.yaa{bottom:550.306667pt;}
.y26{bottom:560.413333pt;}
.y194{bottom:561.693333pt;}
.y104{bottom:564.253333pt;}
.y1de{bottom:565.213333pt;}
.ya9{bottom:567.933333pt;}
.yec{bottom:571.453333pt;}
.y25{bottom:574.173333pt;}
.y193{bottom:579.453333pt;}
.y103{bottom:581.853333pt;}
.y1dd{bottom:582.973333pt;}
.ya8{bottom:585.533333pt;}
.y24{bottom:587.933333pt;}
.yeb{bottom:589.053333pt;}
.y192{bottom:597.053333pt;}
.y1b8{bottom:597.853333pt;}
.y1dc{bottom:600.573333pt;}
.y102{bottom:600.733333pt;}
.y23{bottom:601.853333pt;}
.ya7{bottom:603.293333pt;}
.y158{bottom:605.533333pt;}
.yea{bottom:606.813333pt;}
.y191{bottom:614.653333pt;}
.y22{bottom:615.613333pt;}
.y1b7{bottom:616.573333pt;}
.y1db{bottom:618.173333pt;}
.ya6{bottom:620.893333pt;}
.y101{bottom:621.853333pt;}
.ye9{bottom:624.413333pt;}
.y21{bottom:629.373333pt;}
.y190{bottom:632.253333pt;}
.y1da{bottom:635.773333pt;}
.ya5{bottom:638.493333pt;}
.y100{bottom:639.293333pt;}
.ye8{bottom:642.013333pt;}
.y20{bottom:643.133333pt;}
.y18f{bottom:649.853333pt;}
.yff{bottom:650.653333pt;}
.y1f{bottom:652.573333pt;}
.y1d9{bottom:653.373333pt;}
.ya4{bottom:656.093333pt;}
.ye7{bottom:659.613333pt;}
.y3f{bottom:661.213333pt;}
.y1e{bottom:665.853333pt;}
.y18e{bottom:667.613333pt;}
.yfe{bottom:668.253333pt;}
.y1b6{bottom:670.173333pt;}
.y1d8{bottom:671.133333pt;}
.ya3{bottom:673.693333pt;}
.y129{bottom:674.813333pt;}
.ye6{bottom:677.213333pt;}
.y1d{bottom:681.693333pt;}
.y18d{bottom:683.613333pt;}
.yfd{bottom:686.013333pt;}
.y1b5{bottom:687.773333pt;}
.y1d7{bottom:688.733333pt;}
.ya2{bottom:691.453333pt;}
.y1c{bottom:693.213333pt;}
.ye5{bottom:694.973333pt;}
.y128{bottom:696.093333pt;}
.yfc{bottom:703.613333pt;}
.y1b{bottom:704.733333pt;}
.y1b4{bottom:705.533333pt;}
.y1d6{bottom:706.333333pt;}
.ya1{bottom:709.053333pt;}
.ye4{bottom:712.573333pt;}
.y127{bottom:714.653333pt;}
.y1a{bottom:717.213333pt;}
.y18c{bottom:719.613333pt;}
.yfb{bottom:721.213333pt;}
.y1b3{bottom:723.133333pt;}
.y1d5{bottom:723.933333pt;}
.ya0{bottom:726.653333pt;}
.y126{bottom:728.413333pt;}
.ye3{bottom:730.173333pt;}
.y19{bottom:730.493333pt;}
.y18b{bottom:737.213333pt;}
.yfa{bottom:738.813333pt;}
.y18{bottom:740.253333pt;}
.y1b2{bottom:740.733333pt;}
.y1d4{bottom:741.533333pt;}
.y9f{bottom:744.253333pt;}
.y125{bottom:746.013333pt;}
.ye2{bottom:747.773333pt;}
.y153{bottom:752.733333pt;}
.y18a{bottom:754.813333pt;}
.yf9{bottom:756.413333pt;}
.y1b1{bottom:758.373333pt;}
.y1d3{bottom:759.333333pt;}
.y17{bottom:760.613333pt;}
.y9e{bottom:761.893333pt;}
.y124{bottom:763.653333pt;}
.ye1{bottom:765.413333pt;}
.y189{bottom:772.453333pt;}
.yf8{bottom:774.213333pt;}
.y1b0{bottom:775.973333pt;}
.y1d2{bottom:776.933333pt;}
.y14f{bottom:779.173333pt;}
.y9d{bottom:779.653333pt;}
.y123{bottom:781.413333pt;}
.y16{bottom:781.733333pt;}
.ye0{bottom:784.293333pt;}
.y188{bottom:790.213333pt;}
.y15{bottom:791.013333pt;}
.yf7{bottom:792.933333pt;}
.y1af{bottom:793.733333pt;}
.y1d1{bottom:794.533333pt;}
.y9c{bottom:797.253333pt;}
.y122{bottom:799.013333pt;}
.ydf{bottom:802.213333pt;}
.y14{bottom:803.813333pt;}
.y187{bottom:807.813333pt;}
.y14e{bottom:810.373333pt;}
.y1ae{bottom:811.333333pt;}
.y1d0{bottom:812.133333pt;}
.y9b{bottom:814.853333pt;}
.y121{bottom:816.613333pt;}
.y13{bottom:822.693333pt;}
.y186{bottom:825.413333pt;}
.y14d{bottom:827.333333pt;}
.yf6{bottom:828.933333pt;}
.y1cf{bottom:829.733333pt;}
.y9a{bottom:832.453333pt;}
.y120{bottom:834.213333pt;}
.y12{bottom:839.813333pt;}
.y185{bottom:843.013333pt;}
.y14c{bottom:844.773333pt;}
.yf5{bottom:846.533333pt;}
.y1ce{bottom:847.493333pt;}
.y99{bottom:850.053333pt;}
.y11f{bottom:852.933333pt;}
.y14b{bottom:857.093333pt;}
.y184{bottom:860.613333pt;}
.y1cd{bottom:863.493333pt;}
.yf4{bottom:864.133333pt;}
.y11{bottom:864.293333pt;}
.y98{bottom:867.813333pt;}
.y14a{bottom:869.413333pt;}
.y11e{bottom:871.653333pt;}
.y183{bottom:878.373333pt;}
.y146{bottom:879.973333pt;}
.yf3{bottom:881.893333pt;}
.y97{bottom:885.413333pt;}
.y10{bottom:888.933333pt;}
.y182{bottom:895.973333pt;}
.yf2{bottom:899.493333pt;}
.y96{bottom:903.013333pt;}
.y145{bottom:908.293333pt;}
.yf{bottom:911.013333pt;}
.y181{bottom:913.573333pt;}
.yf1{bottom:917.093333pt;}
.y95{bottom:920.613333pt;}
.y144{bottom:922.373333pt;}
.ye{bottom:923.653333pt;}
.y180{bottom:932.293333pt;}
.y7b{bottom:932.960000pt;}
.yf0{bottom:934.693333pt;}
.yd{bottom:937.413333pt;}
.y94{bottom:938.213333pt;}
.y142{bottom:938.533333pt;}
.yc{bottom:951.173333pt;}
.yef{bottom:953.413333pt;}
.y93{bottom:955.813333pt;}
.y141{bottom:957.093333pt;}
.y3{bottom:966.720000pt;}
.ya{bottom:967.200000pt;}
.y2{bottom:978.880000pt;}
.y90{bottom:982.560000pt;}
.y1{bottom:992.960000pt;}
.y8f{bottom:997.920000pt;}
.h9{height:3.575000pt;}
.h1f{height:3.612500pt;}
.h43{height:5.562500pt;}
.h5{height:12.000000pt;}
.h40{height:12.352000pt;}
.h31{height:14.080000pt;}
.h1d{height:14.746875pt;}
.h3c{height:15.520000pt;}
.h12{height:18.768750pt;}
.h25{height:18.965625pt;}
.h3f{height:19.200000pt;}
.h27{height:19.840000pt;}
.h30{height:22.343750pt;}
.h1b{height:22.578125pt;}
.h3d{height:22.880000pt;}
.h1a{height:23.222744pt;}
.h36{height:24.512000pt;}
.h35{height:24.640000pt;}
.h8{height:25.918750pt;}
.h2a{height:26.190625pt;}
.h2f{height:26.897500pt;}
.h15{height:27.523125pt;}
.h17{height:28.153125pt;}
.h33{height:28.320000pt;}
.h22{height:28.448437pt;}
.h21{height:29.216250pt;}
.h11{height:29.281875pt;}
.h19{height:29.940625pt;}
.h1e{height:30.254687pt;}
.h7{height:30.400000pt;}
.h29{height:30.595000pt;}
.hd{height:31.217812pt;}
.h3{height:31.728125pt;}
.h1c{height:33.515625pt;}
.h24{height:33.867188pt;}
.hc{height:34.945312pt;}
.h32{height:35.342500pt;}
.h3b{height:36.832000pt;}
.h6{height:37.090625pt;}
.hf{height:37.479688pt;}
.h41{height:38.672812pt;}
.h18{height:40.882500pt;}
.h34{height:42.665000pt;}
.hb{height:42.866250pt;}
.h2d{height:43.782500pt;}
.h14{height:45.156250pt;}
.h2e{height:46.375000pt;}
.h10{height:47.038750pt;}
.h2b{height:47.109375pt;}
.h3a{height:49.120000pt;}
.h16{height:49.148438pt;}
.h2{height:52.832812pt;}
.h42{height:54.093750pt;}
.h4{height:58.563750pt;}
.he{height:60.057813pt;}
.h13{height:60.288750pt;}
.ha{height:60.800000pt;}
.h37{height:61.280000pt;}
.h39{height:61.312000pt;}
.h20{height:64.800000pt;}
.h2c{height:66.750000pt;}
.h38{height:85.920000pt;}
.h26{height:94.912000pt;}
.h3e{height:122.560000pt;}
.h28{height:128.800000pt;}
.h23{height:533.026667pt;}
.h0{height:1058.400000pt;}
.h1{height:1058.666667pt;}
.w12{width:43.520000pt;}
.w4{width:72.960000pt;}
.wc{width:89.120000pt;}
.w6{width:89.920000pt;}
.w7{width:137.306667pt;}
.w10{width:156.066667pt;}
.w11{width:160.186667pt;}
.wb{width:160.346667pt;}
.w9{width:162.266667pt;}
.we{width:179.866667pt;}
.wf{width:263.706667pt;}
.wd{width:330.813333pt;}
.w8{width:473.533333pt;}
.w5{width:568.773333pt;}
.w14{width:579.973333pt;}
.w13{width:623.493333pt;}
.w3{width:641.733333pt;}
.wa{width:660.480000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:3.780000pt;}
.x8{left:7.200000pt;}
.x15{left:9.600000pt;}
.x39{left:11.040000pt;}
.x36{left:12.666667pt;}
.x32{left:13.760000pt;}
.x30{left:16.320000pt;}
.x2b{left:17.280000pt;}
.x1a{left:18.893333pt;}
.x37{left:21.786667pt;}
.x35{left:24.666667pt;}
.x33{left:27.386667pt;}
.xf{left:29.919988pt;}
.x2a{left:33.120000pt;}
.x2d{left:36.986667pt;}
.x31{left:41.280000pt;}
.x2f{left:43.840000pt;}
.xa{left:44.960000pt;}
.x2e{left:46.560000pt;}
.x34{left:49.946667pt;}
.x38{left:51.546667pt;}
.x6{left:65.754667pt;}
.x9{left:70.592000pt;}
.x18{left:71.520000pt;}
.x5{left:77.914667pt;}
.x14{left:83.072000pt;}
.x17{left:84.032000pt;}
.x4{left:96.032000pt;}
.x3d{left:102.111988pt;}
.x24{left:114.111988pt;}
.x25{left:116.832000pt;}
.x3c{left:120.031988pt;}
.xb{left:127.711988pt;}
.xc{left:129.151988pt;}
.x20{left:135.706655pt;}
.x10{left:146.906655pt;}
.x23{left:150.106655pt;}
.x7{left:168.986667pt;}
.x26{left:205.946667pt;}
.x1{left:213.306655pt;}
.xe{left:252.386655pt;}
.x16{left:269.826667pt;}
.x19{left:279.906667pt;}
.x3{left:315.106655pt;}
.xd{left:346.946655pt;}
.x2{left:357.026655pt;}
.x28{left:359.746667pt;}
.x11{left:408.893322pt;}
.x1d{left:416.573322pt;}
.x12{left:434.813322pt;}
.x13{left:436.253322pt;}
.x3a{left:442.333322pt;}
.x3b{left:460.253322pt;}
.x29{left:515.813333pt;}
.x27{left:536.773333pt;}
.x1b{left:551.336000pt;}
.x2c{left:676.000000pt;}
.x22{left:694.079988pt;}
.x1f{left:710.399988pt;}
.x21{left:712.319988pt;}
.x1c{left:714.079988pt;}
.x1e{left:715.679988pt;}
}




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