
    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_66b3d22280a39359cbaef2d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933594;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_7689250fe3bb9edd5ec0bb5b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_0a45492450d7bc392198a642.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_80e66b3c8999891efd5e630f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_073233abcd575f303f3e2e82.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a4579b4c66a76277cc9d575d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a893c3f6c67504a39cae008d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b6b304c8cd7f8b374087a8d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.090332;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m9{transform:matrix(0.000000,-0.249752,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249752,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249752,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249681,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249681,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249681,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249760,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249760,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249760,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.249727,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249727,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249727,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250240,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250248,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,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);}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-10.614939px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.614939px;}
.v2{vertical-align:20.880000px;}
.lsa{letter-spacing:-0.774000px;}
.ls22{letter-spacing:-0.643775px;}
.ls10{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.ls2b{letter-spacing:-0.538800px;}
.lse{letter-spacing:-0.360000px;}
.ls25{letter-spacing:-0.339939px;}
.ls1f{letter-spacing:-0.339931px;}
.ls28{letter-spacing:-0.331074px;}
.ls2{letter-spacing:-0.269400px;}
.ls2c{letter-spacing:-0.181200px;}
.ls7{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.106800px;}
.lsd{letter-spacing:-0.053280px;}
.ls21{letter-spacing:-0.024284px;}
.ls24{letter-spacing:-0.024263px;}
.ls27{letter-spacing:-0.023631px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.106800px;}
.ls1b{letter-spacing:0.117020px;}
.lsc{letter-spacing:0.153360px;}
.ls6{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.200813px;}
.ls1c{letter-spacing:0.206183px;}
.ls17{letter-spacing:0.206244px;}
.ls19{letter-spacing:0.206385px;}
.lsf{letter-spacing:0.206400px;}
.ls5{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls1d{letter-spacing:0.271998px;}
.ls16{letter-spacing:0.279274px;}
.ls1a{letter-spacing:0.279280px;}
.ls18{letter-spacing:0.279517px;}
.ls4{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.435689px;}
.ls26{letter-spacing:0.447354px;}
.ls23{letter-spacing:0.447734px;}
.ls20{letter-spacing:0.606568px;}
.ls2a{letter-spacing:8.586720px;}
.ls14{letter-spacing:22.589280px;}
.ls13{letter-spacing:53.946720px;}
.lsb{letter-spacing:64.026720px;}
.ls0{letter-spacing:73.386720px;}
.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;}
}
.ws12{word-spacing:-59.760000px;}
.ws3{word-spacing:-54.000000px;}
.wsd{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.wsc{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.580000px;}
.ws7{word-spacing:-14.166000px;}
.ws4{word-spacing:-13.716000px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.392000px;}
.ws14{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.878800px;}
.ws0{word-spacing:-11.790600px;}
.ws13{word-spacing:-11.521200px;}
.ws10{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._31{margin-left:-274.223909px;}
._2e{margin-left:-273.077654px;}
._2f{margin-left:-272.046956px;}
._38{margin-left:-266.849101px;}
._37{margin-left:-265.667572px;}
._2d{margin-left:-257.741594px;}
._36{margin-left:-251.691066px;}
._3{margin-left:-5.184000px;}
._11{margin-left:-3.389040px;}
._2{margin-left:-2.304000px;}
._0{margin-left:-1.151640px;}
._1{width:1.020000px;}
._6{width:2.052000px;}
._a{width:4.050000px;}
._15{width:5.125440px;}
._f{width:6.145680px;}
._d{width:7.263360px;}
._e{width:8.306640px;}
._7{width:9.324000px;}
._8{width:10.494000px;}
._12{width:11.760480px;}
._16{width:12.950160px;}
._9{width:14.874000px;}
._13{width:16.749000px;}
._14{width:17.949960px;}
._1b{width:19.557720px;}
._17{width:20.844720px;}
._4{width:21.864000px;}
._18{width:23.040720px;}
._24{width:24.469560px;}
._1f{width:26.804880px;}
._1e{width:28.060560px;}
._19{width:29.119320px;}
._1a{width:30.494520px;}
._22{width:31.627080px;}
._21{width:32.748840px;}
._26{width:33.799320px;}
._23{width:34.813440px;}
._5{width:36.396000px;}
._c{width:38.820000px;}
._b{width:40.014000px;}
._20{width:41.036400px;}
._39{width:42.701760px;}
._10{width:44.758560px;}
._3b{width:50.410800px;}
._3c{width:51.417720px;}
._1c{width:53.501400px;}
._1d{width:55.013520px;}
._25{width:56.386800px;}
._3e{width:70.044480px;}
._3f{width:71.147880px;}
._3d{width:81.808920px;}
._40{width:120.207960px;}
._34{width:121.578613px;}
._30{width:123.988422px;}
._2b{width:125.462770px;}
._33{width:135.357458px;}
._2a{width:140.268083px;}
._32{width:151.531116px;}
._29{width:155.053177px;}
._3a{width:164.643120px;}
._35{width:225.659271px;}
._2c{width:232.074924px;}
._27{width:683.580000px;}
._28{width:1552.920000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs17{font-size:23.925966px;}
.fs8{font-size:24.262718px;}
.fs12{font-size:24.566565px;}
.fsd{font-size:24.587407px;}
.fs14{font-size:35.150493px;}
.fs13{font-size:35.445875px;}
.fs15{font-size:35.481027px;}
.fs16{font-size:35.741257px;}
.fsf{font-size:36.091621px;}
.fsa{font-size:36.122240px;}
.fs5{font-size:36.394078px;}
.fse{font-size:36.394912px;}
.fs9{font-size:36.425788px;}
.fs10{font-size:36.429915px;}
.fs7{font-size:36.440625px;}
.fsb{font-size:36.465646px;}
.fs6{font-size:36.697362px;}
.fs11{font-size:36.698203px;}
.fsc{font-size:36.729336px;}
.fs4{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:144.000000px;}
.yf5{bottom:-30.060000px;}
.yfa{bottom:-20.880000px;}
.y0{bottom:0.000000px;}
.yf4{bottom:0.720000px;}
.y147{bottom:3.436702px;}
.y104{bottom:3.528659px;}
.y13c{bottom:3.528729px;}
.y11a{bottom:3.531700px;}
.y126{bottom:3.531723px;}
.y10f{bottom:3.907805px;}
.y131{bottom:3.907842px;}
.yf9{bottom:10.620000px;}
.yf3{bottom:14.580000px;}
.y145{bottom:15.621222px;}
.y13a{bottom:16.039469px;}
.y118{bottom:16.053072px;}
.y124{bottom:16.053077px;}
.y102{bottom:16.114960px;}
.y12f{bottom:16.418601px;}
.y10d{bottom:16.873174px;}
.yf8{bottom:24.480000px;}
.y13f{bottom:27.067286px;}
.y134{bottom:27.792012px;}
.y112{bottom:27.815567px;}
.y11d{bottom:27.815589px;}
.yfc{bottom:27.867215px;}
.y129{bottom:28.171125px;}
.y106{bottom:28.625466px;}
.yf2{bottom:34.920000px;}
.yf7{bottom:41.760000px;}
.y1{bottom:56.340000px;}
.y149{bottom:60.371331px;}
.y135{bottom:61.608635px;}
.y11e{bottom:62.040337px;}
.y107{bottom:62.367072px;}
.y140{bottom:66.648205px;}
.y12a{bottom:68.432681px;}
.y113{bottom:68.490714px;}
.yfd{bottom:68.887637px;}
.y14e{bottom:86.217282px;}
.y13b{bottom:88.146591px;}
.y125{bottom:88.600807px;}
.y10e{bottom:88.980242px;}
.y146{bottom:93.232611px;}
.y130{bottom:95.728865px;}
.y119{bottom:95.810055px;}
.y11f{bottom:95.810078px;}
.y103{bottom:96.183196px;}
.y108{bottom:96.562341px;}
.y141{bottom:106.229432px;}
.y114{bottom:109.166178px;}
.yfe{bottom:109.451870px;}
.y12b{bottom:109.452779px;}
.y55{bottom:117.180000px;}
.yaf{bottom:119.700000px;}
.y70{bottom:122.040000px;}
.y1c8{bottom:124.380000px;}
.y14a{bottom:126.536965px;}
.y136{bottom:129.924917px;}
.y120{bottom:130.035141px;}
.y109{bottom:130.378505px;}
.y54{bottom:133.560000px;}
.yae{bottom:136.080000px;}
.y6f{bottom:138.420000px;}
.y183{bottom:144.900000px;}
.y142{bottom:146.179887px;}
.yf6{bottom:147.240000px;}
.y53{bottom:149.940000px;}
.yff{bottom:150.091923px;}
.y12c{bottom:150.093764px;}
.y115{bottom:150.221076px;}
.yad{bottom:152.460000px;}
.y1c7{bottom:154.620000px;}
.y6e{bottom:154.800000px;}
.y182{bottom:158.400000px;}
.y14b{bottom:159.472090px;}
.y137{bottom:164.120970px;}
.y121{bottom:164.260204px;}
.y10a{bottom:164.497953px;}
.y52{bottom:166.320000px;}
.yb3{bottom:167.040000px;}
.yac{bottom:168.840000px;}
.y6d{bottom:171.180000px;}
.y1c6{bottom:171.900000px;}
.y181{bottom:175.680000px;}
.yb2{bottom:180.360000px;}
.y51{bottom:182.700000px;}
.yab{bottom:185.220000px;}
.y143{bottom:185.318041px;}
.y1c5{bottom:185.400000px;}
.yf0{bottom:186.300000px;}
.y6c{bottom:187.560000px;}
.y180{bottom:189.180000px;}
.y13e{bottom:189.891270px;}
.y12d{bottom:190.279813px;}
.y116{bottom:190.441217px;}
.y100{bottom:191.111082px;}
.y14c{bottom:192.776444px;}
.yef{bottom:194.760000px;}
.y138{bottom:197.937909px;}
.y122{bottom:198.105832px;}
.y10b{bottom:198.314116px;}
.y1c4{bottom:198.900000px;}
.y50{bottom:199.080000px;}
.yaa{bottom:201.600000px;}
.y17f{bottom:202.680000px;}
.y6b{bottom:203.940000px;}
.yf1{bottom:209.550000px;}
.yee{bottom:211.140000px;}
.y148{bottom:211.976293px;}
.y1c3{bottom:212.400000px;}
.y14f{bottom:213.453204px;}
.y4f{bottom:215.460000px;}
.y17e{bottom:216.180000px;}
.y132{bottom:217.651813px;}
.y11b{bottom:217.836440px;}
.ya9{bottom:217.980000px;}
.y105{bottom:218.406628px;}
.y13d{bottom:219.168271px;}
.y127{bottom:219.354206px;}
.y110{bottom:219.543990px;}
.y6a{bottom:220.320000px;}
.y144{bottom:224.899268px;}
.y14d{bottom:225.637724px;}
.y1c2{bottom:225.900000px;}
.yed{bottom:227.520000px;}
.y17d{bottom:229.680000px;}
.y12e{bottom:231.299911px;}
.y117{bottom:231.496116px;}
.y101{bottom:231.675314px;}
.y4e{bottom:231.840000px;}
.y139{bottom:232.058138px;}
.y123{bottom:232.255009px;}
.y10c{bottom:232.433564px;}
.ya8{bottom:234.360000px;}
.y69{bottom:236.700000px;}
.y1c1{bottom:243.180000px;}
.yec{bottom:243.900000px;}
.y17c{bottom:246.960000px;}
.yb1{bottom:248.220000px;}
.ya7{bottom:250.740000px;}
.y68{bottom:253.080000px;}
.y4d{bottom:254.370000px;}
.y1c0{bottom:256.710000px;}
.yeb{bottom:260.310000px;}
.y17b{bottom:260.490000px;}
.ya6{bottom:267.150000px;}
.y67{bottom:269.490000px;}
.y1bf{bottom:270.210000px;}
.yb0{bottom:270.750000px;}
.y17a{bottom:273.990000px;}
.yea{bottom:276.690000px;}
.y4c{bottom:283.350000px;}
.ya5{bottom:283.530000px;}
.y1be{bottom:283.710000px;}
.y66{bottom:285.870000px;}
.y179{bottom:287.490000px;}
.ye9{bottom:293.070000px;}
.y4b{bottom:298.830000px;}
.ya4{bottom:299.910000px;}
.y1bd{bottom:300.990000px;}
.y65{bottom:302.250000px;}
.y178{bottom:307.290000px;}
.ye8{bottom:309.450000px;}
.y1bc{bottom:314.490000px;}
.ya3{bottom:316.290000px;}
.y64{bottom:318.630000px;}
.ye7{bottom:325.830000px;}
.y1bb{bottom:327.990000px;}
.y4a{bottom:330.690000px;}
.ya2{bottom:332.670000px;}
.y63{bottom:335.010000px;}
.y177{bottom:336.450000px;}
.y1ba{bottom:341.490000px;}
.ye6{bottom:342.210000px;}
.y49{bottom:347.430000px;}
.ya1{bottom:349.050000px;}
.y62{bottom:351.390000px;}
.y176{bottom:353.010000px;}
.ye5{bottom:358.590000px;}
.y48{bottom:364.170000px;}
.ya0{bottom:365.430000px;}
.y61{bottom:367.770000px;}
.y175{bottom:369.390000px;}
.y1b9{bottom:372.090000px;}
.ye4{bottom:374.970000px;}
.y47{bottom:380.910000px;}
.y9f{bottom:381.810000px;}
.y60{bottom:384.150000px;}
.y1b8{bottom:385.590000px;}
.y174{bottom:385.770000px;}
.ye3{bottom:391.350000px;}
.y46{bottom:397.650000px;}
.y9e{bottom:398.190000px;}
.y1b7{bottom:399.090000px;}
.y5f{bottom:400.530000px;}
.y173{bottom:402.150000px;}
.ye2{bottom:407.730000px;}
.y45{bottom:414.390000px;}
.y9d{bottom:414.570000px;}
.y1b6{bottom:416.370000px;}
.y5e{bottom:417.090000px;}
.ye1{bottom:424.110000px;}
.y172{bottom:424.470000px;}
.y128{bottom:426.594208px;}
.y133{bottom:426.594229px;}
.y1b5{bottom:429.870000px;}
.y9c{bottom:430.950000px;}
.y44{bottom:431.130000px;}
.y5d{bottom:433.470000px;}
.ye0{bottom:440.490000px;}
.y1b4{bottom:443.370000px;}
.y9b{bottom:447.510000px;}
.y43{bottom:447.870000px;}
.y5c{bottom:449.850000px;}
.y171{bottom:453.630000px;}
.ydf{bottom:456.870000px;}
.y1b3{bottom:460.650000px;}
.y9a{bottom:463.890000px;}
.y42{bottom:464.610000px;}
.y5b{bottom:466.230000px;}
.y170{bottom:470.190000px;}
.yde{bottom:473.250000px;}
.y1b2{bottom:474.150000px;}
.y99{bottom:480.315000px;}
.y41{bottom:481.395000px;}
.y5a{bottom:482.655000px;}
.y16f{bottom:486.615000px;}
.y1b1{bottom:487.695000px;}
.ydd{bottom:489.675000px;}
.y98{bottom:496.695000px;}
.y40{bottom:498.315000px;}
.y59{bottom:499.035000px;}
.y1b0{bottom:501.195000px;}
.y16e{bottom:502.995000px;}
.ydc{bottom:506.235000px;}
.y97{bottom:513.075000px;}
.y3f{bottom:515.055000px;}
.y58{bottom:515.415000px;}
.y1af{bottom:518.475000px;}
.y16d{bottom:519.375000px;}
.ydb{bottom:522.615000px;}
.y96{bottom:529.455000px;}
.y3e{bottom:531.795000px;}
.y1ae{bottom:531.975000px;}
.y16c{bottom:535.755000px;}
.yda{bottom:538.995000px;}
.y1ad{bottom:545.475000px;}
.y95{bottom:545.835000px;}
.y57{bottom:548.175000px;}
.y3d{bottom:548.535000px;}
.y16b{bottom:552.135000px;}
.yd9{bottom:555.375000px;}
.y94{bottom:562.215000px;}
.y1ac{bottom:562.755000px;}
.y56{bottom:564.555000px;}
.y3c{bottom:565.275000px;}
.y16a{bottom:568.515000px;}
.yd8{bottom:571.755000px;}
.y1ab{bottom:576.255000px;}
.y93{bottom:578.595000px;}
.y169{bottom:584.895000px;}
.yd7{bottom:588.135000px;}
.y1aa{bottom:589.755000px;}
.y92{bottom:594.975000px;}
.y168{bottom:601.275000px;}
.y1a9{bottom:603.255000px;}
.yd6{bottom:604.515000px;}
.y91{bottom:611.355000px;}
.y1d{bottom:616.575000px;}
.y167{bottom:617.655000px;}
.y1a8{bottom:620.535000px;}
.yd5{bottom:620.895000px;}
.y90{bottom:627.735000px;}
.y1c{bottom:632.055000px;}
.y166{bottom:634.035000px;}
.yd4{bottom:637.275000px;}
.y8f{bottom:644.115000px;}
.y1b{bottom:647.535000px;}
.y165{bottom:650.415000px;}
.yd3{bottom:653.655000px;}
.y8e{bottom:660.495000px;}
.y1a7{bottom:661.035000px;}
.y1a{bottom:663.195000px;}
.y164{bottom:666.795000px;}
.y29{bottom:668.595000px;}
.y11c{bottom:669.384325px;}
.y111{bottom:669.763763px;}
.yd2{bottom:670.035000px;}
.y8d{bottom:676.875000px;}
.y1a6{bottom:678.135000px;}
.y19{bottom:678.675000px;}
.y163{bottom:683.175000px;}
.y28{bottom:684.075000px;}
.yd1{bottom:686.415000px;}
.y1a5{bottom:691.635000px;}
.y8c{bottom:693.255000px;}
.y18{bottom:694.155000px;}
.y27{bottom:699.555000px;}
.yd0{bottom:702.795000px;}
.y1a4{bottom:705.135000px;}
.y8b{bottom:709.665000px;}
.y3b{bottom:712.725000px;}
.y26{bottom:715.245000px;}
.y162{bottom:715.965000px;}
.y1a3{bottom:718.665000px;}
.ycf{bottom:719.205000px;}
.y8a{bottom:726.045000px;}
.y3a{bottom:728.205000px;}
.y17{bottom:730.725000px;}
.y161{bottom:732.345000px;}
.yce{bottom:735.585000px;}
.y1a2{bottom:735.945000px;}
.y89{bottom:742.425000px;}
.y39{bottom:743.685000px;}
.y16{bottom:746.205000px;}
.y160{bottom:748.725000px;}
.y1a1{bottom:749.445000px;}
.ycd{bottom:751.965000px;}
.y88{bottom:758.805000px;}
.y38{bottom:759.345000px;}
.y15{bottom:761.685000px;}
.y1a0{bottom:762.945000px;}
.y15f{bottom:765.105000px;}
.ycc{bottom:768.345000px;}
.y37{bottom:774.825000px;}
.y87{bottom:775.185000px;}
.y19f{bottom:776.445000px;}
.y14{bottom:777.345000px;}
.y15e{bottom:781.485000px;}
.y25{bottom:782.745000px;}
.ycb{bottom:784.725000px;}
.y36{bottom:790.305000px;}
.y86{bottom:791.565000px;}
.y13{bottom:792.825000px;}
.y19e{bottom:793.725000px;}
.y15d{bottom:797.865000px;}
.y24{bottom:798.225000px;}
.yca{bottom:801.105000px;}
.y19d{bottom:807.225000px;}
.y85{bottom:807.945000px;}
.y12{bottom:808.305000px;}
.y23{bottom:813.885000px;}
.y15c{bottom:814.245000px;}
.yc9{bottom:817.485000px;}
.y19c{bottom:820.725000px;}
.y84{bottom:824.325000px;}
.y35{bottom:826.845000px;}
.y22{bottom:829.365000px;}
.y15b{bottom:831.705000px;}
.yc8{bottom:833.865000px;}
.y19b{bottom:834.225000px;}
.y83{bottom:840.705000px;}
.y34{bottom:842.325000px;}
.y11{bottom:844.845000px;}
.y15a{bottom:848.085000px;}
.yc7{bottom:850.245000px;}
.y19a{bottom:851.505000px;}
.y82{bottom:857.085000px;}
.y33{bottom:857.985000px;}
.y10{bottom:860.325000px;}
.y159{bottom:864.465000px;}
.y199{bottom:865.005000px;}
.yc6{bottom:866.625000px;}
.y32{bottom:873.465000px;}
.yf{bottom:875.985000px;}
.y198{bottom:878.505000px;}
.y158{bottom:880.845000px;}
.yc5{bottom:883.005000px;}
.y31{bottom:888.945000px;}
.y81{bottom:889.845000px;}
.ye{bottom:891.465000px;}
.y197{bottom:895.785000px;}
.y21{bottom:896.865000px;}
.y157{bottom:897.225000px;}
.yc4{bottom:899.385000px;}
.y30{bottom:904.425000px;}
.y80{bottom:906.225000px;}
.yd{bottom:906.945000px;}
.y196{bottom:909.285000px;}
.yfb{bottom:912.212088px;}
.y20{bottom:912.345000px;}
.y156{bottom:913.605000px;}
.yc3{bottom:915.765000px;}
.yc{bottom:922.425000px;}
.y7f{bottom:922.605000px;}
.y195{bottom:922.785000px;}
.y1f{bottom:928.005000px;}
.y155{bottom:929.985000px;}
.yc2{bottom:932.190000px;}
.y7e{bottom:939.210000px;}
.y194{bottom:940.110000px;}
.y2f{bottom:941.010000px;}
.y1e{bottom:943.530000px;}
.y154{bottom:947.490000px;}
.yc1{bottom:948.570000px;}
.y193{bottom:953.610000px;}
.y7d{bottom:955.590000px;}
.y2e{bottom:956.490000px;}
.yb{bottom:959.010000px;}
.y153{bottom:963.870000px;}
.yc0{bottom:964.950000px;}
.y192{bottom:967.110000px;}
.y7c{bottom:971.970000px;}
.y2d{bottom:972.150000px;}
.ya{bottom:974.490000px;}
.y152{bottom:980.430000px;}
.y191{bottom:980.610000px;}
.ybf{bottom:981.510000px;}
.y2c{bottom:987.630000px;}
.y7b{bottom:988.350000px;}
.y9{bottom:990.150000px;}
.y151{bottom:996.810000px;}
.y190{bottom:997.710000px;}
.ybe{bottom:997.890000px;}
.y2b{bottom:1003.110000px;}
.y7a{bottom:1004.730000px;}
.y8{bottom:1005.630000px;}
.y18f{bottom:1011.210000px;}
.y150{bottom:1013.190000px;}
.ybd{bottom:1014.270000px;}
.y2a{bottom:1018.590000px;}
.y7{bottom:1021.110000px;}
.y18e{bottom:1028.490000px;}
.ybc{bottom:1030.650000px;}
.y6{bottom:1036.590000px;}
.y79{bottom:1037.490000px;}
.y18d{bottom:1041.990000px;}
.ybb{bottom:1047.030000px;}
.y78{bottom:1053.870000px;}
.y18c{bottom:1055.490000px;}
.yba{bottom:1063.410000px;}
.y18b{bottom:1068.990000px;}
.y77{bottom:1070.250000px;}
.y5{bottom:1071.510000px;}
.yb9{bottom:1079.790000px;}
.y18a{bottom:1086.270000px;}
.y76{bottom:1086.630000px;}
.yb8{bottom:1096.170000px;}
.y189{bottom:1099.770000px;}
.y75{bottom:1103.010000px;}
.y4{bottom:1105.890000px;}
.yb7{bottom:1112.550000px;}
.y188{bottom:1113.270000px;}
.y74{bottom:1119.390000px;}
.y187{bottom:1126.770000px;}
.yb6{bottom:1128.930000px;}
.y73{bottom:1135.770000px;}
.y186{bottom:1144.050000px;}
.yb5{bottom:1145.310000px;}
.y3{bottom:1147.290000px;}
.y72{bottom:1152.150000px;}
.y185{bottom:1157.580000px;}
.yb4{bottom:1167.840000px;}
.y71{bottom:1168.560000px;}
.y184{bottom:1171.080000px;}
.y2{bottom:1188.720000px;}
.h25{height:30.464905px;}
.h24{height:30.720912px;}
.h26{height:30.751378px;}
.h28{height:30.976920px;}
.h29{height:31.074996px;}
.h1e{height:31.280580px;}
.h17{height:31.307117px;}
.h10{height:31.542719px;}
.h1d{height:31.543442px;}
.h16{height:31.570202px;}
.h1f{height:31.573779px;}
.h12{height:31.583061px;}
.h18{height:31.604747px;}
.h14{height:31.643418px;}
.h11{height:31.805575px;}
.h21{height:31.806304px;}
.h1a{height:31.833287px;}
.h22{height:31.907006px;}
.h1b{height:31.934075px;}
.h2{height:34.625391px;}
.hd{height:35.120039px;}
.h7{height:38.100586px;}
.h4{height:38.759766px;}
.h5{height:39.471680px;}
.h9{height:42.894141px;}
.h8{height:43.506914px;}
.h6{height:43.822266px;}
.ha{height:48.787031px;}
.hb{height:48.907031px;}
.h3{height:103.359375px;}
.h23{height:234.828922px;}
.h27{height:235.198150px;}
.h15{height:241.320866px;}
.h20{height:241.495425px;}
.h1c{height:241.495445px;}
.h19{height:241.700302px;}
.hf{height:241.869015px;}
.h13{height:241.869056px;}
.hc{height:384.195000px;}
.he{height:1007.070000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:359.984593px;}
.wc{width:361.093375px;}
.w7{width:369.974368px;}
.w5{width:370.100098px;}
.w8{width:370.354219px;}
.w3{width:370.725000px;}
.wa{width:370.750278px;}
.w9{width:734.290469px;}
.w6{width:734.506344px;}
.w4{width:766.800000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x33{left:10.836000px;}
.x3a{left:12.589733px;}
.x38{left:13.728504px;}
.x39{left:27.140678px;}
.x47{left:61.608495px;}
.x3f{left:63.198795px;}
.x1{left:66.959987px;}
.x2c{left:68.039987px;}
.xd{left:72.719987px;}
.x9{left:76.895987px;}
.x7{left:82.115987px;}
.x3d{left:84.643621px;}
.x12{left:89.135987px;}
.x8{left:94.535987px;}
.xf{left:99.755987px;}
.xe{left:101.195987px;}
.x10{left:105.515987px;}
.xb{left:107.135987px;}
.x48{left:109.835987px;}
.x40{left:112.878901px;}
.xc{left:113.975987px;}
.x3c{left:116.344286px;}
.x2{left:118.835987px;}
.x3{left:121.355987px;}
.x6{left:125.315987px;}
.x11{left:132.695987px;}
.xa{left:138.635987px;}
.x46{left:153.267823px;}
.x3e{left:157.185244px;}
.x3b{left:162.369559px;}
.x32{left:183.495000px;}
.x34{left:185.295000px;}
.x49{left:189.389987px;}
.x2d{left:194.969987px;}
.x4{left:210.989987px;}
.x45{left:340.658154px;}
.x14{left:343.874987px;}
.x16{left:348.014987px;}
.x17{left:349.994987px;}
.x1d{left:353.234987px;}
.x19{left:359.534987px;}
.x1e{left:365.654987px;}
.x15{left:372.314987px;}
.x1b{left:375.914987px;}
.x43{left:377.375586px;}
.x41{left:378.514021px;}
.x36{left:383.325000px;}
.x42{left:391.953877px;}
.x1f{left:394.274987px;}
.x1c{left:398.774987px;}
.x1a{left:402.764987px;}
.x13{left:409.964987px;}
.x18{left:413.204987px;}
.x31{left:439.844987px;}
.x5{left:446.504987px;}
.x37{left:449.034300px;}
.x2e{left:460.004987px;}
.x2f{left:481.604987px;}
.x4a{left:486.824987px;}
.x44{left:526.890028px;}
.x30{left:549.644987px;}
.x21{left:614.849987px;}
.x23{left:618.989987px;}
.x2a{left:624.209987px;}
.x27{left:631.229987px;}
.x2b{left:636.629987px;}
.x22{left:643.289987px;}
.x25{left:650.309987px;}
.x28{left:652.469987px;}
.x29{left:664.889987px;}
.x20{left:669.929987px;}
.x24{left:680.729987px;}
.x26{left:684.689987px;}
.x35{left:741.240000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-9.435502pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.435502pt;}
.v2{vertical-align:18.560000pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls22{letter-spacing:-0.572245pt;}
.ls10{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls2b{letter-spacing:-0.478933pt;}
.lse{letter-spacing:-0.320000pt;}
.ls25{letter-spacing:-0.302168pt;}
.ls1f{letter-spacing:-0.302161pt;}
.ls28{letter-spacing:-0.294288pt;}
.ls2{letter-spacing:-0.239467pt;}
.ls2c{letter-spacing:-0.161067pt;}
.ls7{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.094933pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls21{letter-spacing:-0.021586pt;}
.ls24{letter-spacing:-0.021567pt;}
.ls27{letter-spacing:-0.021005pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.094933pt;}
.ls1b{letter-spacing:0.104018pt;}
.lsc{letter-spacing:0.136320pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.178500pt;}
.ls1c{letter-spacing:0.183274pt;}
.ls17{letter-spacing:0.183328pt;}
.ls19{letter-spacing:0.183454pt;}
.lsf{letter-spacing:0.183467pt;}
.ls5{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls1d{letter-spacing:0.241776pt;}
.ls16{letter-spacing:0.248244pt;}
.ls1a{letter-spacing:0.248249pt;}
.ls18{letter-spacing:0.248460pt;}
.ls4{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.387279pt;}
.ls26{letter-spacing:0.397648pt;}
.ls23{letter-spacing:0.397985pt;}
.ls20{letter-spacing:0.539172pt;}
.ls2a{letter-spacing:7.632640pt;}
.ls14{letter-spacing:20.079360pt;}
.ls13{letter-spacing:47.952640pt;}
.lsb{letter-spacing:56.912640pt;}
.ls0{letter-spacing:65.232640pt;}
.ws12{word-spacing:-53.120000pt;}
.ws3{word-spacing:-48.000000pt;}
.wsd{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.wsc{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.wsb{word-spacing:-12.960000pt;}
.ws7{word-spacing:-12.592000pt;}
.ws4{word-spacing:-12.192000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws14{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.558933pt;}
.ws0{word-spacing:-10.480533pt;}
.ws13{word-spacing:-10.241067pt;}
.ws10{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._31{margin-left:-243.754586pt;}
._2e{margin-left:-242.735693pt;}
._2f{margin-left:-241.819516pt;}
._38{margin-left:-237.199201pt;}
._37{margin-left:-236.148953pt;}
._2d{margin-left:-229.103639pt;}
._36{margin-left:-223.725392pt;}
._3{margin-left:-4.608000pt;}
._11{margin-left:-3.012480pt;}
._2{margin-left:-2.048000pt;}
._0{margin-left:-1.023680pt;}
._1{width:0.906667pt;}
._6{width:1.824000pt;}
._a{width:3.600000pt;}
._15{width:4.555947pt;}
._f{width:5.462827pt;}
._d{width:6.456320pt;}
._e{width:7.383680pt;}
._7{width:8.288000pt;}
._8{width:9.328000pt;}
._12{width:10.453760pt;}
._16{width:11.511253pt;}
._9{width:13.221333pt;}
._13{width:14.888000pt;}
._14{width:15.955520pt;}
._1b{width:17.384640pt;}
._17{width:18.528640pt;}
._4{width:19.434667pt;}
._18{width:20.480640pt;}
._24{width:21.750720pt;}
._1f{width:23.826560pt;}
._1e{width:24.942720pt;}
._19{width:25.883840pt;}
._1a{width:27.106240pt;}
._22{width:28.112960pt;}
._21{width:29.110080pt;}
._26{width:30.043840pt;}
._23{width:30.945280pt;}
._5{width:32.352000pt;}
._c{width:34.506667pt;}
._b{width:35.568000pt;}
._20{width:36.476800pt;}
._39{width:37.957120pt;}
._10{width:39.785387pt;}
._3b{width:44.809600pt;}
._3c{width:45.704640pt;}
._1c{width:47.556800pt;}
._1d{width:48.900907pt;}
._25{width:50.121600pt;}
._3e{width:62.261760pt;}
._3f{width:63.242560pt;}
._3d{width:72.719040pt;}
._40{width:106.851520pt;}
._34{width:108.069878pt;}
._30{width:110.211931pt;}
._2b{width:111.522462pt;}
._33{width:120.317741pt;}
._2a{width:124.682740pt;}
._32{width:134.694325pt;}
._29{width:137.825046pt;}
._3a{width:146.349440pt;}
._35{width:200.586019pt;}
._2c{width:206.288821pt;}
._27{width:607.626667pt;}
._28{width:1380.373333pt;}
.fs17{font-size:21.267525pt;}
.fs8{font-size:21.566861pt;}
.fs12{font-size:21.836947pt;}
.fsd{font-size:21.855473pt;}
.fs14{font-size:31.244882pt;}
.fs13{font-size:31.507444pt;}
.fs15{font-size:31.538690pt;}
.fs16{font-size:31.770007pt;}
.fsf{font-size:32.081441pt;}
.fsa{font-size:32.108658pt;}
.fs5{font-size:32.350291pt;}
.fse{font-size:32.351033pt;}
.fs9{font-size:32.378478pt;}
.fs10{font-size:32.382146pt;}
.fs7{font-size:32.391666pt;}
.fsb{font-size:32.413908pt;}
.fs6{font-size:32.619877pt;}
.fs11{font-size:32.620625pt;}
.fsc{font-size:32.648299pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:128.000000pt;}
.yf5{bottom:-26.720000pt;}
.yfa{bottom:-18.560000pt;}
.y0{bottom:0.000000pt;}
.yf4{bottom:0.640000pt;}
.y147{bottom:3.054846pt;}
.y104{bottom:3.136586pt;}
.y13c{bottom:3.136648pt;}
.y11a{bottom:3.139289pt;}
.y126{bottom:3.139309pt;}
.y10f{bottom:3.473605pt;}
.y131{bottom:3.473638pt;}
.yf9{bottom:9.440000pt;}
.yf3{bottom:12.960000pt;}
.y145{bottom:13.885530pt;}
.y13a{bottom:14.257306pt;}
.y118{bottom:14.269398pt;}
.y124{bottom:14.269402pt;}
.y102{bottom:14.324409pt;}
.y12f{bottom:14.594312pt;}
.y10d{bottom:14.998377pt;}
.yf8{bottom:21.760000pt;}
.y13f{bottom:24.059809pt;}
.y134{bottom:24.704010pt;}
.y112{bottom:24.724949pt;}
.y11d{bottom:24.724968pt;}
.yfc{bottom:24.770858pt;}
.y129{bottom:25.041000pt;}
.y106{bottom:25.444858pt;}
.yf2{bottom:31.040000pt;}
.yf7{bottom:37.120000pt;}
.y1{bottom:50.080000pt;}
.y149{bottom:53.663406pt;}
.y135{bottom:54.763231pt;}
.y11e{bottom:55.146966pt;}
.y107{bottom:55.437398pt;}
.y140{bottom:59.242849pt;}
.y12a{bottom:60.829049pt;}
.y113{bottom:60.880635pt;}
.yfd{bottom:61.233455pt;}
.y14e{bottom:76.637584pt;}
.y13b{bottom:78.352526pt;}
.y125{bottom:78.756273pt;}
.y10e{bottom:79.093548pt;}
.y146{bottom:82.873432pt;}
.y130{bottom:85.092324pt;}
.y119{bottom:85.164494pt;}
.y11f{bottom:85.164513pt;}
.y103{bottom:85.496174pt;}
.y108{bottom:85.833192pt;}
.y141{bottom:94.426162pt;}
.y114{bottom:97.036602pt;}
.yfe{bottom:97.290551pt;}
.y12b{bottom:97.291359pt;}
.y55{bottom:104.160000pt;}
.yaf{bottom:106.400000pt;}
.y70{bottom:108.480000pt;}
.y1c8{bottom:110.560000pt;}
.y14a{bottom:112.477302pt;}
.y136{bottom:115.488815pt;}
.y120{bottom:115.586792pt;}
.y109{bottom:115.892004pt;}
.y54{bottom:118.720000pt;}
.yae{bottom:120.960000pt;}
.y6f{bottom:123.040000pt;}
.y183{bottom:128.800000pt;}
.y142{bottom:129.937677pt;}
.yf6{bottom:130.880000pt;}
.y53{bottom:133.280000pt;}
.yff{bottom:133.415043pt;}
.y12c{bottom:133.416679pt;}
.y115{bottom:133.529846pt;}
.yad{bottom:135.520000pt;}
.y1c7{bottom:137.440000pt;}
.y6e{bottom:137.600000pt;}
.y182{bottom:140.800000pt;}
.y14b{bottom:141.752969pt;}
.y137{bottom:145.885306pt;}
.y121{bottom:146.009070pt;}
.y10a{bottom:146.220402pt;}
.y52{bottom:147.840000pt;}
.yb3{bottom:148.480000pt;}
.yac{bottom:150.080000pt;}
.y6d{bottom:152.160000pt;}
.y1c6{bottom:152.800000pt;}
.y181{bottom:156.160000pt;}
.yb2{bottom:160.320000pt;}
.y51{bottom:162.400000pt;}
.yab{bottom:164.640000pt;}
.y143{bottom:164.727147pt;}
.y1c5{bottom:164.800000pt;}
.yf0{bottom:165.600000pt;}
.y6c{bottom:166.720000pt;}
.y180{bottom:168.160000pt;}
.y13e{bottom:168.792240pt;}
.y12d{bottom:169.137611pt;}
.y116{bottom:169.281082pt;}
.y100{bottom:169.876517pt;}
.y14c{bottom:171.356839pt;}
.yef{bottom:173.120000pt;}
.y138{bottom:175.944808pt;}
.y122{bottom:176.094073pt;}
.y10b{bottom:176.279215pt;}
.y1c4{bottom:176.800000pt;}
.y50{bottom:176.960000pt;}
.yaa{bottom:179.200000pt;}
.y17f{bottom:180.160000pt;}
.y6b{bottom:181.280000pt;}
.yf1{bottom:186.266667pt;}
.yee{bottom:187.680000pt;}
.y148{bottom:188.423371pt;}
.y1c3{bottom:188.800000pt;}
.y14f{bottom:189.736181pt;}
.y4f{bottom:191.520000pt;}
.y17e{bottom:192.160000pt;}
.y132{bottom:193.468279pt;}
.y11b{bottom:193.632391pt;}
.ya9{bottom:193.760000pt;}
.y105{bottom:194.139225pt;}
.y13d{bottom:194.816241pt;}
.y127{bottom:194.981516pt;}
.y110{bottom:195.150213pt;}
.y6a{bottom:195.840000pt;}
.y144{bottom:199.910460pt;}
.y14d{bottom:200.566865pt;}
.y1c2{bottom:200.800000pt;}
.yed{bottom:202.240000pt;}
.y17d{bottom:204.160000pt;}
.y12e{bottom:205.599921pt;}
.y117{bottom:205.774325pt;}
.y101{bottom:205.933612pt;}
.y4e{bottom:206.080000pt;}
.y139{bottom:206.273901pt;}
.y123{bottom:206.448897pt;}
.y10c{bottom:206.607613pt;}
.ya8{bottom:208.320000pt;}
.y69{bottom:210.400000pt;}
.y1c1{bottom:216.160000pt;}
.yec{bottom:216.800000pt;}
.y17c{bottom:219.520000pt;}
.yb1{bottom:220.640000pt;}
.ya7{bottom:222.880000pt;}
.y68{bottom:224.960000pt;}
.y4d{bottom:226.106667pt;}
.y1c0{bottom:228.186667pt;}
.yeb{bottom:231.386667pt;}
.y17b{bottom:231.546667pt;}
.ya6{bottom:237.466667pt;}
.y67{bottom:239.546667pt;}
.y1bf{bottom:240.186667pt;}
.yb0{bottom:240.666667pt;}
.y17a{bottom:243.546667pt;}
.yea{bottom:245.946667pt;}
.y4c{bottom:251.866667pt;}
.ya5{bottom:252.026667pt;}
.y1be{bottom:252.186667pt;}
.y66{bottom:254.106667pt;}
.y179{bottom:255.546667pt;}
.ye9{bottom:260.506667pt;}
.y4b{bottom:265.626667pt;}
.ya4{bottom:266.586667pt;}
.y1bd{bottom:267.546667pt;}
.y65{bottom:268.666667pt;}
.y178{bottom:273.146667pt;}
.ye8{bottom:275.066667pt;}
.y1bc{bottom:279.546667pt;}
.ya3{bottom:281.146667pt;}
.y64{bottom:283.226667pt;}
.ye7{bottom:289.626667pt;}
.y1bb{bottom:291.546667pt;}
.y4a{bottom:293.946667pt;}
.ya2{bottom:295.706667pt;}
.y63{bottom:297.786667pt;}
.y177{bottom:299.066667pt;}
.y1ba{bottom:303.546667pt;}
.ye6{bottom:304.186667pt;}
.y49{bottom:308.826667pt;}
.ya1{bottom:310.266667pt;}
.y62{bottom:312.346667pt;}
.y176{bottom:313.786667pt;}
.ye5{bottom:318.746667pt;}
.y48{bottom:323.706667pt;}
.ya0{bottom:324.826667pt;}
.y61{bottom:326.906667pt;}
.y175{bottom:328.346667pt;}
.y1b9{bottom:330.746667pt;}
.ye4{bottom:333.306667pt;}
.y47{bottom:338.586667pt;}
.y9f{bottom:339.386667pt;}
.y60{bottom:341.466667pt;}
.y1b8{bottom:342.746667pt;}
.y174{bottom:342.906667pt;}
.ye3{bottom:347.866667pt;}
.y46{bottom:353.466667pt;}
.y9e{bottom:353.946667pt;}
.y1b7{bottom:354.746667pt;}
.y5f{bottom:356.026667pt;}
.y173{bottom:357.466667pt;}
.ye2{bottom:362.426667pt;}
.y45{bottom:368.346667pt;}
.y9d{bottom:368.506667pt;}
.y1b6{bottom:370.106667pt;}
.y5e{bottom:370.746667pt;}
.ye1{bottom:376.986667pt;}
.y172{bottom:377.306667pt;}
.y128{bottom:379.194852pt;}
.y133{bottom:379.194870pt;}
.y1b5{bottom:382.106667pt;}
.y9c{bottom:383.066667pt;}
.y44{bottom:383.226667pt;}
.y5d{bottom:385.306667pt;}
.ye0{bottom:391.546667pt;}
.y1b4{bottom:394.106667pt;}
.y9b{bottom:397.786667pt;}
.y43{bottom:398.106667pt;}
.y5c{bottom:399.866667pt;}
.y171{bottom:403.226667pt;}
.ydf{bottom:406.106667pt;}
.y1b3{bottom:409.466667pt;}
.y9a{bottom:412.346667pt;}
.y42{bottom:412.986667pt;}
.y5b{bottom:414.426667pt;}
.y170{bottom:417.946667pt;}
.yde{bottom:420.666667pt;}
.y1b2{bottom:421.466667pt;}
.y99{bottom:426.946667pt;}
.y41{bottom:427.906667pt;}
.y5a{bottom:429.026667pt;}
.y16f{bottom:432.546667pt;}
.y1b1{bottom:433.506667pt;}
.ydd{bottom:435.266667pt;}
.y98{bottom:441.506667pt;}
.y40{bottom:442.946667pt;}
.y59{bottom:443.586667pt;}
.y1b0{bottom:445.506667pt;}
.y16e{bottom:447.106667pt;}
.ydc{bottom:449.986667pt;}
.y97{bottom:456.066667pt;}
.y3f{bottom:457.826667pt;}
.y58{bottom:458.146667pt;}
.y1af{bottom:460.866667pt;}
.y16d{bottom:461.666667pt;}
.ydb{bottom:464.546667pt;}
.y96{bottom:470.626667pt;}
.y3e{bottom:472.706667pt;}
.y1ae{bottom:472.866667pt;}
.y16c{bottom:476.226667pt;}
.yda{bottom:479.106667pt;}
.y1ad{bottom:484.866667pt;}
.y95{bottom:485.186667pt;}
.y57{bottom:487.266667pt;}
.y3d{bottom:487.586667pt;}
.y16b{bottom:490.786667pt;}
.yd9{bottom:493.666667pt;}
.y94{bottom:499.746667pt;}
.y1ac{bottom:500.226667pt;}
.y56{bottom:501.826667pt;}
.y3c{bottom:502.466667pt;}
.y16a{bottom:505.346667pt;}
.yd8{bottom:508.226667pt;}
.y1ab{bottom:512.226667pt;}
.y93{bottom:514.306667pt;}
.y169{bottom:519.906667pt;}
.yd7{bottom:522.786667pt;}
.y1aa{bottom:524.226667pt;}
.y92{bottom:528.866667pt;}
.y168{bottom:534.466667pt;}
.y1a9{bottom:536.226667pt;}
.yd6{bottom:537.346667pt;}
.y91{bottom:543.426667pt;}
.y1d{bottom:548.066667pt;}
.y167{bottom:549.026667pt;}
.y1a8{bottom:551.586667pt;}
.yd5{bottom:551.906667pt;}
.y90{bottom:557.986667pt;}
.y1c{bottom:561.826667pt;}
.y166{bottom:563.586667pt;}
.yd4{bottom:566.466667pt;}
.y8f{bottom:572.546667pt;}
.y1b{bottom:575.586667pt;}
.y165{bottom:578.146667pt;}
.yd3{bottom:581.026667pt;}
.y8e{bottom:587.106667pt;}
.y1a7{bottom:587.586667pt;}
.y1a{bottom:589.506667pt;}
.y164{bottom:592.706667pt;}
.y29{bottom:594.306667pt;}
.y11c{bottom:595.008289pt;}
.y111{bottom:595.345567pt;}
.yd2{bottom:595.586667pt;}
.y8d{bottom:601.666667pt;}
.y1a6{bottom:602.786667pt;}
.y19{bottom:603.266667pt;}
.y163{bottom:607.266667pt;}
.y28{bottom:608.066667pt;}
.yd1{bottom:610.146667pt;}
.y1a5{bottom:614.786667pt;}
.y8c{bottom:616.226667pt;}
.y18{bottom:617.026667pt;}
.y27{bottom:621.826667pt;}
.yd0{bottom:624.706667pt;}
.y1a4{bottom:626.786667pt;}
.y8b{bottom:630.813333pt;}
.y3b{bottom:633.533333pt;}
.y26{bottom:635.773333pt;}
.y162{bottom:636.413333pt;}
.y1a3{bottom:638.813333pt;}
.ycf{bottom:639.293333pt;}
.y8a{bottom:645.373333pt;}
.y3a{bottom:647.293333pt;}
.y17{bottom:649.533333pt;}
.y161{bottom:650.973333pt;}
.yce{bottom:653.853333pt;}
.y1a2{bottom:654.173333pt;}
.y89{bottom:659.933333pt;}
.y39{bottom:661.053333pt;}
.y16{bottom:663.293333pt;}
.y160{bottom:665.533333pt;}
.y1a1{bottom:666.173333pt;}
.ycd{bottom:668.413333pt;}
.y88{bottom:674.493333pt;}
.y38{bottom:674.973333pt;}
.y15{bottom:677.053333pt;}
.y1a0{bottom:678.173333pt;}
.y15f{bottom:680.093333pt;}
.ycc{bottom:682.973333pt;}
.y37{bottom:688.733333pt;}
.y87{bottom:689.053333pt;}
.y19f{bottom:690.173333pt;}
.y14{bottom:690.973333pt;}
.y15e{bottom:694.653333pt;}
.y25{bottom:695.773333pt;}
.ycb{bottom:697.533333pt;}
.y36{bottom:702.493333pt;}
.y86{bottom:703.613333pt;}
.y13{bottom:704.733333pt;}
.y19e{bottom:705.533333pt;}
.y15d{bottom:709.213333pt;}
.y24{bottom:709.533333pt;}
.yca{bottom:712.093333pt;}
.y19d{bottom:717.533333pt;}
.y85{bottom:718.173333pt;}
.y12{bottom:718.493333pt;}
.y23{bottom:723.453333pt;}
.y15c{bottom:723.773333pt;}
.yc9{bottom:726.653333pt;}
.y19c{bottom:729.533333pt;}
.y84{bottom:732.733333pt;}
.y35{bottom:734.973333pt;}
.y22{bottom:737.213333pt;}
.y15b{bottom:739.293333pt;}
.yc8{bottom:741.213333pt;}
.y19b{bottom:741.533333pt;}
.y83{bottom:747.293333pt;}
.y34{bottom:748.733333pt;}
.y11{bottom:750.973333pt;}
.y15a{bottom:753.853333pt;}
.yc7{bottom:755.773333pt;}
.y19a{bottom:756.893333pt;}
.y82{bottom:761.853333pt;}
.y33{bottom:762.653333pt;}
.y10{bottom:764.733333pt;}
.y159{bottom:768.413333pt;}
.y199{bottom:768.893333pt;}
.yc6{bottom:770.333333pt;}
.y32{bottom:776.413333pt;}
.yf{bottom:778.653333pt;}
.y198{bottom:780.893333pt;}
.y158{bottom:782.973333pt;}
.yc5{bottom:784.893333pt;}
.y31{bottom:790.173333pt;}
.y81{bottom:790.973333pt;}
.ye{bottom:792.413333pt;}
.y197{bottom:796.253333pt;}
.y21{bottom:797.213333pt;}
.y157{bottom:797.533333pt;}
.yc4{bottom:799.453333pt;}
.y30{bottom:803.933333pt;}
.y80{bottom:805.533333pt;}
.yd{bottom:806.173333pt;}
.y196{bottom:808.253333pt;}
.yfb{bottom:810.855189pt;}
.y20{bottom:810.973333pt;}
.y156{bottom:812.093333pt;}
.yc3{bottom:814.013333pt;}
.yc{bottom:819.933333pt;}
.y7f{bottom:820.093333pt;}
.y195{bottom:820.253333pt;}
.y1f{bottom:824.893333pt;}
.y155{bottom:826.653333pt;}
.yc2{bottom:828.613333pt;}
.y7e{bottom:834.853333pt;}
.y194{bottom:835.653333pt;}
.y2f{bottom:836.453333pt;}
.y1e{bottom:838.693333pt;}
.y154{bottom:842.213333pt;}
.yc1{bottom:843.173333pt;}
.y193{bottom:847.653333pt;}
.y7d{bottom:849.413333pt;}
.y2e{bottom:850.213333pt;}
.yb{bottom:852.453333pt;}
.y153{bottom:856.773333pt;}
.yc0{bottom:857.733333pt;}
.y192{bottom:859.653333pt;}
.y7c{bottom:863.973333pt;}
.y2d{bottom:864.133333pt;}
.ya{bottom:866.213333pt;}
.y152{bottom:871.493333pt;}
.y191{bottom:871.653333pt;}
.ybf{bottom:872.453333pt;}
.y2c{bottom:877.893333pt;}
.y7b{bottom:878.533333pt;}
.y9{bottom:880.133333pt;}
.y151{bottom:886.053333pt;}
.y190{bottom:886.853333pt;}
.ybe{bottom:887.013333pt;}
.y2b{bottom:891.653333pt;}
.y7a{bottom:893.093333pt;}
.y8{bottom:893.893333pt;}
.y18f{bottom:898.853333pt;}
.y150{bottom:900.613333pt;}
.ybd{bottom:901.573333pt;}
.y2a{bottom:905.413333pt;}
.y7{bottom:907.653333pt;}
.y18e{bottom:914.213333pt;}
.ybc{bottom:916.133333pt;}
.y6{bottom:921.413333pt;}
.y79{bottom:922.213333pt;}
.y18d{bottom:926.213333pt;}
.ybb{bottom:930.693333pt;}
.y78{bottom:936.773333pt;}
.y18c{bottom:938.213333pt;}
.yba{bottom:945.253333pt;}
.y18b{bottom:950.213333pt;}
.y77{bottom:951.333333pt;}
.y5{bottom:952.453333pt;}
.yb9{bottom:959.813333pt;}
.y18a{bottom:965.573333pt;}
.y76{bottom:965.893333pt;}
.yb8{bottom:974.373333pt;}
.y189{bottom:977.573333pt;}
.y75{bottom:980.453333pt;}
.y4{bottom:983.013333pt;}
.yb7{bottom:988.933333pt;}
.y188{bottom:989.573333pt;}
.y74{bottom:995.013333pt;}
.y187{bottom:1001.573333pt;}
.yb6{bottom:1003.493333pt;}
.y73{bottom:1009.573333pt;}
.y186{bottom:1016.933333pt;}
.yb5{bottom:1018.053333pt;}
.y3{bottom:1019.813333pt;}
.y72{bottom:1024.133333pt;}
.y185{bottom:1028.960000pt;}
.yb4{bottom:1038.080000pt;}
.y71{bottom:1038.720000pt;}
.y184{bottom:1040.960000pt;}
.y2{bottom:1056.640000pt;}
.h25{height:27.079915pt;}
.h24{height:27.307478pt;}
.h26{height:27.334558pt;}
.h28{height:27.535040pt;}
.h29{height:27.622219pt;}
.h1e{height:27.804960pt;}
.h17{height:27.828548pt;}
.h10{height:28.037972pt;}
.h1d{height:28.038615pt;}
.h16{height:28.062402pt;}
.h1f{height:28.065581pt;}
.h12{height:28.073832pt;}
.h18{height:28.093108pt;}
.h14{height:28.127483pt;}
.h11{height:28.271622pt;}
.h21{height:28.272270pt;}
.h1a{height:28.296255pt;}
.h22{height:28.361783pt;}
.h1b{height:28.385844pt;}
.h2{height:30.778125pt;}
.hd{height:31.217812pt;}
.h7{height:33.867188pt;}
.h4{height:34.453125pt;}
.h5{height:35.085938pt;}
.h9{height:38.128125pt;}
.h8{height:38.672812pt;}
.h6{height:38.953125pt;}
.ha{height:43.366250pt;}
.hb{height:43.472917pt;}
.h3{height:91.875000pt;}
.h23{height:208.736820pt;}
.h27{height:209.065022pt;}
.h15{height:214.507437pt;}
.h20{height:214.662600pt;}
.h1c{height:214.662618pt;}
.h19{height:214.844713pt;}
.hf{height:214.994680pt;}
.h13{height:214.994716pt;}
.hc{height:341.506667pt;}
.he{height:895.173333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:319.986305pt;}
.wc{width:320.971889pt;}
.w7{width:328.866105pt;}
.w5{width:328.977865pt;}
.w8{width:329.203750pt;}
.w3{width:329.533333pt;}
.wa{width:329.555803pt;}
.w9{width:652.702639pt;}
.w6{width:652.894528pt;}
.w4{width:681.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x33{left:9.632000pt;}
.x3a{left:11.190874pt;}
.x38{left:12.203114pt;}
.x39{left:24.125047pt;}
.x47{left:54.763106pt;}
.x3f{left:56.176707pt;}
.x1{left:59.519988pt;}
.x2c{left:60.479988pt;}
.xd{left:64.639988pt;}
.x9{left:68.351988pt;}
.x7{left:72.991988pt;}
.x3d{left:75.238774pt;}
.x12{left:79.231988pt;}
.x8{left:84.031988pt;}
.xf{left:88.671988pt;}
.xe{left:89.951988pt;}
.x10{left:93.791988pt;}
.xb{left:95.231988pt;}
.x48{left:97.631988pt;}
.x40{left:100.336801pt;}
.xc{left:101.311988pt;}
.x3c{left:103.417143pt;}
.x2{left:105.631988pt;}
.x3{left:107.871988pt;}
.x6{left:111.391988pt;}
.x11{left:117.951988pt;}
.xa{left:123.231988pt;}
.x46{left:136.238065pt;}
.x3e{left:139.720217pt;}
.x3b{left:144.328497pt;}
.x32{left:163.106667pt;}
.x34{left:164.706667pt;}
.x49{left:168.346655pt;}
.x2d{left:173.306655pt;}
.x4{left:187.546655pt;}
.x45{left:302.807248pt;}
.x14{left:305.666655pt;}
.x16{left:309.346655pt;}
.x17{left:311.106655pt;}
.x1d{left:313.986655pt;}
.x19{left:319.586655pt;}
.x1e{left:325.026655pt;}
.x15{left:330.946655pt;}
.x1b{left:334.146655pt;}
.x43{left:335.444966pt;}
.x41{left:336.456908pt;}
.x36{left:340.733333pt;}
.x42{left:348.403446pt;}
.x1f{left:350.466655pt;}
.x1c{left:354.466655pt;}
.x1a{left:358.013322pt;}
.x13{left:364.413322pt;}
.x18{left:367.293322pt;}
.x31{left:390.973322pt;}
.x5{left:396.893322pt;}
.x37{left:399.141600pt;}
.x2e{left:408.893322pt;}
.x2f{left:428.093322pt;}
.x4a{left:432.733322pt;}
.x44{left:468.346692pt;}
.x30{left:488.573322pt;}
.x21{left:546.533322pt;}
.x23{left:550.213322pt;}
.x2a{left:554.853322pt;}
.x27{left:561.093322pt;}
.x2b{left:565.893322pt;}
.x22{left:571.813322pt;}
.x25{left:578.053322pt;}
.x28{left:579.973322pt;}
.x29{left:591.013322pt;}
.x20{left:595.493322pt;}
.x24{left:605.093322pt;}
.x26{left:608.613322pt;}
.x35{left:658.880000pt;}
}




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