
    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_1415399e80eac1379d47c033.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_031003dcdbe9e4041a602ab3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_1048cdf07923b8574995f15f.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_da905f9281213273929ec500.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_738445a64e5ecb3794dee58e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_55f0fee82a1577eea3d1b4d9.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_031d36df1020a198d821b3bf.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_b19dece87ef674eda79cff83.woff')format("woff");}.ff8{font-family:ff8;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2981610af0c340c4ebcc1d20.woff')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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_6df502b6e711433cb1463c3b.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_22f398e5e307b5c9f1768526.woff')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_33d266fcbbd1225aa12e997f.woff')format("woff");}.ffd{font-family:ffd;line-height:0.981934;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_3d5a9e68d9b257ca3b0e8e20.woff')format("woff");}.ffe{font-family:ffe;line-height:0.942383;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_810fce955b3ae2ad882f8195.woff')format("woff");}.fff{font-family:fff;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:23.760000px;}
.v3{vertical-align:30.360000px;}
.ls21{letter-spacing:-0.852000px;}
.ls34{letter-spacing:-0.768000px;}
.ls25{letter-spacing:-0.720000px;}
.ls2b{letter-spacing:-0.648000px;}
.ls1b{letter-spacing:-0.590400px;}
.ls1e{letter-spacing:-0.579000px;}
.ls39{letter-spacing:-0.472200px;}
.ls26{letter-spacing:-0.368400px;}
.ls24{letter-spacing:-0.324000px;}
.ls3b{letter-spacing:-0.309600px;}
.ls10{letter-spacing:-0.253200px;}
.ls3e{letter-spacing:-0.252000px;}
.ls9{letter-spacing:-0.229800px;}
.ls1d{letter-spacing:-0.216000px;}
.ls3c{letter-spacing:-0.207600px;}
.ls3a{letter-spacing:-0.193200px;}
.ls8{letter-spacing:-0.172200px;}
.ls20{letter-spacing:-0.164400px;}
.lsa{letter-spacing:-0.144000px;}
.lsc{letter-spacing:-0.141600px;}
.ls11{letter-spacing:-0.138000px;}
.lsd{letter-spacing:-0.132600px;}
.ls2d{letter-spacing:-0.123600px;}
.ls1c{letter-spacing:-0.115200px;}
.ls2a{letter-spacing:-0.102000px;}
.ls1f{letter-spacing:-0.048960px;}
.ls6{letter-spacing:-0.025920px;}
.ls32{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.060600px;}
.ls33{letter-spacing:0.075000px;}
.ls3{letter-spacing:0.086400px;}
.ls3d{letter-spacing:0.089280px;}
.ls36{letter-spacing:0.100800px;}
.ls2{letter-spacing:0.132480px;}
.ls31{letter-spacing:0.132600px;}
.ls14{letter-spacing:0.141120px;}
.ls2f{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.216000px;}
.lse{letter-spacing:0.231600px;}
.ls12{letter-spacing:0.238320px;}
.ls4{letter-spacing:0.256200px;}
.ls23{letter-spacing:0.289920px;}
.ls0{letter-spacing:0.299520px;}
.ls5{letter-spacing:0.313800px;}
.ls16{letter-spacing:0.329760px;}
.ls29{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.371400px;}
.ls27{letter-spacing:1.589760px;}
.ls28{letter-spacing:3.029760px;}
.ls18{letter-spacing:4.469760px;}
.ls35{letter-spacing:8.069760px;}
.ls19{letter-spacing:10.229760px;}
.ls38{letter-spacing:15.989760px;}
.ls37{letter-spacing:16.709760px;}
.ls22{letter-spacing:16.865280px;}
.ls15{letter-spacing:20.309760px;}
.ls30{letter-spacing:24.629760px;}
.ls2e{letter-spacing:36.305280px;}
.ls17{letter-spacing:37.025280px;}
.ls2c{letter-spacing:86.717280px;}
.ls7{letter-spacing:111.168000px;}
.ls13{letter-spacing:121.349280px;}
.sc_{text-shadow:none;}
.sc4{text-shadow:-0.015em 0 rgb(0,104,56),0 0.015em rgb(0,104,56),0.015em 0 rgb(0,104,56),0 -0.015em  rgb(0,104,56);}
.sc3{text-shadow:-0.015em 0 rgb(186,104,39),0 0.015em rgb(186,104,39),0.015em 0 rgb(186,104,39),0 -0.015em  rgb(186,104,39);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(171,98,46),0 0.015em rgb(171,98,46),0.015em 0 rgb(171,98,46),0 -0.015em  rgb(171,98,46);}
.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;}
.sc4{-webkit-text-stroke:0.015em rgb(0,104,56);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(186,104,39);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(171,98,46);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws17{word-spacing:-66.240000px;}
.ws23{word-spacing:-54.000000px;}
.ws25{word-spacing:-27.174240px;}
.ws7{word-spacing:-19.038240px;}
.ws8{word-spacing:-18.866040px;}
.ws9{word-spacing:-18.808440px;}
.wsb{word-spacing:-16.488000px;}
.wsa{word-spacing:-16.128000px;}
.ws12{word-spacing:-15.341640px;}
.ws5{word-spacing:-15.284040px;}
.ws4{word-spacing:-15.226440px;}
.ws21{word-spacing:-15.102840px;}
.ws24{word-spacing:-15.071040px;}
.ws2{word-spacing:-15.056640px;}
.ws1f{word-spacing:-15.045240px;}
.wsf{word-spacing:-15.030840px;}
.ws3{word-spacing:-14.970240px;}
.ws6{word-spacing:-14.944320px;}
.ws18{word-spacing:-14.921280px;}
.ws14{word-spacing:-14.855040px;}
.wsd{word-spacing:-14.837640px;}
.ws11{word-spacing:-14.832240px;}
.ws19{word-spacing:-14.805840px;}
.ws27{word-spacing:-14.762640px;}
.ws15{word-spacing:-14.754240px;}
.ws10{word-spacing:-14.717040px;}
.ws16{word-spacing:-14.391240px;}
.ws13{word-spacing:-14.379840px;}
.ws1c{word-spacing:-14.322240px;}
.ws20{word-spacing:-14.202240px;}
.ws28{word-spacing:-13.505760px;}
.ws29{word-spacing:-12.204000px;}
.ws1e{word-spacing:-12.186000px;}
.ws2a{word-spacing:-11.952000px;}
.ws1{word-spacing:-10.902240px;}
.wsc{word-spacing:-10.760640px;}
.ws1d{word-spacing:-10.440000px;}
.wse{word-spacing:-9.669360px;}
.ws1b{word-spacing:-9.335760px;}
.ws26{word-spacing:-9.128160px;}
.ws1a{word-spacing:-9.113760px;}
.ws22{word-spacing:-8.352000px;}
.ws0{word-spacing:0.000000px;}
._7{margin-left:-17.588400px;}
._9{margin-left:-15.251640px;}
._c{margin-left:-13.457280px;}
._e{margin-left:-12.277440px;}
._4{margin-left:-10.246320px;}
._b{margin-left:-8.423040px;}
._d{margin-left:-6.586320px;}
._8{margin-left:-4.892160px;}
._6{margin-left:-3.638880px;}
._5{margin-left:-2.585520px;}
._0{margin-left:-1.074240px;}
._2{width:1.237440px;}
._3{width:2.430960px;}
._f{width:3.978720px;}
._14{width:5.049600px;}
._18{width:6.375360px;}
._19{width:7.404480px;}
._15{width:8.876160px;}
._16{width:9.936000px;}
._12{width:11.525760px;}
._10{width:12.942720px;}
._11{width:13.966800px;}
._17{width:16.957440px;}
._1b{width:18.051840px;}
._13{width:19.649280px;}
._1d{width:20.857920px;}
._1e{width:23.261760px;}
._1c{width:24.543360px;}
._21{width:26.496000px;}
._20{width:27.555840px;}
._a{width:28.632000px;}
._1a{width:30.576000px;}
._24{width:42.327360px;}
._23{width:44.645760px;}
._1f{width:59.564160px;}
._22{width:86.708160px;}
._1{width:849.185760px;}
.fcb{color:rgb(0,148,68);}
.fc9{color:rgb(186,104,39);}
.fc6{color:rgb(171,98,46);}
.fc3{color:transparent;}
.fc2{color:rgb(12,92,53);}
.fca{color:rgb(36,36,36);}
.fc8{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(242,242,242);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(16,138,66);}
.fc0{color:rgb(0,104,56);}
.fsa{font-size:27.360000px;}
.fsb{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs8{font-size:120.240000px;}
.fs4{font-size:131.760000px;}
.fs2{font-size:149.760000px;}
.ye{bottom:-60.840000px;}
.yd{bottom:-31.680000px;}
.y9{bottom:-10.620000px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.240000px;}
.y10{bottom:4.140000px;}
.y15d{bottom:4.320000px;}
.y134{bottom:4.500000px;}
.y135{bottom:5.580000px;}
.y15c{bottom:6.660000px;}
.y172{bottom:6.840000px;}
.y137{bottom:7.920000px;}
.y15f{bottom:8.100000px;}
.y117{bottom:8.820000px;}
.y115{bottom:9.000000px;}
.y16b{bottom:9.540000px;}
.y1f1{bottom:9.720000px;}
.y1f5{bottom:9.900000px;}
.y1f3{bottom:10.080000px;}
.y1b{bottom:10.260000px;}
.y2d{bottom:10.440000px;}
.y1df{bottom:13.320000px;}
.y1d5{bottom:13.500000px;}
.y12a{bottom:14.760000px;}
.y1e{bottom:15.120000px;}
.y1b8{bottom:15.150000px;}
.y22{bottom:15.300000px;}
.y1ba{bottom:15.330000px;}
.y25{bottom:15.345000px;}
.y18{bottom:16.020000px;}
.y6a{bottom:16.380000px;}
.y68{bottom:16.560000px;}
.y6e{bottom:16.605000px;}
.y1d{bottom:17.640000px;}
.y1ad{bottom:18.900000px;}
.y12e{bottom:19.080000px;}
.y1d7{bottom:20.160000px;}
.y8{bottom:20.340000px;}
.y38{bottom:20.520000px;}
.y1da{bottom:21.240000px;}
.y20{bottom:25.200000px;}
.y14{bottom:26.280000px;}
.y18b{bottom:28.980000px;}
.y121{bottom:29.160000px;}
.y35{bottom:30.600000px;}
.y16{bottom:30.780000px;}
.y1b7{bottom:31.710000px;}
.y1d4{bottom:33.660000px;}
.y1b9{bottom:34.230000px;}
.y14a{bottom:34.380000px;}
.y12c{bottom:34.410000px;}
.y144{bottom:34.425000px;}
.y155{bottom:34.560000px;}
.y129{bottom:34.950000px;}
.y21{bottom:35.460000px;}
.y3{bottom:38.340000px;}
.y13{bottom:41.400000px;}
.y17{bottom:42.300000px;}
.y1de{bottom:42.480000px;}
.y15{bottom:45.540000px;}
.y28{bottom:46.080000px;}
.yb{bottom:48.960000px;}
.y18a{bottom:49.140000px;}
.y184{bottom:49.320000px;}
.y7{bottom:51.300000px;}
.y167{bottom:52.380000px;}
.y1d3{bottom:53.820000px;}
.y120{bottom:54.540000px;}
.y126{bottom:54.720000px;}
.y123{bottom:55.080000px;}
.y128{bottom:55.110000px;}
.y12{bottom:56.340000px;}
.y2{bottom:58.500000px;}
.y1b5{bottom:59.220000px;}
.y149{bottom:59.940000px;}
.y12b{bottom:59.970000px;}
.y143{bottom:59.985000px;}
.y146{bottom:60.300000px;}
.y189{bottom:69.300000px;}
.y192{bottom:69.480000px;}
.y183{bottom:69.510000px;}
.y11{bottom:70.920000px;}
.y1dd{bottom:71.640000px;}
.y1d2{bottom:73.980000px;}
.y11f{bottom:74.745000px;}
.y169{bottom:74.880000px;}
.y29{bottom:77.040000px;}
.y154{bottom:80.100000px;}
.y13f{bottom:80.145000px;}
.y125{bottom:80.280000px;}
.y148{bottom:85.500000px;}
.y14e{bottom:86.040000px;}
.y188{bottom:89.460000px;}
.y195{bottom:89.490000px;}
.y191{bottom:89.640000px;}
.y182{bottom:89.670000px;}
.y1f8{bottom:90.360000px;}
.y1f7{bottom:90.720000px;}
.y1f9{bottom:91.800000px;}
.y1ec{bottom:94.185000px;}
.y168{bottom:95.040000px;}
.y119{bottom:97.605000px;}
.y1ab{bottom:100.260000px;}
.y11e{bottom:100.305000px;}
.y124{bottom:100.440000px;}
.y153{bottom:105.660000px;}
.y142{bottom:105.705000px;}
.y14d{bottom:106.200000px;}
.yd6{bottom:108.540000px;}
.y187{bottom:109.620000px;}
.y194{bottom:109.650000px;}
.y190{bottom:109.800000px;}
.y181{bottom:109.830000px;}
.y147{bottom:110.880000px;}
.yba{bottom:111.240000px;}
.yf0{bottom:112.320000px;}
.y1eb{bottom:114.165000px;}
.y193{bottom:115.020000px;}
.y15a{bottom:115.920000px;}
.y11d{bottom:120.465000px;}
.yd5{bottom:120.600000px;}
.y112{bottom:121.320000px;}
.yef{bottom:122.760000px;}
.yd4{bottom:124.380000px;}
.y1f4{bottom:125.280000px;}
.y1aa{bottom:125.865000px;}
.y14c{bottom:126.360000px;}
.y1ee{bottom:127.080000px;}
.y1f6{bottom:127.800000px;}
.y186{bottom:129.780000px;}
.y180{bottom:129.810000px;}
.y18f{bottom:129.960000px;}
.y152{bottom:131.220000px;}
.y141{bottom:131.265000px;}
.y1b3{bottom:132.300000px;}
.yb9{bottom:133.020000px;}
.y1ea{bottom:134.325000px;}
.yd3{bottom:134.820000px;}
.y159{bottom:139.140000px;}
.y11c{bottom:140.625000px;}
.y165{bottom:148.140000px;}
.y17f{bottom:149.970000px;}
.y18e{bottom:150.120000px;}
.y1a9{bottom:151.245000px;}
.y140{bottom:151.425000px;}
.y111{bottom:153.360000px;}
.y1e9{bottom:154.485000px;}
.y133{bottom:155.520000px;}
.y8e{bottom:156.600000px;}
.y151{bottom:156.810000px;}
.y1b2{bottom:156.960000px;}
.y1f2{bottom:158.400000px;}
.y13d{bottom:160.380000px;}
.y11b{bottom:160.785000px;}
.yd2{bottom:163.980000px;}
.y1ef{bottom:168.840000px;}
.y18d{bottom:170.325000px;}
.y1e8{bottom:174.645000px;}
.y150{bottom:176.970000px;}
.y8d{bottom:179.820000px;}
.y164{bottom:180.360000px;}
.y1b1{bottom:182.520000px;}
.y110{bottom:184.320000px;}
.yd1{bottom:185.580000px;}
.y11a{bottom:186.165000px;}
.y132{bottom:186.480000px;}
.y13c{bottom:192.630000px;}
.y1ed{bottom:194.430000px;}
.y1e7{bottom:194.805000px;}
.y14f{bottom:202.350000px;}
.y8c{bottom:202.890000px;}
.yd0{bottom:207.390000px;}
.y10f{bottom:209.010000px;}
.y177{bottom:209.550000px;}
.y131{bottom:209.910000px;}
.y163{bottom:212.430000px;}
.y1e6{bottom:214.965000px;}
.y8b{bottom:226.110000px;}
.y13b{bottom:226.290000px;}
.ycf{bottom:229.170000px;}
.y1e5{bottom:235.125000px;}
.y162{bottom:243.390000px;}
.y8a{bottom:249.330000px;}
.yce{bottom:250.950000px;}
.y1e4{bottom:255.285000px;}
.y13a{bottom:257.250000px;}
.y18c{bottom:265.710000px;}
.y161{bottom:268.050000px;}
.y89{bottom:272.370000px;}
.ycd{bottom:272.550000px;}
.y37{bottom:273.090000px;}
.y176{bottom:274.170000px;}
.y1e3{bottom:275.445000px;}
.y139{bottom:281.910000px;}
.ycb{bottom:294.330000px;}
.y1e2{bottom:295.605000px;}
.y175{bottom:299.010000px;}
.ycc{bottom:300.270000px;}
.y88{bottom:304.590000px;}
.y1e1{bottom:315.585000px;}
.yca{bottom:316.110000px;}
.y36{bottom:326.190000px;}
.y87{bottom:335.370000px;}
.yc9{bottom:337.890000px;}
.y1e0{bottom:346.890000px;}
.y86{bottom:360.210000px;}
.y10a{bottom:365.250000px;}
.yc8{bottom:371.550000px;}
.y34{bottom:379.290000px;}
.yc7{bottom:393.330000px;}
.y109{bottom:399.090000px;}
.yc6{bottom:415.110000px;}
.y108{bottom:420.870000px;}
.y65{bottom:426.630000px;}
.y158{bottom:429.510000px;}
.y33{bottom:432.255000px;}
.yc5{bottom:436.755000px;}
.y107{bottom:442.515000px;}
.y157{bottom:445.935000px;}
.y185{bottom:456.915000px;}
.yb8{bottom:457.815000px;}
.y64{bottom:458.715000px;}
.y106{bottom:464.295000px;}
.y32{bottom:465.195000px;}
.yc4{bottom:470.595000px;}
.y156{bottom:475.815000px;}
.yb7{bottom:477.975000px;}
.yee{bottom:485.895000px;}
.y105{bottom:486.075000px;}
.y1cf{bottom:488.415000px;}
.y6{bottom:489.135000px;}
.y63{bottom:490.935000px;}
.y170{bottom:492.375000px;}
.yb6{bottom:498.135000px;}
.yc3{bottom:504.255000px;}
.y31{bottom:506.955000px;}
.yed{bottom:507.675000px;}
.yb5{bottom:518.295000px;}
.y104{bottom:519.735000px;}
.y1ce{bottom:522.255000px;}
.y62{bottom:523.155000px;}
.y14b{bottom:525.855000px;}
.yec{bottom:529.275000px;}
.yc2{bottom:538.095000px;}
.yb4{bottom:538.455000px;}
.y103{bottom:541.515000px;}
.y16f{bottom:546.375000px;}
.y130{bottom:547.815000px;}
.y61{bottom:552.315000px;}
.y1cd{bottom:555.915000px;}
.y30{bottom:556.455000px;}
.yb3{bottom:558.615000px;}
.yc1{bottom:559.695000px;}
.yeb{bottom:563.115000px;}
.y102{bottom:563.295000px;}
.y12f{bottom:564.195000px;}
.y1a3{bottom:565.635000px;}
.y2f{bottom:572.835000px;}
.yb2{bottom:578.775000px;}
.ya{bottom:581.475000px;}
.y101{bottom:585.075000px;}
.y1cc{bottom:589.755000px;}
.y12d{bottom:594.075000px;}
.y60{bottom:596.775000px;}
.yea{bottom:597.675000px;}
.y1a2{bottom:599.295000px;}
.y2e{bottom:605.775000px;}
.y17e{bottom:607.575000px;}
.yb1{bottom:610.815000px;}
.yc0{bottom:615.135000px;}
.y100{bottom:618.735000px;}
.y1cb{bottom:623.415000px;}
.y160{bottom:631.155000px;}
.ye9{bottom:632.235000px;}
.y1a1{bottom:633.135000px;}
.y2c{bottom:638.535000px;}
.yb0{bottom:643.755000px;}
.y127{bottom:644.115000px;}
.y5f{bottom:645.015000px;}
.ybf{bottom:646.095000px;}
.y48{bottom:651.495000px;}
.yff{bottom:652.395000px;}
.y1bb{bottom:652.575000px;}
.y15e{bottom:655.815000px;}
.y138{bottom:656.355000px;}
.y1b0{bottom:656.535000px;}
.y1ca{bottom:657.075000px;}
.y174{bottom:660.495000px;}
.y74{bottom:660.855000px;}
.ye8{bottom:666.795000px;}
.y1b6{bottom:668.235000px;}
.y85{bottom:669.345000px;}
.ybe{bottom:672.405000px;}
.y1af{bottom:673.125000px;}
.y173{bottom:676.185000px;}
.yaf{bottom:676.905000px;}
.y5e{bottom:677.265000px;}
.y2b{bottom:680.325000px;}
.y136{bottom:681.045000px;}
.y15b{bottom:681.405000px;}
.y47{bottom:685.185000px;}
.y73{bottom:686.265000px;}
.y10e{bottom:686.985000px;}
.yfe{bottom:687.165000px;}
.y1dc{bottom:688.065000px;}
.y1c9{bottom:690.945000px;}
.yf{bottom:700.125000px;}
.y1a0{bottom:700.665000px;}
.y84{bottom:701.385000px;}
.ye7{bottom:701.565000px;}
.y171{bottom:701.745000px;}
.y5d{bottom:706.425000px;}
.yae{bottom:709.845000px;}
.y46{bottom:718.845000px;}
.y10d{bottom:719.025000px;}
.yfd{bottom:721.725000px;}
.y19f{bottom:722.265000px;}
.y1ae{bottom:723.165000px;}
.ye6{bottom:723.345000px;}
.y1b4{bottom:724.245000px;}
.y1c8{bottom:724.605000px;}
.y122{bottom:725.865000px;}
.y5c{bottom:726.585000px;}
.y72{bottom:728.205000px;}
.y2a{bottom:729.825000px;}
.y9f{bottom:734.145000px;}
.y83{bottom:734.505000px;}
.yad{bottom:742.065000px;}
.ye5{bottom:744.945000px;}
.y27{bottom:746.385000px;}
.y5b{bottom:746.745000px;}
.y10c{bottom:749.985000px;}
.y145{bottom:750.165000px;}
.y45{bottom:751.065000px;}
.y1ac{bottom:753.045000px;}
.y19e{bottom:756.105000px;}
.yfc{bottom:756.285000px;}
.y82{bottom:757.725000px;}
.y1c7{bottom:758.445000px;}
.yac{bottom:762.225000px;}
.y9e{bottom:766.365000px;}
.ye4{bottom:766.725000px;}
.y5a{bottom:766.905000px;}
.y71{bottom:769.965000px;}
.y10b{bottom:771.765000px;}
.y17d{bottom:778.425000px;}
.y1c6{bottom:780.045000px;}
.y44{bottom:781.485000px;}
.y1db{bottom:785.085000px;}
.y59{bottom:787.065000px;}
.ye3{bottom:788.505000px;}
.y19d{bottom:789.765000px;}
.y81{bottom:790.665000px;}
.yfb{bottom:791.025000px;}
.yab{bottom:794.265000px;}
.y9d{bottom:798.585000px;}
.y1c5{bottom:801.825000px;}
.y1a8{bottom:803.085000px;}
.y58{bottom:807.225000px;}
.ye1{bottom:810.285000px;}
.y16e{bottom:811.365000px;}
.y19c{bottom:811.545000px;}
.y70{bottom:811.905000px;}
.y80{bottom:813.885000px;}
.y43{bottom:815.325000px;}
.ye2{bottom:816.225000px;}
.y9c{bottom:821.625000px;}
.y17c{bottom:823.605000px;}
.yfa{bottom:825.585000px;}
.y57{bottom:827.205000px;}
.yaa{bottom:827.385000px;}
.y16d{bottom:827.745000px;}
.y1d9{bottom:830.805000px;}
.ye0{bottom:831.885000px;}
.y7f{bottom:837.105000px;}
.y42{bottom:841.785000px;}
.y9b{bottom:844.845000px;}
.y1c4{bottom:845.385000px;}
.y19b{bottom:846.105000px;}
.y56{bottom:847.365000px;}
.ya9{bottom:847.545000px;}
.y118{bottom:848.085000px;}
.y26{bottom:850.605000px;}
.ydf{bottom:853.665000px;}
.y6f{bottom:853.845000px;}
.y17b{bottom:854.385000px;}
.y16c{bottom:857.625000px;}
.yf9{bottom:859.245000px;}
.y1c3{bottom:866.985000px;}
.y55{bottom:867.525000px;}
.y41{bottom:868.965000px;}
.y7e{bottom:869.145000px;}
.yde{bottom:875.445000px;}
.y9a{bottom:877.065000px;}
.y1d8{bottom:877.425000px;}
.ya8{bottom:880.485000px;}
.y19a{bottom:880.845000px;}
.yf8{bottom:881.025000px;}
.y13e{bottom:883.005000px;}
.y54{bottom:887.685000px;}
.y1c2{bottom:888.765000px;}
.y17a{bottom:888.945000px;}
.y7d{bottom:892.365000px;}
.y24{bottom:893.085000px;}
.y6d{bottom:895.785000px;}
.y99{bottom:900.105000px;}
.ya7{bottom:900.645000px;}
.y40{bottom:902.805000px;}
.y16a{bottom:907.710000px;}
.y53{bottom:907.890000px;}
.ydd{bottom:909.150000px;}
.y199{bottom:915.450000px;}
.y7c{bottom:915.630000px;}
.y1c1{bottom:922.650000px;}
.y1d6{bottom:923.190000px;}
.y98{bottom:923.370000px;}
.y179{bottom:923.730000px;}
.yf7{bottom:924.630000px;}
.y52{bottom:928.050000px;}
.y3f{bottom:929.310000px;}
.ya6{bottom:933.810000px;}
.y23{bottom:935.790000px;}
.y198{bottom:937.230000px;}
.y6c{bottom:937.770000px;}
.y166{bottom:938.490000px;}
.y7b{bottom:938.670000px;}
.ydc{bottom:942.990000px;}
.y1c0{bottom:944.250000px;}
.y178{bottom:945.330000px;}
.y97{bottom:946.590000px;}
.y51{bottom:948.210000px;}
.ya5{bottom:953.970000px;}
.y3e{bottom:955.770000px;}
.yf6{bottom:958.290000px;}
.y7a{bottom:961.890000px;}
.y1bf{bottom:966.030000px;}
.y50{bottom:968.370000px;}
.y1d1{bottom:968.730000px;}
.y96{bottom:969.630000px;}
.y197{bottom:971.790000px;}
.ya4{bottom:973.950000px;}
.y1a7{bottom:975.390000px;}
.ydb{bottom:976.650000px;}
.y1f{bottom:978.270000px;}
.y6b{bottom:979.710000px;}
.yf5{bottom:980.070000px;}
.y3d{bottom:982.230000px;}
.y79{bottom:985.110000px;}
.y1be{bottom:987.810000px;}
.y4f{bottom:988.530000px;}
.y95{bottom:992.850000px;}
.ya3{bottom:994.110000px;}
.yda{bottom:998.430000px;}
.yf4{bottom:1001.850000px;}
.y1a6{bottom:1005.270000px;}
.y196{bottom:1006.350000px;}
.y78{bottom:1008.150000px;}
.y4e{bottom:1008.690000px;}
.y3c{bottom:1009.590000px;}
.ya2{bottom:1014.270000px;}
.yd9{bottom:1020.210000px;}
.y1bd{bottom:1021.470000px;}
.y69{bottom:1021.650000px;}
.yf3{bottom:1023.450000px;}
.y94{bottom:1025.070000px;}
.y4d{bottom:1028.670000px;}
.y1a5{bottom:1035.150000px;}
.y77{bottom:1040.370000px;}
.y1c{bottom:1040.910000px;}
.yd8{bottom:1041.810000px;}
.y1bc{bottom:1043.250000px;}
.y3b{bottom:1044.150000px;}
.yf2{bottom:1045.230000px;}
.ya1{bottom:1046.490000px;}
.y93{bottom:1048.110000px;}
.y4c{bottom:1048.830000px;}
.y116{bottom:1055.310000px;}
.y67{bottom:1063.410000px;}
.y76{bottom:1063.590000px;}
.y1a4{bottom:1065.030000px;}
.ya0{bottom:1066.650000px;}
.y4b{bottom:1068.990000px;}
.y92{bottom:1071.330000px;}
.ybd{bottom:1075.650000px;}
.y3a{bottom:1078.890000px;}
.yf1{bottom:1082.490000px;}
.y1a{bottom:1083.390000px;}
.y114{bottom:1085.190000px;}
.yd7{bottom:1085.370000px;}
.y75{bottom:1086.810000px;}
.y4a{bottom:1089.150000px;}
.y1d0{bottom:1091.310000px;}
.y91{bottom:1094.550000px;}
.ybc{bottom:1097.430000px;}
.y5{bottom:1108.590000px;}
.y90{bottom:1117.590000px;}
.ybb{bottom:1119.030000px;}
.y19{bottom:1124.970000px;}
.y39{bottom:1127.490000px;}
.y66{bottom:1127.850000px;}
.y4{bottom:1131.810000px;}
.y49{bottom:1133.610000px;}
.y113{bottom:1136.490000px;}
.y8f{bottom:1140.810000px;}
.y1f0{bottom:1161.900000px;}
.y1{bottom:1194.120000px;}
.h51{height:19.800000px;}
.h50{height:22.860000px;}
.h4e{height:23.040000px;}
.h2f{height:25.380000px;}
.h39{height:25.560000px;}
.h34{height:25.596000px;}
.h24{height:26.838984px;}
.h28{height:28.980000px;}
.h27{height:29.160000px;}
.h36{height:30.060000px;}
.h9{height:30.240000px;}
.hd{height:32.040000px;}
.h14{height:32.220000px;}
.h13{height:32.256000px;}
.h4c{height:33.120000px;}
.h25{height:40.964766px;}
.h1e{height:41.040000px;}
.h1d{height:41.220000px;}
.h1f{height:41.256000px;}
.h23{height:41.535703px;}
.he{height:41.580000px;}
.h11{height:41.760000px;}
.h10{height:41.796000px;}
.h22{height:43.400391px;}
.h2d{height:44.053594px;}
.h45{height:44.820000px;}
.h46{height:44.856000px;}
.h48{height:45.000000px;}
.h47{height:45.900000px;}
.h3e{height:49.140000px;}
.h2c{height:49.320000px;}
.h37{height:49.356000px;}
.ha{height:49.394180px;}
.h3f{height:50.585625px;}
.h16{height:52.200000px;}
.h15{height:52.236000px;}
.h17{height:52.380000px;}
.h2{height:53.237812px;}
.h4f{height:53.709961px;}
.h42{height:56.016000px;}
.h4d{height:61.189805px;}
.hf{height:61.740000px;}
.h44{height:63.070312px;}
.h4{height:65.884219px;}
.h3{height:67.824844px;}
.h21{height:68.084282px;}
.hb{height:70.380000px;}
.h6{height:71.613281px;}
.h1a{height:71.740898px;}
.h1b{height:71.920898px;}
.h5{height:77.400000px;}
.h2b{height:81.036000px;}
.h19{height:86.255508px;}
.h26{height:87.695156px;}
.h18{height:91.177734px;}
.h7{height:93.636000px;}
.h49{height:96.300000px;}
.h43{height:98.640000px;}
.h12{height:103.500000px;}
.h1c{height:114.486328px;}
.h35{height:115.920000px;}
.h2a{height:121.500000px;}
.h20{height:125.171719px;}
.hc{height:125.455078px;}
.h31{height:131.940000px;}
.h8{height:148.955625px;}
.h3b{height:149.940000px;}
.h3d{height:149.976000px;}
.h4b{height:151.740000px;}
.h3a{height:170.130000px;}
.h30{height:171.390000px;}
.h3c{height:190.290000px;}
.h29{height:206.310000px;}
.h32{height:223.410000px;}
.h4a{height:340.275000px;}
.h41{height:432.255000px;}
.h33{height:444.270000px;}
.h2e{height:450.075000px;}
.h38{height:454.755000px;}
.h40{height:459.075000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:76.140000px;}
.w24{width:99.180000px;}
.w20{width:101.520000px;}
.w1f{width:106.920000px;}
.w23{width:110.376000px;}
.w1e{width:122.580000px;}
.w21{width:122.616000px;}
.wf{width:126.936000px;}
.w15{width:147.780000px;}
.w1b{width:148.860000px;}
.w1d{width:151.950000px;}
.wa{width:168.510000px;}
.w9{width:168.690000px;}
.wb{width:169.050000px;}
.wc{width:171.390000px;}
.w7{width:171.930000px;}
.w22{width:180.030000px;}
.w12{width:190.290000px;}
.w10{width:237.270000px;}
.w11{width:237.855000px;}
.w5{width:252.975000px;}
.w17{width:339.735000px;}
.w18{width:339.915000px;}
.w1c{width:340.275000px;}
.w6{width:352.800000px;}
.w3{width:483.765000px;}
.w4{width:485.205000px;}
.w13{width:487.725000px;}
.w8{width:507.705000px;}
.wd{width:508.245000px;}
.w16{width:530.430000px;}
.w1a{width:679.650000px;}
.w19{width:690.090000px;}
.w14{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:8.100000px;}
.x4c{left:9.360000px;}
.x6{left:10.800000px;}
.x13{left:12.060000px;}
.x40{left:13.320000px;}
.x3e{left:15.660000px;}
.x1d{left:18.720000px;}
.x41{left:20.160000px;}
.x59{left:22.140000px;}
.x1b{left:23.580000px;}
.x1a{left:27.720000px;}
.x3f{left:29.025000px;}
.x47{left:32.220000px;}
.x3b{left:33.300000px;}
.x9{left:36.899987px;}
.x1e{left:41.220000px;}
.x42{left:42.480000px;}
.x3d{left:43.734000px;}
.x15{left:47.160000px;}
.x48{left:48.420000px;}
.x25{left:50.394000px;}
.x17{left:51.660000px;}
.x1f{left:55.620000px;}
.x56{left:58.674000px;}
.xc{left:68.505000px;}
.x2b{left:77.394000px;}
.x2a{left:79.014000px;}
.x20{left:80.280000px;}
.x29{left:83.334000px;}
.x2c{left:84.414000px;}
.x19{left:86.265000px;}
.x28{left:89.994000px;}
.x1c{left:95.985000px;}
.x58{left:104.394000px;}
.x4{left:106.415987px;}
.x34{left:109.835987px;}
.x35{left:119.195987px;}
.x5a{left:120.960000px;}
.x5f{left:124.776000px;}
.xb{left:128.310000px;}
.x22{left:148.895987px;}
.x54{left:150.699000px;}
.x53{left:164.739000px;}
.x55{left:167.439000px;}
.x52{left:177.699000px;}
.x14{left:183.270000px;}
.x32{left:197.849973px;}
.x2e{left:203.249987px;}
.x27{left:204.510000px;}
.x31{left:245.729987px;}
.x3c{left:255.630000px;}
.x5d{left:264.315000px;}
.x3{left:271.514987px;}
.x4e{left:274.934987px;}
.x51{left:277.959000px;}
.x10{left:279.075000px;}
.x4f{left:294.194987px;}
.x39{left:295.814987px;}
.x26{left:298.335000px;}
.x3a{left:300.134987px;}
.x16{left:310.935000px;}
.x44{left:316.514987px;}
.x30{left:319.394987px;}
.x33{left:322.454987px;}
.x4b{left:323.865000px;}
.x45{left:325.329000px;}
.x50{left:327.315000px;}
.x57{left:328.575000px;}
.xe{left:339.120000px;}
.x37{left:350.534973px;}
.x38{left:355.754987px;}
.x5b{left:359.580000px;}
.x21{left:368.894987px;}
.x23{left:386.174987px;}
.x24{left:390.314987px;}
.x5e{left:393.015000px;}
.x8{left:402.555000px;}
.x7{left:404.175000px;}
.x5{left:409.215000px;}
.x5c{left:425.415000px;}
.x46{left:446.145000px;}
.x11{left:448.485000px;}
.x60{left:451.005000px;}
.xa{left:511.560000px;}
.x18{left:548.925000px;}
.xd{left:605.489987px;}
.x12{left:617.730000px;}
.x4d{left:653.009987px;}
.x49{left:659.489987px;}
.x1{left:683.969987px;}
.x2f{left:735.089987px;}
.x43{left:736.169987px;}
.x4a{left:739.229987px;}
.x36{left:769.829987px;}
.x2{left:778.319987px;}
.x2d{left:786.779987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:21.120000pt;}
.v3{vertical-align:26.986667pt;}
.ls21{letter-spacing:-0.757333pt;}
.ls34{letter-spacing:-0.682667pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls2b{letter-spacing:-0.576000pt;}
.ls1b{letter-spacing:-0.524800pt;}
.ls1e{letter-spacing:-0.514667pt;}
.ls39{letter-spacing:-0.419733pt;}
.ls26{letter-spacing:-0.327467pt;}
.ls24{letter-spacing:-0.288000pt;}
.ls3b{letter-spacing:-0.275200pt;}
.ls10{letter-spacing:-0.225067pt;}
.ls3e{letter-spacing:-0.224000pt;}
.ls9{letter-spacing:-0.204267pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls3c{letter-spacing:-0.184533pt;}
.ls3a{letter-spacing:-0.171733pt;}
.ls8{letter-spacing:-0.153067pt;}
.ls20{letter-spacing:-0.146133pt;}
.lsa{letter-spacing:-0.128000pt;}
.lsc{letter-spacing:-0.125867pt;}
.ls11{letter-spacing:-0.122667pt;}
.lsd{letter-spacing:-0.117867pt;}
.ls2d{letter-spacing:-0.109867pt;}
.ls1c{letter-spacing:-0.102400pt;}
.ls2a{letter-spacing:-0.090667pt;}
.ls1f{letter-spacing:-0.043520pt;}
.ls6{letter-spacing:-0.023040pt;}
.ls32{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.053867pt;}
.ls33{letter-spacing:0.066667pt;}
.ls3{letter-spacing:0.076800pt;}
.ls3d{letter-spacing:0.079360pt;}
.ls36{letter-spacing:0.089600pt;}
.ls2{letter-spacing:0.117760pt;}
.ls31{letter-spacing:0.117867pt;}
.ls14{letter-spacing:0.125440pt;}
.ls2f{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.205867pt;}
.ls12{letter-spacing:0.211840pt;}
.ls4{letter-spacing:0.227733pt;}
.ls23{letter-spacing:0.257707pt;}
.ls0{letter-spacing:0.266240pt;}
.ls5{letter-spacing:0.278933pt;}
.ls16{letter-spacing:0.293120pt;}
.ls29{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.330133pt;}
.ls27{letter-spacing:1.413120pt;}
.ls28{letter-spacing:2.693120pt;}
.ls18{letter-spacing:3.973120pt;}
.ls35{letter-spacing:7.173120pt;}
.ls19{letter-spacing:9.093120pt;}
.ls38{letter-spacing:14.213120pt;}
.ls37{letter-spacing:14.853120pt;}
.ls22{letter-spacing:14.991360pt;}
.ls15{letter-spacing:18.053120pt;}
.ls30{letter-spacing:21.893120pt;}
.ls2e{letter-spacing:32.271360pt;}
.ls17{letter-spacing:32.911360pt;}
.ls2c{letter-spacing:77.082027pt;}
.ls7{letter-spacing:98.816000pt;}
.ls13{letter-spacing:107.866027pt;}
.ws17{word-spacing:-58.880000pt;}
.ws23{word-spacing:-48.000000pt;}
.ws25{word-spacing:-24.154880pt;}
.ws7{word-spacing:-16.922880pt;}
.ws8{word-spacing:-16.769813pt;}
.ws9{word-spacing:-16.718613pt;}
.wsb{word-spacing:-14.656000pt;}
.wsa{word-spacing:-14.336000pt;}
.ws12{word-spacing:-13.637013pt;}
.ws5{word-spacing:-13.585813pt;}
.ws4{word-spacing:-13.534613pt;}
.ws21{word-spacing:-13.424747pt;}
.ws24{word-spacing:-13.396480pt;}
.ws2{word-spacing:-13.383680pt;}
.ws1f{word-spacing:-13.373547pt;}
.wsf{word-spacing:-13.360747pt;}
.ws3{word-spacing:-13.306880pt;}
.ws6{word-spacing:-13.283840pt;}
.ws18{word-spacing:-13.263360pt;}
.ws14{word-spacing:-13.204480pt;}
.wsd{word-spacing:-13.189013pt;}
.ws11{word-spacing:-13.184213pt;}
.ws19{word-spacing:-13.160747pt;}
.ws27{word-spacing:-13.122347pt;}
.ws15{word-spacing:-13.114880pt;}
.ws10{word-spacing:-13.081813pt;}
.ws16{word-spacing:-12.792213pt;}
.ws13{word-spacing:-12.782080pt;}
.ws1c{word-spacing:-12.730880pt;}
.ws20{word-spacing:-12.624213pt;}
.ws28{word-spacing:-12.005120pt;}
.ws29{word-spacing:-10.848000pt;}
.ws1e{word-spacing:-10.832000pt;}
.ws2a{word-spacing:-10.624000pt;}
.ws1{word-spacing:-9.690880pt;}
.wsc{word-spacing:-9.565013pt;}
.ws1d{word-spacing:-9.280000pt;}
.wse{word-spacing:-8.594987pt;}
.ws1b{word-spacing:-8.298453pt;}
.ws26{word-spacing:-8.113920pt;}
.ws1a{word-spacing:-8.101120pt;}
.ws22{word-spacing:-7.424000pt;}
.ws0{word-spacing:0.000000pt;}
._7{margin-left:-15.634133pt;}
._9{margin-left:-13.557013pt;}
._c{margin-left:-11.962027pt;}
._e{margin-left:-10.913280pt;}
._4{margin-left:-9.107840pt;}
._b{margin-left:-7.487147pt;}
._d{margin-left:-5.854507pt;}
._8{margin-left:-4.348587pt;}
._6{margin-left:-3.234560pt;}
._5{margin-left:-2.298240pt;}
._0{margin-left:-0.954880pt;}
._2{width:1.099947pt;}
._3{width:2.160853pt;}
._f{width:3.536640pt;}
._14{width:4.488533pt;}
._18{width:5.666987pt;}
._19{width:6.581760pt;}
._15{width:7.889920pt;}
._16{width:8.832000pt;}
._12{width:10.245120pt;}
._10{width:11.504640pt;}
._11{width:12.414933pt;}
._17{width:15.073280pt;}
._1b{width:16.046080pt;}
._13{width:17.466027pt;}
._1d{width:18.540373pt;}
._1e{width:20.677120pt;}
._1c{width:21.816320pt;}
._21{width:23.552000pt;}
._20{width:24.494080pt;}
._a{width:25.450667pt;}
._1a{width:27.178667pt;}
._24{width:37.624320pt;}
._23{width:39.685120pt;}
._1f{width:52.945920pt;}
._22{width:77.073920pt;}
._1{width:754.831787pt;}
.fsa{font-size:24.320000pt;}
.fsb{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs8{font-size:106.880000pt;}
.fs4{font-size:117.120000pt;}
.fs2{font-size:133.120000pt;}
.ye{bottom:-54.080000pt;}
.yd{bottom:-28.160000pt;}
.y9{bottom:-9.440000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.880000pt;}
.y10{bottom:3.680000pt;}
.y15d{bottom:3.840000pt;}
.y134{bottom:4.000000pt;}
.y135{bottom:4.960000pt;}
.y15c{bottom:5.920000pt;}
.y172{bottom:6.080000pt;}
.y137{bottom:7.040000pt;}
.y15f{bottom:7.200000pt;}
.y117{bottom:7.840000pt;}
.y115{bottom:8.000000pt;}
.y16b{bottom:8.480000pt;}
.y1f1{bottom:8.640000pt;}
.y1f5{bottom:8.800000pt;}
.y1f3{bottom:8.960000pt;}
.y1b{bottom:9.120000pt;}
.y2d{bottom:9.280000pt;}
.y1df{bottom:11.840000pt;}
.y1d5{bottom:12.000000pt;}
.y12a{bottom:13.120000pt;}
.y1e{bottom:13.440000pt;}
.y1b8{bottom:13.466667pt;}
.y22{bottom:13.600000pt;}
.y1ba{bottom:13.626667pt;}
.y25{bottom:13.640000pt;}
.y18{bottom:14.240000pt;}
.y6a{bottom:14.560000pt;}
.y68{bottom:14.720000pt;}
.y6e{bottom:14.760000pt;}
.y1d{bottom:15.680000pt;}
.y1ad{bottom:16.800000pt;}
.y12e{bottom:16.960000pt;}
.y1d7{bottom:17.920000pt;}
.y8{bottom:18.080000pt;}
.y38{bottom:18.240000pt;}
.y1da{bottom:18.880000pt;}
.y20{bottom:22.400000pt;}
.y14{bottom:23.360000pt;}
.y18b{bottom:25.760000pt;}
.y121{bottom:25.920000pt;}
.y35{bottom:27.200000pt;}
.y16{bottom:27.360000pt;}
.y1b7{bottom:28.186667pt;}
.y1d4{bottom:29.920000pt;}
.y1b9{bottom:30.426667pt;}
.y14a{bottom:30.560000pt;}
.y12c{bottom:30.586667pt;}
.y144{bottom:30.600000pt;}
.y155{bottom:30.720000pt;}
.y129{bottom:31.066667pt;}
.y21{bottom:31.520000pt;}
.y3{bottom:34.080000pt;}
.y13{bottom:36.800000pt;}
.y17{bottom:37.600000pt;}
.y1de{bottom:37.760000pt;}
.y15{bottom:40.480000pt;}
.y28{bottom:40.960000pt;}
.yb{bottom:43.520000pt;}
.y18a{bottom:43.680000pt;}
.y184{bottom:43.840000pt;}
.y7{bottom:45.600000pt;}
.y167{bottom:46.560000pt;}
.y1d3{bottom:47.840000pt;}
.y120{bottom:48.480000pt;}
.y126{bottom:48.640000pt;}
.y123{bottom:48.960000pt;}
.y128{bottom:48.986667pt;}
.y12{bottom:50.080000pt;}
.y2{bottom:52.000000pt;}
.y1b5{bottom:52.640000pt;}
.y149{bottom:53.280000pt;}
.y12b{bottom:53.306667pt;}
.y143{bottom:53.320000pt;}
.y146{bottom:53.600000pt;}
.y189{bottom:61.600000pt;}
.y192{bottom:61.760000pt;}
.y183{bottom:61.786667pt;}
.y11{bottom:63.040000pt;}
.y1dd{bottom:63.680000pt;}
.y1d2{bottom:65.760000pt;}
.y11f{bottom:66.440000pt;}
.y169{bottom:66.560000pt;}
.y29{bottom:68.480000pt;}
.y154{bottom:71.200000pt;}
.y13f{bottom:71.240000pt;}
.y125{bottom:71.360000pt;}
.y148{bottom:76.000000pt;}
.y14e{bottom:76.480000pt;}
.y188{bottom:79.520000pt;}
.y195{bottom:79.546667pt;}
.y191{bottom:79.680000pt;}
.y182{bottom:79.706667pt;}
.y1f8{bottom:80.320000pt;}
.y1f7{bottom:80.640000pt;}
.y1f9{bottom:81.600000pt;}
.y1ec{bottom:83.720000pt;}
.y168{bottom:84.480000pt;}
.y119{bottom:86.760000pt;}
.y1ab{bottom:89.120000pt;}
.y11e{bottom:89.160000pt;}
.y124{bottom:89.280000pt;}
.y153{bottom:93.920000pt;}
.y142{bottom:93.960000pt;}
.y14d{bottom:94.400000pt;}
.yd6{bottom:96.480000pt;}
.y187{bottom:97.440000pt;}
.y194{bottom:97.466667pt;}
.y190{bottom:97.600000pt;}
.y181{bottom:97.626667pt;}
.y147{bottom:98.560000pt;}
.yba{bottom:98.880000pt;}
.yf0{bottom:99.840000pt;}
.y1eb{bottom:101.480000pt;}
.y193{bottom:102.240000pt;}
.y15a{bottom:103.040000pt;}
.y11d{bottom:107.080000pt;}
.yd5{bottom:107.200000pt;}
.y112{bottom:107.840000pt;}
.yef{bottom:109.120000pt;}
.yd4{bottom:110.560000pt;}
.y1f4{bottom:111.360000pt;}
.y1aa{bottom:111.880000pt;}
.y14c{bottom:112.320000pt;}
.y1ee{bottom:112.960000pt;}
.y1f6{bottom:113.600000pt;}
.y186{bottom:115.360000pt;}
.y180{bottom:115.386667pt;}
.y18f{bottom:115.520000pt;}
.y152{bottom:116.640000pt;}
.y141{bottom:116.680000pt;}
.y1b3{bottom:117.600000pt;}
.yb9{bottom:118.240000pt;}
.y1ea{bottom:119.400000pt;}
.yd3{bottom:119.840000pt;}
.y159{bottom:123.680000pt;}
.y11c{bottom:125.000000pt;}
.y165{bottom:131.680000pt;}
.y17f{bottom:133.306667pt;}
.y18e{bottom:133.440000pt;}
.y1a9{bottom:134.440000pt;}
.y140{bottom:134.600000pt;}
.y111{bottom:136.320000pt;}
.y1e9{bottom:137.320000pt;}
.y133{bottom:138.240000pt;}
.y8e{bottom:139.200000pt;}
.y151{bottom:139.386667pt;}
.y1b2{bottom:139.520000pt;}
.y1f2{bottom:140.800000pt;}
.y13d{bottom:142.560000pt;}
.y11b{bottom:142.920000pt;}
.yd2{bottom:145.760000pt;}
.y1ef{bottom:150.080000pt;}
.y18d{bottom:151.400000pt;}
.y1e8{bottom:155.240000pt;}
.y150{bottom:157.306667pt;}
.y8d{bottom:159.840000pt;}
.y164{bottom:160.320000pt;}
.y1b1{bottom:162.240000pt;}
.y110{bottom:163.840000pt;}
.yd1{bottom:164.960000pt;}
.y11a{bottom:165.480000pt;}
.y132{bottom:165.760000pt;}
.y13c{bottom:171.226667pt;}
.y1ed{bottom:172.826667pt;}
.y1e7{bottom:173.160000pt;}
.y14f{bottom:179.866667pt;}
.y8c{bottom:180.346667pt;}
.yd0{bottom:184.346667pt;}
.y10f{bottom:185.786667pt;}
.y177{bottom:186.266667pt;}
.y131{bottom:186.586667pt;}
.y163{bottom:188.826667pt;}
.y1e6{bottom:191.080000pt;}
.y8b{bottom:200.986667pt;}
.y13b{bottom:201.146667pt;}
.ycf{bottom:203.706667pt;}
.y1e5{bottom:209.000000pt;}
.y162{bottom:216.346667pt;}
.y8a{bottom:221.626667pt;}
.yce{bottom:223.066667pt;}
.y1e4{bottom:226.920000pt;}
.y13a{bottom:228.666667pt;}
.y18c{bottom:236.186667pt;}
.y161{bottom:238.266667pt;}
.y89{bottom:242.106667pt;}
.ycd{bottom:242.266667pt;}
.y37{bottom:242.746667pt;}
.y176{bottom:243.706667pt;}
.y1e3{bottom:244.840000pt;}
.y139{bottom:250.586667pt;}
.ycb{bottom:261.626667pt;}
.y1e2{bottom:262.760000pt;}
.y175{bottom:265.786667pt;}
.ycc{bottom:266.906667pt;}
.y88{bottom:270.746667pt;}
.y1e1{bottom:280.520000pt;}
.yca{bottom:280.986667pt;}
.y36{bottom:289.946667pt;}
.y87{bottom:298.106667pt;}
.yc9{bottom:300.346667pt;}
.y1e0{bottom:308.346667pt;}
.y86{bottom:320.186667pt;}
.y10a{bottom:324.666667pt;}
.yc8{bottom:330.266667pt;}
.y34{bottom:337.146667pt;}
.yc7{bottom:349.626667pt;}
.y109{bottom:354.746667pt;}
.yc6{bottom:368.986667pt;}
.y108{bottom:374.106667pt;}
.y65{bottom:379.226667pt;}
.y158{bottom:381.786667pt;}
.y33{bottom:384.226667pt;}
.yc5{bottom:388.226667pt;}
.y107{bottom:393.346667pt;}
.y157{bottom:396.386667pt;}
.y185{bottom:406.146667pt;}
.yb8{bottom:406.946667pt;}
.y64{bottom:407.746667pt;}
.y106{bottom:412.706667pt;}
.y32{bottom:413.506667pt;}
.yc4{bottom:418.306667pt;}
.y156{bottom:422.946667pt;}
.yb7{bottom:424.866667pt;}
.yee{bottom:431.906667pt;}
.y105{bottom:432.066667pt;}
.y1cf{bottom:434.146667pt;}
.y6{bottom:434.786667pt;}
.y63{bottom:436.386667pt;}
.y170{bottom:437.666667pt;}
.yb6{bottom:442.786667pt;}
.yc3{bottom:448.226667pt;}
.y31{bottom:450.626667pt;}
.yed{bottom:451.266667pt;}
.yb5{bottom:460.706667pt;}
.y104{bottom:461.986667pt;}
.y1ce{bottom:464.226667pt;}
.y62{bottom:465.026667pt;}
.y14b{bottom:467.426667pt;}
.yec{bottom:470.466667pt;}
.yc2{bottom:478.306667pt;}
.yb4{bottom:478.626667pt;}
.y103{bottom:481.346667pt;}
.y16f{bottom:485.666667pt;}
.y130{bottom:486.946667pt;}
.y61{bottom:490.946667pt;}
.y1cd{bottom:494.146667pt;}
.y30{bottom:494.626667pt;}
.yb3{bottom:496.546667pt;}
.yc1{bottom:497.506667pt;}
.yeb{bottom:500.546667pt;}
.y102{bottom:500.706667pt;}
.y12f{bottom:501.506667pt;}
.y1a3{bottom:502.786667pt;}
.y2f{bottom:509.186667pt;}
.yb2{bottom:514.466667pt;}
.ya{bottom:516.866667pt;}
.y101{bottom:520.066667pt;}
.y1cc{bottom:524.226667pt;}
.y12d{bottom:528.066667pt;}
.y60{bottom:530.466667pt;}
.yea{bottom:531.266667pt;}
.y1a2{bottom:532.706667pt;}
.y2e{bottom:538.466667pt;}
.y17e{bottom:540.066667pt;}
.yb1{bottom:542.946667pt;}
.yc0{bottom:546.786667pt;}
.y100{bottom:549.986667pt;}
.y1cb{bottom:554.146667pt;}
.y160{bottom:561.026667pt;}
.ye9{bottom:561.986667pt;}
.y1a1{bottom:562.786667pt;}
.y2c{bottom:567.586667pt;}
.yb0{bottom:572.226667pt;}
.y127{bottom:572.546667pt;}
.y5f{bottom:573.346667pt;}
.ybf{bottom:574.306667pt;}
.y48{bottom:579.106667pt;}
.yff{bottom:579.906667pt;}
.y1bb{bottom:580.066667pt;}
.y15e{bottom:582.946667pt;}
.y138{bottom:583.426667pt;}
.y1b0{bottom:583.586667pt;}
.y1ca{bottom:584.066667pt;}
.y174{bottom:587.106667pt;}
.y74{bottom:587.426667pt;}
.ye8{bottom:592.706667pt;}
.y1b6{bottom:593.986667pt;}
.y85{bottom:594.973333pt;}
.ybe{bottom:597.693333pt;}
.y1af{bottom:598.333333pt;}
.y173{bottom:601.053333pt;}
.yaf{bottom:601.693333pt;}
.y5e{bottom:602.013333pt;}
.y2b{bottom:604.733333pt;}
.y136{bottom:605.373333pt;}
.y15b{bottom:605.693333pt;}
.y47{bottom:609.053333pt;}
.y73{bottom:610.013333pt;}
.y10e{bottom:610.653333pt;}
.yfe{bottom:610.813333pt;}
.y1dc{bottom:611.613333pt;}
.y1c9{bottom:614.173333pt;}
.yf{bottom:622.333333pt;}
.y1a0{bottom:622.813333pt;}
.y84{bottom:623.453333pt;}
.ye7{bottom:623.613333pt;}
.y171{bottom:623.773333pt;}
.y5d{bottom:627.933333pt;}
.yae{bottom:630.973333pt;}
.y46{bottom:638.973333pt;}
.y10d{bottom:639.133333pt;}
.yfd{bottom:641.533333pt;}
.y19f{bottom:642.013333pt;}
.y1ae{bottom:642.813333pt;}
.ye6{bottom:642.973333pt;}
.y1b4{bottom:643.773333pt;}
.y1c8{bottom:644.093333pt;}
.y122{bottom:645.213333pt;}
.y5c{bottom:645.853333pt;}
.y72{bottom:647.293333pt;}
.y2a{bottom:648.733333pt;}
.y9f{bottom:652.573333pt;}
.y83{bottom:652.893333pt;}
.yad{bottom:659.613333pt;}
.ye5{bottom:662.173333pt;}
.y27{bottom:663.453333pt;}
.y5b{bottom:663.773333pt;}
.y10c{bottom:666.653333pt;}
.y145{bottom:666.813333pt;}
.y45{bottom:667.613333pt;}
.y1ac{bottom:669.373333pt;}
.y19e{bottom:672.093333pt;}
.yfc{bottom:672.253333pt;}
.y82{bottom:673.533333pt;}
.y1c7{bottom:674.173333pt;}
.yac{bottom:677.533333pt;}
.y9e{bottom:681.213333pt;}
.ye4{bottom:681.533333pt;}
.y5a{bottom:681.693333pt;}
.y71{bottom:684.413333pt;}
.y10b{bottom:686.013333pt;}
.y17d{bottom:691.933333pt;}
.y1c6{bottom:693.373333pt;}
.y44{bottom:694.653333pt;}
.y1db{bottom:697.853333pt;}
.y59{bottom:699.613333pt;}
.ye3{bottom:700.893333pt;}
.y19d{bottom:702.013333pt;}
.y81{bottom:702.813333pt;}
.yfb{bottom:703.133333pt;}
.yab{bottom:706.013333pt;}
.y9d{bottom:709.853333pt;}
.y1c5{bottom:712.733333pt;}
.y1a8{bottom:713.853333pt;}
.y58{bottom:717.533333pt;}
.ye1{bottom:720.253333pt;}
.y16e{bottom:721.213333pt;}
.y19c{bottom:721.373333pt;}
.y70{bottom:721.693333pt;}
.y80{bottom:723.453333pt;}
.y43{bottom:724.733333pt;}
.ye2{bottom:725.533333pt;}
.y9c{bottom:730.333333pt;}
.y17c{bottom:732.093333pt;}
.yfa{bottom:733.853333pt;}
.y57{bottom:735.293333pt;}
.yaa{bottom:735.453333pt;}
.y16d{bottom:735.773333pt;}
.y1d9{bottom:738.493333pt;}
.ye0{bottom:739.453333pt;}
.y7f{bottom:744.093333pt;}
.y42{bottom:748.253333pt;}
.y9b{bottom:750.973333pt;}
.y1c4{bottom:751.453333pt;}
.y19b{bottom:752.093333pt;}
.y56{bottom:753.213333pt;}
.ya9{bottom:753.373333pt;}
.y118{bottom:753.853333pt;}
.y26{bottom:756.093333pt;}
.ydf{bottom:758.813333pt;}
.y6f{bottom:758.973333pt;}
.y17b{bottom:759.453333pt;}
.y16c{bottom:762.333333pt;}
.yf9{bottom:763.773333pt;}
.y1c3{bottom:770.653333pt;}
.y55{bottom:771.133333pt;}
.y41{bottom:772.413333pt;}
.y7e{bottom:772.573333pt;}
.yde{bottom:778.173333pt;}
.y9a{bottom:779.613333pt;}
.y1d8{bottom:779.933333pt;}
.ya8{bottom:782.653333pt;}
.y19a{bottom:782.973333pt;}
.yf8{bottom:783.133333pt;}
.y13e{bottom:784.893333pt;}
.y54{bottom:789.053333pt;}
.y1c2{bottom:790.013333pt;}
.y17a{bottom:790.173333pt;}
.y7d{bottom:793.213333pt;}
.y24{bottom:793.853333pt;}
.y6d{bottom:796.253333pt;}
.y99{bottom:800.093333pt;}
.ya7{bottom:800.573333pt;}
.y40{bottom:802.493333pt;}
.y16a{bottom:806.853333pt;}
.y53{bottom:807.013333pt;}
.ydd{bottom:808.133333pt;}
.y199{bottom:813.733333pt;}
.y7c{bottom:813.893333pt;}
.y1c1{bottom:820.133333pt;}
.y1d6{bottom:820.613333pt;}
.y98{bottom:820.773333pt;}
.y179{bottom:821.093333pt;}
.yf7{bottom:821.893333pt;}
.y52{bottom:824.933333pt;}
.y3f{bottom:826.053333pt;}
.ya6{bottom:830.053333pt;}
.y23{bottom:831.813333pt;}
.y198{bottom:833.093333pt;}
.y6c{bottom:833.573333pt;}
.y166{bottom:834.213333pt;}
.y7b{bottom:834.373333pt;}
.ydc{bottom:838.213333pt;}
.y1c0{bottom:839.333333pt;}
.y178{bottom:840.293333pt;}
.y97{bottom:841.413333pt;}
.y51{bottom:842.853333pt;}
.ya5{bottom:847.973333pt;}
.y3e{bottom:849.573333pt;}
.yf6{bottom:851.813333pt;}
.y7a{bottom:855.013333pt;}
.y1bf{bottom:858.693333pt;}
.y50{bottom:860.773333pt;}
.y1d1{bottom:861.093333pt;}
.y96{bottom:861.893333pt;}
.y197{bottom:863.813333pt;}
.ya4{bottom:865.733333pt;}
.y1a7{bottom:867.013333pt;}
.ydb{bottom:868.133333pt;}
.y1f{bottom:869.573333pt;}
.y6b{bottom:870.853333pt;}
.yf5{bottom:871.173333pt;}
.y3d{bottom:873.093333pt;}
.y79{bottom:875.653333pt;}
.y1be{bottom:878.053333pt;}
.y4f{bottom:878.693333pt;}
.y95{bottom:882.533333pt;}
.ya3{bottom:883.653333pt;}
.yda{bottom:887.493333pt;}
.yf4{bottom:890.533333pt;}
.y1a6{bottom:893.573333pt;}
.y196{bottom:894.533333pt;}
.y78{bottom:896.133333pt;}
.y4e{bottom:896.613333pt;}
.y3c{bottom:897.413333pt;}
.ya2{bottom:901.573333pt;}
.yd9{bottom:906.853333pt;}
.y1bd{bottom:907.973333pt;}
.y69{bottom:908.133333pt;}
.yf3{bottom:909.733333pt;}
.y94{bottom:911.173333pt;}
.y4d{bottom:914.373333pt;}
.y1a5{bottom:920.133333pt;}
.y77{bottom:924.773333pt;}
.y1c{bottom:925.253333pt;}
.yd8{bottom:926.053333pt;}
.y1bc{bottom:927.333333pt;}
.y3b{bottom:928.133333pt;}
.yf2{bottom:929.093333pt;}
.ya1{bottom:930.213333pt;}
.y93{bottom:931.653333pt;}
.y4c{bottom:932.293333pt;}
.y116{bottom:938.053333pt;}
.y67{bottom:945.253333pt;}
.y76{bottom:945.413333pt;}
.y1a4{bottom:946.693333pt;}
.ya0{bottom:948.133333pt;}
.y4b{bottom:950.213333pt;}
.y92{bottom:952.293333pt;}
.ybd{bottom:956.133333pt;}
.y3a{bottom:959.013333pt;}
.yf1{bottom:962.213333pt;}
.y1a{bottom:963.013333pt;}
.y114{bottom:964.613333pt;}
.yd7{bottom:964.773333pt;}
.y75{bottom:966.053333pt;}
.y4a{bottom:968.133333pt;}
.y1d0{bottom:970.053333pt;}
.y91{bottom:972.933333pt;}
.ybc{bottom:975.493333pt;}
.y5{bottom:985.413333pt;}
.y90{bottom:993.413333pt;}
.ybb{bottom:994.693333pt;}
.y19{bottom:999.973333pt;}
.y39{bottom:1002.213333pt;}
.y66{bottom:1002.533333pt;}
.y4{bottom:1006.053333pt;}
.y49{bottom:1007.653333pt;}
.y113{bottom:1010.213333pt;}
.y8f{bottom:1014.053333pt;}
.y1f0{bottom:1032.800000pt;}
.y1{bottom:1061.440000pt;}
.h51{height:17.600000pt;}
.h50{height:20.320000pt;}
.h4e{height:20.480000pt;}
.h2f{height:22.560000pt;}
.h39{height:22.720000pt;}
.h34{height:22.752000pt;}
.h24{height:23.856875pt;}
.h28{height:25.760000pt;}
.h27{height:25.920000pt;}
.h36{height:26.720000pt;}
.h9{height:26.880000pt;}
.hd{height:28.480000pt;}
.h14{height:28.640000pt;}
.h13{height:28.672000pt;}
.h4c{height:29.440000pt;}
.h25{height:36.413125pt;}
.h1e{height:36.480000pt;}
.h1d{height:36.640000pt;}
.h1f{height:36.672000pt;}
.h23{height:36.920625pt;}
.he{height:36.960000pt;}
.h11{height:37.120000pt;}
.h10{height:37.152000pt;}
.h22{height:38.578125pt;}
.h2d{height:39.158750pt;}
.h45{height:39.840000pt;}
.h46{height:39.872000pt;}
.h48{height:40.000000pt;}
.h47{height:40.800000pt;}
.h3e{height:43.680000pt;}
.h2c{height:43.840000pt;}
.h37{height:43.872000pt;}
.ha{height:43.905937pt;}
.h3f{height:44.965000pt;}
.h16{height:46.400000pt;}
.h15{height:46.432000pt;}
.h17{height:46.560000pt;}
.h2{height:47.322500pt;}
.h4f{height:47.742188pt;}
.h42{height:49.792000pt;}
.h4d{height:54.390938pt;}
.hf{height:54.880000pt;}
.h44{height:56.062500pt;}
.h4{height:58.563750pt;}
.h3{height:60.288750pt;}
.h21{height:60.519362pt;}
.hb{height:62.560000pt;}
.h6{height:63.656250pt;}
.h1a{height:63.769687pt;}
.h1b{height:63.929687pt;}
.h5{height:68.800000pt;}
.h2b{height:72.032000pt;}
.h19{height:76.671562pt;}
.h26{height:77.951250pt;}
.h18{height:81.046875pt;}
.h7{height:83.232000pt;}
.h49{height:85.600000pt;}
.h43{height:87.680000pt;}
.h12{height:92.000000pt;}
.h1c{height:101.765625pt;}
.h35{height:103.040000pt;}
.h2a{height:108.000000pt;}
.h20{height:111.263750pt;}
.hc{height:111.515625pt;}
.h31{height:117.280000pt;}
.h8{height:132.405000pt;}
.h3b{height:133.280000pt;}
.h3d{height:133.312000pt;}
.h4b{height:134.880000pt;}
.h3a{height:151.226667pt;}
.h30{height:152.346667pt;}
.h3c{height:169.146667pt;}
.h29{height:183.386667pt;}
.h32{height:198.586667pt;}
.h4a{height:302.466667pt;}
.h41{height:384.226667pt;}
.h33{height:394.906667pt;}
.h2e{height:400.066667pt;}
.h38{height:404.226667pt;}
.h40{height:408.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:67.680000pt;}
.w24{width:88.160000pt;}
.w20{width:90.240000pt;}
.w1f{width:95.040000pt;}
.w23{width:98.112000pt;}
.w1e{width:108.960000pt;}
.w21{width:108.992000pt;}
.wf{width:112.832000pt;}
.w15{width:131.360000pt;}
.w1b{width:132.320000pt;}
.w1d{width:135.066667pt;}
.wa{width:149.786667pt;}
.w9{width:149.946667pt;}
.wb{width:150.266667pt;}
.wc{width:152.346667pt;}
.w7{width:152.826667pt;}
.w22{width:160.026667pt;}
.w12{width:169.146667pt;}
.w10{width:210.906667pt;}
.w11{width:211.426667pt;}
.w5{width:224.866667pt;}
.w17{width:301.986667pt;}
.w18{width:302.146667pt;}
.w1c{width:302.466667pt;}
.w6{width:313.600000pt;}
.w3{width:430.013333pt;}
.w4{width:431.293333pt;}
.w13{width:433.533333pt;}
.w8{width:451.293333pt;}
.wd{width:451.773333pt;}
.w16{width:471.493333pt;}
.w1a{width:604.133333pt;}
.w19{width:613.413333pt;}
.w14{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:7.200000pt;}
.x4c{left:8.320000pt;}
.x6{left:9.600000pt;}
.x13{left:10.720000pt;}
.x40{left:11.840000pt;}
.x3e{left:13.920000pt;}
.x1d{left:16.640000pt;}
.x41{left:17.920000pt;}
.x59{left:19.680000pt;}
.x1b{left:20.960000pt;}
.x1a{left:24.640000pt;}
.x3f{left:25.800000pt;}
.x47{left:28.640000pt;}
.x3b{left:29.600000pt;}
.x9{left:32.799988pt;}
.x1e{left:36.640000pt;}
.x42{left:37.760000pt;}
.x3d{left:38.874667pt;}
.x15{left:41.920000pt;}
.x48{left:43.040000pt;}
.x25{left:44.794667pt;}
.x17{left:45.920000pt;}
.x1f{left:49.440000pt;}
.x56{left:52.154667pt;}
.xc{left:60.893333pt;}
.x2b{left:68.794667pt;}
.x2a{left:70.234667pt;}
.x20{left:71.360000pt;}
.x29{left:74.074667pt;}
.x2c{left:75.034667pt;}
.x19{left:76.680000pt;}
.x28{left:79.994667pt;}
.x1c{left:85.320000pt;}
.x58{left:92.794667pt;}
.x4{left:94.591988pt;}
.x34{left:97.631988pt;}
.x35{left:105.951988pt;}
.x5a{left:107.520000pt;}
.x5f{left:110.912000pt;}
.xb{left:114.053333pt;}
.x22{left:132.351988pt;}
.x54{left:133.954667pt;}
.x53{left:146.434667pt;}
.x55{left:148.834667pt;}
.x52{left:157.954667pt;}
.x14{left:162.906667pt;}
.x32{left:175.866643pt;}
.x2e{left:180.666655pt;}
.x27{left:181.786667pt;}
.x31{left:218.426655pt;}
.x3c{left:227.226667pt;}
.x5d{left:234.946667pt;}
.x3{left:241.346655pt;}
.x4e{left:244.386655pt;}
.x51{left:247.074667pt;}
.x10{left:248.066667pt;}
.x4f{left:261.506655pt;}
.x39{left:262.946655pt;}
.x26{left:265.186667pt;}
.x3a{left:266.786655pt;}
.x16{left:276.386667pt;}
.x44{left:281.346655pt;}
.x30{left:283.906655pt;}
.x33{left:286.626655pt;}
.x4b{left:287.880000pt;}
.x45{left:289.181333pt;}
.x50{left:290.946667pt;}
.x57{left:292.066667pt;}
.xe{left:301.440000pt;}
.x37{left:311.586643pt;}
.x38{left:316.226655pt;}
.x5b{left:319.626667pt;}
.x21{left:327.906655pt;}
.x23{left:343.266655pt;}
.x24{left:346.946655pt;}
.x5e{left:349.346667pt;}
.x8{left:357.826667pt;}
.x7{left:359.266667pt;}
.x5{left:363.746667pt;}
.x5c{left:378.146667pt;}
.x46{left:396.573333pt;}
.x11{left:398.653333pt;}
.x60{left:400.893333pt;}
.xa{left:454.720000pt;}
.x18{left:487.933333pt;}
.xd{left:538.213322pt;}
.x12{left:549.093333pt;}
.x4d{left:580.453322pt;}
.x49{left:586.213322pt;}
.x1{left:607.973322pt;}
.x2f{left:653.413322pt;}
.x43{left:654.373322pt;}
.x4a{left:657.093322pt;}
.x36{left:684.293322pt;}
.x2{left:691.839988pt;}
.x2d{left:699.359988pt;}
}




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