
    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_ab3d93a8cf06428a9278c2f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fb8e28c1ea9875217c67345e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_b2d0abe4c8da27bcd12280a0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.138184;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_734a54e22750afc220f4f53b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_0f32928b8be020d5444a8355.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_da2ea8f8b352443e7feda305.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;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_3ae95183629276c2107cff01.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.855469;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_401848d393f10ee9ad889651.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.758789;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_a1d446c81e6952a72d27f625.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_d29f9816b0fa24179ade26db.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8389215d5acc18c50854e446.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.941406;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_a5486be83d02dec9398877c8.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.088379;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);}
.m3{transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249442,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250246,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:12.240000px;}
.ls11{letter-spacing:-0.612000px;}
.ls12{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.396000px;}
.ls25{letter-spacing:-0.324000px;}
.ls27{letter-spacing:-0.270000px;}
.ls22{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.240600px;}
.lsd{letter-spacing:-0.226200px;}
.ls7{letter-spacing:-0.172800px;}
.ls21{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.103800px;}
.ls17{letter-spacing:-0.090000px;}
.lse{letter-spacing:-0.085200px;}
.ls16{letter-spacing:-0.054000px;}
.lsa{letter-spacing:-0.046080px;}
.ls0{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.012960px;}
.lsf{letter-spacing:0.014400px;}
.ls26{letter-spacing:0.018000px;}
.ls2b{letter-spacing:0.054000px;}
.ls8{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.126000px;}
.ls2{letter-spacing:0.130800px;}
.ls10{letter-spacing:0.147000px;}
.lsb{letter-spacing:0.172800px;}
.ls1d{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.239040px;}
.ls29{letter-spacing:0.252000px;}
.ls4{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.308160px;}
.ls23{letter-spacing:0.317400px;}
.ls6{letter-spacing:0.320400px;}
.ls13{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.450000px;}
.ls1c{letter-spacing:0.721026px;}
.ls1e{letter-spacing:0.872838px;}
.ls1a{letter-spacing:0.887698px;}
.ls1f{letter-spacing:1.319593px;}
.ls20{letter-spacing:1.350306px;}
.ls18{letter-spacing:1.584624px;}
.ls1b{letter-spacing:1.625066px;}
.ls19{letter-spacing:74.991458px;}
.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;}
}
.ws1a{word-spacing:-83.981776px;}
.wse{word-spacing:-66.240000px;}
.ws5{word-spacing:-22.492800px;}
.ws4{word-spacing:-22.446720px;}
.ws6{word-spacing:-18.532800px;}
.wsf{word-spacing:-14.719800px;}
.wsd{word-spacing:-14.587200px;}
.ws7{word-spacing:-14.572800px;}
.ws13{word-spacing:-14.469000px;}
.ws12{word-spacing:-14.158200px;}
.ws26{word-spacing:-13.464600px;}
.ws27{word-spacing:-13.160160px;}
.wsa{word-spacing:-12.316200px;}
.ws23{word-spacing:-12.204000px;}
.ws29{word-spacing:-12.132000px;}
.ws16{word-spacing:-12.078000px;}
.ws28{word-spacing:-12.006000px;}
.ws11{word-spacing:-11.911680px;}
.ws25{word-spacing:-11.898000px;}
.ws10{word-spacing:-11.880000px;}
.ws14{word-spacing:-11.826000px;}
.ws15{word-spacing:-11.790000px;}
.ws21{word-spacing:-11.718000px;}
.ws24{word-spacing:-11.556000px;}
.ws3{word-spacing:-11.484000px;}
.ws9{word-spacing:-11.246400px;}
.ws8{word-spacing:-11.005800px;}
.wsc{word-spacing:-10.612800px;}
.ws18{word-spacing:-10.574943px;}
.wsb{word-spacing:-10.527600px;}
.ws17{word-spacing:-8.990318px;}
.ws1e{word-spacing:-8.963071px;}
.ws1b{word-spacing:-8.759204px;}
.ws2{word-spacing:-7.992000px;}
.ws1{word-spacing:-7.920000px;}
.ws22{word-spacing:-7.668000px;}
.ws0{word-spacing:0.000000px;}
.ws1d{word-spacing:63.366755px;}
.ws1c{word-spacing:63.806619px;}
.ws20{word-spacing:64.841593px;}
.ws1f{word-spacing:65.291695px;}
.ws19{word-spacing:65.991984px;}
._1f{margin-left:-9.796173px;}
._20{margin-left:-6.023007px;}
._21{margin-left:-4.936117px;}
._16{margin-left:-3.753600px;}
._10{margin-left:-2.568960px;}
._0{margin-left:-1.562400px;}
._3{width:1.274400px;}
._6{width:2.948400px;}
._2{width:4.072800px;}
._1{width:5.184000px;}
._d{width:6.218400px;}
._c{width:7.452000px;}
._7{width:9.018000px;}
._8{width:10.314000px;}
._13{width:12.198240px;}
._f{width:13.230000px;}
._1b{width:14.310000px;}
._14{width:15.632640px;}
._17{width:17.085600px;}
._e{width:18.792000px;}
._9{width:20.408400px;}
._4{width:22.410000px;}
._5{width:23.781600px;}
._a{width:25.560000px;}
._b{width:26.784000px;}
._15{width:27.927360px;}
._1a{width:29.410560px;}
._26{width:30.669120px;}
._1d{width:36.460080px;}
._18{width:37.729200px;}
._22{width:62.290591px;}
._24{width:63.740381px;}
._1e{width:65.273105px;}
._23{width:73.665484px;}
._25{width:75.380021px;}
._11{width:125.673960px;}
._12{width:203.457600px;}
._19{width:205.567200px;}
._1c{width:283.680000px;}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(38,90,63);}
.fc5{color:rgb(33,33,33);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:31.507927px;}
.fs16{font-size:32.241263px;}
.fs10{font-size:32.339274px;}
.fs7{font-size:36.000000px;}
.fs14{font-size:37.354605px;}
.fs17{font-size:38.224020px;}
.fs11{font-size:38.874787px;}
.fse{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs15{font-size:43.634549px;}
.fs18{font-size:44.650128px;}
.fs12{font-size:45.410299px;}
.fsc{font-size:48.240000px;}
.fsd{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fsf{font-size:54.144000px;}
.fs19{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs9{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:102.240000px;}
.fs6{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y135{bottom:2.508324px;}
.y154{bottom:2.645253px;}
.y14d{bottom:2.645277px;}
.y167{bottom:2.706801px;}
.y19e{bottom:3.420000px;}
.y1a3{bottom:3.630000px;}
.y1b0{bottom:4.845000px;}
.y62{bottom:4.860000px;}
.y1ae{bottom:4.890000px;}
.y1c6{bottom:5.205000px;}
.y1bf{bottom:5.220000px;}
.y1bb{bottom:5.400000px;}
.y1e0{bottom:5.565000px;}
.y1db{bottom:5.580000px;}
.y1e2{bottom:5.745000px;}
.y1dd{bottom:5.760000px;}
.y1ca{bottom:6.120000px;}
.y1cf{bottom:6.300000px;}
.y1d9{bottom:7.200000px;}
.y19a{bottom:7.920000px;}
.y1b9{bottom:8.280000px;}
.y1a6{bottom:8.460000px;}
.yf7{bottom:9.360000px;}
.yc7{bottom:9.510000px;}
.y197{bottom:9.900000px;}
.yfc{bottom:10.620000px;}
.y19f{bottom:11.340000px;}
.y101{bottom:11.520000px;}
.y1a1{bottom:11.550000px;}
.y14f{bottom:13.396092px;}
.y148{bottom:13.396116px;}
.y108{bottom:13.500000px;}
.y19b{bottom:15.840000px;}
.y1a7{bottom:16.380000px;}
.yef{bottom:16.845000px;}
.y10e{bottom:16.920000px;}
.yf5{bottom:17.280000px;}
.y19d{bottom:19.260000px;}
.y104{bottom:19.440000px;}
.y1a2{bottom:19.470000px;}
.y106{bottom:21.420000px;}
.yc6{bottom:22.035000px;}
.y10a{bottom:22.320000px;}
.y199{bottom:23.760000px;}
.y1a5{bottom:24.300000px;}
.y110{bottom:24.840000px;}
.yf6{bottom:25.200000px;}
.y162{bottom:25.261980px;}
.y4f{bottom:26.100000px;}
.yfb{bottom:26.460000px;}
.y103{bottom:27.360000px;}
.y100{bottom:27.405000px;}
.y107{bottom:29.340000px;}
.y12f{bottom:31.772332px;}
.y10d{bottom:32.760000px;}
.yfd{bottom:34.380000px;}
.y10f{bottom:40.680000px;}
.y4e{bottom:41.760000px;}
.yfa{bottom:42.300000px;}
.yff{bottom:43.245000px;}
.y150{bottom:43.514708px;}
.y149{bottom:43.514732px;}
.y3c{bottom:45.360000px;}
.y10c{bottom:48.600000px;}
.yee{bottom:52.230000px;}
.y130{bottom:52.350018px;}
.y163{bottom:53.620662px;}
.yf9{bottom:58.140000px;}
.y3b{bottom:61.920000px;}
.y4d{bottom:62.100000px;}
.ybd{bottom:65.085000px;}
.y5{bottom:66.525004px;}
.y131{bottom:72.926560px;}
.y151{bottom:73.741091px;}
.y14a{bottom:73.741114px;}
.y4c{bottom:77.760000px;}
.y3a{bottom:78.480000px;}
.y164{bottom:81.980470px;}
.y24{bottom:86.976000px;}
.y64{bottom:92.016000px;}
.y4b{bottom:93.420000px;}
.y132{bottom:93.504246px;}
.y39{bottom:95.220000px;}
.y4{bottom:97.125005px;}
.y23{bottom:97.596000px;}
.ybe{bottom:100.590000px;}
.y152{bottom:103.967473px;}
.y14b{bottom:103.967497px;}
.y165{bottom:110.450552px;}
.y38{bottom:111.810000px;}
.y4a{bottom:113.610000px;}
.y133{bottom:114.053322px;}
.ye6{bottom:125.310000px;}
.y37{bottom:128.370000px;}
.y49{bottom:129.270000px;}
.y153{bottom:134.169663px;}
.y14c{bottom:134.169687px;}
.y134{bottom:134.628720px;}
.ybf{bottom:136.080000px;}
.y166{bottom:138.777727px;}
.y21{bottom:139.264499px;}
.y36{bottom:144.930000px;}
.y48{bottom:149.610000px;}
.y95{bottom:152.670000px;}
.ybb{bottom:153.030000px;}
.y16b{bottom:153.570000px;}
.ye4{bottom:155.730000px;}
.y60{bottom:156.810000px;}
.y35{bottom:161.670000px;}
.ye7{bottom:162.570000px;}
.y155{bottom:165.334049px;}
.y14e{bottom:165.334074px;}
.y124{bottom:165.450000px;}
.y21c{bottom:166.530000px;}
.ye3{bottom:169.050000px;}
.y168{bottom:169.182124px;}
.y94{bottom:169.230000px;}
.yba{bottom:169.590000px;}
.y47{bottom:169.770000px;}
.y16a{bottom:170.310000px;}
.y15a{bottom:170.370000px;}
.y136{bottom:170.666278px;}
.y1e8{bottom:170.850000px;}
.yc0{bottom:171.615000px;}
.ycf{bottom:171.930000px;}
.yb1{bottom:172.290000px;}
.y5f{bottom:177.150000px;}
.y34{bottom:178.230000px;}
.y1b7{bottom:179.130000px;}
.y21b{bottom:183.090000px;}
.y46{bottom:185.430000px;}
.y93{bottom:185.790000px;}
.y1e7{bottom:187.425000px;}
.y92{bottom:188.850000px;}
.yce{bottom:192.270000px;}
.y146{bottom:194.398094px;}
.y13f{bottom:194.398118px;}
.y33{bottom:194.790000px;}
.y1b6{bottom:195.870000px;}
.y18{bottom:196.933500px;}
.y5e{bottom:197.490000px;}
.ye2{bottom:198.390000px;}
.y160{bottom:198.922619px;}
.y21a{bottom:199.830000px;}
.ye8{bottom:199.875000px;}
.y12d{bottom:200.604117px;}
.y45{bottom:201.090000px;}
.yb9{bottom:201.450000px;}
.ybc{bottom:201.600000px;}
.y193{bottom:202.350000px;}
.y91{bottom:202.530000px;}
.y141{bottom:205.185772px;}
.y13a{bottom:205.185796px;}
.y123{bottom:206.130000px;}
.yc1{bottom:207.105000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1e6{bottom:209.565000px;}
.y32{bottom:211.530000px;}
.y1b5{bottom:212.430000px;}
.ycd{bottom:212.610000px;}
.y219{bottom:216.390000px;}
.y44{bottom:216.750000px;}
.y5d{bottom:217.650000px;}
.ye0{bottom:218.550000px;}
.y90{bottom:219.090000px;}
.y15b{bottom:221.506492px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.ye1{bottom:222.330000px;}
.y122{bottom:226.470000px;}
.y31{bottom:228.090000px;}
.y1b4{bottom:228.990000px;}
.y127{bottom:229.866751px;}
.y1e5{bottom:231.705000px;}
.ycc{bottom:232.950000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y142{bottom:235.272497px;}
.y13b{bottom:235.272521px;}
.y138{bottom:235.470000px;}
.y126{bottom:235.545000px;}
.y8f{bottom:235.650000px;}
.y192{bottom:236.190000px;}
.yf2{bottom:236.730000px;}
.y43{bottom:237.090000px;}
.ye9{bottom:237.165000px;}
.y5c{bottom:237.990000px;}
.ydf{bottom:238.890000px;}
.yc2{bottom:242.610000px;}
.y30{bottom:244.650000px;}
.y121{bottom:246.630000px;}
.y218{bottom:249.690000px;}
.y15c{bottom:249.840419px;}
.y128{bottom:250.454737px;}
.y1b3{bottom:251.685000px;}
.y8e{bottom:252.390000px;}
.y42{bottom:252.750000px;}
.ycb{bottom:253.290000px;}
.y1e4{bottom:254.025000px;}
.y8d{bottom:255.450000px;}
.y191{bottom:256.530000px;}
.y5b{bottom:258.330000px;}
.yde{bottom:259.230000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y2f{bottom:261.390000px;}
.y143{bottom:265.502179px;}
.y13c{bottom:265.502203px;}
.y217{bottom:266.250000px;}
.y120{bottom:266.970000px;}
.y41{bottom:268.410000px;}
.y8c{bottom:268.770000px;}
.y1b2{bottom:270.945000px;}
.y129{bottom:271.031279px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yca{bottom:273.450000px;}
.yea{bottom:274.470000px;}
.y1e3{bottom:276.165000px;}
.y190{bottom:276.870000px;}
.y2e{bottom:277.950000px;}
.yc3{bottom:278.130000px;}
.y15d{bottom:278.196850px;}
.y5a{bottom:278.670000px;}
.ydd{bottom:279.570000px;}
.y216{bottom:282.810000px;}
.y40{bottom:284.070000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y11f{bottom:287.310000px;}
.y1b1{bottom:290.205000px;}
.y12a{bottom:291.607821px;}
.y3d{bottom:292.890000px;}
.yc9{bottom:293.790000px;}
.y2d{bottom:294.510000px;}
.y144{bottom:295.720863px;}
.y13d{bottom:295.720887px;}
.y18f{bottom:297.030000px;}
.y1e1{bottom:298.305000px;}
.y59{bottom:299.010000px;}
.y215{bottom:299.550000px;}
.y3f{bottom:299.730000px;}
.ydc{bottom:299.910000px;}
.y15e{bottom:306.665808px;}
.y11e{bottom:307.650000px;}
.y1af{bottom:309.465000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2c{bottom:310.710000px;}
.yeb{bottom:311.760000px;}
.y12b{bottom:312.184363px;}
.yc4{bottom:313.635000px;}
.y8b{bottom:314.130000px;}
.y3e{bottom:315.210000px;}
.y214{bottom:316.110000px;}
.y58{bottom:319.350000px;}
.ydb{bottom:320.250000px;}
.y1df{bottom:320.625000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y145{bottom:325.928551px;}
.y13e{bottom:325.928575px;}
.y11d{bottom:327.990000px;}
.y1ad{bottom:328.725000px;}
.y213{bottom:332.715000px;}
.y12c{bottom:332.726572px;}
.yb0{bottom:333.615000px;}
.y8a{bottom:334.515000px;}
.y15f{bottom:335.033492px;}
.y57{bottom:339.555000px;}
.yda{bottom:340.455000px;}
.y1de{bottom:342.795000px;}
.yf{bottom:348.133500px;}
.y11c{bottom:348.375000px;}
.y1ac{bottom:348.735000px;}
.yec{bottom:349.050000px;}
.yc5{bottom:349.125000px;}
.y212{bottom:349.455000px;}
.y88{bottom:354.855000px;}
.y147{bottom:357.092941px;}
.y140{bottom:357.092962px;}
.y89{bottom:358.635000px;}
.y56{bottom:359.895000px;}
.yd9{bottom:360.795000px;}
.y1dc{bottom:364.935000px;}
.y161{bottom:365.404131px;}
.y211{bottom:366.015000px;}
.y11b{bottom:368.715000px;}
.y12e{bottom:368.764131px;}
.yaf{bottom:371.775000px;}
.y87{bottom:375.195000px;}
.y156{bottom:377.271738px;}
.y55{bottom:380.235000px;}
.yd8{bottom:381.135000px;}
.y210{bottom:382.575000px;}
.y169{bottom:386.052564px;}
.yed{bottom:386.310000px;}
.ye{bottom:386.785499px;}
.y1da{bottom:387.255000px;}
.y11a{bottom:388.875000px;}
.y137{bottom:389.764105px;}
.y18e{bottom:390.855000px;}
.yae{bottom:392.115000px;}
.y86{bottom:395.355000px;}
.y20f{bottom:399.135000px;}
.y54{bottom:400.575000px;}
.yd7{bottom:401.475000px;}
.yd{bottom:408.044999px;}
.y119{bottom:409.215000px;}
.y1d8{bottom:410.115000px;}
.y18d{bottom:411.195000px;}
.yad{bottom:412.455000px;}
.y1ab{bottom:414.075000px;}
.y85{bottom:415.695000px;}
.y20e{bottom:415.875000px;}
.y53{bottom:420.915000px;}
.yd6{bottom:421.815000px;}
.y118{bottom:429.555000px;}
.y18c{bottom:431.355000px;}
.y20d{bottom:432.435000px;}
.yac{bottom:432.795000px;}
.y84{bottom:436.035000px;}
.y52{bottom:441.255000px;}
.yd5{bottom:442.155000px;}
.y20c{bottom:448.995000px;}
.y117{bottom:449.895000px;}
.y18b{bottom:451.695000px;}
.yab{bottom:453.135000px;}
.y83{bottom:456.375000px;}
.y1d7{bottom:458.895000px;}
.y51{bottom:461.415000px;}
.yd4{bottom:462.315000px;}
.y20b{bottom:465.735000px;}
.y116{bottom:470.235000px;}
.y18a{bottom:472.035000px;}
.y1aa{bottom:472.755000px;}
.yaa{bottom:473.475000px;}
.y82{bottom:476.715000px;}
.y50{bottom:481.755000px;}
.y20a{bottom:482.295000px;}
.yd3{bottom:482.655000px;}
.y1a9{bottom:489.315000px;}
.y115{bottom:490.575000px;}
.y189{bottom:492.375000px;}
.ya9{bottom:493.635000px;}
.y81{bottom:497.055000px;}
.y2b{bottom:497.415000px;}
.y209{bottom:498.855000px;}
.yc{bottom:502.864502px;}
.yd2{bottom:502.995000px;}
.y1d6{bottom:506.235000px;}
.y1a8{bottom:508.755000px;}
.y114{bottom:510.735000px;}
.y188{bottom:512.715000px;}
.ya8{bottom:513.975000px;}
.y208{bottom:515.595000px;}
.y80{bottom:517.215000px;}
.yd1{bottom:519.735000px;}
.ye5{bottom:519.840000px;}
.yb{bottom:520.864502px;}
.y1d5{bottom:522.615000px;}
.y113{bottom:531.075000px;}
.y207{bottom:532.155000px;}
.y187{bottom:533.055000px;}
.ya7{bottom:534.315000px;}
.y7f{bottom:537.555000px;}
.ya{bottom:538.864499px;}
.y1d4{bottom:544.215000px;}
.y206{bottom:548.715000px;}
.y1a4{bottom:550.875000px;}
.y112{bottom:551.415000px;}
.y186{bottom:553.215000px;}
.y9{bottom:556.864499px;}
.y7e{bottom:557.895000px;}
.y205{bottom:565.455000px;}
.y1d3{bottom:565.995000px;}
.yf1{bottom:570.315000px;}
.ya6{bottom:572.655000px;}
.y185{bottom:573.555000px;}
.y7d{bottom:578.235000px;}
.y111{bottom:579.855000px;}
.y204{bottom:582.015000px;}
.y1d2{bottom:587.595000px;}
.yc8{bottom:590.655000px;}
.y1a0{bottom:592.995000px;}
.y184{bottom:593.895000px;}
.y7c{bottom:598.605000px;}
.yb8{bottom:603.105000px;}
.y159{bottom:606.885000px;}
.y1d1{bottom:609.405000px;}
.ya5{bottom:611.025000px;}
.y10b{bottom:611.565000px;}
.y183{bottom:614.265000px;}
.y203{bottom:615.345000px;}
.y7b{bottom:618.945000px;}
.y19c{bottom:625.425000px;}
.y1d0{bottom:631.005000px;}
.ya4{bottom:631.365000px;}
.y202{bottom:631.905000px;}
.y182{bottom:634.605000px;}
.y7a{bottom:639.105000px;}
.y8{bottom:645.510000px;}
.y201{bottom:648.465000px;}
.ya3{bottom:651.525000px;}
.y1ce{bottom:652.605000px;}
.y158{bottom:654.225000px;}
.y181{bottom:654.945000px;}
.y198{bottom:657.465000px;}
.y79{bottom:659.445000px;}
.y200{bottom:665.205000px;}
.y7{bottom:666.771000px;}
.y139{bottom:670.919954px;}
.y157{bottom:670.965000px;}
.ya2{bottom:671.865000px;}
.y1cd{bottom:674.385000px;}
.y180{bottom:675.105000px;}
.y125{bottom:676.545000px;}
.y78{bottom:679.785000px;}
.y1ff{bottom:681.765000px;}
.y109{bottom:686.445000px;}
.ya1{bottom:692.205000px;}
.y17f{bottom:695.445000px;}
.y1cc{bottom:695.985000px;}
.y1fe{bottom:698.325000px;}
.y196{bottom:699.405000px;}
.y77{bottom:700.125000px;}
.ya0{bottom:712.545000px;}
.y1fd{bottom:715.065000px;}
.y17e{bottom:715.785000px;}
.y1cb{bottom:717.765000px;}
.y76{bottom:720.465000px;}
.y6{bottom:726.298500px;}
.y1fc{bottom:731.625000px;}
.y9f{bottom:732.885000px;}
.y17d{bottom:736.125000px;}
.y1c9{bottom:740.085000px;}
.y105{bottom:740.445000px;}
.y75{bottom:740.805000px;}
.y1fb{bottom:748.185000px;}
.y195{bottom:752.145000px;}
.y3{bottom:752.599495px;}
.y9e{bottom:753.225000px;}
.y17c{bottom:756.465000px;}
.y73{bottom:761.145000px;}
.y74{bottom:764.925000px;}
.y9d{bottom:773.385000px;}
.y17b{bottom:776.805000px;}
.y72{bottom:781.305000px;}
.y1fa{bottom:781.485000px;}
.y1c8{bottom:785.265000px;}
.y102{bottom:792.645000px;}
.y9c{bottom:793.725000px;}
.y17a{bottom:797.145000px;}
.y1f9{bottom:798.045000px;}
.y194{bottom:798.405000px;}
.y71{bottom:801.645000px;}
.y9b{bottom:814.065000px;}
.y1f8{bottom:814.785000px;}
.y179{bottom:817.305000px;}
.yb7{bottom:821.985000px;}
.y2a{bottom:828.645000px;}
.y1f7{bottom:831.345000px;}
.y1c7{bottom:832.425000px;}
.y9a{bottom:834.405000px;}
.y178{bottom:837.645000px;}
.y70{bottom:839.085000px;}
.yfe{bottom:840.885000px;}
.yb6{bottom:842.325000px;}
.y1f6{bottom:847.905000px;}
.y1c5{bottom:849.000000px;}
.y99{bottom:854.745000px;}
.y177{bottom:857.985000px;}
.yb5{bottom:862.665000px;}
.y1f5{bottom:864.690000px;}
.y29{bottom:868.470000px;}
.y1c4{bottom:868.830000px;}
.y97{bottom:875.130000px;}
.y176{bottom:878.370000px;}
.y98{bottom:878.910000px;}
.y2{bottom:879.369000px;}
.y1f4{bottom:881.250000px;}
.yb4{bottom:883.050000px;}
.y1c3{bottom:888.810000px;}
.y6f{bottom:895.470000px;}
.y1f3{bottom:897.810000px;}
.y175{bottom:898.710000px;}
.yb3{bottom:903.210000px;}
.yf8{bottom:905.010000px;}
.y1c2{bottom:908.790000px;}
.y1f2{bottom:914.550000px;}
.y6e{bottom:915.630000px;}
.y174{bottom:919.050000px;}
.y28{bottom:922.470000px;}
.y1c1{bottom:928.770000px;}
.y1f1{bottom:931.110000px;}
.y227{bottom:935.250000px;}
.y6d{bottom:935.970000px;}
.y173{bottom:939.210000px;}
.yb2{bottom:940.650000px;}
.y1f0{bottom:947.670000px;}
.y1c0{bottom:948.750000px;}
.yd0{bottom:949.650000px;}
.y226{bottom:951.810000px;}
.y27{bottom:953.970000px;}
.y6c{bottom:956.310000px;}
.y172{bottom:959.550000px;}
.y1ef{bottom:964.410000px;}
.y1{bottom:966.726000px;}
.y225{bottom:968.370000px;}
.y1be{bottom:968.730000px;}
.y6b{bottom:976.650000px;}
.y171{bottom:979.890000px;}
.y96{bottom:980.430000px;}
.y1ee{bottom:980.970000px;}
.yf4{bottom:983.850000px;}
.y224{bottom:985.110000px;}
.y1bd{bottom:988.530000px;}
.y6a{bottom:996.990000px;}
.yf0{bottom:997.350000px;}
.y1ed{bottom:997.530000px;}
.y170{bottom:1000.230000px;}
.y223{bottom:1001.670000px;}
.y1bc{bottom:1008.510000px;}
.y61{bottom:1010.130000px;}
.y26{bottom:1011.930000px;}
.y1ec{bottom:1014.090000px;}
.y69{bottom:1017.330000px;}
.y222{bottom:1018.230000px;}
.y16f{bottom:1020.570000px;}
.y1ba{bottom:1028.490000px;}
.y1eb{bottom:1030.830000px;}
.y221{bottom:1034.970000px;}
.y68{bottom:1037.490000px;}
.y25{bottom:1037.850000px;}
.y16d{bottom:1040.910000px;}
.y16e{bottom:1044.690000px;}
.y1ea{bottom:1047.390000px;}
.y1b8{bottom:1049.190000px;}
.yf3{bottom:1051.170000px;}
.y220{bottom:1051.530000px;}
.y67{bottom:1057.830000px;}
.y16c{bottom:1061.070000px;}
.y1e9{bottom:1063.950000px;}
.y21f{bottom:1068.090000px;}
.y66{bottom:1078.170000px;}
.y21e{bottom:1084.830000px;}
.y65{bottom:1098.510000px;}
.y21d{bottom:1101.390000px;}
.y22{bottom:1131.840000px;}
.y63{bottom:1164.060000px;}
.h19{height:17.625000px;}
.h3e{height:19.245000px;}
.h3d{height:19.281000px;}
.h41{height:19.785000px;}
.h42{height:19.821000px;}
.h40{height:19.965000px;}
.h46{height:21.585000px;}
.h44{height:21.600000px;}
.h47{height:21.765000px;}
.h43{height:21.780000px;}
.h45{height:21.810000px;}
.h4a{height:22.125000px;}
.h4d{height:22.161000px;}
.h4c{height:22.305000px;}
.h48{height:25.365000px;}
.h3f{height:25.905000px;}
.h36{height:29.340000px;}
.hc{height:31.324219px;}
.h38{height:32.040000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h39{height:32.430000px;}
.h2f{height:32.861784px;}
.h33{height:33.626630px;}
.h2b{height:33.728852px;}
.h3b{height:34.746328px;}
.h1c{height:36.336094px;}
.h30{height:38.959686px;}
.h34{height:39.866458px;}
.h2c{height:40.545188px;}
.h13{height:40.843828px;}
.h37{height:41.220000px;}
.h3c{height:41.925000px;}
.h16{height:41.974453px;}
.h3a{height:42.105000px;}
.h18{height:43.282266px;}
.h22{height:43.905000px;}
.h17{height:44.480391px;}
.h1a{height:45.060117px;}
.h31{height:45.509471px;}
.h23{height:45.720703px;}
.h7{height:45.960000px;}
.h35{height:46.568688px;}
.h14{height:46.986328px;}
.h1f{height:47.111625px;}
.h2d{height:47.361523px;}
.h3{height:48.195000px;}
.h26{height:48.240000px;}
.h6{height:48.258000px;}
.h49{height:50.597578px;}
.h4b{height:51.998203px;}
.h27{height:52.200000px;}
.h28{height:54.000000px;}
.h2{height:55.152000px;}
.h1d{height:55.825312px;}
.h15{height:56.084062px;}
.hd{height:57.636562px;}
.h25{height:64.102500px;}
.h21{height:65.010937px;}
.h11{height:73.298672px;}
.h29{height:74.880000px;}
.h24{height:78.105000px;}
.h5{height:78.132000px;}
.he{height:81.078047px;}
.hf{height:86.564531px;}
.h10{height:88.960781px;}
.h4{height:119.055004px;}
.hb{height:145.940977px;}
.h12{height:326.550000px;}
.h1e{height:370.080000px;}
.h2e{height:386.992752px;}
.h32{height:395.999820px;}
.h2a{height:400.281259px;}
.h20{height:407.160000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.h1b{height:1263.044910px;}
.ha{height:1263.060000px;}
.w5{width:12.780000px;}
.w1b{width:69.825000px;}
.w10{width:74.325000px;}
.w1d{width:74.505000px;}
.w19{width:75.780000px;}
.wc{width:84.945000px;}
.wf{width:85.161000px;}
.wb{width:95.751000px;}
.wd{width:95.781000px;}
.w20{width:114.285000px;}
.w21{width:114.321000px;}
.w1f{width:114.336000px;}
.w22{width:116.856000px;}
.w23{width:116.985000px;}
.w14{width:116.991000px;}
.w15{width:117.021000px;}
.w17{width:119.361000px;}
.w24{width:119.541000px;}
.w26{width:119.685000px;}
.w25{width:119.736000px;}
.w1e{width:124.941000px;}
.w1c{width:166.515000px;}
.w1a{width:173.910000px;}
.w18{width:194.241000px;}
.we{width:255.090000px;}
.w16{width:308.190000px;}
.w4{width:329.595000px;}
.w6{width:338.115000px;}
.w12{width:531.904029px;}
.w13{width:541.127299px;}
.w11{width:549.382828px;}
.w9{width:625.500000px;}
.wa{width:632.160000px;}
.w2{width:637.794021px;}
.w7{width:664.290000px;}
.w0{width:892.912500px;}
.w8{width:892.957500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6a{left:2.810687px;}
.xa{left:4.131000px;}
.x61{left:7.410000px;}
.x68{left:8.670000px;}
.xd{left:10.791000px;}
.x9a{left:14.025000px;}
.x8d{left:15.105000px;}
.x63{left:16.185000px;}
.x1d{left:17.280000px;}
.x5f{left:19.245000px;}
.x8a{left:21.780000px;}
.x65{left:23.610000px;}
.x43{left:24.810000px;}
.x5e{left:26.265000px;}
.x1c{left:27.540000px;}
.x9e{left:28.785000px;}
.x66{left:30.225000px;}
.x67{left:31.350000px;}
.x9d{left:32.925000px;}
.x72{left:34.339818px;}
.x6b{left:40.249403px;}
.x9c{left:42.285000px;}
.x85{left:43.905000px;}
.x87{left:45.705000px;}
.x88{left:46.965000px;}
.x86{left:48.765000px;}
.x95{left:49.845000px;}
.x44{left:51.300000px;}
.x1e{left:53.430000px;}
.x8b{left:56.160000px;}
.x8f{left:60.480000px;}
.x90{left:63.030000px;}
.x91{left:64.260000px;}
.x1f{left:69.990000px;}
.x45{left:71.025000px;}
.x77{left:77.726278px;}
.x7a{left:79.074060px;}
.x73{left:83.531142px;}
.x20{left:86.505000px;}
.x46{left:90.720000px;}
.x5d{left:101.025000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x47{left:110.415000px;}
.x14{left:111.456000px;}
.x81{left:115.785000px;}
.x21{left:119.550000px;}
.x6f{left:126.792071px;}
.x42{left:130.320000px;}
.xe{left:133.236000px;}
.x22{left:136.080000px;}
.x7e{left:148.116731px;}
.x48{left:149.835000px;}
.x23{left:152.610000px;}
.x6{left:156.090000px;}
.x7{left:168.690000px;}
.x99{left:170.145000px;}
.x69{left:171.990000px;}
.x5a{left:174.570000px;}
.x79{left:176.115000px;}
.x71{left:180.615000px;}
.x24{left:185.655000px;}
.x49{left:189.210000px;}
.x5{left:196.410000px;}
.x25{left:202.215000px;}
.x4{left:203.484001px;}
.x8{left:204.870000px;}
.x4a{left:208.905000px;}
.x26{left:218.730000px;}
.x4b{left:228.630000px;}
.x82{left:232.785000px;}
.x27{left:235.260000px;}
.x98{left:244.830000px;}
.x1a{left:249.150000px;}
.x28{left:251.790000px;}
.x11{left:253.267500px;}
.x12{left:259.050000px;}
.x9{left:261.390000px;}
.x29{left:268.305000px;}
.x74{left:278.772981px;}
.x60{left:281.745000px;}
.x7b{left:283.606933px;}
.x2a{left:284.835000px;}
.x7c{left:286.073668px;}
.x3e{left:288.615000px;}
.x96{left:298.155000px;}
.x2b{left:301.350000px;}
.x4c{left:307.440000px;}
.x92{left:311.115000px;}
.x75{left:312.873651px;}
.x2c{left:317.880000px;}
.x13{left:322.455000px;}
.x76{left:324.044942px;}
.x6c{left:325.315752px;}
.x4d{left:327.135000px;}
.x7d{left:329.663915px;}
.x2d{left:334.440000px;}
.x6e{left:336.757183px;}
.x4e{left:346.830000px;}
.x83{left:349.815000px;}
.x2e{left:350.970000px;}
.xf{left:356.992500px;}
.x78{left:358.987058px;}
.x10{left:362.775000px;}
.x9b{left:364.035000px;}
.x2f{left:367.485000px;}
.x6d{left:369.836851px;}
.x93{left:374.835000px;}
.x89{left:376.455000px;}
.x62{left:377.535000px;}
.x30{left:384.015000px;}
.x4f{left:386.250000px;}
.x31{left:400.530000px;}
.x50{left:405.930000px;}
.x16{left:413.692500px;}
.x32{left:417.060000px;}
.x17{left:419.475000px;}
.x51{left:425.625000px;}
.x33{left:433.590000px;}
.xb{left:436.035000px;}
.x52{left:445.320000px;}
.xc{left:448.815000px;}
.x34{left:450.105000px;}
.x3{left:454.959000px;}
.x53{left:465.045000px;}
.x35{left:466.665000px;}
.x36{left:483.195000px;}
.x54{left:484.740000px;}
.x94{left:489.180000px;}
.x37{left:499.710000px;}
.x55{left:504.435000px;}
.x38{left:516.240000px;}
.x56{left:524.130000px;}
.x39{left:532.770000px;}
.x57{left:543.855000px;}
.x3a{left:549.285000px;}
.x8c{left:550.380000px;}
.x58{left:563.550000px;}
.x3b{left:565.815000px;}
.x3c{left:582.330000px;}
.x18{left:583.462500px;}
.x19{left:589.245000px;}
.x3d{left:598.890000px;}
.x97{left:600.780000px;}
.x59{left:602.970000px;}
.x8e{left:620.220000px;}
.x5b{left:633.142500px;}
.x5c{left:638.925000px;}
.x84{left:658.020000px;}
.x15{left:669.390000px;}
.x40{left:706.807500px;}
.x41{left:712.590000px;}
.x64{left:717.810000px;}
.x70{left:721.410000px;}
.x1b{left:759.390000px;}
.x3f{left:762.810000px;}
.x7f{left:781.147500px;}
.x80{left:786.930000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880000pt;}
.ls11{letter-spacing:-0.544000pt;}
.ls12{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.352000pt;}
.ls25{letter-spacing:-0.288000pt;}
.ls27{letter-spacing:-0.240000pt;}
.ls22{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.213867pt;}
.lsd{letter-spacing:-0.201067pt;}
.ls7{letter-spacing:-0.153600pt;}
.ls21{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.092267pt;}
.ls17{letter-spacing:-0.080000pt;}
.lse{letter-spacing:-0.075733pt;}
.ls16{letter-spacing:-0.048000pt;}
.lsa{letter-spacing:-0.040960pt;}
.ls0{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.011520pt;}
.lsf{letter-spacing:0.012800pt;}
.ls26{letter-spacing:0.016000pt;}
.ls2b{letter-spacing:0.048000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.112000pt;}
.ls2{letter-spacing:0.116267pt;}
.ls10{letter-spacing:0.130667pt;}
.lsb{letter-spacing:0.153600pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.212480pt;}
.ls29{letter-spacing:0.224000pt;}
.ls4{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.273920pt;}
.ls23{letter-spacing:0.282133pt;}
.ls6{letter-spacing:0.284800pt;}
.ls13{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.400000pt;}
.ls1c{letter-spacing:0.640912pt;}
.ls1e{letter-spacing:0.775856pt;}
.ls1a{letter-spacing:0.789065pt;}
.ls1f{letter-spacing:1.172972pt;}
.ls20{letter-spacing:1.200272pt;}
.ls18{letter-spacing:1.408555pt;}
.ls1b{letter-spacing:1.444503pt;}
.ls19{letter-spacing:66.659074pt;}
.ws1a{word-spacing:-74.650468pt;}
.wse{word-spacing:-58.880000pt;}
.ws5{word-spacing:-19.993600pt;}
.ws4{word-spacing:-19.952640pt;}
.ws6{word-spacing:-16.473600pt;}
.wsf{word-spacing:-13.084267pt;}
.wsd{word-spacing:-12.966400pt;}
.ws7{word-spacing:-12.953600pt;}
.ws13{word-spacing:-12.861333pt;}
.ws12{word-spacing:-12.585067pt;}
.ws26{word-spacing:-11.968533pt;}
.ws27{word-spacing:-11.697920pt;}
.wsa{word-spacing:-10.947733pt;}
.ws23{word-spacing:-10.848000pt;}
.ws29{word-spacing:-10.784000pt;}
.ws16{word-spacing:-10.736000pt;}
.ws28{word-spacing:-10.672000pt;}
.ws11{word-spacing:-10.588160pt;}
.ws25{word-spacing:-10.576000pt;}
.ws10{word-spacing:-10.560000pt;}
.ws14{word-spacing:-10.512000pt;}
.ws15{word-spacing:-10.480000pt;}
.ws21{word-spacing:-10.416000pt;}
.ws24{word-spacing:-10.272000pt;}
.ws3{word-spacing:-10.208000pt;}
.ws9{word-spacing:-9.996800pt;}
.ws8{word-spacing:-9.782933pt;}
.wsc{word-spacing:-9.433600pt;}
.ws18{word-spacing:-9.399949pt;}
.wsb{word-spacing:-9.357867pt;}
.ws17{word-spacing:-7.991394pt;}
.ws1e{word-spacing:-7.967174pt;}
.ws1b{word-spacing:-7.785959pt;}
.ws2{word-spacing:-7.104000pt;}
.ws1{word-spacing:-7.040000pt;}
.ws22{word-spacing:-6.816000pt;}
.ws0{word-spacing:0.000000pt;}
.ws1d{word-spacing:56.326004pt;}
.ws1c{word-spacing:56.716995pt;}
.ws20{word-spacing:57.636972pt;}
.ws1f{word-spacing:58.037062pt;}
.ws19{word-spacing:58.659542pt;}
._1f{margin-left:-8.707710pt;}
._20{margin-left:-5.353784pt;}
._21{margin-left:-4.387659pt;}
._16{margin-left:-3.336533pt;}
._10{margin-left:-2.283520pt;}
._0{margin-left:-1.388800pt;}
._3{width:1.132800pt;}
._6{width:2.620800pt;}
._2{width:3.620267pt;}
._1{width:4.608000pt;}
._d{width:5.527467pt;}
._c{width:6.624000pt;}
._7{width:8.016000pt;}
._8{width:9.168000pt;}
._13{width:10.842880pt;}
._f{width:11.760000pt;}
._1b{width:12.720000pt;}
._14{width:13.895680pt;}
._17{width:15.187200pt;}
._e{width:16.704000pt;}
._9{width:18.140800pt;}
._4{width:19.920000pt;}
._5{width:21.139200pt;}
._a{width:22.720000pt;}
._b{width:23.808000pt;}
._15{width:24.824320pt;}
._1a{width:26.142720pt;}
._26{width:27.261440pt;}
._1d{width:32.408960pt;}
._18{width:33.537067pt;}
._22{width:55.369414pt;}
._24{width:56.658117pt;}
._1e{width:58.020537pt;}
._23{width:65.480430pt;}
._25{width:67.004463pt;}
._11{width:111.710187pt;}
._12{width:180.851200pt;}
._19{width:182.726400pt;}
._1c{width:252.160000pt;}
.fs13{font-size:28.007047pt;}
.fs16{font-size:28.658900pt;}
.fs10{font-size:28.746021pt;}
.fs7{font-size:32.000000pt;}
.fs14{font-size:33.204093pt;}
.fs17{font-size:33.976907pt;}
.fs11{font-size:34.555366pt;}
.fse{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs15{font-size:38.786266pt;}
.fs18{font-size:39.689002pt;}
.fs12{font-size:40.364710pt;}
.fsc{font-size:42.880000pt;}
.fsd{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fsf{font-size:48.128000pt;}
.fs19{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs9{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:90.880000pt;}
.fs6{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y135{bottom:2.229621pt;}
.y154{bottom:2.351336pt;}
.y14d{bottom:2.351358pt;}
.y167{bottom:2.406046pt;}
.y19e{bottom:3.040000pt;}
.y1a3{bottom:3.226667pt;}
.y1b0{bottom:4.306667pt;}
.y62{bottom:4.320000pt;}
.y1ae{bottom:4.346667pt;}
.y1c6{bottom:4.626667pt;}
.y1bf{bottom:4.640000pt;}
.y1bb{bottom:4.800000pt;}
.y1e0{bottom:4.946667pt;}
.y1db{bottom:4.960000pt;}
.y1e2{bottom:5.106667pt;}
.y1dd{bottom:5.120000pt;}
.y1ca{bottom:5.440000pt;}
.y1cf{bottom:5.600000pt;}
.y1d9{bottom:6.400000pt;}
.y19a{bottom:7.040000pt;}
.y1b9{bottom:7.360000pt;}
.y1a6{bottom:7.520000pt;}
.yf7{bottom:8.320000pt;}
.yc7{bottom:8.453333pt;}
.y197{bottom:8.800000pt;}
.yfc{bottom:9.440000pt;}
.y19f{bottom:10.080000pt;}
.y101{bottom:10.240000pt;}
.y1a1{bottom:10.266667pt;}
.y14f{bottom:11.907638pt;}
.y148{bottom:11.907659pt;}
.y108{bottom:12.000000pt;}
.y19b{bottom:14.080000pt;}
.y1a7{bottom:14.560000pt;}
.yef{bottom:14.973333pt;}
.y10e{bottom:15.040000pt;}
.yf5{bottom:15.360000pt;}
.y19d{bottom:17.120000pt;}
.y104{bottom:17.280000pt;}
.y1a2{bottom:17.306667pt;}
.y106{bottom:19.040000pt;}
.yc6{bottom:19.586667pt;}
.y10a{bottom:19.840000pt;}
.y199{bottom:21.120000pt;}
.y1a5{bottom:21.600000pt;}
.y110{bottom:22.080000pt;}
.yf6{bottom:22.400000pt;}
.y162{bottom:22.455093pt;}
.y4f{bottom:23.200000pt;}
.yfb{bottom:23.520000pt;}
.y103{bottom:24.320000pt;}
.y100{bottom:24.360000pt;}
.y107{bottom:26.080000pt;}
.y12f{bottom:28.242073pt;}
.y10d{bottom:29.120000pt;}
.yfd{bottom:30.560000pt;}
.y10f{bottom:36.160000pt;}
.y4e{bottom:37.120000pt;}
.yfa{bottom:37.600000pt;}
.yff{bottom:38.440000pt;}
.y150{bottom:38.679740pt;}
.y149{bottom:38.679762pt;}
.y3c{bottom:40.320000pt;}
.y10c{bottom:43.200000pt;}
.yee{bottom:46.426667pt;}
.y130{bottom:46.533350pt;}
.y163{bottom:47.662811pt;}
.yf9{bottom:51.680000pt;}
.y3b{bottom:55.040000pt;}
.y4d{bottom:55.200000pt;}
.ybd{bottom:57.853333pt;}
.y5{bottom:59.133337pt;}
.y131{bottom:64.823609pt;}
.y151{bottom:65.547636pt;}
.y14a{bottom:65.547657pt;}
.y4c{bottom:69.120000pt;}
.y3a{bottom:69.760000pt;}
.y164{bottom:72.871529pt;}
.y24{bottom:77.312000pt;}
.y64{bottom:81.792000pt;}
.y4b{bottom:83.040000pt;}
.y132{bottom:83.114886pt;}
.y39{bottom:84.640000pt;}
.y4{bottom:86.333337pt;}
.y23{bottom:86.752000pt;}
.ybe{bottom:89.413333pt;}
.y152{bottom:92.415531pt;}
.y14b{bottom:92.415553pt;}
.y165{bottom:98.178269pt;}
.y38{bottom:99.386667pt;}
.y4a{bottom:100.986667pt;}
.y133{bottom:101.380731pt;}
.ye6{bottom:111.386667pt;}
.y37{bottom:114.106667pt;}
.y49{bottom:114.906667pt;}
.y153{bottom:119.261922pt;}
.y14c{bottom:119.261944pt;}
.y134{bottom:119.669973pt;}
.ybf{bottom:120.960000pt;}
.y166{bottom:123.357980pt;}
.y21{bottom:123.790666pt;}
.y36{bottom:128.826667pt;}
.y48{bottom:132.986667pt;}
.y95{bottom:135.706667pt;}
.ybb{bottom:136.026667pt;}
.y16b{bottom:136.506667pt;}
.ye4{bottom:138.426667pt;}
.y60{bottom:139.386667pt;}
.y35{bottom:143.706667pt;}
.ye7{bottom:144.506667pt;}
.y155{bottom:146.963599pt;}
.y14e{bottom:146.963621pt;}
.y124{bottom:147.066667pt;}
.y21c{bottom:148.026667pt;}
.ye3{bottom:150.266667pt;}
.y168{bottom:150.384110pt;}
.y94{bottom:150.426667pt;}
.yba{bottom:150.746667pt;}
.y47{bottom:150.906667pt;}
.y16a{bottom:151.386667pt;}
.y15a{bottom:151.440000pt;}
.y136{bottom:151.703358pt;}
.y1e8{bottom:151.866667pt;}
.yc0{bottom:152.546667pt;}
.ycf{bottom:152.826667pt;}
.yb1{bottom:153.146667pt;}
.y5f{bottom:157.466667pt;}
.y34{bottom:158.426667pt;}
.y1b7{bottom:159.226667pt;}
.y21b{bottom:162.746667pt;}
.y46{bottom:164.826667pt;}
.y93{bottom:165.146667pt;}
.y1e7{bottom:166.600000pt;}
.y92{bottom:167.866667pt;}
.yce{bottom:170.906667pt;}
.y146{bottom:172.798306pt;}
.y13f{bottom:172.798327pt;}
.y33{bottom:173.146667pt;}
.y1b6{bottom:174.106667pt;}
.y18{bottom:175.052000pt;}
.y5e{bottom:175.546667pt;}
.ye2{bottom:176.346667pt;}
.y160{bottom:176.820106pt;}
.y21a{bottom:177.626667pt;}
.ye8{bottom:177.666667pt;}
.y12d{bottom:178.314770pt;}
.y45{bottom:178.746667pt;}
.yb9{bottom:179.066667pt;}
.ybc{bottom:179.200000pt;}
.y193{bottom:179.866667pt;}
.y91{bottom:180.026667pt;}
.y141{bottom:182.387353pt;}
.y13a{bottom:182.387374pt;}
.y123{bottom:183.226667pt;}
.yc1{bottom:184.093333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1e6{bottom:186.280000pt;}
.y32{bottom:188.026667pt;}
.y1b5{bottom:188.826667pt;}
.ycd{bottom:188.986667pt;}
.y219{bottom:192.346667pt;}
.y44{bottom:192.666667pt;}
.y5d{bottom:193.466667pt;}
.ye0{bottom:194.266667pt;}
.y90{bottom:194.746667pt;}
.y15b{bottom:196.894659pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.ye1{bottom:197.626667pt;}
.y122{bottom:201.306667pt;}
.y31{bottom:202.746667pt;}
.y1b4{bottom:203.546667pt;}
.y127{bottom:204.326001pt;}
.y1e5{bottom:205.960000pt;}
.ycc{bottom:207.066667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y142{bottom:209.131109pt;}
.y13b{bottom:209.131130pt;}
.y138{bottom:209.306667pt;}
.y126{bottom:209.373333pt;}
.y8f{bottom:209.466667pt;}
.y192{bottom:209.946667pt;}
.yf2{bottom:210.426667pt;}
.y43{bottom:210.746667pt;}
.ye9{bottom:210.813333pt;}
.y5c{bottom:211.546667pt;}
.ydf{bottom:212.346667pt;}
.yc2{bottom:215.653333pt;}
.y30{bottom:217.466667pt;}
.y121{bottom:219.226667pt;}
.y218{bottom:221.946667pt;}
.y15c{bottom:222.080372pt;}
.y128{bottom:222.626433pt;}
.y1b3{bottom:223.720000pt;}
.y8e{bottom:224.346667pt;}
.y42{bottom:224.666667pt;}
.ycb{bottom:225.146667pt;}
.y1e4{bottom:225.800000pt;}
.y8d{bottom:227.066667pt;}
.y191{bottom:228.026667pt;}
.y5b{bottom:229.626667pt;}
.yde{bottom:230.426667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y2f{bottom:232.346667pt;}
.y143{bottom:236.001937pt;}
.y13c{bottom:236.001958pt;}
.y217{bottom:236.666667pt;}
.y120{bottom:237.306667pt;}
.y41{bottom:238.586667pt;}
.y8c{bottom:238.906667pt;}
.y1b2{bottom:240.840000pt;}
.y129{bottom:240.916693pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yca{bottom:243.066667pt;}
.yea{bottom:243.973333pt;}
.y1e3{bottom:245.480000pt;}
.y190{bottom:246.106667pt;}
.y2e{bottom:247.066667pt;}
.yc3{bottom:247.226667pt;}
.y15d{bottom:247.286089pt;}
.y5a{bottom:247.706667pt;}
.ydd{bottom:248.506667pt;}
.y216{bottom:251.386667pt;}
.y40{bottom:252.506667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y11f{bottom:255.386667pt;}
.y1b1{bottom:257.960000pt;}
.y12a{bottom:259.206952pt;}
.y3d{bottom:260.346667pt;}
.yc9{bottom:261.146667pt;}
.y2d{bottom:261.786667pt;}
.y144{bottom:262.862990pt;}
.y13d{bottom:262.863011pt;}
.y18f{bottom:264.026667pt;}
.y1e1{bottom:265.160000pt;}
.y59{bottom:265.786667pt;}
.y215{bottom:266.266667pt;}
.y3f{bottom:266.426667pt;}
.ydc{bottom:266.586667pt;}
.y15e{bottom:272.591829pt;}
.y11e{bottom:273.466667pt;}
.y1af{bottom:275.080000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2c{bottom:276.186667pt;}
.yeb{bottom:277.120000pt;}
.y12b{bottom:277.497212pt;}
.yc4{bottom:278.786667pt;}
.y8b{bottom:279.226667pt;}
.y3e{bottom:280.186667pt;}
.y214{bottom:280.986667pt;}
.y58{bottom:283.866667pt;}
.ydb{bottom:284.666667pt;}
.y1df{bottom:285.000000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y145{bottom:289.714268pt;}
.y13e{bottom:289.714289pt;}
.y11d{bottom:291.546667pt;}
.y1ad{bottom:292.200000pt;}
.y213{bottom:295.746667pt;}
.y12c{bottom:295.756953pt;}
.yb0{bottom:296.546667pt;}
.y8a{bottom:297.346667pt;}
.y15f{bottom:297.807548pt;}
.y57{bottom:301.826667pt;}
.yda{bottom:302.626667pt;}
.y1de{bottom:304.706667pt;}
.yf{bottom:309.452000pt;}
.y11c{bottom:309.666667pt;}
.y1ac{bottom:309.986667pt;}
.yec{bottom:310.266667pt;}
.yc5{bottom:310.333333pt;}
.y212{bottom:310.626667pt;}
.y88{bottom:315.426667pt;}
.y147{bottom:317.415948pt;}
.y140{bottom:317.415966pt;}
.y89{bottom:318.786667pt;}
.y56{bottom:319.906667pt;}
.yd9{bottom:320.706667pt;}
.y1dc{bottom:324.386667pt;}
.y161{bottom:324.803672pt;}
.y211{bottom:325.346667pt;}
.y11b{bottom:327.746667pt;}
.y12e{bottom:327.790339pt;}
.yaf{bottom:330.466667pt;}
.y87{bottom:333.506667pt;}
.y156{bottom:335.352656pt;}
.y55{bottom:337.986667pt;}
.yd8{bottom:338.786667pt;}
.y210{bottom:340.066667pt;}
.y169{bottom:343.157835pt;}
.yed{bottom:343.386667pt;}
.ye{bottom:343.809333pt;}
.y1da{bottom:344.226667pt;}
.y11a{bottom:345.666667pt;}
.y137{bottom:346.456983pt;}
.y18e{bottom:347.426667pt;}
.yae{bottom:348.546667pt;}
.y86{bottom:351.426667pt;}
.y20f{bottom:354.786667pt;}
.y54{bottom:356.066667pt;}
.yd7{bottom:356.866667pt;}
.yd{bottom:362.706666pt;}
.y119{bottom:363.746667pt;}
.y1d8{bottom:364.546667pt;}
.y18d{bottom:365.506667pt;}
.yad{bottom:366.626667pt;}
.y1ab{bottom:368.066667pt;}
.y85{bottom:369.506667pt;}
.y20e{bottom:369.666667pt;}
.y53{bottom:374.146667pt;}
.yd6{bottom:374.946667pt;}
.y118{bottom:381.826667pt;}
.y18c{bottom:383.426667pt;}
.y20d{bottom:384.386667pt;}
.yac{bottom:384.706667pt;}
.y84{bottom:387.586667pt;}
.y52{bottom:392.226667pt;}
.yd5{bottom:393.026667pt;}
.y20c{bottom:399.106667pt;}
.y117{bottom:399.906667pt;}
.y18b{bottom:401.506667pt;}
.yab{bottom:402.786667pt;}
.y83{bottom:405.666667pt;}
.y1d7{bottom:407.906667pt;}
.y51{bottom:410.146667pt;}
.yd4{bottom:410.946667pt;}
.y20b{bottom:413.986667pt;}
.y116{bottom:417.986667pt;}
.y18a{bottom:419.586667pt;}
.y1aa{bottom:420.226667pt;}
.yaa{bottom:420.866667pt;}
.y82{bottom:423.746667pt;}
.y50{bottom:428.226667pt;}
.y20a{bottom:428.706667pt;}
.yd3{bottom:429.026667pt;}
.y1a9{bottom:434.946667pt;}
.y115{bottom:436.066667pt;}
.y189{bottom:437.666667pt;}
.ya9{bottom:438.786667pt;}
.y81{bottom:441.826667pt;}
.y2b{bottom:442.146667pt;}
.y209{bottom:443.426667pt;}
.yc{bottom:446.990669pt;}
.yd2{bottom:447.106667pt;}
.y1d6{bottom:449.986667pt;}
.y1a8{bottom:452.226667pt;}
.y114{bottom:453.986667pt;}
.y188{bottom:455.746667pt;}
.ya8{bottom:456.866667pt;}
.y208{bottom:458.306667pt;}
.y80{bottom:459.746667pt;}
.yd1{bottom:461.986667pt;}
.ye5{bottom:462.080000pt;}
.yb{bottom:462.990669pt;}
.y1d5{bottom:464.546667pt;}
.y113{bottom:472.066667pt;}
.y207{bottom:473.026667pt;}
.y187{bottom:473.826667pt;}
.ya7{bottom:474.946667pt;}
.y7f{bottom:477.826667pt;}
.ya{bottom:478.990666pt;}
.y1d4{bottom:483.746667pt;}
.y206{bottom:487.746667pt;}
.y1a4{bottom:489.666667pt;}
.y112{bottom:490.146667pt;}
.y186{bottom:491.746667pt;}
.y9{bottom:494.990666pt;}
.y7e{bottom:495.906667pt;}
.y205{bottom:502.626667pt;}
.y1d3{bottom:503.106667pt;}
.yf1{bottom:506.946667pt;}
.ya6{bottom:509.026667pt;}
.y185{bottom:509.826667pt;}
.y7d{bottom:513.986667pt;}
.y111{bottom:515.426667pt;}
.y204{bottom:517.346667pt;}
.y1d2{bottom:522.306667pt;}
.yc8{bottom:525.026667pt;}
.y1a0{bottom:527.106667pt;}
.y184{bottom:527.906667pt;}
.y7c{bottom:532.093333pt;}
.yb8{bottom:536.093333pt;}
.y159{bottom:539.453333pt;}
.y1d1{bottom:541.693333pt;}
.ya5{bottom:543.133333pt;}
.y10b{bottom:543.613333pt;}
.y183{bottom:546.013333pt;}
.y203{bottom:546.973333pt;}
.y7b{bottom:550.173333pt;}
.y19c{bottom:555.933333pt;}
.y1d0{bottom:560.893333pt;}
.ya4{bottom:561.213333pt;}
.y202{bottom:561.693333pt;}
.y182{bottom:564.093333pt;}
.y7a{bottom:568.093333pt;}
.y8{bottom:573.786667pt;}
.y201{bottom:576.413333pt;}
.ya3{bottom:579.133333pt;}
.y1ce{bottom:580.093333pt;}
.y158{bottom:581.533333pt;}
.y181{bottom:582.173333pt;}
.y198{bottom:584.413333pt;}
.y79{bottom:586.173333pt;}
.y200{bottom:591.293333pt;}
.y7{bottom:592.685334pt;}
.y139{bottom:596.373293pt;}
.y157{bottom:596.413333pt;}
.ya2{bottom:597.213333pt;}
.y1cd{bottom:599.453333pt;}
.y180{bottom:600.093333pt;}
.y125{bottom:601.373333pt;}
.y78{bottom:604.253333pt;}
.y1ff{bottom:606.013333pt;}
.y109{bottom:610.173333pt;}
.ya1{bottom:615.293333pt;}
.y17f{bottom:618.173333pt;}
.y1cc{bottom:618.653333pt;}
.y1fe{bottom:620.733333pt;}
.y196{bottom:621.693333pt;}
.y77{bottom:622.333333pt;}
.ya0{bottom:633.373333pt;}
.y1fd{bottom:635.613333pt;}
.y17e{bottom:636.253333pt;}
.y1cb{bottom:638.013333pt;}
.y76{bottom:640.413333pt;}
.y6{bottom:645.598667pt;}
.y1fc{bottom:650.333333pt;}
.y9f{bottom:651.453333pt;}
.y17d{bottom:654.333333pt;}
.y1c9{bottom:657.853333pt;}
.y105{bottom:658.173333pt;}
.y75{bottom:658.493333pt;}
.y1fb{bottom:665.053333pt;}
.y195{bottom:668.573333pt;}
.y3{bottom:668.977329pt;}
.y9e{bottom:669.533333pt;}
.y17c{bottom:672.413333pt;}
.y73{bottom:676.573333pt;}
.y74{bottom:679.933333pt;}
.y9d{bottom:687.453333pt;}
.y17b{bottom:690.493333pt;}
.y72{bottom:694.493333pt;}
.y1fa{bottom:694.653333pt;}
.y1c8{bottom:698.013333pt;}
.y102{bottom:704.573333pt;}
.y9c{bottom:705.533333pt;}
.y17a{bottom:708.573333pt;}
.y1f9{bottom:709.373333pt;}
.y194{bottom:709.693333pt;}
.y71{bottom:712.573333pt;}
.y9b{bottom:723.613333pt;}
.y1f8{bottom:724.253333pt;}
.y179{bottom:726.493333pt;}
.yb7{bottom:730.653333pt;}
.y2a{bottom:736.573333pt;}
.y1f7{bottom:738.973333pt;}
.y1c7{bottom:739.933333pt;}
.y9a{bottom:741.693333pt;}
.y178{bottom:744.573333pt;}
.y70{bottom:745.853333pt;}
.yfe{bottom:747.453333pt;}
.yb6{bottom:748.733333pt;}
.y1f6{bottom:753.693333pt;}
.y1c5{bottom:754.666667pt;}
.y99{bottom:759.773333pt;}
.y177{bottom:762.653333pt;}
.yb5{bottom:766.813333pt;}
.y1f5{bottom:768.613333pt;}
.y29{bottom:771.973333pt;}
.y1c4{bottom:772.293333pt;}
.y97{bottom:777.893333pt;}
.y176{bottom:780.773333pt;}
.y98{bottom:781.253333pt;}
.y2{bottom:781.661334pt;}
.y1f4{bottom:783.333333pt;}
.yb4{bottom:784.933333pt;}
.y1c3{bottom:790.053333pt;}
.y6f{bottom:795.973333pt;}
.y1f3{bottom:798.053333pt;}
.y175{bottom:798.853333pt;}
.yb3{bottom:802.853333pt;}
.yf8{bottom:804.453333pt;}
.y1c2{bottom:807.813333pt;}
.y1f2{bottom:812.933333pt;}
.y6e{bottom:813.893333pt;}
.y174{bottom:816.933333pt;}
.y28{bottom:819.973333pt;}
.y1c1{bottom:825.573333pt;}
.y1f1{bottom:827.653333pt;}
.y227{bottom:831.333333pt;}
.y6d{bottom:831.973333pt;}
.y173{bottom:834.853333pt;}
.yb2{bottom:836.133333pt;}
.y1f0{bottom:842.373333pt;}
.y1c0{bottom:843.333333pt;}
.yd0{bottom:844.133333pt;}
.y226{bottom:846.053333pt;}
.y27{bottom:847.973333pt;}
.y6c{bottom:850.053333pt;}
.y172{bottom:852.933333pt;}
.y1ef{bottom:857.253333pt;}
.y1{bottom:859.312000pt;}
.y225{bottom:860.773333pt;}
.y1be{bottom:861.093333pt;}
.y6b{bottom:868.133333pt;}
.y171{bottom:871.013333pt;}
.y96{bottom:871.493333pt;}
.y1ee{bottom:871.973333pt;}
.yf4{bottom:874.533333pt;}
.y224{bottom:875.653333pt;}
.y1bd{bottom:878.693333pt;}
.y6a{bottom:886.213333pt;}
.yf0{bottom:886.533333pt;}
.y1ed{bottom:886.693333pt;}
.y170{bottom:889.093333pt;}
.y223{bottom:890.373333pt;}
.y1bc{bottom:896.453333pt;}
.y61{bottom:897.893333pt;}
.y26{bottom:899.493333pt;}
.y1ec{bottom:901.413333pt;}
.y69{bottom:904.293333pt;}
.y222{bottom:905.093333pt;}
.y16f{bottom:907.173333pt;}
.y1ba{bottom:914.213333pt;}
.y1eb{bottom:916.293333pt;}
.y221{bottom:919.973333pt;}
.y68{bottom:922.213333pt;}
.y25{bottom:922.533333pt;}
.y16d{bottom:925.253333pt;}
.y16e{bottom:928.613333pt;}
.y1ea{bottom:931.013333pt;}
.y1b8{bottom:932.613333pt;}
.yf3{bottom:934.373333pt;}
.y220{bottom:934.693333pt;}
.y67{bottom:940.293333pt;}
.y16c{bottom:943.173333pt;}
.y1e9{bottom:945.733333pt;}
.y21f{bottom:949.413333pt;}
.y66{bottom:958.373333pt;}
.y21e{bottom:964.293333pt;}
.y65{bottom:976.453333pt;}
.y21d{bottom:979.013333pt;}
.y22{bottom:1006.080000pt;}
.y63{bottom:1034.720000pt;}
.h19{height:15.666667pt;}
.h3e{height:17.106667pt;}
.h3d{height:17.138667pt;}
.h41{height:17.586667pt;}
.h42{height:17.618667pt;}
.h40{height:17.746667pt;}
.h46{height:19.186667pt;}
.h44{height:19.200000pt;}
.h47{height:19.346667pt;}
.h43{height:19.360000pt;}
.h45{height:19.386667pt;}
.h4a{height:19.666667pt;}
.h4d{height:19.698667pt;}
.h4c{height:19.826667pt;}
.h48{height:22.546667pt;}
.h3f{height:23.026667pt;}
.h36{height:26.080000pt;}
.hc{height:27.843750pt;}
.h38{height:28.480000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h39{height:28.826667pt;}
.h2f{height:29.210474pt;}
.h33{height:29.890338pt;}
.h2b{height:29.981202pt;}
.h3b{height:30.885625pt;}
.h1c{height:32.298750pt;}
.h30{height:34.630832pt;}
.h34{height:35.436852pt;}
.h2c{height:36.040167pt;}
.h13{height:36.305625pt;}
.h37{height:36.640000pt;}
.h3c{height:37.266667pt;}
.h16{height:37.310625pt;}
.h3a{height:37.426667pt;}
.h18{height:38.473125pt;}
.h22{height:39.026667pt;}
.h17{height:39.538125pt;}
.h1a{height:40.053437pt;}
.h31{height:40.452863pt;}
.h23{height:40.640625pt;}
.h7{height:40.853333pt;}
.h35{height:41.394389pt;}
.h14{height:41.765625pt;}
.h1f{height:41.877000pt;}
.h2d{height:42.099132pt;}
.h3{height:42.840000pt;}
.h26{height:42.880000pt;}
.h6{height:42.896000pt;}
.h49{height:44.975625pt;}
.h4b{height:46.220625pt;}
.h27{height:46.400000pt;}
.h28{height:48.000000pt;}
.h2{height:49.024000pt;}
.h1d{height:49.622500pt;}
.h15{height:49.852500pt;}
.hd{height:51.232500pt;}
.h25{height:56.980000pt;}
.h21{height:57.787500pt;}
.h11{height:65.154375pt;}
.h29{height:66.560000pt;}
.h24{height:69.426667pt;}
.h5{height:69.450667pt;}
.he{height:72.069375pt;}
.hf{height:76.946250pt;}
.h10{height:79.076250pt;}
.h4{height:105.826671pt;}
.hb{height:129.725313pt;}
.h12{height:290.266667pt;}
.h1e{height:328.960000pt;}
.h2e{height:343.993557pt;}
.h32{height:351.999840pt;}
.h2a{height:355.805563pt;}
.h20{height:361.920000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.h1b{height:1122.706587pt;}
.ha{height:1122.720000pt;}
.w5{width:11.360000pt;}
.w1b{width:62.066667pt;}
.w10{width:66.066667pt;}
.w1d{width:66.226667pt;}
.w19{width:67.360000pt;}
.wc{width:75.506667pt;}
.wf{width:75.698667pt;}
.wb{width:85.112000pt;}
.wd{width:85.138667pt;}
.w20{width:101.586667pt;}
.w21{width:101.618667pt;}
.w1f{width:101.632000pt;}
.w22{width:103.872000pt;}
.w23{width:103.986667pt;}
.w14{width:103.992000pt;}
.w15{width:104.018667pt;}
.w17{width:106.098667pt;}
.w24{width:106.258667pt;}
.w26{width:106.386667pt;}
.w25{width:106.432000pt;}
.w1e{width:111.058667pt;}
.w1c{width:148.013333pt;}
.w1a{width:154.586667pt;}
.w18{width:172.658667pt;}
.we{width:226.746667pt;}
.w16{width:273.946667pt;}
.w4{width:292.973333pt;}
.w6{width:300.546667pt;}
.w12{width:472.803581pt;}
.w13{width:481.002044pt;}
.w11{width:488.340291pt;}
.w9{width:556.000000pt;}
.wa{width:561.920000pt;}
.w2{width:566.928019pt;}
.w7{width:590.480000pt;}
.w0{width:793.700000pt;}
.w8{width:793.740000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6a{left:2.498388pt;}
.xa{left:3.672000pt;}
.x61{left:6.586667pt;}
.x68{left:7.706667pt;}
.xd{left:9.592000pt;}
.x9a{left:12.466667pt;}
.x8d{left:13.426667pt;}
.x63{left:14.386667pt;}
.x1d{left:15.360000pt;}
.x5f{left:17.106667pt;}
.x8a{left:19.360000pt;}
.x65{left:20.986667pt;}
.x43{left:22.053333pt;}
.x5e{left:23.346667pt;}
.x1c{left:24.480000pt;}
.x9e{left:25.586667pt;}
.x66{left:26.866667pt;}
.x67{left:27.866667pt;}
.x9d{left:29.266667pt;}
.x72{left:30.524283pt;}
.x6b{left:35.777247pt;}
.x9c{left:37.586667pt;}
.x85{left:39.026667pt;}
.x87{left:40.626667pt;}
.x88{left:41.746667pt;}
.x86{left:43.346667pt;}
.x95{left:44.306667pt;}
.x44{left:45.600000pt;}
.x1e{left:47.493333pt;}
.x8b{left:49.920000pt;}
.x8f{left:53.760000pt;}
.x90{left:56.026667pt;}
.x91{left:57.120000pt;}
.x1f{left:62.213333pt;}
.x45{left:63.133333pt;}
.x77{left:69.090025pt;}
.x7a{left:70.288053pt;}
.x73{left:74.249904pt;}
.x20{left:76.893333pt;}
.x46{left:80.640000pt;}
.x5d{left:89.800000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x47{left:98.146667pt;}
.x14{left:99.072000pt;}
.x81{left:102.920000pt;}
.x21{left:106.266667pt;}
.x6f{left:112.704063pt;}
.x42{left:115.840000pt;}
.xe{left:118.432000pt;}
.x22{left:120.960000pt;}
.x7e{left:131.659316pt;}
.x48{left:133.186667pt;}
.x23{left:135.653333pt;}
.x6{left:138.746667pt;}
.x7{left:149.946667pt;}
.x99{left:151.240000pt;}
.x69{left:152.880000pt;}
.x5a{left:155.173333pt;}
.x79{left:156.546667pt;}
.x71{left:160.546667pt;}
.x24{left:165.026667pt;}
.x49{left:168.186667pt;}
.x5{left:174.586667pt;}
.x25{left:179.746667pt;}
.x4{left:180.874667pt;}
.x8{left:182.106667pt;}
.x4a{left:185.693333pt;}
.x26{left:194.426667pt;}
.x4b{left:203.226667pt;}
.x82{left:206.920000pt;}
.x27{left:209.120000pt;}
.x98{left:217.626667pt;}
.x1a{left:221.466667pt;}
.x28{left:223.813333pt;}
.x11{left:225.126667pt;}
.x12{left:230.266667pt;}
.x9{left:232.346667pt;}
.x29{left:238.493333pt;}
.x74{left:247.798205pt;}
.x60{left:250.440000pt;}
.x7b{left:252.095051pt;}
.x2a{left:253.186667pt;}
.x7c{left:254.287705pt;}
.x3e{left:256.546667pt;}
.x96{left:265.026667pt;}
.x2b{left:267.866667pt;}
.x4c{left:273.280000pt;}
.x92{left:276.546667pt;}
.x75{left:278.109912pt;}
.x2c{left:282.560000pt;}
.x13{left:286.626667pt;}
.x76{left:288.039949pt;}
.x6c{left:289.169557pt;}
.x4d{left:290.786667pt;}
.x7d{left:293.034591pt;}
.x2d{left:297.280000pt;}
.x6e{left:299.339718pt;}
.x4e{left:308.293333pt;}
.x83{left:310.946667pt;}
.x2e{left:311.973333pt;}
.xf{left:317.326667pt;}
.x78{left:319.099607pt;}
.x10{left:322.466667pt;}
.x9b{left:323.586667pt;}
.x2f{left:326.653333pt;}
.x6d{left:328.743867pt;}
.x93{left:333.186667pt;}
.x89{left:334.626667pt;}
.x62{left:335.586667pt;}
.x30{left:341.346667pt;}
.x4f{left:343.333333pt;}
.x31{left:356.026667pt;}
.x50{left:360.826667pt;}
.x16{left:367.726667pt;}
.x32{left:370.720000pt;}
.x17{left:372.866667pt;}
.x51{left:378.333333pt;}
.x33{left:385.413333pt;}
.xb{left:387.586667pt;}
.x52{left:395.840000pt;}
.xc{left:398.946667pt;}
.x34{left:400.093333pt;}
.x3{left:404.408000pt;}
.x53{left:413.373333pt;}
.x35{left:414.813333pt;}
.x36{left:429.506667pt;}
.x54{left:430.880000pt;}
.x94{left:434.826667pt;}
.x37{left:444.186667pt;}
.x55{left:448.386667pt;}
.x38{left:458.880000pt;}
.x56{left:465.893333pt;}
.x39{left:473.573333pt;}
.x57{left:483.426667pt;}
.x3a{left:488.253333pt;}
.x8c{left:489.226667pt;}
.x58{left:500.933333pt;}
.x3b{left:502.946667pt;}
.x3c{left:517.626667pt;}
.x18{left:518.633333pt;}
.x19{left:523.773333pt;}
.x3d{left:532.346667pt;}
.x97{left:534.026667pt;}
.x59{left:535.973333pt;}
.x8e{left:551.306667pt;}
.x5b{left:562.793333pt;}
.x5c{left:567.933333pt;}
.x84{left:584.906667pt;}
.x15{left:595.013333pt;}
.x40{left:628.273333pt;}
.x41{left:633.413333pt;}
.x64{left:638.053333pt;}
.x70{left:641.253333pt;}
.x1b{left:675.013333pt;}
.x3f{left:678.053333pt;}
.x7f{left:694.353333pt;}
.x80{left:699.493333pt;}
}




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