
    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_2f799df145720444a4076fe8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_ca3f090947f9f68287a70c18.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7b857b452275d4bdaa4c4168.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c35d95c8ebd265ee12918e5f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_07476b185fc0abbfc2e1d0ca.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_080d212a8fdacd725b999515.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a7fab598d43f979576b44d71.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_8d86b7dcbf3243f80059d6ad.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_ce4255a82c780e7a7e9b2bd2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.130371;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_ab50a06750aeb84d6f36506a.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.149414;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_5623197c9bf46dfcb9637957.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.991699;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_1bf1d43bcb4fc56c28402805.woff2')format("woff");}.fff{font-family:fff;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;}
.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);}
.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);}
.v4{vertical-align:-104.280000px;}
.vb{vertical-align:-92.280000px;}
.va{vertical-align:-88.260000px;}
.v9{vertical-align:-84.240000px;}
.v8{vertical-align:-68.100000px;}
.v7{vertical-align:-60.180000px;}
.v6{vertical-align:-44.040000px;}
.v2{vertical-align:-32.160000px;}
.ve{vertical-align:-21.600000px;}
.v3{vertical-align:-16.080000px;}
.v1{vertical-align:-8.100000px;}
.v5{vertical-align:-4.020000px;}
.v0{vertical-align:0.000000px;}
.vd{vertical-align:21.600000px;}
.vc{vertical-align:34.680000px;}
.ls10{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-0.972000px;}
.ls23{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.536400px;}
.ls20{letter-spacing:-0.507000px;}
.ls4{letter-spacing:-0.498000px;}
.lsb{letter-spacing:-0.486600px;}
.ls5{letter-spacing:-0.466800px;}
.ls25{letter-spacing:-0.463800px;}
.ls17{letter-spacing:-0.456000px;}
.ls18{letter-spacing:-0.423600px;}
.ls16{letter-spacing:-0.382800px;}
.ls1f{letter-spacing:-0.020160px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.020160px;}
.lsc{letter-spacing:0.213120px;}
.ls1c{letter-spacing:0.314400px;}
.ls1b{letter-spacing:0.387600px;}
.ls11{letter-spacing:0.466800px;}
.ls1e{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls2d{letter-spacing:0.507000px;}
.ls2c{letter-spacing:0.665280px;}
.ls7{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.731520px;}
.lse{letter-spacing:3.600000px;}
.ls1d{letter-spacing:5.040000px;}
.ls2b{letter-spacing:7.920000px;}
.lsa{letter-spacing:23.506560px;}
.ls28{letter-spacing:36.466560px;}
.ls21{letter-spacing:43.666560px;}
.ls12{letter-spacing:43.678560px;}
.ls19{letter-spacing:46.558560px;}
.ls2a{letter-spacing:53.585280px;}
.ls29{letter-spacing:58.066560px;}
.ls22{letter-spacing:62.386560px;}
.ls13{letter-spacing:63.826560px;}
.lsf{letter-spacing:63.838560px;}
.ls1a{letter-spacing:71.026560px;}
.ls9{letter-spacing:71.038560px;}
.lsd{letter-spacing:72.478560px;}
.ls24{letter-spacing:153.316320px;}
.ls15{letter-spacing:155.676960px;}
.ls14{letter-spacing:155.856960px;}
.ls27{letter-spacing:555.983952px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(89,89,89),0 0.015em rgb(89,89,89),0.015em 0 rgb(89,89,89),0 -0.015em  rgb(89,89,89);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(89,89,89);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1f{word-spacing:-66.240000px;}
.ws6{word-spacing:-60.480000px;}
.ws20{word-spacing:-15.627000px;}
.ws16{word-spacing:-15.606600px;}
.ws8{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws17{word-spacing:-15.099840px;}
.ws1b{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.653200px;}
.ws5{word-spacing:-14.633400px;}
.ws18{word-spacing:-14.613000px;}
.ws19{word-spacing:-14.184000px;}
.ws7{word-spacing:-13.680000px;}
.ws3{word-spacing:-13.668480px;}
.ws0{word-spacing:-13.182000px;}
.ws21{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws1e{word-spacing:65.704800px;}
.ws15{word-spacing:72.166080px;}
.ws1c{word-spacing:89.722560px;}
.ws9{word-spacing:103.935360px;}
.ws1a{word-spacing:106.213800px;}
.ws11{word-spacing:116.096640px;}
.wsb{word-spacing:116.715600px;}
.wsd{word-spacing:116.775600px;}
.wsc{word-spacing:116.895600px;}
.wsa{word-spacing:116.936640px;}
.wse{word-spacing:129.675600px;}
.ws12{word-spacing:143.204688px;}
.ws10{word-spacing:143.264688px;}
.wsf{word-spacing:143.370240px;}
.ws13{word-spacing:169.968480px;}
.ws14{word-spacing:313.218720px;}
.ws1d{word-spacing:570.503520px;}
._26{margin-left:-11.761920px;}
._9{margin-left:-4.561920px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._a{width:3.991680px;}
._b{width:5.322240px;}
._d{width:6.894720px;}
._e{width:8.847360px;}
._7{width:10.160640px;}
._8{width:11.560320px;}
._f{width:12.726720px;}
._c{width:14.091840px;}
._15{width:16.185600px;}
._14{width:17.371200px;}
._1a{width:18.587760px;}
._1f{width:20.187840px;}
._1e{width:21.876480px;}
._17{width:23.060160px;}
._16{width:24.675840px;}
._10{width:26.006400px;}
._11{width:27.034560px;}
._13{width:29.096640px;}
._1d{width:30.300480px;}
._22{width:31.904640px;}
._25{width:33.891840px;}
._28{width:35.696640px;}
._29{width:36.842880px;}
._2a{width:38.165760px;}
._2c{width:54.898560px;}
._2b{width:56.738880px;}
._2d{width:58.035840px;}
._1b{width:81.345600px;}
._1c{width:83.099520px;}
._20{width:96.307200px;}
._23{width:125.807280px;}
._27{width:137.400240px;}
._24{width:165.072000px;}
._21{width:196.680000px;}
._18{width:337.961760px;}
._19{width:347.556000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._12{width:849.336000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc9{color:rgb(127,127,127);}
.fc8{color:rgb(89,89,89);}
.fc7{color:rgb(64,64,64);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs3{font-size:38.880000px;}
.fs5{font-size:47.520000px;}
.fs6{font-size:47.664000px;}
.fs2{font-size:54.720000px;}
.fs4{font-size:54.864000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fsa{font-size:63.504000px;}
.fs8{font-size:66.240000px;}
.fs9{font-size:66.384000px;}
.fs1{font-size:72.000000px;}
.fsb{font-size:83.664000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y2b{bottom:3.240000px;}
.y130{bottom:5.760000px;}
.y136{bottom:6.120000px;}
.y10d{bottom:12.315000px;}
.y184{bottom:16.485000px;}
.y132{bottom:16.920000px;}
.y1a9{bottom:17.175000px;}
.y12f{bottom:17.280000px;}
.y2a{bottom:20.520000px;}
.y29{bottom:37.800000px;}
.yef{bottom:41.790000px;}
.ye{bottom:43.560000px;}
.y185{bottom:48.990000px;}
.y1a4{bottom:49.470000px;}
.y18b{bottom:50.835000px;}
.y108{bottom:51.405000px;}
.y28{bottom:55.080000px;}
.yea{bottom:60.330000px;}
.ydf{bottom:62.175000px;}
.y10c{bottom:62.250000px;}
.y19e{bottom:66.315000px;}
.yee{bottom:67.110000px;}
.yc{bottom:68.400000px;}
.y27{bottom:72.360000px;}
.y186{bottom:72.795000px;}
.y18c{bottom:74.625000px;}
.ye9{bottom:79.560000px;}
.y107{bottom:80.670000px;}
.ye0{bottom:82.230000px;}
.yde{bottom:88.485000px;}
.y26{bottom:89.640000px;}
.y19f{bottom:90.210000px;}
.yed{bottom:92.445000px;}
.y106{bottom:94.215000px;}
.ya{bottom:94.716000px;}
.yeb{bottom:94.785000px;}
.y187{bottom:96.585000px;}
.y105{bottom:96.660000px;}
.y18d{bottom:98.430000px;}
.y1a7{bottom:101.415000px;}
.ye1{bottom:102.240000px;}
.y25{bottom:106.950000px;}
.ydc{bottom:108.510000px;}
.ydd{bottom:111.525000px;}
.y1a0{bottom:114.120000px;}
.y188{bottom:120.390000px;}
.y10b{bottom:121.215000px;}
.y18e{bottom:122.220000px;}
.ye2{bottom:122.295000px;}
.y24{bottom:123.870000px;}
.y40{bottom:130.356000px;}
.ydb{bottom:130.530000px;}
.y9f{bottom:131.076000px;}
.y140{bottom:131.436000px;}
.y1a5{bottom:132.375000px;}
.y1a1{bottom:138.030000px;}
.y23{bottom:141.150000px;}
.ye3{bottom:142.350000px;}
.y189{bottom:144.180000px;}
.yd8{bottom:145.836000px;}
.y18f{bottom:146.010000px;}
.y3f{bottom:147.636000px;}
.y10a{bottom:148.245000px;}
.y9e{bottom:148.356000px;}
.y168{bottom:148.716000px;}
.yec{bottom:149.610000px;}
.y13f{bottom:150.510000px;}
.y3e{bottom:153.030000px;}
.y109{bottom:153.180000px;}
.y22{bottom:158.430000px;}
.y103{bottom:158.790000px;}
.y6e{bottom:159.870000px;}
.y1a2{bottom:161.925000px;}
.ye4{bottom:162.390000px;}
.yd7{bottom:163.110000px;}
.y182{bottom:165.270000px;}
.y3d{bottom:165.630000px;}
.y1cd{bottom:167.430000px;}
.y18a{bottom:167.970000px;}
.y13e{bottom:169.230000px;}
.y190{bottom:169.845000px;}
.y1a6{bottom:172.005000px;}
.y21{bottom:175.710000px;}
.yda{bottom:176.655000px;}
.y6d{bottom:177.150000px;}
.y102{bottom:177.510000px;}
.ye8{bottom:179.280000px;}
.y111{bottom:179.460000px;}
.ye5{bottom:182.445000px;}
.y3c{bottom:183.990000px;}
.y1a3{bottom:185.835000px;}
.y9d{bottom:186.510000px;}
.y167{bottom:186.870000px;}
.y13d{bottom:188.310000px;}
.y19c{bottom:189.030000px;}
.y3b{bottom:189.390000px;}
.y20{bottom:192.990000px;}
.y6c{bottom:194.430000px;}
.y101{bottom:196.230000px;}
.y3a{bottom:202.395000px;}
.y9c{bottom:203.835000px;}
.y166{bottom:204.195000px;}
.y1a8{bottom:205.890000px;}
.y1cc{bottom:205.995000px;}
.y13c{bottom:207.075000px;}
.y39{bottom:207.795000px;}
.y1f{bottom:210.270000px;}
.y110{bottom:211.425000px;}
.ye7{bottom:211.605000px;}
.y6b{bottom:211.755000px;}
.y100{bottom:214.995000px;}
.y38{bottom:220.035000px;}
.y9b{bottom:221.115000px;}
.y165{bottom:221.475000px;}
.y192{bottom:222.225000px;}
.y13b{bottom:226.155000px;}
.y1e{bottom:227.550000px;}
.y6a{bottom:229.035000px;}
.y10f{bottom:230.865000px;}
.yff{bottom:233.355000px;}
.y9a{bottom:238.395000px;}
.y37{bottom:238.755000px;}
.y13a{bottom:243.795000px;}
.ye6{bottom:244.185000px;}
.y1d{bottom:244.860000px;}
.y19b{bottom:245.955000px;}
.y10e{bottom:249.945000px;}
.yfe{bottom:252.075000px;}
.y181{bottom:255.315000px;}
.y99{bottom:255.675000px;}
.y36{bottom:256.035000px;}
.y191{bottom:257.070000px;}
.y164{bottom:259.635000px;}
.y1c{bottom:262.140000px;}
.y19a{bottom:264.675000px;}
.y69{bottom:267.195000px;}
.y180{bottom:272.595000px;}
.y98{bottom:272.955000px;}
.y35{bottom:273.315000px;}
.yb9{bottom:276.195000px;}
.y139{bottom:278.715000px;}
.y1b{bottom:279.420000px;}
.y1cb{bottom:282.315000px;}
.y199{bottom:283.395000px;}
.yfd{bottom:287.355000px;}
.y17f{bottom:289.875000px;}
.y34{bottom:290.595000px;}
.yb8{bottom:295.995000px;}
.y1a{bottom:296.700000px;}
.y163{bottom:297.795000px;}
.y1ca{bottom:299.595000px;}
.y68{bottom:305.355000px;}
.y33{bottom:307.875000px;}
.y97{bottom:311.115000px;}
.y138{bottom:311.475000px;}
.y162{bottom:315.075000px;}
.yb7{bottom:315.795000px;}
.y1c9{bottom:316.875000px;}
.y198{bottom:319.755000px;}
.y67{bottom:322.635000px;}
.y17e{bottom:328.065000px;}
.y161{bottom:332.385000px;}
.y1c8{bottom:334.185000px;}
.yb6{bottom:335.625000px;}
.y66{bottom:339.945000px;}
.yd6{bottom:343.185000px;}
.y17d{bottom:345.345000px;}
.y31{bottom:346.065000px;}
.y96{bottom:349.305000px;}
.y160{bottom:349.665000px;}
.y32{bottom:351.465000px;}
.y197{bottom:354.705000px;}
.yb5{bottom:355.785000px;}
.y65{bottom:357.225000px;}
.yfc{bottom:357.945000px;}
.y137{bottom:359.745000px;}
.yd5{bottom:360.465000px;}
.y17c{bottom:362.625000px;}
.y30{bottom:363.345000px;}
.y95{bottom:366.585000px;}
.y1c7{bottom:368.745000px;}
.y196{bottom:371.985000px;}
.y64{bottom:374.505000px;}
.yb4{bottom:375.585000px;}
.yd4{bottom:377.385000px;}
.y17b{bottom:380.265000px;}
.y2e{bottom:380.625000px;}
.y135{bottom:383.505000px;}
.y94{bottom:383.865000px;}
.y2f{bottom:386.025000px;}
.y19d{bottom:386.640000px;}
.y15f{bottom:387.825000px;}
.y63{bottom:391.785000px;}
.yfb{bottom:392.865000px;}
.yd3{bottom:394.665000px;}
.yb3{bottom:395.385000px;}
.y104{bottom:395.640000px;}
.y17a{bottom:397.545000px;}
.y2d{bottom:397.905000px;}
.y93{bottom:401.145000px;}
.y1c6{bottom:403.305000px;}
.y15e{bottom:405.105000px;}
.y134{bottom:407.625000px;}
.yd2{bottom:411.945000px;}
.y179{bottom:414.825000px;}
.yb2{bottom:415.185000px;}
.y92{bottom:418.425000px;}
.y1c5{bottom:420.585000px;}
.y15d{bottom:422.385000px;}
.yd1{bottom:429.225000px;}
.y62{bottom:429.945000px;}
.y133{bottom:431.745000px;}
.yb1{bottom:434.985000px;}
.y91{bottom:435.705000px;}
.y1c4{bottom:437.505000px;}
.y15c{bottom:439.665000px;}
.y2c{bottom:444.705000px;}
.yd0{bottom:446.505000px;}
.y61{bottom:447.225000px;}
.y178{bottom:453.390000px;}
.yb0{bottom:454.830000px;}
.y131{bottom:455.550000px;}
.ycf{bottom:463.830000px;}
.y60{bottom:464.550000px;}
.y19{bottom:469.950000px;}
.y177{bottom:470.670000px;}
.y1c3{bottom:472.110000px;}
.y90{bottom:473.910000px;}
.yaf{bottom:474.630000px;}
.y1ef{bottom:476.790000px;}
.y15b{bottom:477.870000px;}
.yce{bottom:481.110000px;}
.y5f{bottom:481.830000px;}
.y1c2{bottom:489.390000px;}
.y8f{bottom:491.190000px;}
.ycd{bottom:498.390000px;}
.y12e{bottom:501.630000px;}
.y1c1{bottom:506.670000px;}
.y8e{bottom:508.470000px;}
.y176{bottom:508.830000px;}
.yae{bottom:512.790000px;}
.y1ee{bottom:515.310000px;}
.y15a{bottom:516.030000px;}
.ycc{bottom:516.750000px;}
.y5e{bottom:519.990000px;}
.y12d{bottom:525.390000px;}
.y8d{bottom:525.750000px;}
.y175{bottom:526.110000px;}
.yad{bottom:530.070000px;}
.y1ed{bottom:532.590000px;}
.y159{bottom:533.310000px;}
.ycb{bottom:534.030000px;}
.y1c0{bottom:541.950000px;}
.y8c{bottom:543.030000px;}
.y174{bottom:543.750000px;}
.yac{bottom:548.430000px;}
.y1ec{bottom:549.870000px;}
.y5d{bottom:550.590000px;}
.y12c{bottom:552.030000px;}
.yca{bottom:552.390000px;}
.y8b{bottom:560.310000px;}
.y173{bottom:561.030000px;}
.yab{bottom:565.710000px;}
.y1eb{bottom:567.150000px;}
.y158{bottom:567.870000px;}
.y12b{bottom:569.310000px;}
.yc9{bottom:570.750000px;}
.y1bf{bottom:573.990000px;}
.y172{bottom:577.980000px;}
.yaa{bottom:584.100000px;}
.y1ea{bottom:584.460000px;}
.y157{bottom:585.180000px;}
.yc8{bottom:587.700000px;}
.y5c{bottom:588.780000px;}
.y1be{bottom:594.540000px;}
.y171{bottom:595.260000px;}
.y8a{bottom:598.500000px;}
.y1e9{bottom:601.740000px;}
.y156{bottom:602.460000px;}
.y12a{bottom:604.620000px;}
.yc7{bottom:604.980000px;}
.y5b{bottom:606.060000px;}
.y170{bottom:612.540000px;}
.y1bd{bottom:615.420000px;}
.y89{bottom:615.780000px;}
.y1e8{bottom:619.380000px;}
.y155{bottom:619.740000px;}
.y129{bottom:621.900000px;}
.yc6{bottom:622.260000px;}
.y5a{bottom:623.340000px;}
.y16f{bottom:629.820000px;}
.y88{bottom:634.140000px;}
.y1bc{bottom:635.220000px;}
.y1e7{bottom:636.660000px;}
.y154{bottom:637.020000px;}
.y128{bottom:638.820000px;}
.yc5{bottom:639.540000px;}
.y59{bottom:640.620000px;}
.y16e{bottom:647.100000px;}
.y87{bottom:651.420000px;}
.y1e6{bottom:653.940000px;}
.y153{bottom:654.300000px;}
.y127{bottom:656.100000px;}
.yc4{bottom:656.820000px;}
.y58{bottom:657.900000px;}
.y16d{bottom:664.380000px;}
.y86{bottom:669.780000px;}
.y1e5{bottom:671.220000px;}
.y152{bottom:671.580000px;}
.y126{bottom:673.380000px;}
.yc3{bottom:674.100000px;}
.y1bb{bottom:674.820000px;}
.y57{bottom:675.180000px;}
.y85{bottom:687.060000px;}
.y1e4{bottom:688.500000px;}
.y151{bottom:688.860000px;}
.y125{bottom:690.660000px;}
.yc2{bottom:691.380000px;}
.ya9{bottom:692.460000px;}
.y1ba{bottom:693.180000px;}
.yfa{bottom:696.060000px;}
.y16c{bottom:702.930000px;}
.y84{bottom:705.450000px;}
.y150{bottom:705.810000px;}
.y124{bottom:707.970000px;}
.yc1{bottom:708.690000px;}
.y1b9{bottom:713.010000px;}
.y56{bottom:713.370000px;}
.y83{bottom:722.730000px;}
.y14f{bottom:723.090000px;}
.y1e3{bottom:723.450000px;}
.y123{bottom:725.250000px;}
.yc0{bottom:725.970000px;}
.ya8{bottom:730.650000px;}
.y1b8{bottom:733.890000px;}
.yf9{bottom:734.610000px;}
.y14e{bottom:740.370000px;}
.y1e2{bottom:740.730000px;}
.y16b{bottom:741.450000px;}
.ybf{bottom:743.250000px;}
.ya7{bottom:747.930000px;}
.y55{bottom:751.530000px;}
.yf8{bottom:751.890000px;}
.y1b7{bottom:752.610000px;}
.y14d{bottom:757.650000px;}
.y1e1{bottom:758.010000px;}
.y122{bottom:760.530000px;}
.y82{bottom:761.970000px;}
.ya6{bottom:765.210000px;}
.y54{bottom:768.810000px;}
.y1b6{bottom:772.410000px;}
.y14c{bottom:774.930000px;}
.y1e0{bottom:775.290000px;}
.y121{bottom:777.810000px;}
.ybe{bottom:778.530000px;}
.y81{bottom:779.250000px;}
.y16a{bottom:779.610000px;}
.ya5{bottom:782.490000px;}
.y18{bottom:786.090000px;}
.y1b5{bottom:791.850000px;}
.y14b{bottom:792.210000px;}
.y1df{bottom:792.570000px;}
.y120{bottom:795.090000px;}
.ybd{bottom:795.450000px;}
.y80{bottom:796.530000px;}
.y17{bottom:803.370000px;}
.y14a{bottom:809.490000px;}
.y1de{bottom:811.650000px;}
.y11f{bottom:812.370000px;}
.ybc{bottom:812.730000px;}
.y7f{bottom:813.450000px;}
.y169{bottom:814.530000px;}
.y183{bottom:815.760000px;}
.y16{bottom:820.650000px;}
.yf7{bottom:824.610000px;}
.y149{bottom:826.815000px;}
.y11e{bottom:829.695000px;}
.y1dd{bottom:830.055000px;}
.y7e{bottom:830.775000px;}
.y15{bottom:837.615000px;}
.y53{bottom:837.975000px;}
.yf6{bottom:841.935000px;}
.y11d{bottom:846.975000px;}
.y7d{bottom:848.055000px;}
.y1dc{bottom:849.135000px;}
.y1b4{bottom:851.295000px;}
.y13{bottom:854.895000px;}
.ya4{bottom:858.855000px;}
.y14{bottom:861.015000px;}
.ybb{bottom:862.095000px;}
.y11c{bottom:863.895000px;}
.yd9{bottom:864.000000px;}
.y148{bottom:864.975000px;}
.y7c{bottom:865.335000px;}
.y1db{bottom:867.495000px;}
.y1b3{bottom:868.575000px;}
.y12{bottom:872.175000px;}
.y52{bottom:876.135000px;}
.y195{bottom:879.375000px;}
.y7b{bottom:882.615000px;}
.y1da{bottom:885.135000px;}
.y11{bottom:889.455000px;}
.y51{bottom:893.415000px;}
.y194{bottom:896.655000px;}
.y11b{bottom:899.175000px;}
.y7a{bottom:899.895000px;}
.y1d9{bottom:902.415000px;}
.y147{bottom:903.135000px;}
.y10{bottom:906.735000px;}
.y50{bottom:910.695000px;}
.y193{bottom:913.935000px;}
.y11a{bottom:916.455000px;}
.y79{bottom:917.175000px;}
.y1d8{bottom:919.695000px;}
.y146{bottom:920.415000px;}
.yf{bottom:924.015000px;}
.y1b2{bottom:924.375000px;}
.y4f{bottom:927.975000px;}
.y119{bottom:933.735000px;}
.y78{bottom:934.455000px;}
.y145{bottom:937.695000px;}
.y1d7{bottom:938.415000px;}
.y9{bottom:941.295000px;}
.y4e{bottom:945.255000px;}
.ya3{bottom:948.855000px;}
.y118{bottom:951.015000px;}
.y77{bottom:951.735000px;}
.y144{bottom:955.005000px;}
.y1d6{bottom:957.165000px;}
.y8{bottom:958.605000px;}
.y4d{bottom:962.565000px;}
.ya2{bottom:966.165000px;}
.y117{bottom:968.325000px;}
.y76{bottom:969.045000px;}
.y7{bottom:972.645000px;}
.y1d5{bottom:975.885000px;}
.y1b1{bottom:976.245000px;}
.y4c{bottom:979.845000px;}
.ya1{bottom:983.445000px;}
.y116{bottom:985.605000px;}
.y75{bottom:986.685000px;}
.y143{bottom:993.165000px;}
.y1d4{bottom:994.605000px;}
.yf5{bottom:997.125000px;}
.ya0{bottom:1000.725000px;}
.y115{bottom:1002.885000px;}
.y74{bottom:1003.965000px;}
.y1d3{bottom:1013.325000px;}
.yf4{bottom:1014.405000px;}
.y1b0{bottom:1014.765000px;}
.y4b{bottom:1018.005000px;}
.y73{bottom:1021.605000px;}
.y6{bottom:1027.365000px;}
.y142{bottom:1031.325000px;}
.yf3{bottom:1031.685000px;}
.y1d2{bottom:1032.045000px;}
.y4a{bottom:1035.285000px;}
.y114{bottom:1038.165000px;}
.y72{bottom:1038.885000px;}
.yf2{bottom:1048.605000px;}
.y1d1{bottom:1050.765000px;}
.y5{bottom:1052.205000px;}
.y49{bottom:1052.565000px;}
.y1af{bottom:1052.925000px;}
.y71{bottom:1056.165000px;}
.y141{bottom:1065.885000px;}
.y113{bottom:1068.765000px;}
.y1d0{bottom:1069.485000px;}
.y48{bottom:1069.845000px;}
.y1ae{bottom:1070.205000px;}
.y4{bottom:1072.725000px;}
.y70{bottom:1073.445000px;}
.yf1{bottom:1087.170000px;}
.y1cf{bottom:1088.250000px;}
.y1ad{bottom:1088.610000px;}
.y6f{bottom:1090.770000px;}
.y3{bottom:1094.010000px;}
.yf0{bottom:1104.450000px;}
.y1ac{bottom:1105.890000px;}
.y1ce{bottom:1106.970000px;}
.y47{bottom:1108.050000px;}
.y2{bottom:1114.530000px;}
.y112{bottom:1123.890000px;}
.y1ab{bottom:1124.250000px;}
.y46{bottom:1125.330000px;}
.y1{bottom:1131.450000px;}
.y1aa{bottom:1141.530000px;}
.yba{bottom:1142.250000px;}
.y45{bottom:1142.610000px;}
.y44{bottom:1166.370000px;}
.y43{bottom:1180.410000px;}
.y42{bottom:1201.290000px;}
.y41{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h19{height:21.960000px;}
.h1b{height:22.320000px;}
.h1d{height:22.356000px;}
.h1e{height:22.680000px;}
.h1f{height:22.716000px;}
.hb{height:34.114922px;}
.h9{height:34.532578px;}
.hc{height:38.671172px;}
.h1c{height:44.280000px;}
.h5{height:45.101250px;}
.h1a{height:45.720000px;}
.h16{height:47.264766px;}
.h17{height:47.407992px;}
.h7{height:48.013594px;}
.h14{height:52.312500px;}
.h4{height:53.067656px;}
.h28{height:53.645625px;}
.h2{height:53.717344px;}
.hf{height:54.426094px;}
.h10{height:54.569320px;}
.hd{height:60.155156px;}
.h13{height:61.927031px;}
.h3{height:63.949219px;}
.h18{height:64.875938px;}
.h23{height:65.023383px;}
.h21{height:65.884219px;}
.h22{height:66.027445px;}
.h27{height:67.824844px;}
.h11{height:68.554688px;}
.h26{height:74.308992px;}
.h25{height:89.106094px;}
.h12{height:178.200000px;}
.h24{height:247.320000px;}
.he{height:272.880000px;}
.h15{height:276.480000px;}
.h20{height:302.760000px;}
.ha{height:310.395000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w17{width:26.280000px;}
.w1d{width:29.520000px;}
.w19{width:29.880000px;}
.w1f{width:34.200000px;}
.w15{width:34.236000px;}
.w1c{width:34.956000px;}
.w16{width:36.360000px;}
.w18{width:36.396000px;}
.w1b{width:36.720000px;}
.w1a{width:41.076000px;}
.w1e{width:47.556000px;}
.w10{width:62.640000px;}
.we{width:62.676000px;}
.wd{width:70.596000px;}
.wf{width:70.956000px;}
.w11{width:71.316000px;}
.w12{width:77.076000px;}
.w14{width:88.596000px;}
.w13{width:88.956000px;}
.wc{width:89.676000px;}
.w8{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w7{width:341.430000px;}
.wa{width:374.040000px;}
.w21{width:443.160000px;}
.w20{width:561.600000px;}
.wb{width:565.200000px;}
.w9{width:609.480000px;}
.w6{width:679.965000px;}
.w1{width:892.500000px;}
.w5{width:892.799973px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3c{left:5.040000px;}
.x46{left:6.120000px;}
.x4d{left:7.560000px;}
.x9{left:8.640000px;}
.x28{left:9.864000px;}
.x44{left:11.520000px;}
.x3e{left:13.680000px;}
.x56{left:14.760000px;}
.x27{left:16.704000px;}
.x48{left:18.360000px;}
.x57{left:21.600000px;}
.x26{left:23.544000px;}
.x58{left:27.750000px;}
.x59{left:29.160000px;}
.x6e{left:30.960000px;}
.x5a{left:35.310000px;}
.x38{left:51.990000px;}
.x21{left:55.470000px;}
.x2d{left:60.810000px;}
.x31{left:70.230000px;}
.x24{left:80.925000px;}
.x39{left:88.275000px;}
.x2b{left:96.765000px;}
.x60{left:97.845000px;}
.x2c{left:102.570000px;}
.x34{left:104.685000px;}
.x7{left:106.235987px;}
.x4a{left:107.316000px;}
.x29{left:109.185000px;}
.x17{left:111.275987px;}
.x61{left:115.350000px;}
.x1d{left:117.035987px;}
.x6f{left:125.070000px;}
.xb{left:133.271987px;}
.x1e{left:144.071987px;}
.x1a{left:148.751987px;}
.x22{left:150.840000px;}
.x1b{left:160.274987px;}
.x1f{left:171.074987px;}
.x25{left:172.695000px;}
.x6d{left:175.754987px;}
.x18{left:180.794987px;}
.x70{left:185.070000px;}
.x2f{left:187.274987px;}
.x5c{left:192.674987px;}
.x23{left:196.710000px;}
.x3d{left:197.715000px;}
.x5b{left:199.154987px;}
.x32{left:203.370000px;}
.x62{left:208.515000px;}
.x5d{left:212.474987px;}
.x30{left:214.274987px;}
.x4b{left:231.945000px;}
.x71{left:233.744987px;}
.x3a{left:236.265000px;}
.x35{left:237.810000px;}
.x3b{left:246.420000px;}
.x6c{left:248.145000px;}
.x2{left:254.264987px;}
.x72{left:255.344987px;}
.x5f{left:257.400000px;}
.x2a{left:264.240000px;}
.x66{left:267.510000px;}
.x3f{left:269.745000px;}
.x65{left:270.825000px;}
.x6{left:274.064987px;}
.x2e{left:283.830000px;}
.x6b{left:286.095000px;}
.x64{left:292.470000px;}
.x63{left:293.730000px;}
.x4c{left:296.025000px;}
.x6a{left:301.395000px;}
.xa{left:304.350000px;}
.x69{left:316.650000px;}
.x16{left:322.349987px;}
.xd{left:324.869987px;}
.xc{left:329.189987px;}
.x10{left:330.269987px;}
.x40{left:333.870000px;}
.x33{left:336.495000px;}
.x11{left:339.984000px;}
.x5{left:355.829987px;}
.x4e{left:363.750000px;}
.x36{left:370.980000px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x68{left:403.200000px;}
.x4f{left:405.540000px;}
.x41{left:406.620000px;}
.x67{left:408.270000px;}
.x50{left:432.540000px;}
.x8{left:446.579987px;}
.x19{left:447.660000px;}
.x12{left:464.219973px;}
.x13{left:469.259987px;}
.x42{left:470.700000px;}
.x20{left:495.569987px;}
.x37{left:504.105000px;}
.x51{left:505.650000px;}
.x43{left:543.450000px;}
.xe{left:562.889973px;}
.xf{left:567.929987px;}
.x52{left:577.695000px;}
.x14{left:589.574973px;}
.x15{left:594.614987px;}
.x45{left:615.495000px;}
.x53{left:645.015000px;}
.x47{left:694.005000px;}
.x5e{left:711.284987px;}
.x1c{left:715.964987px;}
.x54{left:728.205000px;}
.x49{left:766.050000px;}
.x1{left:786.929987px;}
.x55{left:792.330000px;}
@media print{
.v4{vertical-align:-92.693333pt;}
.vb{vertical-align:-82.026667pt;}
.va{vertical-align:-78.453333pt;}
.v9{vertical-align:-74.880000pt;}
.v8{vertical-align:-60.533333pt;}
.v7{vertical-align:-53.493333pt;}
.v6{vertical-align:-39.146667pt;}
.v2{vertical-align:-28.586667pt;}
.ve{vertical-align:-19.200000pt;}
.v3{vertical-align:-14.293333pt;}
.v1{vertical-align:-7.200000pt;}
.v5{vertical-align:-3.573333pt;}
.v0{vertical-align:0.000000pt;}
.vd{vertical-align:19.200000pt;}
.vc{vertical-align:30.826667pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls23{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.476800pt;}
.ls20{letter-spacing:-0.450667pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsb{letter-spacing:-0.432533pt;}
.ls5{letter-spacing:-0.414933pt;}
.ls25{letter-spacing:-0.412267pt;}
.ls17{letter-spacing:-0.405333pt;}
.ls18{letter-spacing:-0.376533pt;}
.ls16{letter-spacing:-0.340267pt;}
.ls1f{letter-spacing:-0.017920pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.017920pt;}
.lsc{letter-spacing:0.189440pt;}
.ls1c{letter-spacing:0.279467pt;}
.ls1b{letter-spacing:0.344533pt;}
.ls11{letter-spacing:0.414933pt;}
.ls1e{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls2d{letter-spacing:0.450667pt;}
.ls2c{letter-spacing:0.591360pt;}
.ls7{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650240pt;}
.lse{letter-spacing:3.200000pt;}
.ls1d{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:7.040000pt;}
.lsa{letter-spacing:20.894720pt;}
.ls28{letter-spacing:32.414720pt;}
.ls21{letter-spacing:38.814720pt;}
.ls12{letter-spacing:38.825387pt;}
.ls19{letter-spacing:41.385387pt;}
.ls2a{letter-spacing:47.631360pt;}
.ls29{letter-spacing:51.614720pt;}
.ls22{letter-spacing:55.454720pt;}
.ls13{letter-spacing:56.734720pt;}
.lsf{letter-spacing:56.745387pt;}
.ls1a{letter-spacing:63.134720pt;}
.ls9{letter-spacing:63.145387pt;}
.lsd{letter-spacing:64.425387pt;}
.ls24{letter-spacing:136.281173pt;}
.ls15{letter-spacing:138.379520pt;}
.ls14{letter-spacing:138.539520pt;}
.ls27{letter-spacing:494.207957pt;}
.ws1f{word-spacing:-58.880000pt;}
.ws6{word-spacing:-53.760000pt;}
.ws20{word-spacing:-13.890667pt;}
.ws16{word-spacing:-13.872533pt;}
.ws8{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.422080pt;}
.ws1b{word-spacing:-13.306880pt;}
.ws1{word-spacing:-13.025067pt;}
.ws5{word-spacing:-13.007467pt;}
.ws18{word-spacing:-12.989333pt;}
.ws19{word-spacing:-12.608000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws3{word-spacing:-12.149760pt;}
.ws0{word-spacing:-11.717333pt;}
.ws21{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws1e{word-spacing:58.404267pt;}
.ws15{word-spacing:64.147627pt;}
.ws1c{word-spacing:79.753387pt;}
.ws9{word-spacing:92.386987pt;}
.ws1a{word-spacing:94.412267pt;}
.ws11{word-spacing:103.197013pt;}
.wsb{word-spacing:103.747200pt;}
.wsd{word-spacing:103.800533pt;}
.wsc{word-spacing:103.907200pt;}
.wsa{word-spacing:103.943680pt;}
.wse{word-spacing:115.267200pt;}
.ws12{word-spacing:127.293056pt;}
.ws10{word-spacing:127.346389pt;}
.wsf{word-spacing:127.440213pt;}
.ws13{word-spacing:151.083093pt;}
.ws14{word-spacing:278.416640pt;}
.ws1d{word-spacing:507.114240pt;}
._26{margin-left:-10.455040pt;}
._9{margin-left:-4.055040pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._a{width:3.548160pt;}
._b{width:4.730880pt;}
._d{width:6.128640pt;}
._e{width:7.864320pt;}
._7{width:9.031680pt;}
._8{width:10.275840pt;}
._f{width:11.312640pt;}
._c{width:12.526080pt;}
._15{width:14.387200pt;}
._14{width:15.441067pt;}
._1a{width:16.522453pt;}
._1f{width:17.944747pt;}
._1e{width:19.445760pt;}
._17{width:20.497920pt;}
._16{width:21.934080pt;}
._10{width:23.116800pt;}
._11{width:24.030720pt;}
._13{width:25.863680pt;}
._1d{width:26.933760pt;}
._22{width:28.359680pt;}
._25{width:30.126080pt;}
._28{width:31.730347pt;}
._29{width:32.749227pt;}
._2a{width:33.925120pt;}
._2c{width:48.798720pt;}
._2b{width:50.434560pt;}
._2d{width:51.587413pt;}
._1b{width:72.307200pt;}
._1c{width:73.866240pt;}
._20{width:85.606400pt;}
._23{width:111.828693pt;}
._27{width:122.133547pt;}
._24{width:146.730667pt;}
._21{width:174.826667pt;}
._18{width:300.410453pt;}
._19{width:308.938667pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._12{width:754.965333pt;}
._3{width:1414.378667pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.240000pt;}
.fs6{font-size:42.368000pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:48.768000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fsa{font-size:56.448000pt;}
.fs8{font-size:58.880000pt;}
.fs9{font-size:59.008000pt;}
.fs1{font-size:64.000000pt;}
.fsb{font-size:74.368000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y2b{bottom:2.880000pt;}
.y130{bottom:5.120000pt;}
.y136{bottom:5.440000pt;}
.y10d{bottom:10.946667pt;}
.y184{bottom:14.653333pt;}
.y132{bottom:15.040000pt;}
.y1a9{bottom:15.266667pt;}
.y12f{bottom:15.360000pt;}
.y2a{bottom:18.240000pt;}
.y29{bottom:33.600000pt;}
.yef{bottom:37.146667pt;}
.ye{bottom:38.720000pt;}
.y185{bottom:43.546667pt;}
.y1a4{bottom:43.973333pt;}
.y18b{bottom:45.186667pt;}
.y108{bottom:45.693333pt;}
.y28{bottom:48.960000pt;}
.yea{bottom:53.626667pt;}
.ydf{bottom:55.266667pt;}
.y10c{bottom:55.333333pt;}
.y19e{bottom:58.946667pt;}
.yee{bottom:59.653333pt;}
.yc{bottom:60.800000pt;}
.y27{bottom:64.320000pt;}
.y186{bottom:64.706667pt;}
.y18c{bottom:66.333333pt;}
.ye9{bottom:70.720000pt;}
.y107{bottom:71.706667pt;}
.ye0{bottom:73.093333pt;}
.yde{bottom:78.653333pt;}
.y26{bottom:79.680000pt;}
.y19f{bottom:80.186667pt;}
.yed{bottom:82.173333pt;}
.y106{bottom:83.746667pt;}
.ya{bottom:84.192000pt;}
.yeb{bottom:84.253333pt;}
.y187{bottom:85.853333pt;}
.y105{bottom:85.920000pt;}
.y18d{bottom:87.493333pt;}
.y1a7{bottom:90.146667pt;}
.ye1{bottom:90.880000pt;}
.y25{bottom:95.066667pt;}
.ydc{bottom:96.453333pt;}
.ydd{bottom:99.133333pt;}
.y1a0{bottom:101.440000pt;}
.y188{bottom:107.013333pt;}
.y10b{bottom:107.746667pt;}
.y18e{bottom:108.640000pt;}
.ye2{bottom:108.706667pt;}
.y24{bottom:110.106667pt;}
.y40{bottom:115.872000pt;}
.ydb{bottom:116.026667pt;}
.y9f{bottom:116.512000pt;}
.y140{bottom:116.832000pt;}
.y1a5{bottom:117.666667pt;}
.y1a1{bottom:122.693333pt;}
.y23{bottom:125.466667pt;}
.ye3{bottom:126.533333pt;}
.y189{bottom:128.160000pt;}
.yd8{bottom:129.632000pt;}
.y18f{bottom:129.786667pt;}
.y3f{bottom:131.232000pt;}
.y10a{bottom:131.773333pt;}
.y9e{bottom:131.872000pt;}
.y168{bottom:132.192000pt;}
.yec{bottom:132.986667pt;}
.y13f{bottom:133.786667pt;}
.y3e{bottom:136.026667pt;}
.y109{bottom:136.160000pt;}
.y22{bottom:140.826667pt;}
.y103{bottom:141.146667pt;}
.y6e{bottom:142.106667pt;}
.y1a2{bottom:143.933333pt;}
.ye4{bottom:144.346667pt;}
.yd7{bottom:144.986667pt;}
.y182{bottom:146.906667pt;}
.y3d{bottom:147.226667pt;}
.y1cd{bottom:148.826667pt;}
.y18a{bottom:149.306667pt;}
.y13e{bottom:150.426667pt;}
.y190{bottom:150.973333pt;}
.y1a6{bottom:152.893333pt;}
.y21{bottom:156.186667pt;}
.yda{bottom:157.026667pt;}
.y6d{bottom:157.466667pt;}
.y102{bottom:157.786667pt;}
.ye8{bottom:159.360000pt;}
.y111{bottom:159.520000pt;}
.ye5{bottom:162.173333pt;}
.y3c{bottom:163.546667pt;}
.y1a3{bottom:165.186667pt;}
.y9d{bottom:165.786667pt;}
.y167{bottom:166.106667pt;}
.y13d{bottom:167.386667pt;}
.y19c{bottom:168.026667pt;}
.y3b{bottom:168.346667pt;}
.y20{bottom:171.546667pt;}
.y6c{bottom:172.826667pt;}
.y101{bottom:174.426667pt;}
.y3a{bottom:179.906667pt;}
.y9c{bottom:181.186667pt;}
.y166{bottom:181.506667pt;}
.y1a8{bottom:183.013333pt;}
.y1cc{bottom:183.106667pt;}
.y13c{bottom:184.066667pt;}
.y39{bottom:184.706667pt;}
.y1f{bottom:186.906667pt;}
.y110{bottom:187.933333pt;}
.ye7{bottom:188.093333pt;}
.y6b{bottom:188.226667pt;}
.y100{bottom:191.106667pt;}
.y38{bottom:195.586667pt;}
.y9b{bottom:196.546667pt;}
.y165{bottom:196.866667pt;}
.y192{bottom:197.533333pt;}
.y13b{bottom:201.026667pt;}
.y1e{bottom:202.266667pt;}
.y6a{bottom:203.586667pt;}
.y10f{bottom:205.213333pt;}
.yff{bottom:207.426667pt;}
.y9a{bottom:211.906667pt;}
.y37{bottom:212.226667pt;}
.y13a{bottom:216.706667pt;}
.ye6{bottom:217.053333pt;}
.y1d{bottom:217.653333pt;}
.y19b{bottom:218.626667pt;}
.y10e{bottom:222.173333pt;}
.yfe{bottom:224.066667pt;}
.y181{bottom:226.946667pt;}
.y99{bottom:227.266667pt;}
.y36{bottom:227.586667pt;}
.y191{bottom:228.506667pt;}
.y164{bottom:230.786667pt;}
.y1c{bottom:233.013333pt;}
.y19a{bottom:235.266667pt;}
.y69{bottom:237.506667pt;}
.y180{bottom:242.306667pt;}
.y98{bottom:242.626667pt;}
.y35{bottom:242.946667pt;}
.yb9{bottom:245.506667pt;}
.y139{bottom:247.746667pt;}
.y1b{bottom:248.373333pt;}
.y1cb{bottom:250.946667pt;}
.y199{bottom:251.906667pt;}
.yfd{bottom:255.426667pt;}
.y17f{bottom:257.666667pt;}
.y34{bottom:258.306667pt;}
.yb8{bottom:263.106667pt;}
.y1a{bottom:263.733333pt;}
.y163{bottom:264.706667pt;}
.y1ca{bottom:266.306667pt;}
.y68{bottom:271.426667pt;}
.y33{bottom:273.666667pt;}
.y97{bottom:276.546667pt;}
.y138{bottom:276.866667pt;}
.y162{bottom:280.066667pt;}
.yb7{bottom:280.706667pt;}
.y1c9{bottom:281.666667pt;}
.y198{bottom:284.226667pt;}
.y67{bottom:286.786667pt;}
.y17e{bottom:291.613333pt;}
.y161{bottom:295.453333pt;}
.y1c8{bottom:297.053333pt;}
.yb6{bottom:298.333333pt;}
.y66{bottom:302.173333pt;}
.yd6{bottom:305.053333pt;}
.y17d{bottom:306.973333pt;}
.y31{bottom:307.613333pt;}
.y96{bottom:310.493333pt;}
.y160{bottom:310.813333pt;}
.y32{bottom:312.413333pt;}
.y197{bottom:315.293333pt;}
.yb5{bottom:316.253333pt;}
.y65{bottom:317.533333pt;}
.yfc{bottom:318.173333pt;}
.y137{bottom:319.773333pt;}
.yd5{bottom:320.413333pt;}
.y17c{bottom:322.333333pt;}
.y30{bottom:322.973333pt;}
.y95{bottom:325.853333pt;}
.y1c7{bottom:327.773333pt;}
.y196{bottom:330.653333pt;}
.y64{bottom:332.893333pt;}
.yb4{bottom:333.853333pt;}
.yd4{bottom:335.453333pt;}
.y17b{bottom:338.013333pt;}
.y2e{bottom:338.333333pt;}
.y135{bottom:340.893333pt;}
.y94{bottom:341.213333pt;}
.y2f{bottom:343.133333pt;}
.y19d{bottom:343.680000pt;}
.y15f{bottom:344.733333pt;}
.y63{bottom:348.253333pt;}
.yfb{bottom:349.213333pt;}
.yd3{bottom:350.813333pt;}
.yb3{bottom:351.453333pt;}
.y104{bottom:351.680000pt;}
.y17a{bottom:353.373333pt;}
.y2d{bottom:353.693333pt;}
.y93{bottom:356.573333pt;}
.y1c6{bottom:358.493333pt;}
.y15e{bottom:360.093333pt;}
.y134{bottom:362.333333pt;}
.yd2{bottom:366.173333pt;}
.y179{bottom:368.733333pt;}
.yb2{bottom:369.053333pt;}
.y92{bottom:371.933333pt;}
.y1c5{bottom:373.853333pt;}
.y15d{bottom:375.453333pt;}
.yd1{bottom:381.533333pt;}
.y62{bottom:382.173333pt;}
.y133{bottom:383.773333pt;}
.yb1{bottom:386.653333pt;}
.y91{bottom:387.293333pt;}
.y1c4{bottom:388.893333pt;}
.y15c{bottom:390.813333pt;}
.y2c{bottom:395.293333pt;}
.yd0{bottom:396.893333pt;}
.y61{bottom:397.533333pt;}
.y178{bottom:403.013333pt;}
.yb0{bottom:404.293333pt;}
.y131{bottom:404.933333pt;}
.ycf{bottom:412.293333pt;}
.y60{bottom:412.933333pt;}
.y19{bottom:417.733333pt;}
.y177{bottom:418.373333pt;}
.y1c3{bottom:419.653333pt;}
.y90{bottom:421.253333pt;}
.yaf{bottom:421.893333pt;}
.y1ef{bottom:423.813333pt;}
.y15b{bottom:424.773333pt;}
.yce{bottom:427.653333pt;}
.y5f{bottom:428.293333pt;}
.y1c2{bottom:435.013333pt;}
.y8f{bottom:436.613333pt;}
.ycd{bottom:443.013333pt;}
.y12e{bottom:445.893333pt;}
.y1c1{bottom:450.373333pt;}
.y8e{bottom:451.973333pt;}
.y176{bottom:452.293333pt;}
.yae{bottom:455.813333pt;}
.y1ee{bottom:458.053333pt;}
.y15a{bottom:458.693333pt;}
.ycc{bottom:459.333333pt;}
.y5e{bottom:462.213333pt;}
.y12d{bottom:467.013333pt;}
.y8d{bottom:467.333333pt;}
.y175{bottom:467.653333pt;}
.yad{bottom:471.173333pt;}
.y1ed{bottom:473.413333pt;}
.y159{bottom:474.053333pt;}
.ycb{bottom:474.693333pt;}
.y1c0{bottom:481.733333pt;}
.y8c{bottom:482.693333pt;}
.y174{bottom:483.333333pt;}
.yac{bottom:487.493333pt;}
.y1ec{bottom:488.773333pt;}
.y5d{bottom:489.413333pt;}
.y12c{bottom:490.693333pt;}
.yca{bottom:491.013333pt;}
.y8b{bottom:498.053333pt;}
.y173{bottom:498.693333pt;}
.yab{bottom:502.853333pt;}
.y1eb{bottom:504.133333pt;}
.y158{bottom:504.773333pt;}
.y12b{bottom:506.053333pt;}
.yc9{bottom:507.333333pt;}
.y1bf{bottom:510.213333pt;}
.y172{bottom:513.760000pt;}
.yaa{bottom:519.200000pt;}
.y1ea{bottom:519.520000pt;}
.y157{bottom:520.160000pt;}
.yc8{bottom:522.400000pt;}
.y5c{bottom:523.360000pt;}
.y1be{bottom:528.480000pt;}
.y171{bottom:529.120000pt;}
.y8a{bottom:532.000000pt;}
.y1e9{bottom:534.880000pt;}
.y156{bottom:535.520000pt;}
.y12a{bottom:537.440000pt;}
.yc7{bottom:537.760000pt;}
.y5b{bottom:538.720000pt;}
.y170{bottom:544.480000pt;}
.y1bd{bottom:547.040000pt;}
.y89{bottom:547.360000pt;}
.y1e8{bottom:550.560000pt;}
.y155{bottom:550.880000pt;}
.y129{bottom:552.800000pt;}
.yc6{bottom:553.120000pt;}
.y5a{bottom:554.080000pt;}
.y16f{bottom:559.840000pt;}
.y88{bottom:563.680000pt;}
.y1bc{bottom:564.640000pt;}
.y1e7{bottom:565.920000pt;}
.y154{bottom:566.240000pt;}
.y128{bottom:567.840000pt;}
.yc5{bottom:568.480000pt;}
.y59{bottom:569.440000pt;}
.y16e{bottom:575.200000pt;}
.y87{bottom:579.040000pt;}
.y1e6{bottom:581.280000pt;}
.y153{bottom:581.600000pt;}
.y127{bottom:583.200000pt;}
.yc4{bottom:583.840000pt;}
.y58{bottom:584.800000pt;}
.y16d{bottom:590.560000pt;}
.y86{bottom:595.360000pt;}
.y1e5{bottom:596.640000pt;}
.y152{bottom:596.960000pt;}
.y126{bottom:598.560000pt;}
.yc3{bottom:599.200000pt;}
.y1bb{bottom:599.840000pt;}
.y57{bottom:600.160000pt;}
.y85{bottom:610.720000pt;}
.y1e4{bottom:612.000000pt;}
.y151{bottom:612.320000pt;}
.y125{bottom:613.920000pt;}
.yc2{bottom:614.560000pt;}
.ya9{bottom:615.520000pt;}
.y1ba{bottom:616.160000pt;}
.yfa{bottom:618.720000pt;}
.y16c{bottom:624.826667pt;}
.y84{bottom:627.066667pt;}
.y150{bottom:627.386667pt;}
.y124{bottom:629.306667pt;}
.yc1{bottom:629.946667pt;}
.y1b9{bottom:633.786667pt;}
.y56{bottom:634.106667pt;}
.y83{bottom:642.426667pt;}
.y14f{bottom:642.746667pt;}
.y1e3{bottom:643.066667pt;}
.y123{bottom:644.666667pt;}
.yc0{bottom:645.306667pt;}
.ya8{bottom:649.466667pt;}
.y1b8{bottom:652.346667pt;}
.yf9{bottom:652.986667pt;}
.y14e{bottom:658.106667pt;}
.y1e2{bottom:658.426667pt;}
.y16b{bottom:659.066667pt;}
.ybf{bottom:660.666667pt;}
.ya7{bottom:664.826667pt;}
.y55{bottom:668.026667pt;}
.yf8{bottom:668.346667pt;}
.y1b7{bottom:668.986667pt;}
.y14d{bottom:673.466667pt;}
.y1e1{bottom:673.786667pt;}
.y122{bottom:676.026667pt;}
.y82{bottom:677.306667pt;}
.ya6{bottom:680.186667pt;}
.y54{bottom:683.386667pt;}
.y1b6{bottom:686.586667pt;}
.y14c{bottom:688.826667pt;}
.y1e0{bottom:689.146667pt;}
.y121{bottom:691.386667pt;}
.ybe{bottom:692.026667pt;}
.y81{bottom:692.666667pt;}
.y16a{bottom:692.986667pt;}
.ya5{bottom:695.546667pt;}
.y18{bottom:698.746667pt;}
.y1b5{bottom:703.866667pt;}
.y14b{bottom:704.186667pt;}
.y1df{bottom:704.506667pt;}
.y120{bottom:706.746667pt;}
.ybd{bottom:707.066667pt;}
.y80{bottom:708.026667pt;}
.y17{bottom:714.106667pt;}
.y14a{bottom:719.546667pt;}
.y1de{bottom:721.466667pt;}
.y11f{bottom:722.106667pt;}
.ybc{bottom:722.426667pt;}
.y7f{bottom:723.066667pt;}
.y169{bottom:724.026667pt;}
.y183{bottom:725.120000pt;}
.y16{bottom:729.466667pt;}
.yf7{bottom:732.986667pt;}
.y149{bottom:734.946667pt;}
.y11e{bottom:737.506667pt;}
.y1dd{bottom:737.826667pt;}
.y7e{bottom:738.466667pt;}
.y15{bottom:744.546667pt;}
.y53{bottom:744.866667pt;}
.yf6{bottom:748.386667pt;}
.y11d{bottom:752.866667pt;}
.y7d{bottom:753.826667pt;}
.y1dc{bottom:754.786667pt;}
.y1b4{bottom:756.706667pt;}
.y13{bottom:759.906667pt;}
.ya4{bottom:763.426667pt;}
.y14{bottom:765.346667pt;}
.ybb{bottom:766.306667pt;}
.y11c{bottom:767.906667pt;}
.yd9{bottom:768.000000pt;}
.y148{bottom:768.866667pt;}
.y7c{bottom:769.186667pt;}
.y1db{bottom:771.106667pt;}
.y1b3{bottom:772.066667pt;}
.y12{bottom:775.266667pt;}
.y52{bottom:778.786667pt;}
.y195{bottom:781.666667pt;}
.y7b{bottom:784.546667pt;}
.y1da{bottom:786.786667pt;}
.y11{bottom:790.626667pt;}
.y51{bottom:794.146667pt;}
.y194{bottom:797.026667pt;}
.y11b{bottom:799.266667pt;}
.y7a{bottom:799.906667pt;}
.y1d9{bottom:802.146667pt;}
.y147{bottom:802.786667pt;}
.y10{bottom:805.986667pt;}
.y50{bottom:809.506667pt;}
.y193{bottom:812.386667pt;}
.y11a{bottom:814.626667pt;}
.y79{bottom:815.266667pt;}
.y1d8{bottom:817.506667pt;}
.y146{bottom:818.146667pt;}
.yf{bottom:821.346667pt;}
.y1b2{bottom:821.666667pt;}
.y4f{bottom:824.866667pt;}
.y119{bottom:829.986667pt;}
.y78{bottom:830.626667pt;}
.y145{bottom:833.506667pt;}
.y1d7{bottom:834.146667pt;}
.y9{bottom:836.706667pt;}
.y4e{bottom:840.226667pt;}
.ya3{bottom:843.426667pt;}
.y118{bottom:845.346667pt;}
.y77{bottom:845.986667pt;}
.y144{bottom:848.893333pt;}
.y1d6{bottom:850.813333pt;}
.y8{bottom:852.093333pt;}
.y4d{bottom:855.613333pt;}
.ya2{bottom:858.813333pt;}
.y117{bottom:860.733333pt;}
.y76{bottom:861.373333pt;}
.y7{bottom:864.573333pt;}
.y1d5{bottom:867.453333pt;}
.y1b1{bottom:867.773333pt;}
.y4c{bottom:870.973333pt;}
.ya1{bottom:874.173333pt;}
.y116{bottom:876.093333pt;}
.y75{bottom:877.053333pt;}
.y143{bottom:882.813333pt;}
.y1d4{bottom:884.093333pt;}
.yf5{bottom:886.333333pt;}
.ya0{bottom:889.533333pt;}
.y115{bottom:891.453333pt;}
.y74{bottom:892.413333pt;}
.y1d3{bottom:900.733333pt;}
.yf4{bottom:901.693333pt;}
.y1b0{bottom:902.013333pt;}
.y4b{bottom:904.893333pt;}
.y73{bottom:908.093333pt;}
.y6{bottom:913.213333pt;}
.y142{bottom:916.733333pt;}
.yf3{bottom:917.053333pt;}
.y1d2{bottom:917.373333pt;}
.y4a{bottom:920.253333pt;}
.y114{bottom:922.813333pt;}
.y72{bottom:923.453333pt;}
.yf2{bottom:932.093333pt;}
.y1d1{bottom:934.013333pt;}
.y5{bottom:935.293333pt;}
.y49{bottom:935.613333pt;}
.y1af{bottom:935.933333pt;}
.y71{bottom:938.813333pt;}
.y141{bottom:947.453333pt;}
.y113{bottom:950.013333pt;}
.y1d0{bottom:950.653333pt;}
.y48{bottom:950.973333pt;}
.y1ae{bottom:951.293333pt;}
.y4{bottom:953.533333pt;}
.y70{bottom:954.173333pt;}
.yf1{bottom:966.373333pt;}
.y1cf{bottom:967.333333pt;}
.y1ad{bottom:967.653333pt;}
.y6f{bottom:969.573333pt;}
.y3{bottom:972.453333pt;}
.yf0{bottom:981.733333pt;}
.y1ac{bottom:983.013333pt;}
.y1ce{bottom:983.973333pt;}
.y47{bottom:984.933333pt;}
.y2{bottom:990.693333pt;}
.y112{bottom:999.013333pt;}
.y1ab{bottom:999.333333pt;}
.y46{bottom:1000.293333pt;}
.y1{bottom:1005.733333pt;}
.y1aa{bottom:1014.693333pt;}
.yba{bottom:1015.333333pt;}
.y45{bottom:1015.653333pt;}
.y44{bottom:1036.773333pt;}
.y43{bottom:1049.253333pt;}
.y42{bottom:1067.813333pt;}
.y41{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h19{height:19.520000pt;}
.h1b{height:19.840000pt;}
.h1d{height:19.872000pt;}
.h1e{height:20.160000pt;}
.h1f{height:20.192000pt;}
.hb{height:30.324375pt;}
.h9{height:30.695625pt;}
.hc{height:34.374375pt;}
.h1c{height:39.360000pt;}
.h5{height:40.090000pt;}
.h1a{height:40.640000pt;}
.h16{height:42.013125pt;}
.h17{height:42.140438pt;}
.h7{height:42.678750pt;}
.h14{height:46.500000pt;}
.h4{height:47.171250pt;}
.h28{height:47.685000pt;}
.h2{height:47.748750pt;}
.hf{height:48.378750pt;}
.h10{height:48.506062pt;}
.hd{height:53.471250pt;}
.h13{height:55.046250pt;}
.h3{height:56.843750pt;}
.h18{height:57.667500pt;}
.h23{height:57.798563pt;}
.h21{height:58.563750pt;}
.h22{height:58.691063pt;}
.h27{height:60.288750pt;}
.h11{height:60.937500pt;}
.h26{height:66.052437pt;}
.h25{height:79.205417pt;}
.h12{height:158.400000pt;}
.h24{height:219.840000pt;}
.he{height:242.560000pt;}
.h15{height:245.760000pt;}
.h20{height:269.120000pt;}
.ha{height:275.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w17{width:23.360000pt;}
.w1d{width:26.240000pt;}
.w19{width:26.560000pt;}
.w1f{width:30.400000pt;}
.w15{width:30.432000pt;}
.w1c{width:31.072000pt;}
.w16{width:32.320000pt;}
.w18{width:32.352000pt;}
.w1b{width:32.640000pt;}
.w1a{width:36.512000pt;}
.w1e{width:42.272000pt;}
.w10{width:55.680000pt;}
.we{width:55.712000pt;}
.wd{width:62.752000pt;}
.wf{width:63.072000pt;}
.w11{width:63.392000pt;}
.w12{width:68.512000pt;}
.w14{width:78.752000pt;}
.w13{width:79.072000pt;}
.wc{width:79.712000pt;}
.w8{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w7{width:303.493333pt;}
.wa{width:332.480000pt;}
.w21{width:393.920000pt;}
.w20{width:499.200000pt;}
.wb{width:502.400000pt;}
.w9{width:541.760000pt;}
.w6{width:604.413333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599976pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3c{left:4.480000pt;}
.x46{left:5.440000pt;}
.x4d{left:6.720000pt;}
.x9{left:7.680000pt;}
.x28{left:8.768000pt;}
.x44{left:10.240000pt;}
.x3e{left:12.160000pt;}
.x56{left:13.120000pt;}
.x27{left:14.848000pt;}
.x48{left:16.320000pt;}
.x57{left:19.200000pt;}
.x26{left:20.928000pt;}
.x58{left:24.666667pt;}
.x59{left:25.920000pt;}
.x6e{left:27.520000pt;}
.x5a{left:31.386667pt;}
.x38{left:46.213333pt;}
.x21{left:49.306667pt;}
.x2d{left:54.053333pt;}
.x31{left:62.426667pt;}
.x24{left:71.933333pt;}
.x39{left:78.466667pt;}
.x2b{left:86.013333pt;}
.x60{left:86.973333pt;}
.x2c{left:91.173333pt;}
.x34{left:93.053333pt;}
.x7{left:94.431988pt;}
.x4a{left:95.392000pt;}
.x29{left:97.053333pt;}
.x17{left:98.911988pt;}
.x61{left:102.533333pt;}
.x1d{left:104.031988pt;}
.x6f{left:111.173333pt;}
.xb{left:118.463988pt;}
.x1e{left:128.063988pt;}
.x1a{left:132.223988pt;}
.x22{left:134.080000pt;}
.x1b{left:142.466655pt;}
.x1f{left:152.066655pt;}
.x25{left:153.506667pt;}
.x6d{left:156.226655pt;}
.x18{left:160.706655pt;}
.x70{left:164.506667pt;}
.x2f{left:166.466655pt;}
.x5c{left:171.266655pt;}
.x23{left:174.853333pt;}
.x3d{left:175.746667pt;}
.x5b{left:177.026655pt;}
.x32{left:180.773333pt;}
.x62{left:185.346667pt;}
.x5d{left:188.866655pt;}
.x30{left:190.466655pt;}
.x4b{left:206.173333pt;}
.x71{left:207.773322pt;}
.x3a{left:210.013333pt;}
.x35{left:211.386667pt;}
.x3b{left:219.040000pt;}
.x6c{left:220.573333pt;}
.x2{left:226.013322pt;}
.x72{left:226.973322pt;}
.x5f{left:228.800000pt;}
.x2a{left:234.880000pt;}
.x66{left:237.786667pt;}
.x3f{left:239.773333pt;}
.x65{left:240.733333pt;}
.x6{left:243.613322pt;}
.x2e{left:252.293333pt;}
.x6b{left:254.306667pt;}
.x64{left:259.973333pt;}
.x63{left:261.093333pt;}
.x4c{left:263.133333pt;}
.x6a{left:267.906667pt;}
.xa{left:270.533333pt;}
.x69{left:281.466667pt;}
.x16{left:286.533322pt;}
.xd{left:288.773322pt;}
.xc{left:292.613322pt;}
.x10{left:293.573322pt;}
.x40{left:296.773333pt;}
.x33{left:299.106667pt;}
.x11{left:302.208000pt;}
.x5{left:316.293322pt;}
.x4e{left:323.333333pt;}
.x36{left:329.760000pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x68{left:358.400000pt;}
.x4f{left:360.480000pt;}
.x41{left:361.440000pt;}
.x67{left:362.906667pt;}
.x50{left:384.480000pt;}
.x8{left:396.959988pt;}
.x19{left:397.920000pt;}
.x12{left:412.639976pt;}
.x13{left:417.119988pt;}
.x42{left:418.400000pt;}
.x20{left:440.506655pt;}
.x37{left:448.093333pt;}
.x51{left:449.466667pt;}
.x43{left:483.066667pt;}
.xe{left:500.346643pt;}
.xf{left:504.826655pt;}
.x52{left:513.506667pt;}
.x14{left:524.066643pt;}
.x15{left:528.546655pt;}
.x45{left:547.106667pt;}
.x53{left:573.346667pt;}
.x47{left:616.893333pt;}
.x5e{left:632.253322pt;}
.x1c{left:636.413322pt;}
.x54{left:647.293333pt;}
.x49{left:680.933333pt;}
.x1{left:699.493322pt;}
.x55{left:704.293333pt;}
}




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