
    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_4a7a3423f5c7a01651c36ae3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.063477;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_a5ab70bd4e1751ec0b441525.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973145;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_2053d105c496844dad2f9497.woff')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_1607c54752d42c31caef37a9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_015016ad1f261b9ecd18fdac.woff')format("woff");}.ff5{font-family:ff5;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-16.830510px;}
.v3{vertical-align:-3.195000px;}
.v1{vertical-align:-1.000200px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.431312px;}
.v5{vertical-align:28.800000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.005100px;}
.ls5{letter-spacing:9.983250px;}
.ls4{letter-spacing:9.988860px;}
.ls0{letter-spacing:10.689600px;}
.ls6{letter-spacing:1972.638600px;}
.ls7{letter-spacing:1974.352200px;}
.ls3{letter-spacing:1997.577600px;}
.sc_{text-shadow:none;}
.sc3{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);}
.sc2{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(54,24,14),0 0.015em rgb(54,24,14),0.015em 0 rgb(54,24,14),0 -0.015em  rgb(54,24,14);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc3{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(54,24,14);text-shadow:none;}
}
.ws5{word-spacing:-12.291000px;}
.ws0{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.568000px;}
.ws1{word-spacing:-11.250000px;}
.ws4{word-spacing:0.000000px;}
.ws2{word-spacing:3.630000px;}
.ws3{word-spacing:11.486400px;}
._9{margin-left:-15.240000px;}
._a{margin-left:-13.254000px;}
._8{margin-left:-9.336000px;}
._b{margin-left:-7.602000px;}
._7{margin-left:-6.492000px;}
._2{margin-left:-4.923000px;}
._0{margin-left:-3.352500px;}
._4{margin-left:-2.224440px;}
._1{margin-left:-1.161000px;}
._3{width:1.840320px;}
._c{width:3.246150px;}
._d{width:4.313070px;}
._f{width:5.943840px;}
._10{width:7.026240px;}
._11{width:8.160780px;}
._e{width:9.392310px;}
._6{width:10.521720px;}
._12{width:13.887810px;}
._5{width:16.195560px;}
._15{width:75.646800px;}
._14{width:87.838800px;}
._13{width:110.158800px;}
._19{width:267.982800px;}
._1e{width:269.470800px;}
._16{width:274.174800px;}
._18{width:326.350800px;}
._1b{width:329.710800px;}
._1d{width:332.206800px;}
._17{width:333.502800px;}
._1a{width:334.750800px;}
._1c{width:337.918800px;}
.fc2{color:rgb(46,77,167);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(54,24,14);}
.fs6{font-size:42.000000px;}
.fs0{font-size:45.000000px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.668750px;}
.y19{bottom:77.162850px;}
.y13a{bottom:77.163150px;}
.yb2{bottom:77.403750px;}
.yb4{bottom:77.495100px;}
.yb0{bottom:78.202500px;}
.y23{bottom:119.055000px;}
.yaf{bottom:119.227410px;}
.y1b8{bottom:119.227500px;}
.y11a{bottom:119.227958px;}
.y179{bottom:119.230680px;}
.yf3{bottom:119.231700px;}
.y72{bottom:119.233005px;}
.y14b{bottom:121.657500px;}
.yae{bottom:134.827290px;}
.y1b7{bottom:134.827380px;}
.y119{bottom:134.827838px;}
.y178{bottom:134.830305px;}
.yf2{bottom:134.831325px;}
.y71{bottom:134.832630px;}
.y1c1{bottom:138.047250px;}
.y22{bottom:138.061200px;}
.y14a{bottom:142.564200px;}
.yad{bottom:150.427298px;}
.y1b6{bottom:150.427388px;}
.y177{bottom:150.429930px;}
.yf1{bottom:150.430950px;}
.y70{bottom:150.432255px;}
.y1c0{bottom:150.647250px;}
.y21{bottom:153.061200px;}
.y148{bottom:156.964200px;}
.y1bf{bottom:163.247250px;}
.yac{bottom:166.027178px;}
.y1b5{bottom:166.027268px;}
.y118{bottom:166.027598px;}
.yf0{bottom:166.030575px;}
.y6f{bottom:166.031880px;}
.y20{bottom:168.061200px;}
.y149{bottom:171.364200px;}
.yab{bottom:181.627185px;}
.y1b4{bottom:181.627275px;}
.y117{bottom:181.627605px;}
.yef{bottom:181.630200px;}
.y176{bottom:181.630455px;}
.y6e{bottom:181.631505px;}
.y1f{bottom:183.061200px;}
.y1be{bottom:189.555000px;}
.y147{bottom:192.923340px;}
.yaa{bottom:197.227065px;}
.y1b3{bottom:197.227155px;}
.y116{bottom:197.227485px;}
.yee{bottom:197.229825px;}
.y175{bottom:197.230080px;}
.y6d{bottom:197.231130px;}
.y1e{bottom:198.061200px;}
.y146{bottom:200.123250px;}
.ya9{bottom:212.827073px;}
.y1b2{bottom:212.827163px;}
.y115{bottom:212.827493px;}
.yed{bottom:212.829450px;}
.y174{bottom:212.829705px;}
.y6c{bottom:212.830755px;}
.y1d{bottom:213.061200px;}
.y1c{bottom:228.061200px;}
.ya8{bottom:228.426953px;}
.y1b1{bottom:228.427042px;}
.y114{bottom:228.427373px;}
.yec{bottom:228.429075px;}
.y6b{bottom:228.430380px;}
.y145{bottom:228.432390px;}
.y142{bottom:242.832300px;}
.y144{bottom:242.832390px;}
.ya7{bottom:244.027215px;}
.y1b0{bottom:244.027305px;}
.y113{bottom:244.027635px;}
.y6a{bottom:244.030005px;}
.y173{bottom:244.030230px;}
.y1b{bottom:247.680000px;}
.y143{bottom:257.232150px;}
.ya6{bottom:259.627095px;}
.y1af{bottom:259.627185px;}
.y112{bottom:259.627515px;}
.yeb{bottom:259.629600px;}
.y69{bottom:259.629630px;}
.y172{bottom:259.629855px;}
.ya5{bottom:275.227103px;}
.y1ae{bottom:275.227193px;}
.y111{bottom:275.227523px;}
.yea{bottom:275.229225px;}
.y68{bottom:275.229255px;}
.y171{bottom:275.229480px;}
.y141{bottom:278.341590px;}
.y17{bottom:290.805000px;}
.ya4{bottom:290.826983px;}
.y1ad{bottom:290.827073px;}
.y110{bottom:290.827403px;}
.ye9{bottom:290.828850px;}
.y67{bottom:290.828880px;}
.y170{bottom:290.829105px;}
.y13f{bottom:292.741350px;}
.ya3{bottom:306.426990px;}
.y1ac{bottom:306.427080px;}
.y10f{bottom:306.427410px;}
.ye8{bottom:306.428475px;}
.y66{bottom:306.428505px;}
.y16f{bottom:306.428730px;}
.y140{bottom:307.141350px;}
.y16{bottom:309.690450px;}
.ya2{bottom:322.026870px;}
.y1ab{bottom:322.026960px;}
.y10e{bottom:322.027290px;}
.ye7{bottom:322.028100px;}
.y65{bottom:322.028130px;}
.y16e{bottom:322.028355px;}
.y15{bottom:324.690450px;}
.y13e{bottom:327.800400px;}
.y13d{bottom:335.000400px;}
.ya1{bottom:337.627005px;}
.y1aa{bottom:337.627095px;}
.y10d{bottom:337.627425px;}
.ye6{bottom:337.627725px;}
.y64{bottom:337.627755px;}
.y16d{bottom:337.627980px;}
.y14{bottom:339.690450px;}
.ya0{bottom:353.226885px;}
.y1a9{bottom:353.226975px;}
.y10c{bottom:353.227305px;}
.ye5{bottom:353.227350px;}
.y63{bottom:353.227380px;}
.y16c{bottom:353.227605px;}
.y13{bottom:354.690450px;}
.y13c{bottom:365.559450px;}
.y9f{bottom:368.826893px;}
.ye4{bottom:368.826975px;}
.y1a8{bottom:368.826982px;}
.y62{bottom:368.827005px;}
.y16b{bottom:368.827230px;}
.y10b{bottom:368.827313px;}
.y12{bottom:369.690450px;}
.ye3{bottom:384.426600px;}
.y61{bottom:384.426630px;}
.y16a{bottom:384.426855px;}
.y1a7{bottom:384.426863px;}
.y10a{bottom:384.427193px;}
.y11{bottom:384.690450px;}
.y10{bottom:399.690450px;}
.y139{bottom:400.026225px;}
.ye2{bottom:400.026608px;}
.y60{bottom:400.026638px;}
.y9e{bottom:400.026780px;}
.y169{bottom:400.026863px;}
.y1a6{bottom:400.026870px;}
.y109{bottom:400.027200px;}
.yf{bottom:414.690450px;}
.y138{bottom:415.626105px;}
.ye1{bottom:415.626488px;}
.y5f{bottom:415.626518px;}
.y9d{bottom:415.626660px;}
.y168{bottom:415.626743px;}
.y1a5{bottom:415.626750px;}
.y108{bottom:416.194350px;}
.y137{bottom:431.226113px;}
.ye0{bottom:431.226495px;}
.y5e{bottom:431.226525px;}
.y9c{bottom:431.226668px;}
.y167{bottom:431.226750px;}
.y1a4{bottom:431.226758px;}
.ye{bottom:434.055000px;}
.y136{bottom:446.825993px;}
.ydf{bottom:446.826375px;}
.y5d{bottom:446.826405px;}
.y9b{bottom:446.826548px;}
.y166{bottom:446.826630px;}
.y1a3{bottom:446.826638px;}
.y107{bottom:446.830073px;}
.y135{bottom:462.426128px;}
.yde{bottom:462.426510px;}
.y5c{bottom:462.426540px;}
.y9a{bottom:462.426683px;}
.y165{bottom:462.426765px;}
.y1a2{bottom:462.426773px;}
.y106{bottom:462.430208px;}
.y134{bottom:478.026008px;}
.ydd{bottom:478.026390px;}
.y5b{bottom:478.026420px;}
.y99{bottom:478.026563px;}
.y164{bottom:478.026645px;}
.y1a1{bottom:478.026653px;}
.y105{bottom:478.030088px;}
.yc{bottom:478.305000px;}
.y133{bottom:493.626015px;}
.ydc{bottom:493.626398px;}
.y5a{bottom:493.626428px;}
.y98{bottom:493.626570px;}
.y163{bottom:493.626653px;}
.y1a0{bottom:493.626660px;}
.y104{bottom:493.630095px;}
.yb{bottom:497.405550px;}
.y132{bottom:509.225895px;}
.ydb{bottom:509.226278px;}
.y59{bottom:509.226308px;}
.y97{bottom:509.226450px;}
.y162{bottom:509.226533px;}
.y19f{bottom:509.226540px;}
.y103{bottom:509.229975px;}
.ya{bottom:512.405550px;}
.y131{bottom:524.825903px;}
.yda{bottom:524.826285px;}
.y58{bottom:524.826315px;}
.y96{bottom:524.826458px;}
.y161{bottom:524.826540px;}
.y19e{bottom:524.826548px;}
.y102{bottom:524.829983px;}
.y9{bottom:527.405550px;}
.y130{bottom:540.425783px;}
.yd9{bottom:540.426165px;}
.y57{bottom:540.426195px;}
.y95{bottom:540.426338px;}
.y160{bottom:540.426420px;}
.y19d{bottom:540.426428px;}
.y101{bottom:540.429863px;}
.y8{bottom:542.405550px;}
.y12f{bottom:556.025790px;}
.yd8{bottom:556.026173px;}
.y56{bottom:556.026203px;}
.y94{bottom:556.026345px;}
.y15f{bottom:556.026428px;}
.y19c{bottom:556.026435px;}
.y100{bottom:556.029870px;}
.y7{bottom:557.405550px;}
.y12e{bottom:571.625798px;}
.yd7{bottom:571.626180px;}
.y55{bottom:571.626210px;}
.y93{bottom:571.626353px;}
.y15e{bottom:571.626435px;}
.y19b{bottom:571.626443px;}
.yff{bottom:571.629878px;}
.y6{bottom:572.405550px;}
.y12d{bottom:587.225678px;}
.yd6{bottom:587.226060px;}
.y54{bottom:587.226090px;}
.y92{bottom:587.226233px;}
.y15d{bottom:587.226315px;}
.y19a{bottom:587.226323px;}
.yfe{bottom:587.229758px;}
.y5{bottom:587.405550px;}
.y4{bottom:602.405550px;}
.y12c{bottom:602.825685px;}
.yd5{bottom:602.826068px;}
.y53{bottom:602.826098px;}
.y91{bottom:602.826240px;}
.y15c{bottom:602.826323px;}
.y199{bottom:602.826330px;}
.yfd{bottom:602.829765px;}
.y3{bottom:617.405550px;}
.y12b{bottom:618.425693px;}
.yd4{bottom:618.426075px;}
.y52{bottom:618.426105px;}
.y90{bottom:618.426248px;}
.y15b{bottom:618.426330px;}
.y198{bottom:618.426338px;}
.yfc{bottom:618.429773px;}
.y12a{bottom:634.025573px;}
.yd3{bottom:634.025955px;}
.y51{bottom:634.025985px;}
.y8f{bottom:634.026128px;}
.y15a{bottom:634.026210px;}
.y197{bottom:634.026218px;}
.yfb{bottom:634.029653px;}
.y2{bottom:636.930000px;}
.y129{bottom:649.625580px;}
.yd2{bottom:649.625963px;}
.y50{bottom:649.625993px;}
.y159{bottom:649.626218px;}
.y196{bottom:649.626225px;}
.yfa{bottom:649.629660px;}
.y128{bottom:665.225588px;}
.yd1{bottom:665.225970px;}
.y4f{bottom:665.226000px;}
.y8e{bottom:665.226143px;}
.y158{bottom:665.226225px;}
.y195{bottom:665.226233px;}
.yf9{bottom:665.229668px;}
.y18{bottom:669.180000px;}
.y127{bottom:680.825468px;}
.yd0{bottom:680.825850px;}
.y4e{bottom:680.825880px;}
.y8d{bottom:680.826023px;}
.y157{bottom:680.826105px;}
.y194{bottom:680.826113px;}
.yf8{bottom:680.829548px;}
.y126{bottom:696.425475px;}
.ycf{bottom:696.425858px;}
.y4d{bottom:696.425888px;}
.y8c{bottom:696.426030px;}
.y156{bottom:696.426113px;}
.y193{bottom:696.426120px;}
.yf7{bottom:696.429555px;}
.y125{bottom:712.025355px;}
.yce{bottom:712.025737px;}
.y4c{bottom:712.025768px;}
.y8b{bottom:712.025910px;}
.y155{bottom:712.025993px;}
.y192{bottom:712.026000px;}
.y2f{bottom:714.769470px;}
.y124{bottom:727.625363px;}
.ycd{bottom:727.625745px;}
.y4b{bottom:727.625775px;}
.y8a{bottom:727.625918px;}
.y154{bottom:727.626000px;}
.yf6{bottom:727.629443px;}
.y191{bottom:728.193300px;}
.y2e{bottom:728.269470px;}
.ycc{bottom:743.225752px;}
.y4a{bottom:743.225783px;}
.y89{bottom:743.225925px;}
.y153{bottom:743.226008px;}
.yf5{bottom:743.229450px;}
.y2d{bottom:743.869350px;}
.y123{bottom:758.825250px;}
.ycb{bottom:758.825633px;}
.y49{bottom:758.825663px;}
.y88{bottom:758.825805px;}
.y152{bottom:758.825888px;}
.y190{bottom:758.828055px;}
.yf4{bottom:758.829330px;}
.y2c{bottom:759.555000px;}
.y122{bottom:774.425258px;}
.yca{bottom:774.425640px;}
.y48{bottom:774.425670px;}
.y87{bottom:774.425813px;}
.y151{bottom:774.425895px;}
.y18f{bottom:774.428062px;}
.y121{bottom:790.025265px;}
.yc9{bottom:790.025647px;}
.y47{bottom:790.025678px;}
.y86{bottom:790.025820px;}
.y150{bottom:790.025903px;}
.y18e{bottom:790.028070px;}
.y2b{bottom:792.769170px;}
.y11b{bottom:797.407500px;}
.y120{bottom:805.625018px;}
.yc8{bottom:805.625400px;}
.y46{bottom:805.625430px;}
.y85{bottom:805.625573px;}
.y18d{bottom:805.627822px;}
.y2a{bottom:806.269170px;}
.y11f{bottom:821.225025px;}
.yc7{bottom:821.225408px;}
.y45{bottom:821.225438px;}
.y84{bottom:821.225580px;}
.y14f{bottom:821.225663px;}
.y18c{bottom:821.227830px;}
.y29{bottom:821.869050px;}
.y11e{bottom:836.824905px;}
.yc6{bottom:836.825288px;}
.y44{bottom:836.825317px;}
.y83{bottom:836.825460px;}
.y14e{bottom:836.825543px;}
.y18b{bottom:836.827710px;}
.y28{bottom:837.555000px;}
.y11d{bottom:852.424913px;}
.yc5{bottom:852.425295px;}
.y43{bottom:852.425325px;}
.y82{bottom:852.425468px;}
.y14d{bottom:852.425550px;}
.y18a{bottom:852.427717px;}
.y11c{bottom:868.024920px;}
.yc4{bottom:868.025303px;}
.y42{bottom:868.025333px;}
.y81{bottom:868.025475px;}
.y189{bottom:868.027725px;}
.y14c{bottom:868.592700px;}
.y27{bottom:870.768900px;}
.yc3{bottom:883.625183px;}
.y41{bottom:883.625213px;}
.y80{bottom:883.625355px;}
.y188{bottom:883.627605px;}
.y26{bottom:884.268900px;}
.yc2{bottom:899.225190px;}
.y40{bottom:899.225220px;}
.y7f{bottom:899.225363px;}
.y187{bottom:899.227612px;}
.y25{bottom:899.868900px;}
.y13b{bottom:908.032500px;}
.yc1{bottom:914.825198px;}
.y3f{bottom:914.825228px;}
.y7e{bottom:914.825370px;}
.y186{bottom:914.827620px;}
.y24{bottom:915.555000px;}
.yc0{bottom:930.425078px;}
.y3e{bottom:930.425108px;}
.y7d{bottom:930.425250px;}
.y185{bottom:930.427500px;}
.ybf{bottom:946.025085px;}
.y3d{bottom:946.025115px;}
.y184{bottom:946.027507px;}
.y7c{bottom:946.592550px;}
.ybe{bottom:961.625093px;}
.y3c{bottom:961.625123px;}
.y183{bottom:961.627515px;}
.y32{bottom:966.960000px;}
.ybd{bottom:977.224973px;}
.y3b{bottom:977.225003px;}
.y182{bottom:977.227395px;}
.y7b{bottom:977.229720px;}
.ybc{bottom:992.824980px;}
.y3a{bottom:992.825010px;}
.y181{bottom:992.827402px;}
.y7a{bottom:992.829728px;}
.y31{bottom:1005.960000px;}
.ybb{bottom:1008.424860px;}
.y39{bottom:1008.424890px;}
.y180{bottom:1008.427283px;}
.y79{bottom:1008.429608px;}
.yba{bottom:1024.024868px;}
.y38{bottom:1024.024898px;}
.y17f{bottom:1024.027290px;}
.y78{bottom:1024.029615px;}
.y1bd{bottom:1039.624748px;}
.yb9{bottom:1039.624875px;}
.y37{bottom:1039.624905px;}
.y17e{bottom:1039.627297px;}
.y77{bottom:1039.629623px;}
.y30{bottom:1044.960000px;}
.y1bc{bottom:1055.224628px;}
.yb8{bottom:1055.224755px;}
.y36{bottom:1055.224785px;}
.y17d{bottom:1055.227177px;}
.y76{bottom:1055.229503px;}
.y1bb{bottom:1070.824635px;}
.yb7{bottom:1070.824763px;}
.y35{bottom:1070.824793px;}
.y17c{bottom:1070.827185px;}
.y75{bottom:1070.829510px;}
.yd{bottom:1084.350000px;}
.y1a{bottom:1085.345888px;}
.y1ba{bottom:1086.424643px;}
.yb6{bottom:1086.424770px;}
.y34{bottom:1086.424800px;}
.y17b{bottom:1086.427193px;}
.y74{bottom:1086.429518px;}
.y1b9{bottom:1102.024523px;}
.yb5{bottom:1102.024650px;}
.y17a{bottom:1102.027073px;}
.y73{bottom:1102.029397px;}
.y33{bottom:1102.591950px;}
.yb1{bottom:1165.719600px;}
.yb3{bottom:1166.077500px;}
.h6{height:36.304688px;}
.hc{height:36.852539px;}
.hb{height:38.573730px;}
.h2{height:39.484863px;}
.h3{height:42.117188px;}
.hd{height:43.781250px;}
.h7{height:46.517578px;}
.h8{height:47.381836px;}
.ha{height:47.576836px;}
.h9{height:48.813436px;}
.h4{height:52.646484px;}
.hf{height:72.580650px;}
.he{height:72.581250px;}
.h5{height:136.880859px;}
.h0{height:1262.835015px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:102.225000px;}
.x4{left:104.055000px;}
.x8{left:106.710000px;}
.x2{left:110.805000px;}
.x9{left:127.820235px;}
.xc{left:134.726550px;}
.x1{left:144.168750px;}
.xb{left:146.077500px;}
.xe{left:157.900500px;}
.xf{left:356.032500px;}
.x11{left:412.336530px;}
.x7{left:455.805000px;}
.x10{left:460.282500px;}
.xa{left:476.978018px;}
.x12{left:645.987150px;}
.xd{left:649.409400px;}
.x6{left:677.728687px;}
.x5{left:680.156550px;}
@media print{
.v4{vertical-align:-14.960453pt;}
.v3{vertical-align:-2.840000pt;}
.v1{vertical-align:-0.889067pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.272277pt;}
.v5{vertical-align:25.600000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004533pt;}
.ls5{letter-spacing:8.874000pt;}
.ls4{letter-spacing:8.878987pt;}
.ls0{letter-spacing:9.501867pt;}
.ls6{letter-spacing:1753.456533pt;}
.ls7{letter-spacing:1754.979733pt;}
.ls3{letter-spacing:1775.624533pt;}
.ws5{word-spacing:-10.925333pt;}
.ws0{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.282667pt;}
.ws1{word-spacing:-10.000000pt;}
.ws4{word-spacing:0.000000pt;}
.ws2{word-spacing:3.226667pt;}
.ws3{word-spacing:10.210133pt;}
._9{margin-left:-13.546667pt;}
._a{margin-left:-11.781333pt;}
._8{margin-left:-8.298667pt;}
._b{margin-left:-6.757333pt;}
._7{margin-left:-5.770667pt;}
._2{margin-left:-4.376000pt;}
._0{margin-left:-2.980000pt;}
._4{margin-left:-1.977280pt;}
._1{margin-left:-1.032000pt;}
._3{width:1.635840pt;}
._c{width:2.885467pt;}
._d{width:3.833840pt;}
._f{width:5.283413pt;}
._10{width:6.245547pt;}
._11{width:7.254027pt;}
._e{width:8.348720pt;}
._6{width:9.352640pt;}
._12{width:12.344720pt;}
._5{width:14.396053pt;}
._15{width:67.241600pt;}
._14{width:78.078933pt;}
._13{width:97.918933pt;}
._19{width:238.206933pt;}
._1e{width:239.529600pt;}
._16{width:243.710933pt;}
._18{width:290.089600pt;}
._1b{width:293.076267pt;}
._1d{width:295.294933pt;}
._17{width:296.446933pt;}
._1a{width:297.556267pt;}
._1c{width:300.372267pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:40.000000pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:68.150000pt;}
.y19{bottom:68.589200pt;}
.y13a{bottom:68.589467pt;}
.yb2{bottom:68.803333pt;}
.yb4{bottom:68.884533pt;}
.yb0{bottom:69.513333pt;}
.y23{bottom:105.826667pt;}
.yaf{bottom:105.979920pt;}
.y1b8{bottom:105.980000pt;}
.y11a{bottom:105.980407pt;}
.y179{bottom:105.982827pt;}
.yf3{bottom:105.983733pt;}
.y72{bottom:105.984893pt;}
.y14b{bottom:108.140000pt;}
.yae{bottom:119.846480pt;}
.y1b7{bottom:119.846560pt;}
.y119{bottom:119.846967pt;}
.y178{bottom:119.849160pt;}
.yf2{bottom:119.850067pt;}
.y71{bottom:119.851227pt;}
.y1c1{bottom:122.708667pt;}
.y22{bottom:122.721067pt;}
.y14a{bottom:126.723733pt;}
.yad{bottom:133.713153pt;}
.y1b6{bottom:133.713233pt;}
.y177{bottom:133.715493pt;}
.yf1{bottom:133.716400pt;}
.y70{bottom:133.717560pt;}
.y1c0{bottom:133.908667pt;}
.y21{bottom:136.054400pt;}
.y148{bottom:139.523733pt;}
.y1bf{bottom:145.108667pt;}
.yac{bottom:147.579713pt;}
.y1b5{bottom:147.579793pt;}
.y118{bottom:147.580087pt;}
.yf0{bottom:147.582733pt;}
.y6f{bottom:147.583893pt;}
.y20{bottom:149.387733pt;}
.y149{bottom:152.323733pt;}
.yab{bottom:161.446387pt;}
.y1b4{bottom:161.446467pt;}
.y117{bottom:161.446760pt;}
.yef{bottom:161.449067pt;}
.y176{bottom:161.449293pt;}
.y6e{bottom:161.450227pt;}
.y1f{bottom:162.721067pt;}
.y1be{bottom:168.493333pt;}
.y147{bottom:171.487413pt;}
.yaa{bottom:175.312947pt;}
.y1b3{bottom:175.313027pt;}
.y116{bottom:175.313320pt;}
.yee{bottom:175.315400pt;}
.y175{bottom:175.315627pt;}
.y6d{bottom:175.316560pt;}
.y1e{bottom:176.054400pt;}
.y146{bottom:177.887333pt;}
.ya9{bottom:189.179620pt;}
.y1b2{bottom:189.179700pt;}
.y115{bottom:189.179993pt;}
.yed{bottom:189.181733pt;}
.y174{bottom:189.181960pt;}
.y6c{bottom:189.182893pt;}
.y1d{bottom:189.387733pt;}
.y1c{bottom:202.721067pt;}
.ya8{bottom:203.046180pt;}
.y1b1{bottom:203.046260pt;}
.y114{bottom:203.046553pt;}
.yec{bottom:203.048067pt;}
.y6b{bottom:203.049227pt;}
.y145{bottom:203.051013pt;}
.y142{bottom:215.850933pt;}
.y144{bottom:215.851013pt;}
.ya7{bottom:216.913080pt;}
.y1b0{bottom:216.913160pt;}
.y113{bottom:216.913453pt;}
.y6a{bottom:216.915560pt;}
.y173{bottom:216.915760pt;}
.y1b{bottom:220.160000pt;}
.y143{bottom:228.650800pt;}
.ya6{bottom:230.779640pt;}
.y1af{bottom:230.779720pt;}
.y112{bottom:230.780013pt;}
.yeb{bottom:230.781867pt;}
.y69{bottom:230.781893pt;}
.y172{bottom:230.782093pt;}
.ya5{bottom:244.646313pt;}
.y1ae{bottom:244.646393pt;}
.y111{bottom:244.646687pt;}
.yea{bottom:244.648200pt;}
.y68{bottom:244.648227pt;}
.y171{bottom:244.648427pt;}
.y141{bottom:247.414747pt;}
.y17{bottom:258.493333pt;}
.ya4{bottom:258.512873pt;}
.y1ad{bottom:258.512953pt;}
.y110{bottom:258.513247pt;}
.ye9{bottom:258.514533pt;}
.y67{bottom:258.514560pt;}
.y170{bottom:258.514760pt;}
.y13f{bottom:260.214533pt;}
.ya3{bottom:272.379547pt;}
.y1ac{bottom:272.379627pt;}
.y10f{bottom:272.379920pt;}
.ye8{bottom:272.380867pt;}
.y66{bottom:272.380893pt;}
.y16f{bottom:272.381093pt;}
.y140{bottom:273.014533pt;}
.y16{bottom:275.280400pt;}
.ya2{bottom:286.246107pt;}
.y1ab{bottom:286.246187pt;}
.y10e{bottom:286.246480pt;}
.ye7{bottom:286.247200pt;}
.y65{bottom:286.247227pt;}
.y16e{bottom:286.247427pt;}
.y15{bottom:288.613733pt;}
.y13e{bottom:291.378133pt;}
.y13d{bottom:297.778133pt;}
.ya1{bottom:300.112893pt;}
.y1aa{bottom:300.112973pt;}
.y10d{bottom:300.113267pt;}
.ye6{bottom:300.113533pt;}
.y64{bottom:300.113560pt;}
.y16d{bottom:300.113760pt;}
.y14{bottom:301.947067pt;}
.ya0{bottom:313.979453pt;}
.y1a9{bottom:313.979533pt;}
.y10c{bottom:313.979827pt;}
.ye5{bottom:313.979867pt;}
.y63{bottom:313.979893pt;}
.y16c{bottom:313.980093pt;}
.y13{bottom:315.280400pt;}
.y13c{bottom:324.941733pt;}
.y9f{bottom:327.846127pt;}
.ye4{bottom:327.846200pt;}
.y1a8{bottom:327.846207pt;}
.y62{bottom:327.846227pt;}
.y16b{bottom:327.846427pt;}
.y10b{bottom:327.846500pt;}
.y12{bottom:328.613733pt;}
.ye3{bottom:341.712533pt;}
.y61{bottom:341.712560pt;}
.y16a{bottom:341.712760pt;}
.y1a7{bottom:341.712767pt;}
.y10a{bottom:341.713060pt;}
.y11{bottom:341.947067pt;}
.y10{bottom:355.280400pt;}
.y139{bottom:355.578867pt;}
.ye2{bottom:355.579207pt;}
.y60{bottom:355.579233pt;}
.y9e{bottom:355.579360pt;}
.y169{bottom:355.579433pt;}
.y1a6{bottom:355.579440pt;}
.y109{bottom:355.579733pt;}
.yf{bottom:368.613733pt;}
.y138{bottom:369.445427pt;}
.ye1{bottom:369.445767pt;}
.y5f{bottom:369.445793pt;}
.y9d{bottom:369.445920pt;}
.y168{bottom:369.445993pt;}
.y1a5{bottom:369.446000pt;}
.y108{bottom:369.950533pt;}
.y137{bottom:383.312100pt;}
.ye0{bottom:383.312440pt;}
.y5e{bottom:383.312467pt;}
.y9c{bottom:383.312593pt;}
.y167{bottom:383.312667pt;}
.y1a4{bottom:383.312673pt;}
.ye{bottom:385.826667pt;}
.y136{bottom:397.178660pt;}
.ydf{bottom:397.179000pt;}
.y5d{bottom:397.179027pt;}
.y9b{bottom:397.179153pt;}
.y166{bottom:397.179227pt;}
.y1a3{bottom:397.179233pt;}
.y107{bottom:397.182287pt;}
.y135{bottom:411.045447pt;}
.yde{bottom:411.045787pt;}
.y5c{bottom:411.045813pt;}
.y9a{bottom:411.045940pt;}
.y165{bottom:411.046013pt;}
.y1a2{bottom:411.046020pt;}
.y106{bottom:411.049073pt;}
.y134{bottom:424.912007pt;}
.ydd{bottom:424.912347pt;}
.y5b{bottom:424.912373pt;}
.y99{bottom:424.912500pt;}
.y164{bottom:424.912573pt;}
.y1a1{bottom:424.912580pt;}
.y105{bottom:424.915633pt;}
.yc{bottom:425.160000pt;}
.y133{bottom:438.778680pt;}
.ydc{bottom:438.779020pt;}
.y5a{bottom:438.779047pt;}
.y98{bottom:438.779173pt;}
.y163{bottom:438.779247pt;}
.y1a0{bottom:438.779253pt;}
.y104{bottom:438.782307pt;}
.yb{bottom:442.138267pt;}
.y132{bottom:452.645240pt;}
.ydb{bottom:452.645580pt;}
.y59{bottom:452.645607pt;}
.y97{bottom:452.645733pt;}
.y162{bottom:452.645807pt;}
.y19f{bottom:452.645813pt;}
.y103{bottom:452.648867pt;}
.ya{bottom:455.471600pt;}
.y131{bottom:466.511913pt;}
.yda{bottom:466.512253pt;}
.y58{bottom:466.512280pt;}
.y96{bottom:466.512407pt;}
.y161{bottom:466.512480pt;}
.y19e{bottom:466.512487pt;}
.y102{bottom:466.515540pt;}
.y9{bottom:468.804933pt;}
.y130{bottom:480.378473pt;}
.yd9{bottom:480.378813pt;}
.y57{bottom:480.378840pt;}
.y95{bottom:480.378967pt;}
.y160{bottom:480.379040pt;}
.y19d{bottom:480.379047pt;}
.y101{bottom:480.382100pt;}
.y8{bottom:482.138267pt;}
.y12f{bottom:494.245147pt;}
.yd8{bottom:494.245487pt;}
.y56{bottom:494.245513pt;}
.y94{bottom:494.245640pt;}
.y15f{bottom:494.245713pt;}
.y19c{bottom:494.245720pt;}
.y100{bottom:494.248773pt;}
.y7{bottom:495.471600pt;}
.y12e{bottom:508.111820pt;}
.yd7{bottom:508.112160pt;}
.y55{bottom:508.112187pt;}
.y93{bottom:508.112313pt;}
.y15e{bottom:508.112387pt;}
.y19b{bottom:508.112393pt;}
.yff{bottom:508.115447pt;}
.y6{bottom:508.804933pt;}
.y12d{bottom:521.978380pt;}
.yd6{bottom:521.978720pt;}
.y54{bottom:521.978747pt;}
.y92{bottom:521.978873pt;}
.y15d{bottom:521.978947pt;}
.y19a{bottom:521.978953pt;}
.yfe{bottom:521.982007pt;}
.y5{bottom:522.138267pt;}
.y4{bottom:535.471600pt;}
.y12c{bottom:535.845053pt;}
.yd5{bottom:535.845393pt;}
.y53{bottom:535.845420pt;}
.y91{bottom:535.845547pt;}
.y15c{bottom:535.845620pt;}
.y199{bottom:535.845627pt;}
.yfd{bottom:535.848680pt;}
.y3{bottom:548.804933pt;}
.y12b{bottom:549.711727pt;}
.yd4{bottom:549.712067pt;}
.y52{bottom:549.712093pt;}
.y90{bottom:549.712220pt;}
.y15b{bottom:549.712293pt;}
.y198{bottom:549.712300pt;}
.yfc{bottom:549.715353pt;}
.y12a{bottom:563.578287pt;}
.yd3{bottom:563.578627pt;}
.y51{bottom:563.578653pt;}
.y8f{bottom:563.578780pt;}
.y15a{bottom:563.578853pt;}
.y197{bottom:563.578860pt;}
.yfb{bottom:563.581913pt;}
.y2{bottom:566.160000pt;}
.y129{bottom:577.444960pt;}
.yd2{bottom:577.445300pt;}
.y50{bottom:577.445327pt;}
.y159{bottom:577.445527pt;}
.y196{bottom:577.445533pt;}
.yfa{bottom:577.448587pt;}
.y128{bottom:591.311633pt;}
.yd1{bottom:591.311973pt;}
.y4f{bottom:591.312000pt;}
.y8e{bottom:591.312127pt;}
.y158{bottom:591.312200pt;}
.y195{bottom:591.312207pt;}
.yf9{bottom:591.315260pt;}
.y18{bottom:594.826667pt;}
.y127{bottom:605.178193pt;}
.yd0{bottom:605.178533pt;}
.y4e{bottom:605.178560pt;}
.y8d{bottom:605.178687pt;}
.y157{bottom:605.178760pt;}
.y194{bottom:605.178767pt;}
.yf8{bottom:605.181820pt;}
.y126{bottom:619.044867pt;}
.ycf{bottom:619.045207pt;}
.y4d{bottom:619.045233pt;}
.y8c{bottom:619.045360pt;}
.y156{bottom:619.045433pt;}
.y193{bottom:619.045440pt;}
.yf7{bottom:619.048493pt;}
.y125{bottom:632.911427pt;}
.yce{bottom:632.911767pt;}
.y4c{bottom:632.911793pt;}
.y8b{bottom:632.911920pt;}
.y155{bottom:632.911993pt;}
.y192{bottom:632.912000pt;}
.y2f{bottom:635.350640pt;}
.y124{bottom:646.778100pt;}
.ycd{bottom:646.778440pt;}
.y4b{bottom:646.778467pt;}
.y8a{bottom:646.778593pt;}
.y154{bottom:646.778667pt;}
.yf6{bottom:646.781727pt;}
.y191{bottom:647.282933pt;}
.y2e{bottom:647.350640pt;}
.ycc{bottom:660.645113pt;}
.y4a{bottom:660.645140pt;}
.y89{bottom:660.645267pt;}
.y153{bottom:660.645340pt;}
.yf5{bottom:660.648400pt;}
.y2d{bottom:661.217200pt;}
.y123{bottom:674.511333pt;}
.ycb{bottom:674.511673pt;}
.y49{bottom:674.511700pt;}
.y88{bottom:674.511827pt;}
.y152{bottom:674.511900pt;}
.y190{bottom:674.513827pt;}
.yf4{bottom:674.514960pt;}
.y2c{bottom:675.160000pt;}
.y122{bottom:688.378007pt;}
.yca{bottom:688.378347pt;}
.y48{bottom:688.378373pt;}
.y87{bottom:688.378500pt;}
.y151{bottom:688.378573pt;}
.y18f{bottom:688.380500pt;}
.y121{bottom:702.244680pt;}
.yc9{bottom:702.245020pt;}
.y47{bottom:702.245047pt;}
.y86{bottom:702.245173pt;}
.y150{bottom:702.245247pt;}
.y18e{bottom:702.247173pt;}
.y2b{bottom:704.683707pt;}
.y11b{bottom:708.806667pt;}
.y120{bottom:716.111127pt;}
.yc8{bottom:716.111467pt;}
.y46{bottom:716.111493pt;}
.y85{bottom:716.111620pt;}
.y18d{bottom:716.113620pt;}
.y2a{bottom:716.683707pt;}
.y11f{bottom:729.977800pt;}
.yc7{bottom:729.978140pt;}
.y45{bottom:729.978167pt;}
.y84{bottom:729.978293pt;}
.y14f{bottom:729.978367pt;}
.y18c{bottom:729.980293pt;}
.y29{bottom:730.550267pt;}
.y11e{bottom:743.844360pt;}
.yc6{bottom:743.844700pt;}
.y44{bottom:743.844727pt;}
.y83{bottom:743.844853pt;}
.y14e{bottom:743.844927pt;}
.y18b{bottom:743.846853pt;}
.y28{bottom:744.493333pt;}
.y11d{bottom:757.711033pt;}
.yc5{bottom:757.711373pt;}
.y43{bottom:757.711400pt;}
.y82{bottom:757.711527pt;}
.y14d{bottom:757.711600pt;}
.y18a{bottom:757.713527pt;}
.y11c{bottom:771.577707pt;}
.yc4{bottom:771.578047pt;}
.y42{bottom:771.578073pt;}
.y81{bottom:771.578200pt;}
.y189{bottom:771.580200pt;}
.y14c{bottom:772.082400pt;}
.y27{bottom:774.016800pt;}
.yc3{bottom:785.444607pt;}
.y41{bottom:785.444633pt;}
.y80{bottom:785.444760pt;}
.y188{bottom:785.446760pt;}
.y26{bottom:786.016800pt;}
.yc2{bottom:799.311280pt;}
.y40{bottom:799.311307pt;}
.y7f{bottom:799.311433pt;}
.y187{bottom:799.313433pt;}
.y25{bottom:799.883467pt;}
.y13b{bottom:807.140000pt;}
.yc1{bottom:813.177953pt;}
.y3f{bottom:813.177980pt;}
.y7e{bottom:813.178107pt;}
.y186{bottom:813.180107pt;}
.y24{bottom:813.826667pt;}
.yc0{bottom:827.044513pt;}
.y3e{bottom:827.044540pt;}
.y7d{bottom:827.044667pt;}
.y185{bottom:827.046667pt;}
.ybf{bottom:840.911187pt;}
.y3d{bottom:840.911213pt;}
.y184{bottom:840.913340pt;}
.y7c{bottom:841.415600pt;}
.ybe{bottom:854.777860pt;}
.y3c{bottom:854.777887pt;}
.y183{bottom:854.780013pt;}
.y32{bottom:859.520000pt;}
.ybd{bottom:868.644420pt;}
.y3b{bottom:868.644447pt;}
.y182{bottom:868.646573pt;}
.y7b{bottom:868.648640pt;}
.ybc{bottom:882.511093pt;}
.y3a{bottom:882.511120pt;}
.y181{bottom:882.513247pt;}
.y7a{bottom:882.515313pt;}
.y31{bottom:894.186667pt;}
.ybb{bottom:896.377653pt;}
.y39{bottom:896.377680pt;}
.y180{bottom:896.379807pt;}
.y79{bottom:896.381873pt;}
.yba{bottom:910.244327pt;}
.y38{bottom:910.244353pt;}
.y17f{bottom:910.246480pt;}
.y78{bottom:910.248547pt;}
.y1bd{bottom:924.110887pt;}
.yb9{bottom:924.111000pt;}
.y37{bottom:924.111027pt;}
.y17e{bottom:924.113153pt;}
.y77{bottom:924.115220pt;}
.y30{bottom:928.853333pt;}
.y1bc{bottom:937.977447pt;}
.yb8{bottom:937.977560pt;}
.y36{bottom:937.977587pt;}
.y17d{bottom:937.979713pt;}
.y76{bottom:937.981780pt;}
.y1bb{bottom:951.844120pt;}
.yb7{bottom:951.844233pt;}
.y35{bottom:951.844260pt;}
.y17c{bottom:951.846387pt;}
.y75{bottom:951.848453pt;}
.yd{bottom:963.866667pt;}
.y1a{bottom:964.751900pt;}
.y1ba{bottom:965.710793pt;}
.yb6{bottom:965.710907pt;}
.y34{bottom:965.710933pt;}
.y17b{bottom:965.713060pt;}
.y74{bottom:965.715127pt;}
.y1b9{bottom:979.577353pt;}
.yb5{bottom:979.577467pt;}
.y17a{bottom:979.579620pt;}
.y73{bottom:979.581687pt;}
.y33{bottom:980.081733pt;}
.yb1{bottom:1036.195200pt;}
.yb3{bottom:1036.513333pt;}
.h6{height:32.270833pt;}
.hc{height:32.757812pt;}
.hb{height:34.287760pt;}
.h2{height:35.097656pt;}
.h3{height:37.437500pt;}
.hd{height:38.916667pt;}
.h7{height:41.348958pt;}
.h8{height:42.117188pt;}
.ha{height:42.290521pt;}
.h9{height:43.389721pt;}
.h4{height:46.796875pt;}
.hf{height:64.516133pt;}
.he{height:64.516667pt;}
.h5{height:121.671875pt;}
.h0{height:1122.520013pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:90.866667pt;}
.x4{left:92.493333pt;}
.x8{left:94.853333pt;}
.x2{left:98.493333pt;}
.x9{left:113.617987pt;}
.xc{left:119.756933pt;}
.x1{left:128.150000pt;}
.xb{left:129.846667pt;}
.xe{left:140.356000pt;}
.xf{left:316.473333pt;}
.x11{left:366.521360pt;}
.x7{left:405.160000pt;}
.x10{left:409.140000pt;}
.xa{left:423.980460pt;}
.x12{left:574.210800pt;}
.xd{left:577.252800pt;}
.x6{left:602.425500pt;}
.x5{left:604.583600pt;}
}

