
    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_67f1196ce871861a9afeb494.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bdb24e6b4812c006fcbc0ec4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_94662829a11ae225742f83fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_ea3d0d265f1dccef7ad7093a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923340;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_520853e9c3e6537f9aeb7f4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972656;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_9b17e617e90ac0739b580c7e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_f7f104bf7dadcad14baf00ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_30f8a4df2be801c9ff7d97e7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.692383;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_cc283f4c42278174a6eaa1e6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_f7dc8aa171b8a492ca554671.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938477;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;}
.m2f{transform:matrix(-0.158327,0.193475,-0.193475,-0.158327,0,0);-ms-transform:matrix(-0.158327,0.193475,-0.193475,-0.158327,0,0);-webkit-transform:matrix(-0.158327,0.193475,-0.193475,-0.158327,0,0);}
.m1{transform:matrix(-0.158060,-0.193693,0.193693,-0.158060,0,0);-ms-transform:matrix(-0.158060,-0.193693,0.193693,-0.158060,0,0);-webkit-transform:matrix(-0.158060,-0.193693,0.193693,-0.158060,0,0);}
.m2e{transform:matrix(-0.135028,0.210399,-0.210399,-0.135028,0,0);-ms-transform:matrix(-0.135028,0.210399,-0.210399,-0.135028,0,0);-webkit-transform:matrix(-0.135028,0.210399,-0.210399,-0.135028,0,0);}
.m2{transform:matrix(-0.134677,-0.210623,0.210623,-0.134677,0,0);-ms-transform:matrix(-0.134677,-0.210623,0.210623,-0.134677,0,0);-webkit-transform:matrix(-0.134677,-0.210623,0.210623,-0.134677,0,0);}
.m2d{transform:matrix(-0.108504,0.225226,-0.225226,-0.108504,0,0);-ms-transform:matrix(-0.108504,0.225226,-0.225226,-0.108504,0,0);-webkit-transform:matrix(-0.108504,0.225226,-0.225226,-0.108504,0,0);}
.m3{transform:matrix(-0.108001,-0.225468,0.225468,-0.108001,0,0);-ms-transform:matrix(-0.108001,-0.225468,0.225468,-0.108001,0,0);-webkit-transform:matrix(-0.108001,-0.225468,0.225468,-0.108001,0,0);}
.m2c{transform:matrix(-0.088348,0.233869,-0.233869,-0.088348,0,0);-ms-transform:matrix(-0.088348,0.233869,-0.233869,-0.088348,0,0);-webkit-transform:matrix(-0.088348,0.233869,-0.233869,-0.088348,0,0);}
.m4{transform:matrix(-0.085164,-0.235047,0.235047,-0.085164,0,0);-ms-transform:matrix(-0.085164,-0.235047,0.235047,-0.085164,0,0);-webkit-transform:matrix(-0.085164,-0.235047,0.235047,-0.085164,0,0);}
.m2b{transform:matrix(-0.067458,0.240727,-0.240727,-0.067458,0,0);-ms-transform:matrix(-0.067458,0.240727,-0.240727,-0.067458,0,0);-webkit-transform:matrix(-0.067458,0.240727,-0.240727,-0.067458,0,0);}
.m5{transform:matrix(-0.061405,-0.242341,0.242341,-0.061405,0,0);-ms-transform:matrix(-0.061405,-0.242341,0.242341,-0.061405,0,0);-webkit-transform:matrix(-0.061405,-0.242341,0.242341,-0.061405,0,0);}
.m2a{transform:matrix(-0.038896,0.246956,-0.246956,-0.038896,0,0);-ms-transform:matrix(-0.038896,0.246956,-0.246956,-0.038896,0,0);-webkit-transform:matrix(-0.038896,0.246956,-0.246956,-0.038896,0,0);}
.m6{transform:matrix(-0.032890,-0.247827,0.247827,-0.032890,0,0);-ms-transform:matrix(-0.032890,-0.247827,0.247827,-0.032890,0,0);-webkit-transform:matrix(-0.032890,-0.247827,0.247827,-0.032890,0,0);}
.m7{transform:matrix(-0.012632,-0.249681,0.249681,-0.012632,0,0);-ms-transform:matrix(-0.012632,-0.249681,0.249681,-0.012632,0,0);-webkit-transform:matrix(-0.012632,-0.249681,0.249681,-0.012632,0,0);}
.m29{transform:matrix(-0.011475,0.249737,-0.249737,-0.011475,0,0);-ms-transform:matrix(-0.011475,0.249737,-0.249737,-0.011475,0,0);-webkit-transform:matrix(-0.011475,0.249737,-0.249737,-0.011475,0,0);}
.m8{transform:matrix(0.000395,-0.250000,0.250000,0.000395,0,0);-ms-transform:matrix(0.000395,-0.250000,0.250000,0.000395,0,0);-webkit-transform:matrix(0.000395,-0.250000,0.250000,0.000395,0,0);}
.m9{transform:matrix(0.022098,-0.249021,0.249021,0.022098,0,0);-ms-transform:matrix(0.022098,-0.249021,0.249021,0.022098,0,0);-webkit-transform:matrix(0.022098,-0.249021,0.249021,0.022098,0,0);}
.m28{transform:matrix(0.024062,0.248839,-0.248839,0.024062,0,0);-ms-transform:matrix(0.024062,0.248839,-0.248839,0.024062,0,0);-webkit-transform:matrix(0.024062,0.248839,-0.248839,0.024062,0,0);}
.ma{transform:matrix(0.045065,-0.245905,0.245905,0.045065,0,0);-ms-transform:matrix(0.045065,-0.245905,0.245905,0.045065,0,0);-webkit-transform:matrix(0.045065,-0.245905,0.245905,0.045065,0,0);}
.m27{transform:matrix(0.055502,0.243761,-0.243761,0.055502,0,0);-ms-transform:matrix(0.055502,0.243761,-0.243761,0.055502,0,0);-webkit-transform:matrix(0.055502,0.243761,-0.243761,0.055502,0,0);}
.mb{transform:matrix(0.059566,-0.242800,0.242800,0.059566,0,0);-ms-transform:matrix(0.059566,-0.242800,0.242800,0.059566,0,0);-webkit-transform:matrix(0.059566,-0.242800,0.242800,0.059566,0,0);}
.m26{transform:matrix(0.078028,0.237511,-0.237511,0.078028,0,0);-ms-transform:matrix(0.078028,0.237511,-0.237511,0.078028,0,0);-webkit-transform:matrix(0.078028,0.237511,-0.237511,0.078028,0,0);}
.mc{transform:matrix(0.083279,-0.235721,0.235721,0.083279,0,0);-ms-transform:matrix(0.083279,-0.235721,0.235721,0.083279,0,0);-webkit-transform:matrix(0.083279,-0.235721,0.235721,0.083279,0,0);}
.m25{transform:matrix(0.105229,0.226775,-0.226775,0.105229,0,0);-ms-transform:matrix(0.105229,0.226775,-0.226775,0.105229,0,0);-webkit-transform:matrix(0.105229,0.226775,-0.226775,0.105229,0,0);}
.md{transform:matrix(0.106274,-0.226287,0.226287,0.106274,0,0);-ms-transform:matrix(0.106274,-0.226287,0.226287,0.106274,0,0);-webkit-transform:matrix(0.106274,-0.226287,0.226287,0.106274,0,0);}
.me{transform:matrix(0.118138,-0.220326,0.220326,0.118138,0,0);-ms-transform:matrix(0.118138,-0.220326,0.220326,0.118138,0,0);-webkit-transform:matrix(0.118138,-0.220326,0.220326,0.118138,0,0);}
.m24{transform:matrix(0.133231,0.211541,-0.211541,0.133231,0,0);-ms-transform:matrix(0.133231,0.211541,-0.211541,0.133231,0,0);-webkit-transform:matrix(0.133231,0.211541,-0.211541,0.133231,0,0);}
.mf{transform:matrix(0.136918,-0.209173,0.209173,0.136918,0,0);-ms-transform:matrix(0.136918,-0.209173,0.209173,0.136918,0,0);-webkit-transform:matrix(0.136918,-0.209173,0.209173,0.136918,0,0);}
.m23{transform:matrix(0.152333,0.198229,-0.198229,0.152333,0,0);-ms-transform:matrix(0.152333,0.198229,-0.198229,0.152333,0,0);-webkit-transform:matrix(0.152333,0.198229,-0.198229,0.152333,0,0);}
.m10{transform:matrix(0.154682,-0.196401,0.196401,0.154682,0,0);-ms-transform:matrix(0.154682,-0.196401,0.196401,0.154682,0,0);-webkit-transform:matrix(0.154682,-0.196401,0.196401,0.154682,0,0);}
.m22{transform:matrix(0.162640,0.189864,-0.189864,0.162640,0,0);-ms-transform:matrix(0.162640,0.189864,-0.189864,0.162640,0,0);-webkit-transform:matrix(0.162640,0.189864,-0.189864,0.162640,0,0);}
.m11{transform:matrix(0.170119,-0.183192,0.183192,0.170119,0,0);-ms-transform:matrix(0.170119,-0.183192,0.183192,0.170119,0,0);-webkit-transform:matrix(0.170119,-0.183192,0.183192,0.170119,0,0);}
.m21{transform:matrix(0.177520,0.176030,-0.176030,0.177520,0,0);-ms-transform:matrix(0.177520,0.176030,-0.176030,0.177520,0,0);-webkit-transform:matrix(0.177520,0.176030,-0.176030,0.177520,0,0);}
.m12{transform:matrix(0.189140,-0.163481,0.163481,0.189140,0,0);-ms-transform:matrix(0.189140,-0.163481,0.163481,0.189140,0,0);-webkit-transform:matrix(0.189140,-0.163481,0.163481,0.189140,0,0);}
.m20{transform:matrix(0.192063,0.160037,-0.160037,0.192063,0,0);-ms-transform:matrix(0.192063,0.160037,-0.160037,0.192063,0,0);-webkit-transform:matrix(0.192063,0.160037,-0.160037,0.192063,0,0);}
.m13{transform:matrix(0.201829,-0.147529,0.147529,0.201829,0,0);-ms-transform:matrix(0.201829,-0.147529,0.147529,0.201829,0,0);-webkit-transform:matrix(0.201829,-0.147529,0.147529,0.201829,0,0);}
.m1f{transform:matrix(0.206048,0.141578,-0.141578,0.206048,0,0);-ms-transform:matrix(0.206048,0.141578,-0.141578,0.206048,0,0);-webkit-transform:matrix(0.206048,0.141578,-0.141578,0.206048,0,0);}
.m14{transform:matrix(0.209303,-0.136720,0.136720,0.209303,0,0);-ms-transform:matrix(0.209303,-0.136720,0.136720,0.209303,0,0);-webkit-transform:matrix(0.209303,-0.136720,0.136720,0.209303,0,0);}
.m1e{transform:matrix(0.221041,0.116794,-0.116794,0.221041,0,0);-ms-transform:matrix(0.221041,0.116794,-0.116794,0.221041,0,0);-webkit-transform:matrix(0.221041,0.116794,-0.116794,0.221041,0,0);}
.m15{transform:matrix(0.221810,-0.115327,0.115327,0.221810,0,0);-ms-transform:matrix(0.221810,-0.115327,0.115327,0.221810,0,0);-webkit-transform:matrix(0.221810,-0.115327,0.115327,0.221810,0,0);}
.m16{transform:matrix(0.232165,-0.092732,0.092732,0.232165,0,0);-ms-transform:matrix(0.232165,-0.092732,0.092732,0.232165,0,0);-webkit-transform:matrix(0.232165,-0.092732,0.092732,0.232165,0,0);}
.m1d{transform:matrix(0.235658,0.083459,-0.083459,0.235658,0,0);-ms-transform:matrix(0.235658,0.083459,-0.083459,0.235658,0,0);-webkit-transform:matrix(0.235658,0.083459,-0.083459,0.235658,0,0);}
.m31{transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);-ms-transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);-webkit-transform:matrix(0.237764,0.000000,-0.077254,0.237764,0,0);}
.m17{transform:matrix(0.239817,-0.070624,0.070624,0.239817,0,0);-ms-transform:matrix(0.239817,-0.070624,0.070624,0.239817,0,0);-webkit-transform:matrix(0.239817,-0.070624,0.070624,0.239817,0,0);}
.m1c{transform:matrix(0.243784,0.055400,-0.055400,0.243784,0,0);-ms-transform:matrix(0.243784,0.055400,-0.055400,0.243784,0,0);-webkit-transform:matrix(0.243784,0.055400,-0.055400,0.243784,0,0);}
.m18{transform:matrix(0.246635,-0.040883,0.040883,0.246635,0,0);-ms-transform:matrix(0.246635,-0.040883,0.040883,0.246635,0,0);-webkit-transform:matrix(0.246635,-0.040883,0.040883,0.246635,0,0);}
.m1b{transform:matrix(0.246864,0.039471,-0.039471,0.246864,0,0);-ms-transform:matrix(0.246864,0.039471,-0.039471,0.246864,0,0);-webkit-transform:matrix(0.246864,0.039471,-0.039471,0.246864,0,0);}
.m1a{transform:matrix(0.249461,0.016403,-0.016403,0.249461,0,0);-ms-transform:matrix(0.249461,0.016403,-0.016403,0.249461,0,0);-webkit-transform:matrix(0.249461,0.016403,-0.016403,0.249461,0,0);}
.m19{transform:matrix(0.249700,-0.012243,0.012243,0.249700,0,0);-ms-transform:matrix(0.249700,-0.012243,0.012243,0.249700,0,0);-webkit-transform:matrix(0.249700,-0.012243,0.012243,0.249700,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);}
.m30{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:-13.998000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:4.962540px;}
.v1{vertical-align:13.998000px;}
.v3{vertical-align:40.798800px;}
.ls1{letter-spacing:-0.498276px;}
.ls0{letter-spacing:0.000000px;}
.sc_{text-shadow:none;}
.sc1{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);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-12.258000px;}
.ws1{word-spacing:-11.676000px;}
.ws0{word-spacing:-8.757000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:42.606000px;}
.ws7{word-spacing:42.654000px;}
.ws6{word-spacing:51.216000px;}
.ws4{word-spacing:68.526000px;}
.ws5{word-spacing:68.574000px;}
._1a{margin-left:-4.158000px;}
._0{width:1.176000px;}
._c{width:2.808000px;}
._6{width:3.834000px;}
._a{width:5.346000px;}
._3{width:6.426000px;}
._1{width:7.879200px;}
._2{width:9.400800px;}
._9{width:10.501200px;}
._1f{width:12.400860px;}
._5{width:13.500000px;}
._8{width:15.120000px;}
._16{width:16.416000px;}
._d{width:17.550000px;}
._7{width:19.116000px;}
._13{width:20.520000px;}
._b{width:21.762000px;}
._15{width:23.274000px;}
._24{width:24.300000px;}
._1c{width:25.380000px;}
._f{width:26.676000px;}
._14{width:28.080000px;}
._11{width:29.214000px;}
._e{width:31.428000px;}
._1b{width:33.156000px;}
._23{width:34.800000px;}
._1e{width:36.450000px;}
._17{width:38.394000px;}
._21{width:41.760000px;}
._4{width:42.768000px;}
._22{width:43.872000px;}
._10{width:46.332000px;}
._1d{width:47.628000px;}
._25{width:50.928000px;}
._20{width:53.280000px;}
._12{width:71.388000px;}
._19{width:1467.180000px;}
._18{width:2499.390000px;}
.fc4{color:rgb(28,99,183);}
.fc3{color:rgb(90,87,88);}
.fc5{color:rgb(24,95,161);}
.fc1{color:rgb(24,95,161);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs35{font-size:24.913800px;}
.fs12{font-size:26.574390px;}
.fs26{font-size:26.574440px;}
.fs16{font-size:26.574455px;}
.fs30{font-size:26.574503px;}
.fs31{font-size:26.574505px;}
.fs17{font-size:26.574557px;}
.fs33{font-size:26.574566px;}
.fs22{font-size:26.574570px;}
.fsc{font-size:26.574587px;}
.fs32{font-size:26.574604px;}
.fs27{font-size:26.574611px;}
.fs1c{font-size:26.574618px;}
.fs28{font-size:26.574625px;}
.fs15{font-size:26.574632px;}
.fse{font-size:26.574633px;}
.fs13{font-size:26.574661px;}
.fsa{font-size:26.574676px;}
.fs1e{font-size:26.574685px;}
.fs19{font-size:26.574689px;}
.fs18{font-size:26.574707px;}
.fs8{font-size:26.574709px;}
.fs21{font-size:26.574720px;}
.fs9{font-size:26.574737px;}
.fs1d{font-size:26.574745px;}
.fs34{font-size:26.574753px;}
.fs14{font-size:26.574772px;}
.fs2c{font-size:26.574775px;}
.fs1a{font-size:26.574791px;}
.fs2f{font-size:26.574808px;}
.fsf{font-size:26.574820px;}
.fs25{font-size:26.574848px;}
.fs1f{font-size:26.574861px;}
.fs20{font-size:26.574919px;}
.fs10{font-size:26.574925px;}
.fs11{font-size:26.574934px;}
.fs23{font-size:26.574939px;}
.fsd{font-size:26.574947px;}
.fs2b{font-size:26.574956px;}
.fs2d{font-size:26.574979px;}
.fs29{font-size:26.574983px;}
.fs2a{font-size:26.575007px;}
.fs2e{font-size:26.575009px;}
.fs1b{font-size:26.575012px;}
.fs7{font-size:26.575028px;}
.fsb{font-size:26.575102px;}
.fs24{font-size:26.575137px;}
.fs2{font-size:31.500000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs36{font-size:56.778965px;}
.fs4{font-size:66.000000px;}
.fs37{font-size:69.396513px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6a{bottom:49.170000px;}
.y10d{bottom:49.170240px;}
.y69{bottom:65.370000px;}
.y10c{bottom:65.370240px;}
.y18c{bottom:119.020665px;}
.yd3{bottom:119.469540px;}
.y35{bottom:123.069300px;}
.y64{bottom:132.069450px;}
.y18b{bottom:134.661090px;}
.yd2{bottom:135.669615px;}
.y14c{bottom:136.461075px;}
.y34{bottom:139.269300px;}
.y109{bottom:142.760790px;}
.y63{bottom:148.269450px;}
.y18a{bottom:149.061060px;}
.y14b{bottom:150.861045px;}
.yd1{bottom:151.869690px;}
.y33{bottom:155.469300px;}
.y108{bottom:157.160760px;}
.y189{bottom:162.220395px;}
.y14a{bottom:164.020380px;}
.yd0{bottom:168.069765px;}
.y107{bottom:170.320095px;}
.y32{bottom:171.669300px;}
.y62{bottom:172.569450px;}
.y188{bottom:180.110985px;}
.y149{bottom:181.910970px;}
.y31{bottom:187.869300px;}
.y106{bottom:188.210685px;}
.y61{bottom:188.769450px;}
.y187{bottom:193.270320px;}
.ycf{bottom:193.488645px;}
.y148{bottom:196.310940px;}
.y105{bottom:201.370020px;}
.y30{bottom:204.069300px;}
.y60{bottom:204.969450px;}
.y147{bottom:209.470275px;}
.y186{bottom:211.160910px;}
.yce{bottom:213.288570px;}
.y104{bottom:219.260610px;}
.y5f{bottom:221.169450px;}
.y185{bottom:225.560880px;}
.y146{bottom:227.360865px;}
.y2f{bottom:228.369300px;}
.y103{bottom:232.419945px;}
.y184{bottom:238.720215px;}
.y145{bottom:241.760835px;}
.y2e{bottom:244.569300px;}
.y5e{bottom:245.469450px;}
.ycd{bottom:249.969660px;}
.y102{bottom:250.310535px;}
.y144{bottom:254.920170px;}
.y183{bottom:256.610805px;}
.y2d{bottom:260.769300px;}
.y5d{bottom:261.669450px;}
.y101{bottom:263.469870px;}
.ycc{bottom:266.169735px;}
.y182{bottom:271.010775px;}
.y143{bottom:272.810760px;}
.y2c{bottom:276.969300px;}
.y5c{bottom:277.869450px;}
.ycb{bottom:282.369810px;}
.y181{bottom:285.410745px;}
.y142{bottom:287.210730px;}
.y100{bottom:288.888750px;}
.y5b{bottom:294.069450px;}
.yca{bottom:298.569885px;}
.y180{bottom:298.570080px;}
.y141{bottom:300.370065px;}
.y2b{bottom:301.269300px;}
.y5a{bottom:310.269450px;}
.yc9{bottom:314.769960px;}
.y17f{bottom:316.460670px;}
.y2a{bottom:317.469300px;}
.y140{bottom:318.260655px;}
.yff{bottom:325.569900px;}
.y59{bottom:326.469450px;}
.y17e{bottom:330.860640px;}
.yc8{bottom:330.970035px;}
.y13f{bottom:332.660625px;}
.y29{bottom:333.669300px;}
.yfe{bottom:341.769885px;}
.y58{bottom:342.669450px;}
.y17d{bottom:345.260610px;}
.y13e{bottom:347.060595px;}
.yc7{bottom:347.170020px;}
.y28{bottom:349.869300px;}
.y17c{bottom:358.419990px;}
.y57{bottom:358.869450px;}
.y13d{bottom:360.219975px;}
.yc6{bottom:363.370005px;}
.y27{bottom:366.069300px;}
.yfd{bottom:367.188720px;}
.y56{bottom:375.069450px;}
.y17b{bottom:376.310535px;}
.y13c{bottom:378.110520px;}
.yc5{bottom:379.569990px;}
.y26{bottom:382.269300px;}
.y17a{bottom:390.710505px;}
.y55{bottom:391.269450px;}
.y13b{bottom:392.510490px;}
.yc4{bottom:395.769975px;}
.yfc{bottom:403.869870px;}
.y179{bottom:403.869885px;}
.y13a{bottom:405.669870px;}
.y25{bottom:406.569300px;}
.y54{bottom:407.469450px;}
.yfb{bottom:420.069855px;}
.yc3{bottom:420.069945px;}
.y178{bottom:421.760430px;}
.y24{bottom:422.769300px;}
.y139{bottom:423.560415px;}
.y53{bottom:423.669450px;}
.y177{bottom:436.160400px;}
.yfa{bottom:436.269840px;}
.yc2{bottom:436.269930px;}
.y138{bottom:436.719795px;}
.y52{bottom:439.869450px;}
.y23{bottom:448.188300px;}
.y176{bottom:450.560370px;}
.yf9{bottom:452.469825px;}
.yc1{bottom:452.469915px;}
.y137{bottom:454.610340px;}
.y175{bottom:463.719750px;}
.y51{bottom:464.169450px;}
.yf8{bottom:468.669810px;}
.yc0{bottom:468.669900px;}
.y136{bottom:469.010310px;}
.y50{bottom:480.369450px;}
.y135{bottom:482.169690px;}
.y174{bottom:482.169720px;}
.y22{bottom:484.869300px;}
.yf7{bottom:484.869795px;}
.ybf{bottom:492.969870px;}
.y4f{bottom:496.569450px;}
.y134{bottom:500.060235px;}
.y173{bottom:500.060265px;}
.y21{bottom:501.069300px;}
.yf6{bottom:501.069780px;}
.ybe{bottom:509.169855px;}
.y4e{bottom:512.769450px;}
.y172{bottom:513.219645px;}
.y133{bottom:514.460205px;}
.y20{bottom:517.269300px;}
.yf5{bottom:517.269765px;}
.ybd{bottom:525.369840px;}
.y132{bottom:528.860175px;}
.y4d{bottom:528.969450px;}
.y171{bottom:531.110190px;}
.y1f{bottom:533.469300px;}
.yf4{bottom:533.469750px;}
.ybc{bottom:541.569825px;}
.y131{bottom:542.019555px;}
.y4c{bottom:545.169450px;}
.y170{bottom:545.510160px;}
.y1e{bottom:549.669300px;}
.yf3{bottom:549.669735px;}
.ybb{bottom:557.769810px;}
.y16f{bottom:558.669540px;}
.y130{bottom:559.910100px;}
.y4b{bottom:561.369450px;}
.y1d{bottom:565.869300px;}
.yf2{bottom:565.869720px;}
.yba{bottom:573.969795px;}
.y12f{bottom:574.310070px;}
.y16e{bottom:576.560085px;}
.y4a{bottom:577.569450px;}
.y1c{bottom:582.069300px;}
.yf1{bottom:582.069705px;}
.y12e{bottom:587.469450px;}
.yb9{bottom:590.169780px;}
.y16d{bottom:590.960055px;}
.y49{bottom:593.769450px;}
.y1b{bottom:598.269300px;}
.y16c{bottom:604.119435px;}
.y12d{bottom:605.359995px;}
.yf0{bottom:606.369675px;}
.yb8{bottom:606.369765px;}
.y48{bottom:609.969450px;}
.y1a{bottom:614.469300px;}
.y12c{bottom:619.759965px;}
.y16b{bottom:622.009980px;}
.yef{bottom:622.569660px;}
.yb7{bottom:622.569750px;}
.y19{bottom:630.669300px;}
.y12b{bottom:632.919345px;}
.y47{bottom:634.269450px;}
.y16a{bottom:636.409950px;}
.yee{bottom:638.769645px;}
.yb6{bottom:638.769735px;}
.y18{bottom:646.869300px;}
.y169{bottom:649.569330px;}
.y46{bottom:650.469450px;}
.y12a{bottom:650.809890px;}
.yed{bottom:654.969630px;}
.yb5{bottom:654.969720px;}
.y129{bottom:663.969270px;}
.y45{bottom:666.669450px;}
.y168{bottom:667.459875px;}
.y17{bottom:671.169300px;}
.yec{bottom:671.169615px;}
.yb4{bottom:671.169705px;}
.y167{bottom:680.619255px;}
.y128{bottom:681.859815px;}
.y16{bottom:687.369300px;}
.yeb{bottom:687.369600px;}
.yb3{bottom:687.369690px;}
.y44{bottom:690.969450px;}
.y127{bottom:696.259785px;}
.y166{bottom:698.509800px;}
.y15{bottom:703.569300px;}
.yea{bottom:703.569585px;}
.yb2{bottom:703.569675px;}
.y43{bottom:707.169450px;}
.y126{bottom:710.659755px;}
.y165{bottom:712.909770px;}
.y14{bottom:719.769300px;}
.yb1{bottom:719.769630px;}
.y42{bottom:723.369450px;}
.y125{bottom:723.819210px;}
.y164{bottom:726.069225px;}
.ye9{bottom:728.988450px;}
.y13{bottom:735.969300px;}
.yb0{bottom:735.969615px;}
.y41{bottom:739.569450px;}
.y124{bottom:741.709785px;}
.y163{bottom:743.959800px;}
.y12{bottom:752.169300px;}
.yaf{bottom:752.169600px;}
.y40{bottom:755.769450px;}
.y123{bottom:756.109800px;}
.y162{bottom:758.359815px;}
.ye8{bottom:765.669600px;}
.y11{bottom:768.369300px;}
.yae{bottom:768.369585px;}
.y122{bottom:769.269255px;}
.y161{bottom:771.519270px;}
.y3f{bottom:771.969450px;}
.ye7{bottom:781.869585px;}
.y10{bottom:784.569300px;}
.yad{bottom:784.569570px;}
.y121{bottom:787.159830px;}
.y3e{bottom:788.169450px;}
.y160{bottom:789.409845px;}
.ye6{bottom:798.069570px;}
.y120{bottom:800.319285px;}
.yf{bottom:800.769300px;}
.y15f{bottom:803.809860px;}
.y3d{bottom:804.369450px;}
.yac{bottom:808.869540px;}
.ye5{bottom:814.269555px;}
.ye{bottom:816.969300px;}
.y15e{bottom:816.969315px;}
.y11f{bottom:818.209860px;}
.y3c{bottom:820.569450px;}
.yab{bottom:825.069525px;}
.ye4{bottom:830.469540px;}
.y11e{bottom:832.609875px;}
.yd{bottom:833.169300px;}
.y15d{bottom:834.859890px;}
.yaa{bottom:841.269510px;}
.y3b{bottom:844.869450px;}
.y11d{bottom:845.769330px;}
.ye3{bottom:846.669525px;}
.y15c{bottom:849.259905px;}
.yc{bottom:849.369300px;}
.ya9{bottom:857.469495px;}
.y3a{bottom:861.069450px;}
.y15b{bottom:862.419360px;}
.y11c{bottom:863.659905px;}
.yb{bottom:865.569300px;}
.ye2{bottom:870.969495px;}
.ya8{bottom:873.669480px;}
.y39{bottom:877.269450px;}
.y11b{bottom:878.059920px;}
.y15a{bottom:880.309935px;}
.ya{bottom:881.769300px;}
.ye1{bottom:887.169480px;}
.y11a{bottom:891.219375px;}
.y38{bottom:893.469300px;}
.y159{bottom:894.709950px;}
.y9{bottom:897.968550px;}
.ya7{bottom:899.088315px;}
.ye0{bottom:903.369465px;}
.y119{bottom:909.109950px;}
.y158{bottom:909.109965px;}
.y37{bottom:909.669300px;}
.ydf{bottom:919.569465px;}
.y157{bottom:922.269405px;}
.y8{bottom:923.387550px;}
.y118{bottom:923.509965px;}
.y36{bottom:925.869300px;}
.ya6{bottom:935.769465px;}
.y117{bottom:936.669405px;}
.y156{bottom:940.159995px;}
.y7{bottom:940.309050px;}
.yde{bottom:943.869465px;}
.ya5{bottom:951.969465px;}
.y6{bottom:952.909500px;}
.y116{bottom:954.559995px;}
.y155{bottom:954.560010px;}
.ydd{bottom:960.069465px;}
.y115{bottom:967.719435px;}
.y154{bottom:967.719450px;}
.ya4{bottom:968.169465px;}
.y5{bottom:971.809500px;}
.ydc{bottom:976.269465px;}
.ydb{bottom:976.269480px;}
.ya3{bottom:984.369465px;}
.y114{bottom:985.610025px;}
.y153{bottom:985.610040px;}
.yda{bottom:992.469480px;}
.y4{bottom:995.668500px;}
.y152{bottom:998.769465px;}
.y113{bottom:1000.010040px;}
.ya2{bottom:1000.569465px;}
.yd9{bottom:1008.669480px;}
.y3{bottom:1012.609500px;}
.y112{bottom:1013.169465px;}
.y151{bottom:1016.660055px;}
.ya1{bottom:1016.769465px;}
.yd8{bottom:1024.869480px;}
.y111{bottom:1031.060040px;}
.y150{bottom:1031.060055px;}
.y2{bottom:1031.509500px;}
.ya0{bottom:1032.969465px;}
.yd7{bottom:1041.069480px;}
.y110{bottom:1044.219465px;}
.y14f{bottom:1044.219480px;}
.y9f{bottom:1049.169465px;}
.y1{bottom:1055.026500px;}
.yd6{bottom:1057.269480px;}
.y10f{bottom:1062.110040px;}
.y14e{bottom:1062.110055px;}
.y9e{bottom:1073.469465px;}
.yd5{bottom:1073.469480px;}
.y10e{bottom:1076.510040px;}
.y14d{bottom:1076.510055px;}
.yd4{bottom:1089.669435px;}
.y9d{bottom:1089.669465px;}
.y68{bottom:1098.690000px;}
.y10b{bottom:1119.050565px;}
.y9c{bottom:1140.593550px;}
.y6c{bottom:1146.484500px;}
.y6d{bottom:1148.391900px;}
.y6e{bottom:1151.031000px;}
.y9b{bottom:1151.213850px;}
.y6f{bottom:1154.219850px;}
.y9a{bottom:1154.403150px;}
.y70{bottom:1157.655900px;}
.y99{bottom:1157.820150px;}
.y98{bottom:1159.350900px;}
.y71{bottom:1159.839750px;}
.y97{bottom:1163.021850px;}
.y72{bottom:1163.511450px;}
.y96{bottom:1166.424600px;}
.y73{bottom:1166.965050px;}
.y74{bottom:1168.620300px;}
.y95{bottom:1169.860800px;}
.y75{bottom:1170.246450px;}
.y76{bottom:1174.031400px;}
.y94{bottom:1175.445750px;}
.y77{bottom:1176.015600px;}
.y78{bottom:1177.577100px;}
.y93{bottom:1177.678650px;}
.y6b{bottom:1178.884500px;}
.y67{bottom:1179.109500px;}
.y92{bottom:1180.956000px;}
.y79{bottom:1181.848800px;}
.y7a{bottom:1183.342950px;}
.y91{bottom:1184.403000px;}
.y7b{bottom:1184.795400px;}
.y90{bottom:1187.909550px;}
.y7c{bottom:1187.988450px;}
.y8f{bottom:1189.148700px;}
.y7d{bottom:1189.290600px;}
.y8e{bottom:1190.404800px;}
.y66{bottom:1191.709500px;}
.y7e{bottom:1191.817800px;}
.y8d{bottom:1192.867200px;}
.y7f{bottom:1194.066600px;}
.y8c{bottom:1194.095400px;}
.y80{bottom:1195.037550px;}
.y81{bottom:1195.990350px;}
.y8b{bottom:1196.284500px;}
.y10a{bottom:1197.669435px;}
.y18d{bottom:1197.669465px;}
.y8a{bottom:1197.865500px;}
.y82{bottom:1198.035900px;}
.y83{bottom:1198.697850px;}
.y89{bottom:1199.798700px;}
.y84{bottom:1199.864850px;}
.y88{bottom:1200.020850px;}
.y87{bottom:1200.401400px;}
.y85{bottom:1200.451500px;}
.y86{bottom:1200.642450px;}
.y65{bottom:1204.309500px;}
.h3c{height:18.137928px;}
.h1a{height:19.346882px;}
.h2d{height:19.346919px;}
.h1d{height:19.346930px;}
.h37{height:19.346965px;}
.h38{height:19.346966px;}
.h1e{height:19.347004px;}
.h3a{height:19.347011px;}
.h29{height:19.347014px;}
.h14{height:19.347026px;}
.h39{height:19.347039px;}
.h2e{height:19.347044px;}
.h23{height:19.347048px;}
.h2f{height:19.347053px;}
.h16{height:19.347060px;}
.h1b{height:19.347080px;}
.h12{height:19.347091px;}
.h25{height:19.347097px;}
.h20{height:19.347100px;}
.h1f{height:19.347113px;}
.h10{height:19.347115px;}
.h28{height:19.347122px;}
.h11{height:19.347136px;}
.h24{height:19.347141px;}
.h3b{height:19.347147px;}
.h1c{height:19.347161px;}
.h33{height:19.347163px;}
.h21{height:19.347174px;}
.h36{height:19.347187px;}
.h17{height:19.347196px;}
.h2c{height:19.347216px;}
.h26{height:19.347226px;}
.h27{height:19.347268px;}
.h18{height:19.347272px;}
.h19{height:19.347279px;}
.h2a{height:19.347283px;}
.h15{height:19.347288px;}
.h32{height:19.347295px;}
.h34{height:19.347311px;}
.h30{height:19.347315px;}
.h31{height:19.347332px;}
.h35{height:19.347333px;}
.h22{height:19.347335px;}
.hf{height:19.347347px;}
.h13{height:19.347401px;}
.h2b{height:19.347426px;}
.h5{height:22.932861px;}
.h4{height:30.064453px;}
.h6{height:30.577148px;}
.hb{height:30.597656px;}
.h40{height:34.359375px;}
.h3{height:36.930861px;}
.h9{height:38.654297px;}
.h41{height:38.654417px;}
.ha{height:38.654897px;}
.h8{height:38.657297px;}
.h43{height:39.321615px;}
.h42{height:39.321675px;}
.h44{height:39.321735px;}
.h45{height:39.321855px;}
.h3f{height:39.321915px;}
.h3d{height:40.643537px;}
.h7{height:47.115234px;}
.h3e{height:49.539894px;}
.h2{height:66.656250px;}
.hd{height:73.142578px;}
.he{height:73.195312px;}
.hc{height:79.454297px;}
.h0{height:1262.834655px;}
.h1{height:1263.000000px;}
.w0{width:892.913445px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x8{left:63.004500px;}
.xe{left:66.483750px;}
.xd{left:67.848450px;}
.x2{left:69.000000px;}
.xc{left:70.311300px;}
.xb{left:72.369300px;}
.xf{left:73.450500px;}
.xa{left:74.556450px;}
.x10{left:75.776700px;}
.x2a{left:76.988100px;}
.x11{left:78.422250px;}
.x12{left:79.742700px;}
.x13{left:81.044400px;}
.x2f{left:83.757945px;}
.x14{left:85.111950px;}
.x15{left:86.574150px;}
.x16{left:90.558450px;}
.x17{left:93.942450px;}
.x18{left:97.743900px;}
.x19{left:101.182200px;}
.x1a{left:103.529700px;}
.x1b{left:105.111150px;}
.x1c{left:110.389800px;}
.x1d{left:113.437500px;}
.x1e{left:116.567700px;}
.x1f{left:118.107600px;}
.x20{left:120.550350px;}
.x21{left:121.633350px;}
.x22{left:122.674800px;}
.x23{left:124.891050px;}
.x24{left:126.495450px;}
.x25{left:127.556700px;}
.x26{left:128.673450px;}
.x9{left:147.376500px;}
.x27{left:214.951380px;}
.x28{left:254.870865px;}
.x29{left:426.462570px;}
.x3{left:455.460300px;}
.x4{left:470.451000px;}
.x2d{left:485.215620px;}
.x5{left:606.621000px;}
.x2b{left:625.238895px;}
.x2c{left:663.264405px;}
.x7{left:682.417500px;}
.x2e{left:780.326985px;}
.x6{left:798.009000px;}
@media print{
.v2{vertical-align:-12.442667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.411147pt;}
.v1{vertical-align:12.442667pt;}
.v3{vertical-align:36.265600pt;}
.ls1{letter-spacing:-0.442912pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-10.896000pt;}
.ws1{word-spacing:-10.378667pt;}
.ws0{word-spacing:-7.784000pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:37.872000pt;}
.ws7{word-spacing:37.914667pt;}
.ws6{word-spacing:45.525333pt;}
.ws4{word-spacing:60.912000pt;}
.ws5{word-spacing:60.954667pt;}
._1a{margin-left:-3.696000pt;}
._0{width:1.045333pt;}
._c{width:2.496000pt;}
._6{width:3.408000pt;}
._a{width:4.752000pt;}
._3{width:5.712000pt;}
._1{width:7.003733pt;}
._2{width:8.356267pt;}
._9{width:9.334400pt;}
._1f{width:11.022987pt;}
._5{width:12.000000pt;}
._8{width:13.440000pt;}
._16{width:14.592000pt;}
._d{width:15.600000pt;}
._7{width:16.992000pt;}
._13{width:18.240000pt;}
._b{width:19.344000pt;}
._15{width:20.688000pt;}
._24{width:21.600000pt;}
._1c{width:22.560000pt;}
._f{width:23.712000pt;}
._14{width:24.960000pt;}
._11{width:25.968000pt;}
._e{width:27.936000pt;}
._1b{width:29.472000pt;}
._23{width:30.933333pt;}
._1e{width:32.400000pt;}
._17{width:34.128000pt;}
._21{width:37.120000pt;}
._4{width:38.016000pt;}
._22{width:38.997333pt;}
._10{width:41.184000pt;}
._1d{width:42.336000pt;}
._25{width:45.269333pt;}
._20{width:47.360000pt;}
._12{width:63.456000pt;}
._19{width:1304.160000pt;}
._18{width:2221.680000pt;}
.fs35{font-size:22.145600pt;}
.fs12{font-size:23.621680pt;}
.fs26{font-size:23.621725pt;}
.fs16{font-size:23.621738pt;}
.fs30{font-size:23.621780pt;}
.fs31{font-size:23.621782pt;}
.fs17{font-size:23.621829pt;}
.fs33{font-size:23.621837pt;}
.fs22{font-size:23.621840pt;}
.fsc{font-size:23.621855pt;}
.fs32{font-size:23.621871pt;}
.fs27{font-size:23.621877pt;}
.fs1c{font-size:23.621883pt;}
.fs28{font-size:23.621888pt;}
.fs15{font-size:23.621895pt;}
.fse{font-size:23.621896pt;}
.fs13{font-size:23.621921pt;}
.fsa{font-size:23.621934pt;}
.fs1e{font-size:23.621942pt;}
.fs19{font-size:23.621946pt;}
.fs18{font-size:23.621962pt;}
.fs8{font-size:23.621964pt;}
.fs21{font-size:23.621973pt;}
.fs9{font-size:23.621989pt;}
.fs1d{font-size:23.621995pt;}
.fs34{font-size:23.622002pt;}
.fs14{font-size:23.622019pt;}
.fs2c{font-size:23.622022pt;}
.fs1a{font-size:23.622036pt;}
.fs2f{font-size:23.622052pt;}
.fsf{font-size:23.622062pt;}
.fs25{font-size:23.622087pt;}
.fs1f{font-size:23.622099pt;}
.fs20{font-size:23.622150pt;}
.fs10{font-size:23.622155pt;}
.fs11{font-size:23.622164pt;}
.fs23{font-size:23.622168pt;}
.fsd{font-size:23.622175pt;}
.fs2b{font-size:23.622183pt;}
.fs2d{font-size:23.622203pt;}
.fs29{font-size:23.622208pt;}
.fs2a{font-size:23.622228pt;}
.fs2e{font-size:23.622231pt;}
.fs1b{font-size:23.622233pt;}
.fs7{font-size:23.622247pt;}
.fsb{font-size:23.622313pt;}
.fs24{font-size:23.622344pt;}
.fs2{font-size:28.000000pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs36{font-size:50.470191pt;}
.fs4{font-size:58.666667pt;}
.fs37{font-size:61.685789pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6a{bottom:43.706667pt;}
.y10d{bottom:43.706880pt;}
.y69{bottom:58.106667pt;}
.y10c{bottom:58.106880pt;}
.y18c{bottom:105.796147pt;}
.yd3{bottom:106.195147pt;}
.y35{bottom:109.394933pt;}
.y64{bottom:117.395067pt;}
.y18b{bottom:119.698747pt;}
.yd2{bottom:120.595213pt;}
.y14c{bottom:121.298733pt;}
.y34{bottom:123.794933pt;}
.y109{bottom:126.898480pt;}
.y63{bottom:131.795067pt;}
.y18a{bottom:132.498720pt;}
.y14b{bottom:134.098707pt;}
.yd1{bottom:134.995280pt;}
.y33{bottom:138.194933pt;}
.y108{bottom:139.698453pt;}
.y189{bottom:144.195907pt;}
.y14a{bottom:145.795893pt;}
.yd0{bottom:149.395347pt;}
.y107{bottom:151.395640pt;}
.y32{bottom:152.594933pt;}
.y62{bottom:153.395067pt;}
.y188{bottom:160.098653pt;}
.y149{bottom:161.698640pt;}
.y31{bottom:166.994933pt;}
.y106{bottom:167.298387pt;}
.y61{bottom:167.795067pt;}
.y187{bottom:171.795840pt;}
.ycf{bottom:171.989907pt;}
.y148{bottom:174.498613pt;}
.y105{bottom:178.995573pt;}
.y30{bottom:181.394933pt;}
.y60{bottom:182.195067pt;}
.y147{bottom:186.195800pt;}
.y186{bottom:187.698587pt;}
.yce{bottom:189.589840pt;}
.y104{bottom:194.898320pt;}
.y5f{bottom:196.595067pt;}
.y185{bottom:200.498560pt;}
.y146{bottom:202.098547pt;}
.y2f{bottom:202.994933pt;}
.y103{bottom:206.595507pt;}
.y184{bottom:212.195747pt;}
.y145{bottom:214.898520pt;}
.y2e{bottom:217.394933pt;}
.y5e{bottom:218.195067pt;}
.ycd{bottom:222.195253pt;}
.y102{bottom:222.498253pt;}
.y144{bottom:226.595707pt;}
.y183{bottom:228.098493pt;}
.y2d{bottom:231.794933pt;}
.y5d{bottom:232.595067pt;}
.y101{bottom:234.195440pt;}
.ycc{bottom:236.595320pt;}
.y182{bottom:240.898467pt;}
.y143{bottom:242.498453pt;}
.y2c{bottom:246.194933pt;}
.y5c{bottom:246.995067pt;}
.ycb{bottom:250.995387pt;}
.y181{bottom:253.698440pt;}
.y142{bottom:255.298427pt;}
.y100{bottom:256.790000pt;}
.y5b{bottom:261.395067pt;}
.yca{bottom:265.395453pt;}
.y180{bottom:265.395627pt;}
.y141{bottom:266.995613pt;}
.y2b{bottom:267.794933pt;}
.y5a{bottom:275.795067pt;}
.yc9{bottom:279.795520pt;}
.y17f{bottom:281.298373pt;}
.y2a{bottom:282.194933pt;}
.y140{bottom:282.898360pt;}
.yff{bottom:289.395467pt;}
.y59{bottom:290.195067pt;}
.y17e{bottom:294.098347pt;}
.yc8{bottom:294.195587pt;}
.y13f{bottom:295.698333pt;}
.y29{bottom:296.594933pt;}
.yfe{bottom:303.795453pt;}
.y58{bottom:304.595067pt;}
.y17d{bottom:306.898320pt;}
.y13e{bottom:308.498307pt;}
.yc7{bottom:308.595573pt;}
.y28{bottom:310.994933pt;}
.y17c{bottom:318.595547pt;}
.y57{bottom:318.995067pt;}
.y13d{bottom:320.195533pt;}
.yc6{bottom:322.995560pt;}
.y27{bottom:325.394933pt;}
.yfd{bottom:326.389973pt;}
.y56{bottom:333.395067pt;}
.y17b{bottom:334.498253pt;}
.y13c{bottom:336.098240pt;}
.yc5{bottom:337.395547pt;}
.y26{bottom:339.794933pt;}
.y17a{bottom:347.298227pt;}
.y55{bottom:347.795067pt;}
.y13b{bottom:348.898213pt;}
.yc4{bottom:351.795533pt;}
.yfc{bottom:358.995440pt;}
.y179{bottom:358.995453pt;}
.y13a{bottom:360.595440pt;}
.y25{bottom:361.394933pt;}
.y54{bottom:362.195067pt;}
.yfb{bottom:373.395427pt;}
.yc3{bottom:373.395507pt;}
.y178{bottom:374.898160pt;}
.y24{bottom:375.794933pt;}
.y139{bottom:376.498147pt;}
.y53{bottom:376.595067pt;}
.y177{bottom:387.698133pt;}
.yfa{bottom:387.795413pt;}
.yc2{bottom:387.795493pt;}
.y138{bottom:388.195373pt;}
.y52{bottom:390.995067pt;}
.y23{bottom:398.389600pt;}
.y176{bottom:400.498107pt;}
.yf9{bottom:402.195400pt;}
.yc1{bottom:402.195480pt;}
.y137{bottom:404.098080pt;}
.y175{bottom:412.195333pt;}
.y51{bottom:412.595067pt;}
.yf8{bottom:416.595387pt;}
.yc0{bottom:416.595467pt;}
.y136{bottom:416.898053pt;}
.y50{bottom:426.995067pt;}
.y135{bottom:428.595280pt;}
.y174{bottom:428.595307pt;}
.y22{bottom:430.994933pt;}
.yf7{bottom:430.995373pt;}
.ybf{bottom:438.195440pt;}
.y4f{bottom:441.395067pt;}
.y134{bottom:444.497987pt;}
.y173{bottom:444.498013pt;}
.y21{bottom:445.394933pt;}
.yf6{bottom:445.395360pt;}
.ybe{bottom:452.595427pt;}
.y4e{bottom:455.795067pt;}
.y172{bottom:456.195240pt;}
.y133{bottom:457.297960pt;}
.y20{bottom:459.794933pt;}
.yf5{bottom:459.795347pt;}
.ybd{bottom:466.995413pt;}
.y132{bottom:470.097933pt;}
.y4d{bottom:470.195067pt;}
.y171{bottom:472.097947pt;}
.y1f{bottom:474.194933pt;}
.yf4{bottom:474.195333pt;}
.ybc{bottom:481.395400pt;}
.y131{bottom:481.795160pt;}
.y4c{bottom:484.595067pt;}
.y170{bottom:484.897920pt;}
.y1e{bottom:488.594933pt;}
.yf3{bottom:488.595320pt;}
.ybb{bottom:495.795387pt;}
.y16f{bottom:496.595147pt;}
.y130{bottom:497.697867pt;}
.y4b{bottom:498.995067pt;}
.y1d{bottom:502.994933pt;}
.yf2{bottom:502.995307pt;}
.yba{bottom:510.195373pt;}
.y12f{bottom:510.497840pt;}
.y16e{bottom:512.497853pt;}
.y4a{bottom:513.395067pt;}
.y1c{bottom:517.394933pt;}
.yf1{bottom:517.395293pt;}
.y12e{bottom:522.195067pt;}
.yb9{bottom:524.595360pt;}
.y16d{bottom:525.297827pt;}
.y49{bottom:527.795067pt;}
.y1b{bottom:531.794933pt;}
.y16c{bottom:536.995053pt;}
.y12d{bottom:538.097773pt;}
.yf0{bottom:538.995267pt;}
.yb8{bottom:538.995347pt;}
.y48{bottom:542.195067pt;}
.y1a{bottom:546.194933pt;}
.y12c{bottom:550.897747pt;}
.y16b{bottom:552.897760pt;}
.yef{bottom:553.395253pt;}
.yb7{bottom:553.395333pt;}
.y19{bottom:560.594933pt;}
.y12b{bottom:562.594973pt;}
.y47{bottom:563.795067pt;}
.y16a{bottom:565.697733pt;}
.yee{bottom:567.795240pt;}
.yb6{bottom:567.795320pt;}
.y18{bottom:574.994933pt;}
.y169{bottom:577.394960pt;}
.y46{bottom:578.195067pt;}
.y12a{bottom:578.497680pt;}
.yed{bottom:582.195227pt;}
.yb5{bottom:582.195307pt;}
.y129{bottom:590.194907pt;}
.y45{bottom:592.595067pt;}
.y168{bottom:593.297667pt;}
.y17{bottom:596.594933pt;}
.yec{bottom:596.595213pt;}
.yb4{bottom:596.595293pt;}
.y167{bottom:604.994893pt;}
.y128{bottom:606.097613pt;}
.y16{bottom:610.994933pt;}
.yeb{bottom:610.995200pt;}
.yb3{bottom:610.995280pt;}
.y44{bottom:614.195067pt;}
.y127{bottom:618.897587pt;}
.y166{bottom:620.897600pt;}
.y15{bottom:625.394933pt;}
.yea{bottom:625.395187pt;}
.yb2{bottom:625.395267pt;}
.y43{bottom:628.595067pt;}
.y126{bottom:631.697560pt;}
.y165{bottom:633.697573pt;}
.y14{bottom:639.794933pt;}
.yb1{bottom:639.795227pt;}
.y42{bottom:642.995067pt;}
.y125{bottom:643.394853pt;}
.y164{bottom:645.394867pt;}
.ye9{bottom:647.989733pt;}
.y13{bottom:654.194933pt;}
.yb0{bottom:654.195213pt;}
.y41{bottom:657.395067pt;}
.y124{bottom:659.297587pt;}
.y163{bottom:661.297600pt;}
.y12{bottom:668.594933pt;}
.yaf{bottom:668.595200pt;}
.y40{bottom:671.795067pt;}
.y123{bottom:672.097600pt;}
.y162{bottom:674.097613pt;}
.ye8{bottom:680.595200pt;}
.y11{bottom:682.994933pt;}
.yae{bottom:682.995187pt;}
.y122{bottom:683.794893pt;}
.y161{bottom:685.794907pt;}
.y3f{bottom:686.195067pt;}
.ye7{bottom:694.995187pt;}
.y10{bottom:697.394933pt;}
.yad{bottom:697.395173pt;}
.y121{bottom:699.697627pt;}
.y3e{bottom:700.595067pt;}
.y160{bottom:701.697640pt;}
.ye6{bottom:709.395173pt;}
.y120{bottom:711.394920pt;}
.yf{bottom:711.794933pt;}
.y15f{bottom:714.497653pt;}
.y3d{bottom:714.995067pt;}
.yac{bottom:718.995147pt;}
.ye5{bottom:723.795160pt;}
.ye{bottom:726.194933pt;}
.y15e{bottom:726.194947pt;}
.y11f{bottom:727.297653pt;}
.y3c{bottom:729.395067pt;}
.yab{bottom:733.395133pt;}
.ye4{bottom:738.195147pt;}
.y11e{bottom:740.097667pt;}
.yd{bottom:740.594933pt;}
.y15d{bottom:742.097680pt;}
.yaa{bottom:747.795120pt;}
.y3b{bottom:750.995067pt;}
.y11d{bottom:751.794960pt;}
.ye3{bottom:752.595133pt;}
.y15c{bottom:754.897693pt;}
.yc{bottom:754.994933pt;}
.ya9{bottom:762.195107pt;}
.y3a{bottom:765.395067pt;}
.y15b{bottom:766.594987pt;}
.y11c{bottom:767.697693pt;}
.yb{bottom:769.394933pt;}
.ye2{bottom:774.195107pt;}
.ya8{bottom:776.595093pt;}
.y39{bottom:779.795067pt;}
.y11b{bottom:780.497707pt;}
.y15a{bottom:782.497720pt;}
.ya{bottom:783.794933pt;}
.ye1{bottom:788.595093pt;}
.y11a{bottom:792.195000pt;}
.y38{bottom:794.194933pt;}
.y159{bottom:795.297733pt;}
.y9{bottom:798.194267pt;}
.ya7{bottom:799.189613pt;}
.ye0{bottom:802.995080pt;}
.y119{bottom:808.097733pt;}
.y158{bottom:808.097747pt;}
.y37{bottom:808.594933pt;}
.ydf{bottom:817.395080pt;}
.y157{bottom:819.795027pt;}
.y8{bottom:820.788933pt;}
.y118{bottom:820.897747pt;}
.y36{bottom:822.994933pt;}
.ya6{bottom:831.795080pt;}
.y117{bottom:832.595027pt;}
.y156{bottom:835.697773pt;}
.y7{bottom:835.830267pt;}
.yde{bottom:838.995080pt;}
.ya5{bottom:846.195080pt;}
.y6{bottom:847.030667pt;}
.y116{bottom:848.497773pt;}
.y155{bottom:848.497787pt;}
.ydd{bottom:853.395080pt;}
.y115{bottom:860.195053pt;}
.y154{bottom:860.195067pt;}
.ya4{bottom:860.595080pt;}
.y5{bottom:863.830667pt;}
.ydc{bottom:867.795080pt;}
.ydb{bottom:867.795093pt;}
.ya3{bottom:874.995080pt;}
.y114{bottom:876.097800pt;}
.y153{bottom:876.097813pt;}
.yda{bottom:882.195093pt;}
.y4{bottom:885.038667pt;}
.y152{bottom:887.795080pt;}
.y113{bottom:888.897813pt;}
.ya2{bottom:889.395080pt;}
.yd9{bottom:896.595093pt;}
.y3{bottom:900.097333pt;}
.y112{bottom:900.595080pt;}
.y151{bottom:903.697827pt;}
.ya1{bottom:903.795080pt;}
.yd8{bottom:910.995093pt;}
.y111{bottom:916.497813pt;}
.y150{bottom:916.497827pt;}
.y2{bottom:916.897333pt;}
.ya0{bottom:918.195080pt;}
.yd7{bottom:925.395093pt;}
.y110{bottom:928.195080pt;}
.y14f{bottom:928.195093pt;}
.y9f{bottom:932.595080pt;}
.y1{bottom:937.801333pt;}
.yd6{bottom:939.795093pt;}
.y10f{bottom:944.097813pt;}
.y14e{bottom:944.097827pt;}
.y9e{bottom:954.195080pt;}
.yd5{bottom:954.195093pt;}
.y10e{bottom:956.897813pt;}
.y14d{bottom:956.897827pt;}
.yd4{bottom:968.595053pt;}
.y9d{bottom:968.595080pt;}
.y68{bottom:976.613333pt;}
.y10b{bottom:994.711613pt;}
.y9c{bottom:1013.860933pt;}
.y6c{bottom:1019.097333pt;}
.y6d{bottom:1020.792800pt;}
.y6e{bottom:1023.138667pt;}
.y9b{bottom:1023.301200pt;}
.y6f{bottom:1025.973200pt;}
.y9a{bottom:1026.136133pt;}
.y70{bottom:1029.027467pt;}
.y99{bottom:1029.173467pt;}
.y98{bottom:1030.534133pt;}
.y71{bottom:1030.968667pt;}
.y97{bottom:1033.797200pt;}
.y72{bottom:1034.232400pt;}
.y96{bottom:1036.821867pt;}
.y73{bottom:1037.302267pt;}
.y74{bottom:1038.773600pt;}
.y95{bottom:1039.876267pt;}
.y75{bottom:1040.219067pt;}
.y76{bottom:1043.583467pt;}
.y94{bottom:1044.840667pt;}
.y77{bottom:1045.347200pt;}
.y78{bottom:1046.735200pt;}
.y93{bottom:1046.825467pt;}
.y6b{bottom:1047.897333pt;}
.y67{bottom:1048.097333pt;}
.y92{bottom:1049.738667pt;}
.y79{bottom:1050.532267pt;}
.y7a{bottom:1051.860400pt;}
.y91{bottom:1052.802667pt;}
.y7b{bottom:1053.151467pt;}
.y90{bottom:1055.919600pt;}
.y7c{bottom:1055.989733pt;}
.y8f{bottom:1057.021067pt;}
.y7d{bottom:1057.147200pt;}
.y8e{bottom:1058.137600pt;}
.y66{bottom:1059.297333pt;}
.y7e{bottom:1059.393600pt;}
.y8d{bottom:1060.326400pt;}
.y7f{bottom:1061.392533pt;}
.y8c{bottom:1061.418133pt;}
.y80{bottom:1062.255600pt;}
.y81{bottom:1063.102533pt;}
.y8b{bottom:1063.364000pt;}
.y10a{bottom:1064.595053pt;}
.y18d{bottom:1064.595080pt;}
.y8a{bottom:1064.769333pt;}
.y82{bottom:1064.920800pt;}
.y83{bottom:1065.509200pt;}
.y89{bottom:1066.487733pt;}
.y84{bottom:1066.546533pt;}
.y88{bottom:1066.685200pt;}
.y87{bottom:1067.023467pt;}
.y85{bottom:1067.068000pt;}
.y86{bottom:1067.237733pt;}
.y65{bottom:1070.497333pt;}
.h3c{height:16.122602pt;}
.h1a{height:17.197229pt;}
.h2d{height:17.197261pt;}
.h1d{height:17.197271pt;}
.h37{height:17.197302pt;}
.h38{height:17.197303pt;}
.h1e{height:17.197337pt;}
.h3a{height:17.197343pt;}
.h29{height:17.197346pt;}
.h14{height:17.197356pt;}
.h39{height:17.197368pt;}
.h2e{height:17.197372pt;}
.h23{height:17.197376pt;}
.h2f{height:17.197381pt;}
.h16{height:17.197386pt;}
.h1b{height:17.197404pt;}
.h12{height:17.197414pt;}
.h25{height:17.197420pt;}
.h20{height:17.197422pt;}
.h1f{height:17.197434pt;}
.h10{height:17.197436pt;}
.h28{height:17.197442pt;}
.h11{height:17.197454pt;}
.h24{height:17.197459pt;}
.h3b{height:17.197464pt;}
.h1c{height:17.197476pt;}
.h33{height:17.197478pt;}
.h21{height:17.197488pt;}
.h36{height:17.197499pt;}
.h17{height:17.197507pt;}
.h2c{height:17.197526pt;}
.h26{height:17.197534pt;}
.h27{height:17.197571pt;}
.h18{height:17.197575pt;}
.h19{height:17.197581pt;}
.h2a{height:17.197584pt;}
.h15{height:17.197589pt;}
.h32{height:17.197595pt;}
.h34{height:17.197610pt;}
.h30{height:17.197613pt;}
.h31{height:17.197628pt;}
.h35{height:17.197630pt;}
.h22{height:17.197631pt;}
.hf{height:17.197642pt;}
.h13{height:17.197690pt;}
.h2b{height:17.197712pt;}
.h5{height:20.384766pt;}
.h4{height:26.723958pt;}
.h6{height:27.179688pt;}
.hb{height:27.197917pt;}
.h40{height:30.541667pt;}
.h3{height:32.827432pt;}
.h9{height:34.359375pt;}
.h41{height:34.359482pt;}
.ha{height:34.359908pt;}
.h8{height:34.362042pt;}
.h43{height:34.952547pt;}
.h42{height:34.952600pt;}
.h44{height:34.952653pt;}
.h45{height:34.952760pt;}
.h3f{height:34.952813pt;}
.h3d{height:36.127588pt;}
.h7{height:41.880208pt;}
.h3e{height:44.035461pt;}
.h2{height:59.250000pt;}
.hd{height:65.015625pt;}
.he{height:65.062500pt;}
.hc{height:70.626042pt;}
.h0{height:1122.519693pt;}
.h1{height:1122.666667pt;}
.w0{width:793.700840pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x8{left:56.004000pt;}
.xe{left:59.096667pt;}
.xd{left:60.309733pt;}
.x2{left:61.333333pt;}
.xc{left:62.498933pt;}
.xb{left:64.328267pt;}
.xf{left:65.289333pt;}
.xa{left:66.272400pt;}
.x10{left:67.357067pt;}
.x2a{left:68.433867pt;}
.x11{left:69.708667pt;}
.x12{left:70.882400pt;}
.x13{left:72.039467pt;}
.x2f{left:74.451507pt;}
.x14{left:75.655067pt;}
.x15{left:76.954800pt;}
.x16{left:80.496400pt;}
.x17{left:83.504400pt;}
.x18{left:86.883467pt;}
.x19{left:89.939733pt;}
.x1a{left:92.026400pt;}
.x1b{left:93.432133pt;}
.x1c{left:98.124267pt;}
.x1d{left:100.833333pt;}
.x1e{left:103.615733pt;}
.x1f{left:104.984533pt;}
.x20{left:107.155867pt;}
.x21{left:108.118533pt;}
.x22{left:109.044267pt;}
.x23{left:111.014267pt;}
.x24{left:112.440400pt;}
.x25{left:113.383733pt;}
.x26{left:114.376400pt;}
.x9{left:131.001333pt;}
.x27{left:191.067893pt;}
.x28{left:226.551880pt;}
.x29{left:379.077840pt;}
.x3{left:404.853600pt;}
.x4{left:418.178667pt;}
.x2d{left:431.302773pt;}
.x5{left:539.218667pt;}
.x2b{left:555.767907pt;}
.x2c{left:589.568360pt;}
.x7{left:606.593333pt;}
.x2e{left:693.623987pt;}
.x6{left:709.341333pt;}
}




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